From bc5edc9926df000410658732eec809cc3fa27bd2 Mon Sep 17 00:00:00 2001 From: Vortrex <3858226+VortrexFTW@users.noreply.github.com> Date: Sat, 5 Jun 2021 03:13:49 -0500 Subject: [PATCH] Database backups --- .../backup/database/asshat-10MAR2021-0751.sql | 8819 +++++++++++++++++ .../backup/database/asshat-10MAR2021-0806.sql | 8817 ++++++++++++++++ .../backup/database/asshat-19FEB2020-2004.sql | 8512 ++++++++++++++++ .../backup/database/asshat-21DEC2020-2350.sql | 6205 ++++++++++++ .../backup/database/asshat-29DEC2020-0403.sql | 6977 +++++++++++++ .../backup/database/asshat-29DEC2020-2147.sql | 6979 +++++++++++++ .../backup/database/asshat-31DEC2020-1700.sql | 7416 ++++++++++++++ 7 files changed, 53725 insertions(+) create mode 100644 misc/backup/database/asshat-10MAR2021-0751.sql create mode 100644 misc/backup/database/asshat-10MAR2021-0806.sql create mode 100644 misc/backup/database/asshat-19FEB2020-2004.sql create mode 100644 misc/backup/database/asshat-21DEC2020-2350.sql create mode 100644 misc/backup/database/asshat-29DEC2020-0403.sql create mode 100644 misc/backup/database/asshat-29DEC2020-2147.sql create mode 100644 misc/backup/database/asshat-31DEC2020-1700.sql diff --git a/misc/backup/database/asshat-10MAR2021-0751.sql b/misc/backup/database/asshat-10MAR2021-0751.sql new file mode 100644 index 00000000..3cfae1cc --- /dev/null +++ b/misc/backup/database/asshat-10MAR2021-0751.sql @@ -0,0 +1,8819 @@ +-- -------------------------------------------------------- +-- Host: 127.0.0.1 +-- Server version: 5.7.32 - MySQL Community Server (GPL) +-- Server OS: Linux +-- HeidiSQL Version: 11.1.0.6116 +-- -------------------------------------------------------- + +/*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */; +/*!40101 SET NAMES utf8 */; +/*!50503 SET NAMES utf8mb4 */; +/*!40014 SET @OLD_FOREIGN_KEY_CHECKS=@@FOREIGN_KEY_CHECKS, FOREIGN_KEY_CHECKS=0 */; +/*!40101 SET @OLD_SQL_MODE=@@SQL_MODE, SQL_MODE='NO_AUTO_VALUE_ON_ZERO' */; +/*!40111 SET @OLD_SQL_NOTES=@@SQL_NOTES, SQL_NOTES=0 */; + +-- Dumping structure for table gtac_main.acct_auth +CREATE TABLE IF NOT EXISTS `acct_auth` ( + `acct_auth_id` int(11) NOT NULL AUTO_INCREMENT, + `acct_auth_acct` int(11) NOT NULL DEFAULT '0', + `acct_auth_type` int(11) NOT NULL DEFAULT '0', + `acct_auth_detail` varchar(128) NOT NULL DEFAULT '', + `acct_auth_smscarrier` int(11) NOT NULL DEFAULT '-1', + `acct_auth_verified` tinyint(1) NOT NULL DEFAULT '0', + `acct_auth_when_verified` int(32) NOT NULL DEFAULT '0', + `acct_auth_verifycode` varchar(32) NOT NULL DEFAULT '', + `acct_auth_token` varchar(128) NOT NULL DEFAULT '', + PRIMARY KEY (`acct_auth_id`), + KEY `acct_auth_acct` (`acct_auth_acct`), + CONSTRAINT `fk_acct_auth_acct` FOREIGN KEY (`acct_auth_acct`) REFERENCES `acct_main` (`acct_id`) ON DELETE CASCADE ON UPDATE CASCADE +) ENGINE=InnoDB DEFAULT CHARSET=latin1 COMMENT='Accounts - Authentication Methods'; + +-- Dumping data for table gtac_main.acct_auth: ~0 rows (approximately) +/*!40000 ALTER TABLE `acct_auth` DISABLE KEYS */; +/*!40000 ALTER TABLE `acct_auth` ENABLE KEYS */; + +-- Dumping structure for table gtac_main.acct_bl +CREATE TABLE IF NOT EXISTS `acct_bl` ( + `acct_bl_id` int(11) NOT NULL AUTO_INCREMENT, + `acct_bl_acct` int(11) NOT NULL DEFAULT '0', + `acct_bl_ip` int(24) NOT NULL DEFAULT '0', + `acct_bl_uid` varchar(128) NOT NULL DEFAULT '', + `acct_bl_when_added` int(32) NOT NULL DEFAULT '0', + `acct_bl_enabled` tinyint(1) NOT NULL DEFAULT '1', + PRIMARY KEY (`acct_bl_id`), + KEY `acct_bl_acct` (`acct_bl_acct`), + CONSTRAINT `hk_acct_bl_acct` FOREIGN KEY (`acct_bl_acct`) REFERENCES `acct_main` (`acct_id`) ON DELETE CASCADE ON UPDATE CASCADE +) ENGINE=InnoDB DEFAULT CHARSET=latin1 COMMENT='Accounts - Access Blacklist'; + +-- Dumping data for table gtac_main.acct_bl: ~0 rows (approximately) +/*!40000 ALTER TABLE `acct_bl` DISABLE KEYS */; +/*!40000 ALTER TABLE `acct_bl` ENABLE KEYS */; + +-- Dumping structure for table gtac_main.acct_contact +CREATE TABLE IF NOT EXISTS `acct_contact` ( + `acct_contact_id` int(11) NOT NULL AUTO_INCREMENT, + `acct_contact_acct` int(11) NOT NULL DEFAULT '0', + `acct_contact_contact` int(11) NOT NULL DEFAULT '0', + `acct_contact_type` int(11) NOT NULL DEFAULT '0', + `acct_contact_when_added` int(32) NOT NULL DEFAULT '0', + `acct_contact_accepted` tinyint(1) NOT NULL DEFAULT '0', + `acct_contact_when_accepted` int(32) NOT NULL DEFAULT '0', + `acct_contact_deleted` tinyint(1) NOT NULL DEFAULT '0', + PRIMARY KEY (`acct_contact_id`), + KEY `acct_contact_acct` (`acct_contact_acct`) +) ENGINE=InnoDB DEFAULT CHARSET=latin1 COMMENT='Accounts - Contacts (Friends/Blocked/Etc)'; + +-- Dumping data for table gtac_main.acct_contact: ~0 rows (approximately) +/*!40000 ALTER TABLE `acct_contact` DISABLE KEYS */; +/*!40000 ALTER TABLE `acct_contact` ENABLE KEYS */; + +-- Dumping structure for table gtac_main.acct_hotkey +CREATE TABLE IF NOT EXISTS `acct_hotkey` ( + `acct_hotkey_id` int(11) NOT NULL AUTO_INCREMENT, + `acct_hotkey_acct` int(11) NOT NULL DEFAULT '0', + `acct_hotkey_key` int(11) NOT NULL DEFAULT '0', + `acct_hotkey_cmdstr` varchar(128) NOT NULL DEFAULT '', + `acct_hotkey_enabled` tinyint(1) NOT NULL DEFAULT '1', + `acct_hotkey_when_added` bigint(20) NOT NULL DEFAULT '0', + `acct_hotkey_down` int(11) NOT NULL DEFAULT '0', + PRIMARY KEY (`acct_hotkey_id`), + KEY `acct_hotkey_acct` (`acct_hotkey_acct`), + CONSTRAINT `hk_acct_hotkey_acct` FOREIGN KEY (`acct_hotkey_acct`) REFERENCES `acct_main` (`acct_id`) ON DELETE CASCADE ON UPDATE CASCADE +) ENGINE=InnoDB AUTO_INCREMENT=181 DEFAULT CHARSET=latin1 COMMENT='Accounts - Custom Hotkeys'; + +-- Dumping data for table gtac_main.acct_hotkey: ~100 rows (approximately) +/*!40000 ALTER TABLE `acct_hotkey` DISABLE KEYS */; +INSERT INTO `acct_hotkey` (`acct_hotkey_id`, `acct_hotkey_acct`, `acct_hotkey_key`, `acct_hotkey_cmdstr`, `acct_hotkey_enabled`, `acct_hotkey_when_added`, `acct_hotkey_down`) VALUES + (1, 1, 107, 'engine', 1, 1610246045, 0); +INSERT INTO `acct_hotkey` (`acct_hotkey_id`, `acct_hotkey_acct`, `acct_hotkey_key`, `acct_hotkey_cmdstr`, `acct_hotkey_enabled`, `acct_hotkey_when_added`, `acct_hotkey_down`) VALUES + (2, 1, 108, 'lights', 1, 1610246045, 0); +INSERT INTO `acct_hotkey` (`acct_hotkey_id`, `acct_hotkey_acct`, `acct_hotkey_key`, `acct_hotkey_cmdstr`, `acct_hotkey_enabled`, `acct_hotkey_when_added`, `acct_hotkey_down`) VALUES + (3, 1, 106, 'lock', 1, 1610246045, 0); +INSERT INTO `acct_hotkey` (`acct_hotkey_id`, `acct_hotkey_acct`, `acct_hotkey_key`, `acct_hotkey_cmdstr`, `acct_hotkey_enabled`, `acct_hotkey_when_added`, `acct_hotkey_down`) VALUES + (4, 1, 102, 'enter', 1, 1610246045, 0); +INSERT INTO `acct_hotkey` (`acct_hotkey_id`, `acct_hotkey_acct`, `acct_hotkey_key`, `acct_hotkey_cmdstr`, `acct_hotkey_enabled`, `acct_hotkey_when_added`, `acct_hotkey_down`) VALUES + (5, 1, 103, 'passenger', 1, 1610246045, 0); +INSERT INTO `acct_hotkey` (`acct_hotkey_id`, `acct_hotkey_acct`, `acct_hotkey_key`, `acct_hotkey_cmdstr`, `acct_hotkey_enabled`, `acct_hotkey_when_added`, `acct_hotkey_down`) VALUES + (6, 1, 109, 'cursor', 1, 1610246045, 0); +INSERT INTO `acct_hotkey` (`acct_hotkey_id`, `acct_hotkey_acct`, `acct_hotkey_key`, `acct_hotkey_cmdstr`, `acct_hotkey_enabled`, `acct_hotkey_when_added`, `acct_hotkey_down`) VALUES + (7, 1, 111, 'drop', 1, 1610246045, 0); +INSERT INTO `acct_hotkey` (`acct_hotkey_id`, `acct_hotkey_acct`, `acct_hotkey_key`, `acct_hotkey_cmdstr`, `acct_hotkey_enabled`, `acct_hotkey_when_added`, `acct_hotkey_down`) VALUES + (8, 1, 112, 'pickup', 1, 1610246045, 0); +INSERT INTO `acct_hotkey` (`acct_hotkey_id`, `acct_hotkey_acct`, `acct_hotkey_key`, `acct_hotkey_cmdstr`, `acct_hotkey_enabled`, `acct_hotkey_when_added`, `acct_hotkey_down`) VALUES + (9, 1, 117, 'use', 1, 1610246045, 0); +INSERT INTO `acct_hotkey` (`acct_hotkey_id`, `acct_hotkey_acct`, `acct_hotkey_key`, `acct_hotkey_cmdstr`, `acct_hotkey_enabled`, `acct_hotkey_when_added`, `acct_hotkey_down`) VALUES + (10, 1, 105, 'inv', 1, 1610246045, 0); +INSERT INTO `acct_hotkey` (`acct_hotkey_id`, `acct_hotkey_acct`, `acct_hotkey_key`, `acct_hotkey_cmdstr`, `acct_hotkey_enabled`, `acct_hotkey_when_added`, `acct_hotkey_down`) VALUES + (11, 1, 48, 'i 0', 1, 1610246045, 0); +INSERT INTO `acct_hotkey` (`acct_hotkey_id`, `acct_hotkey_acct`, `acct_hotkey_key`, `acct_hotkey_cmdstr`, `acct_hotkey_enabled`, `acct_hotkey_when_added`, `acct_hotkey_down`) VALUES + (12, 1, 49, 'i 1', 1, 1610246045, 0); +INSERT INTO `acct_hotkey` (`acct_hotkey_id`, `acct_hotkey_acct`, `acct_hotkey_key`, `acct_hotkey_cmdstr`, `acct_hotkey_enabled`, `acct_hotkey_when_added`, `acct_hotkey_down`) VALUES + (13, 1, 50, 'i 2', 1, 1610246045, 0); +INSERT INTO `acct_hotkey` (`acct_hotkey_id`, `acct_hotkey_acct`, `acct_hotkey_key`, `acct_hotkey_cmdstr`, `acct_hotkey_enabled`, `acct_hotkey_when_added`, `acct_hotkey_down`) VALUES + (14, 1, 51, 'i 3', 1, 1610246045, 0); +INSERT INTO `acct_hotkey` (`acct_hotkey_id`, `acct_hotkey_acct`, `acct_hotkey_key`, `acct_hotkey_cmdstr`, `acct_hotkey_enabled`, `acct_hotkey_when_added`, `acct_hotkey_down`) VALUES + (15, 1, 52, 'i 4', 1, 1610246045, 0); +INSERT INTO `acct_hotkey` (`acct_hotkey_id`, `acct_hotkey_acct`, `acct_hotkey_key`, `acct_hotkey_cmdstr`, `acct_hotkey_enabled`, `acct_hotkey_when_added`, `acct_hotkey_down`) VALUES + (16, 1, 53, 'i 5', 1, 1610246045, 0); +INSERT INTO `acct_hotkey` (`acct_hotkey_id`, `acct_hotkey_acct`, `acct_hotkey_key`, `acct_hotkey_cmdstr`, `acct_hotkey_enabled`, `acct_hotkey_when_added`, `acct_hotkey_down`) VALUES + (17, 1, 54, 'i 6', 1, 1610246045, 0); +INSERT INTO `acct_hotkey` (`acct_hotkey_id`, `acct_hotkey_acct`, `acct_hotkey_key`, `acct_hotkey_cmdstr`, `acct_hotkey_enabled`, `acct_hotkey_when_added`, `acct_hotkey_down`) VALUES + (18, 1, 55, 'i 7', 1, 1610246045, 0); +INSERT INTO `acct_hotkey` (`acct_hotkey_id`, `acct_hotkey_acct`, `acct_hotkey_key`, `acct_hotkey_cmdstr`, `acct_hotkey_enabled`, `acct_hotkey_when_added`, `acct_hotkey_down`) VALUES + (19, 1, 56, 'i 8', 1, 1610246045, 0); +INSERT INTO `acct_hotkey` (`acct_hotkey_id`, `acct_hotkey_acct`, `acct_hotkey_key`, `acct_hotkey_cmdstr`, `acct_hotkey_enabled`, `acct_hotkey_when_added`, `acct_hotkey_down`) VALUES + (20, 1, 57, 'i 9', 1, 1610246045, 0); +INSERT INTO `acct_hotkey` (`acct_hotkey_id`, `acct_hotkey_acct`, `acct_hotkey_key`, `acct_hotkey_cmdstr`, `acct_hotkey_enabled`, `acct_hotkey_when_added`, `acct_hotkey_down`) VALUES + (21, 2, 107, 'engine', 1, 1610246120, 0); +INSERT INTO `acct_hotkey` (`acct_hotkey_id`, `acct_hotkey_acct`, `acct_hotkey_key`, `acct_hotkey_cmdstr`, `acct_hotkey_enabled`, `acct_hotkey_when_added`, `acct_hotkey_down`) VALUES + (22, 2, 108, 'lights', 1, 1610246120, 0); +INSERT INTO `acct_hotkey` (`acct_hotkey_id`, `acct_hotkey_acct`, `acct_hotkey_key`, `acct_hotkey_cmdstr`, `acct_hotkey_enabled`, `acct_hotkey_when_added`, `acct_hotkey_down`) VALUES + (23, 2, 106, 'lock', 1, 1610246120, 0); +INSERT INTO `acct_hotkey` (`acct_hotkey_id`, `acct_hotkey_acct`, `acct_hotkey_key`, `acct_hotkey_cmdstr`, `acct_hotkey_enabled`, `acct_hotkey_when_added`, `acct_hotkey_down`) VALUES + (24, 2, 102, 'enter', 1, 1610246120, 0); +INSERT INTO `acct_hotkey` (`acct_hotkey_id`, `acct_hotkey_acct`, `acct_hotkey_key`, `acct_hotkey_cmdstr`, `acct_hotkey_enabled`, `acct_hotkey_when_added`, `acct_hotkey_down`) VALUES + (25, 2, 103, 'passenger', 1, 1610246120, 0); +INSERT INTO `acct_hotkey` (`acct_hotkey_id`, `acct_hotkey_acct`, `acct_hotkey_key`, `acct_hotkey_cmdstr`, `acct_hotkey_enabled`, `acct_hotkey_when_added`, `acct_hotkey_down`) VALUES + (26, 2, 109, 'cursor', 1, 1610246120, 0); +INSERT INTO `acct_hotkey` (`acct_hotkey_id`, `acct_hotkey_acct`, `acct_hotkey_key`, `acct_hotkey_cmdstr`, `acct_hotkey_enabled`, `acct_hotkey_when_added`, `acct_hotkey_down`) VALUES + (27, 2, 111, 'drop', 1, 1610246120, 0); +INSERT INTO `acct_hotkey` (`acct_hotkey_id`, `acct_hotkey_acct`, `acct_hotkey_key`, `acct_hotkey_cmdstr`, `acct_hotkey_enabled`, `acct_hotkey_when_added`, `acct_hotkey_down`) VALUES + (28, 2, 112, 'pickup', 1, 1610246120, 0); +INSERT INTO `acct_hotkey` (`acct_hotkey_id`, `acct_hotkey_acct`, `acct_hotkey_key`, `acct_hotkey_cmdstr`, `acct_hotkey_enabled`, `acct_hotkey_when_added`, `acct_hotkey_down`) VALUES + (29, 2, 117, 'use', 1, 1610246120, 0); +INSERT INTO `acct_hotkey` (`acct_hotkey_id`, `acct_hotkey_acct`, `acct_hotkey_key`, `acct_hotkey_cmdstr`, `acct_hotkey_enabled`, `acct_hotkey_when_added`, `acct_hotkey_down`) VALUES + (30, 2, 105, 'inv', 1, 1610246120, 0); +INSERT INTO `acct_hotkey` (`acct_hotkey_id`, `acct_hotkey_acct`, `acct_hotkey_key`, `acct_hotkey_cmdstr`, `acct_hotkey_enabled`, `acct_hotkey_when_added`, `acct_hotkey_down`) VALUES + (31, 2, 48, 'i 0', 1, 1610246120, 0); +INSERT INTO `acct_hotkey` (`acct_hotkey_id`, `acct_hotkey_acct`, `acct_hotkey_key`, `acct_hotkey_cmdstr`, `acct_hotkey_enabled`, `acct_hotkey_when_added`, `acct_hotkey_down`) VALUES + (32, 2, 49, 'i 1', 1, 1610246120, 0); +INSERT INTO `acct_hotkey` (`acct_hotkey_id`, `acct_hotkey_acct`, `acct_hotkey_key`, `acct_hotkey_cmdstr`, `acct_hotkey_enabled`, `acct_hotkey_when_added`, `acct_hotkey_down`) VALUES + (33, 2, 50, 'i 2', 1, 1610246120, 0); +INSERT INTO `acct_hotkey` (`acct_hotkey_id`, `acct_hotkey_acct`, `acct_hotkey_key`, `acct_hotkey_cmdstr`, `acct_hotkey_enabled`, `acct_hotkey_when_added`, `acct_hotkey_down`) VALUES + (34, 2, 51, 'i 3', 1, 1610246120, 0); +INSERT INTO `acct_hotkey` (`acct_hotkey_id`, `acct_hotkey_acct`, `acct_hotkey_key`, `acct_hotkey_cmdstr`, `acct_hotkey_enabled`, `acct_hotkey_when_added`, `acct_hotkey_down`) VALUES + (35, 2, 52, 'i 4', 1, 1610246120, 0); +INSERT INTO `acct_hotkey` (`acct_hotkey_id`, `acct_hotkey_acct`, `acct_hotkey_key`, `acct_hotkey_cmdstr`, `acct_hotkey_enabled`, `acct_hotkey_when_added`, `acct_hotkey_down`) VALUES + (36, 2, 53, 'i 5', 1, 1610246120, 0); +INSERT INTO `acct_hotkey` (`acct_hotkey_id`, `acct_hotkey_acct`, `acct_hotkey_key`, `acct_hotkey_cmdstr`, `acct_hotkey_enabled`, `acct_hotkey_when_added`, `acct_hotkey_down`) VALUES + (37, 2, 54, 'i 6', 1, 1610246120, 0); +INSERT INTO `acct_hotkey` (`acct_hotkey_id`, `acct_hotkey_acct`, `acct_hotkey_key`, `acct_hotkey_cmdstr`, `acct_hotkey_enabled`, `acct_hotkey_when_added`, `acct_hotkey_down`) VALUES + (38, 2, 55, 'i 7', 1, 1610246120, 0); +INSERT INTO `acct_hotkey` (`acct_hotkey_id`, `acct_hotkey_acct`, `acct_hotkey_key`, `acct_hotkey_cmdstr`, `acct_hotkey_enabled`, `acct_hotkey_when_added`, `acct_hotkey_down`) VALUES + (39, 2, 56, 'i 8', 1, 1610246120, 0); +INSERT INTO `acct_hotkey` (`acct_hotkey_id`, `acct_hotkey_acct`, `acct_hotkey_key`, `acct_hotkey_cmdstr`, `acct_hotkey_enabled`, `acct_hotkey_when_added`, `acct_hotkey_down`) VALUES + (40, 2, 57, 'i 9', 1, 1610246120, 0); +INSERT INTO `acct_hotkey` (`acct_hotkey_id`, `acct_hotkey_acct`, `acct_hotkey_key`, `acct_hotkey_cmdstr`, `acct_hotkey_enabled`, `acct_hotkey_when_added`, `acct_hotkey_down`) VALUES + (41, 3, 107, 'engine', 1, 1610247643, 0); +INSERT INTO `acct_hotkey` (`acct_hotkey_id`, `acct_hotkey_acct`, `acct_hotkey_key`, `acct_hotkey_cmdstr`, `acct_hotkey_enabled`, `acct_hotkey_when_added`, `acct_hotkey_down`) VALUES + (42, 3, 108, 'lights', 1, 1610247643, 0); +INSERT INTO `acct_hotkey` (`acct_hotkey_id`, `acct_hotkey_acct`, `acct_hotkey_key`, `acct_hotkey_cmdstr`, `acct_hotkey_enabled`, `acct_hotkey_when_added`, `acct_hotkey_down`) VALUES + (43, 3, 106, 'lock', 1, 1610247643, 0); +INSERT INTO `acct_hotkey` (`acct_hotkey_id`, `acct_hotkey_acct`, `acct_hotkey_key`, `acct_hotkey_cmdstr`, `acct_hotkey_enabled`, `acct_hotkey_when_added`, `acct_hotkey_down`) VALUES + (44, 3, 102, 'enter', 1, 1610247643, 0); +INSERT INTO `acct_hotkey` (`acct_hotkey_id`, `acct_hotkey_acct`, `acct_hotkey_key`, `acct_hotkey_cmdstr`, `acct_hotkey_enabled`, `acct_hotkey_when_added`, `acct_hotkey_down`) VALUES + (45, 3, 103, 'passenger', 1, 1610247643, 0); +INSERT INTO `acct_hotkey` (`acct_hotkey_id`, `acct_hotkey_acct`, `acct_hotkey_key`, `acct_hotkey_cmdstr`, `acct_hotkey_enabled`, `acct_hotkey_when_added`, `acct_hotkey_down`) VALUES + (46, 3, 109, 'cursor', 1, 1610247643, 0); +INSERT INTO `acct_hotkey` (`acct_hotkey_id`, `acct_hotkey_acct`, `acct_hotkey_key`, `acct_hotkey_cmdstr`, `acct_hotkey_enabled`, `acct_hotkey_when_added`, `acct_hotkey_down`) VALUES + (47, 3, 111, 'drop', 1, 1610247643, 0); +INSERT INTO `acct_hotkey` (`acct_hotkey_id`, `acct_hotkey_acct`, `acct_hotkey_key`, `acct_hotkey_cmdstr`, `acct_hotkey_enabled`, `acct_hotkey_when_added`, `acct_hotkey_down`) VALUES + (48, 3, 112, 'pickup', 1, 1610247643, 0); +INSERT INTO `acct_hotkey` (`acct_hotkey_id`, `acct_hotkey_acct`, `acct_hotkey_key`, `acct_hotkey_cmdstr`, `acct_hotkey_enabled`, `acct_hotkey_when_added`, `acct_hotkey_down`) VALUES + (49, 3, 117, 'use', 1, 1610247643, 0); +INSERT INTO `acct_hotkey` (`acct_hotkey_id`, `acct_hotkey_acct`, `acct_hotkey_key`, `acct_hotkey_cmdstr`, `acct_hotkey_enabled`, `acct_hotkey_when_added`, `acct_hotkey_down`) VALUES + (50, 3, 105, 'inv', 1, 1610247643, 0); +INSERT INTO `acct_hotkey` (`acct_hotkey_id`, `acct_hotkey_acct`, `acct_hotkey_key`, `acct_hotkey_cmdstr`, `acct_hotkey_enabled`, `acct_hotkey_when_added`, `acct_hotkey_down`) VALUES + (51, 3, 48, 'i 0', 1, 1610247643, 0); +INSERT INTO `acct_hotkey` (`acct_hotkey_id`, `acct_hotkey_acct`, `acct_hotkey_key`, `acct_hotkey_cmdstr`, `acct_hotkey_enabled`, `acct_hotkey_when_added`, `acct_hotkey_down`) VALUES + (52, 3, 49, 'i 1', 1, 1610247643, 0); +INSERT INTO `acct_hotkey` (`acct_hotkey_id`, `acct_hotkey_acct`, `acct_hotkey_key`, `acct_hotkey_cmdstr`, `acct_hotkey_enabled`, `acct_hotkey_when_added`, `acct_hotkey_down`) VALUES + (53, 3, 50, 'i 2', 1, 1610247643, 0); +INSERT INTO `acct_hotkey` (`acct_hotkey_id`, `acct_hotkey_acct`, `acct_hotkey_key`, `acct_hotkey_cmdstr`, `acct_hotkey_enabled`, `acct_hotkey_when_added`, `acct_hotkey_down`) VALUES + (54, 3, 51, 'i 3', 1, 1610247643, 0); +INSERT INTO `acct_hotkey` (`acct_hotkey_id`, `acct_hotkey_acct`, `acct_hotkey_key`, `acct_hotkey_cmdstr`, `acct_hotkey_enabled`, `acct_hotkey_when_added`, `acct_hotkey_down`) VALUES + (55, 3, 52, 'i 4', 1, 1610247643, 0); +INSERT INTO `acct_hotkey` (`acct_hotkey_id`, `acct_hotkey_acct`, `acct_hotkey_key`, `acct_hotkey_cmdstr`, `acct_hotkey_enabled`, `acct_hotkey_when_added`, `acct_hotkey_down`) VALUES + (56, 3, 53, 'i 5', 1, 1610247643, 0); +INSERT INTO `acct_hotkey` (`acct_hotkey_id`, `acct_hotkey_acct`, `acct_hotkey_key`, `acct_hotkey_cmdstr`, `acct_hotkey_enabled`, `acct_hotkey_when_added`, `acct_hotkey_down`) VALUES + (57, 3, 54, 'i 6', 1, 1610247643, 0); +INSERT INTO `acct_hotkey` (`acct_hotkey_id`, `acct_hotkey_acct`, `acct_hotkey_key`, `acct_hotkey_cmdstr`, `acct_hotkey_enabled`, `acct_hotkey_when_added`, `acct_hotkey_down`) VALUES + (58, 3, 55, 'i 7', 1, 1610247643, 0); +INSERT INTO `acct_hotkey` (`acct_hotkey_id`, `acct_hotkey_acct`, `acct_hotkey_key`, `acct_hotkey_cmdstr`, `acct_hotkey_enabled`, `acct_hotkey_when_added`, `acct_hotkey_down`) VALUES + (59, 3, 56, 'i 8', 1, 1610247643, 0); +INSERT INTO `acct_hotkey` (`acct_hotkey_id`, `acct_hotkey_acct`, `acct_hotkey_key`, `acct_hotkey_cmdstr`, `acct_hotkey_enabled`, `acct_hotkey_when_added`, `acct_hotkey_down`) VALUES + (60, 3, 57, 'i 9', 1, 1610247643, 0); +INSERT INTO `acct_hotkey` (`acct_hotkey_id`, `acct_hotkey_acct`, `acct_hotkey_key`, `acct_hotkey_cmdstr`, `acct_hotkey_enabled`, `acct_hotkey_when_added`, `acct_hotkey_down`) VALUES + (61, 4, 107, 'engine', 1, 1610251858, 0); +INSERT INTO `acct_hotkey` (`acct_hotkey_id`, `acct_hotkey_acct`, `acct_hotkey_key`, `acct_hotkey_cmdstr`, `acct_hotkey_enabled`, `acct_hotkey_when_added`, `acct_hotkey_down`) VALUES + (62, 4, 108, 'lights', 1, 1610251858, 0); +INSERT INTO `acct_hotkey` (`acct_hotkey_id`, `acct_hotkey_acct`, `acct_hotkey_key`, `acct_hotkey_cmdstr`, `acct_hotkey_enabled`, `acct_hotkey_when_added`, `acct_hotkey_down`) VALUES + (63, 4, 106, 'lock', 1, 1610251858, 0); +INSERT INTO `acct_hotkey` (`acct_hotkey_id`, `acct_hotkey_acct`, `acct_hotkey_key`, `acct_hotkey_cmdstr`, `acct_hotkey_enabled`, `acct_hotkey_when_added`, `acct_hotkey_down`) VALUES + (64, 4, 102, 'enter', 1, 1610251858, 0); +INSERT INTO `acct_hotkey` (`acct_hotkey_id`, `acct_hotkey_acct`, `acct_hotkey_key`, `acct_hotkey_cmdstr`, `acct_hotkey_enabled`, `acct_hotkey_when_added`, `acct_hotkey_down`) VALUES + (65, 4, 103, 'passenger', 1, 1610251858, 0); +INSERT INTO `acct_hotkey` (`acct_hotkey_id`, `acct_hotkey_acct`, `acct_hotkey_key`, `acct_hotkey_cmdstr`, `acct_hotkey_enabled`, `acct_hotkey_when_added`, `acct_hotkey_down`) VALUES + (66, 4, 109, 'cursor', 1, 1610251858, 0); +INSERT INTO `acct_hotkey` (`acct_hotkey_id`, `acct_hotkey_acct`, `acct_hotkey_key`, `acct_hotkey_cmdstr`, `acct_hotkey_enabled`, `acct_hotkey_when_added`, `acct_hotkey_down`) VALUES + (67, 4, 111, 'drop', 1, 1610251858, 0); +INSERT INTO `acct_hotkey` (`acct_hotkey_id`, `acct_hotkey_acct`, `acct_hotkey_key`, `acct_hotkey_cmdstr`, `acct_hotkey_enabled`, `acct_hotkey_when_added`, `acct_hotkey_down`) VALUES + (68, 4, 112, 'pickup', 1, 1610251858, 0); +INSERT INTO `acct_hotkey` (`acct_hotkey_id`, `acct_hotkey_acct`, `acct_hotkey_key`, `acct_hotkey_cmdstr`, `acct_hotkey_enabled`, `acct_hotkey_when_added`, `acct_hotkey_down`) VALUES + (69, 4, 117, 'use', 1, 1610251858, 0); +INSERT INTO `acct_hotkey` (`acct_hotkey_id`, `acct_hotkey_acct`, `acct_hotkey_key`, `acct_hotkey_cmdstr`, `acct_hotkey_enabled`, `acct_hotkey_when_added`, `acct_hotkey_down`) VALUES + (70, 4, 105, 'inv', 1, 1610251858, 0); +INSERT INTO `acct_hotkey` (`acct_hotkey_id`, `acct_hotkey_acct`, `acct_hotkey_key`, `acct_hotkey_cmdstr`, `acct_hotkey_enabled`, `acct_hotkey_when_added`, `acct_hotkey_down`) VALUES + (71, 4, 48, 'i 0', 1, 1610251858, 0); +INSERT INTO `acct_hotkey` (`acct_hotkey_id`, `acct_hotkey_acct`, `acct_hotkey_key`, `acct_hotkey_cmdstr`, `acct_hotkey_enabled`, `acct_hotkey_when_added`, `acct_hotkey_down`) VALUES + (72, 4, 49, 'i 1', 1, 1610251858, 0); +INSERT INTO `acct_hotkey` (`acct_hotkey_id`, `acct_hotkey_acct`, `acct_hotkey_key`, `acct_hotkey_cmdstr`, `acct_hotkey_enabled`, `acct_hotkey_when_added`, `acct_hotkey_down`) VALUES + (73, 4, 50, 'i 2', 1, 1610251858, 0); +INSERT INTO `acct_hotkey` (`acct_hotkey_id`, `acct_hotkey_acct`, `acct_hotkey_key`, `acct_hotkey_cmdstr`, `acct_hotkey_enabled`, `acct_hotkey_when_added`, `acct_hotkey_down`) VALUES + (74, 4, 51, 'i 3', 1, 1610251858, 0); +INSERT INTO `acct_hotkey` (`acct_hotkey_id`, `acct_hotkey_acct`, `acct_hotkey_key`, `acct_hotkey_cmdstr`, `acct_hotkey_enabled`, `acct_hotkey_when_added`, `acct_hotkey_down`) VALUES + (75, 4, 52, 'i 4', 1, 1610251858, 0); +INSERT INTO `acct_hotkey` (`acct_hotkey_id`, `acct_hotkey_acct`, `acct_hotkey_key`, `acct_hotkey_cmdstr`, `acct_hotkey_enabled`, `acct_hotkey_when_added`, `acct_hotkey_down`) VALUES + (76, 4, 53, 'i 5', 1, 1610251858, 0); +INSERT INTO `acct_hotkey` (`acct_hotkey_id`, `acct_hotkey_acct`, `acct_hotkey_key`, `acct_hotkey_cmdstr`, `acct_hotkey_enabled`, `acct_hotkey_when_added`, `acct_hotkey_down`) VALUES + (77, 4, 54, 'i 6', 1, 1610251858, 0); +INSERT INTO `acct_hotkey` (`acct_hotkey_id`, `acct_hotkey_acct`, `acct_hotkey_key`, `acct_hotkey_cmdstr`, `acct_hotkey_enabled`, `acct_hotkey_when_added`, `acct_hotkey_down`) VALUES + (78, 4, 55, 'i 7', 1, 1610251858, 0); +INSERT INTO `acct_hotkey` (`acct_hotkey_id`, `acct_hotkey_acct`, `acct_hotkey_key`, `acct_hotkey_cmdstr`, `acct_hotkey_enabled`, `acct_hotkey_when_added`, `acct_hotkey_down`) VALUES + (79, 4, 56, 'i 8', 1, 1610251858, 0); +INSERT INTO `acct_hotkey` (`acct_hotkey_id`, `acct_hotkey_acct`, `acct_hotkey_key`, `acct_hotkey_cmdstr`, `acct_hotkey_enabled`, `acct_hotkey_when_added`, `acct_hotkey_down`) VALUES + (80, 4, 57, 'i 9', 1, 1610251858, 0); +INSERT INTO `acct_hotkey` (`acct_hotkey_id`, `acct_hotkey_acct`, `acct_hotkey_key`, `acct_hotkey_cmdstr`, `acct_hotkey_enabled`, `acct_hotkey_when_added`, `acct_hotkey_down`) VALUES + (161, 9, 107, 'engine', 1, 1613340581, 0); +INSERT INTO `acct_hotkey` (`acct_hotkey_id`, `acct_hotkey_acct`, `acct_hotkey_key`, `acct_hotkey_cmdstr`, `acct_hotkey_enabled`, `acct_hotkey_when_added`, `acct_hotkey_down`) VALUES + (162, 9, 108, 'lights', 1, 1613340581, 0); +INSERT INTO `acct_hotkey` (`acct_hotkey_id`, `acct_hotkey_acct`, `acct_hotkey_key`, `acct_hotkey_cmdstr`, `acct_hotkey_enabled`, `acct_hotkey_when_added`, `acct_hotkey_down`) VALUES + (163, 9, 106, 'lock', 1, 1613340581, 0); +INSERT INTO `acct_hotkey` (`acct_hotkey_id`, `acct_hotkey_acct`, `acct_hotkey_key`, `acct_hotkey_cmdstr`, `acct_hotkey_enabled`, `acct_hotkey_when_added`, `acct_hotkey_down`) VALUES + (164, 9, 102, 'enter', 1, 1613340581, 0); +INSERT INTO `acct_hotkey` (`acct_hotkey_id`, `acct_hotkey_acct`, `acct_hotkey_key`, `acct_hotkey_cmdstr`, `acct_hotkey_enabled`, `acct_hotkey_when_added`, `acct_hotkey_down`) VALUES + (165, 9, 103, 'passenger', 1, 1613340581, 0); +INSERT INTO `acct_hotkey` (`acct_hotkey_id`, `acct_hotkey_acct`, `acct_hotkey_key`, `acct_hotkey_cmdstr`, `acct_hotkey_enabled`, `acct_hotkey_when_added`, `acct_hotkey_down`) VALUES + (166, 9, 109, 'cursor', 1, 1613340581, 0); +INSERT INTO `acct_hotkey` (`acct_hotkey_id`, `acct_hotkey_acct`, `acct_hotkey_key`, `acct_hotkey_cmdstr`, `acct_hotkey_enabled`, `acct_hotkey_when_added`, `acct_hotkey_down`) VALUES + (167, 9, 111, 'drop', 1, 1613340581, 0); +INSERT INTO `acct_hotkey` (`acct_hotkey_id`, `acct_hotkey_acct`, `acct_hotkey_key`, `acct_hotkey_cmdstr`, `acct_hotkey_enabled`, `acct_hotkey_when_added`, `acct_hotkey_down`) VALUES + (168, 9, 112, 'pickup', 1, 1613340581, 0); +INSERT INTO `acct_hotkey` (`acct_hotkey_id`, `acct_hotkey_acct`, `acct_hotkey_key`, `acct_hotkey_cmdstr`, `acct_hotkey_enabled`, `acct_hotkey_when_added`, `acct_hotkey_down`) VALUES + (169, 9, 117, 'use', 1, 1613340581, 0); +INSERT INTO `acct_hotkey` (`acct_hotkey_id`, `acct_hotkey_acct`, `acct_hotkey_key`, `acct_hotkey_cmdstr`, `acct_hotkey_enabled`, `acct_hotkey_when_added`, `acct_hotkey_down`) VALUES + (170, 9, 105, 'inv', 1, 1613340581, 0); +INSERT INTO `acct_hotkey` (`acct_hotkey_id`, `acct_hotkey_acct`, `acct_hotkey_key`, `acct_hotkey_cmdstr`, `acct_hotkey_enabled`, `acct_hotkey_when_added`, `acct_hotkey_down`) VALUES + (171, 9, 48, 'i 0', 1, 1613340581, 0); +INSERT INTO `acct_hotkey` (`acct_hotkey_id`, `acct_hotkey_acct`, `acct_hotkey_key`, `acct_hotkey_cmdstr`, `acct_hotkey_enabled`, `acct_hotkey_when_added`, `acct_hotkey_down`) VALUES + (172, 9, 49, 'i 1', 1, 1613340581, 0); +INSERT INTO `acct_hotkey` (`acct_hotkey_id`, `acct_hotkey_acct`, `acct_hotkey_key`, `acct_hotkey_cmdstr`, `acct_hotkey_enabled`, `acct_hotkey_when_added`, `acct_hotkey_down`) VALUES + (173, 9, 50, 'i 2', 1, 1613340581, 0); +INSERT INTO `acct_hotkey` (`acct_hotkey_id`, `acct_hotkey_acct`, `acct_hotkey_key`, `acct_hotkey_cmdstr`, `acct_hotkey_enabled`, `acct_hotkey_when_added`, `acct_hotkey_down`) VALUES + (174, 9, 51, 'i 3', 1, 1613340581, 0); +INSERT INTO `acct_hotkey` (`acct_hotkey_id`, `acct_hotkey_acct`, `acct_hotkey_key`, `acct_hotkey_cmdstr`, `acct_hotkey_enabled`, `acct_hotkey_when_added`, `acct_hotkey_down`) VALUES + (175, 9, 52, 'i 4', 1, 1613340581, 0); +INSERT INTO `acct_hotkey` (`acct_hotkey_id`, `acct_hotkey_acct`, `acct_hotkey_key`, `acct_hotkey_cmdstr`, `acct_hotkey_enabled`, `acct_hotkey_when_added`, `acct_hotkey_down`) VALUES + (176, 9, 53, 'i 5', 1, 1613340581, 0); +INSERT INTO `acct_hotkey` (`acct_hotkey_id`, `acct_hotkey_acct`, `acct_hotkey_key`, `acct_hotkey_cmdstr`, `acct_hotkey_enabled`, `acct_hotkey_when_added`, `acct_hotkey_down`) VALUES + (177, 9, 54, 'i 6', 1, 1613340581, 0); +INSERT INTO `acct_hotkey` (`acct_hotkey_id`, `acct_hotkey_acct`, `acct_hotkey_key`, `acct_hotkey_cmdstr`, `acct_hotkey_enabled`, `acct_hotkey_when_added`, `acct_hotkey_down`) VALUES + (178, 9, 55, 'i 7', 1, 1613340581, 0); +INSERT INTO `acct_hotkey` (`acct_hotkey_id`, `acct_hotkey_acct`, `acct_hotkey_key`, `acct_hotkey_cmdstr`, `acct_hotkey_enabled`, `acct_hotkey_when_added`, `acct_hotkey_down`) VALUES + (179, 9, 56, 'i 8', 1, 1613340581, 0); +INSERT INTO `acct_hotkey` (`acct_hotkey_id`, `acct_hotkey_acct`, `acct_hotkey_key`, `acct_hotkey_cmdstr`, `acct_hotkey_enabled`, `acct_hotkey_when_added`, `acct_hotkey_down`) VALUES + (180, 9, 57, 'i 9', 1, 1613340581, 0); +/*!40000 ALTER TABLE `acct_hotkey` ENABLE KEYS */; + +-- Dumping structure for table gtac_main.acct_main +CREATE TABLE IF NOT EXISTS `acct_main` ( + `acct_id` int(11) NOT NULL AUTO_INCREMENT, + `acct_name` varchar(128) CHARACTER SET utf16 NOT NULL DEFAULT '', + `acct_pass` varchar(512) CHARACTER SET utf16 NOT NULL DEFAULT '', + `acct_email` varchar(128) CHARACTER SET utf16 NOT NULL DEFAULT '', + `acct_settings` int(32) NOT NULL DEFAULT '0', + `acct_staff_flags` int(32) NOT NULL DEFAULT '0', + `acct_staff_title` varchar(32) CHARACTER SET utf16 NOT NULL DEFAULT '', + `acct_mod_flags` int(32) NOT NULL DEFAULT '0', + `acct_irc` varchar(64) CHARACTER SET utf16 NOT NULL DEFAULT '', + `acct_discord` int(64) NOT NULL DEFAULT '0', + `acct_ip` int(11) NOT NULL DEFAULT '0', + `acct_timezone` int(11) NOT NULL DEFAULT '0', + `acct_code_2fa` varchar(50) CHARACTER SET utf16 NOT NULL DEFAULT '0', + `acct_code_resetpass` varchar(50) CHARACTER SET utf16 NOT NULL DEFAULT '0', + `acct_code_verifyemail` varchar(50) CHARACTER SET utf16 NOT NULL DEFAULT '0', + `acct_when_made` bigint(32) NOT NULL DEFAULT '0', + PRIMARY KEY (`acct_id`) +) ENGINE=InnoDB AUTO_INCREMENT=10 DEFAULT CHARSET=latin1 COMMENT='Accounts'; + +-- Dumping data for table gtac_main.acct_main: ~5 rows (approximately) +/*!40000 ALTER TABLE `acct_main` DISABLE KEYS */; +INSERT INTO `acct_main` (`acct_id`, `acct_name`, `acct_pass`, `acct_email`, `acct_settings`, `acct_staff_flags`, `acct_staff_title`, `acct_mod_flags`, `acct_irc`, `acct_discord`, `acct_ip`, `acct_timezone`, `acct_code_2fa`, `acct_code_resetpass`, `acct_code_verifyemail`, `acct_when_made`) VALUES + (1, 'Vortrex', '4271461D21D2A465D0FF2B7082A9136F1DACD78127C805E2B33292AAA200E5682F4B7D4AB426224222B24AA1183C4D02FEE983030996CF3963746AE1C46A375D', 'adrianbram@gmail.com', 64, -1, 'Scripter', 32768, '', 0, 840690839, 0, '0', '0', '', 0); +INSERT INTO `acct_main` (`acct_id`, `acct_name`, `acct_pass`, `acct_email`, `acct_settings`, `acct_staff_flags`, `acct_staff_title`, `acct_mod_flags`, `acct_irc`, `acct_discord`, `acct_ip`, `acct_timezone`, `acct_code_2fa`, `acct_code_resetpass`, `acct_code_verifyemail`, `acct_when_made`) VALUES + (2, 'maxaxle', '33A31BF6E32BD3BCCE1D2F2AB3B0D0768CEDAD30BC21A2EFA5F8A66BD7333A5545EFC773830E9F0B3C7AA285E3FDF60BADD1E93401AF9FC26CC25BB77238D750', 'axle008@hotmail.com', 64, -1, 'Server Manager', 0, '', 0, 1228971253, 0, '0', '0', '0', 0); +INSERT INTO `acct_main` (`acct_id`, `acct_name`, `acct_pass`, `acct_email`, `acct_settings`, `acct_staff_flags`, `acct_staff_title`, `acct_mod_flags`, `acct_irc`, `acct_discord`, `acct_ip`, `acct_timezone`, `acct_code_2fa`, `acct_code_resetpass`, `acct_code_verifyemail`, `acct_when_made`) VALUES + (3, 'PerikiyoXD', 'A86A40A4C0051CBBDD8BEFD92AE6C07FC81DE8357F9C83C2B9B1B1AB8237A1DF9097560DD0377AEC9193E3355C15432265F39A5385CA1BC60F84BDB04D0E98C9', 'perikiyoxd@gmail.com', 0, 0, '', 0, '', 0, 1411888738, 0, '0', '0', '0', 0); +INSERT INTO `acct_main` (`acct_id`, `acct_name`, `acct_pass`, `acct_email`, `acct_settings`, `acct_staff_flags`, `acct_staff_title`, `acct_mod_flags`, `acct_irc`, `acct_discord`, `acct_ip`, `acct_timezone`, `acct_code_2fa`, `acct_code_resetpass`, `acct_code_verifyemail`, `acct_when_made`) VALUES + (4, 'Vortrex2', 'BF5A9321DE2D7788153819FE85D7898B6873951129701ABA814403C649F16C37C5439757825178C2A4292DCF34446CB415F6340E6BB47539564514CCE65E5AC3', 'adrianbram@gmail.com', 0, 0, '', 0, '', 0, 0, 0, '0', '0', '0', 0); +INSERT INTO `acct_main` (`acct_id`, `acct_name`, `acct_pass`, `acct_email`, `acct_settings`, `acct_staff_flags`, `acct_staff_title`, `acct_mod_flags`, `acct_irc`, `acct_discord`, `acct_ip`, `acct_timezone`, `acct_code_2fa`, `acct_code_resetpass`, `acct_code_verifyemail`, `acct_when_made`) VALUES + (9, 'Jack', 'E10480C85DDBC6DEBD2D55038CE0AFAEEB88B00CFE76B0FCF5248BF93D19AF1EA7E4B73FDF9DA1862FF73E5190E9F41750ECE1B4E4276F9CD8604B1DC824A076', 'jack9267@me.com', 0, 0, '', 0, '', 0, 2147483647, 0, '0', '0', '0', 0); +/*!40000 ALTER TABLE `acct_main` ENABLE KEYS */; + +-- Dumping structure for table gtac_main.acct_msg +CREATE TABLE IF NOT EXISTS `acct_msg` ( + `acct_msg_id` int(11) NOT NULL AUTO_INCREMENT, + `acct_msg_acct` int(11) NOT NULL DEFAULT '0', + `acct_msg_who_sent` int(11) NOT NULL DEFAULT '0', + `acct_msg_when_sent` bigint(20) NOT NULL DEFAULT '0', + `acct_msg_when_read` bigint(20) NOT NULL DEFAULT '0', + `acct_msg_deleted` tinyint(1) NOT NULL DEFAULT '0', + `acct_msg_when_deleted` bigint(20) NOT NULL DEFAULT '0', + `acct_msg_folder` int(11) NOT NULL DEFAULT '0', + `acct_msg_message` text NOT NULL, + PRIMARY KEY (`acct_msg_id`), + KEY `acct_msg_acct` (`acct_msg_acct`), + KEY `acct_msg_who_sent` (`acct_msg_who_sent`), + CONSTRAINT `fk_acct_msg_recipient` FOREIGN KEY (`acct_msg_acct`) REFERENCES `acct_main` (`acct_id`) ON DELETE CASCADE ON UPDATE CASCADE, + CONSTRAINT `fk_acct_msg_sender` FOREIGN KEY (`acct_msg_who_sent`) REFERENCES `acct_main` (`acct_id`) ON DELETE CASCADE ON UPDATE CASCADE +) ENGINE=InnoDB DEFAULT CHARSET=latin1 COMMENT='Accounts - Private Messages (Mail)'; + +-- Dumping data for table gtac_main.acct_msg: ~0 rows (approximately) +/*!40000 ALTER TABLE `acct_msg` DISABLE KEYS */; +/*!40000 ALTER TABLE `acct_msg` ENABLE KEYS */; + +-- Dumping structure for table gtac_main.acct_note +CREATE TABLE IF NOT EXISTS `acct_note` ( + `acct_note_id` int(11) NOT NULL AUTO_INCREMENT, + `acct_note_acct` int(11) NOT NULL DEFAULT '0', + `acct_note_server` int(11) NOT NULL DEFAULT '0', + `acct_note_who_added` int(11) NOT NULL DEFAULT '0', + `acct_note_when_added` bigint(20) NOT NULL DEFAULT '0', + `acct_note_message` varchar(255) NOT NULL DEFAULT '', + `acct_note_deleted` tinyint(1) NOT NULL DEFAULT '0', + `acct_note_who_deleted` int(11) NOT NULL DEFAULT '0', + `acct_note_when_deleted` bigint(20) NOT NULL DEFAULT '0', + PRIMARY KEY (`acct_note_id`), + KEY `acct_note_acct` (`acct_note_acct`), + KEY `acct_note_server` (`acct_note_server`), + KEY `acct_note_who_added` (`acct_note_who_added`), + CONSTRAINT `fk_acct_note_acct` FOREIGN KEY (`acct_note_acct`) REFERENCES `acct_main` (`acct_id`) ON DELETE CASCADE ON UPDATE CASCADE, + CONSTRAINT `fk_acct_note_admin` FOREIGN KEY (`acct_note_who_added`) REFERENCES `acct_main` (`acct_id`) ON DELETE CASCADE ON UPDATE CASCADE, + CONSTRAINT `fk_acct_note_server` FOREIGN KEY (`acct_note_server`) REFERENCES `svr_main` (`svr_id`) ON DELETE CASCADE ON UPDATE CASCADE +) ENGINE=InnoDB DEFAULT CHARSET=latin1 COMMENT='Accounts - Staff Notes'; + +-- Dumping data for table gtac_main.acct_note: ~0 rows (approximately) +/*!40000 ALTER TABLE `acct_note` DISABLE KEYS */; +/*!40000 ALTER TABLE `acct_note` ENABLE KEYS */; + +-- Dumping structure for table gtac_main.acct_wl +CREATE TABLE IF NOT EXISTS `acct_wl` ( + `acct_wl_id` int(11) NOT NULL AUTO_INCREMENT, + `acct_wl_acct` int(11) NOT NULL DEFAULT '0', + `acct_wl_ip` int(24) NOT NULL DEFAULT '0', + `acct_wl_uid` varchar(128) NOT NULL DEFAULT '', + `acct_wl_when_added` int(32) NOT NULL DEFAULT '0', + `acct_wl_enabled` tinyint(1) NOT NULL DEFAULT '0', + PRIMARY KEY (`acct_wl_id`), + KEY `acct_wl_acct` (`acct_wl_acct`), + CONSTRAINT `fk_acct_wl_acct` FOREIGN KEY (`acct_wl_acct`) REFERENCES `acct_main` (`acct_id`) ON DELETE CASCADE ON UPDATE CASCADE +) ENGINE=InnoDB DEFAULT CHARSET=latin1 COMMENT='Accounts - Access Whitelist'; + +-- Dumping data for table gtac_main.acct_wl: ~0 rows (approximately) +/*!40000 ALTER TABLE `acct_wl` DISABLE KEYS */; +/*!40000 ALTER TABLE `acct_wl` ENABLE KEYS */; + +-- Dumping structure for table gtac_main.ac_script_bl +CREATE TABLE IF NOT EXISTS `ac_script_bl` ( + `ac_script_bl_id` int(11) NOT NULL AUTO_INCREMENT, + `ac_script_bl_server` int(11) NOT NULL DEFAULT '0', + `ac_script_bl_name` varchar(50) NOT NULL DEFAULT '', + `ac_script_bl_enabled` int(11) NOT NULL DEFAULT '0', + PRIMARY KEY (`ac_script_bl_id`), + KEY `ac_script_bl_server` (`ac_script_bl_server`), + CONSTRAINT `fk_ac_script_bl_server` FOREIGN KEY (`ac_script_bl_server`) REFERENCES `svr_main` (`svr_id`) ON DELETE CASCADE ON UPDATE CASCADE +) ENGINE=InnoDB AUTO_INCREMENT=4 DEFAULT CHARSET=utf8 COMMENT='Anticheat - Blacklisted Scripts'; + +-- Dumping data for table gtac_main.ac_script_bl: ~3 rows (approximately) +/*!40000 ALTER TABLE `ac_script_bl` DISABLE KEYS */; +INSERT INTO `ac_script_bl` (`ac_script_bl_id`, `ac_script_bl_server`, `ac_script_bl_name`, `ac_script_bl_enabled`) VALUES + (1, 4, 'load_modmanager', 1); +INSERT INTO `ac_script_bl` (`ac_script_bl_id`, `ac_script_bl_server`, `ac_script_bl_name`, `ac_script_bl_enabled`) VALUES + (2, 1, 'info', 1); +INSERT INTO `ac_script_bl` (`ac_script_bl_id`, `ac_script_bl_server`, `ac_script_bl_name`, `ac_script_bl_enabled`) VALUES + (3, 1, 'info2', 1); +/*!40000 ALTER TABLE `ac_script_bl` ENABLE KEYS */; + +-- Dumping structure for table gtac_main.ac_script_wl +CREATE TABLE IF NOT EXISTS `ac_script_wl` ( + `ac_script_wl_id` int(11) NOT NULL AUTO_INCREMENT, + `ac_script_wl_server` int(11) NOT NULL DEFAULT '0', + `ac_script_wl_name` varchar(50) NOT NULL DEFAULT '', + `ac_script_wl_enabled` int(11) NOT NULL DEFAULT '1', + PRIMARY KEY (`ac_script_wl_id`) USING BTREE, + KEY `ac_script_wl_server` (`ac_script_wl_server`), + CONSTRAINT `fk_ac_script_wl_server` FOREIGN KEY (`ac_script_wl_server`) REFERENCES `svr_main` (`svr_id`) ON DELETE CASCADE ON UPDATE CASCADE +) ENGINE=InnoDB AUTO_INCREMENT=6 DEFAULT CHARSET=utf8 COMMENT='Anticheat - Whitelisted Scripts'; + +-- Dumping data for table gtac_main.ac_script_wl: ~5 rows (approximately) +/*!40000 ALTER TABLE `ac_script_wl` DISABLE KEYS */; +INSERT INTO `ac_script_wl` (`ac_script_wl_id`, `ac_script_wl_server`, `ac_script_wl_name`, `ac_script_wl_enabled`) VALUES + (1, 4, 'sync', 1); +INSERT INTO `ac_script_wl` (`ac_script_wl_id`, `ac_script_wl_server`, `ac_script_wl_name`, `ac_script_wl_enabled`) VALUES + (2, 4, 'gtac', 1); +INSERT INTO `ac_script_wl` (`ac_script_wl_id`, `ac_script_wl_server`, `ac_script_wl_name`, `ac_script_wl_enabled`) VALUES + (3, 4, 'network_main', 1); +INSERT INTO `ac_script_wl` (`ac_script_wl_id`, `ac_script_wl_server`, `ac_script_wl_name`, `ac_script_wl_enabled`) VALUES + (4, 4, 'mpcellphone', 1); +INSERT INTO `ac_script_wl` (`ac_script_wl_id`, `ac_script_wl_server`, `ac_script_wl_name`, `ac_script_wl_enabled`) VALUES + (5, 4, 'speechcontrol_net', 1); +/*!40000 ALTER TABLE `ac_script_wl` ENABLE KEYS */; + +-- Dumping structure for table gtac_main.atm_main +CREATE TABLE IF NOT EXISTS `atm_main` ( + `atm_id` int(11) NOT NULL AUTO_INCREMENT, + `atm_server` int(11) NOT NULL DEFAULT '0', + `atm_pos_x` float NOT NULL DEFAULT '0', + `atm_pos_y` float NOT NULL DEFAULT '0', + `atm_pos_z` float NOT NULL DEFAULT '0', + `atm_fee` int(11) NOT NULL DEFAULT '0', + `atm_disabled` tinyint(1) NOT NULL DEFAULT '0', + PRIMARY KEY (`atm_id`) +) ENGINE=InnoDB DEFAULT CHARSET=latin1 COMMENT='ATMs'; + +-- Dumping data for table gtac_main.atm_main: ~0 rows (approximately) +/*!40000 ALTER TABLE `atm_main` DISABLE KEYS */; +/*!40000 ALTER TABLE `atm_main` ENABLE KEYS */; + +-- Dumping structure for table gtac_main.atm_use +CREATE TABLE IF NOT EXISTS `atm_use` ( + `atm_use_id` int(11) NOT NULL AUTO_INCREMENT, + `atm_use_atm` int(11) NOT NULL DEFAULT '0', + `atm_use_bankacct` int(11) NOT NULL DEFAULT '0', + `atm_use_amount` int(11) NOT NULL DEFAULT '0', + `atm_use_when` int(32) NOT NULL DEFAULT '0', + `atm_use_balance_before` int(11) NOT NULL DEFAULT '0', + `atm_use_balance_after` int(11) NOT NULL DEFAULT '0', + `atm_use_result` int(11) NOT NULL DEFAULT '0', + PRIMARY KEY (`atm_use_id`) +) ENGINE=InnoDB DEFAULT CHARSET=latin1 COMMENT='ATMs - Usage'; + +-- Dumping data for table gtac_main.atm_use: ~0 rows (approximately) +/*!40000 ALTER TABLE `atm_use` DISABLE KEYS */; +/*!40000 ALTER TABLE `atm_use` ENABLE KEYS */; + +-- Dumping structure for table gtac_main.bank_main +CREATE TABLE IF NOT EXISTS `bank_main` ( + `bank_id` int(11) NOT NULL AUTO_INCREMENT, + `bank_server` int(11) NOT NULL DEFAULT '0', + `bank_name` varchar(128) NOT NULL DEFAULT 'Unnamed', + `bank_enabled` tinyint(1) NOT NULL DEFAULT '1', + `bank_biz` int(11) NOT NULL DEFAULT '1', + PRIMARY KEY (`bank_id`) +) ENGINE=InnoDB DEFAULT CHARSET=latin1 COMMENT='Banks'; + +-- Dumping data for table gtac_main.bank_main: ~0 rows (approximately) +/*!40000 ALTER TABLE `bank_main` DISABLE KEYS */; +/*!40000 ALTER TABLE `bank_main` ENABLE KEYS */; + +-- Dumping structure for table gtac_main.ban_main +CREATE TABLE IF NOT EXISTS `ban_main` ( + `ban_id` int(11) NOT NULL AUTO_INCREMENT, + `ban_server` int(11) NOT NULL DEFAULT '0', + `ban_detail` int(11) NOT NULL DEFAULT '0', + `ban_type` tinyint(1) NOT NULL DEFAULT '0', + `ban_ip_start` int(24) NOT NULL DEFAULT '0', + `ban_ip_end` int(24) NOT NULL DEFAULT '0', + `ban_uid` varchar(256) NOT NULL DEFAULT '', + `ban_who_added` int(11) NOT NULL DEFAULT '0', + `ban_when_added` int(32) NOT NULL DEFAULT '0', + `ban_reason` varchar(255) NOT NULL DEFAULT '', + `ban_deleted` tinyint(1) NOT NULL DEFAULT '0', + PRIMARY KEY (`ban_id`), + KEY `ban_server` (`ban_server`), + KEY `ban_who_added` (`ban_who_added`), + CONSTRAINT `fk_ban_admin` FOREIGN KEY (`ban_who_added`) REFERENCES `acct_main` (`acct_id`) ON DELETE CASCADE ON UPDATE CASCADE, + CONSTRAINT `fk_ban_server` FOREIGN KEY (`ban_server`) REFERENCES `svr_main` (`svr_id`) ON DELETE CASCADE ON UPDATE CASCADE +) ENGINE=InnoDB DEFAULT CHARSET=latin1 COMMENT='Bans'; + +-- Dumping data for table gtac_main.ban_main: ~0 rows (approximately) +/*!40000 ALTER TABLE `ban_main` DISABLE KEYS */; +/*!40000 ALTER TABLE `ban_main` ENABLE KEYS */; + +-- Dumping structure for table gtac_main.ban_try +CREATE TABLE IF NOT EXISTS `ban_try` ( + `ban_try_id` int(11) NOT NULL AUTO_INCREMENT, + `ban_try_server` tinyint(2) NOT NULL DEFAULT '0', + `ban_try_ip` int(24) NOT NULL DEFAULT '0', + `ban_try_uid` varchar(128) NOT NULL DEFAULT '', + `ban_try_when_tried` int(32) NOT NULL DEFAULT '0', + `ban_try_ban_id` int(11) NOT NULL DEFAULT '0', + PRIMARY KEY (`ban_try_id`) +) ENGINE=InnoDB DEFAULT CHARSET=latin1 COMMENT='Bans - Connection Attempts'; + +-- Dumping data for table gtac_main.ban_try: ~0 rows (approximately) +/*!40000 ALTER TABLE `ban_try` DISABLE KEYS */; +/*!40000 ALTER TABLE `ban_try` ENABLE KEYS */; + +-- Dumping structure for table gtac_main.biz_buy +CREATE TABLE IF NOT EXISTS `biz_buy` ( + `biz_buy_id` int(11) NOT NULL AUTO_INCREMENT, + `biz_buy_biz` int(11) NOT NULL DEFAULT '0', + `biz_buy_sacct` int(11) NOT NULL DEFAULT '0', + `biz_buy_amount` int(11) NOT NULL DEFAULT '0', + `biz_buy_prod` int(11) NOT NULL DEFAULT '0', + `biz_buy_tip` int(11) NOT NULL DEFAULT '0', + `biz_buy_result` tinyint(4) NOT NULL DEFAULT '0', + PRIMARY KEY (`biz_buy_id`) +) ENGINE=InnoDB DEFAULT CHARSET=latin1 COMMENT='Businesses - Purchases'; +CONSTRAINT `fk_biz_buy_biz` FOREIGN KEY (`biz_buy_biz`) REFERENCES `biz_main` (`biz_id`) ON DELETE CASCADE ON UPDATE CASCADE +CONSTRAINT `fk_biz_buy_sacct` FOREIGN KEY (`biz_buy_sacct`) REFERENCES `sacct_main` (`sacct_id`) ON DELETE CASCADE ON UPDATE CASCADE + +-- Dumping data for table gtac_main.biz_buy: ~0 rows (approximately) +/*!40000 ALTER TABLE `biz_buy` DISABLE KEYS */; +/*!40000 ALTER TABLE `biz_buy` ENABLE KEYS */; + +-- Dumping structure for table gtac_main.biz_loc +CREATE TABLE IF NOT EXISTS `biz_loc` ( + `biz_loc_id` int(11) NOT NULL AUTO_INCREMENT, + `biz_loc_name` varchar(128) NOT NULL DEFAULT '', + `biz_loc_type` int(11) NOT NULL DEFAULT '0', + `biz_loc_biz` int(11) NOT NULL DEFAULT '0', + `biz_loc_enabled` int(11) NOT NULL DEFAULT '0', + `biz_loc_pos_x` float NOT NULL DEFAULT '0', + `biz_loc_pos_y` float NOT NULL DEFAULT '0', + `biz_loc_pos_z` float NOT NULL DEFAULT '0', + `biz_loc_rot_z` float NOT NULL DEFAULT '0', + `biz_loc_int` int(11) NOT NULL DEFAULT '0', + `biz_loc_vw` int(11) NOT NULL DEFAULT '0', + PRIMARY KEY (`biz_loc_id`) USING BTREE +) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Businesses - Locations'; +CONSTRAINT `fk_biz_loc_biz` FOREIGN KEY (`biz_loc_biz`) REFERENCES `biz_main` (`biz_id`) ON DELETE CASCADE ON UPDATE CASCADE + +-- Dumping data for table gtac_main.biz_loc: ~0 rows (approximately) +/*!40000 ALTER TABLE `biz_loc` DISABLE KEYS */; +/*!40000 ALTER TABLE `biz_loc` ENABLE KEYS */; + +-- Dumping structure for table gtac_main.biz_main +CREATE TABLE IF NOT EXISTS `biz_main` ( + `biz_id` int(11) NOT NULL AUTO_INCREMENT, + `biz_server` int(11) NOT NULL DEFAULT '0', + `biz_name` varchar(40) NOT NULL DEFAULT 'Unnamed Business', + `biz_type` tinyint(4) NOT NULL DEFAULT '0', + `biz_buy_price` int(11) NOT NULL DEFAULT '0', + `biz_owner_type` int(11) NOT NULL DEFAULT '0', + `biz_owner_id` int(11) NOT NULL DEFAULT '0', + `biz_entrance_pos_x` float NOT NULL DEFAULT '0', + `biz_entrance_pos_y` float NOT NULL DEFAULT '0', + `biz_entrance_pos_z` float NOT NULL DEFAULT '0', + `biz_entrance_rot_z` float NOT NULL DEFAULT '0', + `biz_entrance_int` int(11) NOT NULL DEFAULT '0', + `biz_entrance_vw` int(11) NOT NULL DEFAULT '0', + `biz_entrance_pickup` int(11) NOT NULL DEFAULT '-1', + `biz_entrance_blip` int(11) NOT NULL DEFAULT '-1', + `biz_exit_pos_x` float NOT NULL DEFAULT '0', + `biz_exit_pos_y` float NOT NULL DEFAULT '0', + `biz_exit_pos_z` float NOT NULL DEFAULT '0', + `biz_exit_rot_z` float NOT NULL DEFAULT '0', + `biz_exit_int` int(11) NOT NULL DEFAULT '0', + `biz_exit_vw` int(11) NOT NULL DEFAULT '0', + `biz_exit_pickup` int(11) NOT NULL DEFAULT '-1', + `biz_exit_blip` int(11) NOT NULL DEFAULT '-1', + `biz_misc_customext` tinyint(4) NOT NULL DEFAULT '0', + `biz_misc_customint` tinyint(4) NOT NULL DEFAULT '0', + `biz_supply_pos_x` float NOT NULL DEFAULT '0', + `biz_supply_pos_y` float NOT NULL DEFAULT '0', + `biz_supply_pos_z` float NOT NULL DEFAULT '0', + `biz_buy_pos_x` float NOT NULL DEFAULT '0', + `biz_buy_pos_y` float NOT NULL DEFAULT '0', + `biz_buy_pos_z` float NOT NULL DEFAULT '0', + `biz_buy_rot_z` float NOT NULL DEFAULT '0', + `biz_misc_customvw` int(11) NOT NULL DEFAULT '0', + `biz_locked` tinyint(1) NOT NULL DEFAULT '0', + `biz_till` int(11) NOT NULL DEFAULT '0', + `biz_entrance_fee` int(11) NOT NULL DEFAULT '0', + `biz_deleted` tinyint(1) NOT NULL DEFAULT '0', + `biz_who_deleted` int(11) NOT NULL DEFAULT '0', + `biz_when_deleted` int(32) NOT NULL DEFAULT '0', + `biz_has_interior` tinyint(1) NOT NULL DEFAULT '0', + PRIMARY KEY (`biz_id`) USING BTREE, + KEY `biz_server` (`biz_server`), + KEY `biz_owner` (`biz_owner_type`,`biz_owner_id`), + CONSTRAINT `fk_biz_server` FOREIGN KEY (`biz_server`) REFERENCES `svr_main` (`svr_id`) ON DELETE CASCADE ON UPDATE CASCADE +) ENGINE=InnoDB AUTO_INCREMENT=342 DEFAULT CHARSET=latin1 COMMENT='Businesses'; + +-- Dumping data for table gtac_main.biz_main: ~253 rows (approximately) +/*!40000 ALTER TABLE `biz_main` DISABLE KEYS */; +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES + (1, 4, 'Unnamed Business', 5, 30000, 0, 0, -90.24, -1219.76, 2.71, 350.178, 0, 0, 0, -1, -2026.9, -104.128, 1035.17, 179.07, 3, 5001, 0, -1, 0, 0, -93.521, -1241.12, 1.92454, -104.326, -1213.02, 2.76131, 174.391, 0, 0, 0, 0, 0, 0, 0, 1); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES + (2, 4, 'Unnamed Business', 8, 30000, 0, 0, 2078.66, -1582.38, 13.49, 337.053, 0, 0, 0, -1, -25.8433, -187.446, 1003.55, 4.72576, 17, 5002, 0, -1, 0, 0, 1795.3, -1166.21, 23.8281, 2127.1, -1134.72, 25.5488, 351.147, 0, 0, 0, 0, 0, 0, 0, 1); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES + (4, 4, 'Pawn', 4, 30000, 0, 0, 984.18, -1336.44, 13.55, 199.037, 0, 0, 0, -1, 315.799, -143.53, 999.602, 1.01837, 7, 5004, 0, -1, 0, 1, 1872.19, -1621.2, 13.5469, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES + (5, 4, 'Unnamed Business', 1, 30000, 0, 0, 1653.2, 1470.7, 1152.43, 299.874, 0, 0, 0, -1, -25.9841, -187.986, 1003.55, 357.842, 17, 5005, 0, -1, 0, 0, 1837.36, -1434.91, 13.5625, 1704.68, -1587.22, 13.5383, 87.0352, 4, 0, 0, 0, 0, 0, 0, 1); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES + (6, 4, 'Unnamed Business', 3, 30000, 0, 0, 1333.37, -1864.21, 13.55, 154.702, 0, 0, 0, -1, 6.6435, -31.4626, 1003.55, 191.882, 10, 5006, 0, -1, 0, 1, 1565.82, -1167.49, 24.0781, 1647.94, -2483.22, 13.5547, 87.3502, 0, 0, 0, 0, 0, 0, 0, 1); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES + (7, 4, 'Unnamed Business', 5, 30000, 0, 0, 1026.38, -1927.19, 12.8, 154.459, 0, 0, 0, -1, 1226.77, -813.652, 1084.01, 353.088, 5, 5007, 0, -1, 0, 1, 1915.87, -1790.69, 13.3906, 1026.22, -1915.85, 12.8776, 266.223, 0, 0, 0, 0, 0, 0, 0, 1); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES + (8, 4, 'Unnamed Business', 3, 30000, 0, 0, -172.13, -1825.41, 55.41, 215.571, 0, 0, 0, -1, 1445.44, -1294.74, 13.5469, 100.653, 0, 5008, 0, -1, 1, 0, 1448.97, -1285.72, 13.5469, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES + (11, 4, 'Unnamed Business', 8, 30000, 0, 0, 1070.49, -1873.66, 13.55, 274.819, 0, 0, 0, -1, -31.0053, -91.6372, 1003.55, 0.680122, 18, 5011, 0, -1, 0, 0, -66.1294, -1169.59, 1.86967, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES + (12, 4, 'Unnamed Business', 4, 30000, 0, 0, 1368.98, -1279.67, 13.55, 262.027, 0, 0, 0, -1, 315.902, -143.025, 999.602, 5.53311, 7, 5012, 0, -1, 0, 0, 1365.63, -1285.08, 13.5469, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES + (13, 4, 'Unnamed Business', 2, 30000, 0, 0, 1709.03, 1443.96, 1145.78, 281.106, 0, 0, 0, -1, -2029.62, -119.618, 1035.17, 1.0423, 3, 5013, 0, -1, 0, 0, -1579.28, 2652.63, 55.8359, -1600.75, 2645.28, 57.6595, 120.282, 0, 0, 0, 0, 0, 0, 0, 1); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES + (14, 4, 'Unnamed Business', 8, 30000, 0, 0, 1343.73, -1506.56, 13.55, 234.154, 0, 0, 0, -1, -25.8373, -188.091, 1003.55, 355.897, 17, 5014, 0, -1, 0, 0, 2156.02, -1020.91, 62.7113, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES + (16, 4, 'Unnamed Business', 1, 30000, 0, 0, -1676.24, 432.1, 7.18, 33.0359, 0, 0, 0, -1, -27.3621, -57.8246, 1003.55, 179.037, 6, 5016, 0, -1, 1, 0, -1661.84, 442.168, 7.17969, -1591.62, 2657.25, 55.7501, 356.386, 0, 0, 0, 0, 0, 0, 0, 1); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES + (17, 4, 'Unnamed Business', 8, 30000, 0, 0, 667.21, -1770.07, 13.64, 164.522, 0, 0, 0, -1, -25.8373, -188.091, 1003.55, 355.897, 17, 5017, 0, -1, 0, 0, 1844.34, -1860.84, 13.3828, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES + (18, 4, 'Unnamed Business', 1, 30000, 0, 0, 1000.3, -920.2, 42.33, 96.2681, 0, 0, 0, -1, -31.1112, -91.8577, 1003.55, 0.052338, 18, 5018, 0, -1, 0, 0, 1022.79, -916.642, 42.1797, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES + (19, 4, 'Unnamed Business', 2, 30000, 0, 0, 1456.53, -1137.56, 23.95, 36.7288, 0, 0, 0, -1, 207.615, -111.163, 1005.13, 187.89, 15, 5019, 0, -1, 0, 0, 2015.15, -1304.98, 23.986, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES + (20, 4, 'Unnamed Business', 8, 30000, 0, 0, -1989.49, 884.84, 46.54, 98.2134, 0, 0, 0, -1, -31.0061, -91.5664, 1003.55, 0.680122, 18, 5020, 0, -1, 1, 0, -1981.44, 905.115, 45.7979, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES + (21, 4, 'Unnamed Business', 5, 30000, 0, 0, 1628.75, -1903.4, 13.55, 84.3039, 0, 0, 0, -1, 1494.8, 1305.13, 1093.29, 65.5664, 3, 5021, 0, -1, 0, 0, 904.141, -1333.77, 13.5469, 1636.17, -1893.07, 13.2619, 2.61639, 0, 0, 0, 0, 0, 0, 0, 1); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES + (22, 4, 'Unnamed Business', 5, 30000, 0, 0, 1606.29, -2431.95, 13.55, 1.14757, 0, 0, 0, -1, -30.86, -91.9062, 1003.55, 354.538, 18, 5022, 0, -1, 0, 0, 1933.08, -2067.76, 13.5469, 1602.48, -2488.26, 13.5547, 267.485, 0, 0, 0, 0, 0, 0, 0, 1); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES + (23, 4, 'Unnamed Business', 0, 30000, 0, 0, 1796.35, -1721.18, 13.54, 180, 0, 0, 0, -1, -795.014, 489.671, 1376.2, 358.859, 1, 5023, 0, -1, 1, 1, 1809.53, -1724.42, 13.5362, 1899.97, -2346.11, 13.5469, 263.56, 0, 0, 0, 0, 0, 0, 0, 1); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES + (24, 4, 'Unnamed Business', 1, 30000, 0, 0, 1654.2, 1467.87, 1152.79, 325.41, 0, 0, 0, -1, -30.9635, -91.1079, 1003.55, 4.80216, 18, 5024, 0, -1, 0, 0, 1668.04, -1583.68, 13.5469, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES + (25, 4, 'Unnamed Business', 3, 30000, 0, 0, 1877.85, -1627.79, 13.34, 359.503, 0, 0, 0, -1, 460.448, -88.5426, 999.555, 86.9106, 4, 5025, 0, -1, 0, 0, 1794.43, -1726.55, 13.5469, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES + (26, 4, 'Unnamed Business', 2, 30000, 0, 0, 1704.21, -1578.79, 13.89, 278.564, 0, 0, 0, -1, 227.075, -7.33794, 1002.21, 91.3542, 5, 5026, 0, -1, 0, 0, -1699.21, 954.874, 24.8906, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES + (27, 4, 'Unnamed Business', 3, 30000, 0, 0, 2419.8, -1509.08, 24, 268.67, 0, 0, 0, -1, 460.154, -88.5364, 999.555, 88.7906, 4, 5027, 0, -1, 0, 0, 2422.79, -1517.02, 24.0069, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES + (28, 4, 'Unnamed Business', 4, 30000, 0, 0, 1357.07, 308.06, 19.75, 338.103, 0, 0, 0, -1, 315.641, -142.827, 999.602, 6.35604, 7, 5028, 0, -1, 0, 0, 1365.69, -1283.99, 13.5469, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES + (30, 4, 'Unnamed Business', 8, 30000, 0, 0, 1044.57, -1308.84, 13.55, 99.115, 0, 0, 0, -1, -25.7453, -188.253, 1003.55, 171.504, 17, 5030, 0, -1, 0, 0, 1037.38, -1311.36, 13.5469, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES + (31, 4, 'Unnamed Business', 0, 30000, 0, 0, 2247.63, 2396.32, 10.82, 184.236, 0, 0, 0, -1, 204.462, -168.754, 1000.52, 353.473, 14, 5031, 0, -1, 0, 0, 567.646, -1291.5, 17.2422, 561.662, -1292.28, 17.2482, 232.669, 0, 0, 0, 0, 0, 0, 0, 1); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES + (33, 4, 'Unnamed Business', 4, 30000, 0, 0, 387.18, -1817.95, 7.84, 273.117, 0, 0, 0, -1, 315.715, -142.947, 999.602, 0.321425, 7, 5033, 0, -1, 0, 1, 2521.73, -1544.98, 24.01, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES + (34, 4, 'Unnamed Business', 8, 30000, 0, 0, 1073.21, -1384.87, 13.87, 144.937, 0, 0, 0, -1, 363.315, -74.8249, 1001.51, 315.517, 10, 5034, 0, -1, 0, 0, 1191.5, -891.539, 43.1784, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES + (35, 4, 'Unnamed Business', 2, 30000, 0, 0, 1109.27, -301.43, 74.54, 358.887, 0, 0, 0, -1, 203.856, -50.2081, 1001.8, 352.563, 1, 5035, 0, -1, 0, 0, -2493.67, -33.0023, 25.7656, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES + (36, 4, 'Unnamed Business', 1, 30000, 0, 0, 1799.79, -1696.08, 5.25, 3.04433, 0, 0, 0, -1, -31.4892, -91.506, 1003.55, 358.788, 18, 5036, 0, -1, 0, 0, -1948.43, 826.607, 41.5261, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES + (37, 4, 'Unnamed Business', 3, 30000, 0, 0, 1732.86, -1582.03, 14.16, 1.36931, 0, 0, 0, -1, 460.449, -88.6508, 999.555, 84.9172, 4, 5037, 0, -1, 0, 0, 1668.86, -1554.79, 13.5469, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES + (38, 4, 'Unnamed Business', 8, 30000, 0, 0, 1673.74, -1170.88, 23.97, 354.084, 0, 0, 0, -1, 501.926, -67.7462, 998.758, 175.187, 11, 5038, 0, -1, 0, 0, 2139.42, -1181.06, 23.9922, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES + (39, 4, 'Unnamed Business', 8, 30000, 0, 0, 1670.49, -1582.65, 13.55, 3.42811, 0, 0, 0, -1, -30.9218, -91.5736, 1003.55, 357.108, 18, 5039, 0, -1, 0, 0, 2006.9, -1759.92, 13.5391, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES + (40, 4, 'Unnamed Business', 8, 30000, 0, 0, 1833.78, -1842.7, 13.58, 276.736, 0, 0, 0, -1, -26.4404, -187.648, 1003.55, 1.27901, 17, 5040, 0, -1, 0, 0, 2864.77, -1428.47, 10.9952, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES + (41, 4, 'Unnamed Business', 1, 30000, 0, 0, 2261.93, 28.06, 26.5, 339.516, 0, 0, 0, -1, -26.4846, -57.8533, 1003.55, 350.759, 6, 5041, 0, -1, 0, 0, -1328.06, 2697.52, 50.0625, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES + (42, 4, 'Unnamed Business', 8, 30000, 0, 0, 1154.69, -1458.02, 15.8, 4.52589, 0, 0, 0, -1, -26.6782, -57.6615, 1003.55, 357.681, 6, 5042, 0, -1, 0, 0, 2349.25, -1538.52, 24.0033, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES + (43, 4, 'Unnamed Business', 8, 30000, 0, 0, 2318.99, -88.68, 26.48, 178.446, 0, 0, 0, -1, -26.1985, -187.472, 1003.55, 13.4461, 17, 5043, 0, -1, 0, 0, -2790.9, 774.258, 50.5078, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES + (44, 4, 'Unnamed Business', 1, 30000, 0, 0, 1739.95, 1440.97, 1145.67, 85.9053, 0, 0, 0, -1, -31.0512, -91.6771, 1003.55, 0.187671, 18, 5044, 0, -1, 0, 0, -2235.17, -2563.35, 31.9219, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES + (45, 4, 'Unnamed Business', 5, 30000, 0, 0, 2045.5, -1908.06, 13.55, 174.508, 0, 0, 0, -1, 1169.16, 1361.17, 10.9219, 217.478, 0, 5045, 0, -1, 0, 0, 1249.5, -1376.78, 13.3634, 2052.74, -1912.89, 13.252, 358.522, 0, 0, 0, 0, 0, 0, 0, 1); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES + (46, 4, 'Unnamed Business', 1, 30000, 0, 0, 1671.24, 1469.42, 1152.6, 286.719, 0, 0, 0, -1, 203.788, -50.2352, 1001.8, 1.30236, 1, 5046, 0, -1, 0, 0, 2106.4, -1213.94, 23.9665, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES + (48, 4, 'Unnamed Business', 4, 30000, 0, 0, 2333.4, 61.54, 26.71, 91.9637, 0, 0, 0, -1, 315.912, -143.315, 999.602, 358.938, 7, 5048, 0, -1, 0, 0, 2023.4, -1077.89, 24.6073, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES + (50, 4, 'Unnamed Business', 2, 30000, 0, 0, 2244.25, -1665.5, 15.48, 347.07, 0, 0, 0, -1, 203.675, -49.334, 1001.8, 186.433, 1, 5050, 0, -1, 0, 0, 492.869, -1359.27, 17.1788, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES + (51, 4, 'Unnamed Business', 1, 30000, 0, 0, 1636.1, -1848.45, 13.54, 0.564751, 0, 0, 0, -1, -30.871, -91.4408, 1003.55, 358.966, 18, 5051, 0, -1, 0, 0, -479.786, -566.494, 24.1158, 455.124, -1899.05, 0.78316, 202.97, 0, 0, 0, 0, 0, 0, 0, 1); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES + (52, 4, 'Unnamed Business', 12, 30000, 0, 0, 1703.45, 1442.91, 1145.78, 239.473, 0, 0, 0, -1, -2029.66, -119.435, 1035.17, 1.03609, 3, 5052, 0, -1, 0, 0, -1936.3, 276.5, 41.0469, -1958.21, 307.691, 35.4688, 6.40909, 0, 0, 0, 0, 0, 0, 0, 1); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES + (53, 4, 'Unnamed Business', 5, 30000, 0, 0, 1784.89, 1444.99, 1145.78, 340.115, 0, 0, 0, -1, -2029.56, -119.625, 1035.17, 357.304, 3, 5053, 0, -1, 0, 0, -1704.05, 1208.2, 25.1146, 1043.86, -1923.3, 12.9832, 0.44367, 0, 0, 0, 0, 0, 0, 0, 1); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES + (54, 4, 'Unnamed Business', 8, 30000, 0, 0, 1413.52, -1696.77, 13.54, 59.0001, 0, 0, 0, -1, 363.489, -74.6292, 1001.51, 134.772, 10, 5054, 0, -1, 0, 0, -1568.91, 674.891, 7.1875, 0, 0, 0, 0, 100053, 0, 0, 0, 0, 0, 0, 1); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES + (55, 4, 'Unnamed Business', 7, 30000, 0, 0, 1737.46, 1443.56, 1145.78, 276.704, 0, 0, 0, -1, 1711.71, 1461.59, 1145.78, 257.869, 0, 5055, 0, -1, 0, 0, 2087.73, 2077.92, 11.0579, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES + (56, 4, 'Unnamed Business', 1, 30000, 0, 0, 661.36, -573.29, 16.34, 272.013, 0, 0, 0, -1, -13.3403, -91.3059, 1008.03, 357.346, 18, 5056, 0, -1, 0, 1, 667.314, -546.236, 16.3359, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES + (57, 4, 'Unnamed Business', 0, 30000, 0, 0, 1047.21, -1418.63, 13.55, 144.195, 0, 0, 0, -1, -30.9934, -91.8355, 1003.55, 358.741, 18, 5057, 0, -1, 0, 0, 659.793, -1763.91, 13.5592, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES + (58, 4, 'Unnamed Business', 3, 30000, 0, 0, 2105.35, -1806.45, 13.55, 265.142, 0, 0, 0, -1, 460.507, -88.4769, 999.555, 84.5587, 4, 5058, 0, -1, 1, 1, 593.602, -1494.91, 15.2686, 615.481, -1501.39, 14.8747, 277.476, 0, 0, 0, 0, 0, 0, 0, 1); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES + (59, 4, 'Unnamed Business', 2, 30000, 0, 0, 1829.57, -1450.66, 13.59, 359.855, 0, 0, 0, -1, 203.78, -50.5481, 1001.8, 9.98745, 1, 5059, 0, -1, 0, 0, 1112.81, -1566.31, 13.5569, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES + (60, 4, 'Unnamed Business', 0, 30000, 0, 0, 1744.86, 1443.03, 1145.78, 265.737, 0, 0, 0, -1, -25.7722, -188.055, 1003.55, 356.072, 17, 5060, 0, -1, 0, 0, 1061.57, -1484.28, 13.5457, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES + (61, 4, 'Unnamed Business', 3, 30000, 0, 0, 1772.23, 1440.43, 1145.69, 81.6088, 0, 0, 0, -1, 372.46, -133.296, 1001.49, 330.82, 5, 5061, 0, -1, 0, 0, 2108.98, -1788.67, 13.5608, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES + (62, 4, 'Unnamed Business', 8, 30000, 0, 0, 461.2, -1500.79, 31.06, 279.205, 0, 0, 0, -1, -25.3976, -187.912, 1003.55, 355.95, 17, 5062, 0, -1, 0, 0, 712.834, -569.736, 16.3359, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES + (63, 4, 'Unnamed Business', 3, 30000, 0, 0, -1721.03, 1360.04, 7.19, 88.9988, 0, 0, 0, -1, 371.728, -133.508, 1001.49, 2.19321, 5, 5063, 0, -1, 0, 0, -1720.56, 1353.78, 7.17902, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES + (64, 4, 'Unnamed Business', 5, 30000, 0, 0, 1662.57, 1788.63, 10.82, 263.499, 0, 0, 0, -1, -221.166, 1411.45, 27.7734, 256.79, 18, 5064, 0, -1, 0, 0, 1698.29, 1786.89, 10.8203, 1654.53, 1795.69, 10.8203, 81.85, 0, 0, 0, 0, 0, 0, 0, 1); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES + (65, 4, 'Unnamed Business', 1, 30000, 0, 0, 1752.7, 1443.19, 1145.78, 272.004, 0, 0, 0, -1, -27.5021, -57.9044, 1003.55, 7.79304, 6, 5065, 0, -1, 0, 0, 1394.87, 457.122, 20.1368, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES + (66, 4, 'Unnamed Business', 8, 30000, 0, 0, 2251.11, -1666.85, 15.48, 347.064, 0, 0, 0, -1, -31.1119, -91.6484, 1003.55, 359.657, 18, 5066, 0, -1, 0, 1, 1285.09, -1272.42, 13.5366, 0, 0, 0, 0, 123051, 0, 0, 0, 0, 0, 0, 1); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES + (67, 4, 'Unnamed Business', 10, 30000, 0, 0, 1131.71, 1518.63, 5.82, 107.231, 0, 0, 0, -1, 1601.85, -1467.25, 13.5639, 95.3918, 0, 5067, 0, -1, 0, 0, 2341.7, -1314.47, 24.0671, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES + (68, 4, 'Unnamed Business', 4, 30000, 0, 0, 1587.5, -1862.96, 13.53, 349.866, 0, 0, 0, -1, 2134.53, 1599.41, 1008.36, 90.8534, 1, 5068, 0, -1, 0, 0, 1602.15, -2434.5, 13.5547, 1602.61, -2451.42, 13.5547, 172.886, 0, 0, 0, 0, 0, 0, 0, 1); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES + (69, 4, 'Unnamed Business', 1, 30000, 0, 0, 1929.22, -1776.25, 13.55, 90.3944, 0, 0, 0, -1, -26.172, -187.877, 1003.55, 355.973, 17, 5069, 0, -1, 0, 0, 2654.33, 1132.2, 10.8203, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES + (70, 4, 'Unnamed Business', 3, 30000, 0, 0, 1414.53, -1602.64, 13.55, 175.846, 0, 0, 0, -1, 362.819, -75.1166, 1001.51, 315.914, 10, 5070, 0, -1, 0, 1, 1414.03, -1599.29, 13.5469, 1646.94, 1305.67, 10.8203, 98.2638, 0, 0, 0, 0, 0, 0, 0, 1); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES + (71, 4, 'Unnamed Business', 2, 30000, 0, 0, -1882.67, 866.23, 35.17, 135.343, 0, 0, 0, -1, 227.262, -8.33084, 1002.21, 100.274, 5, 5071, 0, -1, 0, 0, 1103.75, -1411.33, 13.6187, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES + (72, 4, 'Unnamed Business', 5, 30000, 0, 0, -1666.21, 1203.53, 7.25, 159.664, 0, 0, 0, -1, 372.496, -133.417, 1001.49, 356.796, 5, 5072, 0, -1, 0, 0, 1381.51, 266.698, 19.5669, -1664.23, 1213, 7.25464, 1.79089, 0, 0, 0, 0, 0, 0, 0, 1); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES + (73, 4, 'Unnamed Business', 8, 30000, 0, 0, 1952.4, -2021.57, 13.55, 90.9127, 0, 0, 0, -1, -30.8758, -91.0564, 1003.55, 357.893, 18, 5073, 0, -1, 0, 0, 1672.83, -1583.28, 13.5469, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES + (74, 4, 'Unnamed Business', 3, 30000, 0, 0, 928.54, -1353.07, 13.34, 106.28, 0, 0, 0, -1, 372.501, -132.618, 1001.49, 0.750952, 5, 5074, 0, -1, 0, 0, 2428.59, -1940.92, 13.5469, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES + (75, 4, 'Unnamed Business', 4, 30000, 0, 0, 1665.3, 1452.63, 1152.58, 275.782, 0, 0, 0, -1, 316.063, -143.426, 999.602, 1.00112, 7, 5075, 0, -1, 0, 1, 2227.59, -1697.79, 13.7829, 0, 0, 0, 0, 10, 0, 0, 0, 0, 0, 0, 1); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES + (76, 4, 'Unnamed Business', 12, 30000, 0, 0, 1766.45, 1443.67, 1145.78, 272.004, 0, 0, 0, -1, 2916.15, -2275.72, 7.25419, 92.2792, 0, 5076, 0, -1, 0, 1, 0, 0, 0, 0, 0, 0, 0, 6, 0, 0, 0, 0, 0, 0, 1); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES + (77, 4, 'Unnamed Business', 12, 30000, 0, 0, 2229.9, -1721.26, 13.56, 149.746, 0, 0, 0, -1, 2916.03, -2276.33, 7.25419, 84.8808, 0, 5077, 0, -1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 7, 0, 0, 0, 0, 0, 0, 1); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES + (78, 4, 'Unnamed Business', 4, 30000, 0, 0, 1649.6, 1467.74, 1151.97, 3.67434, 0, 0, 0, -1, 315.902, -143.025, 999.602, 5.53311, 7, 5078, 0, -1, 0, 0, 1013.87, -372.41, 73.5505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES + (79, 4, 'Unnamed Business', 3, 30000, 0, 0, 1038.17, -1340.73, 13.74, 177.513, 0, 0, 0, -1, 376.894, -193.302, 1000.63, 357.573, 17, 5079, 0, -1, 0, 0, 1028.2, -1341.19, 13.7266, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES + (80, 4, 'Unnamed Business', 3, 30000, 0, 0, 2397.67, -1899.06, 13.55, 359.769, 0, 0, 0, -1, 364.899, -11.4455, 1001.85, 357.847, 9, 5080, 0, -1, 0, 0, 2378.92, -1903.45, 13.3828, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES + (81, 4, 'Unnamed Business', 3, 30000, 0, 0, 1774.54, 1440.21, 1145.69, 326.854, 0, 0, 0, -1, 364.92, -11.5076, 1001.85, 1.92061, 9, 5081, 0, -1, 0, 0, 2412.69, -1490.4, 24, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES + (82, 4, 'Unnamed Business', 3, 30000, 0, 0, 1445.11, -1353.1, 13.55, 76.8374, 0, 0, 0, -1, 364.786, -11.5863, 1001.85, 359.156, 9, 5082, 0, -1, 0, 0, -1810.85, 616.781, 35.1719, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES + (83, 4, 'Unnamed Business', 3, 30000, 0, 0, 810.49, -1616.33, 13.55, 274.543, 0, 0, 0, -1, 364.817, -11.7036, 1001.85, 356.202, 9, 5083, 0, -1, 0, 0, -2664.66, 260.562, 4.63281, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES + (84, 4, 'Unnamed Business', 2, 30000, 0, 0, 1102.44, -1458.3, 15.8, 265.057, 0, 0, 0, -1, 227.152, -8.34062, 1002.21, 82.5599, 5, 5084, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES + (85, 4, 'Unnamed Business', 2, 30000, 0, 0, 1445.12, -1419.06, 13.54, 65.0882, 0, 0, 0, -1, 227.551, -7.98705, 1002.21, 77.3083, 5, 5085, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES + (86, 4, 'Unnamed Business', 3, 30000, 0, 0, 2237.88, -1663.56, 15.48, 344.453, 0, 0, 0, -1, 363.168, -74.7778, 1001.51, 307.153, 10, 5086, 0, -1, 0, 0, 785.164, -1632.8, 13.3828, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES + (88, 4, 'Unnamed Business', 3, 30000, 0, 0, 1087.72, -295.96, 74.77, 358.173, 0, 0, 0, -1, 363.226, -75.0796, 1001.51, 311.442, 10, 5088, 0, -1, 0, 0, -2794.59, 775.22, 50.4725, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES + (89, 4, 'Unnamed Business', 3, 30000, 0, 0, -1912.4, 827.95, 35.23, 137.415, 0, 0, 0, -1, 362.862, -75.157, 1001.51, 317.474, 10, 5089, 0, -1, 0, 0, -2148.97, -2449.25, 30.6328, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES + (90, 4, 'Unnamed Business', 3, 30000, 0, 0, 1769.38, -1397.58, 15.76, 177.249, 0, 0, 0, -1, 460.243, -88.68, 999.555, 92.1094, 4, 5090, 0, -1, 0, 0, 711.452, -493.504, 16.3359, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES + (91, 4, 'Unnamed Business', 10, 30000, 0, 0, 2421.44, -1219.25, 25.56, 6.1916, 0, 0, 0, -1, -2158.43, 642.822, 1052.38, 29.1845, 1, 5091, 0, -1, 0, 0, 1968.24, -1284.42, 23.9844, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES + (92, 4, 'Unnamed Business', 2, 30000, 0, 0, 1405.22, -1881.5, 13.55, 264.017, 0, 0, 0, -1, 207.556, -111.244, 1005.13, 352.685, 15, 5092, 0, -1, 0, 0, 2230.46, -1674.3, 14.8285, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES + (93, 4, 'Unnamed Business', 3, 30000, 0, 0, 1200.42, -918.5, 43.11, 273.646, 0, 0, 0, -1, 372.061, -133.522, 1001.49, 359.863, 5, 5093, 0, -1, 0, 0, 1839.22, -1452.28, 13.564, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES + (94, 4, 'Unnamed Business', 10, 30000, 0, 0, 1836.65, -1682.52, 13.34, 95.7087, 0, 0, 0, -1, 1204.98, -13.8471, 1000.92, 7.8813, 2, 5094, 0, -1, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES + (95, 4, 'Unnamed Business', 8, 30000, 0, 0, 1775.47, 1437.65, 1145.69, 357.587, 0, 0, 0, -1, -25.6475, -188.232, 1003.55, 12.6659, 17, 5095, 0, -1, 0, 1, 2006.4, -1760.42, 13.5391, 1034.92, -1935.32, 13.0244, 266.609, 0, 0, 0, 0, 0, 0, 0, 1); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES + (96, 4, 'Unnamed Business', 3, 30000, 0, 0, 2332.08, 75.01, 26.62, 87.2637, 0, 0, 0, -1, 460.545, -88.3984, 999.555, 93.5276, 4, 5096, 0, -1, 0, 0, -294.906, 2687.78, 62.6665, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES + (97, 4, 'Unnamed Business', 1, 30000, 0, 0, 1574.85, -1637.35, 13.56, 11.6774, 0, 0, 0, -1, -25.5966, -187.034, 1003.55, 357.071, 17, 5097, 0, -1, 0, 0, 1541.46, -1634.66, 13.5469, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES + (98, 4, 'Unnamed Business', 3, 30000, 0, 0, 1098.59, -1473.58, 15.8, 69.6117, 0, 0, 0, -1, 460.244, -88.4067, 999.555, 87.9699, 4, 5098, 0, -1, 1, 0, -1741.37, -569.154, 16.4844, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES + (99, 4, 'Unnamed Business', 1, 30000, 0, 0, 1445.11, -1426.78, 13.54, 89.005, 0, 0, 0, -1, -27.4883, -57.4702, 1003.55, 0.398602, 6, 5099, 0, -1, 0, 0, 1428.99, -1427.96, 13.5547, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES + (100, 4, 'Unnamed Business', 1, 30000, 0, 0, 2157.89, -1733.42, 13.54, 356.464, 0, 0, 0, -1, -27.4883, -57.4702, 1003.55, 0.398602, 6, 5100, 0, -1, 0, 0, 1551.73, -1474.28, 13.5481, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES + (101, 4, 'Unnamed Business', 0, 30000, 0, 0, 1759.93, 1446.82, 1145.78, 84.942, 0, 0, 0, -1, 5.84083, -31.4701, 1003.55, 0.31898, 10, 5101, 0, -1, 0, 0, 637.356, 1678.13, 6.99219, -2395.1, 2222.04, 4.98437, 85.6145, 0, 0, 0, 0, 0, 0, 0, 1); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES + (102, 4, 'Unnamed Business', 3, 30000, 0, 0, 671.13, -519.45, 16.34, 210.161, 0, 0, 0, -1, 460.219, -89.0891, 999.555, 92.4067, 4, 5102, 0, -1, 0, 0, 674.514, -514.152, 16.3359, 1626.54, -1137.52, 23.9062, 184.156, 0, 0, 0, 0, 0, 0, 0, 1); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES + (103, 4, 'Unnamed Business', 1, 30000, 0, 0, 1757.29, 1446.53, 1145.78, 84.942, 0, 0, 0, -1, 6.22508, -31.3632, 1003.55, 355.899, 10, 5103, 0, -1, 0, 0, 2181.8, 2485.08, 10.8203, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES + (104, 4, 'Unnamed Business', 8, 30000, 0, 0, 1315.55, -897.92, 39.58, 355.767, 0, 0, 0, -1, -25.6988, -188.146, 1003.55, 2.25264, 17, 5104, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES + (105, 4, 'Unnamed Business', 1, 30000, 0, 0, 1753.5, 1446.45, 1145.78, 84.942, 0, 0, 0, -1, -25.8995, -188.249, 1003.55, 359.321, 17, 5105, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES + (106, 4, 'Unnamed Business', 8, 30000, 0, 0, 1752.19, 1446.37, 1145.78, 93.7154, 0, 0, 0, -1, -31.1422, -92.0064, 1003.55, 350.907, 18, 5106, 0, -1, 0, 0, 2007.48, -1759.44, 13.5391, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES + (107, 4, 'Unnamed Business', 3, 30000, 0, 0, 2521.18, -1411.62, 28.53, 80.3432, 0, 0, 0, -1, -228.827, 1400.92, 27.7656, 269.626, 18, 5107, 0, -1, 0, 0, -865.274, 1541.22, 22.6826, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES + (108, 4, 'Unnamed Business', 8, 30000, 0, 0, 1634.58, -1583.53, 13.65, 10.9946, 0, 0, 0, -1, 5.90418, -31.5585, 1003.55, 0.568551, 10, 5108, 0, -1, 0, 0, -744.555, 1583.71, 26.9609, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES + (109, 4, 'Unnamed Business', 1, 30000, 0, 0, 1748.68, 1446.17, 1145.78, 93.0887, 0, 0, 0, -1, 6.21169, -31.3557, 1003.55, 3.26752, 10, 5109, 0, -1, 0, 0, -1476.6, 1879.51, 32.6328, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES + (110, 4, 'Unnamed Business', 2, 30000, 0, 0, -91.1, -1592.47, 3, 294.395, 0, 0, 0, -1, 226.882, -8.1384, 1002.21, 269.642, 5, 5110, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES + (111, 4, 'Unnamed Business', 8, 30000, 0, 0, 1352.52, -1758.82, 13.51, 180.542, 0, 0, 0, -1, -31.1119, -91.6484, 1003.55, 359.657, 18, 5111, 0, -1, 0, 0, 2254.93, -1666.28, 15.469, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES + (112, 4, 'Unnamed Business', 3, 30000, 0, 0, 1158.28, -1473.41, 15.8, 286.459, 0, 0, 0, -1, 364.786, -11.5863, 1001.85, 359.156, 9, 5112, 0, -1, 0, 0, 0, 0, 0, 2263.74, 34.2681, 26.4844, 50.0339, 0, 0, 0, 0, 0, 0, 0, 1); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES + (113, 4, 'Unnamed Business', 1, 30000, 0, 0, 1743.82, 1445.89, 1145.78, 90.2687, 0, 0, 0, -1, 0, 0, 0, 0, 0, 5113, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES + (114, 4, 'Unnamed Business', 1, 30000, 0, 0, 1742.45, 1445.89, 1145.78, 90.2687, 0, 0, 0, -1, -25.6442, -188.041, 1003.55, 351.193, 17, 5114, 0, -1, 1, 1, 2130.87, 892.924, 10.8203, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES + (115, 4, 'Unnamed Business', 3, 30000, 0, 0, 1650.13, 1466.72, 1151.97, 167.935, 0, 0, 0, -1, -794.957, 490.111, 1376.2, 179.811, 1, 5115, 0, -1, 1, 1, 0, 0, 0, 1327.28, 1397.33, 10.7512, 93.0638, 0, 0, 0, 0, 0, 0, 0, 1); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES + (116, 4, 'Unnamed Business', 8, 30000, 0, 0, 1487.01, -1881.28, 13.55, 190.48, 0, 0, 0, -1, -25.6959, -187.781, 1003.55, 354.083, 17, 5116, 0, -1, 0, 0, 0, 0, 0, 1231.73, -1380.5, 13.3179, 182.887, 0, 0, 0, 0, 0, 0, 0, 1); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES + (117, 4, 'Unnamed Business', 10, 30000, 0, 0, 1736.52, 1445.86, 1145.78, 90.2687, 0, 0, 0, -1, 0, 0, 0, 0, 0, 5117, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES + (119, 4, 'Unnamed Business', 2, 30000, 0, 0, 712.17, -498.92, 16.34, 267.048, 0, 0, 0, -1, 203.747, -50.5602, 1001.8, 348.861, 1, 5119, 0, -1, 0, 0, 714.368, -505.379, 16.3359, 1229.06, -1378.47, 13.339, 256.786, 0, 0, 0, 0, 0, 0, 0, 1); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES + (120, 4, 'Unnamed Business', 8, 30000, 0, 0, 1721.42, 1424.01, 10.64, 320.626, 0, 0, 0, -1, 6.13156, -31.3422, 1003.55, 178.952, 10, 5120, 0, -1, 0, 0, 1014.04, -1563.83, 13.616, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES + (122, 4, 'Unnamed Business', 1, 30000, 0, 0, 1765.16, 1436.69, 1145.69, 93.1964, 0, 0, 0, -1, 0, 0, 0, 0, 0, 5122, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES + (123, 4, 'Unnamed Business', 4, 30000, 0, 0, 1836.51, -1443.03, 13.6, 100.976, 0, 0, 0, -1, 284.991, -86.1033, 1001.52, 350.153, 4, 5123, 0, -1, 0, 1, 1837.35, -1438.43, 13.563, 0, 0, 0, 0, 1234521, 0, 0, 0, 0, 0, 0, 1); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES + (124, 4, 'Unnamed Business', 8, 30000, 0, 0, 1648.6, -1562.17, 13.54, 98.856, 0, 0, 0, -1, -26.0882, -188.231, 1003.55, 0.687847, 17, 5124, 0, -1, 0, 0, 1028.47, -1585.7, 13.5469, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES + (125, 4, 'Unnamed Business', 8, 30000, 0, 0, 1565.93, -1171.4, 24.1, 194.504, 0, 0, 0, -1, -30.7929, -92.0083, 1003.55, 180.866, 18, 5125, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES + (128, 4, 'Unnamed Business', 0, 30000, 0, 0, 1733.91, 1448.76, 1145.78, 273.547, 0, 0, 0, -1, 0, 0, 0, 0, 0, 5128, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES + (129, 4, 'Unnamed Business', 0, 30000, 0, 0, 1735.4, 1448.85, 1145.78, 273.547, 0, 0, 0, -1, 0, 0, 0, 0, 0, 5129, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES + (145, 4, 'Unnamed Business', 4, 30000, 0, 0, 1655.19, 1451.97, 1152.5, 277.616, 0, 0, 0, -1, 0, 0, 0, 0, 0, 5145, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES + (157, 4, 'Unnamed Business', 5, 30000, 0, 0, 548.16, -1293.86, 17.25, 168.94, 0, 0, 0, -1, 1226.48, -813.56, 1084.01, 353.256, 5, 5157, 0, -1, 0, 0, 1811.5, -1659.69, 13.5465, 567.705, -1291.27, 17.2422, 70.9165, 0, 0, 0, 0, 0, 0, 0, 1); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES + (192, 4, 'Unnamed Business', 3, 30000, 0, 0, -222.75, -1747.06, 1.15, 331.273, 0, 0, 0, -1, 363.584, -75.38, 1001.51, 313.29, 10, 5192, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES + (200, 4, 'Unnamed Business', 8, 30000, 0, 0, 1748.23, -1460.31, 13.53, 182.135, 0, 0, 0, -1, -27.4627, -57.8572, 1003.55, 0.812528, 6, 5200, 0, -1, 0, 0, 1014.1, -1563.82, 13.6156, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES + (201, 2, 'Easy Credit Autos', 0, 30000, 1, 1, -1013.1, -861.9, 13.09, 0, 0, 0, 0, -1, 0, 0, 0, 0, 0, 5201, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES + (203, 1, 'Saint Marks Bistro', 0, 30000, 0, 0, 1318.98, -452.77, 54.53, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 5203, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES + (204, 1, 'Easy Credit Autos', 0, 30000, 0, 0, 1218.65, -123.14, 15.06, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 5204, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES + (205, 1, 'Strip Club', 0, 30000, 0, 0, 923.23, -470.66, 14.96, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 5205, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES + (206, 1, 'Strip Club', 0, 30000, 0, 0, 900.49, -416.83, 14.97, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 5206, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES + (207, 1, 'Sex Shop', 0, 30000, 0, 0, 927.04, -379.19, 15.25, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 5207, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES + (208, 1, 'Bar', 0, 30000, 0, 0, 899.09, -285.72, 5.15, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 5208, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES + (209, 1, 'Bar', 0, 30000, 0, 0, 845.42, -287.97, 4.93, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 5209, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES + (210, 1, 'Diner', 0, 30000, 0, 0, 1036.65, -653.01, 15.06, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 5210, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES + (211, 1, 'Bank', 0, 30000, 0, 0, 1036.1, -700.06, 14.97, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 5211, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES + (212, 1, 'Chinese Restaurant', 0, 30000, 0, 0, 909.53, -670.4, 14.97, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 5212, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES + (213, 1, 'Laundry', 0, 30000, 0, 0, 845.28, -663.75, 14.97, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 5213, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES + (214, 1, 'Chinese Restaurant', 0, 30000, 0, 0, 913.89, -805.83, 15.07, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 5214, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES + (215, 1, 'Bank', 0, 30000, 0, 0, 1065.18, -281.02, 8.69, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 5215, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES + (216, 1, 'Clothing Store', 0, 30000, 0, 0, 1117.18, -687.4, 14.97, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 5216, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 750, 0, 0, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES + (217, 2, 'Large Hotel', 0, 30000, 0, 0, -772.41, 548.74, 11.1, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 5217, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES + (218, 2, 'Drugstore', 0, 30000, 0, 0, -832.1, 741.92, 11.29, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 5218, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES + (219, 2, 'Pizza Stack', 0, 30000, 0, 0, -903.16, 798.37, 11.45, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 5219, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES + (220, 2, 'Taco Shop', 0, 30000, 0, 0, -753.17, 1343.16, 11.77, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 5220, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES + (221, 2, 'Cafe', 0, 30000, 0, 0, -774.48, 1304.82, 11.64, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 5221, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES + (222, 2, 'Drugstore', 0, 30000, 0, 0, 50.29, 1007.29, 10.95, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 5222, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES + (228, 4, 'Jefferson Dealership', 0, 30000, 0, 0, 2131.8, -1151.02, 24.09, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 5228, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES + (230, 4, 'Los Santos Police Department', 0, 0, 0, 0, 1554.77, -1675.65, 16.2, 0, 0, 0, 0, -1, 247.113, 62.929, 1003.64, 0, 6, 5230, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES + (231, 2, 'Unnamed Business', 0, 0, 0, 0, -833.55, -908.77, 12.13, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 5231, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES + (232, 1, 'Italian Restaurant', 0, 0, 0, 0, 1135.42, -457.31, 20.18, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 5232, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES + (233, 1, 'Clothes Store', 0, 0, 0, 0, 1065.42, -345.06, 14.97, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 5233, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES + (234, 1, 'Gun Store', 0, 0, 0, 0, 1065.1, -395.1, 14.97, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 5234, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES + (235, 1, 'Porn Shop', 0, 0, 0, 0, 989.05, -441.97, 15.12, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 5235, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES + (236, 1, 'Mechanic Shop', 0, 0, 0, 0, 1190.71, -869.33, 15.17, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 5236, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES + (237, 1, 'Offices', 0, 0, 0, 0, 1212.4, -904.73, 15.11, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 5237, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES + (238, 1, 'Offices', 0, 0, 0, 0, 1244.71, -862.86, 14.97, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 5238, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES + (239, 1, 'Warehouse', 0, 0, 0, 0, 1276.44, -928.52, 14.97, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 5239, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES + (240, 1, 'Warehouse', 0, 0, 0, 0, 1261.95, -943.02, 14.97, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 5240, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES + (241, 1, 'Warehouse', 0, 0, 0, 0, 1253.32, -950.5, 14.98, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 5241, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES + (242, 1, 'Warehouse', 0, 0, 0, 0, 1231.16, -964.6, 15.07, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 5242, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES + (243, 1, 'Warehouse', 0, 0, 0, 0, 1183.85, -961.46, 15.11, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 5243, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES + (244, 1, 'Warehouse', 0, 0, 0, 0, 1188.25, -957.06, 15.11, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 5244, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES + (245, 1, 'Warehouse', 0, 0, 0, 0, 1171.64, -963.65, 14.97, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 5245, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES + (246, 1, 'Warehouse', 0, 0, 0, 0, 1162.62, -952.35, 15.06, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 5246, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES + (247, 1, 'Warehouse', 0, 0, 0, 0, 1219.81, -973.64, 14.98, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 5247, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES + (248, 1, 'Docks Warehouse', 0, 0, 0, 0, 1435.66, -805.82, 11.83, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 5248, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES + (249, 1, 'Docks Warehouse', 0, 0, 0, 0, 1445.71, -806.21, 11.83, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 5249, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES + (250, 1, 'Docks Warehouse', 0, 0, 0, 0, 1455.57, -805.72, 11.83, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 5250, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES + (251, 1, 'Docks Warehouse', 0, 0, 0, 0, 1465.74, -805.72, 11.83, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 5251, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES + (252, 1, 'Docks Warehouse', 0, 0, 0, 0, 1475.63, -805.72, 11.83, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 5252, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES + (253, 1, 'Docks Warehouse', 0, 0, 0, 0, 1485.73, -805.72, 11.83, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 5253, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES + (254, 1, 'Docks Warehouse', 0, 0, 0, 0, 1495.69, -805.72, 11.83, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 5254, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES + (255, 1, 'Docks Warehouse', 0, 0, 0, 0, 1467.39, -688.64, 11.83, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 5255, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES + (256, 1, 'Docks Warehouse', 0, 0, 0, 0, 1495.89, -684.9, 12.14, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 5256, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES + (257, 1, 'Docks Warehouse', 0, 0, 0, 0, 1488.55, -650.17, 11.83, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 5257, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES + (258, 1, 'Docks Warehouse', 0, 0, 0, 0, 1465.85, -650.17, 11.83, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 5258, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES + (259, 1, 'Docks Warehouse', 0, 0, 0, 0, 1510.97, -650.17, 11.83, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 5259, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES + (260, 1, 'Docks Warehouse', 0, 0, 0, 0, 1533.95, -650.17, 11.83, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 5260, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES + (261, 1, 'Docks Warehouse', 0, 0, 0, 0, 1556.7, -650.17, 11.83, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 5261, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES + (262, 1, 'Docks Warehouse', 0, 0, 0, 0, 1579.22, -650.17, 11.83, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 5262, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES + (263, 1, 'Warehouse', 0, 0, 0, 0, 1305.18, -810.01, 15.03, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 5263, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES + (264, 1, 'Supermarket', 0, 0, 0, 0, 1272.41, -608.83, 12.46, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 5264, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES + (265, 1, 'Sweeney General Hospital', 0, 0, 0, 0, 1149.18, -585.3, 15.02, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 5265, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES + (266, 1, 'Portland Police Station', 0, 0, 0, 0, 1148.46, -675, 14.98, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 5266, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES + (267, 1, 'Clothes Store', 0, 0, 0, 0, 1104.57, -638.42, 14.97, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 5267, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES + (268, 1, 'City Hall', 0, 0, 0, 0, 98.21, -962.97, 29.19, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 5268, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES + (269, 1, 'Courthouse', 0, 0, 0, 0, 97.4, -1429.97, 31.67, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 5269, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES + (270, 1, 'Francis International Airport', 0, 0, 0, 0, -769.82, -600.32, 11.33, 0, 0, 0, 0, -1, -770.862, -600.281, 11.3161, 0, 0, 5270, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES + (271, 1, 'Shoreside Vale Police Station', 0, 0, 0, 0, -1255.33, -23.06, 59.04, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 5271, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES + (272, 1, 'Hope Medical College', 0, 0, 0, 0, -1246.78, -150.69, 59.07, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 5272, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES + (273, 1, 'Shoreside Vale Fire Station', 0, 0, 0, 0, -1214.27, -13.79, 53.27, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 5273, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES + (274, 1, 'Warehouse', 0, 0, 0, 0, -1235.35, 125.25, 68.57, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 5274, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES + (275, 1, 'Warehouse', 0, 0, 0, 0, -1137.91, 25.51, 58.82, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 5275, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES + (276, 1, 'Warehouse', 0, 0, 0, 0, -1114.45, 53.09, 58.67, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 5276, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES + (277, 1, 'Warehouse', 0, 0, 0, 0, -1090.84, 59.41, 58.59, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 5277, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES + (278, 1, 'Warehouse', 0, 0, 0, 0, -1020.35, -78.01, 38.89, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 5278, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES + (279, 1, 'Warehouse', 0, 0, 0, 0, -844.12, -160.47, 33.86, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 5279, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES + (280, 1, 'Warehouse', 0, 0, 0, 0, -844.13, -176.19, 33.86, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 5280, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES + (281, 1, 'Warehouse', 0, 0, 0, 0, -844.13, -184.38, 33.86, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 5281, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES + (282, 1, 'Warehouse', 0, 0, 0, 0, -844.13, -192.24, 33.86, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 5282, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES + (283, 1, 'Warehouse', 0, 0, 0, 0, -844.13, -200.03, 33.86, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 5283, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES + (284, 1, 'Warehouse', 0, 0, 0, 0, -844.13, -207.77, 33.86, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 5284, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES + (285, 1, 'Staunton Island Police Station', 0, 0, 0, 0, 340.4, -1118.42, 25.98, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 5285, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES + (286, 1, 'Carson General Hospital', 0, 0, 0, 0, 149.88, 63.39, 16.21, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 5286, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES + (287, 1, 'Liberty City Stadium', 0, 0, 0, 0, -18.77, -219.3, 29.82, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 5287, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES + (288, 1, 'Staunton Island Fire Station', 0, 0, 0, 0, -76.46, -435.7, 16.18, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 5288, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES + (289, 1, 'Church', 0, 0, 0, 0, -75.03, -1078.03, 26.19, 0, 0, 0, 0, -1, -72.5906, -1079.24, 26.205, 0, 0, 5289, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES + (290, 1, 'Clothes Store', 0, 0, 0, 0, 1116.62, -402.53, 19.97, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 5290, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES + (291, 2, 'Little Havana Police Station', 0, 0, 0, 0, -873.24, -684.97, 11.34, 0, 0, 0, 0, -1, 394.74, -475.02, 12.34, 0, 12, 5291, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES + (292, 2, 'Bar', 0, 0, 0, 0, -900.15, -646.11, 11.28, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 5292, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES + (293, 2, '24/7', 0, 0, 0, 0, -858.72, -634.62, 11.38, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 5293, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES + (294, 2, 'Hardware Store', 0, 0, 0, 0, -966.7, -693.4, 11.41, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 5294, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES + (295, 2, 'Bar', 0, 0, 0, 0, -995.87, -689.22, 11.77, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 5295, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES + (296, 2, 'Bar', 0, 0, 0, 0, -1114.92, -697.18, 11.79, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 5296, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES + (297, 2, 'Diner', 0, 0, 0, 0, -1168.71, -616.91, 11.83, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 5297, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES + (298, 2, 'Laundromat', 0, 0, 0, 0, -1195.37, -323.56, 10.94, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 5298, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES + (299, 2, 'Warehouse', 0, 0, 0, 0, -892.17, 119, 9.37, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 5299, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES + (300, 2, 'Warehouse', 0, 0, 0, 0, -920.02, 119, 9.37, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 5300, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES + (301, 2, 'Warehouse', 0, 0, 0, 0, -906.03, 145.94, 9.37, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 5301, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES + (302, 2, 'Storage', 0, 0, 0, 0, -874.2, 79.13, 9.37, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 5302, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES + (303, 2, 'Storage', 0, 0, 0, 0, -874.2, 90.42, 9.37, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 5303, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES + (304, 2, 'Storage', 0, 0, 0, 0, -874.2, 101.82, 9.37, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 5304, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES + (305, 2, 'Cafe', 0, 0, 0, 0, -913.75, 50.7, 10.5, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 5305, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES + (306, 2, 'Big Hotel', 0, 0, 0, 0, -775.59, 133.02, 10.93, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 5306, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES + (307, 2, 'Big Hotel', 0, 0, 0, 0, -752.06, 256.49, 16.32, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 5307, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES + (308, 2, 'Big Hotel', 0, 0, 0, 0, -729.96, 365.97, 11.1, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 5308, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES + (309, 2, 'Courthouse', 0, 0, 0, 0, -698.67, 703.53, 12.12, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 5309, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES + (310, 2, 'Downtown Fire Station', 0, 0, 0, 0, -698.71, 806.24, 11.08, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 5310, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES + (311, 2, 'Music Store', 0, 0, 0, 0, -872.93, 746.81, 11.08, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 5311, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES + (312, 2, 'Clothing Store', 0, 0, 0, 0, -918.64, 885.25, 11.06, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 5312, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES + (313, 2, 'Large Hotel', 0, 0, 0, 0, -826.86, 1038.41, 15.75, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 5313, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES + (314, 2, 'Concert Hall', 0, 0, 0, 0, -893.97, 1054.59, 15.67, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 5314, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES + (315, 2, 'Offices', 0, 0, 0, 0, -875.07, 1159.55, 11.2, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 5315, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES + (316, 2, 'Derby Arena', 0, 0, 0, 0, -1108.53, 1331.05, 20.12, 0, 0, 0, 0, -1, -1443.36, 932.982, 262.395, 0, 15, 5316, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES + (317, 2, 'Bowling Alley', 0, 0, 0, 0, -669.3, 1382.3, 12.09, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 5317, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES + (318, 2, 'The Greasy Chopper Bar', 0, 0, 0, 0, -597.35, 651.6, 11.38, 0, 0, 0, 0, -1, -597.312, 650.405, 11.6765, 0, 11, 5318, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES + (319, 2, 'North Point Mall', 0, 0, 0, 0, 379.66, 998.47, 18.76, 0, 0, 0, 0, -1, 379.62, 1007, 19.22, 0, 4, 5319, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES + (320, 2, 'North Point Mall', 0, 0, 0, 0, 448.95, 999.73, 18.79, 0, 0, 0, 0, -1, 448.24, 1007.2, 19.18, 0, 4, 5320, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES + (321, 2, 'North Point Mall', 0, 0, 0, 0, 352.85, 1124.52, 18.64, 0, 0, 0, 0, -1, 361.72, 1124.93, 18.93, 0, 15, 5321, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES + (322, 2, 'North Point Mall', 0, 0, 0, 0, 379.68, 1253.29, 18.85, 0, 0, 0, 0, -1, 379.79, 1246.83, 19.16, 0, 15, 5322, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES + (323, 2, 'North Point Mall', 0, 0, 0, 0, 448.17, 1253.27, 18.7, 0, 0, 0, 0, -1, 448.6, 1246.43, 19.06, 0, 15, 5323, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES + (324, 2, 'North Point Mall', 0, 0, 0, 0, 475.04, 1124.36, 17.95, 0, 0, 0, 0, -1, 468.24, 1123.66, 18.34, 0, 15, 5324, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES + (325, 2, 'Malibu Club', 0, 0, 0, 0, 489.83, -76.49, 11.48, 0, 0, 0, 0, -1, 489.83, -76.49, 11.48, 0, 17, 5325, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES + (326, 2, 'Washington Beach Police Station', 0, 0, 0, 0, 396.38, -472.96, 12.34, 0, 0, 0, 0, -1, 394.74, -475.02, 12.34, 0, 12, 5326, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES + (327, 2, 'Ocean View Hotel', 0, 0, 0, 0, 228.53, -1277.12, 12.07, 0, 0, 0, 0, -1, 228.53, -1277.12, 12.07, 0, 1, 5327, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES + (328, 2, 'Ammunation Range', 0, 0, 0, 0, -667.79, 1217.51, 11.1, 0, 0, 0, 0, -1, -667.79, 1217.51, 11.1, 0, 10, 5328, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES + (329, 2, 'Bank', 0, 0, 0, 0, -894.52, -341.16, 13.45, 0, 0, 0, 0, -1, -901.16, -341.15, 13.38, 0, 3, 5329, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES + (330, 2, 'Downtown Roof Building', 0, 0, 0, 0, -830.77, 1312.15, 11.54, 0, 0, 0, 0, -1, -811.81, 1354.21, 66.46, 0, 0, 5330, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES + (331, 2, 'Roof', 0, 0, 0, 0, 386.46, -473.03, 21.57, 0, 0, 0, 0, -1, 379.35, -493.53, 12.33, 0, 12, 5331, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES + (332, 2, 'Strip Club', 0, 0, 0, 0, 97.53, -1472.06, 10.43, 0, 0, 0, 0, -1, 95.68, -1469, 10.56, 0, 5, 5332, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES + (333, 2, 'Law Office', 0, 0, 0, 0, 120.82, -827.98, 10.62, 0, 0, 0, 0, -1, 137.12, -1370.16, 13.18, 0, 6, 5333, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES + (335, 2, 'Downtown Police Station', 0, 0, 0, 0, -657.19, 762.55, 11.6, 0, 0, 0, 0, -1, 0, 0, 0, 0, 12, -1, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES + (336, 1, 'Secret Asian Man\'s Threads', 0, 0, 0, 0, 958.31, -673.8, 14.97, 0, 0, 0, -1, -1, 0, 0, 0, 0, -1, 5000, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES + (337, 1, 'Simply Fo Yu\'s Asian Threads', 0, 0, 0, 0, 958.31, -673.8, 14.97, 0, 0, 0, -1, -1, 0, 0, 0, 0, -1, 5000, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES + (338, 1, 'Fu King Asian Threads', 0, 0, 0, 0, 958.34, -673.8, 14.97, 0, 0, 0, -1, -1, 0, 0, 0, 0, -1, 5000, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES + (339, 4, 'Los Santos Police Department Garage', 0, 0, 0, 0, 1568.57, -1689.97, 6.22, 0, 0, 0, -1, -1, 246.48, 88.01, 1003.64, 0, 6, 5230, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES + (340, 4, 'Bike Dealership', 0, 0, 0, 0, 987.63, -1349.28, 13.58, 0, 0, 0, -1, -1, 0, 0, 0, 0, -1, 5000, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES + (341, 1, 'Fung Ku Tools', 0, 0, 0, 0, 867.122, -708.406, 15.2109, 0, 0, 0, -1, -1, 0, 0, 0, 0, -1, 5000, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +/*!40000 ALTER TABLE `biz_main` ENABLE KEYS */; + +-- Dumping structure for table gtac_main.bug_main +CREATE TABLE IF NOT EXISTS `bug_main` ( + `bug_id` int(11) NOT NULL AUTO_INCREMENT, + `bug_server` int(11) NOT NULL DEFAULT '0', + `bug_who_added` int(11) NOT NULL DEFAULT '0', + `bug_when_added` int(32) NOT NULL DEFAULT '0', + `bug_script_ver` varchar(16) NOT NULL DEFAULT '0.1', + `bug_pos_x` float NOT NULL DEFAULT '0', + `bug_pos_y` float NOT NULL DEFAULT '0', + `bug_pos_z` float NOT NULL DEFAULT '0', + `bug_rot_z` float NOT NULL DEFAULT '0', + `bug_message` varchar(128) NOT NULL DEFAULT '(No Message)', + `bug_svr_start` int(32) NOT NULL DEFAULT '0', + `bug_session` int(11) NOT NULL DEFAULT '0', + `bug_state` tinyint(1) NOT NULL DEFAULT '0', + PRIMARY KEY (`bug_id`), + KEY `bug_server` (`bug_server`), + KEY `fk_bug_who_added` (`bug_who_added`), + CONSTRAINT `fk_bug_server` FOREIGN KEY (`bug_server`) REFERENCES `svr_main` (`svr_id`) ON DELETE CASCADE ON UPDATE CASCADE, + CONSTRAINT `fk_bug_who_added` FOREIGN KEY (`bug_who_added`) REFERENCES `acct_main` (`acct_id`) ON DELETE CASCADE ON UPDATE CASCADE +) ENGINE=InnoDB AUTO_INCREMENT=89 DEFAULT CHARSET=latin1 COMMENT='User Submitted Bugs'; + +-- Dumping data for table gtac_main.bug_main: ~18 rows (approximately) +/*!40000 ALTER TABLE `bug_main` DISABLE KEYS */; +INSERT INTO `bug_main` (`bug_id`, `bug_server`, `bug_who_added`, `bug_when_added`, `bug_script_ver`, `bug_pos_x`, `bug_pos_y`, `bug_pos_z`, `bug_rot_z`, `bug_message`, `bug_svr_start`, `bug_session`, `bug_state`) VALUES + (4, 4, 2, 1609121880, '1.0', 0, 0, 0, 0, '"normal house at ls" marker overlaps with "Unnamed Business" marker in Verdant Bluffs.', 2147483647, 0, 0); +INSERT INTO `bug_main` (`bug_id`, `bug_server`, `bug_who_added`, `bug_when_added`, `bug_script_ver`, `bug_pos_x`, `bug_pos_y`, `bug_pos_z`, `bug_rot_z`, `bug_message`, `bug_svr_start`, `bug_session`, `bug_state`) VALUES + (25, 1, 1, 1610250358, '1.0', 310.491, -1191.51, 26.1453, 1.10632, 'Fix NaN on login attempts', 1610250260, 0, 0); +INSERT INTO `bug_main` (`bug_id`, `bug_server`, `bug_who_added`, `bug_when_added`, `bug_script_ver`, `bug_pos_x`, `bug_pos_y`, `bug_pos_z`, `bug_rot_z`, `bug_message`, `bug_svr_start`, `bug_session`, `bug_state`) VALUES + (51, 1, 1, 1610251403, '1.0', 1308.86, -1017.92, 14.8858, -0.685351, 'Job banned bitflag preventing players from joining', 1610250260, 0, 0); +INSERT INTO `bug_main` (`bug_id`, `bug_server`, `bug_who_added`, `bug_when_added`, `bug_script_ver`, `bug_pos_x`, `bug_pos_y`, `bug_pos_z`, `bug_rot_z`, `bug_message`, `bug_svr_start`, `bug_session`, `bug_state`) VALUES + (55, 1, 1, 1610352706, '1.0', 1353.1, -833.441, 14.6752, 3.11304, 'Disable item use key in vehicle', 1610322516, 0, 0); +INSERT INTO `bug_main` (`bug_id`, `bug_server`, `bug_who_added`, `bug_when_added`, `bug_script_ver`, `bug_pos_x`, `bug_pos_y`, `bug_pos_z`, `bug_rot_z`, `bug_message`, `bug_svr_start`, `bug_session`, `bug_state`) VALUES + (61, 4, 1, 1610587525, '1.0', 242.757, 62.7046, 1003.64, 2.82568, 'Fix autolastchar', 1610587512, 0, 0); +INSERT INTO `bug_main` (`bug_id`, `bug_server`, `bug_who_added`, `bug_when_added`, `bug_script_ver`, `bug_pos_x`, `bug_pos_y`, `bug_pos_z`, `bug_rot_z`, `bug_message`, `bug_svr_start`, `bug_session`, `bug_state`) VALUES + (72, 1, 1, 1610765394, '1.0', 912.086, -678.934, 14.9727, -2.70905, 'Fix client runcode', 1610763688, 0, 0); +INSERT INTO `bug_main` (`bug_id`, `bug_server`, `bug_who_added`, `bug_when_added`, `bug_script_ver`, `bug_pos_x`, `bug_pos_y`, `bug_pos_z`, `bug_rot_z`, `bug_message`, `bug_svr_start`, `bug_session`, `bug_state`) VALUES + (76, 1, 1, 1610765953, '1.0', 1110.76, -635.598, 14.9727, 1.57098, 'Prevent vehicle burning/exploding. Just disable it', 1610763688, 0, 0); +INSERT INTO `bug_main` (`bug_id`, `bug_server`, `bug_who_added`, `bug_when_added`, `bug_script_ver`, `bug_pos_x`, `bug_pos_y`, `bug_pos_z`, `bug_rot_z`, `bug_message`, `bug_svr_start`, `bug_session`, `bug_state`) VALUES + (78, 1, 1, 1610766019, '1.0', 916.733, -680.575, 14.9727, 1.16083, 'Using /put shows item trying to store is buged', 1610763688, 0, 0); +INSERT INTO `bug_main` (`bug_id`, `bug_server`, `bug_who_added`, `bug_when_added`, `bug_script_ver`, `bug_pos_x`, `bug_pos_y`, `bug_pos_z`, `bug_rot_z`, `bug_message`, `bug_svr_start`, `bug_session`, `bug_state`) VALUES + (79, 1, 1, 1610766071, '1.0', 911.069, -684.414, 14.9727, -0.0528247, 'Fixing spawning in VC/SA', 1610763688, 0, 0); +INSERT INTO `bug_main` (`bug_id`, `bug_server`, `bug_who_added`, `bug_when_added`, `bug_script_ver`, `bug_pos_x`, `bug_pos_y`, `bug_pos_z`, `bug_rot_z`, `bug_message`, `bug_svr_start`, `bug_session`, `bug_state`) VALUES + (80, 1, 1, 1610766109, '1.0', 908.798, -684.276, 14.9727, -0.0528247, 'Tazer has no effect. Damage seems to be prevented but no tazer func called', 1610763688, 0, 0); +INSERT INTO `bug_main` (`bug_id`, `bug_server`, `bug_who_added`, `bug_when_added`, `bug_script_ver`, `bug_pos_x`, `bug_pos_y`, `bug_pos_z`, `bug_rot_z`, `bug_message`, `bug_svr_start`, `bug_session`, `bug_state`) VALUES + (81, 1, 1, 1610766672, '1.0', 1142.9, -676.239, 14.9727, 0.646766, 'Player doesnt get kicked on 0 attempts left', 1610763688, 0, 0); +INSERT INTO `bug_main` (`bug_id`, `bug_server`, `bug_who_added`, `bug_when_added`, `bug_script_ver`, `bug_pos_x`, `bug_pos_y`, `bug_pos_z`, `bug_rot_z`, `bug_message`, `bug_svr_start`, `bug_session`, `bug_state`) VALUES + (82, 1, 1, 1610766678, '1.0', 1142.44, -679.479, 14.9727, -1.57861, 'Player doesnt get kicked on 0 login attempts left', 1610763688, 0, 0); +INSERT INTO `bug_main` (`bug_id`, `bug_server`, `bug_who_added`, `bug_when_added`, `bug_script_ver`, `bug_pos_x`, `bug_pos_y`, `bug_pos_z`, `bug_rot_z`, `bug_message`, `bug_svr_start`, `bug_session`, `bug_state`) VALUES + (83, 4, 1, 1613342160, '1.0', 2136.13, -1145.45, 24.5973, 0.785896, 'Fix job text showing already have job after quitjob', 1613341557, 0, 0); +INSERT INTO `bug_main` (`bug_id`, `bug_server`, `bug_who_added`, `bug_when_added`, `bug_script_ver`, `bug_pos_x`, `bug_pos_y`, `bug_pos_z`, `bug_rot_z`, `bug_message`, `bug_svr_start`, `bug_session`, `bug_state`) VALUES + (84, 4, 1, 1613342390, '1.0', 1542.94, -1676.64, 13.5555, 1.77156, 'Vehicle enter not being detected in SA', 1613342173, 0, 0); +INSERT INTO `bug_main` (`bug_id`, `bug_server`, `bug_who_added`, `bug_when_added`, `bug_script_ver`, `bug_pos_x`, `bug_pos_y`, `bug_pos_z`, `bug_rot_z`, `bug_message`, `bug_svr_start`, `bug_session`, `bug_state`) VALUES + (85, 4, 1, 1613342410, '1.0', 1542.94, -1676.64, 13.5555, 1.77156, 'Fix job text showing already have job after using quitjob', 1613342173, 0, 0); +INSERT INTO `bug_main` (`bug_id`, `bug_server`, `bug_who_added`, `bug_when_added`, `bug_script_ver`, `bug_pos_x`, `bug_pos_y`, `bug_pos_z`, `bug_rot_z`, `bug_message`, `bug_svr_start`, `bug_session`, `bug_state`) VALUES + (86, 4, 1, 1613342571, '1.0', 1004.83, -1303.6, 13.3828, 3.02172, 'Pickups dont disappear on biz delete', 1613342173, 0, 0); +INSERT INTO `bug_main` (`bug_id`, `bug_server`, `bug_who_added`, `bug_when_added`, `bug_script_ver`, `bug_pos_x`, `bug_pos_y`, `bug_pos_z`, `bug_rot_z`, `bug_message`, `bug_svr_start`, `bug_session`, `bug_state`) VALUES + (87, 4, 1, 1614002650, '1.0', 1546.78, -1675.38, 13.563, 1.52, 'Fix out of range issue in sacct_when_lastlogin when saving sacct data', 1614002529, 0, 0); +INSERT INTO `bug_main` (`bug_id`, `bug_server`, `bug_who_added`, `bug_when_added`, `bug_script_ver`, `bug_pos_x`, `bug_pos_y`, `bug_pos_z`, `bug_rot_z`, `bug_message`, `bug_svr_start`, `bug_session`, `bug_state`) VALUES + (88, 1, 1, 1614366383, '1.0', 1139.08, -682.326, 14.9727, -2.84652, '(AUTOMATED REPORT) Pickup Item: Getting item data for item undefined on ground returned false.', 1614365263, 0, 0); +/*!40000 ALTER TABLE `bug_main` ENABLE KEYS */; + +-- Dumping structure for table gtac_main.clan_main +CREATE TABLE IF NOT EXISTS `clan_main` ( + `clan_id` int(11) NOT NULL AUTO_INCREMENT, + `clan_server` int(11) NOT NULL DEFAULT '0', + `clan_name` varchar(64) NOT NULL DEFAULT '', + `clan_tag` varchar(16) NOT NULL DEFAULT '', + `clan_owner` int(11) NOT NULL DEFAULT '0', + `clan_created` int(32) NOT NULL DEFAULT '0', + `clan_deleted` int(11) NOT NULL DEFAULT '0', + PRIMARY KEY (`clan_id`), + KEY `clan_server` (`clan_server`), + KEY `clan_owner` (`clan_owner`), + CONSTRAINT `fk_clan_owner` FOREIGN KEY (`clan_owner`) REFERENCES `sacct_main` (`sacct_id`) ON DELETE CASCADE ON UPDATE CASCADE, + CONSTRAINT `fk_clan_server` FOREIGN KEY (`clan_server`) REFERENCES `svr_main` (`svr_id`) ON DELETE CASCADE ON UPDATE CASCADE +) ENGINE=InnoDB DEFAULT CHARSET=latin1 COMMENT='Clans'; + +-- Dumping data for table gtac_main.clan_main: ~0 rows (approximately) +/*!40000 ALTER TABLE `clan_main` DISABLE KEYS */; +/*!40000 ALTER TABLE `clan_main` ENABLE KEYS */; + +-- Dumping structure for table gtac_main.clan_members +CREATE TABLE IF NOT EXISTS `clan_members` ( + `clan_member_id` int(11) NOT NULL DEFAULT '0', + `clan_member_server` int(11) NOT NULL DEFAULT '0', + `clan_member_clan` int(11) NOT NULL DEFAULT '0', + `clan_member_acct` int(11) NOT NULL DEFAULT '0', + `clan_member_custom_title` varchar(64) NOT NULL DEFAULT '', + `clan_member_custom_tag` varchar(16) NOT NULL DEFAULT '', + `clan_member_flags` int(32) NOT NULL DEFAULT '0', + `clan_member_rank` int(11) NOT NULL DEFAULT '0', + PRIMARY KEY (`clan_member_id`), + KEY `clan_member_server` (`clan_member_server`), + KEY `clan_member_clan` (`clan_member_clan`), + KEY `clan_member_acct` (`clan_member_acct`), + CONSTRAINT `fk_clan_member_server` FOREIGN KEY (`clan_member_server`) REFERENCES `svr_main` (`svr_id`) ON DELETE CASCADE ON UPDATE CASCADE +) ENGINE=InnoDB DEFAULT CHARSET=latin1 COMMENT='Clans - Members'; + +-- Dumping data for table gtac_main.clan_members: ~0 rows (approximately) +/*!40000 ALTER TABLE `clan_members` DISABLE KEYS */; +/*!40000 ALTER TABLE `clan_members` ENABLE KEYS */; + +-- Dumping structure for table gtac_main.clan_ranks +CREATE TABLE IF NOT EXISTS `clan_ranks` ( + `clan_rank_id` int(11) NOT NULL AUTO_INCREMENT, + `clan_rank_clan` int(11) NOT NULL DEFAULT '0', + `clan_rank_name` varchar(64) NOT NULL DEFAULT '', + `clan_rank_custom_tag` varchar(16) NOT NULL DEFAULT '', + `clan_rank_after_rank_id` int(11) NOT NULL DEFAULT '0', + `clan_rank_flags` int(32) NOT NULL DEFAULT '0', + PRIMARY KEY (`clan_rank_id`), + KEY `clan_rank_clan` (`clan_rank_clan`) +) ENGINE=InnoDB DEFAULT CHARSET=latin1 COMMENT='Clans - Ranks'; + +-- Dumping data for table gtac_main.clan_ranks: ~0 rows (approximately) +/*!40000 ALTER TABLE `clan_ranks` DISABLE KEYS */; +/*!40000 ALTER TABLE `clan_ranks` ENABLE KEYS */; + +-- Dumping structure for table gtac_main.conn_main +CREATE TABLE IF NOT EXISTS `conn_main` ( + `conn_id` int(11) NOT NULL AUTO_INCREMENT, + `conn_server` int(11) NOT NULL DEFAULT '0', + `conn_auth` int(11) NOT NULL DEFAULT '0', + `conn_name` varchar(256) NOT NULL DEFAULT '', + `conn_ip` int(11) NOT NULL DEFAULT '0', + `conn_when_connect` bigint(20) NOT NULL DEFAULT '0', + `conn_when_disconnect` bigint(20) NOT NULL DEFAULT '0', + `conn_client_version` varchar(50) NOT NULL DEFAULT '0', + `conn_script_version` varchar(50) NOT NULL DEFAULT '0', + `conn_game_version` varchar(50) NOT NULL DEFAULT '0', + `conn_status` int(11) NOT NULL DEFAULT '0', + `conn_how_disconnect` int(11) NOT NULL DEFAULT '0', + PRIMARY KEY (`conn_id`), + KEY `conn_server` (`conn_server`), + CONSTRAINT `fk_conn_server` FOREIGN KEY (`conn_server`) REFERENCES `svr_main` (`svr_id`) ON DELETE CASCADE ON UPDATE CASCADE +) ENGINE=InnoDB AUTO_INCREMENT=294 DEFAULT CHARSET=utf8 COMMENT='Connections (Sessions)'; + +-- Dumping data for table gtac_main.conn_main: ~293 rows (approximately) +/*!40000 ALTER TABLE `conn_main` DISABLE KEYS */; +INSERT INTO `conn_main` (`conn_id`, `conn_server`, `conn_auth`, `conn_name`, `conn_ip`, `conn_when_connect`, `conn_when_disconnect`, `conn_client_version`, `conn_script_version`, `conn_game_version`, `conn_status`, `conn_how_disconnect`) VALUES + (1, 1, 0, '', 0, 1610503778, 0, '0.0.0', '1.0', '1', 0, 0); +INSERT INTO `conn_main` (`conn_id`, `conn_server`, `conn_auth`, `conn_name`, `conn_ip`, `conn_when_connect`, `conn_when_disconnect`, `conn_client_version`, `conn_script_version`, `conn_game_version`, `conn_status`, `conn_how_disconnect`) VALUES + (2, 1, 0, '', 0, 1610503857, 0, '0.0.0', '1.0', '1', 0, 0); +INSERT INTO `conn_main` (`conn_id`, `conn_server`, `conn_auth`, `conn_name`, `conn_ip`, `conn_when_connect`, `conn_when_disconnect`, `conn_client_version`, `conn_script_version`, `conn_game_version`, `conn_status`, `conn_how_disconnect`) VALUES + (3, 1, 0, '', 0, 1610504425, 0, '0.0.0', '1.0', '1', 0, 0); +INSERT INTO `conn_main` (`conn_id`, `conn_server`, `conn_auth`, `conn_name`, `conn_ip`, `conn_when_connect`, `conn_when_disconnect`, `conn_client_version`, `conn_script_version`, `conn_game_version`, `conn_status`, `conn_how_disconnect`) VALUES + (4, 1, 0, '', 0, 1610504480, 0, '0.0.0', '1.0', '1', 0, 0); +INSERT INTO `conn_main` (`conn_id`, `conn_server`, `conn_auth`, `conn_name`, `conn_ip`, `conn_when_connect`, `conn_when_disconnect`, `conn_client_version`, `conn_script_version`, `conn_game_version`, `conn_status`, `conn_how_disconnect`) VALUES + (5, 1, 0, '', 0, 1610504534, 0, '0.0.0', '1.0', '1', 0, 0); +INSERT INTO `conn_main` (`conn_id`, `conn_server`, `conn_auth`, `conn_name`, `conn_ip`, `conn_when_connect`, `conn_when_disconnect`, `conn_client_version`, `conn_script_version`, `conn_game_version`, `conn_status`, `conn_how_disconnect`) VALUES + (6, 1, 0, '', 0, 1610504688, 0, '0.0.0', '1.0', '1', 0, 0); +INSERT INTO `conn_main` (`conn_id`, `conn_server`, `conn_auth`, `conn_name`, `conn_ip`, `conn_when_connect`, `conn_when_disconnect`, `conn_client_version`, `conn_script_version`, `conn_game_version`, `conn_status`, `conn_how_disconnect`) VALUES + (7, 1, 0, '', 0, 1610508551, 0, '0.0.0', '1.0', '1', 0, 0); +INSERT INTO `conn_main` (`conn_id`, `conn_server`, `conn_auth`, `conn_name`, `conn_ip`, `conn_when_connect`, `conn_when_disconnect`, `conn_client_version`, `conn_script_version`, `conn_game_version`, `conn_status`, `conn_how_disconnect`) VALUES + (8, 1, 0, '', 0, 1610508624, 0, '0.0.0', '1.0', '1', 0, 0); +INSERT INTO `conn_main` (`conn_id`, `conn_server`, `conn_auth`, `conn_name`, `conn_ip`, `conn_when_connect`, `conn_when_disconnect`, `conn_client_version`, `conn_script_version`, `conn_game_version`, `conn_status`, `conn_how_disconnect`) VALUES + (9, 1, 0, '', 0, 1610508861, 0, '0.0.0', '1.0', '1', 0, 0); +INSERT INTO `conn_main` (`conn_id`, `conn_server`, `conn_auth`, `conn_name`, `conn_ip`, `conn_when_connect`, `conn_when_disconnect`, `conn_client_version`, `conn_script_version`, `conn_game_version`, `conn_status`, `conn_how_disconnect`) VALUES + (10, 1, 0, '', 0, 1610508901, 0, '0.0.0', '1.0', '1', 0, 0); +INSERT INTO `conn_main` (`conn_id`, `conn_server`, `conn_auth`, `conn_name`, `conn_ip`, `conn_when_connect`, `conn_when_disconnect`, `conn_client_version`, `conn_script_version`, `conn_game_version`, `conn_status`, `conn_how_disconnect`) VALUES + (11, 1, 0, '', 0, 1610509221, 0, '0.0.0', '1.0', '1', 0, 0); +INSERT INTO `conn_main` (`conn_id`, `conn_server`, `conn_auth`, `conn_name`, `conn_ip`, `conn_when_connect`, `conn_when_disconnect`, `conn_client_version`, `conn_script_version`, `conn_game_version`, `conn_status`, `conn_how_disconnect`) VALUES + (12, 1, 0, '', 0, 1610509345, 0, '0.0.0', '1.0', '1', 0, 0); +INSERT INTO `conn_main` (`conn_id`, `conn_server`, `conn_auth`, `conn_name`, `conn_ip`, `conn_when_connect`, `conn_when_disconnect`, `conn_client_version`, `conn_script_version`, `conn_game_version`, `conn_status`, `conn_how_disconnect`) VALUES + (13, 1, 0, '', 0, 1610510121, 0, '0.0.0', '1.0', '1', 0, 0); +INSERT INTO `conn_main` (`conn_id`, `conn_server`, `conn_auth`, `conn_name`, `conn_ip`, `conn_when_connect`, `conn_when_disconnect`, `conn_client_version`, `conn_script_version`, `conn_game_version`, `conn_status`, `conn_how_disconnect`) VALUES + (14, 1, 0, '', 0, 1610510274, 0, '0.0.0', '1.0', '1', 0, 0); +INSERT INTO `conn_main` (`conn_id`, `conn_server`, `conn_auth`, `conn_name`, `conn_ip`, `conn_when_connect`, `conn_when_disconnect`, `conn_client_version`, `conn_script_version`, `conn_game_version`, `conn_status`, `conn_how_disconnect`) VALUES + (15, 1, 0, '', 0, 1610510886, 0, '0.0.0', '1.0', '1', 0, 0); +INSERT INTO `conn_main` (`conn_id`, `conn_server`, `conn_auth`, `conn_name`, `conn_ip`, `conn_when_connect`, `conn_when_disconnect`, `conn_client_version`, `conn_script_version`, `conn_game_version`, `conn_status`, `conn_how_disconnect`) VALUES + (16, 1, 0, '', 0, 1610511695, 0, '0.0.0', '1.0', '1', 0, 0); +INSERT INTO `conn_main` (`conn_id`, `conn_server`, `conn_auth`, `conn_name`, `conn_ip`, `conn_when_connect`, `conn_when_disconnect`, `conn_client_version`, `conn_script_version`, `conn_game_version`, `conn_status`, `conn_how_disconnect`) VALUES + (17, 1, 0, '', 0, 1610512568, 0, '0.0.0', '1.0', '1', 0, 0); +INSERT INTO `conn_main` (`conn_id`, `conn_server`, `conn_auth`, `conn_name`, `conn_ip`, `conn_when_connect`, `conn_when_disconnect`, `conn_client_version`, `conn_script_version`, `conn_game_version`, `conn_status`, `conn_how_disconnect`) VALUES + (18, 1, 0, '', 0, 1610512769, 0, '0.0.0', '1.0', '1', 0, 0); +INSERT INTO `conn_main` (`conn_id`, `conn_server`, `conn_auth`, `conn_name`, `conn_ip`, `conn_when_connect`, `conn_when_disconnect`, `conn_client_version`, `conn_script_version`, `conn_game_version`, `conn_status`, `conn_how_disconnect`) VALUES + (19, 1, 0, '', 0, 1610512882, 0, '0.0.0', '1.0', '1', 0, 0); +INSERT INTO `conn_main` (`conn_id`, `conn_server`, `conn_auth`, `conn_name`, `conn_ip`, `conn_when_connect`, `conn_when_disconnect`, `conn_client_version`, `conn_script_version`, `conn_game_version`, `conn_status`, `conn_how_disconnect`) VALUES + (20, 1, 0, '', 0, 1610513047, 0, '0.0.0', '1.0', '1', 0, 0); +INSERT INTO `conn_main` (`conn_id`, `conn_server`, `conn_auth`, `conn_name`, `conn_ip`, `conn_when_connect`, `conn_when_disconnect`, `conn_client_version`, `conn_script_version`, `conn_game_version`, `conn_status`, `conn_how_disconnect`) VALUES + (21, 1, 0, '', 0, 1610513134, 0, '0.0.0', '1.0', '1', 0, 0); +INSERT INTO `conn_main` (`conn_id`, `conn_server`, `conn_auth`, `conn_name`, `conn_ip`, `conn_when_connect`, `conn_when_disconnect`, `conn_client_version`, `conn_script_version`, `conn_game_version`, `conn_status`, `conn_how_disconnect`) VALUES + (22, 1, 0, '', 0, 1610513285, 0, '0.0.0', '1.0', '1', 0, 0); +INSERT INTO `conn_main` (`conn_id`, `conn_server`, `conn_auth`, `conn_name`, `conn_ip`, `conn_when_connect`, `conn_when_disconnect`, `conn_client_version`, `conn_script_version`, `conn_game_version`, `conn_status`, `conn_how_disconnect`) VALUES + (23, 1, 0, '', 0, 1610513330, 0, '0.0.0', '1.0', '1', 0, 0); +INSERT INTO `conn_main` (`conn_id`, `conn_server`, `conn_auth`, `conn_name`, `conn_ip`, `conn_when_connect`, `conn_when_disconnect`, `conn_client_version`, `conn_script_version`, `conn_game_version`, `conn_status`, `conn_how_disconnect`) VALUES + (24, 1, 0, '', 0, 1610513493, 0, '0.0.0', '1.0', '1', 0, 0); +INSERT INTO `conn_main` (`conn_id`, `conn_server`, `conn_auth`, `conn_name`, `conn_ip`, `conn_when_connect`, `conn_when_disconnect`, `conn_client_version`, `conn_script_version`, `conn_game_version`, `conn_status`, `conn_how_disconnect`) VALUES + (25, 1, 0, '', 0, 1610513768, 0, '0.0.0', '1.0', '1', 0, 0); +INSERT INTO `conn_main` (`conn_id`, `conn_server`, `conn_auth`, `conn_name`, `conn_ip`, `conn_when_connect`, `conn_when_disconnect`, `conn_client_version`, `conn_script_version`, `conn_game_version`, `conn_status`, `conn_how_disconnect`) VALUES + (26, 1, 0, '', 0, 1610513939, 0, '0.0.0', '1.0', '1', 0, 0); +INSERT INTO `conn_main` (`conn_id`, `conn_server`, `conn_auth`, `conn_name`, `conn_ip`, `conn_when_connect`, `conn_when_disconnect`, `conn_client_version`, `conn_script_version`, `conn_game_version`, `conn_status`, `conn_how_disconnect`) VALUES + (27, 1, 0, '', 0, 1610514199, 0, '0.0.0', '1.0', '1', 0, 0); +INSERT INTO `conn_main` (`conn_id`, `conn_server`, `conn_auth`, `conn_name`, `conn_ip`, `conn_when_connect`, `conn_when_disconnect`, `conn_client_version`, `conn_script_version`, `conn_game_version`, `conn_status`, `conn_how_disconnect`) VALUES + (28, 1, 0, '', 0, 1610515759, 0, '0.0.0', '1.0', '1', 0, 0); +INSERT INTO `conn_main` (`conn_id`, `conn_server`, `conn_auth`, `conn_name`, `conn_ip`, `conn_when_connect`, `conn_when_disconnect`, `conn_client_version`, `conn_script_version`, `conn_game_version`, `conn_status`, `conn_how_disconnect`) VALUES + (29, 1, 0, '', 0, 1610517101, 0, '0.0.0', '1.0', '1', 0, 0); +INSERT INTO `conn_main` (`conn_id`, `conn_server`, `conn_auth`, `conn_name`, `conn_ip`, `conn_when_connect`, `conn_when_disconnect`, `conn_client_version`, `conn_script_version`, `conn_game_version`, `conn_status`, `conn_how_disconnect`) VALUES + (30, 4, 0, '', 0, 1610552373, 0, '0.0.0', '1.0', '4', 0, 0); +INSERT INTO `conn_main` (`conn_id`, `conn_server`, `conn_auth`, `conn_name`, `conn_ip`, `conn_when_connect`, `conn_when_disconnect`, `conn_client_version`, `conn_script_version`, `conn_game_version`, `conn_status`, `conn_how_disconnect`) VALUES + (31, 4, 0, '', 0, 1610557867, 0, '0.0.0', '1.0', '4', 0, 0); +INSERT INTO `conn_main` (`conn_id`, `conn_server`, `conn_auth`, `conn_name`, `conn_ip`, `conn_when_connect`, `conn_when_disconnect`, `conn_client_version`, `conn_script_version`, `conn_game_version`, `conn_status`, `conn_how_disconnect`) VALUES + (32, 4, 0, '', 0, 1610558535, 0, '0.0.0', '1.0', '4', 0, 0); +INSERT INTO `conn_main` (`conn_id`, `conn_server`, `conn_auth`, `conn_name`, `conn_ip`, `conn_when_connect`, `conn_when_disconnect`, `conn_client_version`, `conn_script_version`, `conn_game_version`, `conn_status`, `conn_how_disconnect`) VALUES + (33, 4, 0, '', 0, 1610559558, 0, '0.0.0', '1.0', '4', 0, 0); +INSERT INTO `conn_main` (`conn_id`, `conn_server`, `conn_auth`, `conn_name`, `conn_ip`, `conn_when_connect`, `conn_when_disconnect`, `conn_client_version`, `conn_script_version`, `conn_game_version`, `conn_status`, `conn_how_disconnect`) VALUES + (34, 4, 0, '', 0, 1610559578, 0, '0.0.0', '1.0', '4', 0, 0); +INSERT INTO `conn_main` (`conn_id`, `conn_server`, `conn_auth`, `conn_name`, `conn_ip`, `conn_when_connect`, `conn_when_disconnect`, `conn_client_version`, `conn_script_version`, `conn_game_version`, `conn_status`, `conn_how_disconnect`) VALUES + (35, 4, 0, '', 0, 1610559860, 0, '0.0.0', '1.0', '4', 0, 0); +INSERT INTO `conn_main` (`conn_id`, `conn_server`, `conn_auth`, `conn_name`, `conn_ip`, `conn_when_connect`, `conn_when_disconnect`, `conn_client_version`, `conn_script_version`, `conn_game_version`, `conn_status`, `conn_how_disconnect`) VALUES + (36, 4, 0, '', 0, 1610559921, 0, '0.0.0', '1.0', '4', 0, 0); +INSERT INTO `conn_main` (`conn_id`, `conn_server`, `conn_auth`, `conn_name`, `conn_ip`, `conn_when_connect`, `conn_when_disconnect`, `conn_client_version`, `conn_script_version`, `conn_game_version`, `conn_status`, `conn_how_disconnect`) VALUES + (37, 4, 0, '', 0, 1610560096, 0, '0.0.0', '1.0', '4', 0, 0); +INSERT INTO `conn_main` (`conn_id`, `conn_server`, `conn_auth`, `conn_name`, `conn_ip`, `conn_when_connect`, `conn_when_disconnect`, `conn_client_version`, `conn_script_version`, `conn_game_version`, `conn_status`, `conn_how_disconnect`) VALUES + (38, 4, 0, '', 0, 1610560218, 0, '0.0.0', '1.0', '4', 0, 0); +INSERT INTO `conn_main` (`conn_id`, `conn_server`, `conn_auth`, `conn_name`, `conn_ip`, `conn_when_connect`, `conn_when_disconnect`, `conn_client_version`, `conn_script_version`, `conn_game_version`, `conn_status`, `conn_how_disconnect`) VALUES + (39, 4, 0, '', 0, 1610560352, 0, '0.0.0', '1.0', '4', 0, 0); +INSERT INTO `conn_main` (`conn_id`, `conn_server`, `conn_auth`, `conn_name`, `conn_ip`, `conn_when_connect`, `conn_when_disconnect`, `conn_client_version`, `conn_script_version`, `conn_game_version`, `conn_status`, `conn_how_disconnect`) VALUES + (40, 4, 0, '', 0, 1610560446, 0, '0.0.0', '1.0', '4', 0, 0); +INSERT INTO `conn_main` (`conn_id`, `conn_server`, `conn_auth`, `conn_name`, `conn_ip`, `conn_when_connect`, `conn_when_disconnect`, `conn_client_version`, `conn_script_version`, `conn_game_version`, `conn_status`, `conn_how_disconnect`) VALUES + (41, 4, 0, '', 0, 1610560499, 0, '0.0.0', '1.0', '4', 0, 0); +INSERT INTO `conn_main` (`conn_id`, `conn_server`, `conn_auth`, `conn_name`, `conn_ip`, `conn_when_connect`, `conn_when_disconnect`, `conn_client_version`, `conn_script_version`, `conn_game_version`, `conn_status`, `conn_how_disconnect`) VALUES + (42, 4, 0, '', 0, 1610560716, 0, '0.0.0', '1.0', '4', 0, 0); +INSERT INTO `conn_main` (`conn_id`, `conn_server`, `conn_auth`, `conn_name`, `conn_ip`, `conn_when_connect`, `conn_when_disconnect`, `conn_client_version`, `conn_script_version`, `conn_game_version`, `conn_status`, `conn_how_disconnect`) VALUES + (43, 4, 0, '', 0, 1610560789, 0, '0.0.0', '1.0', '4', 0, 0); +INSERT INTO `conn_main` (`conn_id`, `conn_server`, `conn_auth`, `conn_name`, `conn_ip`, `conn_when_connect`, `conn_when_disconnect`, `conn_client_version`, `conn_script_version`, `conn_game_version`, `conn_status`, `conn_how_disconnect`) VALUES + (44, 4, 0, '', 0, 1610586179, 0, '0.0.0', '1.0', '4', 0, 0); +INSERT INTO `conn_main` (`conn_id`, `conn_server`, `conn_auth`, `conn_name`, `conn_ip`, `conn_when_connect`, `conn_when_disconnect`, `conn_client_version`, `conn_script_version`, `conn_game_version`, `conn_status`, `conn_how_disconnect`) VALUES + (45, 4, 0, '', 0, 1610586449, 0, '0.0.0', '1.0', '4', 0, 0); +INSERT INTO `conn_main` (`conn_id`, `conn_server`, `conn_auth`, `conn_name`, `conn_ip`, `conn_when_connect`, `conn_when_disconnect`, `conn_client_version`, `conn_script_version`, `conn_game_version`, `conn_status`, `conn_how_disconnect`) VALUES + (46, 4, 0, '', 0, 1610586718, 0, '0.0.0', '1.0', '4', 0, 0); +INSERT INTO `conn_main` (`conn_id`, `conn_server`, `conn_auth`, `conn_name`, `conn_ip`, `conn_when_connect`, `conn_when_disconnect`, `conn_client_version`, `conn_script_version`, `conn_game_version`, `conn_status`, `conn_how_disconnect`) VALUES + (47, 4, 0, '', 0, 1610587088, 0, '0.0.0', '1.0', '4', 0, 0); +INSERT INTO `conn_main` (`conn_id`, `conn_server`, `conn_auth`, `conn_name`, `conn_ip`, `conn_when_connect`, `conn_when_disconnect`, `conn_client_version`, `conn_script_version`, `conn_game_version`, `conn_status`, `conn_how_disconnect`) VALUES + (48, 4, 0, '', 0, 1610587206, 0, '0.0.0', '1.0', '4', 0, 0); +INSERT INTO `conn_main` (`conn_id`, `conn_server`, `conn_auth`, `conn_name`, `conn_ip`, `conn_when_connect`, `conn_when_disconnect`, `conn_client_version`, `conn_script_version`, `conn_game_version`, `conn_status`, `conn_how_disconnect`) VALUES + (49, 4, 0, '', 0, 1610587316, 0, '0.0.0', '1.0', '4', 0, 0); +INSERT INTO `conn_main` (`conn_id`, `conn_server`, `conn_auth`, `conn_name`, `conn_ip`, `conn_when_connect`, `conn_when_disconnect`, `conn_client_version`, `conn_script_version`, `conn_game_version`, `conn_status`, `conn_how_disconnect`) VALUES + (50, 4, 0, '', 0, 1610587423, 0, '0.0.0', '1.0', '4', 0, 0); +INSERT INTO `conn_main` (`conn_id`, `conn_server`, `conn_auth`, `conn_name`, `conn_ip`, `conn_when_connect`, `conn_when_disconnect`, `conn_client_version`, `conn_script_version`, `conn_game_version`, `conn_status`, `conn_how_disconnect`) VALUES + (51, 4, 0, '', 0, 1610587518, 0, '0.0.0', '1.0', '4', 0, 0); +INSERT INTO `conn_main` (`conn_id`, `conn_server`, `conn_auth`, `conn_name`, `conn_ip`, `conn_when_connect`, `conn_when_disconnect`, `conn_client_version`, `conn_script_version`, `conn_game_version`, `conn_status`, `conn_how_disconnect`) VALUES + (52, 4, 0, '', 0, 1610587819, 0, '0.0.0', '1.0', '4', 0, 0); +INSERT INTO `conn_main` (`conn_id`, `conn_server`, `conn_auth`, `conn_name`, `conn_ip`, `conn_when_connect`, `conn_when_disconnect`, `conn_client_version`, `conn_script_version`, `conn_game_version`, `conn_status`, `conn_how_disconnect`) VALUES + (53, 4, 0, '', 0, 1610588141, 0, '0.0.0', '1.0', '4', 0, 0); +INSERT INTO `conn_main` (`conn_id`, `conn_server`, `conn_auth`, `conn_name`, `conn_ip`, `conn_when_connect`, `conn_when_disconnect`, `conn_client_version`, `conn_script_version`, `conn_game_version`, `conn_status`, `conn_how_disconnect`) VALUES + (54, 4, 0, '', 0, 1610588705, 0, '0.0.0', '1.0', '4', 0, 0); +INSERT INTO `conn_main` (`conn_id`, `conn_server`, `conn_auth`, `conn_name`, `conn_ip`, `conn_when_connect`, `conn_when_disconnect`, `conn_client_version`, `conn_script_version`, `conn_game_version`, `conn_status`, `conn_how_disconnect`) VALUES + (55, 4, 0, '', 0, 1610588809, 0, '0.0.0', '1.0', '4', 0, 0); +INSERT INTO `conn_main` (`conn_id`, `conn_server`, `conn_auth`, `conn_name`, `conn_ip`, `conn_when_connect`, `conn_when_disconnect`, `conn_client_version`, `conn_script_version`, `conn_game_version`, `conn_status`, `conn_how_disconnect`) VALUES + (56, 4, 0, '', 0, 1610589373, 0, '0.0.0', '1.0', '4', 0, 0); +INSERT INTO `conn_main` (`conn_id`, `conn_server`, `conn_auth`, `conn_name`, `conn_ip`, `conn_when_connect`, `conn_when_disconnect`, `conn_client_version`, `conn_script_version`, `conn_game_version`, `conn_status`, `conn_how_disconnect`) VALUES + (57, 4, 0, '', 0, 1610590545, 0, '0.0.0', '1.0', '4', 0, 0); +INSERT INTO `conn_main` (`conn_id`, `conn_server`, `conn_auth`, `conn_name`, `conn_ip`, `conn_when_connect`, `conn_when_disconnect`, `conn_client_version`, `conn_script_version`, `conn_game_version`, `conn_status`, `conn_how_disconnect`) VALUES + (58, 4, 0, '', 0, 1610591749, 0, '0.0.0', '1.0', '4', 0, 0); +INSERT INTO `conn_main` (`conn_id`, `conn_server`, `conn_auth`, `conn_name`, `conn_ip`, `conn_when_connect`, `conn_when_disconnect`, `conn_client_version`, `conn_script_version`, `conn_game_version`, `conn_status`, `conn_how_disconnect`) VALUES + (59, 4, 0, '', 0, 1610591858, 0, '0.0.0', '1.0', '4', 0, 0); +INSERT INTO `conn_main` (`conn_id`, `conn_server`, `conn_auth`, `conn_name`, `conn_ip`, `conn_when_connect`, `conn_when_disconnect`, `conn_client_version`, `conn_script_version`, `conn_game_version`, `conn_status`, `conn_how_disconnect`) VALUES + (60, 4, 0, '', 0, 1610591973, 0, '0.0.0', '1.0', '4', 0, 0); +INSERT INTO `conn_main` (`conn_id`, `conn_server`, `conn_auth`, `conn_name`, `conn_ip`, `conn_when_connect`, `conn_when_disconnect`, `conn_client_version`, `conn_script_version`, `conn_game_version`, `conn_status`, `conn_how_disconnect`) VALUES + (61, 4, 0, '', 0, 1610592007, 0, '0.0.0', '1.0', '4', 0, 0); +INSERT INTO `conn_main` (`conn_id`, `conn_server`, `conn_auth`, `conn_name`, `conn_ip`, `conn_when_connect`, `conn_when_disconnect`, `conn_client_version`, `conn_script_version`, `conn_game_version`, `conn_status`, `conn_how_disconnect`) VALUES + (62, 4, 0, '', 0, 1610594821, 0, '0.0.0', '1.0', '4', 0, 0); +INSERT INTO `conn_main` (`conn_id`, `conn_server`, `conn_auth`, `conn_name`, `conn_ip`, `conn_when_connect`, `conn_when_disconnect`, `conn_client_version`, `conn_script_version`, `conn_game_version`, `conn_status`, `conn_how_disconnect`) VALUES + (63, 4, 0, '', 0, 1610595971, 0, '0.0.0', '1.0', '4', 0, 0); +INSERT INTO `conn_main` (`conn_id`, `conn_server`, `conn_auth`, `conn_name`, `conn_ip`, `conn_when_connect`, `conn_when_disconnect`, `conn_client_version`, `conn_script_version`, `conn_game_version`, `conn_status`, `conn_how_disconnect`) VALUES + (64, 4, 0, '', 0, 1610596043, 0, '0.0.0', '1.0', '4', 0, 0); +INSERT INTO `conn_main` (`conn_id`, `conn_server`, `conn_auth`, `conn_name`, `conn_ip`, `conn_when_connect`, `conn_when_disconnect`, `conn_client_version`, `conn_script_version`, `conn_game_version`, `conn_status`, `conn_how_disconnect`) VALUES + (65, 4, 0, '', 0, 1610596079, 0, '0.0.0', '1.0', '4', 0, 0); +INSERT INTO `conn_main` (`conn_id`, `conn_server`, `conn_auth`, `conn_name`, `conn_ip`, `conn_when_connect`, `conn_when_disconnect`, `conn_client_version`, `conn_script_version`, `conn_game_version`, `conn_status`, `conn_how_disconnect`) VALUES + (66, 4, 0, '', 0, 1610596095, 0, '0.0.0', '1.0', '4', 0, 0); +INSERT INTO `conn_main` (`conn_id`, `conn_server`, `conn_auth`, `conn_name`, `conn_ip`, `conn_when_connect`, `conn_when_disconnect`, `conn_client_version`, `conn_script_version`, `conn_game_version`, `conn_status`, `conn_how_disconnect`) VALUES + (67, 4, 0, '', 0, 1610596174, 0, '0.0.0', '1.0', '4', 0, 0); +INSERT INTO `conn_main` (`conn_id`, `conn_server`, `conn_auth`, `conn_name`, `conn_ip`, `conn_when_connect`, `conn_when_disconnect`, `conn_client_version`, `conn_script_version`, `conn_game_version`, `conn_status`, `conn_how_disconnect`) VALUES + (68, 4, 0, '', 0, 1610596215, 0, '0.0.0', '1.0', '4', 0, 0); +INSERT INTO `conn_main` (`conn_id`, `conn_server`, `conn_auth`, `conn_name`, `conn_ip`, `conn_when_connect`, `conn_when_disconnect`, `conn_client_version`, `conn_script_version`, `conn_game_version`, `conn_status`, `conn_how_disconnect`) VALUES + (69, 4, 0, '', 0, 1610596260, 0, '0.0.0', '1.0', '4', 0, 0); +INSERT INTO `conn_main` (`conn_id`, `conn_server`, `conn_auth`, `conn_name`, `conn_ip`, `conn_when_connect`, `conn_when_disconnect`, `conn_client_version`, `conn_script_version`, `conn_game_version`, `conn_status`, `conn_how_disconnect`) VALUES + (70, 4, 0, '', 0, 1610596614, 0, '0.0.0', '1.0', '4', 0, 0); +INSERT INTO `conn_main` (`conn_id`, `conn_server`, `conn_auth`, `conn_name`, `conn_ip`, `conn_when_connect`, `conn_when_disconnect`, `conn_client_version`, `conn_script_version`, `conn_game_version`, `conn_status`, `conn_how_disconnect`) VALUES + (71, 4, 0, '', 0, 1610596707, 0, '0.0.0', '1.0', '4', 0, 0); +INSERT INTO `conn_main` (`conn_id`, `conn_server`, `conn_auth`, `conn_name`, `conn_ip`, `conn_when_connect`, `conn_when_disconnect`, `conn_client_version`, `conn_script_version`, `conn_game_version`, `conn_status`, `conn_how_disconnect`) VALUES + (72, 4, 0, '', 0, 1610596784, 0, '0.0.0', '1.0', '4', 0, 0); +INSERT INTO `conn_main` (`conn_id`, `conn_server`, `conn_auth`, `conn_name`, `conn_ip`, `conn_when_connect`, `conn_when_disconnect`, `conn_client_version`, `conn_script_version`, `conn_game_version`, `conn_status`, `conn_how_disconnect`) VALUES + (73, 4, 0, '', 0, 1610596864, 0, '0.0.0', '1.0', '4', 0, 0); +INSERT INTO `conn_main` (`conn_id`, `conn_server`, `conn_auth`, `conn_name`, `conn_ip`, `conn_when_connect`, `conn_when_disconnect`, `conn_client_version`, `conn_script_version`, `conn_game_version`, `conn_status`, `conn_how_disconnect`) VALUES + (74, 4, 0, '', 0, 1610681204, 0, '0.0.0', '1.0', '4', 0, 0); +INSERT INTO `conn_main` (`conn_id`, `conn_server`, `conn_auth`, `conn_name`, `conn_ip`, `conn_when_connect`, `conn_when_disconnect`, `conn_client_version`, `conn_script_version`, `conn_game_version`, `conn_status`, `conn_how_disconnect`) VALUES + (75, 4, 0, '', 0, 1610681333, 0, '0.0.0', '1.0', '4', 0, 0); +INSERT INTO `conn_main` (`conn_id`, `conn_server`, `conn_auth`, `conn_name`, `conn_ip`, `conn_when_connect`, `conn_when_disconnect`, `conn_client_version`, `conn_script_version`, `conn_game_version`, `conn_status`, `conn_how_disconnect`) VALUES + (76, 4, 0, '', 0, 1610681619, 0, '0.0.0', '1.0', '4', 0, 0); +INSERT INTO `conn_main` (`conn_id`, `conn_server`, `conn_auth`, `conn_name`, `conn_ip`, `conn_when_connect`, `conn_when_disconnect`, `conn_client_version`, `conn_script_version`, `conn_game_version`, `conn_status`, `conn_how_disconnect`) VALUES + (77, 2, 0, '', 0, 1610681680, 0, '0.0.0', '1.0', '2', 0, 0); +INSERT INTO `conn_main` (`conn_id`, `conn_server`, `conn_auth`, `conn_name`, `conn_ip`, `conn_when_connect`, `conn_when_disconnect`, `conn_client_version`, `conn_script_version`, `conn_game_version`, `conn_status`, `conn_how_disconnect`) VALUES + (78, 2, 0, '', 0, 1610681827, 0, '0.0.0', '1.0', '2', 0, 0); +INSERT INTO `conn_main` (`conn_id`, `conn_server`, `conn_auth`, `conn_name`, `conn_ip`, `conn_when_connect`, `conn_when_disconnect`, `conn_client_version`, `conn_script_version`, `conn_game_version`, `conn_status`, `conn_how_disconnect`) VALUES + (79, 2, 0, '', 0, 1610681926, 0, '0.0.0', '1.0', '2', 0, 0); +INSERT INTO `conn_main` (`conn_id`, `conn_server`, `conn_auth`, `conn_name`, `conn_ip`, `conn_when_connect`, `conn_when_disconnect`, `conn_client_version`, `conn_script_version`, `conn_game_version`, `conn_status`, `conn_how_disconnect`) VALUES + (80, 2, 0, '', 0, 1610681975, 0, '0.0.0', '1.0', '2', 0, 0); +INSERT INTO `conn_main` (`conn_id`, `conn_server`, `conn_auth`, `conn_name`, `conn_ip`, `conn_when_connect`, `conn_when_disconnect`, `conn_client_version`, `conn_script_version`, `conn_game_version`, `conn_status`, `conn_how_disconnect`) VALUES + (81, 2, 0, '', 0, 1610682092, 0, '0.0.0', '1.0', '2', 0, 0); +INSERT INTO `conn_main` (`conn_id`, `conn_server`, `conn_auth`, `conn_name`, `conn_ip`, `conn_when_connect`, `conn_when_disconnect`, `conn_client_version`, `conn_script_version`, `conn_game_version`, `conn_status`, `conn_how_disconnect`) VALUES + (82, 2, 0, '', 0, 1610682202, 0, '0.0.0', '1.0', '2', 0, 0); +INSERT INTO `conn_main` (`conn_id`, `conn_server`, `conn_auth`, `conn_name`, `conn_ip`, `conn_when_connect`, `conn_when_disconnect`, `conn_client_version`, `conn_script_version`, `conn_game_version`, `conn_status`, `conn_how_disconnect`) VALUES + (83, 2, 0, '', 0, 1610682416, 0, '0.0.0', '1.0', '2', 0, 0); +INSERT INTO `conn_main` (`conn_id`, `conn_server`, `conn_auth`, `conn_name`, `conn_ip`, `conn_when_connect`, `conn_when_disconnect`, `conn_client_version`, `conn_script_version`, `conn_game_version`, `conn_status`, `conn_how_disconnect`) VALUES + (84, 2, 0, '', 0, 1610683636, 0, '0.0.0', '1.0', '2', 0, 0); +INSERT INTO `conn_main` (`conn_id`, `conn_server`, `conn_auth`, `conn_name`, `conn_ip`, `conn_when_connect`, `conn_when_disconnect`, `conn_client_version`, `conn_script_version`, `conn_game_version`, `conn_status`, `conn_how_disconnect`) VALUES + (85, 2, 0, '', 0, 1610684059, 0, '0.0.0', '1.0', '2', 0, 0); +INSERT INTO `conn_main` (`conn_id`, `conn_server`, `conn_auth`, `conn_name`, `conn_ip`, `conn_when_connect`, `conn_when_disconnect`, `conn_client_version`, `conn_script_version`, `conn_game_version`, `conn_status`, `conn_how_disconnect`) VALUES + (86, 2, 0, '', 0, 1610684118, 0, '0.0.0', '1.0', '2', 0, 0); +INSERT INTO `conn_main` (`conn_id`, `conn_server`, `conn_auth`, `conn_name`, `conn_ip`, `conn_when_connect`, `conn_when_disconnect`, `conn_client_version`, `conn_script_version`, `conn_game_version`, `conn_status`, `conn_how_disconnect`) VALUES + (87, 2, 0, '', 0, 1610684181, 0, '0.0.0', '1.0', '2', 0, 0); +INSERT INTO `conn_main` (`conn_id`, `conn_server`, `conn_auth`, `conn_name`, `conn_ip`, `conn_when_connect`, `conn_when_disconnect`, `conn_client_version`, `conn_script_version`, `conn_game_version`, `conn_status`, `conn_how_disconnect`) VALUES + (88, 2, 0, '', 0, 1610684395, 0, '0.0.0', '1.0', '2', 0, 0); +INSERT INTO `conn_main` (`conn_id`, `conn_server`, `conn_auth`, `conn_name`, `conn_ip`, `conn_when_connect`, `conn_when_disconnect`, `conn_client_version`, `conn_script_version`, `conn_game_version`, `conn_status`, `conn_how_disconnect`) VALUES + (89, 2, 0, '', 0, 1610684474, 0, '0.0.0', '1.0', '2', 0, 0); +INSERT INTO `conn_main` (`conn_id`, `conn_server`, `conn_auth`, `conn_name`, `conn_ip`, `conn_when_connect`, `conn_when_disconnect`, `conn_client_version`, `conn_script_version`, `conn_game_version`, `conn_status`, `conn_how_disconnect`) VALUES + (90, 2, 0, '', 0, 1610684735, 0, '0.0.0', '1.0', '2', 0, 0); +INSERT INTO `conn_main` (`conn_id`, `conn_server`, `conn_auth`, `conn_name`, `conn_ip`, `conn_when_connect`, `conn_when_disconnect`, `conn_client_version`, `conn_script_version`, `conn_game_version`, `conn_status`, `conn_how_disconnect`) VALUES + (91, 2, 0, '', 0, 1610684790, 0, '0.0.0', '1.0', '2', 0, 0); +INSERT INTO `conn_main` (`conn_id`, `conn_server`, `conn_auth`, `conn_name`, `conn_ip`, `conn_when_connect`, `conn_when_disconnect`, `conn_client_version`, `conn_script_version`, `conn_game_version`, `conn_status`, `conn_how_disconnect`) VALUES + (92, 2, 0, '', 0, 1610684974, 0, '0.0.0', '1.0', '2', 0, 0); +INSERT INTO `conn_main` (`conn_id`, `conn_server`, `conn_auth`, `conn_name`, `conn_ip`, `conn_when_connect`, `conn_when_disconnect`, `conn_client_version`, `conn_script_version`, `conn_game_version`, `conn_status`, `conn_how_disconnect`) VALUES + (93, 2, 0, '', 0, 1610685330, 0, '0.0.0', '1.0', '2', 0, 0); +INSERT INTO `conn_main` (`conn_id`, `conn_server`, `conn_auth`, `conn_name`, `conn_ip`, `conn_when_connect`, `conn_when_disconnect`, `conn_client_version`, `conn_script_version`, `conn_game_version`, `conn_status`, `conn_how_disconnect`) VALUES + (94, 2, 0, '', 0, 1610685483, 0, '0.0.0', '1.0', '2', 0, 0); +INSERT INTO `conn_main` (`conn_id`, `conn_server`, `conn_auth`, `conn_name`, `conn_ip`, `conn_when_connect`, `conn_when_disconnect`, `conn_client_version`, `conn_script_version`, `conn_game_version`, `conn_status`, `conn_how_disconnect`) VALUES + (95, 2, 0, '', 0, 1610685742, 0, '0.0.0', '1.0', '2', 0, 0); +INSERT INTO `conn_main` (`conn_id`, `conn_server`, `conn_auth`, `conn_name`, `conn_ip`, `conn_when_connect`, `conn_when_disconnect`, `conn_client_version`, `conn_script_version`, `conn_game_version`, `conn_status`, `conn_how_disconnect`) VALUES + (96, 2, 0, '', 0, 1610686211, 0, '0.0.0', '1.0', '2', 0, 0); +INSERT INTO `conn_main` (`conn_id`, `conn_server`, `conn_auth`, `conn_name`, `conn_ip`, `conn_when_connect`, `conn_when_disconnect`, `conn_client_version`, `conn_script_version`, `conn_game_version`, `conn_status`, `conn_how_disconnect`) VALUES + (97, 2, 0, '', 0, 1610686346, 0, '0.0.0', '1.0', '2', 0, 0); +INSERT INTO `conn_main` (`conn_id`, `conn_server`, `conn_auth`, `conn_name`, `conn_ip`, `conn_when_connect`, `conn_when_disconnect`, `conn_client_version`, `conn_script_version`, `conn_game_version`, `conn_status`, `conn_how_disconnect`) VALUES + (98, 2, 0, '', 0, 1610686731, 0, '0.0.0', '1.0', '2', 0, 0); +INSERT INTO `conn_main` (`conn_id`, `conn_server`, `conn_auth`, `conn_name`, `conn_ip`, `conn_when_connect`, `conn_when_disconnect`, `conn_client_version`, `conn_script_version`, `conn_game_version`, `conn_status`, `conn_how_disconnect`) VALUES + (99, 1, 0, '', 0, 1610686807, 0, '0.0.0', '1.0', '1', 0, 0); +INSERT INTO `conn_main` (`conn_id`, `conn_server`, `conn_auth`, `conn_name`, `conn_ip`, `conn_when_connect`, `conn_when_disconnect`, `conn_client_version`, `conn_script_version`, `conn_game_version`, `conn_status`, `conn_how_disconnect`) VALUES + (100, 1, 0, '', 0, 1610687640, 0, '0.0.0', '1.0', '1', 0, 0); +INSERT INTO `conn_main` (`conn_id`, `conn_server`, `conn_auth`, `conn_name`, `conn_ip`, `conn_when_connect`, `conn_when_disconnect`, `conn_client_version`, `conn_script_version`, `conn_game_version`, `conn_status`, `conn_how_disconnect`) VALUES + (101, 1, 0, '', 0, 1610687929, 0, '0.0.0', '1.0', '1', 0, 0); +INSERT INTO `conn_main` (`conn_id`, `conn_server`, `conn_auth`, `conn_name`, `conn_ip`, `conn_when_connect`, `conn_when_disconnect`, `conn_client_version`, `conn_script_version`, `conn_game_version`, `conn_status`, `conn_how_disconnect`) VALUES + (102, 1, 0, '', 0, 1610687982, 0, '0.0.0', '1.0', '1', 0, 0); +INSERT INTO `conn_main` (`conn_id`, `conn_server`, `conn_auth`, `conn_name`, `conn_ip`, `conn_when_connect`, `conn_when_disconnect`, `conn_client_version`, `conn_script_version`, `conn_game_version`, `conn_status`, `conn_how_disconnect`) VALUES + (103, 1, 0, '', 0, 1610688147, 0, '0.0.0', '1.0', '1', 0, 0); +INSERT INTO `conn_main` (`conn_id`, `conn_server`, `conn_auth`, `conn_name`, `conn_ip`, `conn_when_connect`, `conn_when_disconnect`, `conn_client_version`, `conn_script_version`, `conn_game_version`, `conn_status`, `conn_how_disconnect`) VALUES + (104, 1, 0, '', 0, 1610703295, 0, '0.0.0', '1.0', '1', 0, 0); +INSERT INTO `conn_main` (`conn_id`, `conn_server`, `conn_auth`, `conn_name`, `conn_ip`, `conn_when_connect`, `conn_when_disconnect`, `conn_client_version`, `conn_script_version`, `conn_game_version`, `conn_status`, `conn_how_disconnect`) VALUES + (105, 4, 0, '', 0, 1610763477, 0, '0.0.0', '1.0', '4', 0, 0); +INSERT INTO `conn_main` (`conn_id`, `conn_server`, `conn_auth`, `conn_name`, `conn_ip`, `conn_when_connect`, `conn_when_disconnect`, `conn_client_version`, `conn_script_version`, `conn_game_version`, `conn_status`, `conn_how_disconnect`) VALUES + (106, 1, 0, '', 0, 1610763529, 0, '0.0.0', '1.0', '1', 0, 0); +INSERT INTO `conn_main` (`conn_id`, `conn_server`, `conn_auth`, `conn_name`, `conn_ip`, `conn_when_connect`, `conn_when_disconnect`, `conn_client_version`, `conn_script_version`, `conn_game_version`, `conn_status`, `conn_how_disconnect`) VALUES + (107, 1, 0, '', 0, 1610763627, 0, '0.0.0', '1.0', '1', 0, 0); +INSERT INTO `conn_main` (`conn_id`, `conn_server`, `conn_auth`, `conn_name`, `conn_ip`, `conn_when_connect`, `conn_when_disconnect`, `conn_client_version`, `conn_script_version`, `conn_game_version`, `conn_status`, `conn_how_disconnect`) VALUES + (108, 1, 0, '', 0, 1610763658, 0, '0.0.0', '1.0', '1', 0, 0); +INSERT INTO `conn_main` (`conn_id`, `conn_server`, `conn_auth`, `conn_name`, `conn_ip`, `conn_when_connect`, `conn_when_disconnect`, `conn_client_version`, `conn_script_version`, `conn_game_version`, `conn_status`, `conn_how_disconnect`) VALUES + (109, 1, 0, '', 0, 1610763709, 0, '0.0.0', '1.0', '1', 0, 0); +INSERT INTO `conn_main` (`conn_id`, `conn_server`, `conn_auth`, `conn_name`, `conn_ip`, `conn_when_connect`, `conn_when_disconnect`, `conn_client_version`, `conn_script_version`, `conn_game_version`, `conn_status`, `conn_how_disconnect`) VALUES + (110, 1, 0, '', 0, 1610763717, 0, '0.0.0', '1.0', '1', 0, 0); +INSERT INTO `conn_main` (`conn_id`, `conn_server`, `conn_auth`, `conn_name`, `conn_ip`, `conn_when_connect`, `conn_when_disconnect`, `conn_client_version`, `conn_script_version`, `conn_game_version`, `conn_status`, `conn_how_disconnect`) VALUES + (111, 1, 0, '', 0, 1610763986, 0, '0.0.0', '1.0', '1', 0, 0); +INSERT INTO `conn_main` (`conn_id`, `conn_server`, `conn_auth`, `conn_name`, `conn_ip`, `conn_when_connect`, `conn_when_disconnect`, `conn_client_version`, `conn_script_version`, `conn_game_version`, `conn_status`, `conn_how_disconnect`) VALUES + (112, 1, 0, '', 0, 1610764130, 0, '0.0.0', '1.0', '1', 0, 0); +INSERT INTO `conn_main` (`conn_id`, `conn_server`, `conn_auth`, `conn_name`, `conn_ip`, `conn_when_connect`, `conn_when_disconnect`, `conn_client_version`, `conn_script_version`, `conn_game_version`, `conn_status`, `conn_how_disconnect`) VALUES + (113, 1, 0, '', 0, 1610764299, 0, '0.0.0', '1.0', '1', 0, 0); +INSERT INTO `conn_main` (`conn_id`, `conn_server`, `conn_auth`, `conn_name`, `conn_ip`, `conn_when_connect`, `conn_when_disconnect`, `conn_client_version`, `conn_script_version`, `conn_game_version`, `conn_status`, `conn_how_disconnect`) VALUES + (114, 1, 0, '', 0, 1610764300, 0, '0.0.0', '1.0', '1', 0, 0); +INSERT INTO `conn_main` (`conn_id`, `conn_server`, `conn_auth`, `conn_name`, `conn_ip`, `conn_when_connect`, `conn_when_disconnect`, `conn_client_version`, `conn_script_version`, `conn_game_version`, `conn_status`, `conn_how_disconnect`) VALUES + (115, 1, 0, '', 0, 1610764395, 0, '0.0.0', '1.0', '1', 0, 0); +INSERT INTO `conn_main` (`conn_id`, `conn_server`, `conn_auth`, `conn_name`, `conn_ip`, `conn_when_connect`, `conn_when_disconnect`, `conn_client_version`, `conn_script_version`, `conn_game_version`, `conn_status`, `conn_how_disconnect`) VALUES + (116, 1, 0, '', 0, 1610765928, 0, '0.0.0', '1.0', '1', 0, 0); +INSERT INTO `conn_main` (`conn_id`, `conn_server`, `conn_auth`, `conn_name`, `conn_ip`, `conn_when_connect`, `conn_when_disconnect`, `conn_client_version`, `conn_script_version`, `conn_game_version`, `conn_status`, `conn_how_disconnect`) VALUES + (117, 1, 0, '', 0, 1610766643, 0, '0.0.0', '1.0', '1', 0, 0); +INSERT INTO `conn_main` (`conn_id`, `conn_server`, `conn_auth`, `conn_name`, `conn_ip`, `conn_when_connect`, `conn_when_disconnect`, `conn_client_version`, `conn_script_version`, `conn_game_version`, `conn_status`, `conn_how_disconnect`) VALUES + (118, 1, 0, '', 0, 1610791623, 0, '0.0.0', '1.0', '1', 0, 0); +INSERT INTO `conn_main` (`conn_id`, `conn_server`, `conn_auth`, `conn_name`, `conn_ip`, `conn_when_connect`, `conn_when_disconnect`, `conn_client_version`, `conn_script_version`, `conn_game_version`, `conn_status`, `conn_how_disconnect`) VALUES + (119, 1, 0, '', 0, 1610793652, 0, '0.0.0', '1.0', '1', 0, 0); +INSERT INTO `conn_main` (`conn_id`, `conn_server`, `conn_auth`, `conn_name`, `conn_ip`, `conn_when_connect`, `conn_when_disconnect`, `conn_client_version`, `conn_script_version`, `conn_game_version`, `conn_status`, `conn_how_disconnect`) VALUES + (120, 1, 0, '', 0, 1610793895, 0, '0.0.0', '1.0', '1', 0, 0); +INSERT INTO `conn_main` (`conn_id`, `conn_server`, `conn_auth`, `conn_name`, `conn_ip`, `conn_when_connect`, `conn_when_disconnect`, `conn_client_version`, `conn_script_version`, `conn_game_version`, `conn_status`, `conn_how_disconnect`) VALUES + (121, 1, 0, '', 0, 1610794031, 0, '0.0.0', '1.0', '1', 0, 0); +INSERT INTO `conn_main` (`conn_id`, `conn_server`, `conn_auth`, `conn_name`, `conn_ip`, `conn_when_connect`, `conn_when_disconnect`, `conn_client_version`, `conn_script_version`, `conn_game_version`, `conn_status`, `conn_how_disconnect`) VALUES + (122, 1, 0, '', 0, 1610794276, 0, '0.0.0', '1.0', '1', 0, 0); +INSERT INTO `conn_main` (`conn_id`, `conn_server`, `conn_auth`, `conn_name`, `conn_ip`, `conn_when_connect`, `conn_when_disconnect`, `conn_client_version`, `conn_script_version`, `conn_game_version`, `conn_status`, `conn_how_disconnect`) VALUES + (123, 1, 0, '', 0, 1610795995, 0, '0.0.0', '1.0', '1', 0, 0); +INSERT INTO `conn_main` (`conn_id`, `conn_server`, `conn_auth`, `conn_name`, `conn_ip`, `conn_when_connect`, `conn_when_disconnect`, `conn_client_version`, `conn_script_version`, `conn_game_version`, `conn_status`, `conn_how_disconnect`) VALUES + (124, 1, 0, '', 0, 1610796192, 0, '0.0.0', '1.0', '1', 0, 0); +INSERT INTO `conn_main` (`conn_id`, `conn_server`, `conn_auth`, `conn_name`, `conn_ip`, `conn_when_connect`, `conn_when_disconnect`, `conn_client_version`, `conn_script_version`, `conn_game_version`, `conn_status`, `conn_how_disconnect`) VALUES + (125, 1, 0, '', 0, 1610796237, 0, '0.0.0', '1.0', '1', 0, 0); +INSERT INTO `conn_main` (`conn_id`, `conn_server`, `conn_auth`, `conn_name`, `conn_ip`, `conn_when_connect`, `conn_when_disconnect`, `conn_client_version`, `conn_script_version`, `conn_game_version`, `conn_status`, `conn_how_disconnect`) VALUES + (126, 1, 0, '', 0, 1610796266, 0, '0.0.0', '1.0', '1', 0, 0); +INSERT INTO `conn_main` (`conn_id`, `conn_server`, `conn_auth`, `conn_name`, `conn_ip`, `conn_when_connect`, `conn_when_disconnect`, `conn_client_version`, `conn_script_version`, `conn_game_version`, `conn_status`, `conn_how_disconnect`) VALUES + (127, 1, 0, '', 0, 1610796314, 0, '0.0.0', '1.0', '1', 0, 0); +INSERT INTO `conn_main` (`conn_id`, `conn_server`, `conn_auth`, `conn_name`, `conn_ip`, `conn_when_connect`, `conn_when_disconnect`, `conn_client_version`, `conn_script_version`, `conn_game_version`, `conn_status`, `conn_how_disconnect`) VALUES + (128, 1, 0, '', 0, 1610796432, 0, '0.0.0', '1.0', '1', 0, 0); +INSERT INTO `conn_main` (`conn_id`, `conn_server`, `conn_auth`, `conn_name`, `conn_ip`, `conn_when_connect`, `conn_when_disconnect`, `conn_client_version`, `conn_script_version`, `conn_game_version`, `conn_status`, `conn_how_disconnect`) VALUES + (129, 1, 0, '', 0, 1610797161, 0, '0.0.0', '1.0', '1', 0, 0); +INSERT INTO `conn_main` (`conn_id`, `conn_server`, `conn_auth`, `conn_name`, `conn_ip`, `conn_when_connect`, `conn_when_disconnect`, `conn_client_version`, `conn_script_version`, `conn_game_version`, `conn_status`, `conn_how_disconnect`) VALUES + (130, 1, 0, '', 0, 1610797486, 0, '0.0.0', '1.0', '1', 0, 0); +INSERT INTO `conn_main` (`conn_id`, `conn_server`, `conn_auth`, `conn_name`, `conn_ip`, `conn_when_connect`, `conn_when_disconnect`, `conn_client_version`, `conn_script_version`, `conn_game_version`, `conn_status`, `conn_how_disconnect`) VALUES + (131, 1, 0, '', 0, 1610797702, 0, '0.0.0', '1.0', '1', 0, 0); +INSERT INTO `conn_main` (`conn_id`, `conn_server`, `conn_auth`, `conn_name`, `conn_ip`, `conn_when_connect`, `conn_when_disconnect`, `conn_client_version`, `conn_script_version`, `conn_game_version`, `conn_status`, `conn_how_disconnect`) VALUES + (132, 1, 0, '', 0, 1610797799, 0, '0.0.0', '1.0', '1', 0, 0); +INSERT INTO `conn_main` (`conn_id`, `conn_server`, `conn_auth`, `conn_name`, `conn_ip`, `conn_when_connect`, `conn_when_disconnect`, `conn_client_version`, `conn_script_version`, `conn_game_version`, `conn_status`, `conn_how_disconnect`) VALUES + (133, 4, 0, '', 0, 1611087900, 0, '0.0.0', '1.0', '4', 0, 0); +INSERT INTO `conn_main` (`conn_id`, `conn_server`, `conn_auth`, `conn_name`, `conn_ip`, `conn_when_connect`, `conn_when_disconnect`, `conn_client_version`, `conn_script_version`, `conn_game_version`, `conn_status`, `conn_how_disconnect`) VALUES + (134, 4, 0, '', 0, 1611088089, 0, '0.0.0', '1.0', '4', 0, 0); +INSERT INTO `conn_main` (`conn_id`, `conn_server`, `conn_auth`, `conn_name`, `conn_ip`, `conn_when_connect`, `conn_when_disconnect`, `conn_client_version`, `conn_script_version`, `conn_game_version`, `conn_status`, `conn_how_disconnect`) VALUES + (135, 4, 0, '', 0, 1611088324, 0, '0.0.0', '1.0', '4', 0, 0); +INSERT INTO `conn_main` (`conn_id`, `conn_server`, `conn_auth`, `conn_name`, `conn_ip`, `conn_when_connect`, `conn_when_disconnect`, `conn_client_version`, `conn_script_version`, `conn_game_version`, `conn_status`, `conn_how_disconnect`) VALUES + (136, 1, 0, '', 0, 1611226672, 0, '0.0.0', '1.0', '1', 0, 0); +INSERT INTO `conn_main` (`conn_id`, `conn_server`, `conn_auth`, `conn_name`, `conn_ip`, `conn_when_connect`, `conn_when_disconnect`, `conn_client_version`, `conn_script_version`, `conn_game_version`, `conn_status`, `conn_how_disconnect`) VALUES + (137, 1, 0, '', 0, 1611228627, 0, '0.0.0', '1.0', '1', 0, 0); +INSERT INTO `conn_main` (`conn_id`, `conn_server`, `conn_auth`, `conn_name`, `conn_ip`, `conn_when_connect`, `conn_when_disconnect`, `conn_client_version`, `conn_script_version`, `conn_game_version`, `conn_status`, `conn_how_disconnect`) VALUES + (138, 1, 0, '', 0, 1611229218, 0, '0.0.0', '1.0', '1', 0, 0); +INSERT INTO `conn_main` (`conn_id`, `conn_server`, `conn_auth`, `conn_name`, `conn_ip`, `conn_when_connect`, `conn_when_disconnect`, `conn_client_version`, `conn_script_version`, `conn_game_version`, `conn_status`, `conn_how_disconnect`) VALUES + (139, 1, 0, '', 0, 1611229506, 0, '0.0.0', '1.0', '1', 0, 0); +INSERT INTO `conn_main` (`conn_id`, `conn_server`, `conn_auth`, `conn_name`, `conn_ip`, `conn_when_connect`, `conn_when_disconnect`, `conn_client_version`, `conn_script_version`, `conn_game_version`, `conn_status`, `conn_how_disconnect`) VALUES + (140, 1, 0, '', 0, 1611229678, 0, '0.0.0', '1.0', '1', 0, 0); +INSERT INTO `conn_main` (`conn_id`, `conn_server`, `conn_auth`, `conn_name`, `conn_ip`, `conn_when_connect`, `conn_when_disconnect`, `conn_client_version`, `conn_script_version`, `conn_game_version`, `conn_status`, `conn_how_disconnect`) VALUES + (141, 1, 0, '', 0, 1611229962, 0, '0.0.0', '1.0', '1', 0, 0); +INSERT INTO `conn_main` (`conn_id`, `conn_server`, `conn_auth`, `conn_name`, `conn_ip`, `conn_when_connect`, `conn_when_disconnect`, `conn_client_version`, `conn_script_version`, `conn_game_version`, `conn_status`, `conn_how_disconnect`) VALUES + (142, 1, 0, '', 0, 1611230135, 0, '0.0.0', '1.0', '1', 0, 0); +INSERT INTO `conn_main` (`conn_id`, `conn_server`, `conn_auth`, `conn_name`, `conn_ip`, `conn_when_connect`, `conn_when_disconnect`, `conn_client_version`, `conn_script_version`, `conn_game_version`, `conn_status`, `conn_how_disconnect`) VALUES + (143, 1, 0, '', 0, 1611230212, 0, '0.0.0', '1.0', '1', 0, 0); +INSERT INTO `conn_main` (`conn_id`, `conn_server`, `conn_auth`, `conn_name`, `conn_ip`, `conn_when_connect`, `conn_when_disconnect`, `conn_client_version`, `conn_script_version`, `conn_game_version`, `conn_status`, `conn_how_disconnect`) VALUES + (144, 1, 0, '', 0, 1611230354, 0, '0.0.0', '1.0', '1', 0, 0); +INSERT INTO `conn_main` (`conn_id`, `conn_server`, `conn_auth`, `conn_name`, `conn_ip`, `conn_when_connect`, `conn_when_disconnect`, `conn_client_version`, `conn_script_version`, `conn_game_version`, `conn_status`, `conn_how_disconnect`) VALUES + (145, 1, 0, '', 0, 1611232552, 0, '0.0.0', '1.0', '1', 0, 0); +INSERT INTO `conn_main` (`conn_id`, `conn_server`, `conn_auth`, `conn_name`, `conn_ip`, `conn_when_connect`, `conn_when_disconnect`, `conn_client_version`, `conn_script_version`, `conn_game_version`, `conn_status`, `conn_how_disconnect`) VALUES + (146, 1, 0, '', 0, 1611232576, 0, '0.0.0', '1.0', '1', 0, 0); +INSERT INTO `conn_main` (`conn_id`, `conn_server`, `conn_auth`, `conn_name`, `conn_ip`, `conn_when_connect`, `conn_when_disconnect`, `conn_client_version`, `conn_script_version`, `conn_game_version`, `conn_status`, `conn_how_disconnect`) VALUES + (147, 1, 0, '', 0, 1611232770, 0, '0.0.0', '1.0', '1', 0, 0); +INSERT INTO `conn_main` (`conn_id`, `conn_server`, `conn_auth`, `conn_name`, `conn_ip`, `conn_when_connect`, `conn_when_disconnect`, `conn_client_version`, `conn_script_version`, `conn_game_version`, `conn_status`, `conn_how_disconnect`) VALUES + (148, 1, 0, '', 0, 1611304158, 0, '0.0.0', '1.0', '1', 0, 0); +INSERT INTO `conn_main` (`conn_id`, `conn_server`, `conn_auth`, `conn_name`, `conn_ip`, `conn_when_connect`, `conn_when_disconnect`, `conn_client_version`, `conn_script_version`, `conn_game_version`, `conn_status`, `conn_how_disconnect`) VALUES + (149, 1, 0, '', 0, 1611304985, 0, '0.0.0', '1.0', '1', 0, 0); +INSERT INTO `conn_main` (`conn_id`, `conn_server`, `conn_auth`, `conn_name`, `conn_ip`, `conn_when_connect`, `conn_when_disconnect`, `conn_client_version`, `conn_script_version`, `conn_game_version`, `conn_status`, `conn_how_disconnect`) VALUES + (150, 1, 0, '', 0, 1611521732, 0, '0.0.0', '1.0', '1', 0, 0); +INSERT INTO `conn_main` (`conn_id`, `conn_server`, `conn_auth`, `conn_name`, `conn_ip`, `conn_when_connect`, `conn_when_disconnect`, `conn_client_version`, `conn_script_version`, `conn_game_version`, `conn_status`, `conn_how_disconnect`) VALUES + (151, 1, 0, '', 0, 1611522351, 0, '0.0.0', '1.0', '1', 0, 0); +INSERT INTO `conn_main` (`conn_id`, `conn_server`, `conn_auth`, `conn_name`, `conn_ip`, `conn_when_connect`, `conn_when_disconnect`, `conn_client_version`, `conn_script_version`, `conn_game_version`, `conn_status`, `conn_how_disconnect`) VALUES + (152, 1, 0, '', 0, 1611522434, 0, '0.0.0', '1.0', '1', 0, 0); +INSERT INTO `conn_main` (`conn_id`, `conn_server`, `conn_auth`, `conn_name`, `conn_ip`, `conn_when_connect`, `conn_when_disconnect`, `conn_client_version`, `conn_script_version`, `conn_game_version`, `conn_status`, `conn_how_disconnect`) VALUES + (153, 1, 0, '', 0, 1611522650, 0, '0.0.0', '1.0', '1', 0, 0); +INSERT INTO `conn_main` (`conn_id`, `conn_server`, `conn_auth`, `conn_name`, `conn_ip`, `conn_when_connect`, `conn_when_disconnect`, `conn_client_version`, `conn_script_version`, `conn_game_version`, `conn_status`, `conn_how_disconnect`) VALUES + (154, 1, 0, '', 0, 1611522695, 0, '0.0.0', '1.0', '1', 0, 0); +INSERT INTO `conn_main` (`conn_id`, `conn_server`, `conn_auth`, `conn_name`, `conn_ip`, `conn_when_connect`, `conn_when_disconnect`, `conn_client_version`, `conn_script_version`, `conn_game_version`, `conn_status`, `conn_how_disconnect`) VALUES + (155, 1, 0, '', 0, 1611522812, 0, '0.0.0', '1.0', '1', 0, 0); +INSERT INTO `conn_main` (`conn_id`, `conn_server`, `conn_auth`, `conn_name`, `conn_ip`, `conn_when_connect`, `conn_when_disconnect`, `conn_client_version`, `conn_script_version`, `conn_game_version`, `conn_status`, `conn_how_disconnect`) VALUES + (156, 2, 0, '', 0, 1611526452, 0, '0.0.0', '1.0', '2', 0, 0); +INSERT INTO `conn_main` (`conn_id`, `conn_server`, `conn_auth`, `conn_name`, `conn_ip`, `conn_when_connect`, `conn_when_disconnect`, `conn_client_version`, `conn_script_version`, `conn_game_version`, `conn_status`, `conn_how_disconnect`) VALUES + (157, 2, 0, '', 0, 1611526509, 0, '0.0.0', '1.0', '2', 0, 0); +INSERT INTO `conn_main` (`conn_id`, `conn_server`, `conn_auth`, `conn_name`, `conn_ip`, `conn_when_connect`, `conn_when_disconnect`, `conn_client_version`, `conn_script_version`, `conn_game_version`, `conn_status`, `conn_how_disconnect`) VALUES + (158, 2, 0, '', 0, 1611527171, 0, '0.0.0', '1.0', '2', 0, 0); +INSERT INTO `conn_main` (`conn_id`, `conn_server`, `conn_auth`, `conn_name`, `conn_ip`, `conn_when_connect`, `conn_when_disconnect`, `conn_client_version`, `conn_script_version`, `conn_game_version`, `conn_status`, `conn_how_disconnect`) VALUES + (159, 4, 0, '', 0, 1612851488, 0, '0.0.0', '1.0', '4', 0, 0); +INSERT INTO `conn_main` (`conn_id`, `conn_server`, `conn_auth`, `conn_name`, `conn_ip`, `conn_when_connect`, `conn_when_disconnect`, `conn_client_version`, `conn_script_version`, `conn_game_version`, `conn_status`, `conn_how_disconnect`) VALUES + (160, 4, 0, '', 0, 1612851865, 0, '0.0.0', '1.0', '4', 0, 0); +INSERT INTO `conn_main` (`conn_id`, `conn_server`, `conn_auth`, `conn_name`, `conn_ip`, `conn_when_connect`, `conn_when_disconnect`, `conn_client_version`, `conn_script_version`, `conn_game_version`, `conn_status`, `conn_how_disconnect`) VALUES + (161, 4, 0, '', 0, 1612851916, 0, '0.0.0', '1.0', '4', 0, 0); +INSERT INTO `conn_main` (`conn_id`, `conn_server`, `conn_auth`, `conn_name`, `conn_ip`, `conn_when_connect`, `conn_when_disconnect`, `conn_client_version`, `conn_script_version`, `conn_game_version`, `conn_status`, `conn_how_disconnect`) VALUES + (162, 4, 0, '', 0, 1612852054, 0, '0.0.0', '1.0', '4', 0, 0); +INSERT INTO `conn_main` (`conn_id`, `conn_server`, `conn_auth`, `conn_name`, `conn_ip`, `conn_when_connect`, `conn_when_disconnect`, `conn_client_version`, `conn_script_version`, `conn_game_version`, `conn_status`, `conn_how_disconnect`) VALUES + (163, 4, 0, '', 0, 1612852105, 0, '0.0.0', '1.0', '4', 0, 0); +INSERT INTO `conn_main` (`conn_id`, `conn_server`, `conn_auth`, `conn_name`, `conn_ip`, `conn_when_connect`, `conn_when_disconnect`, `conn_client_version`, `conn_script_version`, `conn_game_version`, `conn_status`, `conn_how_disconnect`) VALUES + (164, 4, 0, '', 0, 1612852187, 0, '0.0.0', '1.0', '4', 0, 0); +INSERT INTO `conn_main` (`conn_id`, `conn_server`, `conn_auth`, `conn_name`, `conn_ip`, `conn_when_connect`, `conn_when_disconnect`, `conn_client_version`, `conn_script_version`, `conn_game_version`, `conn_status`, `conn_how_disconnect`) VALUES + (165, 4, 0, '', 0, 1612852334, 0, '0.0.0', '1.0', '4', 0, 0); +INSERT INTO `conn_main` (`conn_id`, `conn_server`, `conn_auth`, `conn_name`, `conn_ip`, `conn_when_connect`, `conn_when_disconnect`, `conn_client_version`, `conn_script_version`, `conn_game_version`, `conn_status`, `conn_how_disconnect`) VALUES + (166, 4, 0, '', 0, 1612852497, 0, '0.0.0', '1.0', '4', 0, 0); +INSERT INTO `conn_main` (`conn_id`, `conn_server`, `conn_auth`, `conn_name`, `conn_ip`, `conn_when_connect`, `conn_when_disconnect`, `conn_client_version`, `conn_script_version`, `conn_game_version`, `conn_status`, `conn_how_disconnect`) VALUES + (167, 1, 0, '', 0, 1612855109, 0, '0.0.0', '1.0', '1', 0, 0); +INSERT INTO `conn_main` (`conn_id`, `conn_server`, `conn_auth`, `conn_name`, `conn_ip`, `conn_when_connect`, `conn_when_disconnect`, `conn_client_version`, `conn_script_version`, `conn_game_version`, `conn_status`, `conn_how_disconnect`) VALUES + (168, 1, 0, '', 0, 1612855288, 0, '0.0.0', '1.0', '1', 0, 0); +INSERT INTO `conn_main` (`conn_id`, `conn_server`, `conn_auth`, `conn_name`, `conn_ip`, `conn_when_connect`, `conn_when_disconnect`, `conn_client_version`, `conn_script_version`, `conn_game_version`, `conn_status`, `conn_how_disconnect`) VALUES + (169, 4, 0, '', 0, 1612863860, 0, '0.0.0', '1.0', '4', 0, 0); +INSERT INTO `conn_main` (`conn_id`, `conn_server`, `conn_auth`, `conn_name`, `conn_ip`, `conn_when_connect`, `conn_when_disconnect`, `conn_client_version`, `conn_script_version`, `conn_game_version`, `conn_status`, `conn_how_disconnect`) VALUES + (170, 4, 0, '', 0, 1612863933, 0, '0.0.0', '1.0', '4', 0, 0); +INSERT INTO `conn_main` (`conn_id`, `conn_server`, `conn_auth`, `conn_name`, `conn_ip`, `conn_when_connect`, `conn_when_disconnect`, `conn_client_version`, `conn_script_version`, `conn_game_version`, `conn_status`, `conn_how_disconnect`) VALUES + (171, 4, 0, '', 0, 1612864014, 0, '0.0.0', '1.0', '4', 0, 0); +INSERT INTO `conn_main` (`conn_id`, `conn_server`, `conn_auth`, `conn_name`, `conn_ip`, `conn_when_connect`, `conn_when_disconnect`, `conn_client_version`, `conn_script_version`, `conn_game_version`, `conn_status`, `conn_how_disconnect`) VALUES + (172, 4, 0, '', 0, 1612864536, 0, '0.0.0', '1.0', '4', 0, 0); +INSERT INTO `conn_main` (`conn_id`, `conn_server`, `conn_auth`, `conn_name`, `conn_ip`, `conn_when_connect`, `conn_when_disconnect`, `conn_client_version`, `conn_script_version`, `conn_game_version`, `conn_status`, `conn_how_disconnect`) VALUES + (173, 1, 0, '', 0, 1613340231, 0, '0.0.0', '1.0', '1', 0, 0); +INSERT INTO `conn_main` (`conn_id`, `conn_server`, `conn_auth`, `conn_name`, `conn_ip`, `conn_when_connect`, `conn_when_disconnect`, `conn_client_version`, `conn_script_version`, `conn_game_version`, `conn_status`, `conn_how_disconnect`) VALUES + (174, 1, 0, '', 0, 1613340369, 0, '0.0.0', '1.0', '1', 0, 0); +INSERT INTO `conn_main` (`conn_id`, `conn_server`, `conn_auth`, `conn_name`, `conn_ip`, `conn_when_connect`, `conn_when_disconnect`, `conn_client_version`, `conn_script_version`, `conn_game_version`, `conn_status`, `conn_how_disconnect`) VALUES + (175, 1, 0, '', 0, 1613340559, 0, '0.0.0', '1.0', '1', 0, 0); +INSERT INTO `conn_main` (`conn_id`, `conn_server`, `conn_auth`, `conn_name`, `conn_ip`, `conn_when_connect`, `conn_when_disconnect`, `conn_client_version`, `conn_script_version`, `conn_game_version`, `conn_status`, `conn_how_disconnect`) VALUES + (176, 1, 0, '', 0, 1613340704, 0, '0.0.0', '1.0', '1', 0, 0); +INSERT INTO `conn_main` (`conn_id`, `conn_server`, `conn_auth`, `conn_name`, `conn_ip`, `conn_when_connect`, `conn_when_disconnect`, `conn_client_version`, `conn_script_version`, `conn_game_version`, `conn_status`, `conn_how_disconnect`) VALUES + (177, 1, 0, '', 0, 1613340737, 0, '0.0.0', '1.0', '1', 0, 0); +INSERT INTO `conn_main` (`conn_id`, `conn_server`, `conn_auth`, `conn_name`, `conn_ip`, `conn_when_connect`, `conn_when_disconnect`, `conn_client_version`, `conn_script_version`, `conn_game_version`, `conn_status`, `conn_how_disconnect`) VALUES + (178, 1, 0, '', 0, 1613341349, 0, '0.0.0', '1.0', '1', 0, 0); +INSERT INTO `conn_main` (`conn_id`, `conn_server`, `conn_auth`, `conn_name`, `conn_ip`, `conn_when_connect`, `conn_when_disconnect`, `conn_client_version`, `conn_script_version`, `conn_game_version`, `conn_status`, `conn_how_disconnect`) VALUES + (179, 1, 0, '', 0, 1613341540, 0, '0.0.0', '1.0', '1', 0, 0); +INSERT INTO `conn_main` (`conn_id`, `conn_server`, `conn_auth`, `conn_name`, `conn_ip`, `conn_when_connect`, `conn_when_disconnect`, `conn_client_version`, `conn_script_version`, `conn_game_version`, `conn_status`, `conn_how_disconnect`) VALUES + (180, 4, 0, '', 0, 1613341619, 0, '0.0.0', '1.0', '4', 0, 0); +INSERT INTO `conn_main` (`conn_id`, `conn_server`, `conn_auth`, `conn_name`, `conn_ip`, `conn_when_connect`, `conn_when_disconnect`, `conn_client_version`, `conn_script_version`, `conn_game_version`, `conn_status`, `conn_how_disconnect`) VALUES + (181, 4, 0, '', 0, 1613341638, 0, '0.0.0', '1.0', '4', 0, 0); +INSERT INTO `conn_main` (`conn_id`, `conn_server`, `conn_auth`, `conn_name`, `conn_ip`, `conn_when_connect`, `conn_when_disconnect`, `conn_client_version`, `conn_script_version`, `conn_game_version`, `conn_status`, `conn_how_disconnect`) VALUES + (182, 4, 0, '', 0, 1613341683, 0, '0.0.0', '1.0', '4', 0, 0); +INSERT INTO `conn_main` (`conn_id`, `conn_server`, `conn_auth`, `conn_name`, `conn_ip`, `conn_when_connect`, `conn_when_disconnect`, `conn_client_version`, `conn_script_version`, `conn_game_version`, `conn_status`, `conn_how_disconnect`) VALUES + (183, 4, 0, '', 0, 1613341937, 0, '0.0.0', '1.0', '4', 0, 0); +INSERT INTO `conn_main` (`conn_id`, `conn_server`, `conn_auth`, `conn_name`, `conn_ip`, `conn_when_connect`, `conn_when_disconnect`, `conn_client_version`, `conn_script_version`, `conn_game_version`, `conn_status`, `conn_how_disconnect`) VALUES + (184, 4, 0, '', 0, 1613342240, 0, '0.0.0', '1.0', '4', 0, 0); +INSERT INTO `conn_main` (`conn_id`, `conn_server`, `conn_auth`, `conn_name`, `conn_ip`, `conn_when_connect`, `conn_when_disconnect`, `conn_client_version`, `conn_script_version`, `conn_game_version`, `conn_status`, `conn_how_disconnect`) VALUES + (185, 4, 0, '', 0, 1613342373, 0, '0.0.0', '1.0', '4', 0, 0); +INSERT INTO `conn_main` (`conn_id`, `conn_server`, `conn_auth`, `conn_name`, `conn_ip`, `conn_when_connect`, `conn_when_disconnect`, `conn_client_version`, `conn_script_version`, `conn_game_version`, `conn_status`, `conn_how_disconnect`) VALUES + (186, 4, 0, '', 0, 1613342856, 0, '0.0.0', '1.0', '4', 0, 0); +INSERT INTO `conn_main` (`conn_id`, `conn_server`, `conn_auth`, `conn_name`, `conn_ip`, `conn_when_connect`, `conn_when_disconnect`, `conn_client_version`, `conn_script_version`, `conn_game_version`, `conn_status`, `conn_how_disconnect`) VALUES + (187, 3, 0, '', 0, 1613343788, 0, '0.0.0', '1.0', '9', 0, 0); +INSERT INTO `conn_main` (`conn_id`, `conn_server`, `conn_auth`, `conn_name`, `conn_ip`, `conn_when_connect`, `conn_when_disconnect`, `conn_client_version`, `conn_script_version`, `conn_game_version`, `conn_status`, `conn_how_disconnect`) VALUES + (188, 3, 0, '', 0, 1613343830, 0, '0.0.0', '1.0', '9', 0, 0); +INSERT INTO `conn_main` (`conn_id`, `conn_server`, `conn_auth`, `conn_name`, `conn_ip`, `conn_when_connect`, `conn_when_disconnect`, `conn_client_version`, `conn_script_version`, `conn_game_version`, `conn_status`, `conn_how_disconnect`) VALUES + (189, 3, 0, '', 0, 1613343842, 0, '0.0.0', '1.0', '10', 0, 0); +INSERT INTO `conn_main` (`conn_id`, `conn_server`, `conn_auth`, `conn_name`, `conn_ip`, `conn_when_connect`, `conn_when_disconnect`, `conn_client_version`, `conn_script_version`, `conn_game_version`, `conn_status`, `conn_how_disconnect`) VALUES + (190, 3, 0, '', 0, 1613343933, 0, '0.0.0', '1.0', '10', 0, 0); +INSERT INTO `conn_main` (`conn_id`, `conn_server`, `conn_auth`, `conn_name`, `conn_ip`, `conn_when_connect`, `conn_when_disconnect`, `conn_client_version`, `conn_script_version`, `conn_game_version`, `conn_status`, `conn_how_disconnect`) VALUES + (191, 3, 0, '', 0, 1613343985, 0, '0.0.0', '1.0', '9', 0, 0); +INSERT INTO `conn_main` (`conn_id`, `conn_server`, `conn_auth`, `conn_name`, `conn_ip`, `conn_when_connect`, `conn_when_disconnect`, `conn_client_version`, `conn_script_version`, `conn_game_version`, `conn_status`, `conn_how_disconnect`) VALUES + (192, 3, 0, '', 0, 1613343986, 0, '0.0.0', '1.0', '10', 0, 0); +INSERT INTO `conn_main` (`conn_id`, `conn_server`, `conn_auth`, `conn_name`, `conn_ip`, `conn_when_connect`, `conn_when_disconnect`, `conn_client_version`, `conn_script_version`, `conn_game_version`, `conn_status`, `conn_how_disconnect`) VALUES + (193, 3, 0, '', 0, 1613344127, 0, '0.0.0', '1.0', '9', 0, 0); +INSERT INTO `conn_main` (`conn_id`, `conn_server`, `conn_auth`, `conn_name`, `conn_ip`, `conn_when_connect`, `conn_when_disconnect`, `conn_client_version`, `conn_script_version`, `conn_game_version`, `conn_status`, `conn_how_disconnect`) VALUES + (194, 3, 0, '', 0, 1613344140, 0, '0.0.0', '1.0', '10', 0, 0); +INSERT INTO `conn_main` (`conn_id`, `conn_server`, `conn_auth`, `conn_name`, `conn_ip`, `conn_when_connect`, `conn_when_disconnect`, `conn_client_version`, `conn_script_version`, `conn_game_version`, `conn_status`, `conn_how_disconnect`) VALUES + (195, 3, 0, '', 0, 1613344233, 0, '0.0.0', '1.0', '9', 0, 0); +INSERT INTO `conn_main` (`conn_id`, `conn_server`, `conn_auth`, `conn_name`, `conn_ip`, `conn_when_connect`, `conn_when_disconnect`, `conn_client_version`, `conn_script_version`, `conn_game_version`, `conn_status`, `conn_how_disconnect`) VALUES + (196, 3, 0, '', 0, 1613344577, 0, '0.0.0', '1.0', '9', 0, 0); +INSERT INTO `conn_main` (`conn_id`, `conn_server`, `conn_auth`, `conn_name`, `conn_ip`, `conn_when_connect`, `conn_when_disconnect`, `conn_client_version`, `conn_script_version`, `conn_game_version`, `conn_status`, `conn_how_disconnect`) VALUES + (197, 3, 0, '', 0, 1613344772, 0, '0.0.0', '1.0', '9', 0, 0); +INSERT INTO `conn_main` (`conn_id`, `conn_server`, `conn_auth`, `conn_name`, `conn_ip`, `conn_when_connect`, `conn_when_disconnect`, `conn_client_version`, `conn_script_version`, `conn_game_version`, `conn_status`, `conn_how_disconnect`) VALUES + (198, 3, 0, '', 0, 1613344802, 0, '0.0.0', '1.0', '10', 0, 0); +INSERT INTO `conn_main` (`conn_id`, `conn_server`, `conn_auth`, `conn_name`, `conn_ip`, `conn_when_connect`, `conn_when_disconnect`, `conn_client_version`, `conn_script_version`, `conn_game_version`, `conn_status`, `conn_how_disconnect`) VALUES + (199, 3, 0, '', 0, 1613345071, 0, '0.0.0', '1.0', '10', 0, 0); +INSERT INTO `conn_main` (`conn_id`, `conn_server`, `conn_auth`, `conn_name`, `conn_ip`, `conn_when_connect`, `conn_when_disconnect`, `conn_client_version`, `conn_script_version`, `conn_game_version`, `conn_status`, `conn_how_disconnect`) VALUES + (200, 3, 0, '', 0, 1613345153, 0, '0.0.0', '1.0', '10', 0, 0); +INSERT INTO `conn_main` (`conn_id`, `conn_server`, `conn_auth`, `conn_name`, `conn_ip`, `conn_when_connect`, `conn_when_disconnect`, `conn_client_version`, `conn_script_version`, `conn_game_version`, `conn_status`, `conn_how_disconnect`) VALUES + (201, 3, 0, '', 0, 1613345250, 0, '0.0.0', '1.0', '9', 0, 0); +INSERT INTO `conn_main` (`conn_id`, `conn_server`, `conn_auth`, `conn_name`, `conn_ip`, `conn_when_connect`, `conn_when_disconnect`, `conn_client_version`, `conn_script_version`, `conn_game_version`, `conn_status`, `conn_how_disconnect`) VALUES + (202, 3, 0, '', 0, 1613345372, 0, '0.0.0', '1.0', '10', 0, 0); +INSERT INTO `conn_main` (`conn_id`, `conn_server`, `conn_auth`, `conn_name`, `conn_ip`, `conn_when_connect`, `conn_when_disconnect`, `conn_client_version`, `conn_script_version`, `conn_game_version`, `conn_status`, `conn_how_disconnect`) VALUES + (203, 3, 0, '', 0, 1613345384, 0, '0.0.0', '1.0', '9', 0, 0); +INSERT INTO `conn_main` (`conn_id`, `conn_server`, `conn_auth`, `conn_name`, `conn_ip`, `conn_when_connect`, `conn_when_disconnect`, `conn_client_version`, `conn_script_version`, `conn_game_version`, `conn_status`, `conn_how_disconnect`) VALUES + (204, 3, 0, '', 0, 1613869515, 0, '0.0.0', '1.0', '9', 0, 0); +INSERT INTO `conn_main` (`conn_id`, `conn_server`, `conn_auth`, `conn_name`, `conn_ip`, `conn_when_connect`, `conn_when_disconnect`, `conn_client_version`, `conn_script_version`, `conn_game_version`, `conn_status`, `conn_how_disconnect`) VALUES + (205, 3, 0, '', 0, 1613869584, 0, '0.0.0', '1.0', '10', 0, 0); +INSERT INTO `conn_main` (`conn_id`, `conn_server`, `conn_auth`, `conn_name`, `conn_ip`, `conn_when_connect`, `conn_when_disconnect`, `conn_client_version`, `conn_script_version`, `conn_game_version`, `conn_status`, `conn_how_disconnect`) VALUES + (206, 3, 0, '', 0, 1613869754, 0, '0.0.0', '1.0', '9', 0, 0); +INSERT INTO `conn_main` (`conn_id`, `conn_server`, `conn_auth`, `conn_name`, `conn_ip`, `conn_when_connect`, `conn_when_disconnect`, `conn_client_version`, `conn_script_version`, `conn_game_version`, `conn_status`, `conn_how_disconnect`) VALUES + (207, 3, 0, '', 0, 1613869779, 0, '0.0.0', '1.0', '10', 0, 0); +INSERT INTO `conn_main` (`conn_id`, `conn_server`, `conn_auth`, `conn_name`, `conn_ip`, `conn_when_connect`, `conn_when_disconnect`, `conn_client_version`, `conn_script_version`, `conn_game_version`, `conn_status`, `conn_how_disconnect`) VALUES + (208, 3, 0, '', 0, 1613870062, 0, '0.0.0', '1.0', '10', 0, 0); +INSERT INTO `conn_main` (`conn_id`, `conn_server`, `conn_auth`, `conn_name`, `conn_ip`, `conn_when_connect`, `conn_when_disconnect`, `conn_client_version`, `conn_script_version`, `conn_game_version`, `conn_status`, `conn_how_disconnect`) VALUES + (209, 3, 0, '', 0, 1613870114, 0, '0.0.0', '1.0', '9', 0, 0); +INSERT INTO `conn_main` (`conn_id`, `conn_server`, `conn_auth`, `conn_name`, `conn_ip`, `conn_when_connect`, `conn_when_disconnect`, `conn_client_version`, `conn_script_version`, `conn_game_version`, `conn_status`, `conn_how_disconnect`) VALUES + (210, 3, 0, '', 0, 1613870223, 0, '0.0.0', '1.0', '10', 0, 0); +INSERT INTO `conn_main` (`conn_id`, `conn_server`, `conn_auth`, `conn_name`, `conn_ip`, `conn_when_connect`, `conn_when_disconnect`, `conn_client_version`, `conn_script_version`, `conn_game_version`, `conn_status`, `conn_how_disconnect`) VALUES + (211, 3, 0, '', 0, 1613870296, 0, '0.0.0', '1.0', '9', 0, 0); +INSERT INTO `conn_main` (`conn_id`, `conn_server`, `conn_auth`, `conn_name`, `conn_ip`, `conn_when_connect`, `conn_when_disconnect`, `conn_client_version`, `conn_script_version`, `conn_game_version`, `conn_status`, `conn_how_disconnect`) VALUES + (212, 3, 0, '', 0, 1613870327, 0, '0.0.0', '1.0', '10', 0, 0); +INSERT INTO `conn_main` (`conn_id`, `conn_server`, `conn_auth`, `conn_name`, `conn_ip`, `conn_when_connect`, `conn_when_disconnect`, `conn_client_version`, `conn_script_version`, `conn_game_version`, `conn_status`, `conn_how_disconnect`) VALUES + (213, 3, 0, '', 0, 1613870531, 0, '0.0.0', '1.0', '10', 0, 0); +INSERT INTO `conn_main` (`conn_id`, `conn_server`, `conn_auth`, `conn_name`, `conn_ip`, `conn_when_connect`, `conn_when_disconnect`, `conn_client_version`, `conn_script_version`, `conn_game_version`, `conn_status`, `conn_how_disconnect`) VALUES + (214, 3, 0, '', 0, 1613870887, 0, '0.0.0', '1.0', '10', 0, 0); +INSERT INTO `conn_main` (`conn_id`, `conn_server`, `conn_auth`, `conn_name`, `conn_ip`, `conn_when_connect`, `conn_when_disconnect`, `conn_client_version`, `conn_script_version`, `conn_game_version`, `conn_status`, `conn_how_disconnect`) VALUES + (215, 3, 0, '', 0, 1613871008, 0, '0.0.0', '1.0', '9', 0, 0); +INSERT INTO `conn_main` (`conn_id`, `conn_server`, `conn_auth`, `conn_name`, `conn_ip`, `conn_when_connect`, `conn_when_disconnect`, `conn_client_version`, `conn_script_version`, `conn_game_version`, `conn_status`, `conn_how_disconnect`) VALUES + (216, 3, 0, '', 0, 1613871097, 0, '0.0.0', '1.0', '10', 0, 0); +INSERT INTO `conn_main` (`conn_id`, `conn_server`, `conn_auth`, `conn_name`, `conn_ip`, `conn_when_connect`, `conn_when_disconnect`, `conn_client_version`, `conn_script_version`, `conn_game_version`, `conn_status`, `conn_how_disconnect`) VALUES + (217, 3, 0, '', 0, 1613871176, 0, '0.0.0', '1.0', '9', 0, 0); +INSERT INTO `conn_main` (`conn_id`, `conn_server`, `conn_auth`, `conn_name`, `conn_ip`, `conn_when_connect`, `conn_when_disconnect`, `conn_client_version`, `conn_script_version`, `conn_game_version`, `conn_status`, `conn_how_disconnect`) VALUES + (218, 3, 0, '', 0, 1613871357, 0, '0.0.0', '1.0', '10', 0, 0); +INSERT INTO `conn_main` (`conn_id`, `conn_server`, `conn_auth`, `conn_name`, `conn_ip`, `conn_when_connect`, `conn_when_disconnect`, `conn_client_version`, `conn_script_version`, `conn_game_version`, `conn_status`, `conn_how_disconnect`) VALUES + (219, 3, 0, '', 0, 1613871389, 0, '0.0.0', '1.0', '9', 0, 0); +INSERT INTO `conn_main` (`conn_id`, `conn_server`, `conn_auth`, `conn_name`, `conn_ip`, `conn_when_connect`, `conn_when_disconnect`, `conn_client_version`, `conn_script_version`, `conn_game_version`, `conn_status`, `conn_how_disconnect`) VALUES + (220, 3, 0, '', 0, 1613871456, 0, '0.0.0', '1.0', '10', 0, 0); +INSERT INTO `conn_main` (`conn_id`, `conn_server`, `conn_auth`, `conn_name`, `conn_ip`, `conn_when_connect`, `conn_when_disconnect`, `conn_client_version`, `conn_script_version`, `conn_game_version`, `conn_status`, `conn_how_disconnect`) VALUES + (221, 3, 0, '', 0, 1613871889, 0, '0.0.0', '1.0', '9', 0, 0); +INSERT INTO `conn_main` (`conn_id`, `conn_server`, `conn_auth`, `conn_name`, `conn_ip`, `conn_when_connect`, `conn_when_disconnect`, `conn_client_version`, `conn_script_version`, `conn_game_version`, `conn_status`, `conn_how_disconnect`) VALUES + (222, 3, 0, '', 0, 1613871937, 0, '0.0.0', '1.0', '10', 0, 0); +INSERT INTO `conn_main` (`conn_id`, `conn_server`, `conn_auth`, `conn_name`, `conn_ip`, `conn_when_connect`, `conn_when_disconnect`, `conn_client_version`, `conn_script_version`, `conn_game_version`, `conn_status`, `conn_how_disconnect`) VALUES + (223, 3, 0, '', 0, 1613872064, 0, '0.0.0', '1.0', '9', 0, 0); +INSERT INTO `conn_main` (`conn_id`, `conn_server`, `conn_auth`, `conn_name`, `conn_ip`, `conn_when_connect`, `conn_when_disconnect`, `conn_client_version`, `conn_script_version`, `conn_game_version`, `conn_status`, `conn_how_disconnect`) VALUES + (224, 3, 0, '', 0, 1613872612, 0, '0.0.0', '1.0', '9', 0, 0); +INSERT INTO `conn_main` (`conn_id`, `conn_server`, `conn_auth`, `conn_name`, `conn_ip`, `conn_when_connect`, `conn_when_disconnect`, `conn_client_version`, `conn_script_version`, `conn_game_version`, `conn_status`, `conn_how_disconnect`) VALUES + (225, 3, 0, '', 0, 1613872712, 0, '0.0.0', '1.0', '9', 0, 0); +INSERT INTO `conn_main` (`conn_id`, `conn_server`, `conn_auth`, `conn_name`, `conn_ip`, `conn_when_connect`, `conn_when_disconnect`, `conn_client_version`, `conn_script_version`, `conn_game_version`, `conn_status`, `conn_how_disconnect`) VALUES + (226, 3, 0, '', 0, 1613872777, 0, '0.0.0', '1.0', '9', 0, 0); +INSERT INTO `conn_main` (`conn_id`, `conn_server`, `conn_auth`, `conn_name`, `conn_ip`, `conn_when_connect`, `conn_when_disconnect`, `conn_client_version`, `conn_script_version`, `conn_game_version`, `conn_status`, `conn_how_disconnect`) VALUES + (227, 3, 0, '', 0, 1613882484, 0, '0.0.0', '1.0', '9', 0, 0); +INSERT INTO `conn_main` (`conn_id`, `conn_server`, `conn_auth`, `conn_name`, `conn_ip`, `conn_when_connect`, `conn_when_disconnect`, `conn_client_version`, `conn_script_version`, `conn_game_version`, `conn_status`, `conn_how_disconnect`) VALUES + (228, 3, 0, '', 0, 1613987977, 0, '0.0.0', '1.0', '9', 0, 0); +INSERT INTO `conn_main` (`conn_id`, `conn_server`, `conn_auth`, `conn_name`, `conn_ip`, `conn_when_connect`, `conn_when_disconnect`, `conn_client_version`, `conn_script_version`, `conn_game_version`, `conn_status`, `conn_how_disconnect`) VALUES + (229, 3, 0, '', 0, 1613988209, 0, '0.0.0', '1.0', '9', 0, 0); +INSERT INTO `conn_main` (`conn_id`, `conn_server`, `conn_auth`, `conn_name`, `conn_ip`, `conn_when_connect`, `conn_when_disconnect`, `conn_client_version`, `conn_script_version`, `conn_game_version`, `conn_status`, `conn_how_disconnect`) VALUES + (230, 3, 0, '', 0, 1613988209, 0, '0.0.0', '1.0', '9', 0, 0); +INSERT INTO `conn_main` (`conn_id`, `conn_server`, `conn_auth`, `conn_name`, `conn_ip`, `conn_when_connect`, `conn_when_disconnect`, `conn_client_version`, `conn_script_version`, `conn_game_version`, `conn_status`, `conn_how_disconnect`) VALUES + (231, 4, 0, '', 0, 1614002216, 0, '0.0.0', '1.0', '4', 0, 0); +INSERT INTO `conn_main` (`conn_id`, `conn_server`, `conn_auth`, `conn_name`, `conn_ip`, `conn_when_connect`, `conn_when_disconnect`, `conn_client_version`, `conn_script_version`, `conn_game_version`, `conn_status`, `conn_how_disconnect`) VALUES + (232, 4, 0, '', 0, 1614002275, 0, '0.0.0', '1.0', '4', 0, 0); +INSERT INTO `conn_main` (`conn_id`, `conn_server`, `conn_auth`, `conn_name`, `conn_ip`, `conn_when_connect`, `conn_when_disconnect`, `conn_client_version`, `conn_script_version`, `conn_game_version`, `conn_status`, `conn_how_disconnect`) VALUES + (233, 4, 0, '', 0, 1614002341, 0, '0.0.0', '1.0', '4', 0, 0); +INSERT INTO `conn_main` (`conn_id`, `conn_server`, `conn_auth`, `conn_name`, `conn_ip`, `conn_when_connect`, `conn_when_disconnect`, `conn_client_version`, `conn_script_version`, `conn_game_version`, `conn_status`, `conn_how_disconnect`) VALUES + (234, 4, 0, '', 0, 1614002410, 0, '0.0.0', '1.0', '4', 0, 0); +INSERT INTO `conn_main` (`conn_id`, `conn_server`, `conn_auth`, `conn_name`, `conn_ip`, `conn_when_connect`, `conn_when_disconnect`, `conn_client_version`, `conn_script_version`, `conn_game_version`, `conn_status`, `conn_how_disconnect`) VALUES + (235, 4, 0, '', 0, 1614002453, 0, '0.0.0', '1.0', '4', 0, 0); +INSERT INTO `conn_main` (`conn_id`, `conn_server`, `conn_auth`, `conn_name`, `conn_ip`, `conn_when_connect`, `conn_when_disconnect`, `conn_client_version`, `conn_script_version`, `conn_game_version`, `conn_status`, `conn_how_disconnect`) VALUES + (236, 4, 0, '', 0, 1614002512, 0, '0.0.0', '1.0', '4', 0, 0); +INSERT INTO `conn_main` (`conn_id`, `conn_server`, `conn_auth`, `conn_name`, `conn_ip`, `conn_when_connect`, `conn_when_disconnect`, `conn_client_version`, `conn_script_version`, `conn_game_version`, `conn_status`, `conn_how_disconnect`) VALUES + (237, 4, 0, '', 0, 1614002535, 0, '0.0.0', '1.0', '4', 0, 0); +INSERT INTO `conn_main` (`conn_id`, `conn_server`, `conn_auth`, `conn_name`, `conn_ip`, `conn_when_connect`, `conn_when_disconnect`, `conn_client_version`, `conn_script_version`, `conn_game_version`, `conn_status`, `conn_how_disconnect`) VALUES + (238, 4, 0, '', 0, 1614002665, 0, '0.0.0', '1.0', '4', 0, 0); +INSERT INTO `conn_main` (`conn_id`, `conn_server`, `conn_auth`, `conn_name`, `conn_ip`, `conn_when_connect`, `conn_when_disconnect`, `conn_client_version`, `conn_script_version`, `conn_game_version`, `conn_status`, `conn_how_disconnect`) VALUES + (239, 4, 0, '', 0, 1614002897, 0, '0.0.0', '1.0', '4', 0, 0); +INSERT INTO `conn_main` (`conn_id`, `conn_server`, `conn_auth`, `conn_name`, `conn_ip`, `conn_when_connect`, `conn_when_disconnect`, `conn_client_version`, `conn_script_version`, `conn_game_version`, `conn_status`, `conn_how_disconnect`) VALUES + (240, 4, 0, '', 0, 1614003009, 0, '0.0.0', '1.0', '4', 0, 0); +INSERT INTO `conn_main` (`conn_id`, `conn_server`, `conn_auth`, `conn_name`, `conn_ip`, `conn_when_connect`, `conn_when_disconnect`, `conn_client_version`, `conn_script_version`, `conn_game_version`, `conn_status`, `conn_how_disconnect`) VALUES + (241, 4, 0, '', 0, 1614003402, 0, '0.0.0', '1.0', '4', 0, 0); +INSERT INTO `conn_main` (`conn_id`, `conn_server`, `conn_auth`, `conn_name`, `conn_ip`, `conn_when_connect`, `conn_when_disconnect`, `conn_client_version`, `conn_script_version`, `conn_game_version`, `conn_status`, `conn_how_disconnect`) VALUES + (242, 4, 0, '', 0, 1614003451, 0, '0.0.0', '1.0', '4', 0, 0); +INSERT INTO `conn_main` (`conn_id`, `conn_server`, `conn_auth`, `conn_name`, `conn_ip`, `conn_when_connect`, `conn_when_disconnect`, `conn_client_version`, `conn_script_version`, `conn_game_version`, `conn_status`, `conn_how_disconnect`) VALUES + (243, 4, 0, '', 0, 1614003461, 0, '0.0.0', '1.0', '4', 0, 0); +INSERT INTO `conn_main` (`conn_id`, `conn_server`, `conn_auth`, `conn_name`, `conn_ip`, `conn_when_connect`, `conn_when_disconnect`, `conn_client_version`, `conn_script_version`, `conn_game_version`, `conn_status`, `conn_how_disconnect`) VALUES + (244, 4, 0, '', 0, 1614003484, 0, '0.0.0', '1.0', '4', 0, 0); +INSERT INTO `conn_main` (`conn_id`, `conn_server`, `conn_auth`, `conn_name`, `conn_ip`, `conn_when_connect`, `conn_when_disconnect`, `conn_client_version`, `conn_script_version`, `conn_game_version`, `conn_status`, `conn_how_disconnect`) VALUES + (245, 4, 0, '', 0, 1614004166, 0, '0.0.0', '1.0', '4', 0, 0); +INSERT INTO `conn_main` (`conn_id`, `conn_server`, `conn_auth`, `conn_name`, `conn_ip`, `conn_when_connect`, `conn_when_disconnect`, `conn_client_version`, `conn_script_version`, `conn_game_version`, `conn_status`, `conn_how_disconnect`) VALUES + (246, 4, 0, '', 0, 1614004169, 0, '0.0.0', '1.0', '4', 0, 0); +INSERT INTO `conn_main` (`conn_id`, `conn_server`, `conn_auth`, `conn_name`, `conn_ip`, `conn_when_connect`, `conn_when_disconnect`, `conn_client_version`, `conn_script_version`, `conn_game_version`, `conn_status`, `conn_how_disconnect`) VALUES + (247, 1, 0, '', 0, 1614041180, 0, '0.0.0', '1.0', '1', 0, 0); +INSERT INTO `conn_main` (`conn_id`, `conn_server`, `conn_auth`, `conn_name`, `conn_ip`, `conn_when_connect`, `conn_when_disconnect`, `conn_client_version`, `conn_script_version`, `conn_game_version`, `conn_status`, `conn_how_disconnect`) VALUES + (248, 4, 0, '', 0, 1614041208, 0, '0.0.0', '1.0', '4', 0, 0); +INSERT INTO `conn_main` (`conn_id`, `conn_server`, `conn_auth`, `conn_name`, `conn_ip`, `conn_when_connect`, `conn_when_disconnect`, `conn_client_version`, `conn_script_version`, `conn_game_version`, `conn_status`, `conn_how_disconnect`) VALUES + (249, 4, 0, '', 0, 1614041316, 0, '0.0.0', '1.0', '4', 0, 0); +INSERT INTO `conn_main` (`conn_id`, `conn_server`, `conn_auth`, `conn_name`, `conn_ip`, `conn_when_connect`, `conn_when_disconnect`, `conn_client_version`, `conn_script_version`, `conn_game_version`, `conn_status`, `conn_how_disconnect`) VALUES + (250, 4, 0, '', 0, 1614041829, 0, '0.0.0', '1.0', '4', 0, 0); +INSERT INTO `conn_main` (`conn_id`, `conn_server`, `conn_auth`, `conn_name`, `conn_ip`, `conn_when_connect`, `conn_when_disconnect`, `conn_client_version`, `conn_script_version`, `conn_game_version`, `conn_status`, `conn_how_disconnect`) VALUES + (251, 4, 0, '', 0, 1614041925, 0, '0.0.0', '1.0', '4', 0, 0); +INSERT INTO `conn_main` (`conn_id`, `conn_server`, `conn_auth`, `conn_name`, `conn_ip`, `conn_when_connect`, `conn_when_disconnect`, `conn_client_version`, `conn_script_version`, `conn_game_version`, `conn_status`, `conn_how_disconnect`) VALUES + (252, 4, 0, '', 0, 1614041970, 0, '0.0.0', '1.0', '4', 0, 0); +INSERT INTO `conn_main` (`conn_id`, `conn_server`, `conn_auth`, `conn_name`, `conn_ip`, `conn_when_connect`, `conn_when_disconnect`, `conn_client_version`, `conn_script_version`, `conn_game_version`, `conn_status`, `conn_how_disconnect`) VALUES + (253, 3, 0, '', 0, 1614050071, 0, '0.0.0', '1.0', '9', 0, 0); +INSERT INTO `conn_main` (`conn_id`, `conn_server`, `conn_auth`, `conn_name`, `conn_ip`, `conn_when_connect`, `conn_when_disconnect`, `conn_client_version`, `conn_script_version`, `conn_game_version`, `conn_status`, `conn_how_disconnect`) VALUES + (254, 3, 0, '', 0, 1614050222, 0, '0.0.0', '1.0', '9', 0, 0); +INSERT INTO `conn_main` (`conn_id`, `conn_server`, `conn_auth`, `conn_name`, `conn_ip`, `conn_when_connect`, `conn_when_disconnect`, `conn_client_version`, `conn_script_version`, `conn_game_version`, `conn_status`, `conn_how_disconnect`) VALUES + (255, 3, 0, '', 0, 1614050384, 0, '0.0.0', '1.0', '9', 0, 0); +INSERT INTO `conn_main` (`conn_id`, `conn_server`, `conn_auth`, `conn_name`, `conn_ip`, `conn_when_connect`, `conn_when_disconnect`, `conn_client_version`, `conn_script_version`, `conn_game_version`, `conn_status`, `conn_how_disconnect`) VALUES + (256, 3, 0, '', 0, 1614050384, 0, '0.0.0', '1.0', '9', 0, 0); +INSERT INTO `conn_main` (`conn_id`, `conn_server`, `conn_auth`, `conn_name`, `conn_ip`, `conn_when_connect`, `conn_when_disconnect`, `conn_client_version`, `conn_script_version`, `conn_game_version`, `conn_status`, `conn_how_disconnect`) VALUES + (257, 3, 0, '', 0, 1614050405, 0, '0.0.0', '1.0', '10', 0, 0); +INSERT INTO `conn_main` (`conn_id`, `conn_server`, `conn_auth`, `conn_name`, `conn_ip`, `conn_when_connect`, `conn_when_disconnect`, `conn_client_version`, `conn_script_version`, `conn_game_version`, `conn_status`, `conn_how_disconnect`) VALUES + (258, 3, 0, '', 0, 1614051208, 0, '0.0.0', '1.0', '10', 0, 0); +INSERT INTO `conn_main` (`conn_id`, `conn_server`, `conn_auth`, `conn_name`, `conn_ip`, `conn_when_connect`, `conn_when_disconnect`, `conn_client_version`, `conn_script_version`, `conn_game_version`, `conn_status`, `conn_how_disconnect`) VALUES + (259, 3, 0, '', 0, 1614051218, 0, '0.0.0', '1.0', '9', 0, 0); +INSERT INTO `conn_main` (`conn_id`, `conn_server`, `conn_auth`, `conn_name`, `conn_ip`, `conn_when_connect`, `conn_when_disconnect`, `conn_client_version`, `conn_script_version`, `conn_game_version`, `conn_status`, `conn_how_disconnect`) VALUES + (260, 3, 0, '', 0, 1614051348, 0, '0.0.0', '1.0', '10', 0, 0); +INSERT INTO `conn_main` (`conn_id`, `conn_server`, `conn_auth`, `conn_name`, `conn_ip`, `conn_when_connect`, `conn_when_disconnect`, `conn_client_version`, `conn_script_version`, `conn_game_version`, `conn_status`, `conn_how_disconnect`) VALUES + (261, 3, 0, '', 0, 1614051373, 0, '0.0.0', '1.0', '9', 0, 0); +INSERT INTO `conn_main` (`conn_id`, `conn_server`, `conn_auth`, `conn_name`, `conn_ip`, `conn_when_connect`, `conn_when_disconnect`, `conn_client_version`, `conn_script_version`, `conn_game_version`, `conn_status`, `conn_how_disconnect`) VALUES + (262, 3, 0, '', 0, 1614051463, 0, '0.0.0', '1.0', '9', 0, 0); +INSERT INTO `conn_main` (`conn_id`, `conn_server`, `conn_auth`, `conn_name`, `conn_ip`, `conn_when_connect`, `conn_when_disconnect`, `conn_client_version`, `conn_script_version`, `conn_game_version`, `conn_status`, `conn_how_disconnect`) VALUES + (263, 3, 0, '', 0, 1614051960, 0, '0.0.0', '1.0', '10', 0, 0); +INSERT INTO `conn_main` (`conn_id`, `conn_server`, `conn_auth`, `conn_name`, `conn_ip`, `conn_when_connect`, `conn_when_disconnect`, `conn_client_version`, `conn_script_version`, `conn_game_version`, `conn_status`, `conn_how_disconnect`) VALUES + (264, 3, 0, '', 0, 1614052027, 0, '0.0.0', '1.0', '10', 0, 0); +INSERT INTO `conn_main` (`conn_id`, `conn_server`, `conn_auth`, `conn_name`, `conn_ip`, `conn_when_connect`, `conn_when_disconnect`, `conn_client_version`, `conn_script_version`, `conn_game_version`, `conn_status`, `conn_how_disconnect`) VALUES + (265, 3, 0, '', 0, 1614052027, 0, '0.0.0', '1.0', '10', 0, 0); +INSERT INTO `conn_main` (`conn_id`, `conn_server`, `conn_auth`, `conn_name`, `conn_ip`, `conn_when_connect`, `conn_when_disconnect`, `conn_client_version`, `conn_script_version`, `conn_game_version`, `conn_status`, `conn_how_disconnect`) VALUES + (266, 1, 0, '', 0, 1614363829, 0, '0.0.0', '1.0', '1', 0, 0); +INSERT INTO `conn_main` (`conn_id`, `conn_server`, `conn_auth`, `conn_name`, `conn_ip`, `conn_when_connect`, `conn_when_disconnect`, `conn_client_version`, `conn_script_version`, `conn_game_version`, `conn_status`, `conn_how_disconnect`) VALUES + (267, 1, 0, '', 0, 1614363936, 0, '0.0.0', '1.0', '1', 0, 0); +INSERT INTO `conn_main` (`conn_id`, `conn_server`, `conn_auth`, `conn_name`, `conn_ip`, `conn_when_connect`, `conn_when_disconnect`, `conn_client_version`, `conn_script_version`, `conn_game_version`, `conn_status`, `conn_how_disconnect`) VALUES + (268, 1, 0, '', 0, 1614364033, 0, '0.0.0', '1.0', '1', 0, 0); +INSERT INTO `conn_main` (`conn_id`, `conn_server`, `conn_auth`, `conn_name`, `conn_ip`, `conn_when_connect`, `conn_when_disconnect`, `conn_client_version`, `conn_script_version`, `conn_game_version`, `conn_status`, `conn_how_disconnect`) VALUES + (269, 1, 0, '', 0, 1614364646, 0, '0.0.0', '1.0', '1', 0, 0); +INSERT INTO `conn_main` (`conn_id`, `conn_server`, `conn_auth`, `conn_name`, `conn_ip`, `conn_when_connect`, `conn_when_disconnect`, `conn_client_version`, `conn_script_version`, `conn_game_version`, `conn_status`, `conn_how_disconnect`) VALUES + (270, 1, 0, '', 0, 1614364767, 0, '0.0.0', '1.0', '1', 0, 0); +INSERT INTO `conn_main` (`conn_id`, `conn_server`, `conn_auth`, `conn_name`, `conn_ip`, `conn_when_connect`, `conn_when_disconnect`, `conn_client_version`, `conn_script_version`, `conn_game_version`, `conn_status`, `conn_how_disconnect`) VALUES + (271, 1, 0, '', 0, 1614365122, 0, '0.0.0', '1.0', '1', 0, 0); +INSERT INTO `conn_main` (`conn_id`, `conn_server`, `conn_auth`, `conn_name`, `conn_ip`, `conn_when_connect`, `conn_when_disconnect`, `conn_client_version`, `conn_script_version`, `conn_game_version`, `conn_status`, `conn_how_disconnect`) VALUES + (272, 1, 0, '', 0, 1614365161, 0, '0.0.0', '1.0', '1', 0, 0); +INSERT INTO `conn_main` (`conn_id`, `conn_server`, `conn_auth`, `conn_name`, `conn_ip`, `conn_when_connect`, `conn_when_disconnect`, `conn_client_version`, `conn_script_version`, `conn_game_version`, `conn_status`, `conn_how_disconnect`) VALUES + (273, 1, 0, '', 0, 1614365271, 0, '0.0.0', '1.0', '1', 0, 0); +INSERT INTO `conn_main` (`conn_id`, `conn_server`, `conn_auth`, `conn_name`, `conn_ip`, `conn_when_connect`, `conn_when_disconnect`, `conn_client_version`, `conn_script_version`, `conn_game_version`, `conn_status`, `conn_how_disconnect`) VALUES + (274, 1, 0, '', 0, 1614369177, 0, '0.0.0', '1.0', '1', 0, 0); +INSERT INTO `conn_main` (`conn_id`, `conn_server`, `conn_auth`, `conn_name`, `conn_ip`, `conn_when_connect`, `conn_when_disconnect`, `conn_client_version`, `conn_script_version`, `conn_game_version`, `conn_status`, `conn_how_disconnect`) VALUES + (275, 1, 0, '', 0, 1614369493, 0, '0.0.0', '1.0', '1', 0, 0); +INSERT INTO `conn_main` (`conn_id`, `conn_server`, `conn_auth`, `conn_name`, `conn_ip`, `conn_when_connect`, `conn_when_disconnect`, `conn_client_version`, `conn_script_version`, `conn_game_version`, `conn_status`, `conn_how_disconnect`) VALUES + (276, 1, 0, '', 0, 1615124526, 0, '0.0.0', '1.0', '1', 0, 0); +INSERT INTO `conn_main` (`conn_id`, `conn_server`, `conn_auth`, `conn_name`, `conn_ip`, `conn_when_connect`, `conn_when_disconnect`, `conn_client_version`, `conn_script_version`, `conn_game_version`, `conn_status`, `conn_how_disconnect`) VALUES + (277, 1, 0, '', 0, 1615124573, 0, '0.0.0', '1.0', '1', 0, 0); +INSERT INTO `conn_main` (`conn_id`, `conn_server`, `conn_auth`, `conn_name`, `conn_ip`, `conn_when_connect`, `conn_when_disconnect`, `conn_client_version`, `conn_script_version`, `conn_game_version`, `conn_status`, `conn_how_disconnect`) VALUES + (278, 1, 0, '', 0, 1615124910, 0, '0.0.0', '1.0', '1', 0, 0); +INSERT INTO `conn_main` (`conn_id`, `conn_server`, `conn_auth`, `conn_name`, `conn_ip`, `conn_when_connect`, `conn_when_disconnect`, `conn_client_version`, `conn_script_version`, `conn_game_version`, `conn_status`, `conn_how_disconnect`) VALUES + (279, 1, 0, '', 0, 1615125019, 0, '0.0.0', '1.0', '1', 0, 0); +INSERT INTO `conn_main` (`conn_id`, `conn_server`, `conn_auth`, `conn_name`, `conn_ip`, `conn_when_connect`, `conn_when_disconnect`, `conn_client_version`, `conn_script_version`, `conn_game_version`, `conn_status`, `conn_how_disconnect`) VALUES + (280, 1, 0, '', 0, 1615125140, 0, '0.0.0', '1.0', '1', 0, 0); +INSERT INTO `conn_main` (`conn_id`, `conn_server`, `conn_auth`, `conn_name`, `conn_ip`, `conn_when_connect`, `conn_when_disconnect`, `conn_client_version`, `conn_script_version`, `conn_game_version`, `conn_status`, `conn_how_disconnect`) VALUES + (281, 1, 0, '', 0, 1615127090, 0, '0.0.0', '1.0', '1', 0, 0); +INSERT INTO `conn_main` (`conn_id`, `conn_server`, `conn_auth`, `conn_name`, `conn_ip`, `conn_when_connect`, `conn_when_disconnect`, `conn_client_version`, `conn_script_version`, `conn_game_version`, `conn_status`, `conn_how_disconnect`) VALUES + (282, 1, 0, '', 0, 1615134125, 0, '0.0.0', '1.0', '1', 0, 0); +INSERT INTO `conn_main` (`conn_id`, `conn_server`, `conn_auth`, `conn_name`, `conn_ip`, `conn_when_connect`, `conn_when_disconnect`, `conn_client_version`, `conn_script_version`, `conn_game_version`, `conn_status`, `conn_how_disconnect`) VALUES + (283, 1, 0, '', 0, 1615134679, 0, '0.0.0', '1.0', '1', 0, 0); +INSERT INTO `conn_main` (`conn_id`, `conn_server`, `conn_auth`, `conn_name`, `conn_ip`, `conn_when_connect`, `conn_when_disconnect`, `conn_client_version`, `conn_script_version`, `conn_game_version`, `conn_status`, `conn_how_disconnect`) VALUES + (284, 1, 0, '', 0, 1615136696, 0, '0.0.0', '1.0', '1', 0, 0); +INSERT INTO `conn_main` (`conn_id`, `conn_server`, `conn_auth`, `conn_name`, `conn_ip`, `conn_when_connect`, `conn_when_disconnect`, `conn_client_version`, `conn_script_version`, `conn_game_version`, `conn_status`, `conn_how_disconnect`) VALUES + (285, 1, 0, '', 0, 1615147765, 0, '0.0.0', '1.0', '1', 0, 0); +INSERT INTO `conn_main` (`conn_id`, `conn_server`, `conn_auth`, `conn_name`, `conn_ip`, `conn_when_connect`, `conn_when_disconnect`, `conn_client_version`, `conn_script_version`, `conn_game_version`, `conn_status`, `conn_how_disconnect`) VALUES + (286, 1, 0, '', 0, 1615207053, 0, '0.0.0', '1.0', '1', 0, 0); +INSERT INTO `conn_main` (`conn_id`, `conn_server`, `conn_auth`, `conn_name`, `conn_ip`, `conn_when_connect`, `conn_when_disconnect`, `conn_client_version`, `conn_script_version`, `conn_game_version`, `conn_status`, `conn_how_disconnect`) VALUES + (287, 1, 0, '', 0, 1615208045, 0, '0.0.0', '1.0', '1', 0, 0); +INSERT INTO `conn_main` (`conn_id`, `conn_server`, `conn_auth`, `conn_name`, `conn_ip`, `conn_when_connect`, `conn_when_disconnect`, `conn_client_version`, `conn_script_version`, `conn_game_version`, `conn_status`, `conn_how_disconnect`) VALUES + (288, 1, 0, '', 0, 1615208149, 0, '0.0.0', '1.0', '1', 0, 0); +INSERT INTO `conn_main` (`conn_id`, `conn_server`, `conn_auth`, `conn_name`, `conn_ip`, `conn_when_connect`, `conn_when_disconnect`, `conn_client_version`, `conn_script_version`, `conn_game_version`, `conn_status`, `conn_how_disconnect`) VALUES + (289, 1, 0, '', 0, 1615208274, 0, '0.0.0', '1.0', '1', 0, 0); +INSERT INTO `conn_main` (`conn_id`, `conn_server`, `conn_auth`, `conn_name`, `conn_ip`, `conn_when_connect`, `conn_when_disconnect`, `conn_client_version`, `conn_script_version`, `conn_game_version`, `conn_status`, `conn_how_disconnect`) VALUES + (290, 1, 0, '', 0, 1615208373, 0, '0.0.0', '1.0', '1', 0, 0); +INSERT INTO `conn_main` (`conn_id`, `conn_server`, `conn_auth`, `conn_name`, `conn_ip`, `conn_when_connect`, `conn_when_disconnect`, `conn_client_version`, `conn_script_version`, `conn_game_version`, `conn_status`, `conn_how_disconnect`) VALUES + (291, 1, 0, '', 0, 1615208487, 0, '0.0.0', '1.0', '1', 0, 0); +INSERT INTO `conn_main` (`conn_id`, `conn_server`, `conn_auth`, `conn_name`, `conn_ip`, `conn_when_connect`, `conn_when_disconnect`, `conn_client_version`, `conn_script_version`, `conn_game_version`, `conn_status`, `conn_how_disconnect`) VALUES + (292, 1, 0, '', 0, 1615208839, 0, '0.0.0', '1.0', '1', 0, 0); +INSERT INTO `conn_main` (`conn_id`, `conn_server`, `conn_auth`, `conn_name`, `conn_ip`, `conn_when_connect`, `conn_when_disconnect`, `conn_client_version`, `conn_script_version`, `conn_game_version`, `conn_status`, `conn_how_disconnect`) VALUES + (293, 1, 0, '', 0, 1615209668, 0, '0.0.0', '1.0', '1', 0, 0); +/*!40000 ALTER TABLE `conn_main` ENABLE KEYS */; + +-- Dumping structure for table gtac_main.error_main +CREATE TABLE IF NOT EXISTS `error_main` ( + `error_id` int(11) NOT NULL AUTO_INCREMENT, + `error_server` int(11) NOT NULL DEFAULT '0', + `error_when_added` bigint(20) NOT NULL DEFAULT '0', + `error_script_ver` varchar(16) NOT NULL DEFAULT '0.0', + `error_module` int(11) NOT NULL DEFAULT '0', + `error_file` text NOT NULL, + `error_line` int(11) NOT NULL DEFAULT '0', + `error_locals` text NOT NULL, + `error_func` varchar(128) NOT NULL DEFAULT 'Unknown', + PRIMARY KEY (`error_id`) +) ENGINE=InnoDB DEFAULT CHARSET=latin1 COMMENT='Error Reports'; + +-- Dumping data for table gtac_main.error_main: ~0 rows (approximately) +/*!40000 ALTER TABLE `error_main` DISABLE KEYS */; +/*!40000 ALTER TABLE `error_main` ENABLE KEYS */; + +-- Dumping structure for table gtac_main.house_main +CREATE TABLE IF NOT EXISTS `house_main` ( + `house_id` int(11) NOT NULL AUTO_INCREMENT, + `house_server` int(11) NOT NULL DEFAULT '0', + `house_description` varchar(64) CHARACTER SET utf8 COLLATE utf8_unicode_ci NOT NULL DEFAULT 'Unnamed', + `house_owner_type` int(11) NOT NULL DEFAULT '0', + `house_owner_id` int(11) NOT NULL DEFAULT '0', + `house_locked` tinyint(1) NOT NULL DEFAULT '0', + `house_buy_price` int(11) NOT NULL DEFAULT '0', + `house_rent_price` int(11) NOT NULL DEFAULT '0', + `house_renter` int(11) NOT NULL DEFAULT '0', + `house_entrance_pos_x` float NOT NULL DEFAULT '0', + `house_entrance_pos_y` float NOT NULL DEFAULT '0', + `house_entrance_pos_z` float NOT NULL DEFAULT '0', + `house_entrance_rot_z` float NOT NULL DEFAULT '0', + `house_entrance_int` smallint(6) NOT NULL DEFAULT '0', + `house_entrance_vw` int(11) NOT NULL DEFAULT '0', + `house_entrance_pickup` int(11) NOT NULL DEFAULT '0', + `house_entrance_blip` int(11) NOT NULL DEFAULT '-1', + `house_exit_pos_x` float NOT NULL DEFAULT '0', + `house_exit_pos_y` float NOT NULL DEFAULT '0', + `house_exit_pos_z` float NOT NULL DEFAULT '0', + `house_exit_rot_z` float NOT NULL DEFAULT '0', + `house_exit_int` int(11) NOT NULL DEFAULT '0', + `house_exit_vw` int(11) NOT NULL DEFAULT '0', + `house_exit_pickup` int(11) NOT NULL DEFAULT '0', + `house_exit_blip` int(11) NOT NULL DEFAULT '0', + `house_has_interior` tinyint(1) NOT NULL DEFAULT '0', + PRIMARY KEY (`house_id`) USING BTREE, + KEY `house_server` (`house_server`), + KEY `house_owner` (`house_owner_type`,`house_owner_id`), + CONSTRAINT `fk_house_server` FOREIGN KEY (`house_server`) REFERENCES `svr_main` (`svr_id`) ON DELETE CASCADE ON UPDATE CASCADE +) ENGINE=InnoDB AUTO_INCREMENT=2235 DEFAULT CHARSET=latin1 COMMENT='Houses'; + +-- Dumping data for table gtac_main.house_main: ~2,211 rows (approximately) +/*!40000 ALTER TABLE `house_main` DISABLE KEYS */; +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1, 4, 'Madd Doggs House', 0, 0, 0, 5250000, 0, 0, 1298.55, -798.18, 84.14, 0, 0, 0, 0, -1, 1298.81, -796.66, 1084.01, 0, 5, 101, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (2, 4, 'Small Cottage', 0, 0, 0, 25000, 0, 0, -418.65, -1759.54, 6.21, 0, 0, 0, 0, -1, 244.41, 305.03, 999.15, 0, 1, 102, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (3, 4, 'Mexican Style House', 0, 0, 0, 350000, 0, 0, 657.22, -1652.65, 15.4, 0, 0, 0, 0, -1, 2365.27, -1135.59, 1050.88, 0, 8, 103, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (4, 4, 'Mexican Style House', 0, 0, 0, 350000, 0, 0, 693.76, -1645.79, 4.09, 0, 0, 0, 0, -1, 2365.27, -1135.59, 1050.88, 0, 8, 104, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (5, 4, 'Mexican Style House', 0, 0, 0, 350000, 0, 0, 693.57, -1705.87, 3.81, 0, 0, 0, 0, -1, 2365.27, -1135.59, 1050.88, 0, 8, 105, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (6, 4, 'Mexican Style House', 0, 0, 0, 350000, 0, 0, 766.9, -1606.18, 13.8, 0, 0, 0, 0, -1, 2365.27, -1135.59, 1050.88, 0, 8, 106, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (7, 4, 'Mexican Style House', 0, 0, 0, 350000, 0, 0, 768.07, -1655.99, 5.6, 0, 0, 0, 0, -1, 2365.27, -1135.59, 1050.88, 0, 8, 107, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (8, 4, 'Mexican Style House', 0, 0, 0, 350000, 0, 0, 769.22, -1696.74, 5.15, 0, 0, 0, 0, -1, 2365.27, -1135.59, 1050.88, 0, 8, 108, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (9, 4, 'Mexican Style House', 0, 0, 0, 350000, 0, 0, 769.2, -1745.85, 13.07, 0, 0, 0, 0, -1, 2365.27, -1135.59, 1050.88, 0, 8, 109, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (10, 4, 'Mexican Style House', 0, 0, 0, 350000, 0, 0, 653.58, -1714, 14.76, 0, 0, 0, 0, -1, 2365.27, -1135.59, 1050.88, 0, 8, 110, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (11, 4, 'Mexican Style House', 0, 0, 0, 350000, 0, 0, 1906.04, -1112.94, 26.66, 0, 0, 0, 0, -1, 2365.27, -1135.59, 1050.88, 0, 8, 111, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (12, 4, 'Mexican Style House', 0, 0, 0, 350000, 0, 0, 1939.23, -1114.51, 27.45, 0, 0, 0, 0, -1, 2365.27, -1135.59, 1050.88, 0, 8, 112, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (13, 4, 'Mexican Style House', 0, 0, 0, 350000, 0, 0, 1999.97, -1114.05, 27.12, 0, 0, 0, 0, -1, 2365.27, -1135.59, 1050.88, 0, 8, 113, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (14, 4, 'Mexican Style House', 0, 0, 0, 350000, 0, 0, 2022.92, -1120.26, 26.42, 0, 0, 0, 0, -1, 2365.27, -1135.59, 1050.88, 0, 8, 114, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (15, 4, 'Mexican Style House', 0, 0, 0, 350000, 0, 0, 2095.33, -1145.13, 26.59, 0, 0, 0, 0, -1, 2365.27, -1135.59, 1050.88, 0, 8, 115, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (16, 4, 'Mexican Style House', 0, 0, 0, 350000, 0, 0, 2092.24, -1166.36, 26.58, 0, 0, 0, 0, -1, 2365.27, -1135.59, 1050.88, 0, 8, 116, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (17, 4, 'Mexican Style House', 0, 0, 0, 350000, 0, 0, 793.99, -1707.45, 14.03, 0, 0, 0, 0, -1, 2365.27, -1135.59, 1050.88, 0, 8, 117, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (18, 4, 'Simple House', 0, 0, 0, 65000, 0, 0, 1886.26, -1113.66, 26.27, 0, 0, 0, 0, -1, 260.77, 1237.26, 1084.25, 0, 9, 118, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (19, 4, 'Simple House', 0, 0, 0, 65000, 100, 0, 1921.35, -1115.18, 27.08, 0, 0, 0, 0, -1, 260.77, 1237.26, 1084.25, 0, 9, 119, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (20, 4, 'Simple House', 0, 0, 0, 65000, 400, 0, 1955.4, -1115.35, 27.83, 0, 0, 0, 0, -1, 260.77, 1237.26, 1084.25, 0, 9, 120, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (21, 4, 'Simple House', 0, 0, 0, 65000, 0, 0, 2045.5, -1116.63, 26.36, 0, 0, 0, 0, -1, 260.77, 1237.26, 1084.25, 0, 9, 121, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (22, 4, 'Simple House', 0, 0, 0, 65000, 650, 0, 2093.99, -1122.78, 27.68, 0, 0, 0, 0, -1, 260.77, 1237.26, 1084.25, 0, 9, 122, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (23, 4, 'Simple House', 0, 0, 0, 65000, 0, 0, 2091.67, -1184.45, 27.05, 0, 0, 0, 0, -1, 260.77, 1237.26, 1084.25, 0, 9, 123, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (24, 4, 'Simple House', 0, 0, 0, 65000, 0, 0, 769.05, -1726.35, 13.43, 0, 0, 0, 0, -1, 260.77, 1237.26, 1084.25, 0, 9, 124, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (25, 4, 'Simple House', 0, 0, 0, 65000, 0, 0, 794.89, -1691.99, 14.46, 0, 0, 0, 0, -1, 260.77, 1237.26, 1084.25, 0, 9, 125, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (26, 4, 'Simple House', 0, 0, 0, 65000, 0, 0, 2495.41, -1690.94, 14.76, 0, 0, 0, 0, -1, 2495.97, -1692.08, 1014.74, 0, 3, 126, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (28, 4, 'Simple House', 0, 0, 0, 800000, 0, 0, 2126.68, -1320.68, 26.62, 0, 0, 0, 0, -1, 234.16, 1064.23, 1084.21, 0, 6, 128, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (29, 4, '2 Bedroom House', 0, 0, 0, 100000, 0, 0, 2091.05, -1278.14, 26.17, 0, 0, 0, 0, -1, 2196.53, -1204.18, 1049.02, 0, 6, 129, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (30, 4, '2 Bedroom House', 0, 0, 0, 100000, 0, 0, 2191.64, -1275.82, 25.15, 0, 0, 0, 0, -1, 2196.53, -1204.18, 1049.02, 0, 6, 130, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (31, 4, '2 Bedroom House', 0, 0, 0, 100000, 5, 0, 2229.66, -1241.52, 25.65, 0, 0, 0, 0, -1, 2196.53, -1204.18, 1049.02, 0, 6, 131, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (32, 4, 'Big Living Style', 0, 0, 0, 80000, 0, 0, 2100.94, -1321.8, 25.95, 0, 0, 0, 0, -1, 2269.92, -1210.37, 1047.56, 0, 10, 132, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (33, 4, 'Big Living Style', 0, 0, 0, 80000, 0, 0, 2132.32, -1280.12, 25.89, 0, 0, 0, 0, -1, 2269.92, -1210.37, 1047.56, 0, 10, 133, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (34, 4, 'Big Living Style', 0, 0, 0, 80000, 0, 0, 2250.2, -1280.32, 25.47, 0, 0, 0, 0, -1, 2269.92, -1210.37, 1047.56, 0, 10, 134, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (35, 4, 'Big Living Style', 0, 0, 0, 80000, 1, 0, 2249.92, -1238.89, 25.89, 0, 0, 0, 0, -1, 2269.92, -1210.37, 1047.56, 0, 10, 135, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (36, 4, 'Big Living Style', 0, 0, 0, 80000, 0, 0, 2153.82, -1243.53, 25.36, 0, 0, 0, 0, -1, 2269.92, -1210.37, 1047.56, 0, 10, 136, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (37, 4, 'Big Living Style', 0, 0, 0, 80000, 0, 0, 2110.99, -1244.32, 25.85, 0, 0, 0, 0, -1, 2269.92, -1210.37, 1047.56, 0, 10, 137, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (38, 4, 'Small House', 0, 0, 0, 45000, 5000, 0, 2148.55, -1319.82, 25.74, 0, 0, 0, 0, -1, 2282.9, -1139.99, 1050.89, 0, 11, 138, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (39, 4, 'Small House', 0, 0, 0, 45000, 0, 0, 2150.21, -1285.45, 24.19, 0, 0, 0, 0, -1, 2282.9, -1139.99, 1050.89, 0, 11, 139, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (40, 4, 'Small House', 0, 0, 0, 45000, 0, 0, 2230.1, -1280.56, 25.36, 0, 0, 0, 0, -1, 2282.9, -1139.99, 1050.89, 0, 11, 140, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (41, 4, 'Small House', 0, 0, 0, 45000, 0, 0, 2209.74, -1239.99, 24.14, 0, 0, 0, 0, -1, 2282.9, -1139.99, 1050.89, 0, 11, 141, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (42, 4, 'Minor Manor', 0, 0, 0, 50000, 0, 0, 2133.39, -1232.84, 24.42, 0, 0, 0, 0, -1, 2333.12, -1077.13, 1049.02, 0, 6, 142, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (43, 4, 'Minor Manor', 0, 0, 0, 800000, 0, 0, 2148.73, -1484.85, 26.62, 0, 0, 0, 0, -1, 234.16, 1064.23, 1084.21, 0, 6, 143, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (44, 4, 'Simple House', 0, 0, 0, 65000, 0, 0, 2023.31, -1053.15, 25.59, 0, 0, 0, 0, -1, 260.77, 1237.26, 1084.25, 0, 9, 144, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (45, 4, 'Simple House', 0, 0, 0, 65000, 0, 0, 2036.12, -1059.42, 25.65, 0, 0, 0, 0, -1, 260.77, 1237.26, 1084.25, 0, 9, 145, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (46, 4, 'Simple House', 0, 0, 0, 65000, 0, 0, 2050.9, -1065.83, 25.78, 0, 0, 0, 0, -1, 260.77, 1237.26, 1084.25, 0, 9, 146, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (47, 4, 'Small House', 0, 0, 0, 45000, 0, 0, 2150.76, -1400.63, 25.79, 0, 0, 0, 0, -1, 2282.9, -1139.99, 1050.89, 0, 11, 147, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (48, 4, 'Small House', 0, 0, 0, 45000, 0, 0, 2151.7, -1446.33, 25.77, 0, 0, 0, 0, -1, 2282.9, -1139.99, 1050.89, 0, 11, 148, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (49, 4, 'Small House', 0, 0, 0, 45000, 0, 0, 2190.69, -1487.68, 25.77, 0, 0, 0, 0, -1, 2282.9, -1139.99, 1050.89, 0, 11, 149, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (50, 4, 'Small House', 0, 0, 0, 45000, 100, 0, 2196.48, -1404.19, 25.61, 0, 0, 0, 0, -1, 2282.9, -1139.99, 1050.89, 0, 11, 150, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (51, 4, 'Small House', 0, 0, 0, 45000, 200, 0, 2147.69, -1366.65, 25.64, 0, 0, 0, 0, -1, 2282.9, -1139.99, 1050.89, 0, 11, 151, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (52, 4, '2 Bedroom House', 0, 0, 0, 100000, 200, 0, 2188.83, -1419.29, 26.15, 0, 0, 0, 0, -1, 2196.53, -1204.18, 1049.02, 0, 6, 152, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (53, 4, 'Big Living Style', 0, 0, 0, 80000, 1500, 0, 2150.8, -1419.01, 25.92, 0, 0, 0, 0, -1, 2269.92, -1210.37, 1047.56, 0, 10, 153, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (54, 4, 'Big Living Style', 0, 0, 0, 80000, 0, 0, 2190.55, -1470.42, 25.91, 0, 0, 0, 0, -1, 2269.92, -1210.37, 1047.56, 0, 10, 154, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (55, 4, 'Cheap Stuff', 0, 0, 0, 35000, 0, 0, 2149.5, -1433.73, 25.94, 0, 0, 0, 0, -1, 327.91, 1477.79, 1084.43, 0, 15, 155, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (56, 4, 'Cheap Stuff', 0, 0, 0, 25000, 0, 0, 2373.97, -1138.92, 29.05, 0, 0, 0, 0, -1, -68.85, 1351.31, 1080.21, 0, 6, 156, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (57, 4, 'Cheap Stuff', 0, 0, 0, 35000, 0, 0, 2488.07, -1135.61, 39.43, 0, 0, 0, 0, -1, 327.91, 1477.79, 1084.43, 0, 15, 157, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (58, 4, '2 Bedroom House', 0, 0, 0, 100000, 0, 0, 2394.96, -1133.67, 30.71, 0, 0, 0, 0, -1, 2196.53, -1204.18, 1049.02, 0, 6, 158, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (59, 4, 'Hallway House', 0, 0, 0, 70000, 0, 0, 2191.74, -1239.03, 24.15, 0, 0, 0, 0, -1, 260.99, 1284.29, 1080.25, 0, 4, 159, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (60, 4, 'Hallway House', 0, 0, 0, 70000, 0, 0, 2090.73, -1234.89, 25.68, 0, 0, 0, 0, -1, 260.99, 1284.29, 1080.25, 0, 4, 160, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (61, 4, 'Hallway House', 0, 0, 0, 70000, 100, 0, 2207.91, -1281.05, 24.79, 0, 0, 0, 0, -1, 260.99, 1284.29, 1080.25, 0, 4, 161, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (62, 4, 'Hallway House', 0, 0, 0, 70000, 0, 0, 2202.75, -1363.93, 25.86, 0, 0, 0, 0, -1, 260.99, 1284.29, 1080.25, 0, 4, 162, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (63, 4, 'Hallway House', 0, 0, 0, 70000, 0, 0, 2129.66, -1361.94, 25.8, 0, 0, 0, 0, -1, 260.99, 1284.29, 1080.25, 0, 4, 163, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (64, 4, 'Hallway House', 0, 0, 0, 70000, 0, 0, 2146.49, -1470.47, 25.71, 0, 0, 0, 0, -1, 260.99, 1284.29, 1080.25, 0, 4, 164, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (65, 4, 'Hallway House', 0, 0, 0, 70000, 100, 0, 2194.53, -1442.93, 25.74, 0, 0, 0, 0, -1, 260.99, 1284.29, 1080.25, 0, 4, 165, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (66, 4, 'Hallway House', 0, 0, 0, 70000, 0, 0, 2230.44, -1396.88, 24.24, 0, 0, 0, 0, -1, 260.99, 1284.29, 1080.25, 0, 4, 166, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (67, 4, 'Hallway House', 0, 0, 0, 70000, 0, 0, 2243.47, -1396.96, 24.24, 0, 0, 0, 0, -1, 260.99, 1284.29, 1080.25, 0, 4, 167, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (68, 4, 'Hallway House', 0, 0, 0, 70000, 0, 0, 2256.46, -1396.92, 24.24, 0, 0, 0, 0, -1, 260.99, 1284.29, 1080.25, 0, 4, 168, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (69, 4, 'Hallway House', 0, 0, 0, 70000, 0, 0, 2263.89, -1469.58, 24.04, 0, 0, 0, 0, -1, 260.99, 1284.29, 1080.25, 0, 4, 169, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (70, 4, 'Hallway House', 0, 0, 0, 70000, 0, 0, 2247.69, -1469.54, 24.14, 0, 0, 0, 0, -1, 260.99, 1284.29, 1080.25, 0, 4, 170, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (71, 4, 'Hallway House', 0, 0, 0, 70000, 100, 0, 2232.56, -1469.54, 24.25, 0, 0, 0, 0, -1, 260.99, 1284.29, 1080.25, 0, 4, 171, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (72, 4, 'Hallway House', 0, 0, 0, 70000, 0, 0, 2510.35, -1132.66, 41.29, 0, 0, 0, 0, -1, 260.99, 1284.29, 1080.25, 0, 4, 172, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (73, 4, 'Small House', 0, 0, 0, 45000, 0, 0, 2185.15, -1364, 25.82, 0, 0, 0, 0, -1, 2282.9, -1139.99, 1050.89, 0, 11, 173, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (74, 4, 'Light Living', 0, 0, 0, 48000, 0, 0, 2061.06, -1075.35, 25.68, 0, 0, 0, 0, -1, 2218.35, -1076.26, 1050.48, 0, 1, 174, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (75, 4, 'House', 0, 0, 0, 10500, 500, 0, 1959.58, -1070.07, 24.79, 0, 0, 0, 0, -1, 243.98, 304.98, 999.14, 0, 1, 175, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (76, 4, 'House', 0, 0, 0, 10500, 0, 0, 1954.38, -1074.93, 24.79, 0, 0, 0, 0, -1, 243.98, 304.98, 999.14, 0, 1, 176, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (77, 4, 'House', 0, 0, 0, 10500, 0, 0, 1934.04, -1071.51, 24.41, 0, 0, 0, 0, -1, 243.98, 304.98, 999.14, 0, 1, 177, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (78, 4, 'House', 0, 0, 0, 10500, 0, 0, 1939.27, -1066.39, 24.41, 0, 0, 0, 0, -1, 243.98, 304.98, 999.14, 0, 1, 178, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (79, 4, 'House', 0, 0, 0, 10500, 0, 0, 1916.88, -1064.77, 24.12, 0, 0, 0, 0, -1, 243.98, 304.98, 999.14, 0, 1, 179, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (80, 4, 'House', 0, 0, 0, 10500, 0, 0, 1912.61, -1070.55, 24.23, 0, 0, 0, 0, -1, 243.98, 304.98, 999.14, 0, 1, 180, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (81, 4, 'House', 0, 0, 0, 10500, 500, 0, 1896.04, -1064.84, 23.93, 0, 0, 0, 0, -1, 243.98, 304.98, 999.14, 0, 1, 181, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (82, 4, 'House', 0, 0, 0, 10500, 0, 0, 1891.77, -1070.53, 23.93, 0, 0, 0, 0, -1, 243.98, 304.98, 999.14, 0, 1, 182, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (83, 4, 'Light Living', 0, 0, 0, 48000, 5000, 0, 2077.3, -1056.98, 31.34, 0, 0, 0, 0, -1, 2218.35, -1076.26, 1050.48, 0, 1, 183, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (84, 4, 'House', 0, 0, 0, 80000, 0, 0, 2157.15, -1072.39, 40.49, 0, 0, 0, 0, -1, 2237.51, -1081.64, 1049.02, 0, 2, 184, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (85, 4, 'House', 0, 0, 0, 80000, 1000, 0, 2188.76, -1081.51, 43.83, 0, 0, 0, 0, -1, 2237.51, -1081.64, 1049.02, 0, 2, 185, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (86, 4, 'House', 0, 0, 0, 80000, 0, 0, 2207.5, -1100.43, 31.55, 0, 0, 0, 0, -1, 2237.51, -1081.64, 1049.02, 0, 2, 186, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (87, 4, 'House', 0, 0, 0, 1000, 0, 0, 2213.22, -1000.31, 68.23, 0, 0, 0, 0, -1, 140.23, 1366, 1083.85, 0, 5, 187, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (88, 4, 'Little Apartment', 0, 0, 0, 50000, 0, 0, 1283.54, -897.85, 42.87, 0, 0, 0, 0, -1, 328.49, 1480.59, 1084.45, 0, 15, 188, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (89, 4, 'Little Apartment', 0, 0, 0, 50000, 0, 0, 1291.02, -896.89, 42.88, 0, 0, 0, 0, -1, 328.49, 1480.59, 1084.45, 0, 15, 189, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (90, 4, 'Little Apartment', 0, 0, 0, 50000, 0, 0, 1291.02, -896.86, 46.62, 0, 0, 0, 0, -1, 328.49, 1480.59, 1084.45, 0, 15, 190, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (91, 4, 'Little Apartment', 0, 0, 0, 50000, 40, 0, 1283.53, -897.82, 46.62, 0, 0, 0, 0, -1, 328.49, 1480.59, 1084.45, 0, 15, 191, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (92, 4, 'Little Apartment', 0, 0, 0, 50000, 0, 0, 1291.82, -903.07, 46.63, 0, 0, 0, 0, -1, 328.49, 1480.59, 1084.45, 0, 15, 192, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (93, 4, 'Little Apartment', 0, 0, 0, 50000, 100, 0, 1284.36, -903.98, 46.63, 0, 0, 0, 0, -1, 328.49, 1480.59, 1084.45, 0, 15, 193, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (94, 4, 'Little Apartment', 0, 0, 0, 50000, 0, 0, 1284.34, -904.03, 42.88, 0, 0, 0, 0, -1, 328.49, 1480.59, 1084.45, 0, 15, 194, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (95, 4, 'Little Apartment', 0, 0, 0, 50000, 0, 0, 1291.83, -903.03, 42.88, 0, 0, 0, 0, -1, 328.49, 1480.59, 1084.45, 0, 15, 195, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (96, 4, 'Little Apartment', 0, 0, 0, 50000, 0, 0, 1288.34, -873.89, 43.06, 0, 0, 0, 0, -1, 328.49, 1480.59, 1084.45, 0, 15, 196, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (97, 4, 'Little Apartment', 0, 0, 0, 50000, 0, 0, 1280.86, -874.85, 42.93, 0, 0, 0, 0, -1, 328.49, 1480.59, 1084.45, 0, 15, 197, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (98, 4, 'Little Apartment', 0, 0, 0, 50000, 0, 0, 1287.53, -867.68, 43.14, 0, 0, 0, 0, -1, 328.49, 1480.59, 1084.45, 0, 15, 198, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (99, 4, 'Little Apartment', 0, 0, 0, 50000, 0, 0, 1280.08, -868.62, 42.92, 0, 0, 0, 0, -1, 328.49, 1480.59, 1084.45, 0, 15, 199, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (100, 4, 'Little Apartment', 0, 0, 0, 50000, 5000, 0, 1287.53, -867.74, 46.83, 0, 0, 0, 0, -1, 328.49, 1480.59, 1084.45, 0, 15, 200, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (101, 4, 'Little Apartment', 0, 0, 0, 50000, 250, 0, 1280.04, -868.61, 46.83, 0, 0, 0, 0, -1, 328.49, 1480.59, 1084.45, 0, 15, 201, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (102, 4, 'Little Apartment', 0, 0, 0, 50000, 0, 0, 1288.33, -873.82, 46.84, 0, 0, 0, 0, -1, 328.49, 1480.59, 1084.45, 0, 15, 202, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (103, 4, 'Little Apartment', 0, 0, 0, 50000, 0, 0, 1280.86, -874.86, 46.84, 0, 0, 0, 0, -1, 328.49, 1480.59, 1084.45, 0, 15, 203, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (104, 4, 'Little Apartment', 0, 0, 0, 50000, 0, 0, 1249.61, -877.3, 42.88, 0, 0, 0, 0, -1, 328.49, 1480.59, 1084.45, 0, 15, 204, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (105, 4, 'Little Apartment', 0, 0, 0, 50000, 0, 0, 1242.11, -878.23, 42.87, 0, 0, 0, 0, -1, 328.49, 1480.59, 1084.45, 0, 15, 205, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (106, 4, 'Little Apartment', 0, 0, 0, 50000, 0, 0, 1248.8, -871.14, 42.88, 0, 0, 0, 0, -1, 328.49, 1480.59, 1084.45, 0, 15, 206, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (107, 4, 'Little Apartment', 0, 0, 0, 50000, 0, 0, 1241.31, -872.09, 42.88, 0, 0, 0, 0, -1, 328.49, 1480.59, 1084.45, 0, 15, 207, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (108, 4, 'Little Apartment', 0, 0, 0, 50000, 0, 0, 1248.8, -871.15, 46.63, 0, 0, 0, 0, -1, 328.49, 1480.59, 1084.45, 0, 15, 208, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (109, 4, 'Little Apartment', 0, 0, 0, 50000, 0, 0, 1241.3, -872.06, 46.63, 0, 0, 0, 0, -1, 328.49, 1480.59, 1084.45, 0, 15, 209, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (110, 4, 'Little Apartment', 0, 0, 0, 50000, 0, 0, 1249.61, -877.28, 46.64, 0, 0, 0, 0, -1, 328.49, 1480.59, 1084.45, 0, 15, 210, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (111, 4, 'Little Apartment', 0, 0, 0, 50000, 0, 0, 1242.12, -878.22, 46.64, 0, 0, 0, 0, -1, 328.49, 1480.59, 1084.45, 0, 15, 211, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (112, 4, 'Little Apartment', 0, 0, 0, 50000, 0, 0, 1252.88, -901.87, 42.88, 0, 0, 0, 0, -1, 328.49, 1480.59, 1084.45, 0, 15, 212, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (113, 4, 'Little Apartment', 0, 0, 0, 50000, 0, 0, 1245.4, -902.83, 42.88, 0, 0, 0, 0, -1, 328.49, 1480.59, 1084.45, 0, 15, 213, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (114, 4, 'Little Apartment', 0, 0, 0, 50000, 0, 0, 1253.7, -908.06, 42.88, 0, 0, 0, 0, -1, 328.49, 1480.59, 1084.45, 0, 15, 214, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (115, 4, 'Little Apartment', 0, 0, 0, 50000, 0, 0, 1246.24, -909.03, 42.88, 0, 0, 0, 0, -1, 328.49, 1480.59, 1084.45, 0, 15, 215, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (116, 4, 'Little Apartment', 0, 0, 0, 50000, 0, 0, 1246.21, -908.98, 46.6, 0, 0, 0, 0, -1, 328.49, 1480.59, 1084.45, 0, 15, 216, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (117, 4, 'Little Apartment', 0, 0, 0, 50000, 0, 0, 1253.71, -908.1, 46.6, 0, 0, 0, 0, -1, 328.49, 1480.59, 1084.45, 0, 15, 217, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (118, 4, 'Little Apartment', 0, 0, 0, 50000, 0, 0, 1245.4, -902.8, 46.59, 0, 0, 0, 0, -1, 328.49, 1480.59, 1084.45, 0, 15, 218, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (119, 4, 'Little Apartment', 0, 0, 0, 50000, 0, 0, 1252.89, -901.88, 46.59, 0, 0, 0, 0, -1, 328.49, 1480.59, 1084.45, 0, 15, 219, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (120, 4, 'Major Manor', 0, 0, 0, 50000, 0, 0, 1111.5, -976.3, 42.76, 0, 0, 0, 0, -1, 2333.12, -1077.13, 1049.02, 0, 6, 220, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (121, 4, 'Major Manor', 0, 0, 0, 3000000, 0, 0, 1496.99, -687.89, 95.56, 0, 0, 0, 0, -1, 225.7, 1021.44, 1084.01, 0, 7, 221, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (122, 4, 'Major Manor', 0, 0, 0, 3000000, 0, 0, 980.47, -677.26, 121.97, 0, 0, 0, 0, -1, 225.7, 1021.44, 1084.01, 0, 7, 222, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (123, 4, 'Major Manor', 0, 0, 0, 3000000, 0, 0, 251.43, -1220.21, 76.1, 0, 0, 0, 0, -1, 225.7, 1021.44, 1084.01, 0, 7, 223, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (124, 4, 'Fancy Mansion', 0, 0, 0, 1800000, 0, 0, 253.18, -1270.01, 74.42, 0, 0, 0, 0, -1, 140.23, 1366, 1083.85, 0, 5, 224, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (125, 4, 'Major Manor', 0, 0, 0, 1800000, 0, 0, 300.25, -1154.46, 81.39, 0, 0, 0, 0, -1, 140.23, 1366, 1083.85, 0, 5, 225, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (126, 4, 'Major Manor', 0, 0, 0, 1800000, 0, 0, 189.63, -1308.16, 70.24, 0, 0, 0, 0, -1, 140.23, 1366, 1083.85, 0, 5, 226, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (127, 4, 'Major Manor', 0, 0, 0, 3000000, 0, 0, 1122.7, -2036.98, 69.89, 0, 0, 0, 0, -1, 1298.8, -796.9, 1084.01, 0, 5, 227, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (128, 4, 'Major Manor', 0, 0, 0, 800000, 5000, 0, 1981.07, -1682.85, 17.05, 0, 0, 0, 0, -1, 234.16, 1064.23, 1084.21, 0, 6, 228, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (129, 4, 'Minor Manor', 0, 0, 0, 800000, 0, 0, 1980.37, -1718.91, 17.03, 0, 0, 0, 0, -1, 234.16, 1064.23, 1084.21, 0, 6, 229, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (130, 4, 'Idlewood House', 0, 0, 0, 100000, 0, 0, 2015.34, -1732.57, 14.23, 0, 0, 0, 0, -1, 2196.53, -1204.18, 1049.02, 0, 6, 230, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (131, 4, '2 Bedroom House', 0, 0, 0, 100000, 0, 0, 2017.97, -1703.38, 14.23, 0, 0, 0, 0, -1, 2196.53, -1204.18, 1049.02, 0, 6, 231, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (132, 4, 'Small House', 0, 0, 0, 45000, 0, 0, 2067.42, -1731.62, 13.87, 0, 0, 0, 0, -1, 2282.9, -1139.99, 1050.89, 0, 11, 232, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (133, 4, 'Small House', 0, 0, 0, 45000, 0, 0, 2068.06, -1628.89, 13.87, 0, 0, 0, 0, -1, 2282.9, -1139.99, 1050.89, 0, 11, 233, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (134, 4, 'Small House', 0, 0, 0, 45000, 0, 0, 2016.21, -1641.67, 13.78, 0, 0, 0, 0, -1, 2282.9, -1139.99, 1050.89, 0, 11, 234, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (135, 4, 'Cheap Stuff', 0, 0, 0, 35000, 5000, 0, 2015.82, -1716.99, 13.97, 0, 0, 0, 0, -1, 327.91, 1477.79, 1084.43, 0, 15, 235, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (136, 4, 'Cheap Stuff', 0, 0, 0, 35000, 0, 0, 2066.97, -1656.47, 14.07, 0, 0, 0, 0, -1, 327.91, 1477.79, 1084.43, 0, 15, 236, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (137, 4, 'Cheap Stuff', 0, 0, 0, 35000, 0, 0, 2191.58, -1455.88, 25.79, 0, 0, 0, 0, -1, 327.91, 1477.79, 1084.43, 0, 15, 237, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (138, 4, 'Hallway House', 0, 0, 0, 70000, 0, 0, 2067.74, -1643.74, 13.8, 0, 0, 0, 0, -1, 260.99, 1284.29, 1080.25, 0, 4, 238, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (139, 4, 'Hallway House', 0, 0, 0, 70000, 0, 0, 2066.42, -1717.06, 13.8, 0, 0, 0, 0, -1, 260.99, 1284.29, 1080.25, 0, 4, 239, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (140, 4, 'Hallway House', 0, 0, 0, 70000, 0, 0, 2013.31, -1656.37, 13.8, 0, 0, 0, 0, -1, 260.99, 1284.29, 1080.25, 0, 4, 240, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (141, 4, 'Hallway House', 0, 0, 0, 70000, 0, 0, 2017.86, -1629.93, 13.71, 0, 0, 0, 0, -1, 260.99, 1284.29, 1080.25, 0, 4, 241, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (142, 4, 'Low Light Living', 0, 0, 0, 70000, 1, 0, 2065.24, -1703.52, 14.14, 0, 0, 0, 0, -1, -42.58, 1405.59, 1084.42, 0, 8, 242, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (143, 4, 'Fancy Apartment', 0, 0, 0, 20000, 1500, 0, 1969.35, -1705.42, 15.96, 0, 0, 0, 0, -1, 2218.04, -1076.24, 1050.48, 0, 1, 243, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (144, 4, 'Fancy Apartment', 0, 0, 0, 20000, 2000, 0, 1973.28, -1705.26, 15.96, 0, 0, 0, 0, -1, 2218.04, -1076.24, 1050.48, 0, 1, 244, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (145, 4, 'Fancy Apartment', 0, 0, 0, 20000, 100, 0, 1969.4, -1654.77, 15.96, 0, 0, 0, 0, -1, 2218.04, -1076.24, 1050.48, 0, 1, 245, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (146, 4, 'Fancy Apartment', 0, 0, 0, 20000, 0, 0, 1973.36, -1654.67, 15.96, 0, 0, 0, 0, -1, 2218.04, -1076.24, 1050.48, 0, 1, 246, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (147, 4, 'Light Apartment', 0, 0, 0, 20000, 0, 0, 1967.48, -1633.76, 15.96, 0, 0, 0, 0, -1, 2233.68, -1115.06, 1050.88, 0, 5, 247, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (148, 4, 'Light Apartment', 0, 0, 0, 20000, 0, 0, 1972.28, -1633.71, 15.96, 0, 0, 0, 0, -1, 2233.68, -1115.06, 1050.88, 0, 5, 248, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (149, 4, 'Light Apartment', 0, 0, 0, 20000, 50, 0, 1976.04, -1634.06, 16.21, 0, 0, 0, 0, -1, 2233.68, -1115.06, 1050.88, 0, 5, 249, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (150, 4, 'Light Apartment', 0, 0, 0, 20000, 1, 0, 1967.56, -1633.71, 18.56, 0, 0, 0, 0, -1, 2233.68, -1115.06, 1050.88, 0, 5, 250, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (151, 4, 'Light Apartment', 0, 0, 0, 20000, 0, 0, 1972.32, -1633.71, 18.56, 0, 0, 0, 0, -1, 2233.68, -1115.06, 1050.88, 0, 5, 251, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (152, 4, 'Light Apartment', 0, 0, 0, 20000, 50, 0, 1976.13, -1634.05, 18.56, 0, 0, 0, 0, -1, 2233.68, -1115.06, 1050.88, 0, 5, 252, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (153, 4, 'Light Apartment', 0, 0, 0, 20000, 0, 0, 1969.98, -1671.4, 15.96, 0, 0, 0, 0, -1, 2233.68, -1115.06, 1050.88, 0, 5, 253, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (154, 4, 'Light Apartment', 0, 0, 0, 20000, 100, 0, 1974.85, -1671.26, 15.96, 0, 0, 0, 0, -1, 2233.68, -1115.06, 1050.88, 0, 5, 254, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (155, 4, 'Light Apartment', 0, 0, 0, 20000, 5, 0, 1978.75, -1671.54, 16.18, 0, 0, 0, 0, -1, 2233.68, -1115.06, 1050.88, 0, 5, 255, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (156, 4, 'Light Apartment', 0, 0, 0, 20000, 0, 0, 1970.06, -1671.19, 18.54, 0, 0, 0, 0, -1, 2233.68, -1115.06, 1050.88, 0, 5, 256, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (157, 4, 'Light Apartment', 0, 0, 0, 20000, 0, 0, 1974.86, -1671.2, 18.54, 0, 0, 0, 0, -1, 2233.68, -1115.06, 1050.88, 0, 5, 257, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (158, 4, 'Light Apartment', 0, 0, 0, 20000, 0, 0, 1978.74, -1671.51, 18.54, 0, 0, 0, 0, -1, 2233.68, -1115.06, 1050.88, 0, 5, 258, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (159, 4, 'House Ghetto LS Small', 0, 0, 0, 10000, 0, 0, 2082.44, -1085.14, 25.69, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 259, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (160, 4, 'House Ghetto LS Small', 0, 0, 0, 10000, 10, 0, 2075.29, -1081.9, 25.68, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 260, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (161, 4, 'Apartment LS Small', 0, 0, 0, 20000, 500, 0, 2140.68, -1082.55, 25.03, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 261, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (162, 4, 'Apartment LS Small', 0, 0, 0, 20000, 1000, 0, 2145.24, -1084.66, 25.03, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 262, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (163, 4, 'Ghetto Project Apartment LS Small', 0, 0, 0, 2000, 1, 0, 2334.6, -1203.99, 27.98, 0, 0, 0, 0, -1, 243.72, 304.97, 999.14, 0, 1, 263, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (164, 4, 'Ghetto Project Apartment LS Small', 0, 0, 0, 2000, 0, 0, 2324.33, -1218.84, 27.98, 0, 0, 0, 0, -1, 243.72, 304.97, 999.14, 0, 1, 264, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (165, 4, 'Ghetto Project Apartment LS Small', 0, 0, 0, 2000, 0, 0, 2334.65, -1234.66, 27.98, 0, 0, 0, 0, -1, 243.72, 304.97, 999.14, 0, 1, 265, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (166, 4, 'Ghetto Project Apartment LS Small', 0, 0, 0, 2000, 0, 0, 2324.47, -1249.51, 27.98, 0, 0, 0, 0, -1, 243.72, 304.97, 999.14, 0, 1, 266, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (167, 4, 'Ghetto Project Apartment LS Small', 0, 0, 0, 2000, 0, 0, 2334.7, -1266.12, 27.97, 0, 0, 0, 0, -1, 243.72, 304.97, 999.14, 0, 1, 267, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (168, 4, 'Ghetto Project Apartment LS Small', 0, 0, 0, 2000, 0, 0, 2324.44, -1280.97, 27.98, 0, 0, 0, 0, -1, 243.72, 304.97, 999.14, 0, 1, 268, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (169, 4, 'House Ghetto LS Small', 0, 0, 0, 10000, 0, 0, 2427.38, -1135.77, 34.71, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 269, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (170, 4, 'House Ghetto LS Small', 0, 0, 0, 10000, 0, 0, 2467.56, -1200.41, 36.81, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 270, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (171, 4, 'House Ghetto LS Small', 0, 0, 0, 10000, 0, 0, 2492.17, -1239.01, 37.9, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 271, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (172, 4, 'House Ghetto LS Small', 0, 0, 0, 10000, 0, 0, 2494.1, -1224.25, 37.9, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 272, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (173, 4, 'House Ghetto LS Small', 0, 0, 0, 10000, 0, 0, 2472.9, -1238.12, 32.57, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 273, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (174, 4, 'House Ghetto LS Small', 0, 0, 0, 10000, 0, 0, 2474.9, -1223.36, 32.57, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 274, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (175, 4, 'House Ghetto LS Small', 0, 0, 0, 10000, 5000, 0, 2469.18, -1278.36, 30.36, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 275, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (176, 4, 'House Ghetto LS Small', 0, 0, 0, 10000, 0, 0, 2470.37, -1295.52, 30.23, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 276, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (177, 4, 'House Ghetto LS Small', 0, 0, 0, 10000, 5, 0, 2434.8, -1289.29, 25.35, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 277, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (178, 4, 'Medium House Ghetto LS', 0, 0, 0, 12000, 0, 0, 2433.94, -1303.35, 25.32, 0, 0, 0, 0, -1, 328.13, 1477.9, 1084.43, 0, 15, 278, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (179, 4, 'Medium House Ghetto LS', 0, 0, 0, 12000, 0, 0, 2433.93, -1320.68, 25.32, 0, 0, 0, 0, -1, 328.13, 1477.9, 1084.43, 0, 15, 279, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (180, 4, 'Medium House Ghetto LS', 0, 0, 0, 12000, 0, 0, 2439.59, -1338.72, 24.1, 0, 0, 0, 0, -1, 328.13, 1477.9, 1084.43, 0, 15, 280, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (181, 4, 'Medium House Ghetto LS', 0, 0, 0, 12000, 0, 0, 2439.59, -1357.14, 24.1, 0, 0, 0, 0, -1, 328.13, 1477.9, 1084.43, 0, 15, 281, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (182, 4, 'Normal Size House In SF', 0, 0, 0, 85000, 0, 0, -2789.59, -181.41, 10.06, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 282, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (183, 4, 'Medium House Ghetto LS', 0, 0, 0, 12000, 500, 0, 2421.23, -1277.2, 24.76, 0, 0, 0, 0, -1, 328.13, 1477.9, 1084.43, 0, 15, 283, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (184, 4, 'Medium House Ghetto LS', 0, 0, 0, 12000, 0, 0, 2420.02, -1287.25, 25.35, 0, 0, 0, 0, -1, 328.13, 1477.9, 1084.43, 0, 15, 284, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (185, 4, 'Medium House Ghetto LS', 0, 0, 0, 12000, 0, 0, 2419.23, -1301.95, 25.57, 0, 0, 0, 0, -1, 328.13, 1477.9, 1084.43, 0, 15, 285, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (186, 4, 'Medium House Ghetto LS', 0, 0, 0, 12000, 0, 0, 2419.23, -1319.22, 25.57, 0, 0, 0, 0, -1, 328.13, 1477.9, 1084.43, 0, 15, 286, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (187, 4, 'Medium House Ghetto LS', 0, 0, 0, 12000, 0, 0, 2424.89, -1336.86, 24.32, 0, 0, 0, 0, -1, 328.13, 1477.9, 1084.43, 0, 15, 287, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (188, 4, 'Medium House Ghetto LS', 0, 0, 0, 12000, 0, 0, 2424.89, -1355.15, 24.32, 0, 0, 0, 0, -1, 328.13, 1477.9, 1084.43, 0, 15, 288, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (189, 4, 'Apartment 2nd Floor In SF', 0, 0, 0, 80000, 0, 0, -2786.77, -175.21, 10.06, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 289, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (190, 4, 'Ghetto Project Apartment LS Small', 0, 0, 0, 2000, 2000, 0, 2487.35, -1398.81, 29.31, 0, 0, 0, 0, -1, 243.72, 304.97, 999.14, 0, 1, 290, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (191, 4, 'Ghetto Project Apartment LS Small', 0, 0, 0, 2000, 0, 0, 2487.3, -1410.34, 29.31, 0, 0, 0, 0, -1, 243.72, 304.97, 999.14, 0, 1, 291, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (192, 4, 'Ghetto Project Apartment LS Small', 0, 0, 0, 2000, 500, 0, 2492.25, -1398.81, 29.31, 0, 0, 0, 0, -1, 243.72, 304.97, 999.14, 0, 1, 292, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (193, 4, 'Ghetto Project Apartment LS Small', 0, 0, 0, 2000, 500, 0, 2495.38, -1398.81, 29.31, 0, 0, 0, 0, -1, 243.72, 304.97, 999.14, 0, 1, 293, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (194, 4, 'Appartment 1st Floor In SF', 0, 0, 0, 80000, 0, 0, -2790.4, -168.27, 7.2, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 294, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (195, 4, 'Ghetto Project Apartment LS Small', 0, 0, 0, 2000, 0, 0, 2495.29, -1410.34, 29.31, 0, 0, 0, 0, -1, 243.72, 304.97, 999.14, 0, 1, 295, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (196, 4, 'Ghetto Project Apartment LS Small', 0, 0, 0, 2000, 0, 0, 2492.18, -1410.34, 29.31, 0, 0, 0, 0, -1, 243.72, 304.97, 999.14, 0, 1, 296, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (197, 4, 'Ghetto Project Apartment LS Small', 0, 0, 0, 2000, 0, 0, 2476.27, -1410.34, 29.31, 0, 0, 0, 0, -1, 243.72, 304.97, 999.14, 0, 1, 297, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (198, 4, 'Ghetto Project Apartment LS Small', 0, 0, 0, 2000, 500, 0, 2473.14, -1410.34, 29.31, 0, 0, 0, 0, -1, 243.72, 304.97, 999.14, 0, 1, 298, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (199, 4, 'Ghetto Project Apartment LS Small', 0, 0, 0, 2000, 1000, 0, 2468.25, -1410.34, 29.31, 0, 0, 0, 0, -1, 243.72, 304.97, 999.14, 0, 1, 299, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (200, 4, 'Normal Size Pink House In SF', 0, 0, 0, 85000, 0, 0, -2791.99, -160.47, 10.05, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 300, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (201, 4, 'Ghetto Project Apartment LS Small', 0, 0, 0, 2000, 0, 0, 2476.4, -1398.81, 29.31, 0, 0, 0, 0, -1, 243.72, 304.97, 999.14, 0, 1, 301, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (202, 4, 'Ghetto Project Apartment LS Small', 0, 0, 0, 2000, 500, 0, 2476.25, -1391.71, 29.31, 0, 0, 0, 0, -1, 243.72, 304.97, 999.14, 0, 1, 302, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (203, 4, 'Ghetto Project Apartment LS Small', 0, 0, 0, 2000, 200, 0, 2473.12, -1391.71, 29.31, 0, 0, 0, 0, -1, 243.72, 304.97, 999.14, 0, 1, 303, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (204, 4, 'Ghetto Project Apartment LS Small', 0, 0, 0, 2000, 0, 0, 2468.3, -1391.71, 29.31, 0, 0, 0, 0, -1, 243.72, 304.97, 999.14, 0, 1, 304, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (205, 4, 'Ghetto Project Apartment LS Small', 0, 0, 0, 2000, 200, 0, 2468.3, -1383.37, 29.31, 0, 0, 0, 0, -1, 243.72, 304.97, 999.14, 0, 1, 305, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (206, 4, 'Ghetto Project Apartment LS Small', 0, 0, 0, 2000, 0, 0, 2473.17, -1383.37, 29.31, 0, 0, 0, 0, -1, 243.72, 304.97, 999.14, 0, 1, 306, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (207, 4, 'Ghetto Project Apartment LS Small', 0, 0, 0, 2000, 1, 0, 2476.42, -1383.37, 29.31, 0, 0, 0, 0, -1, 243.72, 304.97, 999.14, 0, 1, 307, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (208, 4, 'Normal Size Very Light Green House In SF', 0, 0, 0, 55000, 3000, 0, -2792.89, -153.15, 7.6, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 308, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (209, 4, 'Ghetto Project Apartment LS Small', 0, 0, 0, 2000, 200, 0, 2487.38, -1383.38, 29.31, 0, 0, 0, 0, -1, 243.72, 304.97, 999.14, 0, 1, 309, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (210, 4, 'Ghetto Project Apartment LS Small', 0, 0, 0, 2000, 0, 0, 2492.22, -1383.37, 29.31, 0, 0, 0, 0, -1, 243.72, 304.97, 999.14, 0, 1, 310, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (211, 4, 'Ghetto Project Apartment LS Small', 0, 0, 0, 2000, 5000, 0, 2495.4, -1383.37, 29.31, 0, 0, 0, 0, -1, 243.72, 304.97, 999.14, 0, 1, 311, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (212, 4, 'Ghetto Project Apartment LS Small', 0, 0, 0, 2000, 0, 0, 2487.29, -1391.71, 29.31, 0, 0, 0, 0, -1, 243.72, 304.97, 999.14, 0, 1, 312, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (213, 4, 'Ghetto Project Apartment LS Small', 0, 0, 0, 2000, 250, 0, 2492.12, -1391.71, 29.31, 0, 0, 0, 0, -1, 243.72, 304.97, 999.14, 0, 1, 313, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (214, 4, 'Normal Size Blue House In SF', 0, 0, 0, 85000, 0, 0, -2791.86, -145.98, 7.86, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 314, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (215, 4, 'Ghetto Project Apartment LS Small', 0, 0, 0, 2000, 0, 0, 2495.35, -1391.71, 29.31, 0, 0, 0, 0, -1, 243.72, 304.97, 999.14, 0, 1, 315, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (216, 4, 'Ghetto Project Apartment LS Small', 0, 0, 0, 2000, 0, 0, 2495.41, -1417.44, 29.31, 0, 0, 0, 0, -1, 243.72, 304.97, 999.14, 0, 1, 316, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (217, 4, 'Normal Size House In SF', 0, 0, 0, 85000, 0, 0, -2791.99, -134.46, 10.05, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 317, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (218, 4, 'Ghetto Project Apartment LS Small', 0, 0, 0, 2000, 0, 0, 2495.3, -1424.58, 29.02, 0, 0, 0, 0, -1, 243.72, 304.97, 999.14, 0, 1, 318, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (219, 4, 'Ghetto Project Apartment LS Small', 0, 0, 0, 2000, 500, 0, 2492.09, -1424.58, 29.02, 0, 0, 0, 0, -1, 243.72, 304.97, 999.14, 0, 1, 319, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (220, 4, 'Ghetto Project Apartment LS Small', 0, 0, 0, 2000, 0, 0, 2492.27, -1417.44, 29.31, 0, 0, 0, 0, -1, 243.72, 304.97, 999.14, 0, 1, 320, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (221, 4, 'Ghetto Project Apartment LS Small', 0, 0, 0, 2000, 200, 0, 2487.35, -1424.58, 29.02, 0, 0, 0, 0, -1, 243.72, 304.97, 999.14, 0, 1, 321, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (222, 4, 'Ghetto Project Apartment LS Small', 0, 0, 0, 2000, 200, 0, 2487.34, -1417.44, 29.31, 0, 0, 0, 0, -1, 243.72, 304.97, 999.14, 0, 1, 322, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (223, 4, 'Ghetto Project Apartment LS Small', 0, 0, 0, 2000, 50, 0, 2476.25, -1424.58, 29.31, 0, 0, 0, 0, -1, 243.72, 304.97, 999.14, 0, 1, 323, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (224, 4, 'Ghetto Project Apartment LS Small', 0, 0, 0, 2000, 0, 0, 2476.39, -1417.44, 29.31, 0, 0, 0, 0, -1, 243.72, 304.97, 999.14, 0, 1, 324, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (225, 4, 'Ghetto Project Apartment LS Small', 0, 0, 0, 2000, 0, 0, 2473.12, -1417.44, 29.31, 0, 0, 0, 0, -1, 243.72, 304.97, 999.14, 0, 1, 325, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (226, 4, 'Ghetto Project Apartment LS Small', 0, 0, 0, 2000, 0, 0, 2473.09, -1424.57, 29.31, 0, 0, 0, 0, -1, 243.72, 304.97, 999.14, 0, 1, 326, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (227, 4, 'Ghetto Project Apartment LS Small', 0, 0, 0, 2000, 5000, 0, 2468.3, -1424.58, 29.31, 0, 0, 0, 0, -1, 243.72, 304.97, 999.14, 0, 1, 327, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (228, 4, 'Ghetto Project Apartment LS Small', 0, 0, 0, 2000, 200, 0, 2468.34, -1417.45, 29.31, 0, 0, 0, 0, -1, 243.72, 304.97, 999.14, 0, 1, 328, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (229, 4, 'Ghetto Project Apartment LS Small', 0, 0, 0, 2000, 500, 0, 2495.35, -1431.68, 29.02, 0, 0, 0, 0, -1, 243.72, 304.97, 999.14, 0, 1, 329, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (230, 4, 'Ghetto Project Apartment LS Small', 0, 0, 0, 2000, 0, 0, 2492.26, -1431.68, 29.02, 0, 0, 0, 0, -1, 243.72, 304.97, 999.14, 0, 1, 330, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (231, 4, 'Ghetto Project Apartment LS Small', 0, 0, 0, 2000, 100, 0, 2487.3, -1431.68, 29.02, 0, 0, 0, 0, -1, 243.72, 304.97, 999.14, 0, 1, 331, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (232, 4, 'Ghetto Project Apartment LS Small', 0, 0, 0, 2000, 200, 0, 2476.45, -1431.68, 29.31, 0, 0, 0, 0, -1, 243.72, 304.97, 999.14, 0, 1, 332, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (233, 4, 'Normal Size Light Green House In SF', 0, 0, 0, 55000, 500, 0, -2793.14, -126.99, 7.18, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 333, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (234, 4, 'Ghetto Project Apartment LS Small', 0, 0, 0, 2000, 999, 0, 2473.24, -1431.68, 29.31, 0, 0, 0, 0, -1, 243.72, 304.97, 999.14, 0, 1, 334, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (235, 4, 'Ghetto Project Apartment LS Small', 0, 0, 0, 2000, 5000, 0, 2468.35, -1431.68, 29.31, 0, 0, 0, 0, -1, 243.72, 304.97, 999.14, 0, 1, 335, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (236, 4, 'Ghetto Project Apartment LS Small', 0, 0, 0, 2000, 20, 0, 2473.14, -1398.81, 29.31, 0, 0, 0, 0, -1, 243.72, 304.97, 999.14, 0, 1, 336, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (237, 4, 'Ghetto Project Apartment LS Small', 0, 0, 0, 2000, 0, 0, 2468.39, -1398.81, 29.31, 0, 0, 0, 0, -1, 243.72, 304.97, 999.14, 0, 1, 337, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (238, 4, 'Ghetto Project Apartment LS Small', 0, 0, 0, 2000, 0, 0, 2468.32, -1376.27, 29.31, 0, 0, 0, 0, -1, 243.72, 304.97, 999.14, 0, 1, 338, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (239, 4, 'Ghetto Project Apartment LS Small', 0, 0, 0, 2000, 0, 0, 2473.15, -1376.27, 29.31, 0, 0, 0, 0, -1, 243.72, 304.97, 999.14, 0, 1, 339, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (240, 4, 'Ghetto Project Apartment LS Small', 0, 0, 0, 2000, 200, 0, 2476.3, -1376.27, 29.31, 0, 0, 0, 0, -1, 243.72, 304.97, 999.14, 0, 1, 340, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (241, 4, 'Appartment 2nd Floor In SF', 0, 0, 0, 80000, 0, 0, -2786.77, -118.26, 10.06, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 341, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (242, 4, 'Ghetto Project Apartment LS Small', 0, 0, 0, 2000, 0, 0, 2473.17, -1366.2, 29.31, 0, 0, 0, 0, -1, 243.72, 304.97, 999.14, 0, 1, 342, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (243, 4, 'Ghetto Project Apartment LS Small', 0, 0, 0, 2000, 5000, 0, 2468.38, -1366.2, 29.31, 0, 0, 0, 0, -1, 243.72, 304.97, 999.14, 0, 1, 343, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (244, 4, 'Ghetto Project Apartment LS Small', 0, 0, 0, 2000, 0, 0, 2476.37, -1366.2, 29.31, 0, 0, 0, 0, -1, 243.72, 304.97, 999.14, 0, 1, 344, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (245, 4, 'Ghetto Project Apartment LS Small', 0, 0, 0, 2000, 0, 0, 2487.39, -1366.2, 29.31, 0, 0, 0, 0, -1, 243.72, 304.97, 999.14, 0, 1, 345, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (246, 4, 'Appartment 1st Floor In SF', 0, 0, 0, 80000, 0, 0, -2790.34, -111.14, 7.2, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 346, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (247, 4, 'Ghetto Project Apartment LS Small', 0, 0, 0, 2000, 200, 0, 2487.3, -1376.27, 29.31, 0, 0, 0, 0, -1, 243.72, 304.97, 999.14, 0, 1, 347, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (248, 4, 'Ghetto Project Apartment LS Small', 0, 0, 0, 2000, 200, 0, 2492.3, -1366.2, 29.31, 0, 0, 0, 0, -1, 243.72, 304.97, 999.14, 0, 1, 348, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (249, 4, 'Ghetto Project Apartment LS Small', 0, 0, 0, 2000, 1, 0, 2492.08, -1376.27, 29.31, 0, 0, 0, 0, -1, 243.72, 304.97, 999.14, 0, 1, 349, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (250, 4, 'Ghetto Project Apartment LS Small', 0, 0, 0, 2000, 0, 0, 2495.31, -1376.27, 29.31, 0, 0, 0, 0, -1, 243.72, 304.97, 999.14, 0, 1, 350, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (251, 4, 'Ghetto Project Apartment LS Small', 0, 0, 0, 2000, 200, 0, 2495.47, -1366.21, 29.31, 0, 0, 0, 0, -1, 243.72, 304.97, 999.14, 0, 1, 351, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (252, 4, 'Normal Size Green/Brick House In SF', 0, 0, 0, 120000, 0, 0, -2791.85, -107.45, 7.86, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 352, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (253, 4, 'Normal Size Pink House In SF', 0, 0, 0, 85000, 0, 0, -2791.99, -94.98, 10.05, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 353, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (254, 4, 'Appartment 2nd Floor In SF', 0, 0, 0, 80000, 0, 0, -2786.77, -89.71, 10.06, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 354, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (255, 4, 'Appartment 1st Floor In SF', 0, 0, 0, 80000, 0, 0, -2790.42, -82.53, 7.2, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 355, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (256, 4, 'Ghetto Project Apartment LS Small', 0, 0, 0, 2000, 0, 0, 2495.33, -1359.1, 29.31, 0, 0, 0, 0, -1, 243.72, 304.97, 999.14, 0, 1, 356, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (257, 4, 'Ghetto Project Apartment LS Small', 0, 0, 0, 2000, 0, 0, 2492.1, -1359.1, 29.31, 0, 0, 0, 0, -1, 243.72, 304.97, 999.14, 0, 1, 357, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (258, 4, 'Ghetto Project Apartment LS Small', 0, 0, 0, 2000, 0, 0, 2487.26, -1359.1, 29.31, 0, 0, 0, 0, -1, 243.72, 304.97, 999.14, 0, 1, 358, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (259, 4, 'Ghetto Project Apartment LS Small', 0, 0, 0, 2000, 0, 0, 2476.28, -1359.1, 29.31, 0, 0, 0, 0, -1, 243.72, 304.97, 999.14, 0, 1, 359, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (260, 4, 'Ghetto Project Apartment LS Small', 0, 0, 0, 2000, 0, 0, 2473.07, -1359.1, 29.31, 0, 0, 0, 0, -1, 243.72, 304.97, 999.14, 0, 1, 360, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (261, 4, 'Ghetto Project Apartment LS Small', 0, 0, 0, 2000, 0, 0, 2468.24, -1359.1, 29.31, 0, 0, 0, 0, -1, 243.72, 304.97, 999.14, 0, 1, 361, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (262, 4, 'Normal Size House In SF', 0, 0, 0, 85000, 0, 0, -2789.24, -52.58, 10.06, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 362, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (263, 4, 'Normal Size Pink House In SF', 0, 0, 0, 85000, 0, 0, -2791.91, -41.82, 10.05, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 363, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (264, 4, 'House Ghetto LS Small', 0, 0, 0, 10000, 150, 0, 2483.95, -1280.35, 30.47, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 364, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (265, 4, 'House Ghetto LS Small', 0, 0, 0, 10000, 0, 0, 2482.75, -1293.35, 30.23, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 365, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (266, 4, 'Normal Size Blue House In SF', 0, 0, 0, 85000, 0, 0, -2791.83, -35.9, 7.86, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 366, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (267, 4, 'House Ghetto LS Small', 0, 0, 0, 10000, 0, 0, 2529.65, -1243.31, 43.97, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 367, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (268, 4, 'House Ghetto LS Small', 0, 0, 0, 10000, 0, 0, 2531.05, -1228.61, 43.72, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 368, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (269, 4, 'Normal Size Blue House In SF', 0, 0, 0, 85000, 0, 0, -2791.84, -24.28, 10.05, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 369, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (270, 4, 'House Ghetto LS Small', 0, 0, 0, 10000, 600, 0, 2551.05, -1233.79, 49.33, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 370, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (271, 4, 'Normal Size Green/Brick House In SF', 0, 0, 0, 120000, 0, 0, -2791.59, -17.64, 7.86, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 371, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (272, 4, 'House Ghetto LS Small', 0, 0, 0, 10000, 0, 0, 2514.62, -1240.45, 39.34, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 372, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (273, 4, 'House Ghetto LS Small', 0, 0, 0, 10000, 0, 0, 2516.52, -1225.75, 39.09, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 373, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (274, 4, 'Appartment 2nd Floor In SF', 0, 0, 0, 80000, 0, 0, -2786.76, 0.27, 10.06, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 374, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (275, 4, 'Appartment 1st Floor In SF', 0, 0, 0, 80000, 0, 0, -2790.48, 7.37, 7.2, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 375, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (276, 4, 'Light Pink/Brick House In SF', 0, 0, 0, 120000, 0, 0, -2793.14, 11.19, 7.43, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 376, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (277, 4, 'Medium House Ghetto LS', 0, 0, 0, 12000, 0, 0, 2550.3, -1209.05, 54.54, 0, 0, 0, 0, -1, 328.13, 1477.9, 1084.43, 0, 15, 377, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (278, 4, 'Green Normal Size House In SF', 0, 0, 0, 120000, 0, 0, -2793.15, 21.32, 7.18, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 378, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (279, 4, 'Medium House Ghetto LS', 0, 0, 0, 12000, 0, 0, 2550.19, -1197.53, 60.84, 0, 0, 0, 0, -1, 328.13, 1477.9, 1084.43, 0, 15, 379, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (280, 4, 'Medium House Ghetto LS', 0, 0, 0, 12000, 5000, 0, 2520.65, -1209.48, 50.29, 0, 0, 0, 0, -1, 328.13, 1477.9, 1084.43, 0, 15, 380, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (281, 4, 'Medium House Ghetto LS', 0, 0, 0, 12000, 0, 0, 2520.61, -1198, 56.6, 0, 0, 0, 0, -1, 328.13, 1477.9, 1084.43, 0, 15, 381, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (282, 4, 'Appartment 2nd Floor In SF', 0, 0, 0, 80000, 0, 0, -2787, 62.87, 10.06, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 382, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (283, 4, 'Appartment 1st Floor In SF', 0, 0, 0, 80000, 0, 0, -2790.53, 69.66, 7.2, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 383, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (284, 4, 'Normal Size Pink House In SF', 0, 0, 0, 85000, 0, 0, -2791.79, 77.58, 10.05, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 384, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (285, 4, 'House Ghetto LS Small', 0, 0, 0, 10000, 500, 0, 2601.05, -1200.15, 59.5, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 385, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (286, 4, 'House Ghetto LS Small', 0, 0, 0, 10000, 0, 0, 2601.05, -1203.08, 58.73, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 386, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (287, 4, 'House Ghetto LS Small', 0, 0, 0, 10000, 0, 0, 2601.05, -1207.58, 57.79, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 387, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (288, 4, 'Normal Size Very Light Green House In SF', 0, 0, 0, 55000, 0, 0, -2792.85, 84.94, 7.62, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 388, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (289, 4, 'House Ghetto LS Small', 0, 0, 0, 10000, 500, 0, 2594.5, -1207.54, 57.65, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 389, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (290, 4, 'House Ghetto LS Small', 0, 0, 0, 10000, 500, 0, 2594.5, -1203, 58.58, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 390, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (291, 4, 'House Ghetto LS Small', 0, 0, 0, 10000, 500, 0, 2594.5, -1200.09, 59.35, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 391, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (292, 4, 'Normal Size Blue House In SF', 0, 0, 0, 85000, 5000, 0, -2791.59, 92.18, 7.86, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 392, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (293, 4, 'House Ghetto LS Small', 0, 0, 0, 10000, 500, 0, 2601.05, -1211.81, 56.66, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 393, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (294, 4, 'House Ghetto LS Small', 0, 0, 0, 10000, 500, 0, 2594.5, -1211.8, 56.51, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 394, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (295, 4, 'House Ghetto LS Small', 0, 0, 0, 10000, 0, 0, 2601.05, -1216.41, 55.27, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 395, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (296, 4, 'House Ghetto LS Small', 0, 0, 0, 10000, 500, 0, 2594.5, -1216.38, 55.11, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 396, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (297, 4, 'Normal Size House In SF', 0, 0, 0, 85000, 0, 0, -2791.82, 103.6, 10.05, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 397, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (298, 4, 'House Ghetto LS Small', 0, 0, 0, 10000, 120, 0, 2601.05, -1220.59, 53.92, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 398, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (299, 4, 'House Ghetto LS Small', 0, 0, 0, 10000, 449, 0, 2594.5, -1220.49, 53.76, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 399, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (300, 4, 'House Ghetto LS Small', 0, 0, 0, 10000, 500, 0, 2601.05, -1224.74, 52.63, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 400, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (301, 4, 'House Ghetto LS Small', 0, 0, 0, 10000, 500, 0, 2594.5, -1224.71, 52.48, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 401, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (302, 4, 'House Ghetto LS Small', 0, 0, 0, 10000, 500, 0, 2601.05, -1229.29, 51.34, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 402, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (303, 4, 'Normal Size Light Green House In SF', 0, 0, 0, 55000, 0, 0, -2793.14, 110.99, 7.18, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 403, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (304, 4, 'House Ghetto LS Small', 0, 0, 0, 10000, 5000, 0, 2594.5, -1229.26, 51.19, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 404, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (305, 4, 'House Ghetto LS Small', 0, 0, 0, 10000, 0, 0, 2601.05, -1233.56, 50.11, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 405, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (306, 4, 'House Ghetto LS Small', 0, 0, 0, 10000, 5000, 0, 2594.5, -1233.55, 49.96, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 406, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (307, 4, 'House Ghetto LS Small', 0, 0, 0, 10000, 10, 0, 2601.05, -1238.12, 48.72, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 407, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (308, 4, 'House Ghetto LS Small', 0, 0, 0, 10000, 0, 0, 2594.5, -1238.05, 48.56, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 408, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (309, 4, 'Appartment 2nd Floor In SF', 0, 0, 0, 80000, 0, 0, -2786.98, 119.9, 10.06, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 409, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (310, 4, 'House Ghetto LS Small', 0, 0, 0, 10000, 500, 0, 2608.15, -1200.07, 60.99, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 410, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (311, 4, 'House Ghetto LS Small', 0, 0, 0, 10000, 500, 0, 2615.11, -1200.1, 60.78, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 411, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (312, 4, 'Appartment 1st Floor In SF', 0, 0, 0, 80000, 0, 0, -2790.59, 126.9, 7.2, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 412, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (313, 4, 'House Ghetto LS Small', 0, 0, 0, 10000, 500, 0, 2608.15, -1203, 60.22, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 413, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (314, 4, 'House Ghetto LS Small', 0, 0, 0, 10000, 500, 0, 2615.11, -1203.1, 60, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 414, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (315, 4, 'House Ghetto LS Small', 0, 0, 0, 10000, 90, 0, 2608.15, -1207.57, 59.28, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 415, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (316, 4, 'House Ghetto LS Small', 0, 0, 0, 10000, 500, 0, 2615.11, -1207.64, 59.07, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 416, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (317, 4, 'House Ghetto LS Small', 0, 0, 0, 10000, 500, 0, 2608.15, -1211.73, 58.15, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 417, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (318, 4, 'House Ghetto LS Small', 0, 0, 0, 10000, 500, 0, 2615.11, -1211.84, 57.94, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 418, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (319, 4, 'House Ghetto LS Small', 0, 0, 0, 10000, 1000, 0, 2608.15, -1216.28, 56.76, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 419, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (320, 4, 'House Ghetto LS Small', 0, 0, 0, 10000, 100, 0, 2615.11, -1216.3, 56.54, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 420, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (321, 4, 'House Ghetto LS Small', 0, 0, 0, 10000, 1000, 0, 2608.15, -1220.51, 55.41, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 421, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (322, 4, 'House Ghetto LS Small', 0, 0, 0, 10000, 500, 0, 2615.11, -1220.58, 55.19, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 422, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (323, 4, 'House Ghetto LS Small', 0, 0, 0, 10000, 500, 0, 2608.15, -1224.64, 54.12, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 423, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (324, 4, 'Normal Size Green/Brick House In SF', 0, 0, 0, 120000, 0, 0, -2791.68, 130.62, 7.86, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 424, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (325, 4, 'House Ghetto LS Small', 0, 0, 0, 10000, 500, 0, 2615.11, -1224.75, 53.9, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 425, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (326, 4, 'House Ghetto LS Small', 0, 0, 0, 10000, 500, 0, 2608.15, -1229.19, 52.83, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 426, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (327, 4, 'House Ghetto LS Small', 0, 0, 0, 10000, 500, 0, 2615.11, -1229.28, 52.61, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 427, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (328, 4, 'House Ghetto LS Small', 0, 0, 0, 10000, 5000, 0, 2608.15, -1233.42, 51.6, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 428, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (329, 4, 'House Ghetto LS Small', 0, 0, 0, 10000, 500, 0, 2615.11, -1233.57, 51.38, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 429, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (330, 4, 'House', 0, 0, 0, 10000, 0, 0, 2608.15, -1238.01, 50.2, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 430, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (331, 4, 'House Ghetto LS Small', 0, 0, 0, 10000, 0, 0, 2615.11, -1238.09, 49.98, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 431, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (332, 4, 'Normal Size Pink House In SF', 0, 0, 0, 85000, 0, 0, -2791.81, 143.25, 10.05, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 432, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (333, 4, 'House Ghetto LS Small', 0, 0, 0, 10000, 0, 0, 2587.4, -1238.14, 48.56, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 433, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (334, 4, 'House Ghetto LS Small', 0, 0, 0, 10000, 0, 0, 2587.4, -1233.59, 49.96, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 434, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (335, 4, 'House Ghetto LS Small', 0, 0, 0, 10000, 500, 0, 2587.4, -1229.28, 51.19, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 435, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (336, 4, 'House Ghetto LS Small', 0, 0, 0, 10000, 0, 0, 2587.4, -1224.72, 52.48, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 436, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (337, 4, 'House Ghetto LS Small', 0, 0, 0, 10000, 500, 0, 2587.39, -1220.59, 53.76, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 437, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (338, 4, 'House Ghetto LS Small', 0, 0, 0, 10000, 500, 0, 2587.4, -1216.4, 55.11, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 438, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (339, 4, 'House Ghetto LS Small', 0, 0, 0, 10000, 1, 0, 2587.4, -1211.86, 56.51, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 439, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (340, 4, 'House Ghetto LS Small', 0, 0, 0, 10000, 400, 0, 2587.4, -1207.67, 57.65, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 440, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (341, 4, 'House Ghetto LS Small', 0, 0, 0, 10000, 500, 0, 2587.4, -1203.17, 58.58, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 441, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (342, 4, 'House Ghetto LS Small', 0, 0, 0, 10000, 500, 0, 2587.4, -1200.11, 59.35, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 442, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (343, 4, 'Normal Size House In SF', 0, 0, 0, 85000, 0, 0, -2789.34, 183.69, 10.06, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 443, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (344, 4, 'House Ghetto LS Small', 0, 0, 0, 10000, 0, 0, 2622.21, -1237.97, 51.27, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 444, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (345, 4, 'House Ghetto LS Small', 0, 0, 0, 10000, 0, 0, 2622.21, -1233.49, 52.66, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 445, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (346, 4, 'House Ghetto LS Small', 0, 0, 0, 10000, 1, 0, 2622.21, -1229.17, 53.89, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 446, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (347, 4, 'House Ghetto LS Small', 0, 0, 0, 10000, 0, 0, 2622.21, -1224.62, 55.18, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 447, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (348, 4, 'House Ghetto LS Small', 0, 0, 0, 10000, 0, 0, 2622.21, -1220.51, 56.47, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 448, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (349, 4, 'House Ghetto LS Small', 0, 0, 0, 10000, 0, 0, 2622.22, -1216.29, 57.82, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 449, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (350, 4, 'House Ghetto LS Small', 0, 0, 0, 10000, 0, 0, 2622.21, -1211.76, 59.21, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 450, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (351, 4, 'Normal Size Pink House In SF', 0, 0, 0, 85000, 0, 0, -2791.81, 194.57, 10.05, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 451, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (352, 4, 'House Ghetto LS Small', 0, 0, 0, 10000, 0, 0, 2622.22, -1207.58, 60.35, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 452, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (353, 4, 'House Ghetto LS Small', 0, 0, 0, 10000, 0, 0, 2622.22, -1203.05, 61.28, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 453, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (354, 4, 'House Ghetto LS Small', 0, 0, 0, 10000, 0, 0, 2622.22, -1199.95, 62.05, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 454, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (355, 4, 'Normal Size Blue House In SF', 0, 0, 0, 85000, 0, 0, -2791.65, 200.58, 7.86, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 455, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (356, 4, 'Normal Size Blue House In SF', 0, 0, 0, 85000, 0, 0, -2791.81, 212, 10.05, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 456, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (357, 4, 'Normal Size Green/Brick House In SF', 0, 0, 0, 120000, 0, 0, -2791.6, 218.57, 7.86, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 457, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (358, 4, 'House Ghetto LS Small', 0, 0, 0, 10000, 0, 0, 2663.18, -1238.14, 55.67, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 458, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (359, 4, 'House Ghetto LS Small', 0, 0, 0, 10000, 0, 0, 2663.18, -1233.56, 57.07, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 459, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (360, 4, 'House Ghetto LS Small', 0, 0, 0, 10000, 10, 0, 2663.18, -1229.27, 58.3, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 460, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (361, 4, 'House Ghetto LS Small', 0, 0, 0, 10000, 0, 0, 2663.18, -1224.83, 59.58, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 461, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (362, 4, 'House Ghetto LS Small', 0, 0, 0, 10000, 0, 0, 2663.18, -1220.59, 60.87, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 462, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (363, 4, 'House Ghetto LS Small', 0, 0, 0, 10000, 0, 0, 2663.18, -1216.33, 62.22, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 463, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (364, 4, 'House Ghetto LS Small', 0, 0, 0, 10000, 0, 0, 2663.18, -1211.8, 63.62, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 464, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (365, 4, 'House Ghetto LS Small', 0, 0, 0, 10000, 0, 0, 2663.18, -1207.64, 64.76, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 465, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (366, 4, 'House Ghetto LS Small', 0, 0, 0, 10000, 0, 0, 2663.18, -1203.19, 65.68, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 466, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (367, 4, 'House Ghetto LS Small', 0, 0, 0, 10000, 1000, 0, 2663.18, -1200.14, 66.47, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 467, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (368, 4, 'House Ghetto LS Small', 0, 0, 0, 10000, 0, 0, 2670.28, -1200.04, 66.5, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 468, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (369, 4, 'House Ghetto LS Small', 0, 0, 0, 10000, 0, 0, 2670.28, -1203.03, 65.73, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 469, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (370, 4, 'House Ghetto LS Small', 0, 0, 0, 10000, 0, 0, 2670.28, -1207.56, 64.8, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 470, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (371, 4, 'House Ghetto LS Small', 0, 0, 0, 10000, 0, 0, 2670.28, -1211.74, 63.67, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 471, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (372, 4, 'House Ghetto LS Small', 0, 0, 0, 10000, 0, 0, 2670.28, -1216.36, 62.26, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 472, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (373, 4, 'House Ghetto LS Small', 0, 0, 0, 10000, 100, 0, 2670.28, -1220.46, 60.92, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 473, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (374, 4, 'House Ghetto LS Small', 0, 0, 0, 10000, 0, 0, 2670.28, -1224.74, 59.63, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 474, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (375, 4, 'House Ghetto LS Small', 0, 0, 0, 10000, 0, 0, 2670.28, -1229.17, 58.36, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 475, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (376, 4, 'House Ghetto LS Small', 0, 0, 0, 10000, 0, 0, 2670.28, -1233.48, 57.12, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 476, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (377, 4, 'House Ghetto LS Small', 0, 0, 0, 10000, 0, 0, 2670.28, -1238.05, 55.73, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 477, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (378, 4, 'House Ghetto LS Small', 0, 0, 0, 10000, 5000, 0, 2683.44, -1238.05, 56.02, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 478, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (379, 4, 'House Ghetto LS Small', 0, 0, 0, 10000, 0, 0, 2683.44, -1233.54, 57.42, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 479, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (380, 4, 'House Ghetto LS Small', 0, 0, 0, 10000, 0, 0, 2683.44, -1229.32, 58.65, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 480, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (381, 4, 'House Ghetto LS Small', 0, 0, 0, 10000, 0, 0, 2683.44, -1224.74, 59.93, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 481, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (382, 4, 'House Ghetto LS Small', 0, 0, 0, 10000, 0, 0, 2683.44, -1220.6, 61.22, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 482, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (383, 4, 'House Ghetto LS Small', 0, 0, 0, 10000, 0, 0, 2683.44, -1216.35, 62.57, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 483, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (384, 4, 'House Ghetto LS Small', 0, 0, 0, 10000, 0, 0, 2683.44, -1211.88, 63.96, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 484, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (385, 4, 'House Ghetto LS Small', 0, 0, 0, 10000, 0, 0, 2683.44, -1207.64, 65.1, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 485, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (386, 4, 'House Ghetto LS Small', 0, 0, 0, 10000, 500, 0, 2683.44, -1203.14, 66.03, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 486, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (387, 4, 'House Ghetto LS Small', 0, 0, 0, 10000, 0, 0, 2683.44, -1200.19, 66.81, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 487, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (388, 4, 'House Ghetto LS Small', 0, 0, 0, 10000, 0, 0, 2690.54, -1200.05, 68.29, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 488, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (389, 4, 'House Ghetto LS Small', 0, 0, 0, 10000, 0, 0, 2700.21, -1200.19, 68.97, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 489, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (390, 4, 'House Ghetto LS Small', 0, 0, 0, 10000, 0, 0, 2690.54, -1202.95, 67.52, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 490, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (391, 4, 'House Ghetto LS Small', 0, 0, 0, 10000, 0, 0, 2700.21, -1203.11, 68.19, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 491, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (392, 4, 'House Ghetto LS Small', 0, 0, 0, 10000, 0, 0, 2690.54, -1207.56, 66.58, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 492, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (393, 4, 'House Ghetto LS Small', 0, 0, 0, 10000, 0, 0, 2700.2, -1207.66, 67.26, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 493, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (394, 4, 'House Ghetto LS Small', 0, 0, 0, 10000, 0, 0, 2700.2, -1211.84, 66.13, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 494, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (395, 4, 'House Ghetto LS Small', 0, 0, 0, 10000, 5000, 0, 2690.54, -1211.79, 65.45, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 495, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (396, 4, 'House Ghetto LS Small', 0, 0, 0, 10000, 0, 0, 2700.2, -1216.36, 64.74, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 496, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (397, 4, 'House Ghetto LS Small', 0, 0, 0, 10000, 0, 0, 2690.54, -1216.25, 64.06, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 497, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (398, 4, 'House Ghetto LS Small', 0, 0, 0, 10000, 0, 0, 2700.21, -1220.59, 63.39, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 498, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (399, 4, 'Appartment 1st Floor In SF', 0, 0, 0, 80000, 0, 0, -2724.67, -191.32, 4.33, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 499, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (400, 4, 'House Ghetto LS Small', 0, 0, 0, 10000, 0, 0, 2690.54, -1220.48, 62.72, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 500, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (401, 4, 'House Ghetto LS Small', 0, 0, 0, 10000, 0, 0, 2700.2, -1224.74, 62.09, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 501, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (402, 4, 'House Ghetto LS Small', 0, 0, 0, 10000, 0, 0, 2690.55, -1224.79, 61.42, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 502, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (403, 4, 'House Ghetto LS Small', 0, 0, 0, 10000, 500, 0, 2700.21, -1229.31, 60.81, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 503, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (404, 4, 'House Ghetto LS Small', 0, 0, 0, 10000, 0, 0, 2690.54, -1229.15, 60.14, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 504, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (405, 4, 'Appartment In SF 2nd Floor', 0, 0, 0, 80000, 0, 0, -2728.16, -184.18, 7.2, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 505, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (406, 4, 'House Ghetto LS Small', 0, 0, 0, 10000, 5000, 0, 2700.21, -1233.57, 59.58, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 506, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (407, 4, 'House Ghetto LS Small', 0, 0, 0, 10000, 0, 0, 2690.54, -1233.41, 58.91, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 507, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (408, 4, 'House Ghetto LS Small', 0, 0, 0, 10000, 0, 0, 2700.2, -1238.05, 58.18, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 508, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (409, 4, 'House Ghetto LS Small', 0, 0, 0, 10000, 1, 0, 2690.54, -1238.06, 57.51, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 509, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (410, 4, 'Normal Size Pink House In SF', 0, 0, 0, 85000, 0, 0, -2723.15, -179.07, 7.2, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 510, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (411, 4, 'House Ghetto LS Small', 0, 0, 0, 10000, 1, 0, 2707.3, -1237.91, 59.67, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 511, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (412, 4, 'House Ghetto LS Small', 0, 0, 0, 10000, 500, 0, 2707.31, -1233.54, 61.07, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 512, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (413, 4, 'House Ghetto LS Small', 0, 0, 0, 10000, 0, 0, 2707.3, -1229.25, 62.3, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 513, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (414, 4, 'House Ghetto LS Small', 0, 0, 0, 10000, 0, 0, 2707.31, -1224.67, 63.58, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 514, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (415, 4, 'House Ghetto LS Small', 0, 0, 0, 10000, 500, 0, 2707.3, -1220.59, 64.88, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 515, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (416, 4, 'House Ghetto LS Small', 0, 0, 0, 10000, 5000, 0, 2707.3, -1216.32, 66.22, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 516, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (417, 4, 'House Ghetto LS Small', 0, 0, 0, 10000, 1000, 0, 2707.3, -1211.75, 67.61, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 517, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (418, 4, 'Normal Size Green/Brick House In SF', 0, 0, 0, 120000, 0, 0, -2723.32, -166.46, 5, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 518, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (419, 4, 'House Ghetto LS Small', 0, 0, 0, 10000, 0, 0, 2707.31, -1207.58, 68.75, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 519, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (420, 4, 'House Ghetto LS Small', 0, 0, 0, 10000, 0, 0, 2707.31, -1203.04, 69.68, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 520, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (421, 4, 'House Ghetto LS Small', 0, 0, 0, 10000, 0, 0, 2707.31, -1200.06, 70.46, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 521, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (422, 4, 'Appartment 1st Floor In SF', 0, 0, 0, 80000, 0, 0, -2724.67, -162.74, 4.34, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 522, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (423, 4, 'Appartment 2nd Floor In SF', 0, 0, 0, 80000, 0, 0, -2728.16, -155.7, 7.2, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 523, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (424, 4, 'Normal Size Green House In SF', 0, 0, 0, 85000, 0, 0, -2721.77, -146.75, 4.33, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 524, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (425, 4, 'Normal Size House In SF', 0, 0, 0, 85000, 0, 0, -2723.03, -139.4, 7.2, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 525, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (426, 4, 'Normal Size Blue House In SF', 0, 0, 0, 85000, 0, 0, -2723.33, -127.87, 5, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 526, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (427, 4, 'Apartment LS Medium', 0, 0, 0, 25000, 0, 0, 2781.94, -1358.42, 26.37, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 527, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (428, 4, 'Normal Size Very Light Green House In SF', 0, 0, 0, 55000, 0, 0, -2722.05, -120.75, 4.76, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 528, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (429, 4, 'Apartment LS Medium', 0, 0, 0, 25000, 0, 0, 2781.94, -1333.42, 32.4, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 529, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (430, 4, 'Apartment LS Medium', 0, 0, 0, 25000, 0, 0, 2782.15, -1306.33, 38.89, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 530, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (431, 4, 'Apartment LS Medium', 0, 0, 0, 25000, 0, 0, 2782.15, -1281.21, 44.37, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 531, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (432, 4, 'Apartment LS Medium', 0, 0, 0, 25000, 0, 0, 2809.53, -1324.86, 33.87, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 532, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (433, 4, 'Apartment LS Medium', 0, 0, 0, 25000, 0, 0, 2809.53, -1302.93, 38.93, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 533, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (434, 4, 'Apartment LS Medium', 0, 0, 0, 25000, 1, 0, 2809.53, -1281.04, 43.9, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 534, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (435, 4, 'Normal Size Pink House In SF', 0, 0, 0, 85000, 0, 0, -2723.02, -113.39, 7.2, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 535, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (436, 4, 'Apartment LS Medium', 0, 0, 0, 25000, 0, 0, 2807.98, -1353.99, 27.22, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 536, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (437, 4, 'Apartment LS Medium', 0, 0, 0, 25000, 0, 0, 2807.98, -1369.6, 23.58, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 537, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (438, 4, 'Appartment 1st Floor In SF', 0, 0, 0, 80000, 0, 0, -2724.65, -105.62, 4.34, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 538, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (439, 4, 'Appartment 2nd Floor In SF', 0, 0, 0, 80000, 0, 0, -2728.17, -98.41, 7.2, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 539, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (440, 4, 'Ls House Near Beach Medium', 0, 0, 0, 30000, 0, 0, 2846.99, -1309.7, 14.7, 0, 0, 0, 0, -1, 261.06, 1284.29, 1080.25, 0, 4, 540, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (441, 4, 'Normal Size House In SF', 0, 0, 0, 85000, 0, 0, -2725.75, -92.38, 7.2, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 541, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (442, 4, 'Appartment 1st Floor In SF', 0, 0, 0, 80000, 0, 0, -2724.7, -58.02, 4.34, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 542, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (443, 4, 'Appartment 2nd Floor In SF', 0, 0, 0, 80000, 0, 0, -2728.19, -51.06, 7.2, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 543, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (444, 4, 'Apartment Near the beach LS big', 0, 0, 0, 25000, 0, 0, 2851.85, -1365.97, 14.17, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 544, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (445, 4, 'Normal Size Very Light Green House In SF', 0, 0, 0, 55000, 0, 0, -2722.11, -44.71, 4.77, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 545, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (446, 4, 'Normal Size House In SF', 0, 0, 0, 85000, 0, 0, -2725.64, -36.6, 7.2, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 546, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (447, 4, 'Normal Size Pink/Brick House In SF', 0, 0, 0, 55000, 0, 0, -2721.8, -23.27, 4.57, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 547, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (448, 4, 'LS Apartment Near Beach Medium', 0, 0, 0, 40000, 0, 0, 2808.05, -1190.89, 25.34, 0, 0, 0, 0, -1, 225.75, 1240, 1082.15, 0, 2, 548, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (449, 4, 'LS Apartment Near Beach Medium', 0, 0, 0, 40000, 0, 0, 2808.01, -1175.92, 25.38, 0, 0, 0, 0, -1, 225.75, 1240, 1082.15, 0, 2, 549, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (450, 4, 'Normal Size Pink House In SF', 0, 0, 0, 85000, 0, 0, -2723.17, -17.31, 7.2, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 550, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (451, 4, 'Normal Size House In SF', 0, 0, 0, 85000, 0, 0, -2723.05, 4.47, 7.2, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 551, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (452, 4, 'Normal Size Very Light Green House In SF', 0, 0, 0, 55000, 0, 0, -2722.1, 14.48, 4.77, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 552, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (453, 4, 'LS Apartment Near Beach Medium', 0, 0, 0, 40000, 0, 0, 2842.19, -1334.78, 14.74, 0, 0, 0, 0, -1, 225.75, 1240, 1082.15, 0, 2, 553, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (454, 4, 'Normal Size Pink House In SF', 0, 0, 0, 85000, 0, 0, -2723.12, 21.93, 7.2, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 554, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (455, 4, 'Normal Size House In SF', 0, 0, 0, 85000, 0, 0, -2686.82, -188.19, 7.2, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 555, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (456, 4, 'Appartment 2nd Floor In SF', 0, 0, 0, 80000, 0, 0, -2684.41, -182.15, 7.2, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 556, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (457, 4, 'Appartment 1st Floor In SF', 0, 0, 0, 80000, 0, 0, -2687.89, -175.08, 4.34, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 557, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (458, 4, 'Normal Size Pink House In SF', 0, 0, 0, 85000, 0, 0, -2689.4, -167.3, 7.2, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 558, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (459, 4, 'Normal Size Light Green House In SF', 0, 0, 0, 55000, 0, 0, -2690.5, -159.76, 4.76, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 559, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (460, 4, 'Apartment Near the beach LS big', 0, 0, 0, 25000, 0, 0, 2755.71, -1400.45, 39.38, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 560, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (461, 4, 'Normal Size Blue House In SF', 0, 0, 0, 85000, 0, 0, -2689.24, -152.92, 5, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 561, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (462, 4, 'Normal Size House In SF', 0, 0, 0, 85000, 0, 0, -2689.38, -141.27, 7.2, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 562, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (463, 4, 'Apartment Near the beach LS big', 0, 0, 0, 25000, 0, 0, 2756.29, -1302.54, 53.09, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 563, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (464, 4, 'Apartment Near the beach LS big', 0, 0, 0, 25000, 0, 0, 2755.85, -1276.47, 56.59, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 564, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (465, 4, 'Normal Size Green House In SF', 0, 0, 0, 85000, 0, 0, -2690.79, -134.05, 4.33, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 565, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (466, 4, 'Appartment 2nd Floor In SF', 0, 0, 0, 80000, 0, 0, -2684.42, -125.07, 7.2, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 566, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (467, 4, 'Appartment 1st Floor In SF', 0, 0, 0, 80000, 0, 0, -2687.9, -118.16, 4.34, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 567, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (468, 4, 'LS Apartment Near Beach Medium', 0, 0, 0, 40000, 1000, 0, 2776.06, -1245.37, 49.58, 0, 0, 0, 0, -1, 225.75, 1240, 1082.15, 0, 2, 568, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (469, 4, 'LS Apartment Near Beach Medium', 0, 0, 0, 40000, 500, 0, 2797.81, -1245.37, 47.38, 0, 0, 0, 0, -1, 225.75, 1240, 1082.15, 0, 2, 569, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (470, 4, 'Normal Size Green/Brick House In SF', 0, 0, 0, 120000, 0, 0, -2689.25, -114.14, 5, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 570, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (471, 4, 'Normal Size Pink House In SF', 0, 0, 0, 85000, 0, 0, -2689.35, -101.62, 7.2, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 571, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (472, 4, 'Appartment 2nd Floor In SF', 0, 0, 0, 80000, 0, 0, -2684.55, -96.44, 7.2, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 572, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (473, 4, 'Appartment 1st Floor In SF', 0, 0, 0, 80000, 0, 0, -2688.06, -89.44, 4.33, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 573, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (474, 4, 'LS Apartment Near Beach Medium', 0, 0, 0, 40000, 0, 0, 2750.39, -1238.8, 61.52, 0, 0, 0, 0, -1, 225.75, 1240, 1082.15, 0, 2, 574, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (475, 4, 'LS Apartment Near Beach Medium', 0, 0, 0, 40000, 0, 0, 2750.39, -1222.23, 64.6, 0, 0, 0, 0, -1, 225.75, 1240, 1082.15, 0, 2, 575, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (476, 4, 'LS Apartment Near Beach Medium', 0, 0, 0, 40000, 0, 0, 2750.39, -1205.76, 67.48, 0, 0, 0, 0, -1, 225.75, 1240, 1082.15, 0, 2, 576, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (477, 4, 'Apartment Near the beach LS big', 0, 0, 0, 25000, 0, 0, 2756.27, -1182.81, 69.4, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 577, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (478, 4, 'Normal Size Pink House In SF', 0, 0, 0, 85000, 0, 0, -2689.38, 57.09, 7.2, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 578, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (479, 4, 'Normal Size Light Green House In SF', 0, 0, 0, 55000, 1, 0, -2690.49, 64.59, 4.76, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 579, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (480, 4, 'Normal Size House In SF', 0, 0, 0, 85000, 0, 0, -2689.49, 74.56, 7.2, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 580, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (481, 4, 'Ghetto Project Apartment LS Small', 0, 0, 0, 2000, 0, 0, 2628.09, -1067.86, 69.71, 0, 0, 0, 0, -1, 243.72, 304.97, 999.14, 0, 1, 581, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (482, 4, 'Ghetto Project Apartment LS Small', 0, 0, 0, 2000, 0, 0, 2627.64, -1085.13, 69.71, 0, 0, 0, 0, -1, 243.72, 304.97, 999.14, 0, 1, 582, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (483, 4, 'Normal Size Pink House In SF', 0, 0, 0, 85000, 0, 0, -2689.33, 96.31, 7.2, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 583, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (484, 4, 'Ghetto Project Apartment LS Small', 0, 0, 0, 2000, 0, 0, 2625.93, -1098.64, 69.36, 0, 0, 0, 0, -1, 243.72, 304.97, 999.14, 0, 1, 584, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (485, 4, 'Ghetto Project Apartment LS Small', 0, 0, 0, 2000, 0, 0, 2625.94, -1112.61, 68, 0, 0, 0, 0, -1, 243.72, 304.97, 999.14, 0, 1, 585, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (486, 4, 'Normal Size Pink/Brick House In SF', 0, 0, 0, 55000, 1500, 0, -2690.78, 102.29, 4.57, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 586, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (487, 4, 'Ghetto Project Apartment LS Small', 0, 0, 0, 2000, 0, 0, 2611.24, -1111.19, 68.25, 0, 0, 0, 0, -1, 243.72, 304.97, 999.14, 0, 1, 587, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (488, 4, 'Ghetto Project Apartment LS Small', 0, 0, 0, 2000, 0, 0, 2611.23, -1097.24, 69.6, 0, 0, 0, 0, -1, 243.72, 304.97, 999.14, 0, 1, 588, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (489, 4, 'Ghetto Project Apartment LS Small', 0, 0, 0, 2000, 0, 0, 2612.94, -1083.18, 69.96, 0, 0, 0, 0, -1, 243.72, 304.97, 999.14, 0, 1, 589, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (490, 4, 'Normal Size House In SF', 0, 0, 0, 85000, 0, 0, -2687.1, 115.56, 7.2, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 590, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (491, 4, 'Ghetto Project Apartment LS Small', 0, 0, 0, 2000, 0, 0, 2613.39, -1065.9, 69.96, 0, 0, 0, 0, -1, 243.72, 304.97, 999.14, 0, 1, 591, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (492, 4, 'Ghetto Project Apartment LS Small', 0, 0, 0, 2000, 0, 0, 2618.94, -1118.48, 68, 0, 0, 0, 0, -1, 243.72, 304.97, 999.14, 0, 1, 592, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (493, 4, 'Normal Size Very Light Green House In SF', 0, 0, 0, 55000, 0, 0, -2690.51, 123.6, 4.75, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 593, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (494, 4, 'Appartment 2nd Floor In SF', 0, 0, 0, 80000, 0, 0, -2684.4, 129.99, 7.2, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 594, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (495, 4, 'Appartment 1st Floor In SF', 0, 0, 0, 80000, 0, 0, -2687.88, 137.03, 4.34, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 595, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (496, 4, 'House Ghetto LS Small', 0, 0, 0, 10000, 0, 0, 2572.3, -1091.85, 67.22, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 596, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (497, 4, 'House Ghetto LS Small', 0, 0, 0, 10000, 0, 0, 2519.02, -1112.99, 56.59, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 597, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (498, 4, 'House Ghetto LS Small', 0, 0, 0, 10000, 0, 0, 2576.68, -1070.67, 69.83, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 598, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (499, 4, 'House Ghetto LS Small', 0, 0, 0, 10000, 0, 0, 2579.61, -1033.2, 69.58, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 599, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (500, 4, 'House Ghetto LS Small', 0, 0, 0, 10000, 0, 0, 2562.11, -1034.28, 69.87, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 600, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (501, 4, 'Normal Size House In SF', 0, 0, 0, 85000, 5000, 0, -2692.95, 189.45, 7.2, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 601, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (502, 4, 'House Ghetto LS Small', 0, 0, 0, 10000, 0, 0, 2549.2, -1032.15, 69.58, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 602, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (503, 4, '3 Story Condo In SF', 0, 0, 0, 120000, 0, 0, -2358.3, 820.03, 38.53, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 603, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (504, 4, '3 Story Condo In SF', 0, 0, 0, 120000, 0, 0, -2340.18, 819.85, 41.97, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 604, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (505, 4, '3 Story Condo In SF', 0, 0, 0, 120000, 0, 0, -2321.9, 820, 45.34, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 605, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (506, 4, '3 Story Condo In SF', 0, 0, 0, 120000, 0, 0, -2303.4, 819.97, 48.7, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 606, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (507, 4, '3 Story Condo In SF', 0, 0, 0, 120000, 0, 0, -2282.42, 873.14, 66.92, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 607, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (508, 4, '3 Story Condo In SF', 0, 0, 0, 120000, 0, 0, -2285.08, 849.13, 65.64, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 608, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (509, 4, '3 Story Condo In SF', 0, 0, 0, 120000, 0, 0, -2285.3, 828.92, 57.17, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 609, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (510, 4, '3 Story Condo In SF', 0, 0, 0, 120000, 0, 0, -2294.99, 969.98, 65.33, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 610, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (511, 4, '3 Story Condo In SF', 0, 0, 0, 120000, 0, 0, -2307.55, 944.26, 61.61, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 611, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (512, 4, '3 Story Condo In SF', 0, 0, 0, 120000, 0, 0, -2325.89, 944.26, 55.32, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 612, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (513, 4, '5 Story Condo In SF', 0, 0, 0, 500000, 0, 0, -2238.8, 943.84, 66.65, 0, 0, 0, 0, -1, 226.3, 1114.37, 1080.99, 0, 5, 613, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (514, 4, '5 Story Condo In SF', 0, 0, 0, 500000, 0, 0, -2238.89, 962.11, 66.65, 0, 0, 0, 0, -1, 226.3, 1114.37, 1080.99, 0, 5, 614, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (515, 4, '5 Story Condo In SF', 0, 0, 0, 500000, 0, 0, -2238.82, 980.75, 71.52, 0, 0, 0, 0, -1, 226.3, 1114.37, 1080.99, 0, 5, 615, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (516, 4, '4 Story Condo In SF', 0, 0, 0, 400000, 0, 0, -2238.79, 998.81, 78.98, 0, 0, 0, 0, -1, 234.22, 1063.89, 358.5, 0, 6, 616, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (517, 4, '5 Story Condo In SF', 0, 0, 0, 500000, 0, 0, -2229.28, 934.38, 66.65, 0, 0, 0, 0, -1, 226.3, 1114.37, 1080.99, 0, 5, 617, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (518, 4, '5 Story Condo In SF', 0, 0, 0, 500000, 0, 0, -2210.94, 934.38, 68.97, 0, 0, 0, 0, -1, 226.3, 1114.37, 1080.99, 0, 5, 618, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (519, 4, '4 Story Condo In SF', 0, 0, 0, 400000, 0, 0, -2192.54, 934.38, 75.02, 0, 0, 0, 0, -1, 234.22, 1063.89, 358.5, 0, 6, 619, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (520, 4, '3 Story Condo In SF', 0, 0, 0, 120000, 0, 0, -2174.13, 934.36, 80, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 620, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (521, 4, '3 Story Condo In SF', 0, 0, 0, 120000, 0, 0, -2160.15, 947.01, 80, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 621, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (522, 4, '3 Story Condo In SF', 0, 0, 0, 120000, 0, 0, -2160.14, 965.32, 80, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 622, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (523, 4, '3 Story Condo In SF', 0, 0, 0, 120000, 0, 0, -2160.15, 983.75, 80, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 623, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (524, 4, '3 Story Condo In SF', 0, 0, 0, 120000, 0, 0, -2160.11, 1002.05, 80, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 624, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (525, 4, 'House Ghetto LS Small', 0, 0, 0, 10000, 0, 0, 2440.48, -1057.34, 54.74, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 625, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (526, 4, '5 Story Condo In SF', 0, 0, 0, 500000, 0, 0, -2233.82, 888.8, 66.65, 0, 0, 0, 0, -1, 226.3, 1114.37, 1080.99, 0, 5, 626, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (527, 4, '3 Story Condo In SF', 0, 0, 0, 120000, 0, 0, -2233.83, 870.58, 66.64, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 627, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (528, 4, '3 Story Condo In SF', 0, 0, 0, 120000, 0, 0, -2233.27, 848.86, 61.89, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 628, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (529, 4, '3 Story Condo In SF', 0, 0, 0, 120000, 0, 0, -2233.27, 830.7, 54.3, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 629, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (530, 4, '4 Story Condo In SF', 0, 0, 0, 400000, 0, 0, -2223.85, 821.13, 49.44, 0, 0, 0, 0, -1, 234.22, 1063.89, 358.5, 0, 6, 630, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (531, 4, '3 Story Condo In SF', 0, 0, 0, 120000, 0, 0, -2205.37, 821.13, 50.49, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 631, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (532, 4, '3 Story Condo In SF', 0, 0, 0, 120000, 0, 0, -2187.07, 821.13, 57.55, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 632, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (533, 4, '3 Story Condo In SF', 0, 0, 0, 120000, 0, 0, -2168.71, 821.13, 64.97, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 633, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (534, 4, 'Huge house at Vinewood LS', 0, 0, 0, 450000, 1000, 0, 646.06, -1117.35, 44.21, 0, 0, 0, 0, -1, 491.06, 1400.39, 1080.26, 0, 2, 634, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (535, 4, '3 Story Condo In SF', 0, 0, 0, 120000, 0, 0, -2159.21, 830.74, 69.52, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 635, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (536, 4, 'Huge house at Vinewood LS', 0, 0, 0, 450000, 550, 0, 398.17, -1271.36, 50.02, 0, 0, 0, 0, -1, 491.06, 1400.39, 1080.26, 0, 2, 636, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (537, 4, '3 Story Condo In SF', 0, 0, 0, 120000, 0, 0, -2159.22, 866.53, 75.35, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 637, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (538, 4, '3 Story Condo In SF', 0, 0, 0, 120000, 0, 0, -2158.67, 889.11, 80.01, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 638, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (539, 4, '3 Story Condo In SF', 0, 0, 0, 120000, 0, 0, -2174.37, 902.73, 80.01, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 639, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (540, 4, 'Mansion', 0, 0, 0, 450000, 0, 0, 298.84, -1338.5, 53.44, 0, 0, 0, 0, -1, 491.06, 1400.39, 1080.26, 0, 2, 640, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (541, 4, '4 Story Condo In SF', 0, 0, 0, 400000, 0, 0, -2192.49, 902.68, 75.04, 0, 0, 0, 0, -1, 234.22, 1063.89, 358.5, 0, 6, 641, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (542, 4, 'Mansion', 0, 0, 0, 450000, 0, 0, 254.38, -1367.12, 53.11, 0, 0, 0, 0, -1, 491.06, 1400.39, 1080.26, 0, 2, 642, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (543, 4, '5 Story Condo In SF', 0, 0, 0, 500000, 0, 0, -2211.06, 902.68, 68.93, 0, 0, 0, 0, -1, 226.3, 1114.37, 1080.99, 0, 5, 643, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (544, 4, '5 Story Condo In SF', 0, 0, 0, 500000, 0, 0, -2224.88, 902.67, 66.65, 0, 0, 0, 0, -1, 226.3, 1114.37, 1080.99, 0, 5, 644, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (545, 4, '4 Story Condo In SF', 0, 0, 0, 400000, 0, 0, -2282.4, 979.39, 70.89, 0, 0, 0, 0, -1, 234.22, 1063.89, 358.5, 0, 6, 645, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (546, 4, '4 Story Condo In SF', 0, 0, 0, 400000, 0, 0, -2282.14, 999.63, 79.3, 0, 0, 0, 0, -1, 234.22, 1063.89, 358.5, 0, 6, 646, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (547, 4, '3 Story Condo In SF', 0, 0, 0, 120000, 0, 0, -2282.39, 1023.13, 84.11, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 647, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (548, 4, '3 Story Condo In SF', 0, 0, 0, 120000, 0, 0, -2282.42, 1046.67, 84.12, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 648, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (549, 4, '3 Story Condo In SF', 0, 0, 0, 120000, 0, 0, -2282.4, 1070.26, 81.7, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 649, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (550, 4, '3 Story Condo In SF', 0, 0, 0, 120000, 0, 0, -2282.42, 1088.93, 80.41, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 650, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (551, 4, '5 Story Condo In SF', 0, 0, 0, 500000, 0, 0, -2280.84, 1112.55, 76.98, 0, 0, 0, 0, -1, 226.3, 1114.37, 1080.99, 0, 5, 651, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (552, 4, '5 Story Condo In SF', 0, 0, 0, 500000, 0, 0, -2280.83, 1130.83, 69.23, 0, 0, 0, 0, -1, 226.3, 1114.37, 1080.99, 0, 5, 652, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (553, 4, 'Huge house at Vinewood', 0, 0, 0, 600000, 0, 0, 219.26, -1249.79, 78.33, 0, 0, 0, 0, -1, 226.3, 1114.37, 1080.99, 0, 5, 653, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (554, 4, '5 Story Condo In SF', 0, 0, 0, 500000, 0, 0, -2280.83, 1149.17, 61.61, 0, 0, 0, 0, -1, 226.3, 1114.37, 1080.99, 0, 5, 654, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (555, 4, 'Very Small House In SF', 0, 0, 0, 25000, 0, 0, -2358.98, 1118.09, 55.73, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 655, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (556, 4, 'Small Very Nice House In SF', 0, 0, 0, 55000, 0, 0, -2369.4, 1122.32, 55.73, 0, 0, 0, 0, -1, 295.21, 1472.26, 1080.25, 0, 15, 656, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (557, 4, 'LS Apartment Near Beach Medium', 0, 0, 0, 40000, 0, 0, 662.43, -1466.81, 14.85, 0, 0, 0, 0, -1, 225.75, 1240, 1082.15, 0, 2, 657, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (558, 4, 'LS Apartment Near Beach Medium', 0, 0, 0, 40000, 500, 0, 657.39, -1481.28, 14.85, 0, 0, 0, 0, -1, 225.75, 1240, 1082.15, 0, 2, 658, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (559, 4, 'LS Apartment Near Beach Medium', 0, 0, 0, 40000, 499, 0, 662.43, -1487.5, 14.85, 0, 0, 0, 0, -1, 225.75, 1240, 1082.15, 0, 2, 659, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (560, 4, 'LS Apartment Near Beach Medium', 0, 0, 0, 40000, 0, 0, 648.85, -1489.52, 14.84, 0, 0, 0, 0, -1, 225.75, 1240, 1082.15, 0, 2, 660, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (561, 4, 'LS Apartment Near Beach Medium', 0, 0, 0, 40000, 5000, 0, 648.86, -1442.35, 14.73, 0, 0, 0, 0, -1, 225.75, 1240, 1082.15, 0, 2, 661, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (562, 4, 'LS Apartment Near Beach Medium', 0, 0, 0, 40000, 500, 0, 657.35, -1434.11, 14.85, 0, 0, 0, 0, -1, 225.75, 1240, 1082.15, 0, 2, 662, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (563, 4, 'LS Apartment Near Beach Medium', 0, 0, 0, 40000, 0, 0, 662.43, -1440.42, 14.85, 0, 0, 0, 0, -1, 225.75, 1240, 1082.15, 0, 2, 663, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (564, 4, 'LS Apartment Near Beach Medium', 0, 0, 0, 40000, 0, 0, 685.53, -1421.91, 14.77, 0, 0, 0, 0, -1, 225.75, 1240, 1082.15, 0, 2, 664, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (565, 4, 'LS Apartment Near Beach Medium', 0, 0, 0, 40000, 0, 0, 739.09, -1418.51, 13.52, 0, 0, 0, 0, -1, 225.75, 1240, 1082.15, 0, 2, 665, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (566, 4, 'LS Apartment Near Beach Medium', 0, 0, 0, 40000, 0, 0, 738.98, -1428.77, 13.9, 0, 0, 0, 0, -1, 225.75, 1240, 1082.15, 0, 2, 666, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (567, 4, 'LS Apartment Near Beach Medium', 0, 0, 0, 40000, 0, 0, 725.6, -1440.45, 13.53, 0, 0, 0, 0, -1, 225.75, 1240, 1082.15, 0, 2, 667, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (568, 4, 'LS Apartment Near Beach Medium', 0, 0, 0, 40000, 500, 0, 662.43, -1514.03, 14.85, 0, 0, 0, 0, -1, 225.75, 1240, 1082.15, 0, 2, 668, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (569, 4, 'LS Apartment Near Beach Medium', 0, 0, 0, 40000, 0, 0, 657.43, -1528.46, 14.85, 0, 0, 0, 0, -1, 225.75, 1240, 1082.15, 0, 2, 669, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (570, 4, 'LS Apartment Near Beach Medium', 0, 0, 0, 40000, 3000, 0, 662.43, -1534.8, 14.85, 0, 0, 0, 0, -1, 225.75, 1240, 1082.15, 0, 2, 670, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (571, 4, 'LS Apartment Near Beach Medium', 0, 0, 0, 40000, 0, 0, 648.85, -1536.7, 14.93, 0, 0, 0, 0, -1, 225.75, 1240, 1082.15, 0, 2, 671, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (572, 4, 'LS Apartment Near Beach Medium', 0, 0, 0, 40000, 0, 0, 653.24, -1619.92, 15, 0, 0, 0, 0, -1, 225.75, 1240, 1082.15, 0, 2, 672, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (573, 4, 'LS Apartment Near Beach Medium', 0, 0, 0, 40000, 0, 0, 692.86, -1602.77, 15.04, 0, 0, 0, 0, -1, 225.75, 1240, 1082.15, 0, 2, 673, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (574, 4, 'LS Apartment Near Beach Medium', 0, 0, 0, 40000, 0, 0, 697.28, -1627, 3.75, 0, 0, 0, 0, -1, 225.75, 1240, 1082.15, 0, 2, 674, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (575, 4, 'LS Apartment Near Beach Medium', 0, 0, 0, 40000, 0, 0, 813.69, -1456.63, 14.22, 0, 0, 0, 0, -1, 225.75, 1240, 1082.15, 0, 2, 675, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (576, 4, 'Small House In SF', 0, 0, 0, 30000, 0, 0, -2383.75, 1128.1, 55.73, 0, 0, 0, 0, -1, 261.06, 1284.29, 1080.25, 0, 4, 676, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (577, 4, 'Apartment Near the beach LS big', 0, 0, 0, 25000, 100, 0, 822.38, -1505.51, 14.4, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 677, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (578, 4, 'Small Nice House In SF', 0, 0, 0, 60000, 0, 0, -2396.81, 1132.76, 55.73, 0, 0, 0, 0, -1, 22.93, 1403.32, 1084.43, 0, 5, 678, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (579, 4, 'Apartment Near the beach LS big', 0, 0, 0, 25000, 0, 0, 849.59, -1519.96, 14.35, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 679, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (580, 4, 'Small House In SF', 0, 0, 0, 30000, 0, 0, -2407.02, 1135.82, 55.73, 0, 0, 0, 0, -1, 261.06, 1284.29, 1080.25, 0, 4, 680, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (581, 4, 'LS Apartment Near Beach Medium', 0, 0, 0, 40000, 5000, 0, 771.12, -1510.72, 13.54, 0, 0, 0, 0, -1, 225.75, 1240, 1082.15, 0, 2, 681, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (582, 4, 'LS Apartment Near Beach Medium', 0, 0, 0, 40000, 0, 0, 761.07, -1564.08, 13.93, 0, 0, 0, 0, -1, 225.75, 1240, 1082.15, 0, 2, 682, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (583, 4, 'LS Apartment Near Beach Medium', 0, 0, 0, 25000, 0, 0, 841.34, -1471.36, 14.31, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 683, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (584, 4, 'Apartment Near the beach LS big', 0, 0, 0, 25000, 0, 0, 782.79, -1464.49, 13.54, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 684, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (585, 4, 'Apartment Near the beach LS big', 0, 0, 0, 25000, 0, 0, 824.5, -1424.2, 14.5, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 685, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (586, 4, 'Apartment Near the beach LS big', 0, 0, 0, 25000, 0, 0, 852.2, -1423.27, 14.13, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 686, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (587, 4, 'Small House In SF', 0, 0, 0, 30000, 0, 0, -2413.67, 1137.49, 55.73, 0, 0, 0, 0, -1, 261.06, 1284.29, 1080.25, 0, 4, 687, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (588, 4, 'Apartment Near the beach LS big', 0, 0, 0, 25000, 0, 0, 880.12, -1424.82, 14.48, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 688, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (589, 4, 'Small Very Nice House In SF', 0, 0, 0, 55000, 0, 0, -2424.02, 1139.41, 55.73, 0, 0, 0, 0, -1, 295.21, 1472.26, 1080.25, 0, 15, 689, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (590, 4, 'Apartment Near the beach LS big', 0, 0, 0, 25000, 0, 0, 900.22, -1447.41, 14.37, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 690, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (591, 4, 'Apartment Near the beach LS big', 0, 0, 0, 25000, 0, 0, 898.28, -1445.64, 14.36, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 691, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (592, 4, 'Small House In SF', 0, 0, 0, 30000, 0, 0, -2438.17, 1141, 55.73, 0, 0, 0, 0, -1, 261.06, 1284.29, 1080.25, 0, 4, 692, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (593, 4, 'Apartment Near the beach LS big', 0, 0, 0, 25000, 4999, 0, 900.2, -1471.03, 14.34, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 693, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (594, 4, 'Apartment Near the beach LS big', 0, 0, 0, 25000, 5000, 0, 898.36, -1472.83, 14.34, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 694, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (595, 4, 'Apartment Near the beach LS big', 0, 0, 0, 25000, 0, 0, 852.51, -1436.23, 15.04, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 695, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (596, 4, 'Small Very Nice House In SF', 0, 0, 0, 55000, 0, 0, -2451.11, 1141.75, 55.73, 0, 0, 0, 0, -1, 295.21, 1472.26, 1080.25, 0, 15, 696, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (597, 4, 'Apartment Near the beach LS big', 0, 0, 0, 25000, 0, 0, 784.39, -1436.11, 13.54, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 697, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (598, 4, 'Small House In SF', 0, 0, 0, 30000, 0, 0, -2461.57, 1141.9, 55.73, 0, 0, 0, 0, -1, 261.06, 1284.29, 1080.25, 0, 4, 698, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (599, 4, 'Apartment Near the beach LS big', 0, 0, 0, 25000, 1, 0, 987.5, -1624.49, 14.93, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 699, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (600, 4, 'Small House In SF', 0, 0, 0, 30000, 0, 0, -2468.52, 1141.91, 55.73, 0, 0, 0, 0, -1, 261.06, 1284.29, 1080.25, 0, 4, 700, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (601, 4, 'Small Nice House In SF', 0, 0, 0, 60000, 0, 0, -2478.92, 1141.96, 55.73, 0, 0, 0, 0, -1, 22.93, 1403.32, 1084.43, 0, 5, 701, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (602, 4, 'Apartment Near the beach LS big', 0, 0, 0, 25000, 1, 0, 987.52, -1704.34, 14.93, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 702, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (603, 4, 'Small House In SF', 0, 0, 0, 30000, 0, 0, -2493.18, 1141.98, 55.73, 0, 0, 0, 0, -1, 261.06, 1284.29, 1080.25, 0, 4, 703, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (604, 4, 'Small Nice House In SF', 0, 0, 0, 60000, 0, 0, -2506.44, 1142.08, 55.73, 0, 0, 0, 0, -1, 22.93, 1403.32, 1084.43, 0, 5, 704, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (605, 4, 'Small House In SF', 0, 0, 0, 30000, 0, 0, -2517, 1142.41, 55.73, 0, 0, 0, 0, -1, 261.06, 1284.29, 1080.25, 0, 4, 705, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (606, 4, 'Small House In SF', 0, 0, 0, 30000, 0, 0, -2523.88, 1142.67, 55.73, 0, 0, 0, 0, -1, 261.06, 1284.29, 1080.25, 0, 4, 706, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (607, 4, 'Small Nice House In SF', 0, 0, 0, 60000, 0, 0, -2534.53, 1143.77, 55.73, 0, 0, 0, 0, -1, 22.93, 1403.32, 1084.43, 0, 5, 707, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (608, 4, 'Small House In SF', 0, 0, 0, 30000, 0, 0, -2549.06, 1145.72, 55.73, 0, 0, 0, 0, -1, 261.06, 1284.29, 1080.25, 0, 4, 708, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (609, 4, 'Small Nice House In SF', 0, 0, 0, 60000, 0, 0, -2563.2, 1149.12, 55.73, 0, 0, 0, 0, -1, 22.93, 1403.32, 1084.43, 0, 5, 709, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (610, 4, 'LS Apartment Near Beach Medium', 0, 0, 0, 40000, 0, 0, 675.14, -1430.51, 14.85, 0, 0, 0, 0, -1, 225.75, 1240, 1082.15, 0, 2, 710, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (611, 4, 'LS Apartment Near Beach Medium', 0, 0, 0, 40000, 1, 0, 683.4, -1435.48, 14.85, 0, 0, 0, 0, -1, 225.75, 1240, 1082.15, 0, 2, 711, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (612, 4, 'LS Apartment Near Beach Medium', 0, 0, 0, 40000, 0, 0, 725.69, -1451.04, 17.69, 0, 0, 0, 0, -1, 225.75, 1240, 1082.15, 0, 2, 712, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (613, 4, 'LS Apartment Near Beach Medium', 0, 0, 0, 40000, 0, 0, 877.97, -1514.64, 14.35, 0, 0, 0, 0, -1, 225.75, 1240, 1082.15, 0, 2, 713, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (614, 4, 'LS Apartment Near Beach Medium', 0, 0, 0, 40000, 300, 0, 876.21, -1512.7, 14.35, 0, 0, 0, 0, -1, 225.75, 1240, 1082.15, 0, 2, 714, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (615, 4, 'LS Apartment Near Beach Medium', 0, 0, 0, 40000, 500, 0, 901.71, -1514.66, 14.36, 0, 0, 0, 0, -1, 225.75, 1240, 1082.15, 0, 2, 715, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (616, 4, 'LS Apartment Near Beach Medium', 0, 0, 0, 40000, 0, 0, 903.4, -1512.85, 14.36, 0, 0, 0, 0, -1, 225.75, 1240, 1082.15, 0, 2, 716, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (617, 4, 'LS Apartment Near Beach Medium', 0, 0, 0, 40000, 2000, 0, 797.24, -1729.38, 13.54, 0, 0, 0, 0, -1, 225.75, 1240, 1082.15, 0, 2, 717, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (618, 4, 'Medium Size House In SF', 0, 0, 0, 120000, 0, 0, -2711.23, 967.59, 54.46, 0, 0, 0, 0, -1, 447, 1397.09, 1084.3, 0, 2, 718, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (619, 4, 'Medium Size House In SF', 0, 0, 0, 120000, 0, 0, -2656.6, 985.82, 64.99, 0, 0, 0, 0, -1, 447, 1397.09, 1084.3, 0, 2, 719, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (620, 4, 'Small Nice House In SF', 0, 0, 0, 60000, 0, 0, -2584.18, 992.25, 78.27, 0, 0, 0, 0, -1, 22.93, 1403.32, 1084.43, 0, 5, 720, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (621, 4, 'LS Apartment Near Beach Medium', 0, 0, 0, 40000, 0, 0, 791.38, -1753.22, 13.46, 0, 0, 0, 0, -1, 225.75, 1240, 1082.15, 0, 2, 721, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (622, 4, 'Small House In SF', 0, 0, 0, 30000, 0, 0, -2573.6, 992.26, 78.27, 0, 0, 0, 0, -1, 261.06, 1284.29, 1080.25, 0, 4, 722, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (623, 4, 'LS Apartment Near Beach Medium', 0, 0, 0, 40000, 0, 0, 893.64, -1635.7, 14.93, 0, 0, 0, 0, -1, 225.75, 1240, 1082.15, 0, 2, 723, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (624, 4, 'Small House In SF', 0, 0, 0, 30000, 0, 0, -2564.32, 992.25, 78.27, 0, 0, 0, 0, -1, 261.06, 1284.29, 1080.25, 0, 4, 724, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (625, 4, 'LS Apartment Near Beach Medium', 0, 0, 0, 40000, 0, 0, 846.72, -1717.4, 14.93, 0, 0, 0, 0, -1, 225.75, 1240, 1082.15, 0, 2, 725, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (626, 4, 'Small Nice House In SF', 0, 0, 0, 60000, 0, 0, -2553.66, 992.25, 78.27, 0, 0, 0, 0, -1, 22.93, 1403.32, 1084.43, 0, 5, 726, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (627, 4, 'LS Apartment Near Beach Medium', 0, 0, 0, 40000, 0, 0, 865.22, -1633.84, 14.93, 0, 0, 0, 0, -1, 225.75, 1240, 1082.15, 0, 2, 727, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (628, 4, 'Appartment 2nd Floor In SF', 0, 0, 0, 80000, 0, 0, -2543.56, 922.38, 67.09, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 728, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (629, 4, 'Appartment 1st Floor In SF', 0, 0, 0, 80000, 0, 0, -2545.33, 920.34, 64.98, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 729, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (630, 4, 'Small Nice House In SF', 0, 0, 0, 60000, 0, 0, -2551.82, 920.38, 64.98, 0, 0, 0, 0, -1, 22.93, 1403.32, 1084.43, 0, 5, 730, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (631, 4, 'Small House In SF', 0, 0, 0, 30000, 0, 0, -2562.42, 920.37, 64.98, 0, 0, 0, 0, -1, 261.06, 1284.29, 1080.25, 0, 4, 731, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (632, 4, 'Small House In SF', 0, 0, 0, 30000, 0, 0, -2569.98, 920.36, 64.98, 0, 0, 0, 0, -1, 261.06, 1284.29, 1080.25, 0, 4, 732, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (633, 4, 'Small Nice House In SF', 0, 0, 0, 60000, 0, 0, -2580.92, 920.38, 64.98, 0, 0, 0, 0, -1, 22.93, 1403.32, 1084.43, 0, 5, 733, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (634, 4, 'Medium house at LV', 0, 0, 0, 150000, 0, 0, 1364.51, 1896.76, 11.47, 0, 0, 0, 0, -1, 447, 1397.09, 1084.3, 0, 2, 734, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (635, 4, 'Medium house at LV', 0, 0, 0, 150000, 5, 0, 1363.96, 1931.62, 11.47, 0, 0, 0, 0, -1, 447, 1397.09, 1084.3, 0, 2, 735, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (636, 4, '3 Floor House In SF', 0, 0, 0, 600000, 0, 0, -2641.24, 935.72, 71.95, 0, 0, 0, 0, -1, 226.3, 1114.37, 1080.99, 0, 5, 736, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (637, 4, 'Medium house at LV', 0, 0, 0, 150000, 0, 0, 1412.63, 1951.25, 11.45, 0, 0, 0, 0, -1, 447, 1397.09, 1084.3, 0, 2, 737, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (638, 4, 'Medium house at LV', 0, 0, 0, 150000, 0, 0, 1439.76, 1951.25, 11.46, 0, 0, 0, 0, -1, 447, 1397.09, 1084.3, 0, 2, 738, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (639, 4, 'Medium house at LV', 0, 0, 0, 150000, 0, 0, 1462.3, 1949.81, 11.47, 0, 0, 0, 0, -1, 447, 1397.09, 1084.3, 0, 2, 739, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (640, 4, 'Medium house at LV', 0, 0, 0, 150000, 0, 0, 1464.5, 1919.98, 11.46, 0, 0, 0, 0, -1, 447, 1397.09, 1084.3, 0, 2, 740, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (641, 4, 'Medium house at LV', 0, 0, 0, 150000, 0, 0, 1464.49, 1895.12, 11.46, 0, 0, 0, 0, -1, 447, 1397.09, 1084.3, 0, 2, 741, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (642, 4, 'Medium house at LV', 0, 0, 0, 150000, 0, 0, 1409.36, 1920.01, 11.47, 0, 0, 0, 0, -1, 447, 1397.09, 1084.3, 0, 2, 742, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (643, 4, 'Medium house at LV', 0, 0, 0, 150000, 0, 0, 1365.41, 1974.17, 11.46, 0, 0, 0, 0, -1, 447, 1397.09, 1084.3, 0, 2, 743, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (644, 4, 'Medium house at LV', 0, 0, 0, 150000, 0, 0, 1364.39, 2003.71, 11.46, 0, 0, 0, 0, -1, 447, 1397.09, 1084.3, 0, 2, 744, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (645, 4, 'Large House In SF', 0, 0, 0, 470000, 2500, 0, -2661.96, 876.34, 79.77, 0, 0, 0, 0, -1, 234.22, 1063.89, 1084.21, 0, 6, 745, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (646, 4, 'small project lv', 0, 0, 0, 30000, 0, 0, 1422.26, 2026.93, 14.74, 0, 0, 0, 0, -1, 266.5, 304.99, 999.14, 0, 2, 746, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (647, 4, 'Small Nice House In SF', 0, 0, 0, 60000, 0, 0, -2583.77, 896.25, 64.98, 0, 0, 0, 0, -1, 22.93, 1403.32, 1084.43, 0, 5, 747, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (648, 4, 'small project lv', 0, 0, 0, 30000, 0, 0, 1414.7, 2026.87, 10.82, 0, 0, 0, 0, -1, 266.5, 304.99, 999.14, 0, 2, 748, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (649, 4, 'small project lv', 0, 0, 0, 30000, 0, 0, 1422.25, 2026.95, 10.82, 0, 0, 0, 0, -1, 266.5, 304.99, 999.14, 0, 2, 749, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (650, 4, 'small project lv', 0, 0, 0, 30000, 0, 0, 1414.7, 2033.17, 10.82, 0, 0, 0, 0, -1, 266.5, 304.99, 999.14, 0, 2, 750, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (651, 4, 'small project lv', 0, 0, 0, 30000, 0, 0, 1422.25, 2033.18, 10.82, 0, 0, 0, 0, -1, 266.5, 304.99, 999.14, 0, 2, 751, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (652, 4, 'small project lv', 0, 0, 0, 30000, 0, 0, 1414.7, 2033.13, 14.74, 0, 0, 0, 0, -1, 266.5, 304.99, 999.14, 0, 2, 752, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (653, 4, 'small project lv', 0, 0, 0, 30000, 0, 0, 1422.25, 2033.18, 14.74, 0, 0, 0, 0, -1, 266.5, 304.99, 999.14, 0, 2, 753, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (654, 4, 'small project lv', 0, 0, 0, 30000, 0, 0, 1414.7, 2026.97, 14.74, 0, 0, 0, 0, -1, 266.5, 304.99, 999.14, 0, 2, 754, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (655, 4, 'small project lv', 0, 0, 0, 30000, 0, 0, 1453.72, 2026.92, 10.82, 0, 0, 0, 0, -1, 266.5, 304.99, 999.14, 0, 2, 755, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (656, 4, 'small project lv', 0, 0, 0, 30000, 0, 0, 1461.28, 2026.95, 10.82, 0, 0, 0, 0, -1, 266.5, 304.99, 999.14, 0, 2, 756, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (657, 4, 'small project lv', 0, 0, 0, 30000, 0, 0, 1453.72, 2033.22, 10.82, 0, 0, 0, 0, -1, 266.5, 304.99, 999.14, 0, 2, 757, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (658, 4, 'small project lv', 0, 0, 0, 30000, 0, 0, 1461.28, 2033.19, 10.82, 0, 0, 0, 0, -1, 266.5, 304.99, 999.14, 0, 2, 758, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (659, 4, 'small project lv', 0, 0, 0, 30000, 0, 0, 1453.72, 2033.21, 14.74, 0, 0, 0, 0, -1, 266.5, 304.99, 999.14, 0, 2, 759, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (660, 4, 'small project lv', 0, 0, 0, 30000, 0, 0, 1461.28, 2033.11, 14.74, 0, 0, 0, 0, -1, 266.5, 304.99, 999.14, 0, 2, 760, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (661, 4, 'small project lv', 0, 0, 0, 30000, 0, 0, 1453.72, 2026.95, 14.74, 0, 0, 0, 0, -1, 266.5, 304.99, 999.14, 0, 2, 761, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (662, 4, 'small project lv', 0, 0, 0, 30000, 0, 0, 1461.28, 2026.91, 14.74, 0, 0, 0, 0, -1, 266.5, 304.99, 999.14, 0, 2, 762, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (663, 4, 'Small House In SF', 0, 0, 0, 30000, 0, 0, -2573.13, 896.26, 64.98, 0, 0, 0, 0, -1, 261.06, 1284.29, 1080.25, 0, 4, 763, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (664, 4, 'small project lv', 0, 0, 0, 30000, 0, 0, 1414.53, 2003.91, 10.82, 0, 0, 0, 0, -1, 266.5, 304.99, 999.14, 0, 2, 764, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (665, 4, 'small project lv', 0, 0, 0, 30000, 0, 0, 1414.48, 1996.36, 10.82, 0, 0, 0, 0, -1, 266.5, 304.99, 999.14, 0, 2, 765, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (666, 4, 'Small House In SF', 0, 0, 0, 30000, 0, 0, -2566.5, 896.65, 64.98, 0, 0, 0, 0, -1, 261.06, 1284.29, 1080.25, 0, 4, 766, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (667, 4, 'small project lv', 0, 0, 0, 30000, 0, 0, 1408.26, 2003.91, 10.82, 0, 0, 0, 0, -1, 266.5, 304.99, 999.14, 0, 2, 767, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (668, 4, 'small project lv', 0, 0, 0, 30000, 0, 0, 1408.18, 1996.36, 10.82, 0, 0, 0, 0, -1, 266.5, 304.99, 999.14, 0, 2, 768, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (669, 4, 'small project lv', 0, 0, 0, 30000, 0, 0, 1408.31, 1996.36, 14.74, 0, 0, 0, 0, -1, 266.5, 304.99, 999.14, 0, 2, 769, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (670, 4, 'small project lv', 0, 0, 0, 30000, 0, 0, 1408.35, 2003.91, 14.74, 0, 0, 0, 0, -1, 266.5, 304.99, 999.14, 0, 2, 770, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (671, 4, 'small project lv', 0, 0, 0, 30000, 0, 0, 1414.51, 1996.36, 14.74, 0, 0, 0, 0, -1, 266.5, 304.99, 999.14, 0, 2, 771, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (672, 4, 'small project lv', 0, 0, 0, 30000, 0, 0, 1414.52, 2003.91, 14.74, 0, 0, 0, 0, -1, 266.5, 304.99, 999.14, 0, 2, 772, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (673, 4, 'Small Nice House In SF', 0, 0, 0, 60000, 0, 0, -2556.02, 896.64, 64.98, 0, 0, 0, 0, -1, 22.93, 1403.32, 1084.43, 0, 5, 773, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (674, 4, 'small project lv', 0, 0, 0, 30000, 0, 0, 1495.69, 2026.97, 10.82, 0, 0, 0, 0, -1, 266.5, 304.99, 999.14, 0, 2, 774, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (675, 4, 'small project lv', 0, 0, 0, 30000, 0, 0, 1503.24, 2027.01, 10.82, 0, 0, 0, 0, -1, 266.5, 304.99, 999.14, 0, 2, 775, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (676, 4, 'small project lv', 0, 0, 0, 30000, 0, 0, 1495.69, 2033.25, 10.82, 0, 0, 0, 0, -1, 266.5, 304.99, 999.14, 0, 2, 776, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (677, 4, 'small project lv', 0, 0, 0, 30000, 0, 0, 1503.24, 2033.15, 10.82, 0, 0, 0, 0, -1, 266.5, 304.99, 999.14, 0, 2, 777, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (678, 4, 'small project lv', 0, 0, 0, 30000, 0, 0, 1495.69, 2033.16, 14.74, 0, 0, 0, 0, -1, 266.5, 304.99, 999.14, 0, 2, 778, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (679, 4, 'small project lv', 0, 0, 0, 30000, 0, 0, 1503.25, 2033.2, 14.74, 0, 0, 0, 0, -1, 266.5, 304.99, 999.14, 0, 2, 779, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (680, 4, 'small project lv', 0, 0, 0, 30000, 0, 0, 1495.69, 2027.01, 14.74, 0, 0, 0, 0, -1, 266.5, 304.99, 999.14, 0, 2, 780, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (681, 4, 'small project lv', 0, 0, 0, 30000, 0, 0, 1503.24, 2026.85, 14.74, 0, 0, 0, 0, -1, 266.5, 304.99, 999.14, 0, 2, 781, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (682, 4, 'small project lv', 0, 0, 0, 30000, 0, 0, 1534.72, 2026.98, 10.82, 0, 0, 0, 0, -1, 266.5, 304.99, 999.14, 0, 2, 782, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (683, 4, 'small project lv', 0, 0, 0, 30000, 0, 0, 1542.26, 2026.88, 10.82, 0, 0, 0, 0, -1, 266.5, 304.99, 999.14, 0, 2, 783, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (684, 4, 'small project lv', 0, 0, 0, 30000, 0, 0, 1534.72, 2033.18, 10.82, 0, 0, 0, 0, -1, 266.5, 304.99, 999.14, 0, 2, 784, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (685, 4, 'small project lv', 0, 0, 0, 30000, 0, 0, 1542.27, 2033.22, 10.82, 0, 0, 0, 0, -1, 266.5, 304.99, 999.14, 0, 2, 785, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (686, 4, 'Small House In SF', 0, 0, 0, 30000, 0, 0, -2541.55, 896.64, 64.98, 0, 0, 0, 0, -1, 261.06, 1284.29, 1080.25, 0, 4, 786, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (687, 4, 'small project lv', 0, 0, 0, 30000, 0, 0, 1534.72, 2033.23, 14.74, 0, 0, 0, 0, -1, 266.5, 304.99, 999.14, 0, 2, 787, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (688, 4, 'small project lv', 0, 0, 0, 30000, 0, 0, 1542.27, 2033.12, 14.74, 0, 0, 0, 0, -1, 266.5, 304.99, 999.14, 0, 2, 788, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (689, 4, 'small project lv', 0, 0, 0, 30000, 0, 0, 1534.71, 2027, 14.74, 0, 0, 0, 0, -1, 266.5, 304.99, 999.14, 0, 2, 789, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (690, 4, 'small project lv', 0, 0, 0, 30000, 0, 0, 1542.27, 2026.88, 14.74, 0, 0, 0, 0, -1, 266.5, 304.99, 999.14, 0, 2, 790, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (691, 4, 'small project lv', 0, 0, 0, 30000, 0, 0, 1542.45, 2003.91, 10.82, 0, 0, 0, 0, -1, 266.5, 304.99, 999.14, 0, 2, 791, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (692, 4, 'small project lv', 0, 0, 0, 30000, 0, 0, 1542.49, 1996.36, 10.82, 0, 0, 0, 0, -1, 266.5, 304.99, 999.14, 0, 2, 792, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (693, 4, 'small project lv', 0, 0, 0, 30000, 0, 0, 1548.75, 2003.91, 10.82, 0, 0, 0, 0, -1, 266.5, 304.99, 999.14, 0, 2, 793, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (694, 4, 'small project lv', 0, 0, 0, 30000, 0, 0, 1548.68, 1996.35, 10.82, 0, 0, 0, 0, -1, 266.5, 304.99, 999.14, 0, 2, 794, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (695, 4, 'small project lv', 0, 0, 0, 30000, 0, 0, 1548.7, 2003.91, 14.74, 0, 0, 0, 0, -1, 266.5, 304.99, 999.14, 0, 2, 795, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (696, 4, 'small project lv', 0, 0, 0, 30000, 0, 0, 1548.64, 1996.35, 14.74, 0, 0, 0, 0, -1, 266.5, 304.99, 999.14, 0, 2, 796, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (697, 4, 'small project lv', 0, 0, 0, 30000, 0, 0, 1542.55, 2003.89, 14.74, 0, 0, 0, 0, -1, 266.5, 304.99, 999.14, 0, 2, 797, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (698, 4, 'small project lv', 0, 0, 0, 30000, 0, 0, 1542.41, 1996.35, 14.74, 0, 0, 0, 0, -1, 266.5, 304.99, 999.14, 0, 2, 798, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (699, 4, 'Medium house at LV', 0, 0, 0, 150000, 0, 0, 1595.5, 2038.34, 11.47, 0, 0, 0, 0, -1, 447, 1397.09, 1084.3, 0, 2, 799, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (700, 4, '3 Story Condo In SF', 0, 0, 0, 120000, 0, 0, -2502.88, 921.37, 65.24, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 800, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (701, 4, 'Medium house at LV', 0, 0, 0, 150000, 0, 0, 1641.79, 2044.95, 11.32, 0, 0, 0, 0, -1, 447, 1397.09, 1084.3, 0, 2, 801, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (702, 4, 'Medium house at LV', 0, 0, 0, 150000, 0, 0, 1594.96, 2071.07, 11.32, 0, 0, 0, 0, -1, 447, 1397.09, 1084.3, 0, 2, 802, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (703, 4, '3 Story Condo In SF', 0, 0, 0, 120000, 0, 0, -2471.77, 921.42, 63.16, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 803, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (704, 4, 'Medium house at LV', 0, 0, 0, 150000, 0, 0, 1596.41, 2093.74, 11.31, 0, 0, 0, 0, -1, 447, 1397.09, 1084.3, 0, 2, 804, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (705, 4, 'Medium house at LV', 0, 0, 0, 150000, 0, 0, 1640.35, 2075.67, 11.31, 0, 0, 0, 0, -1, 447, 1397.09, 1084.3, 0, 2, 805, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (706, 4, 'Medium house at LV', 0, 0, 0, 150000, 0, 0, 1640.35, 2102.86, 11.31, 0, 0, 0, 0, -1, 447, 1397.09, 1084.3, 0, 2, 806, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (707, 4, '3 Story Condo In SF', 0, 0, 0, 120000, 0, 0, -2449.79, 921.4, 58.14, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 807, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (708, 4, 'Medium house at LV', 0, 0, 0, 150000, 0, 0, 1645.45, 2127.38, 11.2, 0, 0, 0, 0, -1, 447, 1397.09, 1084.3, 0, 2, 808, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (709, 4, 'Medium house at LV', 0, 0, 0, 150000, 0, 0, 1641.26, 2149.74, 11.31, 0, 0, 0, 0, -1, 447, 1397.09, 1084.3, 0, 2, 809, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (710, 4, '3 Story Condo In SF', 0, 0, 0, 120000, 0, 0, -2431.38, 921.41, 50.58, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 810, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (711, 4, '5 Story Condo In SF', 0, 0, 0, 500000, 0, 0, -2413.09, 921.43, 45.47, 0, 0, 0, 0, -1, 226.3, 1114.37, 1080.99, 0, 5, 811, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (712, 4, 'Medium house at LV', 0, 0, 0, 150000, 0, 0, 1595.5, 2123.37, 11.46, 0, 0, 0, 0, -1, 447, 1397.09, 1084.3, 0, 2, 812, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (713, 4, 'Medium house at LV', 0, 0, 0, 150000, 0, 0, 1596.41, 2147.43, 11.46, 0, 0, 0, 0, -1, 447, 1397.09, 1084.3, 0, 2, 813, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (714, 4, '5 Story Condo In SF', 0, 0, 0, 500000, 0, 0, -2412.98, 895.23, 45.47, 0, 0, 0, 0, -1, 226.3, 1114.37, 1080.99, 0, 5, 814, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (715, 4, 'Medium house at LV', 0, 0, 0, 150000, 0, 0, 1684.51, 2123.46, 11.46, 0, 0, 0, 0, -1, 447, 1397.09, 1084.3, 0, 2, 815, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (716, 4, '3 Story Condo In SF', 0, 0, 0, 120000, 0, 0, -2431.45, 895.25, 50.54, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 816, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (717, 4, 'Medium house at LV', 0, 0, 0, 150000, 0, 0, 1685.42, 2093.88, 11.46, 0, 0, 0, 0, -1, 447, 1397.09, 1084.3, 0, 2, 817, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (718, 4, '3 Story Condo In SF', 0, 0, 0, 120000, 0, 0, -2449.8, 895.24, 58.15, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 818, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (719, 4, 'Medium house at LV', 0, 0, 0, 150000, 0, 0, 1680.26, 2069.24, 11.36, 0, 0, 0, 0, -1, 447, 1397.09, 1084.3, 0, 2, 819, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (720, 4, 'Medium house at LV', 0, 0, 0, 150000, 0, 0, 1684.51, 2046.69, 11.47, 0, 0, 0, 0, -1, 447, 1397.09, 1084.3, 0, 2, 820, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (721, 4, '3 Story Condo In SF', 0, 0, 0, 120000, 0, 0, -2471.93, 895.26, 63.17, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 821, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (722, 4, '3 Story Condo In SF', 0, 0, 0, 120000, 0, 0, -2503.02, 895.26, 65.25, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 822, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (723, 4, '3 Story Condo In SF', 0, 0, 0, 120000, 0, 0, -2585.97, 794.18, 49.42, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 823, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (724, 4, '3 Story Condo In SF', 0, 0, 0, 120000, 0, 0, -2569.11, 794.17, 49.42, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 824, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (725, 4, '3 Story Condo In SF', 0, 0, 0, 120000, 0, 0, -2550.83, 794.17, 49.42, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 825, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (726, 4, 'Nice looking house at lv', 0, 0, 0, 300000, 0, 0, 2056.5, 2665.19, 10.82, 0, 0, 0, 0, -1, 234.22, 1063.89, 1084.21, 0, 6, 826, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (727, 4, 'Nice looking house at lv', 0, 0, 0, 300000, 0, 0, 2037.04, 2664.5, 10.82, 0, 0, 0, 0, -1, 234.22, 1063.89, 1084.21, 0, 6, 827, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (728, 4, 'Nice looking house at lv', 0, 0, 0, 300000, 0, 0, 2018.03, 2664.67, 11.3, 0, 0, 0, 0, -1, 234.22, 1063.89, 1084.21, 0, 6, 828, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (729, 4, 'Small Nice House In SF', 0, 0, 0, 60000, 0, 0, -2548.68, 819.79, 49.98, 0, 0, 0, 0, -1, 22.93, 1403.32, 1084.43, 0, 5, 829, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (730, 4, 'Nice looking house at lv', 0, 0, 0, 300000, 0, 0, 1989.24, 2665.19, 10.82, 0, 0, 0, 0, -1, 234.22, 1063.89, 1084.21, 0, 6, 830, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (731, 4, 'Small House In SF', 0, 0, 0, 30000, 0, 0, -2559.22, 819.79, 49.98, 0, 0, 0, 0, -1, 261.06, 1284.29, 1080.25, 0, 4, 831, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (732, 4, 'Nice looking house at lv', 0, 0, 0, 300000, 0, 0, 1969.62, 2664.5, 10.82, 0, 0, 0, 0, -1, 234.22, 1063.89, 1084.21, 0, 6, 832, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (733, 4, 'Nice looking house at lv', 0, 0, 0, 300000, 0, 0, 1950.53, 2664.67, 11.3, 0, 0, 0, 0, -1, 234.22, 1063.89, 1084.21, 0, 6, 833, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (734, 4, 'Nice looking house at lv', 0, 0, 0, 300000, 0, 0, 1921.7, 2665.19, 10.82, 0, 0, 0, 0, -1, 234.22, 1063.89, 1084.21, 0, 6, 834, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (735, 4, 'Small House In SF', 0, 0, 0, 30000, 0, 0, -2565.91, 819.8, 49.99, 0, 0, 0, 0, -1, 261.06, 1284.29, 1080.25, 0, 4, 835, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (736, 4, 'Small Nice House In SF', 0, 0, 0, 60000, 0, 0, -2576.42, 819.79, 49.98, 0, 0, 0, 0, -1, 22.93, 1403.32, 1084.43, 0, 5, 836, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (737, 4, 'Small House In SF', 0, 0, 0, 30000, 0, 0, -2590.88, 819.8, 49.99, 0, 0, 0, 0, -1, 261.06, 1284.29, 1080.25, 0, 4, 837, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (738, 4, 'Nice looking house at lv', 0, 0, 0, 300000, 5000, 0, 1929.85, 2774.3, 10.82, 0, 0, 0, 0, -1, 234.22, 1063.89, 1084.21, 0, 6, 838, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (739, 4, 'Small House In SF', 0, 0, 0, 30000, 0, 0, -2642.14, 820.32, 49.99, 0, 0, 0, 0, -1, 261.06, 1284.29, 1080.25, 0, 4, 839, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (740, 4, 'Nice looking house at lv', 0, 0, 0, 300000, 0, 0, 1931.29, 2721.26, 10.82, 0, 0, 0, 0, -1, 234.22, 1063.89, 1084.21, 0, 6, 840, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (741, 4, 'Small Nice House In SF', 0, 0, 0, 60000, 0, 0, -2652.47, 820.32, 49.98, 0, 0, 0, 0, -1, 22.93, 1403.32, 1084.43, 0, 5, 841, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (742, 4, 'Nice looking house at lv', 0, 0, 0, 300000, 0, 0, 1950.69, 2721.95, 10.82, 0, 0, 0, 0, -1, 234.22, 1063.89, 1084.21, 0, 6, 842, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (743, 4, 'Small House In SF', 0, 0, 0, 30000, 0, 0, -2666.91, 820.32, 49.98, 0, 0, 0, 0, -1, 261.06, 1284.29, 1080.25, 0, 4, 843, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (744, 4, 'Nice looking house at lv', 0, 0, 0, 300000, 0, 0, 1967.32, 2766.54, 10.83, 0, 0, 0, 0, -1, 234.22, 1063.89, 1084.21, 0, 6, 844, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (745, 4, 'Small House In SF', 0, 0, 0, 30000, 5000, 0, -2645.52, 803.08, 49.98, 0, 0, 0, 0, -1, 261.06, 1284.29, 1080.25, 0, 4, 845, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (746, 4, 'Nice looking house at lv', 0, 0, 0, 300000, 0, 0, 1992.54, 2764.64, 10.82, 0, 0, 0, 0, -1, 234.22, 1063.89, 1084.21, 0, 6, 846, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (747, 4, 'Small Nice House In SF', 0, 0, 0, 60000, 0, 0, -2659.84, 803.09, 49.98, 0, 0, 0, 0, -1, 22.93, 1403.32, 1084.43, 0, 5, 847, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (748, 4, 'Nice looking house at lv', 0, 0, 0, 300000, 0, 0, 1969.78, 2721.78, 11.3, 0, 0, 0, 0, -1, 234.22, 1063.89, 1084.21, 0, 6, 848, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (749, 4, 'Nice looking house at lv', 0, 0, 0, 300000, 0, 0, 1998.72, 2721.26, 10.82, 0, 0, 0, 0, -1, 234.22, 1063.89, 1084.21, 0, 6, 849, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (750, 4, 'Small House In SF', 0, 0, 0, 30000, 0, 0, -2670.57, 803.08, 49.98, 0, 0, 0, 0, -1, 261.06, 1284.29, 1080.25, 0, 4, 850, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (751, 4, 'Nice looking house at lv', 0, 0, 0, 300000, 0, 0, 2018.15, 2721.95, 10.82, 0, 0, 0, 0, -1, 234.22, 1063.89, 1084.21, 0, 6, 851, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (752, 4, 'Small House In SF', 0, 0, 0, 30000, 1000, 0, -2677.16, 803.09, 49.98, 0, 0, 0, 0, -1, 261.06, 1284.29, 1080.25, 0, 4, 852, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (753, 4, 'Nice looking house at lv', 0, 0, 0, 300000, 0, 0, 2018.49, 2766.54, 10.83, 0, 0, 0, 0, -1, 234.22, 1063.89, 1084.21, 0, 6, 853, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (754, 4, 'Nice looking house at lv', 0, 0, 0, 300000, 0, 0, 2039.63, 2766.55, 10.83, 0, 0, 0, 0, -1, 234.22, 1063.89, 1084.21, 0, 6, 854, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (755, 4, 'Small Nice House In SF', 0, 0, 0, 60000, 0, 0, -2687.88, 803.09, 49.98, 0, 0, 0, 0, -1, 22.93, 1403.32, 1084.43, 0, 5, 855, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (756, 4, 'Small Nice House In SF', 0, 0, 0, 60000, 0, 0, -2698.92, 803.1, 49.97, 0, 0, 0, 0, -1, 22.93, 1403.32, 1084.43, 0, 5, 856, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (757, 4, 'Nice looking house at lv', 0, 0, 0, 300000, 0, 0, 2049.62, 2764.29, 10.82, 0, 0, 0, 0, -1, 234.22, 1063.89, 1084.21, 0, 6, 857, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (758, 4, 'Nice looking house at lv', 0, 0, 0, 300000, 0, 0, 2066.01, 2721.26, 10.82, 0, 0, 0, 0, -1, 234.22, 1063.89, 1084.21, 0, 6, 858, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (759, 4, 'Small House In SF', 0, 0, 0, 30000, 0, 0, -2709.85, 803.09, 49.98, 0, 0, 0, 0, -1, 261.06, 1284.29, 1080.25, 0, 4, 859, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (760, 4, '4 Story Condo In SF', 0, 0, 0, 400000, 0, 0, -2685.1, 820.49, 49.98, 0, 0, 0, 0, -1, 234.22, 1063.89, 358.5, 0, 6, 860, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (761, 4, '4 Story Condo In SF', 0, 0, 0, 400000, 0, 0, -2700.38, 820.84, 49.98, 0, 0, 0, 0, -1, 234.22, 1063.89, 358.5, 0, 6, 861, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (762, 4, 'Small Nice House In SF', 0, 0, 0, 60000, 0, 0, -2726.68, 822.98, 53.73, 0, 0, 0, 0, -1, 22.93, 1403.32, 1084.43, 0, 5, 862, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (763, 4, 'Small House In SF', 0, 0, 0, 30000, 0, 0, -2737.25, 822.99, 53.73, 0, 0, 0, 0, -1, 261.06, 1284.29, 1080.25, 0, 4, 863, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (764, 4, '4 Story Condo In SF', 0, 0, 0, 400000, 0, 0, -2409.05, 819.96, 35.18, 0, 0, 0, 0, -1, 234.22, 1063.89, 358.5, 0, 6, 864, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (765, 4, '3 Story Condo In SF', 0, 0, 0, 120000, 0, 0, -2487.47, 821.3, 38.38, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 865, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (766, 4, 'huge 2 floor nice looking house at LV', 0, 0, 0, 500000, 0, 0, 1451.36, 2565.43, 10.83, 0, 0, 0, 0, -1, 226.3, 1114.37, 1080.99, 0, 5, 866, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (767, 4, '3 Story Condo In SF', 0, 0, 0, 120000, 0, 0, -2504.61, 821.31, 45.99, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 867, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (768, 4, 'huge 2 floor nice looking house at LV', 0, 0, 0, 500000, 0, 0, 1441.72, 2567.69, 10.82, 0, 0, 0, 0, -1, 226.3, 1114.37, 1080.99, 0, 5, 868, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (769, 4, 'huge 2 floor nice looking house at LV', 0, 0, 0, 500000, 0, 0, 1417.87, 2567.48, 10.82, 0, 0, 0, 0, -1, 226.3, 1114.37, 1080.99, 0, 5, 869, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (770, 4, 'huge 2 floor nice looking house at LV', 0, 0, 0, 500000, 0, 0, 1359.74, 2565.43, 10.83, 0, 0, 0, 0, -1, 226.3, 1114.37, 1080.99, 0, 5, 870, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (771, 4, 'Nice looking house at lv', 0, 0, 0, 300000, 0, 0, 1344.72, 2610.19, 11.3, 0, 0, 0, 0, -1, 234.22, 1063.89, 1084.21, 0, 6, 871, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (772, 4, 'Normal Size House In SF', 0, 0, 0, 85000, 0, 0, -2731.47, 723.69, 41.27, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 872, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (773, 4, 'huge 2 floor nice looking house at LV', 0, 0, 0, 500000, 0, 0, 1349.6, 2567.69, 10.82, 0, 0, 0, 0, -1, 226.3, 1114.37, 1080.99, 0, 5, 873, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (774, 4, 'Nice looking house at lv', 0, 0, 0, 300000, 0, 0, 1313.84, 2610.19, 11.3, 0, 0, 0, 0, -1, 234.22, 1063.89, 1084.21, 0, 6, 874, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (775, 4, 'huge 2 floor nice looking house at LV', 0, 0, 0, 500000, 0, 0, 1325.61, 2567.34, 10.82, 0, 0, 0, 0, -1, 226.3, 1114.37, 1080.99, 0, 5, 875, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (776, 4, 'Small Nice House In SF', 0, 0, 0, 60000, 0, 0, -2723.45, 722.82, 41.27, 0, 0, 0, 0, -1, 22.93, 1403.32, 1084.43, 0, 5, 876, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (777, 4, 'Small House In SF', 0, 0, 0, 30000, 0, 0, -2710.89, 722.82, 39.72, 0, 0, 0, 0, -1, 261.06, 1284.29, 1080.25, 0, 4, 877, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (778, 4, 'Nice looking house at lv', 0, 0, 0, 300000, 0, 0, 1284.86, 2610.72, 10.82, 0, 0, 0, 0, -1, 234.22, 1063.89, 1084.21, 0, 6, 878, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (779, 4, 'Small House In SF', 0, 0, 0, 30000, 0, 0, -2706.75, 722.85, 37.54, 0, 0, 0, 0, -1, 261.06, 1284.29, 1080.25, 0, 4, 879, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (780, 4, 'Small Nice House In SF', 0, 0, 0, 500000, 0, 0, 1271.88, 2564.57, 10.82, 0, 0, 0, 0, -1, 226.3, 1114.37, 1080.99, 0, 5, 880, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (781, 4, 'Small Nice House In SF', 0, 0, 0, 500000, 0, 0, 1269.62, 2554.43, 10.83, 0, 0, 0, 0, -1, 226.3, 1114.37, 1080.99, 0, 5, 881, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (782, 4, 'Normal Size House In SF', 0, 0, 0, 85000, 0, 0, -2686.04, 722.86, 32.23, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 882, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (783, 4, 'Small Nice House In SF', 0, 0, 0, 500000, 0, 0, 1273.95, 2522.51, 10.82, 0, 0, 0, 0, -1, 226.3, 1114.37, 1080.99, 0, 5, 883, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (784, 4, 'Small Nice House In SF', 0, 0, 0, 500000, 0, 0, 1316.47, 2524.65, 10.82, 0, 0, 0, 0, -1, 226.3, 1114.37, 1080.99, 0, 5, 884, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (785, 4, 'Small Nice House In SF', 0, 0, 0, 60000, 0, 0, -2678.14, 722.25, 28.6, 0, 0, 0, 0, -1, 22.93, 1403.32, 1084.43, 0, 5, 885, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (786, 4, 'Small House In SF', 0, 0, 0, 30000, 0, 0, -2665.49, 722.24, 27.96, 0, 0, 0, 0, -1, 261.06, 1284.29, 1080.25, 0, 4, 886, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (787, 4, 'Small House In SF', 0, 0, 0, 30000, 0, 0, -2661.59, 722.23, 27.96, 0, 0, 0, 0, -1, 261.06, 1284.29, 1080.25, 0, 4, 887, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (788, 4, 'huge 2 floor nice looking house at LV', 0, 0, 0, 500000, 0, 0, 1503.24, 2567.69, 10.82, 0, 0, 0, 0, -1, 226.3, 1114.37, 1080.99, 0, 5, 888, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (789, 4, 'Apartment 1st Floor In SF', 0, 0, 0, 80000, 0, 0, -2642.08, 728.03, 27.96, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 889, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (790, 4, 'Nice looking house at lv', 0, 0, 0, 300000, 0, 0, 1515.71, 2610.19, 11.3, 0, 0, 0, 0, -1, 234.22, 1063.89, 1084.21, 0, 6, 890, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (791, 4, 'Appartment 2nd Floor In SF', 0, 0, 0, 80000, 0, 0, -2640.3, 730.54, 30.07, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 891, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (792, 4, 'huge 2 floor nice looking house at LV', 0, 0, 0, 500000, 0, 0, 1513.38, 2565.43, 10.83, 0, 0, 0, 0, -1, 226.3, 1114.37, 1080.99, 0, 5, 892, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (793, 4, 'huge 2 floor nice looking house at LV', 0, 0, 0, 500000, 0, 0, 1551.49, 2567.34, 10.82, 0, 0, 0, 0, -1, 226.3, 1114.37, 1080.99, 0, 5, 893, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (794, 4, 'Nice looking house at lv', 0, 0, 0, 300000, 0, 0, 1554.45, 2610.72, 10.82, 0, 0, 0, 0, -1, 234.22, 1063.89, 1084.21, 0, 6, 894, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (795, 4, 'huge 2 floor nice looking house at LV', 0, 0, 0, 500000, 3500, 0, 1564.61, 2565.43, 10.83, 0, 0, 0, 0, -1, 226.3, 1114.37, 1080.99, 0, 5, 895, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (796, 4, 'huge 2 floor nice looking house at LV', 0, 0, 0, 500000, 0, 0, 1596.39, 2567.69, 10.82, 0, 0, 0, 0, -1, 226.3, 1114.37, 1080.99, 0, 5, 896, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (797, 4, 'Nice looking house at lv', 0, 0, 0, 300000, 0, 0, 1600.59, 2610.03, 10.82, 0, 0, 0, 0, -1, 234.22, 1063.89, 1084.21, 0, 6, 897, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (798, 4, '3 Story Condo In SF', 0, 0, 0, 120000, 0, 0, -2581.51, 719.02, 27.94, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 898, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (799, 4, 'Nice looking house at lv', 0, 0, 0, 300000, 0, 0, 1618.8, 2610.03, 10.82, 0, 0, 0, 0, -1, 234.22, 1063.89, 1084.21, 0, 6, 899, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (800, 4, 'Nice looking house at lv', 0, 0, 0, 300000, 0, 0, 1638.13, 2610.72, 10.82, 0, 0, 0, 0, -1, 234.22, 1063.89, 1084.21, 0, 6, 900, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (801, 4, 'huge 2 floor nice looking house at LV', 0, 0, 0, 500000, 0, 0, 1623.47, 2567.34, 10.82, 0, 0, 0, 0, -1, 226.3, 1114.37, 1080.99, 0, 5, 901, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (802, 4, '3 Story Condo In SF', 0, 0, 0, 120000, 0, 0, -2553.97, 719.02, 27.95, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 902, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (803, 4, 'Nice looking house at lv', 0, 0, 0, 300000, 0, 0, 1646.59, 2569.58, 10.82, 0, 0, 0, 0, -1, 234.22, 1063.89, 1084.21, 0, 6, 903, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (804, 4, 'Nice looking house at lv', 0, 0, 0, 300000, 0, 0, 1665.56, 2569.42, 11.3, 0, 0, 0, 0, -1, 234.22, 1063.89, 1084.21, 0, 6, 904, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (805, 4, 'Nice looking house at lv', 0, 0, 0, 300000, 0, 0, 1666.95, 2610.19, 11.3, 0, 0, 0, 0, -1, 234.22, 1063.89, 1084.21, 0, 6, 905, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (806, 4, '3 Story Condo In SF', 0, 0, 0, 120000, 0, 0, -2541.27, 733.1, 28.06, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 906, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (807, 4, '3 Story Condo In SF', 0, 0, 0, 120000, 0, 0, -2541.24, 750.92, 33.7, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 907, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (808, 4, 'huge 2 floor nice looking house at LV', 0, 0, 0, 500000, 0, 0, 1678.4, 2690.76, 10.82, 0, 0, 0, 0, -1, 226.3, 1114.37, 1080.99, 0, 5, 908, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (809, 4, '3 Story Condo In SF', 0, 0, 0, 120000, 0, 0, -2541.24, 768.14, 40.02, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 909, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (810, 4, 'huge 2 floor nice looking house at LV', 0, 0, 0, 500000, 0, 0, 1703.71, 2688.86, 10.83, 0, 0, 0, 0, -1, 226.3, 1114.37, 1080.99, 0, 5, 910, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (811, 4, '3 Story Condo In SF', 0, 0, 0, 120000, 0, 0, -2541.24, 785.26, 46.23, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 911, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (812, 4, 'huge 2 floor nice looking house at LV', 0, 0, 0, 500000, 0, 0, 1735.65, 2691.11, 10.82, 0, 0, 0, 0, -1, 226.3, 1114.37, 1080.99, 0, 5, 912, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (813, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 0, 1754.52, 2736.02, 14.27, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 913, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (814, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 0, 1752.26, 2744.57, 14.27, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 914, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (815, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 0, 1751.45, 2747.35, 14.27, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 915, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (816, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 0, 1749.2, 2755.91, 14.27, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 916, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (817, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 0, 1748.42, 2758.69, 14.27, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 917, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (818, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 0, 1745.39, 2770.03, 14.27, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 918, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (819, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 0, 1746.17, 2767.25, 14.27, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 919, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (820, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 0, 1743.04, 2778.56, 14.27, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 920, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (821, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 0, 1746.04, 2767.21, 11.34, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 921, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (822, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 0, 1745.41, 2770.03, 11.34, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 922, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (823, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 0, 1748.48, 2758.71, 11.34, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 923, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (824, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 0, 1749.19, 2755.9, 11.34, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 924, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (825, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 0, 1751.46, 2747.35, 11.34, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 925, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (826, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 0, 1752.22, 2744.56, 11.34, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 926, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (827, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 0, 1780.81, 2744.57, 11.34, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 927, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (828, 4, '6 Story Condo In SF', 0, 0, 0, 450000, 0, 0, -2513.52, 830.84, 50, 0, 0, 0, 0, -1, 226.3, 1114.37, 1080.99, 0, 5, 928, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (829, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 0, 1781.51, 2747.37, 11.34, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 929, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (830, 4, 'lv project apartment small', 0, 0, 0, 40000, 500, 0, 1778.54, 2736.01, 14.27, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 930, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (831, 4, '6 Story Condo In SF', 0, 0, 0, 450000, 0, 0, -2513.5, 849.08, 52.7, 0, 0, 0, 0, -1, 226.3, 1114.37, 1080.99, 0, 5, 931, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (832, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 0, 1781.55, 2747.36, 14.27, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 932, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (833, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 0, 1780.82, 2744.56, 14.27, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 933, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (834, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 0, 1784.62, 2758.69, 14.27, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 934, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (835, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 0, 1783.78, 2755.92, 14.27, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 935, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (836, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 0, 1787.64, 2770.04, 14.27, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 936, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (837, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 0, 1786.83, 2767.26, 14.27, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 937, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (838, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 0, 1789.83, 2778.61, 14.27, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 938, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (839, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 0, 1787.57, 2770.06, 11.34, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 939, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (840, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 0, 1786.89, 2767.25, 11.34, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 940, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (841, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 0, 1784.6, 2758.7, 11.34, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 941, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (842, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 0, 1783.84, 2755.91, 11.34, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 942, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (843, 4, '6 Story Condo In SF', 0, 0, 0, 450000, 0, 0, -2513.53, 867.49, 57.74, 0, 0, 0, 0, -1, 226.3, 1114.37, 1080.99, 0, 5, 943, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (844, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 0, 1789.89, 2778.6, 11.35, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 944, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (845, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 0, 1800.78, 2775.68, 11.34, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 945, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (846, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 0, 1797.69, 2764.35, 14.27, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 946, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (847, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 0, 1798.47, 2767.14, 14.27, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 947, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (848, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 0, 1794.71, 2753, 14.27, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 948, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (849, 4, '6 Story Condo In SF', 0, 0, 0, 450000, 0, 0, -2513.51, 885.73, 62.78, 0, 0, 0, 0, -1, 226.3, 1114.37, 1080.99, 0, 5, 949, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (850, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 0, 1795.38, 2755.81, 14.27, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 950, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (851, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 0, 1791.66, 2741.66, 14.27, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 951, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (852, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 0, 1792.42, 2744.45, 14.27, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 952, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (853, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 0, 1789.49, 2733.08, 14.27, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 953, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (854, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 0, 1792.54, 2744.42, 11.34, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 954, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (855, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 0, 1791.73, 2741.64, 11.34, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 955, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (856, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 0, 1795.42, 2755.8, 11.34, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 956, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (857, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 0, 1794.75, 2752.99, 11.34, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 957, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (858, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 0, 1798.54, 2767.12, 11.34, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 958, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (859, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 0, 1797.78, 2764.33, 11.34, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 959, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (860, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 0, 1800.77, 2775.68, 14.27, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 960, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (861, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 0, 1736.36, 2803.59, 11.34, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 961, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (862, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 0, 1737.11, 2800.79, 11.34, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 962, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (863, 4, 'Appartment 1st Floor In SF', 0, 0, 0, 80000, 0, 0, -2538.73, 830.01, 49.98, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 963, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (864, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 0, 1739.42, 2792.25, 14.27, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 964, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (865, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 0, 1737.08, 2800.78, 14.27, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 965, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (866, 4, 'Appartment 2nd Floor In SF', 0, 0, 0, 80000, 0, 0, -2540.51, 831.95, 52.09, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 966, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (867, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 0, 1736.35, 2803.58, 14.27, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 967, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (868, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 0, 1734.17, 2812.16, 11.34, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 968, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (869, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 0, 1733.35, 2814.93, 11.34, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 969, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (870, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 0, 1734.05, 2812.13, 14.27, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 970, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (871, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 0, 1733.39, 2814.94, 14.27, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 971, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (872, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 0, 1730.34, 2826.28, 14.27, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 972, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (873, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 0, 1731, 2823.47, 14.27, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 973, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (874, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 0, 1728.09, 2834.84, 14.27, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 974, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (875, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 0, 1730.45, 2826.31, 11.34, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 975, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (876, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 0, 1731.09, 2823.49, 11.34, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 976, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (877, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 0, 1727.94, 2834.8, 11.34, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 977, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (878, 4, 'Small House In SF', 0, 0, 0, 30000, 0, 0, -2539.71, 845.18, 50.6, 0, 0, 0, 0, -1, 261.06, 1284.29, 1080.25, 0, 4, 978, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (879, 4, 'Small House In SF', 0, 0, 0, 30000, 0, 0, -2540.67, 855.14, 53.18, 0, 0, 0, 0, -1, 261.06, 1284.29, 1080.25, 0, 4, 979, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (880, 4, 'Small House In SF', 0, 0, 0, 30000, 0, 0, -2540, 874.76, 58.92, 0, 0, 0, 0, -1, 261.06, 1284.29, 1080.25, 0, 4, 980, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (881, 4, 'Normal Size House In SF', 0, 0, 0, 85000, 0, 0, -2540.18, 883.14, 63.25, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 981, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (882, 4, 'Small Nice House In SF', 0, 0, 0, 60000, 0, 0, -2537.09, 929.45, 65.02, 0, 0, 0, 0, -1, 22.93, 1403.32, 1084.43, 0, 5, 982, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (883, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 0, 1717.18, 2831.92, 11.35, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 983, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (884, 4, 'Small House In SF', 0, 0, 0, 30000, 0, 0, -2542.47, 942.63, 64, 0, 0, 0, 0, -1, 261.06, 1284.29, 1080.25, 0, 4, 984, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (885, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 0, 1717.01, 2831.87, 14.27, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 985, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (886, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 0, 1720.19, 2820.57, 14.27, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 986, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (887, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 0, 1719.41, 2823.35, 14.27, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 987, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (888, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 0, 1723.14, 2809.21, 14.27, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 988, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (889, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 0, 1722.45, 2812.01, 14.27, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 989, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (890, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 500, 0, 2514.28, -1691.66, 14.04, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 990, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (891, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 5000, 0, 2523.27, -1679.38, 15.5, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 991, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (892, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 5000, 0, 2524.71, -1658.59, 15.82, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 992, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (893, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 1, 0, 2513.72, -1650.24, 14.35, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 993, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (894, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 0, 0, 2498.47, -1642.25, 14.11, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 994, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (895, 4, 'Ghetto Home LS Medium', 0, 0, 0, 40000, 0, 0, 2486.46, -1644.53, 14.08, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 995, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (896, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 0, 0, 2469.45, -1646.35, 13.78, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 996, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (897, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 0, 0, 2451.91, -1641.41, 14.06, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 997, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (898, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 0, 0, 2413.86, -1646.79, 14.01, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 998, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (899, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 1000, 0, 2409.04, -1674.94, 14.38, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 999, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (900, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 0, 0, 2393.13, -1646.04, 13.9, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 1000, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (901, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 1, 0, 2384.7, -1675.83, 15.24, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 1001, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (902, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 0, 0, 2362.8, -1643.14, 14.35, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 1002, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (903, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 0, 0, 2368.29, -1675.34, 14.17, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 1003, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (904, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 0, 0, 2326.89, -1681.94, 14.93, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 1004, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (905, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 20, 0, 2385.39, -1711.66, 14.24, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 1005, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (906, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 0, 0, 2326.75, -1716.7, 14.24, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 1006, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (907, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 0, 0, 2308.89, -1714.34, 14.98, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 1007, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (908, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 0, 0, 2244.54, -1637.64, 16.24, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 1008, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (909, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 100, 0, 2257.11, -1643.94, 15.81, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 1009, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (910, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 0, 0, 2282.29, -1641.21, 15.89, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 1010, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (911, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 0, 0, 2307, -1679.19, 14.33, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 1011, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (912, 4, 'normal house at ls', 0, 0, 0, 150000, 0, 0, 1928.69, -1915.91, 15.26, 0, 0, 0, 0, -1, 447, 1397.09, 1084.3, 0, 2, 1012, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (913, 4, 'normal house at ls', 0, 0, 0, 150000, 0, 0, 1938.54, -1911.32, 15.26, 0, 0, 0, 0, -1, 447, 1397.09, 1084.3, 0, 2, 1013, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (914, 4, 'normal house at ls', 0, 0, 0, 150000, 0, 0, 1913.47, -1911.9, 15.26, 0, 0, 0, 0, -1, 447, 1397.09, 1084.3, 0, 2, 1014, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (915, 4, 'normal house at ls', 0, 0, 0, 150000, 0, 0, 1891.92, -1914.4, 15.26, 0, 0, 0, 0, -1, 447, 1397.09, 1084.3, 0, 2, 1015, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (916, 4, 'normal house at ls', 0, 0, 0, 150000, 0, 0, 1872.21, -1911.79, 15.26, 0, 0, 0, 0, -1, 447, 1397.09, 1084.3, 0, 2, 1016, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (917, 4, 'normal house at ls', 0, 0, 0, 150000, 0, 0, 1854.06, -1914.26, 15.26, 0, 0, 0, 0, -1, 447, 1397.09, 1084.3, 0, 2, 1017, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (918, 4, 'LS Project', 0, 0, 0, 4000, 0, 0, 1848.15, -1593.75, 19.12, 0, 0, 0, 0, -1, 244.41, 305.03, 999.15, 0, 1, 1018, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (919, 4, 'LS Project', 0, 0, 0, 4000, 0, 0, 1848.15, -1593.6, 23.88, 0, 0, 0, 0, -1, 244.41, 305.03, 999.15, 0, 1, 1019, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (920, 4, 'LS Project', 0, 0, 0, 4000, 0, 0, 1986.75, -1604.9, 13.53, 0, 0, 0, 0, -1, 244.41, 305.03, 999.15, 0, 1, 1020, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (921, 4, 'LS Project', 0, 0, 0, 4000, 0, 0, 1972.98, -1559.83, 13.64, 0, 0, 0, 0, -1, 244.41, 305.03, 999.15, 0, 1, 1021, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (922, 4, 'LS Project', 0, 0, 0, 4000, 0, 0, 1958.67, -1560.35, 13.59, 0, 0, 0, 0, -1, 244.41, 305.03, 999.15, 0, 1, 1022, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (923, 4, 'Ghetto Home LS Medium', 0, 0, 0, 40000, 0, 0, 2139.09, -1697.51, 15.09, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1023, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (924, 4, 'Ghetto Home LS Medium', 0, 0, 0, 40000, 0, 0, 2155.62, -1698.51, 15.09, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1024, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (925, 4, 'Ghetto Home LS Medium', 0, 0, 0, 30000, 0, 0, 2157.15, -1709.21, 15.09, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 1025, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (926, 4, 'Ghetto Home LS Medium', 0, 0, 0, 30000, 0, 0, 2140.57, -1708.3, 15.09, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 1026, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (927, 4, 'Ghetto Home LS Medium', 0, 0, 0, 40000, 0, 0, 2151.71, -1717.83, 15.09, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1027, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (928, 4, 'Ghetto Home LS Medium', 0, 0, 0, 40000, 0, 0, 2168.08, -1718.82, 15.17, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1028, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (929, 4, 'Ghetto Home LS Medium', 0, 0, 0, 30000, 1, 0, 2151.41, -1672.26, 15.09, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 1029, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (930, 4, 'Ghetto Home LS Medium', 0, 0, 0, 40000, 5000, 0, 2143.65, -1662.86, 15.09, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1030, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (932, 4, 'Ghetto Home LS Medium', 0, 0, 0, 60000, 0, 0, 2163.74, -1661.21, 15.09, 0, 0, 0, 0, -1, 22.93, 1403.32, 1084.43, 0, 5, 1032, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (933, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 0, 1793.6, 2792.25, 11.35, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1033, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (934, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 0, 1796.65, 2803.58, 11.34, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1034, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (935, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 0, 1795.83, 2800.81, 11.34, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1035, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (936, 4, 'Small House In SF', 0, 0, 0, 30000, 0, 0, -2510.96, 967.65, 73.53, 0, 0, 0, 0, -1, 261.06, 1284.29, 1080.25, 0, 4, 1036, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (937, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 0, 1799.57, 2814.95, 11.34, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1037, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (938, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 0, 1798.92, 2812.14, 11.34, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1038, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (939, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 0, 1802.77, 2826.25, 11.34, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1039, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (940, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 0, 1801.9, 2823.49, 11.34, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1040, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (941, 4, 'Small House In SF', 0, 0, 0, 30000, 0, 0, -2510.91, 951.26, 65.61, 0, 0, 0, 0, -1, 261.06, 1284.29, 1080.25, 0, 4, 1041, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (942, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 0, 1804.86, 2834.85, 11.35, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1042, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (943, 4, 'Small House In SF', 0, 0, 0, 30000, 0, 0, -2510.93, 942.7, 65.29, 0, 0, 0, 0, -1, 261.06, 1284.29, 1080.25, 0, 4, 1043, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (944, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 0, 1804.96, 2834.82, 14.27, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1044, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (945, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 0, 1802.59, 2826.3, 14.27, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1045, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (946, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 0, 1802.05, 2823.45, 14.27, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1046, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (947, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 0, 1798.8, 2812.17, 14.27, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1047, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (948, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 0, 1799.65, 2814.93, 14.27, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1048, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (949, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 0, 1795.85, 2800.8, 14.27, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1049, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (950, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 0, 1796.69, 2803.57, 14.27, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1050, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (951, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 0, 1793.61, 2792.24, 14.27, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1051, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (952, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 0, 1815.83, 2831.92, 11.34, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1052, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (953, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 0, 1813.61, 2823.34, 11.34, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1053, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (954, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 0, 1812.9, 2820.54, 11.34, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1054, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (955, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 0, 1815.91, 2831.89, 14.27, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1055, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (956, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 0, 1812.82, 2820.57, 14.27, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1056, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (957, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 0, 1813.61, 2823.35, 14.27, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1057, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (958, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 0, 1809.83, 2809.21, 14.27, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1058, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (959, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 0, 1810.53, 2812.02, 14.27, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1059, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (960, 4, 'Small House In SF', 0, 0, 0, 30000, 0, 0, -2596.65, 986.27, 78.27, 0, 0, 0, 0, -1, 261.06, 1284.29, 1080.25, 0, 4, 1060, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (961, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 0, 1806.77, 2797.88, 14.27, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1061, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (962, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 0, 1807.6, 2800.65, 14.27, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1062, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (963, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 0, 1804.57, 2789.3, 14.27, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1063, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (964, 4, 'Small Nice House In SF', 0, 0, 0, 60000, 0, 0, -2597.34, 979.74, 78.27, 0, 0, 0, 0, -1, 22.93, 1403.32, 1084.43, 0, 5, 1064, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (965, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 0, 1806.71, 2797.89, 11.34, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1065, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (966, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 0, 1807.36, 2800.71, 11.34, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1066, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (967, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 0, 1810.61, 2812, 11.34, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1067, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (968, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 0, 1809.62, 2809.27, 11.34, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1068, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (969, 4, 'Small House In SF', 0, 0, 0, 30000, 0, 0, -2597.33, 968.95, 78.28, 0, 0, 0, 0, -1, 261.06, 1284.29, 1080.25, 0, 4, 1069, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (970, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 0, 1832.49, 2742.93, 11.34, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1070, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (971, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 0, 1830.47, 2740.87, 11.34, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1071, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (972, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 0, 1840.84, 2751.18, 11.34, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1072, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (973, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 0, 1838.67, 2749.27, 11.35, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1073, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (974, 4, 'Normal Size House In SF', 0, 0, 0, 85000, 0, 0, -2591.17, 960.76, 78.45, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 1074, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (975, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 0, 1847.08, 2757.45, 11.34, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1075, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (976, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 0, 1849.23, 2759.39, 11.34, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1076, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (977, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 0, 1855.38, 2765.76, 14.27, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1077, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (978, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 0, 1849.09, 2759.53, 14.27, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1078, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (979, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 0, 1847.1, 2757.43, 14.27, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1079, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (980, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 0, 1838.73, 2749.2, 14.27, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1080, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (981, 4, 'Small House In SF', 0, 0, 0, 30000, 0, 0, -2591.19, 944.33, 70.43, 0, 0, 0, 0, -1, 261.06, 1284.29, 1080.25, 0, 4, 1081, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (982, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 0, 1840.84, 2751.19, 14.27, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1082, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (983, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 0, 1830.4, 2740.94, 14.27, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1083, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (984, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 0, 1832.55, 2742.88, 14.27, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1084, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (985, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 0, 1824.22, 2734.61, 14.27, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1085, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (986, 4, 'Small House In SF', 0, 0, 0, 30000, 0, 0, -2591.19, 935.9, 68.93, 0, 0, 0, 0, -1, 261.06, 1284.29, 1080.25, 0, 4, 1086, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (987, 4, 'Small House In SF', 0, 0, 0, 30000, 0, 0, -2591.19, 927.88, 65.02, 0, 0, 0, 0, -1, 261.06, 1284.29, 1080.25, 0, 4, 1087, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (988, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 0, 1855.32, 2765.81, 11.35, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1088, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (989, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 0, 1865.45, 2775.7, 11.34, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1089, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (990, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 0, 1873.69, 2784.06, 11.34, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1090, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (991, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 0, 1871.57, 2782.08, 11.34, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1091, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (992, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 0, 1881.95, 2792.39, 11.34, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1092, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (993, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 0, 1879.89, 2790.37, 11.34, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1093, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (994, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 0, 1890.23, 2800.7, 11.34, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1094, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (995, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 0, 1888.22, 2798.63, 11.34, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1095, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (996, 4, 'Normal Size House In SF', 0, 0, 0, 85000, 0, 0, -2593.26, 883.22, 63.25, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 1096, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (997, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 0, 1896.51, 2806.95, 14.27, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1097, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (998, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 0, 1888.25, 2798.6, 14.27, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1098, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (999, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 0, 1890.32, 2800.62, 14.27, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1099, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1000, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 0, 1879.96, 2790.31, 14.27, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1100, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1001, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 0, 1882.05, 2792.29, 14.27, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1101, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1002, 4, 'Small House In SF', 0, 0, 0, 30000, 0, 0, -2593.42, 874.77, 58.92, 0, 0, 0, 0, -1, 261.06, 1284.29, 1080.25, 0, 4, 1102, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1003, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 0, 1871.62, 2782.03, 14.27, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1103, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1004, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 0, 1873.72, 2784.03, 14.27, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1104, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1005, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 0, 1865.34, 2775.81, 14.27, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1105, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1006, 4, 'Normal Size House In SF', 0, 0, 0, 85000, 0, 0, -2620.21, 883.01, 63.25, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 1106, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1007, 4, 'Small House In SF', 0, 0, 0, 30000, 0, 0, -2620.02, 874.73, 58.92, 0, 0, 0, 0, -1, 261.06, 1284.29, 1080.25, 0, 4, 1107, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1008, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 0, 1896.56, 2806.91, 11.35, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1108, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1009, 4, 'Small House In SF', 0, 0, 0, 30000, 0, 0, -2592.74, 854.98, 53.59, 0, 0, 0, 0, -1, 261.06, 1284.29, 1080.25, 0, 4, 1109, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1010, 4, 'Small House In SF', 0, 0, 0, 30000, 0, 0, -2620.7, 855.15, 53.57, 0, 0, 0, 0, -1, 261.06, 1284.29, 1080.25, 0, 4, 1110, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1011, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 0, 1740.86, 2863.24, 11.34, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1111, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1012, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 0, 1738.45, 2861.53, 11.34, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1112, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1013, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 0, 1751.45, 2868.71, 11.34, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1113, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1014, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 0, 1748.67, 2867.7, 11.34, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1114, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1015, 4, 'Small House In SF', 0, 0, 0, 30000, 0, 0, -2593.7, 845.08, 50.59, 0, 0, 0, 0, -1, 261.06, 1284.29, 1080.25, 0, 4, 1115, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1016, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 0, 1763.1, 2871.36, 11.34, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1116, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1017, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 0, 1760.16, 2870.95, 11.34, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1117, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1018, 4, 'Small House In SF', 0, 0, 0, 30000, 0, 0, -2619.74, 845.31, 50.6, 0, 0, 0, 0, -1, 261.06, 1284.29, 1080.25, 0, 4, 1118, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1019, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 0, 1775, 2870.83, 11.34, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1119, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1020, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 0, 1772.1, 2871.36, 11.34, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1120, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1021, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 0, 1786.52, 2867.69, 11.34, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1121, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1022, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 0, 1783.74, 2868.71, 11.34, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1122, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1023, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 0, 1796.8, 2861.61, 11.34, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1123, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1024, 4, 'Appartment 2nd Floor In SF', 0, 0, 0, 80000, 0, 0, -2592.75, 832.84, 52.09, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1124, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1025, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 0, 1794.42, 2863.38, 11.34, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1125, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1026, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 0, 1731.81, 2855.49, 14.27, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1126, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1027, 4, 'Appartment 1st Floor In SF', 0, 0, 0, 80000, 0, 0, -2594.69, 830.98, 49.98, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1127, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1028, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 0, 1740.84, 2863.27, 14.26, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1128, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1029, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 0, 1738.33, 2861.68, 14.27, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1129, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1030, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 0, 1751.44, 2868.75, 14.27, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1130, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1031, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 0, 1748.65, 2867.74, 14.27, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1131, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1032, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 0, 1763.12, 2871.13, 14.27, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1132, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1033, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 0, 1760.17, 2870.92, 14.27, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1133, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1034, 4, 'Appartment 2nd Floor In SF', 0, 0, 0, 80000, 0, 0, -2620.37, 832.86, 52.09, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1134, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1035, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 0, 1775.01, 2870.88, 14.27, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1135, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1036, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 0, 1772.09, 2871.32, 14.27, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1136, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1037, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 0, 1786.45, 2867.55, 14.27, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1137, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1038, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 0, 1783.76, 2868.77, 14.27, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1138, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1039, 4, 'Appartment 1st Floor In SF', 0, 0, 0, 80000, 0, 0, -2618.75, 831, 49.98, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1139, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1040, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 0, 1796.79, 2861.59, 14.27, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1140, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1041, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 0, 1794.38, 2863.32, 14.27, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1141, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1042, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 0, 1803.38, 2855.49, 14.27, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1142, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1043, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 0, 1789.43, 2733.1, 11.34, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1143, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1044, 4, 'Small House In SF', 0, 0, 0, 30000, 0, 0, -2621.68, 802.98, 49.98, 0, 0, 0, 0, -1, 261.06, 1284.29, 1080.25, 0, 4, 1144, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1045, 4, 'Small Nice House In SF', 0, 0, 0, 60000, 0, 0, -2621.67, 790.74, 48.58, 0, 0, 0, 0, -1, 22.93, 1403.32, 1084.43, 0, 5, 1145, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1046, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 0, 1803.48, 2855.57, 11.34, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1146, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1047, 4, 'Small House In SF', 0, 0, 0, 30000, 0, 0, -2622.51, 782.55, 44.86, 0, 0, 0, 0, -1, 261.06, 1284.29, 1080.25, 0, 4, 1147, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1048, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 0, 1824.3, 2734.53, 11.34, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1148, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1049, 4, 'Small House In SF', 0, 0, 0, 30000, 0, 0, -2622.49, 766.35, 36.84, 0, 0, 0, 0, -1, 261.06, 1284.29, 1080.25, 0, 4, 1149, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1050, 4, 'Small House In SF', 0, 0, 0, 30000, 0, 0, -2622.51, 758.04, 35.33, 0, 0, 0, 0, -1, 261.06, 1284.29, 1080.25, 0, 4, 1150, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1051, 4, 'Small House In SF', 0, 0, 0, 30000, 0, 0, -2622.52, 749.84, 31.42, 0, 0, 0, 0, -1, 261.06, 1284.29, 1080.25, 0, 4, 1151, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1052, 4, 'Nice looking house at lv', 0, 0, 0, 300000, 0, 0, 1663.17, 2754.14, 10.82, 0, 0, 0, 0, -1, 234.22, 1063.89, 1084.21, 0, 6, 1152, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1053, 4, 'huge 2 floor nice looking house at LV', 0, 0, 0, 500000, 0, 0, 1652.51, 2708.85, 10.83, 0, 0, 0, 0, -1, 226.3, 1114.37, 1080.99, 0, 5, 1153, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1054, 4, 'Appartment 2nd Floor In SF', 0, 0, 0, 80000, 0, 0, -2627.54, 735.33, 30.59, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1154, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1055, 4, 'Nice looking house at lv', 0, 0, 0, 300000, 0, 0, 1643.83, 2753.45, 10.82, 0, 0, 0, 0, -1, 234.22, 1063.89, 1084.21, 0, 6, 1155, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1056, 4, 'huge 2 floor nice looking house at LV', 0, 0, 0, 500000, 0, 0, 1627.15, 2710.76, 10.82, 0, 0, 0, 0, -1, 226.3, 1114.37, 1080.99, 0, 5, 1156, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1057, 4, 'Appartment 1st Floor In SF', 0, 0, 0, 80000, 0, 0, -2625.47, 733.21, 28.01, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1157, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1058, 4, 'huge 2 floor nice looking house at LV', 0, 0, 0, 500000, 0, 0, 1626.81, 2754.14, 10.82, 0, 0, 0, 0, -1, 226.3, 1114.37, 1080.99, 0, 5, 1158, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1059, 4, 'Nice looking house at lv', 0, 0, 0, 300000, 0, 0, 1608.72, 2754.14, 10.82, 0, 0, 0, 0, -1, 234.22, 1063.89, 1084.21, 0, 6, 1159, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1060, 4, 'huge 2 floor nice looking house at LV', 0, 0, 0, 500000, 0, 0, 1601.25, 2708.85, 10.83, 0, 0, 0, 0, -1, 226.3, 1114.37, 1080.99, 0, 5, 1160, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1061, 4, 'huge 2 floor nice looking house at LV', 0, 0, 0, 500000, 0, 0, 1599.56, 2757.6, 10.83, 0, 0, 0, 0, -1, 226.3, 1114.37, 1080.99, 0, 5, 1161, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1062, 4, 'huge 2 floor nice looking house at LV', 0, 0, 0, 500000, 0, 0, 1580.26, 2708.85, 10.83, 0, 0, 0, 0, -1, 226.3, 1114.37, 1080.99, 0, 5, 1162, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1063, 4, '3 Story Condo In SF', 0, 0, 0, 120000, 0, 0, -2594.19, 733.11, 28.14, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 1163, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1064, 4, 'huge 2 floor nice looking house at LV', 0, 0, 0, 500000, 0, 0, 1570.28, 2711.11, 10.82, 0, 0, 0, 0, -1, 226.3, 1114.37, 1080.99, 0, 5, 1164, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1065, 4, '3 Story Condo In SF', 0, 0, 0, 120000, 0, 0, -2594.21, 750.87, 33.7, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 1165, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1066, 4, 'Nice looking house at lv', 0, 0, 0, 300000, 0, 0, 1565.47, 2757.04, 10.82, 0, 0, 0, 0, -1, 234.22, 1063.89, 1084.21, 0, 6, 1166, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1067, 4, '3 Story Condo In SF', 0, 0, 0, 120000, 0, 0, -2594.2, 768.05, 40.02, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 1167, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1068, 4, 'Nice looking house at lv', 0, 0, 0, 300000, 0, 0, 1564.78, 2776.51, 10.82, 0, 0, 0, 0, -1, 234.22, 1063.89, 1084.21, 0, 6, 1168, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1069, 4, '3 Story Condo In SF', 0, 0, 0, 120000, 0, 0, -2594.19, 785.26, 46.24, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 1169, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1070, 4, 'Nice looking house at lv', 0, 0, 0, 300000, 0, 0, 1565.47, 2793.43, 10.82, 0, 0, 0, 0, -1, 234.22, 1063.89, 1084.21, 0, 6, 1170, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1071, 4, 'huge 2 floor nice looking house at LV', 0, 0, 0, 500000, 0, 0, 1550.64, 2846.08, 10.83, 0, 0, 0, 0, -1, 226.3, 1114.37, 1080.99, 0, 5, 1171, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1072, 4, 'huge 2 floor nice looking house at LV', 0, 0, 0, 500000, 0, 0, 1575.89, 2844.17, 10.82, 0, 0, 0, 0, -1, 226.3, 1114.37, 1080.99, 0, 5, 1172, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1073, 4, 'huge 2 floor nice looking house at LV', 0, 0, 0, 500000, 0, 0, 1601.78, 2846.08, 10.83, 0, 0, 0, 0, -1, 226.3, 1114.37, 1080.99, 0, 5, 1173, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1074, 4, 'huge 2 floor nice looking house at LV', 0, 0, 0, 500000, 0, 0, 1618.36, 2800.79, 10.82, 0, 0, 0, 0, -1, 226.3, 1114.37, 1080.99, 0, 5, 1174, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1075, 4, 'huge 2 floor nice looking house at LV', 0, 0, 0, 500000, 0, 0, 1622.73, 2846.07, 10.83, 0, 0, 0, 0, -1, 226.3, 1114.37, 1080.99, 0, 5, 1175, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1076, 4, 'huge 2 floor nice looking house at LV', 0, 0, 0, 500000, 0, 0, 1637.79, 2801.48, 10.82, 0, 0, 0, 0, -1, 226.3, 1114.37, 1080.99, 0, 5, 1176, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1077, 4, 'huge 2 floor nice looking house at LV', 0, 0, 0, 500000, 0, 0, 1632.76, 2843.65, 10.82, 0, 0, 0, 0, -1, 226.3, 1114.37, 1080.99, 0, 5, 1177, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1078, 4, 'Nice looking house at lv', 0, 0, 0, 300000, 0, 0, 1654.7, 2800.79, 10.82, 0, 0, 0, 0, -1, 234.22, 1063.89, 1084.21, 0, 6, 1178, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1079, 4, '3 Story Condo In SF', 0, 0, 0, 120000, 0, 0, -2240.52, 753.48, 49.38, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 1179, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1080, 4, 'huge 2 floor nice looking house at LV', 0, 0, 0, 500000, 0, 0, 1664.77, 2846.08, 10.83, 0, 0, 0, 0, -1, 226.3, 1114.37, 1080.99, 0, 5, 1180, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1081, 4, 'Nice looking house at lv', 0, 0, 0, 300000, 0, 0, 1672.95, 2800.79, 10.82, 0, 0, 0, 0, -1, 234.22, 1063.89, 1084.21, 0, 6, 1181, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1082, 4, '3 Story Condo In SF', 0, 0, 0, 120000, 0, 0, -2240.53, 786.16, 49.38, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 1182, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1083, 4, '3 Story Condo In SF', 0, 0, 0, 120000, 0, 0, -2223.7, 795.72, 49.43, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 1183, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1084, 4, 'Nice looking house at lv', 0, 0, 0, 300000, 0, 0, 1555.97, 2658.52, 10.82, 0, 0, 0, 0, -1, 234.22, 1063.89, 1084.21, 0, 6, 1184, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1085, 4, '3 Story Condo In SF', 0, 0, 0, 120000, 0, 0, -2205.42, 795.73, 50.48, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 1185, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1086, 4, 'Nice looking house at lv', 0, 0, 0, 300000, 0, 0, 1573, 2657.83, 10.82, 0, 0, 0, 0, -1, 234.22, 1063.89, 1084.21, 0, 6, 1186, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1087, 4, 'Nice looking house at lv', 0, 0, 0, 300000, 0, 0, 1607.61, 2679.27, 10.82, 0, 0, 0, 0, -1, 234.22, 1063.89, 1084.21, 0, 6, 1187, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1088, 4, '3 Story Condo In SF', 0, 0, 0, 120000, 0, 0, -2187.03, 795.7, 57.56, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 1188, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1089, 4, 'huge 2 floor nice looking house at LV', 0, 0, 0, 500000, 0, 0, 1611.76, 2648.22, 10.83, 0, 0, 0, 0, -1, 226.3, 1114.37, 1080.99, 0, 5, 1189, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1090, 4, '3 Story Condo In SF', 0, 0, 0, 120000, 0, 0, -2168.82, 795.76, 64.97, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 1190, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1091, 4, '3 Story Condo In SF', 0, 0, 0, 120000, 0, 0, -2159.21, 786.09, 69.52, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 1191, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1092, 4, '3 Story Condo In SF', 0, 0, 0, 120000, 0, 0, -2159.18, 770, 69.52, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 1192, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1093, 4, 'Nice looking house at lv', 0, 0, 0, 300000, 0, 0, 1265.47, 2610.03, 10.82, 0, 0, 0, 0, -1, 234.22, 1063.89, 1084.21, 0, 6, 1193, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1094, 4, '3 Story Condo In SF', 0, 0, 0, 120000, 0, 0, -2159.23, 753.49, 69.51, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 1194, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1095, 4, 'huge 2 floor nice looking house at LV', 0, 0, 0, 500000, 0, 0, 1225.27, 2584.94, 10.82, 0, 0, 0, 0, -1, 226.3, 1114.37, 1080.99, 0, 5, 1195, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1096, 4, 'huge 2 floor nice looking house at LV', 0, 0, 0, 500000, 0, 0, 1223.02, 2616.85, 10.83, 0, 0, 0, 0, -1, 226.3, 1114.37, 1080.99, 0, 5, 1196, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1097, 4, '3 Story Condo In SF', 0, 0, 0, 120000, 0, 0, -2168.52, 744.01, 64.98, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 1197, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1098, 4, '3 Story Condo In SF', 0, 0, 0, 120000, 0, 0, -2186.9, 744, 57.55, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 1198, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1099, 4, '3 Story Condo In SF', 0, 0, 0, 120000, 0, 0, -2205.46, 744, 50.48, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 1199, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1100, 4, 'lv project apartment small', 0, 0, 0, 40000, 1, 0, 1731.8, 2855.49, 11.34, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1200, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1101, 4, '3 Story Condo In SF', 0, 0, 0, 120000, 0, 0, -2223.71, 743.99, 49.43, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 1201, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1102, 4, '6 Story Condo In SF', 0, 0, 0, 450000, 0, 0, -2238.31, 1154.14, 59.69, 0, 0, 0, 0, -1, 226.3, 1114.37, 1080.99, 0, 5, 1202, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1103, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 0, 2651.65, 1978.84, 10.82, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1203, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1104, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 0, 2649.77, 1978.84, 10.82, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1204, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1105, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 0, 2642.47, 1978.84, 10.82, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1205, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1106, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 0, 2640.47, 1978.84, 10.82, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1206, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1107, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 0, 2633.06, 1978.84, 10.82, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1207, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1108, 4, '5 Story Condo In SF', 0, 0, 0, 500000, 0, 0, -2238.36, 1135.89, 67.26, 0, 0, 0, 0, -1, 226.3, 1114.37, 1080.99, 0, 5, 1208, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1109, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 0, 2631.15, 1978.84, 10.82, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1209, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1110, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 0, 2623.89, 1978.84, 10.82, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1210, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1111, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 0, 2623.87, 1978.84, 14.12, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1211, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1112, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 0, 2631.33, 1978.84, 14.12, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1212, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1113, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 0, 2633.24, 1978.84, 14.12, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1213, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1114, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 0, 2640.46, 1978.84, 14.12, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1214, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1115, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 0, 2642.55, 1978.84, 14.12, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1215, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1116, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 0, 2649.89, 1978.84, 14.12, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1216, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1117, 4, '3 Story Condo In SF', 0, 0, 0, 120000, 0, 0, -2238.36, 1117.54, 74.82, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 1217, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1118, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 0, 2651.66, 1978.84, 14.12, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1218, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1119, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 0, 2659.23, 1978.84, 14.12, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1219, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1120, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 0, 2656.5, 1968.82, 14.12, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1220, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1121, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 0, 2654.39, 1968.82, 14.12, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1221, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1122, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 0, 2647.14, 1968.82, 14.12, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1222, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1123, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 0, 2645.16, 1968.82, 14.12, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1223, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1124, 4, '3 Story Condo In SF', 0, 0, 0, 120000, 0, 0, -2239.76, 1070.74, 81.02, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 1224, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1125, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 0, 2637.68, 1968.82, 14.12, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1225, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1126, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 0, 2635.83, 1968.82, 14.12, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1226, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1127, 4, '3 Story Condo In SF', 0, 0, 0, 120000, 0, 0, -2239.75, 1054.09, 82.84, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 1227, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1128, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 0, 2628.55, 1968.82, 14.12, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1228, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1129, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 0, 2626.6, 1968.82, 14.12, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1229, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1130, 4, '3 Story Condo In SF', 0, 0, 0, 120000, 0, 0, -2239.75, 1037.69, 83.85, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 1230, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1131, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 0, 2645.48, 2019.21, 10.82, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1231, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1132, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 0, 2643.76, 2019.21, 10.81, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1232, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1133, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 0, 2636.22, 2019.21, 10.82, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1233, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1134, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 0, 2634.43, 2019.21, 10.82, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1234, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1135, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 0, 2626.93, 2019.21, 10.82, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1235, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1136, 4, '3 Story Condo In SF', 0, 0, 0, 120000, 0, 0, -2230.58, 1028, 83.84, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 1236, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1137, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 0, 2625.15, 2019.21, 10.82, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1237, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1138, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 0, 2617.69, 2019.21, 14.12, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1238, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1139, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 0, 2625.16, 2019.21, 14.12, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1239, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1140, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 0, 2627.05, 2019.21, 14.12, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1240, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1141, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 0, 2634.48, 2019.21, 14.12, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1241, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1142, 4, '3 Story Condo In SF', 0, 0, 0, 120000, 0, 0, -2169.63, 1028.01, 80.01, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 1242, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1143, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 0, 2636.22, 2019.21, 14.12, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1243, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1144, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 0, 2643.66, 2019.21, 14.12, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1244, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1145, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 0, 2645.58, 2019.21, 14.12, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1245, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1146, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 0, 2653.25, 2019.21, 14.12, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1246, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1147, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 0, 2650.33, 2029.23, 14.12, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1247, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1148, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 0, 2648.34, 2029.23, 14.12, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1248, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1149, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 0, 2640.71, 2029.23, 14.12, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1249, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1150, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 0, 2638.92, 2029.23, 14.12, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1250, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1151, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 0, 2631.54, 2029.23, 14.12, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1251, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1152, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 0, 2629.68, 2029.23, 14.12, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1252, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1153, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 0, 2622.22, 2029.23, 14.12, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1253, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1154, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 0, 2620.37, 2029.23, 14.12, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1254, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1155, 4, '3 Story Condo In SF', 0, 0, 0, 120000, 0, 0, -2160.15, 1030.61, 80.01, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 1255, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1156, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 0, 2652.92, 2019.21, 10.82, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1256, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1157, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 0, 2617.54, 2019.21, 10.81, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1257, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1158, 4, '3 Story Condo In SF', 0, 0, 0, 120000, 0, 0, -2160.15, 1048.61, 80.01, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 1258, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1159, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 0, 2620.54, 2029.23, 10.82, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1259, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1160, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 0, 2622.34, 2029.23, 10.82, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1260, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1161, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 0, 2629.8, 2029.23, 10.82, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1261, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1162, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 0, 2631.65, 2029.23, 10.82, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1262, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1163, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 0, 2639.07, 2029.23, 10.82, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1263, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1164, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 0, 2641.14, 2029.23, 10.82, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1264, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1165, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 0, 2648.34, 2029.23, 10.82, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1265, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1166, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 0, 2650.35, 2029.23, 10.81, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1266, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1167, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 0, 2623.65, 2039.4, 10.82, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1267, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1168, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 0, 2623.65, 2046.99, 10.81, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1268, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1169, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 0, 2623.65, 2048.81, 10.81, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1269, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1170, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 0, 2623.65, 2056.16, 10.81, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1270, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1171, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 0, 2623.65, 2058.1, 10.81, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1271, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1172, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 0, 2623.65, 2065.44, 10.82, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1272, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1173, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 0, 2623.65, 2067.4, 10.82, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1273, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1174, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 0, 2623.65, 2074.85, 10.81, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1274, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1175, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 0, 2623.65, 2074.93, 14.12, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1275, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1176, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 0, 2623.65, 2067.53, 14.12, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1276, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1177, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 0, 2623.65, 2065.52, 14.12, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1277, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1178, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 0, 2623.65, 2058.19, 14.12, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1278, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1179, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 0, 2623.65, 2056.03, 14.12, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1279, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1180, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 0, 2623.65, 2048.66, 14.12, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1280, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1181, 4, 'Medium house at LV', 0, 0, 0, 150000, 0, 0, 2206.32, 691.25, 11.46, 0, 0, 0, 0, -1, 447, 1397.09, 1084.3, 0, 2, 1281, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1182, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 0, 2623.65, 2046.85, 14.12, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1282, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1183, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 0, 2623.65, 2039.52, 14.12, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1283, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1184, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 0, 2613.64, 2042.23, 14.12, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1284, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1185, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 0, 2613.64, 2044.19, 14.12, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1285, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1186, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 0, 2613.64, 2051.56, 14.12, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1286, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1187, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 0, 2613.64, 2053.43, 14.12, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1287, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1188, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 0, 2613.64, 2060.92, 14.12, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1288, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1189, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 0, 2613.64, 2062.75, 14.12, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1289, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1190, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 0, 2613.64, 2070.18, 14.12, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1290, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1191, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 0, 2613.64, 2072.07, 14.12, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1291, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1192, 4, '3 Story Condo In SF', 0, 0, 0, 120000, 0, 0, -2160.15, 1066.91, 80.01, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 1292, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1193, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 0, 2626.63, 1968.82, 10.82, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1293, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1194, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 0, 2628.41, 1968.82, 10.82, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1294, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1195, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 0, 2635.94, 1968.82, 10.82, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1295, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1196, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 0, 2637.82, 1968.82, 10.82, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1296, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1197, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 0, 2645.3, 1968.82, 10.82, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1297, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1198, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 0, 2647.13, 1968.82, 10.82, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1298, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1199, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 0, 2654.56, 1968.82, 10.82, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1299, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1200, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 0, 2656.5, 1968.82, 10.82, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1300, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1201, 4, '3 Story Condo In SF', 0, 0, 0, 120000, 0, 0, -2158.36, 1117.61, 74.49, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 1301, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1202, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 0, 2659.19, 1978.84, 10.82, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1302, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1203, 4, '5 Story Condo In SF', 0, 0, 0, 500000, 0, 0, -2158.36, 1148.65, 61.85, 0, 0, 0, 0, -1, 226.3, 1114.37, 1080.99, 0, 5, 1303, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1204, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 0, 2613.64, 2071.98, 10.82, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1304, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1205, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 0, 2613.64, 2070.12, 10.82, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1305, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1206, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 0, 2613.64, 2062.79, 10.81, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1306, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1207, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 0, 2613.63, 2060.82, 10.81, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1307, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1208, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 0, 2613.64, 2053.51, 10.81, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1308, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1209, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 0, 2613.64, 2051.58, 10.82, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1309, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1210, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 0, 2613.64, 2044.13, 10.82, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1310, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1211, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 0, 2613.64, 2042.09, 10.82, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1311, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1212, 4, '6 Story Condo In SF', 0, 0, 0, 450000, 0, 0, -2172.59, 1163.75, 55.73, 0, 0, 0, 0, -1, 226.3, 1114.37, 1080.99, 0, 5, 1312, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1213, 4, '6 Story Condo In SF', 0, 0, 0, 450000, 0, 0, -2189.18, 1163.76, 55.73, 0, 0, 0, 0, -1, 226.3, 1114.37, 1080.99, 0, 5, 1313, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1214, 4, '6 Story Condo In SF', 0, 0, 0, 450000, 0, 0, -2205.8, 1163.76, 55.73, 0, 0, 0, 0, -1, 226.3, 1114.37, 1080.99, 0, 5, 1314, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1215, 4, '6 Story Condo In SF', 0, 0, 0, 450000, 0, 0, -2222.19, 1163.75, 55.73, 0, 0, 0, 0, -1, 226.3, 1114.37, 1080.99, 0, 5, 1315, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1216, 4, '3 Story Condo In SF', 0, 0, 0, 120000, 0, 0, -2102.54, 1159.83, 53.27, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 1316, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1217, 4, '3 Story Condo In SF', 0, 0, 0, 120000, 0, 0, -2084.2, 1159.83, 49.95, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 1317, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1218, 4, '3 Story Condo In SF', 0, 0, 0, 120000, 0, 0, -2065.95, 1159.84, 46.65, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 1318, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1219, 4, 'Nice looking house at lv', 0, 0, 0, 300000, 0, 0, 2013.25, 730.36, 11.45, 0, 0, 0, 0, -1, 234.22, 1063.89, 1084.21, 0, 6, 1319, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1220, 4, 'Medium house at LV', 0, 0, 0, 150000, 0, 0, 2014.13, 775.2, 11.46, 0, 0, 0, 0, -1, 447, 1397.09, 1084.3, 0, 2, 1320, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1221, 4, 'Medium house at LV', 0, 0, 0, 150000, 950, 0, 2042.44, 731.26, 11.46, 0, 0, 0, 0, -1, 447, 1397.09, 1084.3, 0, 2, 1321, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1222, 4, 'Medium house at LV', 0, 0, 0, 150000, 0, 0, 2043.24, 776.1, 11.45, 0, 0, 0, 0, -1, 447, 1397.09, 1084.3, 0, 2, 1322, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1223, 4, '5 Story Condo In SF', 0, 0, 0, 500000, 0, 0, -1761.05, 1174.03, 25.13, 0, 0, 0, 0, -1, 226.3, 1114.37, 1080.99, 0, 5, 1323, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1224, 4, 'Medium house at LV', 0, 0, 0, 150000, 0, 0, 2065.13, 729.82, 11.47, 0, 0, 0, 0, -1, 447, 1397.09, 1084.3, 0, 2, 1324, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1225, 4, '6 Story Condo In SF', 0, 0, 0, 450000, 0, 0, -1742.62, 1174.05, 25.13, 0, 0, 0, 0, -1, 226.3, 1114.37, 1080.99, 0, 5, 1325, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1226, 4, 'Medium house at LV', 0, 0, 0, 150000, 0, 0, 2071.62, 776.64, 11.46, 0, 0, 0, 0, -1, 447, 1397.09, 1084.3, 0, 2, 1326, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1227, 4, 'Medium house at LV', 0, 0, 0, 150000, 1500, 0, 2093.41, 730.36, 11.45, 0, 0, 0, 0, -1, 447, 1397.09, 1084.3, 0, 2, 1327, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1228, 4, 'Medium house at LV', 0, 0, 0, 150000, 0, 0, 2094, 775.2, 11.45, 0, 0, 0, 0, -1, 447, 1397.09, 1084.3, 0, 2, 1328, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1229, 4, '5 Story Condo In SF', 0, 0, 0, 500000, 0, 0, -1728.32, 1158.79, 30.45, 0, 0, 0, 0, -1, 226.3, 1114.37, 1080.99, 0, 5, 1329, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1230, 4, 'Medium house at LV', 0, 0, 0, 150000, 500, 0, 2122.3, 731.26, 11.46, 0, 0, 0, 0, -1, 447, 1397.09, 1084.3, 0, 2, 1330, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1231, 4, 'Medium house at LV', 0, 0, 0, 150000, 0, 0, 2123.41, 776.1, 11.44, 0, 0, 0, 0, -1, 447, 1397.09, 1084.3, 0, 2, 1331, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1232, 4, '5 Story Condo In SF', 0, 0, 0, 500000, 0, 0, -1728.31, 1138.95, 38.57, 0, 0, 0, 0, -1, 226.3, 1114.37, 1080.99, 0, 5, 1332, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1233, 4, 'Medium house at LV', 0, 0, 0, 150000, 0, 0, 2169.36, 772.38, 11.46, 0, 0, 0, 0, -1, 447, 1397.09, 1084.3, 0, 2, 1333, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1234, 4, 'Medium house at LV', 0, 0, 0, 150000, 0, 0, 2177.18, 690.35, 11.46, 0, 0, 0, 0, -1, 447, 1397.09, 1084.3, 0, 2, 1334, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1235, 4, 'Medium house at LV', 0, 0, 0, 150000, 5000, 0, 2228.68, 689.81, 11.46, 0, 0, 0, 0, -1, 447, 1397.09, 1084.3, 0, 2, 1335, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1236, 4, 'Medium house at LV', 0, 0, 0, 150000, 0, 0, 2206, 736.63, 11.47, 0, 0, 0, 0, -1, 447, 1397.09, 1084.3, 0, 2, 1336, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1237, 4, 'Medium house at LV', 0, 0, 0, 150000, 0, 0, 2177.61, 736.1, 11.46, 0, 0, 0, 0, -1, 447, 1397.09, 1084.3, 0, 2, 1337, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1238, 4, 'Medium house at LV', 0, 0, 0, 150000, 0, 0, 2228.25, 735.2, 11.46, 0, 0, 0, 0, -1, 447, 1397.09, 1084.3, 0, 2, 1338, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1239, 4, '4 Story Condo In SF', 0, 0, 0, 400000, 0, 0, -1929.89, 1190.53, 45.45, 0, 0, 0, 0, -1, 234.22, 1063.89, 358.5, 0, 6, 1339, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1240, 4, 'Medium house at LV', 0, 0, 0, 150000, 0, 0, 2256.98, 690.34, 11.45, 0, 0, 0, 0, -1, 447, 1397.09, 1084.3, 0, 2, 1340, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1241, 4, '4 Story Condo In SF', 0, 0, 0, 400000, 0, 0, -1915.56, 1190.54, 45.45, 0, 0, 0, 0, -1, 234.22, 1063.89, 358.5, 0, 6, 1341, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1242, 4, 'Medium house at LV', 0, 0, 0, 150000, 0, 0, 2257.52, 736.11, 11.46, 0, 0, 0, 0, -1, 447, 1397.09, 1084.3, 0, 2, 1342, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1243, 4, '4 Story Condo In SF', 0, 0, 0, 400000, 0, 0, -1872.07, 1146.71, 45.45, 0, 0, 0, 0, -1, 234.22, 1063.89, 358.5, 0, 6, 1343, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1244, 4, 'Medium house at LV', 0, 0, 0, 150000, 0, 0, 2317.15, 690.35, 11.46, 0, 0, 0, 0, -1, 447, 1397.09, 1084.3, 0, 2, 1344, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1245, 4, '4 Story Condo In SF', 0, 0, 0, 400000, 0, 0, -1872.08, 1125.38, 45.45, 0, 0, 0, 0, -1, 234.22, 1063.89, 358.5, 0, 6, 1345, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1246, 4, 'Medium house at LV', 0, 0, 0, 150000, 0, 0, 2346.6, 736.63, 11.47, 0, 0, 0, 0, -1, 447, 1397.09, 1084.3, 0, 2, 1346, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1247, 4, 'Medium house at LV', 0, 0, 0, 150000, 0, 0, 2346.35, 691.25, 11.46, 0, 0, 0, 0, -1, 447, 1397.09, 1084.3, 0, 2, 1347, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1248, 4, 'Medium house at LV', 0, 0, 0, 150000, 0, 0, 2369.11, 735.2, 11.46, 0, 0, 0, 0, -1, 447, 1397.09, 1084.3, 0, 2, 1348, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1249, 4, '5 Story Condo In SF', 0, 0, 0, 500000, 0, 0, -1901.41, 1203.19, 42.38, 0, 0, 0, 0, -1, 226.3, 1114.37, 1080.99, 0, 5, 1349, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1250, 4, 'Medium house at LV', 0, 0, 0, 150000, 0, 0, 2368.45, 689.8, 11.46, 0, 0, 0, 0, -1, 447, 1397.09, 1084.3, 0, 2, 1350, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1251, 4, 'Medium house at LV', 0, 0, 0, 150000, 0, 0, 2398.36, 736.1, 11.46, 0, 0, 0, 0, -1, 447, 1397.09, 1084.3, 0, 2, 1351, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1252, 4, 'Medium house at LV', 0, 0, 0, 150000, 0, 0, 2396.96, 690.34, 11.45, 0, 0, 0, 0, -1, 447, 1397.09, 1084.3, 0, 2, 1352, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1253, 4, 'Medium house at LV', 0, 0, 0, 150000, 0, 0, 2450.27, 742.54, 11.46, 0, 0, 0, 0, -1, 447, 1397.09, 1084.3, 0, 2, 1353, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1254, 4, '5 Story Condo In SF', 0, 0, 0, 500000, 0, 0, -1852.62, 1162.22, 40.94, 0, 0, 0, 0, -1, 226.3, 1114.37, 1080.99, 0, 5, 1354, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1255, 4, 'Medium house at LV', 0, 0, 0, 150000, 0, 0, 2450.81, 714.31, 11.47, 0, 0, 0, 0, -1, 447, 1397.09, 1084.3, 0, 2, 1355, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1256, 4, 'Medium house at LV', 0, 0, 0, 150000, 1, 0, 2449.23, 689.74, 11.46, 0, 0, 0, 0, -1, 447, 1397.09, 1084.3, 0, 2, 1356, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1257, 4, 'Medium house at LV', 0, 0, 0, 150000, 0, 0, 2450.27, 662.64, 11.46, 0, 0, 0, 0, -1, 447, 1397.09, 1084.3, 0, 2, 1357, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1258, 4, 'Medium house at LV', 0, 0, 0, 150000, 0, 0, 2397.68, 656.11, 11.46, 0, 0, 0, 0, -1, 447, 1397.09, 1084.3, 0, 2, 1358, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1259, 4, 'Medium house at LV', 0, 0, 0, 150000, 0, 0, 2368.38, 655.21, 11.46, 0, 0, 0, 0, -1, 447, 1397.09, 1084.3, 0, 2, 1359, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1260, 4, 'Medium house at LV', 0, 0, 0, 150000, 0, 0, 2346.09, 656.64, 11.46, 0, 0, 0, 0, -1, 447, 1397.09, 1084.3, 0, 2, 1360, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1261, 4, 'Medium house at LV', 0, 0, 0, 150000, 100, 0, 2317.81, 656.1, 11.45, 0, 0, 0, 0, -1, 447, 1397.09, 1084.3, 0, 2, 1361, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1262, 4, '4 Story Condo In SF', 0, 0, 0, 400000, 0, 0, -1831.8, 1165.88, 33.68, 0, 0, 0, 0, -1, 234.22, 1063.89, 358.5, 0, 6, 1362, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1263, 4, 'Medium house at LV', 0, 0, 0, 150000, 0, 0, 2258.11, 655.98, 11.45, 0, 0, 0, 0, -1, 447, 1397.09, 1084.3, 0, 2, 1363, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1264, 4, 'Medium house at LV', 0, 0, 0, 150000, 0, 0, 2229.04, 655.18, 11.46, 0, 0, 0, 0, -1, 447, 1397.09, 1084.3, 0, 2, 1364, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1265, 4, 'Medium house at LV', 0, 0, 0, 150000, 0, 0, 2206.41, 656.63, 11.47, 0, 0, 0, 0, -1, 447, 1397.09, 1084.3, 0, 2, 1365, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1266, 4, 'Medium house at LV', 0, 0, 0, 150000, 0, 0, 2178.16, 655.99, 11.46, 0, 0, 0, 0, -1, 447, 1397.09, 1084.3, 0, 2, 1366, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1267, 4, '6 Story Condo In SF', 0, 0, 0, 450000, 0, 0, -1732.27, 1115.52, 45.45, 0, 0, 0, 0, -1, 226.3, 1114.37, 1080.99, 0, 5, 1367, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1268, 4, 'Medium house at LV', 0, 0, 0, 150000, 0, 0, 2123.27, 651.31, 11.46, 0, 0, 0, 0, -1, 447, 1397.09, 1084.3, 0, 2, 1368, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1269, 4, 'Medium house at LV', 0, 0, 0, 150000, 0, 0, 2120.44, 696.09, 11.45, 0, 0, 0, 0, -1, 447, 1397.09, 1084.3, 0, 2, 1369, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1270, 4, '6 Story Condo In SF', 0, 0, 0, 450000, 0, 0, -1776.18, 1115.52, 45.45, 0, 0, 0, 0, -1, 226.3, 1114.37, 1080.99, 0, 5, 1370, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1271, 4, 'Medium house at LV', 0, 0, 0, 150000, 0, 0, 2091.24, 695.19, 11.46, 0, 0, 0, 0, -1, 447, 1397.09, 1084.3, 0, 2, 1371, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1272, 4, 'Medium house at LV', 0, 0, 0, 150000, 0, 0, 2094.12, 650.4, 11.46, 0, 0, 0, 0, -1, 447, 1397.09, 1084.3, 0, 2, 1372, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1273, 4, '4 Story Condo In SF', 0, 0, 0, 400000, 0, 0, -1780.11, 1138.79, 38.59, 0, 0, 0, 0, -1, 234.22, 1063.89, 358.5, 0, 6, 1373, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1274, 4, 'Medium house at LV', 0, 0, 0, 150000, 0, 0, 2068.96, 696.63, 11.47, 0, 0, 0, 0, -1, 447, 1397.09, 1084.3, 0, 2, 1374, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1275, 4, '4 Story Condo In SF', 0, 0, 0, 400000, 0, 0, -1780.12, 1158.76, 30.45, 0, 0, 0, 0, -1, 234.22, 1063.89, 358.5, 0, 6, 1375, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1276, 4, 'Medium house at LV', 0, 0, 0, 150000, 0, 0, 2065.82, 649.86, 11.47, 0, 0, 0, 0, -1, 447, 1397.09, 1084.3, 0, 2, 1376, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1277, 4, 'Medium house at LV', 0, 0, 0, 150000, 0, 0, 2040.71, 696.09, 11.45, 0, 0, 0, 0, -1, 447, 1397.09, 1084.3, 0, 2, 1377, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1278, 4, 'Medium house at LV', 0, 0, 0, 150000, 150, 0, 2043.26, 651.31, 11.46, 0, 0, 0, 0, -1, 447, 1397.09, 1084.3, 0, 2, 1378, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1279, 4, 'Medium house at LV', 0, 0, 0, 150000, 400, 0, 2011.61, 695.19, 11.46, 0, 0, 0, 0, -1, 447, 1397.09, 1084.3, 0, 2, 1379, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1280, 4, 'Medium house at LV', 0, 0, 0, 150000, 150, 0, 2013.96, 650.4, 11.46, 0, 0, 0, 0, -1, 447, 1397.09, 1084.3, 0, 2, 1380, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1281, 4, '4 Story Condo In SF', 0, 0, 0, 400000, 0, 0, -1820.68, 1117.26, 46.45, 0, 0, 0, 0, -1, 234.22, 1063.89, 358.5, 0, 6, 1381, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1282, 4, '4 Story Condo In SF', 0, 0, 0, 400000, 0, 0, -1842.59, 1115.52, 45.45, 0, 0, 0, 0, -1, 234.22, 1063.89, 358.5, 0, 6, 1382, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1283, 4, '4 Story Condo In SF', 0, 0, 0, 400000, 0, 0, -1860.83, 1115.51, 45.45, 0, 0, 0, 0, -1, 234.22, 1063.89, 358.5, 0, 6, 1383, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1284, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 0, 2571.53, 719.4, 14.74, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1384, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1285, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 0, 2579.08, 719.48, 14.74, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1385, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1286, 4, '4 Story Condo In SF', 0, 0, 0, 400000, 0, 0, -2024.5, 1275.93, 7.19, 0, 0, 0, 0, -1, 234.22, 1063.89, 358.5, 0, 6, 1386, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1287, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 0, 2571.53, 713.24, 14.74, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1387, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1288, 4, '4 Story Condo In SF', 0, 0, 0, 400000, 0, 0, -2029, 1275.91, 7.19, 0, 0, 0, 0, -1, 234.22, 1063.89, 358.5, 0, 6, 1388, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1289, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 0, 2579.08, 713.23, 14.74, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1389, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1290, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 0, 2579.08, 719.54, 10.82, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1390, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1291, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 0, 2571.7, 719.52, 10.82, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1391, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1292, 4, '3 Story Condo In SF', 0, 0, 0, 120000, 0, 0, -2043.83, 1261.38, 9.2, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 1392, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1293, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 0, 2621.06, 719.54, 10.82, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1393, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1294, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 0, 2613.51, 719.58, 10.82, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1394, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1295, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 0, 2613.51, 719.47, 14.74, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1395, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1296, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 0, 2621.06, 719.4, 14.74, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1396, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1297, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 0, 2613.5, 713.38, 14.74, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1397, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1298, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 0, 2621.06, 713.23, 14.74, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1398, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1299, 4, '3 Story Condo In SF', 0, 0, 0, 120000, 0, 0, -2383.11, 1336.27, 12.8, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 1399, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1300, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 0, 2540.06, 719.54, 10.82, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1400, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1301, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 0, 2532.51, 719.58, 10.82, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1401, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1302, 4, '3 Story Condo In SF', 0, 0, 0, 120000, 0, 0, -2351.14, 1336.15, 12.79, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 1402, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1303, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 0, 2532.5, 719.58, 14.74, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1403, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1304, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 0, 2540.06, 719.53, 14.74, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1404, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1305, 4, 'lv project apartment small', 0, 0, 0, 40000, 1, 0, 2532.51, 713.23, 14.74, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1405, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1306, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 0, 2540.06, 713.2, 14.74, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1406, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1307, 4, '3 Story Condo In SF', 0, 0, 0, 120000, 0, 0, -2351.15, 1318.02, 16.22, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 1407, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1308, 4, '3 Story Condo In SF', 0, 0, 0, 120000, 0, 0, -2351.16, 1299.56, 19.58, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 1408, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1309, 4, '3 Story Condo In SF', 0, 0, 0, 120000, 0, 0, -2351.14, 1281.29, 22.94, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 1409, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1310, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 0, 2660.08, 719.42, 10.82, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1410, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1311, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 0, 2652.53, 719.49, 10.82, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1411, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1312, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 0, 2652.53, 719.52, 14.74, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1412, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1313, 4, '3 Story Condo In SF', 0, 0, 0, 120000, 0, 0, -2351.15, 1262.93, 26.32, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 1413, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1314, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 0, 2660.08, 719.58, 14.74, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1414, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1315, 4, '3 Story Condo In SF', 0, 0, 0, 120000, 0, 0, -2351.15, 1244.69, 29.68, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 1415, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1316, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 0, 2652.53, 713.16, 10.82, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1416, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1317, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 0, 2660.08, 713.32, 10.82, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1417, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1318, 4, '3 Story Condo In SF', 0, 0, 0, 120000, 0, 0, -2351.15, 1226.37, 33.03, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 1418, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1319, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 0, 2652.53, 713.27, 14.74, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1419, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1320, 4, '3 Story Condo In SF', 0, 0, 0, 120000, 0, 0, -2383.13, 1226.35, 33.04, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 1420, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1321, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 0, 2660.08, 713.33, 14.74, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1421, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1322, 4, '3 Story Condo In SF', 0, 0, 0, 120000, 0, 0, -2383.09, 1244.63, 29.69, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 1422, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1323, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 0, 2613.51, 713.39, 10.82, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1423, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1324, 4, '3 Story Condo In SF', 0, 0, 0, 120000, 0, 0, -2383.14, 1262.96, 26.33, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 1424, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1325, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 0, 2621.06, 713.22, 10.82, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1425, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1326, 4, '3 Story Condo In SF', 0, 0, 0, 120000, 0, 0, -2383.12, 1281.31, 22.96, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 1426, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1327, 4, '3 Story Condo In SF', 0, 0, 0, 120000, 0, 0, -2383.14, 1299.71, 19.6, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 1427, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1328, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 0, 2579.08, 713.21, 10.82, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1428, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1329, 4, '3 Story Condo In SF', 0, 0, 0, 120000, 0, 0, -2383.12, 1317.95, 16.24, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 1429, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1330, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 0, 2571.53, 713.25, 10.82, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1430, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1331, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 0, 2540.06, 713.25, 10.82, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1431, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1332, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 0, 2532.51, 713.37, 10.82, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1432, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1333, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 0, 2526.21, 750.1, 10.82, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1433, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1334, 4, 'Normal Size House In SF', 0, 0, 0, 85000, 0, 0, -2433.08, 1338.17, 8.51, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 1434, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1335, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 0, 2526.13, 742.54, 10.82, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1435, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1336, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 0, 2525.97, 742.54, 14.74, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1436, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1337, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 0, 2526.04, 750.09, 14.74, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1437, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1338, 4, 'Small House In SF', 0, 0, 0, 30000, 0, 0, -2433.76, 1318.71, 13.87, 0, 0, 0, 0, -1, 261.06, 1284.29, 1080.25, 0, 4, 1438, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1339, 4, 'Small House In SF', 0, 0, 0, 30000, 0, 0, -2434.02, 1311.06, 15.42, 0, 0, 0, 0, -1, 261.06, 1284.29, 1080.25, 0, 4, 1439, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1340, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 0, 2532.3, 742.54, 10.82, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1440, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1341, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 0, 2532.36, 750.09, 10.82, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1441, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1342, 4, 'Small House In SF', 0, 0, 0, 30000, 0, 0, -2433.07, 1301.14, 18.38, 0, 0, 0, 0, -1, 261.06, 1284.29, 1080.25, 0, 4, 1442, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1343, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 0, 2532.43, 750.09, 14.74, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1443, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1344, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 0, 2532.36, 742.54, 14.74, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1444, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1345, 4, 'Small House In SF', 0, 0, 0, 30000, 0, 0, -2433.77, 1281.61, 23.74, 0, 0, 0, 0, -1, 261.06, 1284.29, 1080.25, 0, 4, 1445, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1346, 4, 'Small House In SF', 0, 0, 0, 30000, 0, 0, -2434, 1274.07, 25.31, 0, 0, 0, 0, -1, 261.06, 1284.29, 1080.25, 0, 4, 1446, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1347, 4, 'Normal Size House In SF', 0, 0, 0, 85000, 0, 0, -2433.06, 1264.12, 28.26, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 1447, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1348, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 0, 2660.31, 750.1, 10.82, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1448, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1349, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 0, 2660.28, 742.54, 10.82, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1449, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1350, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 0, 2666.5, 750.1, 10.82, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1450, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1351, 4, 'Small House In SF', 0, 0, 0, 30000, 0, 0, -2433.72, 1244.43, 33.62, 0, 0, 0, 0, -1, 261.06, 1284.29, 1080.25, 0, 4, 1451, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1352, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 0, 2666.5, 742.54, 10.82, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1452, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1353, 4, 'Small House In SF', 0, 0, 0, 30000, 0, 0, -2477.24, 1244.31, 33.61, 0, 0, 0, 0, -1, 261.06, 1284.29, 1080.25, 0, 4, 1453, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1354, 4, 'Normal Size House In SF', 0, 0, 0, 85000, 0, 0, -2477.93, 1264.22, 28.25, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 1454, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1355, 4, 'Small House In SF', 0, 0, 0, 30000, 0, 0, -2476.93, 1274.28, 25.31, 0, 0, 0, 0, -1, 261.06, 1284.29, 1080.25, 0, 4, 1455, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1356, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 0, 2660.21, 742.55, 14.74, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1456, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1357, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 0, 2660.38, 750.1, 14.74, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1457, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1358, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 0, 2666.43, 742.54, 14.74, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1458, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1359, 4, 'Small House In SF', 0, 0, 0, 30000, 0, 0, -2477.19, 1281.51, 23.73, 0, 0, 0, 0, -1, 261.06, 1284.29, 1080.25, 0, 4, 1459, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1360, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 0, 2666.53, 750.1, 14.74, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1460, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1361, 4, 'Normal Size House In SF', 0, 0, 0, 85000, 0, 0, -2477.88, 1301.24, 18.38, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 1461, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1362, 4, 'Small House In SF', 0, 0, 0, 30000, 0, 0, -2476.93, 1311.23, 15.41, 0, 0, 0, 0, -1, 261.06, 1284.29, 1080.25, 0, 4, 1462, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1363, 4, 'Small House In SF', 0, 0, 0, 30000, 0, 0, -2477.2, 1318.62, 13.85, 0, 0, 0, 0, -1, 261.06, 1284.29, 1080.25, 0, 4, 1463, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1364, 4, 'Normal Size House In SF', 0, 0, 0, 85000, 0, 0, -2477.87, 1338.25, 8.5, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 1464, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1365, 4, 'Medium house at LV', 0, 0, 0, 150000, 5000, 0, 1845.44, 661.13, 11.46, 0, 0, 0, 0, -1, 447, 1397.09, 1084.3, 0, 2, 1465, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1366, 4, 'Medium house at LV', 0, 0, 0, 150000, 200, 0, 1844.53, 690.45, 11.45, 0, 0, 0, 0, -1, 447, 1397.09, 1084.3, 0, 2, 1466, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1367, 4, 'Medium house at LV', 0, 0, 0, 150000, 0, 0, 1843.99, 718.83, 11.47, 0, 0, 0, 0, -1, 447, 1397.09, 1084.3, 0, 2, 1467, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1368, 4, 'Medium house at LV', 0, 0, 0, 150000, 0, 0, 1845.44, 741.39, 11.46, 0, 0, 0, 0, -1, 447, 1397.09, 1084.3, 0, 2, 1468, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1369, 4, '3 Story Condo In SF', 0, 0, 0, 120000, 0, 0, -2126.45, 1087.64, 80.01, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 1469, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1370, 4, '3 Story Condo In SF', 0, 0, 0, 120000, 0, 0, -2126.5, 1069.28, 80.01, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 1470, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1371, 4, '5 Story Condo In SF', 0, 0, 0, 500000, 0, 0, -2126.44, 1050.91, 80.01, 0, 0, 0, 0, -1, 226.3, 1114.37, 1080.99, 0, 5, 1471, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1372, 4, '5 Story Condo In SF', 0, 0, 0, 500000, 0, 0, -2126.47, 1032.53, 80.01, 0, 0, 0, 0, -1, 226.3, 1114.37, 1080.99, 0, 5, 1472, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1373, 4, '3 Story Condo In SF', 0, 0, 0, 120000, 0, 0, -2126.44, 1014.24, 80.01, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 1473, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1374, 4, '3 Story Condo In SF', 0, 0, 0, 120000, 0, 0, -2126.47, 996.32, 80.01, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 1474, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1375, 4, '3 Story Condo In SF', 0, 0, 0, 120000, 0, 0, -2126.44, 978.49, 80.01, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 1475, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1376, 4, '3 Story Condo In SF', 0, 0, 0, 120000, 0, 0, -2129.63, 942.58, 80, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 1476, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1377, 4, '2 Story Condo In SF', 0, 0, 0, 120000, 0, 0, -2116.77, 927.83, 86.08, 0, 0, 0, 0, -1, 447, 1397.09, 1084.3, 0, 2, 1477, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1378, 4, '3 Story Condo In SF', 0, 0, 0, 120000, 0, 0, -2129.25, 895.04, 80, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 1478, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1379, 4, '3 Story Condo In SF', 0, 0, 0, 120000, 0, 0, -2126.4, 832.82, 69.56, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 1479, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1380, 4, '3 Story Condo In SF', 0, 0, 0, 120000, 0, 0, -2126.04, 774.13, 69.56, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 1480, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1381, 4, '3 Story Condo In SF', 0, 0, 0, 120000, 0, 0, -2126.08, 755.7, 69.56, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 1481, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1382, 4, '3 Story Condo In SF', 0, 0, 0, 120000, 0, 0, -2112.56, 746.41, 69.56, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 1482, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1383, 4, '3 Story Condo In SF', 0, 0, 0, 120000, 0, 0, -2094.2, 746.42, 69.56, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 1483, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1384, 4, '3 Story Condo In SF', 0, 0, 0, 120000, 0, 0, -2066.57, 746.06, 64.89, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 1484, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1385, 4, '3 Story Condo In SF', 0, 0, 0, 120000, 0, 0, -2048.12, 746.08, 57.04, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 1485, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1386, 4, '3 Story Condo In SF', 0, 0, 0, 120000, 0, 0, -2029.84, 746.08, 49.46, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 1486, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1387, 4, '3 Story Condo In SF', 0, 0, 0, 120000, 0, 0, -2018.55, 748.04, 45.45, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 1487, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1388, 4, '3 Story Condo In SF', 0, 0, 0, 120000, 0, 0, -2018.54, 766.22, 45.45, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 1488, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1389, 4, '3 Story Condo In SF', 0, 0, 0, 120000, 0, 0, -2018.53, 784.82, 45.45, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 1489, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1390, 4, '3 Story Condo In SF', 0, 0, 0, 120000, 0, 0, -2029.85, 796.12, 49.47, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 1490, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1391, 4, '3 Story Condo In SF', 0, 0, 0, 120000, 0, 0, -2048.22, 796.1, 57.04, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 1491, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1392, 4, '3 Story Condo In SF', 0, 0, 0, 120000, 0, 0, -2066.44, 796.12, 64.92, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 1492, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1393, 4, '3 Story Condo In SF', 0, 0, 0, 120000, 0, 0, -2094.25, 795.75, 69.56, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 1493, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1394, 4, '3 Story Condo In SF', 0, 0, 0, 120000, 0, 0, -2112.67, 795.75, 69.56, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 1494, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1395, 4, '3 Story Condo In SF', 0, 0, 0, 120000, 0, 0, -2112.63, 823.53, 69.56, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 1495, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1396, 4, '3 Story Condo In SF', 0, 0, 0, 120000, 0, 0, -2094.18, 823.55, 69.56, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 1496, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1397, 4, '3 Story Condo In SF', 0, 0, 0, 120000, 0, 0, -2066.48, 820.69, 64.92, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 1497, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1398, 4, '3 Story Condo In SF', 0, 0, 0, 120000, 0, 0, -2048.12, 820.69, 57.03, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 1498, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1399, 4, '3 Story Condo In SF', 0, 0, 0, 120000, 0, 0, -2029.81, 820.68, 49.46, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 1499, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1400, 4, '3 Story Condo In SF', 0, 0, 0, 120000, 0, 0, -2018.54, 832.17, 45.45, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 1500, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1401, 4, '6 Story Condo In SF', 0, 0, 0, 450000, 0, 0, -2018.54, 849.28, 45.45, 0, 0, 0, 0, -1, 226.3, 1114.37, 1080.99, 0, 5, 1501, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1402, 4, '6 Story Condo In SF', 0, 0, 0, 450000, 0, 0, -2018.53, 865.8, 45.44, 0, 0, 0, 0, -1, 226.3, 1114.37, 1080.99, 0, 5, 1502, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1403, 4, '4 Story Condo In SF', 0, 0, 0, 400000, 0, 0, -2016.35, 897.46, 45.45, 0, 0, 0, 0, -1, 234.22, 1063.89, 358.5, 0, 6, 1503, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1404, 4, '3 Story Condo In SF', 0, 0, 0, 120000, 0, 0, -2034.17, 901.47, 50.46, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 1504, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1405, 4, 'Large Condo In SF', 0, 0, 0, 420000, 0, 0, -2075.25, 898.65, 64.13, 0, 0, 0, 0, -1, 234.22, 1063.89, 1084.21, 0, 6, 1505, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1406, 4, 'Large Condo In SF', 0, 0, 0, 420000, 0, 0, -2084.75, 898.65, 64.13, 0, 0, 0, 0, -1, 234.22, 1063.89, 1084.21, 0, 6, 1506, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1407, 4, '3 Story Condo In SF', 0, 0, 0, 120000, 0, 0, -2099.46, 897.38, 76.71, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 1507, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1408, 4, '5 Story Condo In SF', 0, 0, 0, 500000, 0, 0, -2018.29, 970.07, 45.44, 0, 0, 0, 0, -1, 226.3, 1114.37, 1080.99, 0, 5, 1508, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1409, 4, '3 Story Condo In SF', 0, 0, 0, 120000, 0, 0, -2018.3, 982.71, 47.69, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 1509, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1410, 4, '3 Story Condo In SF', 0, 0, 0, 120000, 0, 0, -2018.29, 1000.03, 50.78, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 1510, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1411, 4, '3 Story Condo In SF', 0, 0, 0, 120000, 0, 0, -2018.3, 1016.93, 53.87, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 1511, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1412, 4, 'Medium house at LV', 0, 0, 0, 150000, 0, 0, 984.47, 2343.69, 11.47, 0, 0, 0, 0, -1, 447, 1397.09, 1084.3, 0, 2, 1512, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1413, 4, 'Medium house at LV', 0, 0, 0, 150000, 0, 0, 985.48, 2314.3, 11.46, 0, 0, 0, 0, -1, 447, 1397.09, 1084.3, 0, 2, 1513, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1414, 4, 'Medium house at LV', 0, 0, 0, 150000, 0, 0, 986.49, 2271.25, 11.46, 0, 0, 0, 0, -1, 447, 1397.09, 1084.3, 0, 2, 1514, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1415, 4, 'Medium house at LV', 0, 0, 0, 150000, 1, 0, 956.9, 2270.27, 11.47, 0, 0, 0, 0, -1, 447, 1397.09, 1084.3, 0, 2, 1515, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1416, 4, 'Medium house at LV', 0, 0, 0, 150000, 0, 0, 1030.81, 2028.11, 11.47, 0, 0, 0, 0, -1, 447, 1397.09, 1084.3, 0, 2, 1516, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1417, 4, 'Medium house at LV', 0, 0, 0, 150000, 0, 0, 1029.36, 2005.64, 11.46, 0, 0, 0, 0, -1, 447, 1397.09, 1084.3, 0, 2, 1517, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1418, 4, 'Medium house at LV', 0, 0, 0, 150000, 0, 0, 985.41, 2000.59, 11.46, 0, 0, 0, 0, -1, 447, 1397.09, 1084.3, 0, 2, 1518, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1419, 4, 'Medium house at LV', 0, 0, 0, 150000, 0, 0, 984.51, 2030.18, 11.47, 0, 0, 0, 0, -1, 447, 1397.09, 1084.3, 0, 2, 1519, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1420, 4, 'Small House In SF', 0, 0, 0, 30000, 0, 0, -2905.21, 1154.89, 13.66, 0, 0, 0, 0, -1, 261.06, 1284.29, 1080.25, 0, 4, 1520, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1421, 4, 'Small House In SF', 0, 0, 0, 30000, 0, 0, -2905.16, 1165.04, 13.66, 0, 0, 0, 0, -1, 261.06, 1284.29, 1080.25, 0, 4, 1521, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1422, 4, 'Medium house at LV', 0, 0, 0, 150000, 0, 0, 1030.27, 1976.01, 11.47, 0, 0, 0, 0, -1, 447, 1397.09, 1084.3, 0, 2, 1522, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1423, 4, 'Small House In SF', 0, 0, 0, 30000, 0, 0, -2905.25, 1171.55, 13.66, 0, 0, 0, 0, -1, 261.06, 1284.29, 1080.25, 0, 4, 1523, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1424, 4, 'Small House In SF', 0, 0, 0, 30000, 0, 0, -2905.09, 1178.76, 13.66, 0, 0, 0, 0, -1, 261.06, 1284.29, 1080.25, 0, 4, 1524, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1425, 4, 'Medium house at LV', 0, 0, 0, 150000, 0, 0, 983.97, 1978.2, 11.47, 0, 0, 0, 0, -1, 447, 1397.09, 1084.3, 0, 2, 1525, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1426, 4, 'Medium house at LV', 0, 0, 0, 150000, 0, 0, 984.7, 1930.83, 11.47, 0, 0, 0, 0, -1, 447, 1397.09, 1084.3, 0, 2, 1526, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1427, 4, 'Medium house at LV', 0, 0, 0, 150000, 0, 0, 1030.81, 1928.11, 11.47, 0, 0, 0, 0, -1, 447, 1397.09, 1084.3, 0, 2, 1527, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1428, 4, 'Small Nice House In SF', 0, 0, 0, 60000, 0, 0, -2904.7, 1118.82, 27.07, 0, 0, 0, 0, -1, 22.93, 1403.32, 1084.43, 0, 5, 1528, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1429, 4, 'Medium house at LV', 0, 0, 0, 150000, 500, 0, 1029.36, 1905.92, 11.46, 0, 0, 0, 0, -1, 447, 1397.09, 1084.3, 0, 2, 1529, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1430, 4, 'Small House In SF', 0, 0, 0, 30000, 0, 0, -2904.8, 1111.52, 27.07, 0, 0, 0, 0, -1, 261.06, 1284.29, 1080.25, 0, 4, 1530, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1431, 4, 'Medium house at LV', 0, 0, 0, 150000, 0, 0, 985.41, 1901.04, 11.46, 0, 0, 0, 0, -1, 447, 1397.09, 1084.3, 0, 2, 1531, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1432, 4, 'Small House In SF', 0, 0, 0, 30000, 0, 0, -2904.47, 1101.11, 27.07, 0, 0, 0, 0, -1, 261.06, 1284.29, 1080.25, 0, 4, 1532, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1433, 4, 'Medium house at LV', 0, 0, 0, 150000, 0, 0, 983.97, 1878.94, 11.47, 0, 0, 0, 0, -1, 447, 1397.09, 1084.3, 0, 2, 1533, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1434, 4, 'Medium house at LV', 0, 0, 0, 150000, 0, 0, 1030.37, 1876.35, 11.47, 0, 0, 0, 0, -1, 447, 1397.09, 1084.3, 0, 2, 1534, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1435, 4, 'Medium house at LV', 0, 0, 0, 150000, 0, 0, 1030.81, 1847.93, 11.47, 0, 0, 0, 0, -1, 447, 1397.09, 1084.3, 0, 2, 1535, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1436, 4, 'LS Project', 0, 0, 0, 4000, 1500, 0, 2158.34, -1611.31, 14.35, 0, 0, 0, 0, -1, 244.41, 305.03, 999.15, 0, 1, 1536, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1437, 4, 'LS Project', 0, 0, 0, 4000, 1000, 0, 2129.11, -1663.94, 15.09, 0, 0, 0, 0, -1, 244.41, 305.03, 999.15, 0, 1, 1537, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1438, 4, 'LS Project', 0, 0, 0, 4000, 100, 0, 2141.49, -1652.85, 15.09, 0, 0, 0, 0, -1, 244.41, 305.03, 999.15, 0, 1, 1538, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1439, 4, '*LS Project', 0, 0, 0, 4000, 95, 0, 2172.59, -1615.28, 14.28, 0, 0, 0, 0, -1, 244.41, 305.03, 999.15, 0, 1, 1539, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1440, 4, 'LS Project', 0, 0, 0, 4000, 0, 0, 2179.08, -1600.11, 14.35, 0, 0, 0, 0, -1, 244.41, 305.03, 999.15, 0, 1, 1540, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1441, 4, 'LS Project', 0, 0, 0, 4000, 0, 0, 2165.56, -1590.49, 14.35, 0, 0, 0, 0, -1, 244.41, 305.03, 999.15, 0, 1, 1541, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1442, 4, 'LS Project', 0, 0, 0, 4000, 0, 0, 2151.2, -1598.49, 14.35, 0, 0, 0, 0, -1, 244.41, 305.03, 999.15, 0, 1, 1542, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1443, 4, 'LS Project', 0, 0, 0, 4000, 0, 0, 2150.4, -1583.96, 14.34, 0, 0, 0, 0, -1, 244.41, 305.03, 999.15, 0, 1, 1543, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1444, 4, 'LS Project', 0, 0, 0, 4000, 0, 0, 2136, -1591.98, 14.35, 0, 0, 0, 0, -1, 244.41, 305.03, 999.15, 0, 1, 1544, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1445, 4, 'LS Project', 0, 0, 0, 4000, 0, 0, 2143.29, -1571.2, 14.19, 0, 0, 0, 0, -1, 244.41, 305.03, 999.15, 0, 1, 1545, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1446, 4, 'LS Project', 0, 0, 0, 4000, 0, 0, 2158.51, -1577.71, 14.28, 0, 0, 0, 0, -1, 244.41, 305.03, 999.15, 0, 1, 1546, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1447, 4, 'LS Project', 0, 0, 0, 4000, 0, 0, 2191.91, -1592.97, 14.35, 0, 0, 0, 0, -1, 244.41, 305.03, 999.15, 0, 1, 1547, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1448, 4, 'LS Project', 0, 0, 0, 4000, 0, 0, 2185.31, -1608.14, 14.36, 0, 0, 0, 0, -1, 244.41, 305.03, 999.15, 0, 1, 1548, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1449, 4, 'LS Project', 0, 0, 0, 4000, 0, 0, 2143.12, -1604.72, 14.35, 0, 0, 0, 0, -1, 244.41, 305.03, 999.15, 0, 1, 1549, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1450, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 0, 0, 2068.14, -1588.86, 13.49, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 1550, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1451, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 0, 0, 2073.36, -1583.05, 13.47, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 1551, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1452, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 0, 0, 2065.33, -1583.36, 13.48, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 1552, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1453, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 0, 0, 2076.11, -1588.67, 13.49, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 1553, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1454, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 0, 0, 2072.5, -1559.31, 13.41, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 1554, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1455, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 0, 0, 2066.81, -1554.09, 13.43, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 1555, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1456, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 0, 0, 2066.96, -1562.17, 13.43, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 1556, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1457, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 0, 0, 2072.27, -1551.3, 13.42, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 1557, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1458, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 250, 0, 1852.3, -2019.63, 13.54, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 1558, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1459, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 2000, 0, 1852.33, -2021.36, 13.54, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 1559, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1460, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 0, 0, 1857.1, -2035.08, 13.54, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 1560, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1461, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 0, 0, 1858.71, -2035.04, 13.54, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 1561, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1462, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 0, 0, 1867.87, -2028.42, 13.54, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 1562, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1463, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 500, 0, 1864.98, -2021.37, 13.54, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 1563, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1464, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 0, 0, 1864.95, -2019.64, 13.54, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 1564, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1465, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 50, 0, 1865.96, -2003.88, 13.54, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 1565, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1466, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 500, 0, 1867.77, -2003.87, 13.54, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 1566, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1467, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 0, 0, 1867.88, -2010.06, 13.54, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 1567, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1468, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 0, 0, 1888.93, -2000.94, 13.54, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 1568, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1469, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 0, 0, 1877.32, -2001.01, 13.54, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 1569, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1470, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 0, 0, 1867.75, -1998.07, 13.54, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 1570, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1471, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 0, 0, 1866.01, -1998.09, 13.54, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 1571, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1472, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 200, 0, 1867.79, -1985.4, 13.54, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 1572, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1473, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 0, 0, 1866, -1985.45, 13.54, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 1573, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1474, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 0, 0, 1852.28, -1990.19, 13.54, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 1574, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1475, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 449, 0, 1852.33, -1991.81, 13.54, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 1575, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1476, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 0, 0, 1858.96, -2001, 13.54, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 1576, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1477, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 500, 0, 1849.4, -2010.06, 13.54, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 1577, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1478, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 0, 0, 1895.53, -2019.67, 13.54, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 1578, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1479, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 0, 0, 1895.53, -2021.36, 13.54, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 1579, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1480, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 0, 0, 1898.99, -2037.96, 13.54, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 1580, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1481, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 0, 0, 1898.37, -2028.42, 13.54, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 1581, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1482, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 0, 0, 1905.98, -2035.08, 13.54, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 1582, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1483, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 0, 0, 1907.71, -2035.05, 13.54, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 1583, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1484, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 0, 0, 1913.96, -2021.43, 13.54, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 1584, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1485, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 450, 0, 1913.95, -2019.65, 13.54, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 1585, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1486, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 0, 0, 1901.33, -2019.64, 13.54, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 1586, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1487, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 0, 0, 1901.34, -2021.43, 13.54, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 1587, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1488, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 0, 0, 1916.9, -2028.42, 13.54, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 1588, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1489, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 0, 0, 1919.76, -2021.34, 13.54, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 1589, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1490, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 0, 0, 1919.76, -2019.62, 13.54, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 1590, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1491, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 0, 0, 1916.9, -2000.38, 13.54, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 1591, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1492, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 0, 0, 1916.89, -2010.06, 13.54, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 1592, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1493, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 0, 0, 1907.28, -2001.01, 13.54, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 1593, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1494, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 730, 0, 1913.95, -1993.45, 13.54, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 1594, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1495, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 0, 0, 1913.92, -1991.56, 13.54, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 1595, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1496, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 0, 0, 1907.29, -1982.51, 13.54, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 1596, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1497, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 5000, 0, 1900.31, -1979.61, 13.54, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 1597, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1498, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 0, 0, 1898.66, -1979.62, 13.54, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 1598, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1499, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 0, 0, 1916.76, -1982.03, 13.54, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 1599, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1500, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 0, 0, 1919.72, -1993.24, 13.54, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 1600, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1501, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 0, 0, 1919.72, -1991.62, 13.54, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 1601, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1502, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 0, 0, 1900.21, -1985.39, 13.54, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 1602, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1503, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 145, 0, 1898.54, -1985.42, 13.54, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 1603, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1504, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 0, 0, 1900.25, -1998.04, 13.54, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 1604, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1505, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 0, 0, 1898.49, -1998.06, 13.54, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 1605, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1506, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 0, 0, 1870.76, -2019.59, 13.54, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 1606, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1507, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 0, 0, 1870.76, -2021.39, 13.54, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 1607, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1508, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 100, 0, 1868.35, -2037.97, 13.54, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 1608, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1509, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 0, 0, 1858.79, -2040.85, 13.54, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 1609, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1510, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 0, 0, 1857.02, -2040.85, 13.54, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 1610, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1511, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 0, 0, 1906.17, -2040.85, 13.54, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 1611, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1512, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 0, 0, 1907.74, -2040.85, 13.54, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 1612, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1513, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 0, 0, 1849.99, -2037.92, 13.54, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 1613, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1514, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 0, 0, 1849.42, -2028.42, 13.54, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 1614, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1515, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 0, 0, 1846.53, -2021.35, 13.54, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 1615, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1516, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 0, 0, 1846.53, -2019.77, 13.54, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 1616, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1517, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 0, 0, 1849.45, -2001.46, 13.54, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 1617, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1518, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 0, 0, 1838.7, -1995.85, 13.54, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 1618, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1519, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 0, 0, 1838.7, -1994.18, 13.54, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 1619, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1520, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 500, 0, 1846.53, -1991.87, 13.54, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 1620, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1521, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 500, 0, 1846.53, -1990.15, 13.54, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 1621, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1522, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 0, 0, 1849.35, -1983.11, 13.54, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 1622, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1523, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 0, 0, 1858.96, -1982.62, 13.54, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 1623, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1524, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 0, 0, 1888.93, -1982.5, 13.54, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 1624, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1525, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 0, 0, 1917.35, -2037.98, 13.54, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 1625, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1526, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 0, 0, 1835.86, -2005.48, 13.54, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 1626, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1527, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 0, 0, 1835.93, -1987.13, 13.54, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 1627, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1528, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 0, 0, 1835.24, -1977.53, 13.54, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 1628, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1529, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 1000, 0, 1828.37, -1980.44, 13.54, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 1629, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1530, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 0, 0, 1826.53, -1980.51, 13.54, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 1630, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1531, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 1, 0, 1817.51, -1987.13, 13.55, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 1631, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1532, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 0, 0, 1816.89, -1977.5, 13.54, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 1632, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1533, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 1, 0, 1826.53, -1974.69, 13.54, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 1633, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1534, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 1, 0, 1828.07, -1974.69, 13.54, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 1634, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1535, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 0, 0, 1832.9, -1994.11, 13.54, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 1635, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1536, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 0, 0, 1820.28, -1995.94, 13.55, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 1636, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1537, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 200, 0, 1820.24, -1994.23, 13.55, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 1637, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1538, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 0, 0, 1817.43, -2005.49, 13.55, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 1638, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1539, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 0, 0, 1814.47, -1995.92, 13.55, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 1639, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1540, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 100, 0, 1814.48, -1994.15, 13.55, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 1640, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1541, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 0, 0, 1867.74, -1979.65, 13.54, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 1641, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1542, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 1000, 0, 1865.92, -1979.65, 13.54, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 1642, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1543, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 0, 0, 1877.32, -1982.49, 13.54, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 1643, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1544, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 0, 0, 1801.99, -2098.94, 14.02, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 1644, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1545, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 0, 0, 1804.19, -2124.9, 13.94, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 1645, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1546, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 0, 0, 1781.45, -2101.27, 14.05, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 1646, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1547, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 0, 0, 1782.09, -2126.37, 14.07, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 1647, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1548, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 0, 0, 1761.17, -2125.45, 14.05, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 1648, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1549, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 0, 0, 1762.39, -2101.98, 13.85, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 1649, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1550, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 0, 0, 1734.15, -2097.98, 14.04, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 1650, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1551, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 0, 0, 1734.62, -2130.35, 14.02, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 1651, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1552, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 1000, 0, 1715.06, -2125.45, 14.05, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 1652, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1553, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 1000, 0, 1711.67, -2101.24, 14.02, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 1653, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1554, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 250, 0, 1695.52, -2125.83, 13.81, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 1654, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1555, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 0, 0, 1684.72, -2098.16, 13.83, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 1655, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1556, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 0, 0, 1673.68, -2122.46, 14.14, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 1656, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1557, 4, 'normal house at ls', 0, 0, 0, 150000, 0, 0, 1616.15, -1897.58, 13.55, 0, 0, 0, 0, -1, 447, 1397.09, 1084.3, 0, 2, 1657, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1558, 4, 'normal house at ls', 0, 0, 0, 150000, 0, 0, 1610.88, -1893.88, 13.54, 0, 0, 0, 0, -1, 447, 1397.09, 1084.3, 0, 2, 1658, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1559, 4, 'normal house at ls', 0, 0, 0, 150000, 0, 0, 1628.69, -1903.36, 13.55, 0, 0, 0, 0, -1, 447, 1397.09, 1084.3, 0, 2, 1659, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1560, 4, 'House Near Vinewood', 0, 0, 0, 150000, 100, 0, 1325.95, -1067.65, 31.55, 0, 0, 0, 0, -1, 447, 1397.09, 1084.3, 0, 2, 1660, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1561, 4, 'House Near Vinewood', 0, 0, 0, 150000, 0, 0, 1326.26, -1090.61, 27.98, 0, 0, 0, 0, -1, 447, 1397.09, 1084.3, 0, 2, 1661, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1562, 4, 'House Near Vinewood', 0, 0, 0, 150000, 0, 0, 1285.27, -1090.28, 28.26, 0, 0, 0, 0, -1, 447, 1397.09, 1084.3, 0, 2, 1662, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1563, 4, 'House Near Vinewood', 0, 0, 0, 150000, 0, 0, 1242.26, -1099.51, 27.98, 0, 0, 0, 0, -1, 447, 1397.09, 1084.3, 0, 2, 1663, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1564, 4, 'House Near Vinewood', 0, 0, 0, 150000, 0, 0, 1241.94, -1076.43, 31.55, 0, 0, 0, 0, -1, 447, 1397.09, 1084.3, 0, 2, 1664, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1565, 4, 'House Near Vinewood', 0, 0, 0, 150000, 0, 0, 1285.26, -1067.31, 31.68, 0, 0, 0, 0, -1, 447, 1397.09, 1084.3, 0, 2, 1665, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1566, 4, 'House near vinewood small LS', 0, 0, 0, 100000, 0, 0, 1189.01, -1018.12, 36.23, 0, 0, 0, 0, -1, 447, 1397.09, 1084.3, 0, 2, 1666, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1567, 4, 'House near vinewood small LS', 0, 0, 0, 100000, 5000, 0, 1196.48, -1016.99, 36.23, 0, 0, 0, 0, -1, 447, 1397.09, 1084.3, 0, 2, 1667, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1568, 4, 'House near vinewood small LS', 0, 0, 0, 100000, 0, 0, 1188.19, -1011.88, 36.23, 0, 0, 0, 0, -1, 447, 1397.09, 1084.3, 0, 2, 1668, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1569, 4, 'House near vinewood small LS', 0, 0, 0, 100000, 0, 0, 1195.68, -1010.91, 36.23, 0, 0, 0, 0, -1, 447, 1397.09, 1084.3, 0, 2, 1669, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1570, 4, 'House near vinewood small LS', 0, 0, 0, 100000, 100, 0, 1188.19, -1011.89, 32.55, 0, 0, 0, 0, -1, 447, 1397.09, 1084.3, 0, 2, 1670, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1571, 4, 'House near vinewood small LS', 0, 0, 0, 100000, 0, 0, 1195.69, -1010.93, 32.55, 0, 0, 0, 0, -1, 447, 1397.09, 1084.3, 0, 2, 1671, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1572, 4, 'House near vinewood small LS', 0, 0, 0, 100000, 100, 0, 1189.01, -1018.09, 32.55, 0, 0, 0, 0, -1, 447, 1397.09, 1084.3, 0, 2, 1672, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1573, 4, 'House near vinewood small LS', 0, 0, 0, 100000, 0, 0, 1196.5, -1017.15, 32.55, 0, 0, 0, 0, -1, 447, 1397.09, 1084.3, 0, 2, 1673, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1574, 4, 'House near vinewood small LS', 0, 0, 0, 100000, 500, 0, 1234.73, -1016.13, 32.6, 0, 0, 0, 0, -1, 447, 1397.09, 1084.3, 0, 2, 1674, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1575, 4, 'House near vinewood small LS', 0, 0, 0, 100000, 50, 0, 1227.25, -1017.18, 32.6, 0, 0, 0, 0, -1, 447, 1397.09, 1084.3, 0, 2, 1675, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1576, 4, 'House near vinewood small LS', 0, 0, 0, 100000, 0, 0, 1233.93, -1010.05, 32.6, 0, 0, 0, 0, -1, 447, 1397.09, 1084.3, 0, 2, 1676, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1577, 4, 'House near vinewood small LS', 0, 0, 0, 100000, 0, 0, 1226.44, -1011.03, 32.6, 0, 0, 0, 0, -1, 447, 1397.09, 1084.3, 0, 2, 1677, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1578, 4, 'House near vinewood small LS', 0, 0, 0, 100000, 1500, 0, 1234.73, -1016.15, 36.34, 0, 0, 0, 0, -1, 447, 1397.09, 1084.3, 0, 2, 1678, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1579, 4, 'House near vinewood small LS', 0, 0, 0, 100000, 0, 0, 1227.25, -1017.18, 36.33, 0, 0, 0, 0, -1, 447, 1397.09, 1084.3, 0, 2, 1679, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1580, 4, 'House near vinewood small LS', 0, 0, 0, 100000, 0, 0, 1233.92, -1009.97, 36.33, 0, 0, 0, 0, -1, 447, 1397.09, 1084.3, 0, 2, 1680, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1581, 4, 'House near vinewood small LS', 0, 0, 0, 100000, 0, 0, 1226.44, -1011.01, 36.33, 0, 0, 0, 0, -1, 447, 1397.09, 1084.3, 0, 2, 1681, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1582, 4, 'House Near Vinewood', 0, 0, 0, 150000, 1, 0, 1127.97, -1021.17, 34.99, 0, 0, 0, 0, -1, 447, 1397.09, 1084.3, 0, 2, 1682, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1583, 4, 'House Near Vinewood', 0, 0, 0, 150000, 0, 0, 1118.05, -1021.17, 34.99, 0, 0, 0, 0, -1, 447, 1397.09, 1084.3, 0, 2, 1683, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1584, 4, 'House Near Vinewood', 0, 0, 0, 150000, 500, 0, 1051.03, -1059.3, 34.8, 0, 0, 0, 0, -1, 447, 1397.09, 1084.3, 0, 2, 1684, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1585, 4, 'House Near Vinewood', 0, 0, 0, 150000, 0, 0, 993.76, -1059.03, 33.7, 0, 0, 0, 0, -1, 447, 1397.09, 1084.3, 0, 2, 1685, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1586, 4, 'Mansion', 0, 0, 0, 5250000, 0, 0, 952.61, -909.1, 45.76, 0, 0, 0, 0, -1, 1298.81, -796.66, 1084.01, 0, 5, 1686, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1587, 4, 'House Near Vinewood', 0, 0, 0, 150000, 100, 0, 1411.1, -920.86, 38.42, 0, 0, 0, 0, -1, 447, 1397.09, 1084.3, 0, 2, 1687, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1588, 4, 'House Near Vinewood', 0, 0, 0, 150000, 0, 0, 1440.67, -926.13, 39.65, 0, 0, 0, 0, -1, 447, 1397.09, 1084.3, 0, 2, 1688, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1589, 4, 'small house at vinewood', 0, 0, 0, 150000, 0, 0, 1421.78, -886.23, 50.69, 0, 0, 0, 0, -1, 295.21, 1472.26, 1080.25, 0, 15, 1689, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1590, 4, 'small house at vinewood', 0, 0, 0, 150000, 0, 0, 1468.54, -906.18, 54.83, 0, 0, 0, 0, -1, 295.21, 1472.26, 1080.25, 0, 15, 1690, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1591, 4, 'house at vinewood', 0, 0, 0, 250000, 0, 0, 1535.72, -885.25, 57.66, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 1691, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1592, 4, 'Small House at Vinewood', 0, 0, 0, 400000, 100, 0, 1540.47, -851.44, 64.33, 0, 0, 0, 0, -1, 234.22, 1063.89, 1084.21, 0, 6, 1692, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1593, 4, 'small house at vinewood', 0, 0, 0, 150000, 0, 0, 1535.03, -800.17, 72.85, 0, 0, 0, 0, -1, 295.21, 1472.26, 1080.25, 0, 15, 1693, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1594, 4, 'House', 0, 0, 0, 150000, 0, 0, 1527.88, -772.64, 80.58, 0, 0, 0, 0, -1, 295.21, 1472.26, 1080.25, 0, 15, 1694, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1595, 4, 'House At Vinewood With Swimming Pool', 0, 0, 0, 550000, 0, 0, 1442.68, -628.83, 95.72, 0, 0, 0, 0, -1, 226.3, 1114.37, 1080.99, 0, 5, 1695, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1596, 4, 'Fancy Mansion with swimming pool', 0, 0, 0, 550000, 1500, 0, 1331.99, -633.55, 109.13, 0, 0, 0, 0, -1, 226.3, 1114.37, 1080.99, 0, 5, 1696, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1597, 4, 'House at Vinewood', 0, 0, 0, 400000, 0, 0, 1094.99, -647.91, 113.65, 0, 0, 0, 0, -1, 234.22, 1063.89, 1084.21, 0, 6, 1697, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1598, 4, 'House At Vinewood without swimming pool', 0, 0, 0, 400000, 0, 0, 1045.16, -642.94, 120.11, 0, 0, 0, 0, -1, 234.22, 1063.89, 1084.21, 0, 6, 1698, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1599, 4, 'House At Vinewood With Swimming Pool', 0, 0, 0, 550000, 0, 0, 897.93, -677.11, 116.89, 0, 0, 0, 0, -1, 226.3, 1114.37, 1080.99, 0, 5, 1699, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1600, 4, 'small house at vinewood', 0, 0, 0, 150000, 0, 0, 946.3, -710.69, 122.62, 0, 0, 0, 0, -1, 295.21, 1472.26, 1080.25, 0, 15, 1700, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1601, 4, 'house at vinewood', 0, 0, 0, 250000, 0, 0, 867.49, -717.58, 105.68, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 1701, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1602, 4, 'house at vinewood', 0, 0, 0, 250000, 0, 0, 847.99, -745.51, 94.97, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 1702, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1603, 4, 'House At Vinewood without swimming pool', 0, 0, 0, 400000, 500, 0, 891.14, -783.17, 101.31, 0, 0, 0, 0, -1, 234.22, 1063.89, 1084.21, 0, 6, 1703, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1604, 4, 'House At Vinewood without swimming pool', 0, 0, 0, 400000, 1, 0, 808.26, -759.38, 76.53, 0, 0, 0, 0, -1, 234.22, 1063.89, 1084.21, 0, 6, 1704, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1605, 4, 'house at vinewood', 0, 0, 0, 250000, 0, 0, 785.96, -828.58, 70.29, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 1705, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1606, 4, 'House At Vinewood With Swimming Pool', 0, 0, 0, 550000, 0, 0, 497.37, -1095.07, 82.36, 0, 0, 0, 0, -1, 226.3, 1114.37, 1080.99, 0, 5, 1706, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1607, 4, 'House at Vinewood', 0, 0, 0, 550000, 0, 0, 416.77, -1154.12, 76.68, 0, 0, 0, 0, -1, 226.3, 1114.37, 1080.99, 0, 5, 1707, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1608, 4, 'House At Vinewood without swimming pool', 0, 0, 0, 400000, 1000, 0, 352.32, -1198, 76.51, 0, 0, 0, 0, -1, 234.22, 1063.89, 1084.21, 0, 6, 1708, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1609, 4, 'house at vinewood', 0, 0, 0, 250000, 0, 0, 355.07, -1281.19, 53.7, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 1709, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1610, 4, 'small house at vinewood', 0, 0, 0, 150000, 0, 0, 228.05, -1405.49, 51.61, 0, 0, 0, 0, -1, 295.21, 1472.26, 1080.25, 0, 15, 1710, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1611, 4, 'House At Vinewood without swimming pool', 0, 0, 0, 400000, 0, 0, 470.76, -1163.56, 67.22, 0, 0, 0, 0, -1, 234.22, 1063.89, 1084.21, 0, 6, 1711, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1612, 4, 'small house at vinewood', 0, 0, 0, 150000, 0, 0, 558.76, -1161.09, 54.43, 0, 0, 0, 0, -1, 295.21, 1472.26, 1080.25, 0, 15, 1712, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1613, 4, 'house at vinewood', 0, 0, 0, 250000, 0, 0, 552.94, -1200.28, 44.83, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 1713, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1614, 4, 'small house at vinewood', 0, 0, 0, 150000, 0, 0, 432.03, -1253.96, 51.58, 0, 0, 0, 0, -1, 295.21, 1472.26, 1080.25, 0, 15, 1714, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1615, 4, 'House At Vinewood With Swimming Pool', 0, 0, 0, 550000, 0, 0, 612.17, -1085.92, 58.83, 0, 0, 0, 0, -1, 226.3, 1114.37, 1080.99, 0, 5, 1715, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1616, 4, 'House At Vinewood without swimming pool', 0, 0, 0, 400000, 0, 0, 559.13, -1076.41, 72.92, 0, 0, 0, 0, -1, 234.22, 1063.89, 1084.21, 0, 6, 1716, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1617, 4, 'small house at vinewood', 0, 0, 0, 150000, 5000, 0, 648.31, -1058.72, 52.58, 0, 0, 0, 0, -1, 295.21, 1472.26, 1080.25, 0, 15, 1717, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1618, 4, 'small house at vinewood', 0, 0, 0, 150000, 0, 0, 673.11, -1020.17, 55.76, 0, 0, 0, 0, -1, 295.21, 1472.26, 1080.25, 0, 15, 1718, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1619, 4, 'House At Vinewood With Swimming Pool', 0, 0, 0, 550000, 0, 0, 700.26, -1060.32, 49.42, 0, 0, 0, 0, -1, 226.3, 1114.37, 1080.99, 0, 5, 1719, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1620, 4, 'House At Vinewood without swimming pool', 0, 0, 0, 400000, 0, 0, 724.66, -999.36, 52.73, 0, 0, 0, 0, -1, 234.22, 1063.89, 1084.21, 0, 6, 1720, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1621, 4, 'small house at vinewood', 0, 0, 0, 150000, 0, 0, 923.9, -853.41, 93.46, 0, 0, 0, 0, -1, 295.21, 1472.26, 1080.25, 0, 15, 1721, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1622, 4, 'small house at vinewood', 0, 0, 0, 150000, 100, 0, 937.8, -848.74, 93.58, 0, 0, 0, 0, -1, 295.21, 1472.26, 1080.25, 0, 15, 1722, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1623, 4, 'House At Vinewood without swimming pool', 0, 0, 0, 400000, 0, 0, 910.39, -817.55, 103.13, 0, 0, 0, 0, -1, 234.22, 1063.89, 1084.21, 0, 6, 1723, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1624, 4, 'House At Vinewood without swimming pool', 0, 0, 0, 400000, 0, 0, 977.38, -771.71, 112.2, 0, 0, 0, 0, -1, 234.22, 1063.89, 1084.21, 0, 6, 1724, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1625, 4, 'small house at vinewood', 0, 0, 0, 150000, 0, 0, 1017.02, -763.36, 112.56, 0, 0, 0, 0, -1, 295.21, 1472.26, 1080.25, 0, 15, 1725, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1626, 4, 'small house at vinewood', 0, 0, 0, 150000, 0, 0, 1034.81, -813.18, 101.85, 0, 0, 0, 0, -1, 295.21, 1472.26, 1080.25, 0, 15, 1726, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1627, 4, 'House At Vinewood without swimming Pool', 0, 0, 0, 400000, 1500, 0, 989.74, -828.69, 95.47, 0, 0, 0, 0, -1, 234.22, 1063.89, 1084.21, 0, 6, 1727, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1628, 4, 'UFO House at vinewood', 0, 0, 0, 1000000, 0, 0, 1093.97, -807.13, 107.42, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 1728, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1629, 4, 'House At Vinewood without swimming pool', 0, 0, 0, 400000, 0, 0, 835.97, -894.86, 68.76, 0, 0, 0, 0, -1, 234.22, 1063.89, 1084.21, 0, 6, 1729, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1630, 4, 'small house at vinewood', 0, 0, 0, 150000, 0, 0, 827.82, -857.98, 70.33, 0, 0, 0, 0, -1, 295.21, 1472.26, 1080.25, 0, 15, 1730, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1631, 4, 'House At Vinewood without swimming Pool', 0, 0, 0, 400000, 0, 0, 1112.64, -742.11, 100.13, 0, 0, 0, 0, -1, 234.22, 1063.89, 1084.21, 0, 6, 1731, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1632, 4, 'apartment at the beach ls', 0, 0, 0, 100000, 0, 0, 168.14, -1768.4, 4.49, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1732, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1633, 4, 'Beach House', 0, 0, 0, 100000, 0, 0, 192.81, -1769.39, 4.33, 0, 0, 0, 0, -1, 261.06, 1284.29, 1080.25, 0, 4, 1733, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1634, 4, 'house at the beach', 0, 0, 0, 100000, 0, 0, 206.88, -1768.88, 4.37, 0, 0, 0, 0, -1, 261.06, 1284.29, 1080.25, 0, 4, 1734, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1635, 4, 'house at the beach', 0, 0, 0, 100000, 0, 0, 280.89, -1767.07, 4.55, 0, 0, 0, 0, -1, 261.06, 1284.29, 1080.25, 0, 4, 1735, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1636, 4, 'house at the beach', 0, 0, 0, 100000, 500, 0, 295.24, -1764.12, 4.87, 0, 0, 0, 0, -1, 261.06, 1284.29, 1080.25, 0, 4, 1736, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1637, 4, 'house at the beach', 0, 0, 0, 100000, 0, 0, 305.37, -1770.22, 4.54, 0, 0, 0, 0, -1, 261.06, 1284.29, 1080.25, 0, 4, 1737, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1638, 4, 'Beach House with Garage', 0, 0, 0, 400000, 0, 0, 315.88, -1769.43, 4.62, 0, 0, 0, 0, -1, 226.3, 1114.37, 1080.99, 0, 5, 1738, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1639, 4, 'apartment at the beach ls', 0, 0, 0, 100000, 0, 0, 902.92, -1815.45, 13.3, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1739, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1640, 4, 'apartment at the beach ls', 0, 0, 0, 100000, 1, 0, 905.04, -1815.69, 13.3, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1740, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1641, 4, 'apartment at the beach ls', 0, 0, 0, 100000, 500, 0, 908.59, -1816.07, 13.3, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1741, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1642, 4, 'apartment at the beach ls', 0, 0, 0, 100000, 0, 0, 910.78, -1816.31, 13.3, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1742, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1643, 4, 'apartment at the beach ls', 0, 0, 0, 100000, 0, 0, 914.56, -1816.73, 13.31, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1743, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1644, 4, 'apartment at the beach ls', 0, 0, 0, 100000, 0, 0, 916.72, -1816.97, 13.31, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1744, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1645, 4, 'apartment at the beach ls', 0, 0, 0, 100000, 0, 0, 920.34, -1817.37, 13.31, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1745, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1646, 4, 'apartment at the beach ls', 0, 0, 0, 100000, 0, 0, 922.53, -1817.62, 13.31, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1746, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1647, 4, 'apartment at the beach ls', 0, 0, 0, 100000, 0, 0, 926.28, -1818.04, 13.32, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1747, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1648, 4, 'apartment at the beach ls', 0, 0, 0, 100000, 0, 0, 928.38, -1818.28, 13.32, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1748, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1649, 4, 'apartment at the beach ls', 0, 0, 0, 100000, 0, 0, 931.92, -1818.69, 13.32, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1749, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1650, 4, 'apartment at the beach ls', 0, 0, 0, 100000, 0, 0, 934.05, -1818.93, 13.32, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1750, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1651, 4, 'apartment at the beach ls', 0, 0, 0, 100000, 0, 0, 961.13, -1823.96, 13.33, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1751, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1652, 4, 'apartment at the beach ls', 0, 0, 0, 100000, 0, 0, 963.25, -1824.51, 13.32, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1752, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1653, 4, 'apartment at the beach ls', 0, 0, 0, 100000, 0, 0, 966.74, -1825.36, 13.32, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1753, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1654, 4, 'apartment at the beach ls', 0, 0, 0, 100000, 0, 0, 968.93, -1825.9, 13.32, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1754, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1655, 4, 'apartment at the beach ls', 0, 0, 0, 100000, 0, 0, 972.5, -1826.77, 13.33, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1755, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1656, 4, 'apartment at the beach ls', 0, 0, 0, 100000, 0, 0, 974.56, -1827.28, 13.33, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1756, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1657, 4, 'apartment at the beach ls', 0, 0, 0, 100000, 0, 0, 978.14, -1828.16, 13.33, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1757, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1658, 4, 'apartment at the beach ls', 0, 0, 0, 100000, 0, 0, 980.19, -1828.67, 13.33, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1758, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1659, 4, 'apartment at the beach ls', 0, 0, 0, 100000, 20, 0, 983.92, -1829.58, 13.33, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1759, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1660, 4, 'apartment at the beach ls', 0, 0, 0, 100000, 1000, 0, 985.97, -1830.08, 13.33, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1760, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1661, 4, 'apartment at the beach ls', 0, 0, 0, 100000, 0, 0, 989.48, -1830.95, 13.34, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1761, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1662, 4, 'apartment at the beach ls', 0, 0, 0, 100000, 0, 0, 991.72, -1831.49, 13.34, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1762, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1663, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 1, 0, 2581.51, -969.3, 81.36, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 1763, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1664, 4, 'house near the beach', 0, 0, 0, 55000, 0, 0, 655.95, -1635.87, 15.86, 0, 0, 0, 0, -1, 261.06, 1284.29, 1080.25, 0, 4, 1764, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1665, 4, 'house near the beach', 0, 0, 0, 55000, 0, 0, 660.41, -1599.85, 15, 0, 0, 0, 0, -1, 261.06, 1284.29, 1080.25, 0, 4, 1765, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1666, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 0, 0, 2388.42, -1279.65, 25.13, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 1766, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1667, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 0, 0, 2387.85, -1328.54, 25.12, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 1767, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1668, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 0, 0, 2389.73, -1346.29, 25.08, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 1768, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1669, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 1, 0, 2383.53, -1366.2, 24.49, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 1769, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1670, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 5000, 0, 2288.22, -1104.66, 38.59, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 1770, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1671, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 0, 0, 2249.32, -1060.31, 55.97, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 1771, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1672, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 0, 0, 2259.52, -1019, 59.3, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 1772, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1673, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 0, 0, 2218.78, -1031.73, 60.26, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 1773, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1674, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 0, 0, 2208.02, -1026.56, 61.35, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 1774, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1675, 4, 'trailer LS', 0, 0, 0, 2000, 200, 0, 2154.11, -979.9, 63.29, 0, 0, 0, 0, -1, 244.41, 305.03, 999.15, 0, 1, 1775, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1676, 4, 'trailer LS', 0, 0, 0, 2000, 100, 0, 2142.69, -978.15, 61.38, 0, 0, 0, 0, -1, 244.41, 305.03, 999.15, 0, 1, 1776, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1677, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 0, 0, 2139.79, -1008.43, 61.99, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 1777, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1678, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 1000, 0, 2108.87, -1000.77, 60.51, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 1778, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1679, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 0, 0, 2089.52, -996.24, 53.06, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 1779, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1680, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 0, 0, 2073.48, -965.18, 49.39, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 1780, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1681, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 0, 0, 2045.18, -965.92, 44.55, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 1781, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1682, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 800, 0, 2049.21, -987.28, 44.98, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 1782, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1683, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 0, 0, 2044.66, -991.32, 43.23, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 1783, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1684, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 1, 0, 2015.59, -977.56, 36.95, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 1784, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1685, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 100, 0, 2007.36, -984.58, 34.46, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 1785, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1686, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 150, 0, 2000.2, -991.65, 32.13, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 1786, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1687, 4, 'trailer LS', 0, 0, 0, 2000, 200, 0, 2131.94, -974, 59.78, 0, 0, 0, 0, -1, 244.41, 305.03, 999.15, 0, 1, 1787, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1688, 4, 'trailer LS', 0, 0, 0, 2000, 0, 0, 2122.04, -970.34, 58.21, 0, 0, 0, 0, -1, 244.41, 305.03, 999.15, 0, 1, 1788, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1689, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 0, 0, 2051.26, -954.76, 48.03, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 1789, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1690, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 1, 0, 2278.66, -1077.38, 48.24, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 1790, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1691, 4, 'trailer LS', 0, 0, 0, 2000, 0, 0, 2355.77, -1058.81, 54.08, 0, 0, 0, 0, -1, 244.41, 305.03, 999.15, 0, 1, 1791, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1692, 4, 'trailer LS', 0, 0, 0, 2000, 0, 0, 2348.01, -1047.59, 53.85, 0, 0, 0, 0, -1, 244.41, 305.03, 999.15, 0, 1, 1792, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1693, 4, 'trailer LS', 0, 0, 0, 2000, 100, 0, 2350.99, -1039.79, 54.33, 0, 0, 0, 0, -1, 244.41, 305.03, 999.15, 0, 1, 1793, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1694, 4, 'trailer LS', 0, 0, 0, 2000, 0, 0, 2355.53, -1038.58, 54.33, 0, 0, 0, 0, -1, 244.41, 305.03, 999.15, 0, 1, 1794, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1695, 4, 'trailer LS', 0, 0, 0, 2000, 250, 0, 2370.25, -1034.55, 54.41, 0, 0, 0, 0, -1, 244.41, 305.03, 999.15, 0, 1, 1795, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1696, 4, 'trailer LS', 0, 0, 0, 2000, 5000, 0, 2362.67, -1046.43, 54.27, 0, 0, 0, 0, -1, 244.41, 305.03, 999.15, 0, 1, 1796, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1697, 4, 'trailer LS', 0, 0, 0, 2000, 0, 0, 2335.19, -1046.01, 52.55, 0, 0, 0, 0, -1, 244.41, 305.03, 999.15, 0, 1, 1797, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1698, 4, 'trailer LS', 0, 0, 0, 2000, 0, 0, 2325.48, -1060.97, 52.47, 0, 0, 0, 0, -1, 244.41, 305.03, 999.15, 0, 1, 1798, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1699, 4, 'trailer LS', 0, 0, 0, 2000, 0, 0, 2330.22, -1060.9, 52.47, 0, 0, 0, 0, -1, 244.41, 305.03, 999.15, 0, 1, 1799, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1700, 4, 'trailer LS', 0, 0, 0, 2000, 0, 0, 2297.73, -1053.08, 49.93, 0, 0, 0, 0, -1, 244.41, 305.03, 999.15, 0, 1, 1800, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1701, 4, 'trailer LS', 0, 0, 0, 2000, 0, 0, 2284.19, -1046.09, 49.89, 0, 0, 0, 0, -1, 244.41, 305.03, 999.15, 0, 1, 1801, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1702, 4, 'trailer LS', 0, 0, 0, 2000, 15, 0, 2319.77, -1053.31, 52.46, 0, 0, 0, 0, -1, 244.41, 305.03, 999.15, 0, 1, 1802, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1703, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 0, 0, 2462.41, -1011.12, 60.11, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 1803, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1704, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 350, 0, 2457.77, -1054.54, 59.96, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 1804, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1705, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 0, 0, 2491.37, -1012.27, 65.4, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 1805, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1706, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 0, 0, 2479.67, -1064.01, 67, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 1806, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1707, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 0, 0, 2512.8, -1027.16, 70.08, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 1807, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1708, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 0, 0, 2526.09, -1060.67, 69.97, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 1808, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1709, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 0, 0, 2534.48, -1063.48, 69.56, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 1809, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1710, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 0, 0, 2526.9, -1033.52, 69.58, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 1810, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1711, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 0, 0, 2470.59, -1105.32, 44.49, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 1811, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1712, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 1000, 0, 2457.08, -1102.5, 43.87, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 1812, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1713, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 0, 0, 2438.62, -1105.78, 43.08, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 1813, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1714, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 0, 0, 2407.91, -1106.97, 40.29, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 1814, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1715, 4, 'LS Project', 0, 0, 0, 4000, 0, 0, 2751.49, -1962.88, 13.54, 0, 0, 0, 0, -1, 244.41, 305.03, 999.15, 0, 1, 1815, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1716, 4, 'LS Project', 0, 0, 0, 4000, 0, 0, 2787.07, -1952.57, 13.54, 0, 0, 0, 0, -1, 244.41, 305.03, 999.15, 0, 1, 1816, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1717, 4, 'LS Project', 0, 0, 0, 4000, 0, 0, 2751.5, -1936.56, 13.54, 0, 0, 0, 0, -1, 244.41, 305.03, 999.15, 0, 1, 1817, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1718, 4, 'LS Project', 0, 0, 0, 4000, 0, 0, 2787.07, -1926.17, 13.54, 0, 0, 0, 0, -1, 244.41, 305.03, 999.15, 0, 1, 1818, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1719, 4, 'LS Project', 0, 0, 0, 4000, 0, 0, 2736.65, -1926.18, 13.54, 0, 0, 0, 0, -1, 244.41, 305.03, 999.15, 0, 1, 1819, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1720, 4, 'LS Project', 0, 0, 0, 4000, 0, 0, 2736.65, -1952.58, 13.54, 0, 0, 0, 0, -1, 244.41, 305.03, 999.15, 0, 1, 1820, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1721, 4, 'LS Project', 0, 0, 0, 4000, 0, 0, 2801.92, -1936.32, 13.54, 0, 0, 0, 0, -1, 244.41, 305.03, 999.15, 0, 1, 1821, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1722, 4, 'LS Project', 0, 0, 0, 4000, 0, 0, 2801.92, -1962.9, 13.54, 0, 0, 0, 0, -1, 244.41, 305.03, 999.15, 0, 1, 1822, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1723, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 0, 0, 2696.39, -1990.36, 14.22, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 1823, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1724, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 0, 0, 2672.71, -1989.47, 14.32, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 1824, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1725, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 0, 0, 2695.24, -2020.55, 14.02, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 1825, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1726, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 0, 0, 2673.27, -2020.29, 14.17, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 1826, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1727, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 0, 0, 2650.7, -2021.8, 14.18, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 1827, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1728, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 100, 0, 2635.61, -2012.93, 14.14, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 1828, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1729, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 1000, 0, 2637.01, -1991.77, 14.32, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 1829, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1730, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 0, 0, 2652.78, -1989.43, 14, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 1830, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1731, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 0, 0, 2486.36, -2021.55, 14, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 1831, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1732, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 0, 0, 2483.52, -1995.34, 13.83, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 1832, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1733, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 0, 0, 2465.22, -2020.79, 14.12, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 1833, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1734, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 0, 0, 2465.1, -1995.75, 14.02, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 1834, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1736, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 0, 0, 2508.32, -1998.36, 13.9, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 1836, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1737, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 4000, 0, 2507.84, -2021.05, 14.21, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 1837, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1738, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 0, 0, 2522.75, -2019, 14.07, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 1838, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1739, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 0, 0, 2524.44, -1998.39, 14.11, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 1839, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1740, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 0, 0, 1667.53, -2106.94, 14.07, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 1840, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1741, 4, 'house at the beach', 0, 0, 0, 100000, 0, 0, 192.78, -1747.76, 4.3, 0, 0, 0, 0, -1, 261.06, 1284.29, 1080.25, 0, 4, 1841, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1742, 4, 'small house at vinewood', 0, 0, 0, 150000, 2000, 0, 142.5, -1470.27, 25.21, 0, 0, 0, 0, -1, 295.21, 1472.26, 1080.25, 0, 15, 1842, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1743, 4, 'House At Vinewood without swimming pool', 0, 0, 0, 400000, 0, 0, 161.45, -1455.95, 32.84, 0, 0, 0, 0, -1, 234.22, 1063.89, 1084.21, 0, 6, 1843, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1744, 4, 'House Near Vinewood', 0, 0, 0, 150000, 0, 0, 1059.16, -1105.14, 28.05, 0, 0, 0, 0, -1, 447, 1397.09, 1084.3, 0, 2, 1844, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1745, 4, 'House Near Vinewood', 0, 0, 0, 150000, 0, 0, 1103.41, -1092.54, 28.47, 0, 0, 0, 0, -1, 447, 1397.09, 1084.3, 0, 2, 1845, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1746, 4, 'House Near Vinewood', 0, 0, 0, 150000, 0, 0, 1103.4, -1069.59, 31.89, 0, 0, 0, 0, -1, 447, 1397.09, 1084.3, 0, 2, 1846, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1747, 4, 'House Near Vinewood', 0, 0, 0, 150000, 5000, 0, 1142.12, -1092.77, 28.19, 0, 0, 0, 0, -1, 447, 1397.09, 1084.3, 0, 2, 1847, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1748, 4, 'House Near Vinewood', 0, 0, 0, 150000, 0, 0, 1183.47, -1098.93, 28.26, 0, 0, 0, 0, -1, 447, 1397.09, 1084.3, 0, 2, 1848, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1749, 4, 'House Near Vinewood', 0, 0, 0, 150000, 0, 0, 1183.47, -1076.04, 31.68, 0, 0, 0, 0, -1, 447, 1397.09, 1084.3, 0, 2, 1849, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1750, 4, 'House Near Vinewood', 0, 0, 0, 150000, 5000, 0, 1141.81, -1069.99, 31.76, 0, 0, 0, 0, -1, 447, 1397.09, 1084.3, 0, 2, 1850, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1751, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 0, 0, 2582.89, -952.93, 81.39, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 1851, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1752, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 0, 0, 2552.05, -958.43, 82.61, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 1852, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1753, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 0, 0, 2517.86, -965.39, 82.33, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 1853, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1754, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 0, 0, 2499.51, -947, 82.47, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 1854, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1755, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 0, 0, 2492.1, -965.64, 82.54, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 1855, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1756, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 0, 0, 2472.35, -962.04, 80.53, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 1856, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1757, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 0, 0, 2454.18, -964.96, 80.07, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 1857, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1758, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 0, 0, 2459.37, -947.7, 80.08, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 1858, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1759, 4, 'house at the beach', 0, 0, 0, 100000, 500, 0, 992.68, -1817.65, 13.89, 0, 0, 0, 0, -1, 261.06, 1284.29, 1080.25, 0, 4, 1859, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1760, 4, 'house at the beach', 0, 0, 0, 100000, 5000, 0, 980.88, -1814.81, 13.89, 0, 0, 0, 0, -1, 261.06, 1284.29, 1080.25, 0, 4, 1860, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1761, 4, 'house at the beach', 0, 0, 0, 100000, 500, 0, 969.6, -1812.02, 13.88, 0, 0, 0, 0, -1, 261.06, 1284.29, 1080.25, 0, 4, 1861, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1762, 4, 'house at the beach', 0, 0, 0, 100000, 0, 0, 958.07, -1809.17, 13.88, 0, 0, 0, 0, -1, 261.06, 1284.29, 1080.25, 0, 4, 1862, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1763, 4, 'house at the beach', 0, 0, 0, 100000, 1000, 0, 933.65, -1805.2, 13.84, 0, 0, 0, 0, -1, 261.06, 1284.29, 1080.25, 0, 4, 1863, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1764, 4, 'house at the beach', 0, 0, 0, 100000, 900, 0, 921.97, -1803.89, 13.84, 0, 0, 0, 0, -1, 261.06, 1284.29, 1080.25, 0, 4, 1864, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1765, 4, 'house at the beach', 0, 0, 0, 100000, 0, 0, 910.27, -1802.69, 13.8, 0, 0, 0, 0, -1, 261.06, 1284.29, 1080.25, 0, 4, 1865, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1766, 4, 'house at the beach', 0, 0, 0, 100000, 0, 0, 883.24, -1800.39, 13.8, 0, 0, 0, 0, -1, 261.06, 1284.29, 1080.25, 0, 4, 1866, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1767, 4, 'house at the beach', 0, 0, 0, 100000, 0, 0, 866.66, -1798.94, 13.81, 0, 0, 0, 0, -1, 261.06, 1284.29, 1080.25, 0, 4, 1867, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1768, 4, 'Little House at Dillimore', 0, 0, 0, 60000, 0, 0, 795.25, -506.15, 18.01, 0, 0, 0, 0, -1, 2282.9, -1139.99, 1050.89, 0, 11, 1868, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1769, 4, 'Little House at Dillimore', 0, 0, 0, 50000, 0, 0, 818.26, -509.32, 18.01, 0, 0, 0, 0, -1, 261.06, 1284.29, 1080.25, 0, 4, 1869, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1770, 4, 'House at Dillimore', 0, 0, 0, 85000, 0, 0, 768.34, -503.48, 18.01, 0, 0, 0, 0, -1, 327.91, 1477.79, 1084.43, 0, 15, 1870, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1771, 4, 'House at Dillimore', 0, 0, 0, 100000, 0, 0, 743.24, -509.32, 18.01, 0, 0, 0, 0, -1, 327.91, 1477.79, 1084.43, 0, 15, 1871, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1772, 4, 'House at Dillimore', 0, 0, 0, 100000, 150, 0, 745.13, -556.78, 18.01, 0, 0, 0, 0, -1, 327.91, 1477.79, 1084.43, 0, 15, 1872, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1773, 4, 'House at Dillimore', 0, 0, 0, 100000, 0, 0, 766.59, -556.78, 18.01, 0, 0, 0, 0, -1, 327.91, 1477.79, 1084.43, 0, 15, 1873, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1774, 4, 'Little House at Dillimore', 0, 0, 0, 70000, 0, 0, 759.29, -592.03, 18.01, 0, 0, 0, 0, -1, 261.06, 1284.29, 1080.25, 0, 4, 1874, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1775, 4, 'Little House at Dillimore', 0, 0, 0, 70000, 0, 0, 745.67, -591.14, 18.01, 0, 0, 0, 0, -1, 261.06, 1284.29, 1080.25, 0, 4, 1875, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1776, 4, 'Trailer at Blue Berry', 0, 0, 0, 20000, 0, 0, 261.96, -269.98, 1.64, 0, 0, 0, 0, -1, 244.41, 305.03, 999.15, 0, 1, 1876, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1777, 4, 'Trailer at Blue Berry', 0, 0, 0, 20000, 0, 0, 264.51, -288.42, 1.73, 0, 0, 0, 0, -1, 244.41, 305.03, 999.15, 0, 1, 1877, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1778, 4, 'Trailer at Blue Berry', 0, 0, 0, 20000, 0, 0, 260.6, -302.99, 1.92, 0, 0, 0, 0, -1, 244.41, 305.03, 999.15, 0, 1, 1878, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1779, 4, 'Trailer at Blue Berry', 0, 0, 0, 20000, 0, 0, 253.25, -289.94, 1.7, 0, 0, 0, 0, -1, 244.41, 305.03, 999.15, 0, 1, 1879, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1780, 4, 'Trailer at Blue Berry', 0, 0, 0, 20000, 0, 0, 255.91, -278.5, 1.66, 0, 0, 0, 0, -1, 244.41, 305.03, 999.15, 0, 1, 1880, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1781, 4, 'Trailer at Blue Berry', 0, 0, 0, 20000, 0, 0, 238.92, -286.29, 1.63, 0, 0, 0, 0, -1, 244.41, 305.03, 999.15, 0, 1, 1881, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1782, 4, 'Trailer at Blue Berry', 0, 0, 0, 20000, 0, 0, 235.13, -309.46, 1.71, 0, 0, 0, 0, -1, 244.41, 305.03, 999.15, 0, 1, 1882, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1783, 4, 'Trailer at Blue Berry', 0, 0, 0, 20000, 0, 0, 226.55, -302.81, 1.93, 0, 0, 0, 0, -1, 244.41, 305.03, 999.15, 0, 1, 1883, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1784, 4, 'Trailer at Blue Berry', 0, 0, 0, 20000, 0, 0, 264.51, -283.67, 1.73, 0, 0, 0, 0, -1, 244.41, 305.03, 999.15, 0, 1, 1884, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1785, 4, 'Trailer at Blue Berry', 0, 0, 0, 20000, 0, 0, 253.53, -274.55, 1.66, 0, 0, 0, 0, -1, 244.41, 305.03, 999.15, 0, 1, 1885, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1786, 4, 'Trailer at Blue Berry', 0, 0, 0, 20000, 0, 0, 242.01, -298.6, 1.69, 0, 0, 0, 0, -1, 244.41, 305.03, 999.15, 0, 1, 1886, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1787, 4, 'Apartment at Blue Berry', 0, 0, 0, 80000, 0, 0, 178.28, -120.23, 1.55, 0, 0, 0, 0, -1, 261.06, 1284.29, 1080.25, 0, 4, 1887, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1788, 4, 'Apartment at Blue Berry', 0, 0, 0, 80000, 0, 0, 189.31, -120.23, 1.55, 0, 0, 0, 0, -1, 261.06, 1284.29, 1080.25, 0, 4, 1888, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1789, 4, 'Apartment at Blue Berry', 0, 0, 0, 80000, 0, 0, 166.3, -120.23, 1.55, 0, 0, 0, 0, -1, 261.06, 1284.29, 1080.25, 0, 4, 1889, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1790, 4, 'Apartment at Blue Berry', 0, 0, 0, 80000, 0, 0, 201.46, -94.97, 1.55, 0, 0, 0, 0, -1, 261.06, 1284.29, 1080.25, 0, 4, 1890, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1791, 4, 'Apartment at Blue Berry', 0, 0, 0, 80000, 0, 0, 160.63, -102.57, 4.9, 0, 0, 0, 0, -1, 261.06, 1284.29, 1080.25, 0, 4, 1891, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1792, 4, 'Apartment at Blue Berry', 0, 0, 0, 80000, 0, 0, 160.63, -112.59, 4.9, 0, 0, 0, 0, -1, 261.06, 1284.29, 1080.25, 0, 4, 1892, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1793, 4, 'Apartment at Blue Berry', 0, 0, 0, 80000, 0, 0, 166.19, -118.23, 4.9, 0, 0, 0, 0, -1, 261.06, 1284.29, 1080.25, 0, 4, 1893, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1794, 4, 'Apartment at Blue Berry', 0, 0, 0, 80000, 0, 0, 178.26, -118.23, 4.9, 0, 0, 0, 0, -1, 261.06, 1284.29, 1080.25, 0, 4, 1894, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1795, 4, 'Apartment at Blue Berry', 0, 0, 0, 80000, 0, 0, 166.25, -96.97, 4.9, 0, 0, 0, 0, -1, 261.06, 1284.29, 1080.25, 0, 4, 1895, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1796, 4, 'Apartment at Blue Berry', 0, 0, 0, 80000, 0, 0, 178.37, -96.97, 4.9, 0, 0, 0, 0, -1, 261.06, 1284.29, 1080.25, 0, 4, 1896, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1797, 4, 'Apartment at Blue Berry', 0, 0, 0, 80000, 0, 0, 166.39, -94.97, 1.55, 0, 0, 0, 0, -1, 261.06, 1284.29, 1080.25, 0, 4, 1897, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1798, 4, 'Apartment at Blue Berry', 0, 0, 0, 80000, 0, 0, 207.07, -112.39, 4.9, 0, 0, 0, 0, -1, 261.06, 1284.29, 1080.25, 0, 4, 1898, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1799, 4, 'Apartment at Blue Berry', 0, 0, 0, 80000, 0, 0, 201.41, -96.97, 4.9, 0, 0, 0, 0, -1, 261.06, 1284.29, 1080.25, 0, 4, 1899, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1800, 4, 'Apartment at Blue Berry', 0, 0, 0, 80000, 0, 0, 189.41, -96.97, 4.9, 0, 0, 0, 0, -1, 261.06, 1284.29, 1080.25, 0, 4, 1900, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1801, 4, 'Apartment at Blue Berry', 0, 0, 0, 80000, 0, 0, 201.37, -118.23, 4.9, 0, 0, 0, 0, -1, 261.06, 1284.29, 1080.25, 0, 4, 1901, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1802, 4, 'Apartment at Blue Berry', 0, 0, 0, 80000, 0, 0, 201.45, -120.23, 1.55, 0, 0, 0, 0, -1, 261.06, 1284.29, 1080.25, 0, 4, 1902, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1803, 4, 'Apartment at Blue Berry', 0, 0, 0, 80000, 0, 0, 158.64, -112.62, 1.56, 0, 0, 0, 0, -1, 261.06, 1284.29, 1080.25, 0, 4, 1903, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1804, 4, 'Apartment at Blue Berry', 0, 0, 0, 80000, 0, 0, 209.08, -112.6, 1.55, 0, 0, 0, 0, -1, 261.06, 1284.29, 1080.25, 0, 4, 1904, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1805, 4, 'House at Blue Berry', 0, 0, 0, 110000, 0, 0, 252.88, -92.42, 3.54, 0, 0, 0, 0, -1, 2282.9, -1139.99, 1050.89, 0, 11, 1905, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1806, 4, 'House at Blue Berry', 0, 0, 0, 110000, 500, 0, 252.89, -121.31, 3.54, 0, 0, 0, 0, -1, 2282.9, -1139.99, 1050.89, 0, 11, 1906, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1807, 4, 'House at Blue Berry', 0, 0, 0, 130000, 0, 0, 267.69, -54.54, 2.78, 0, 0, 0, 0, -1, 2282.9, -1139.99, 1050.89, 0, 11, 1907, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1808, 4, 'House at Blue Berry', 0, 0, 0, 100000, 0, 0, 295.07, -54.55, 2.78, 0, 0, 0, 0, -1, 2282.9, -1139.99, 1050.89, 0, 11, 1908, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1809, 4, 'House at Blue Berry', 0, 0, 0, 100000, 0, 0, 312.72, -92.34, 3.54, 0, 0, 0, 0, -1, 2282.9, -1139.99, 1050.89, 0, 11, 1909, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1810, 4, 'House at Blue Berry', 0, 0, 0, 100000, 0, 0, 312.72, -121.25, 3.54, 0, 0, 0, 0, -1, 2282.9, -1139.99, 1050.89, 0, 11, 1910, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1811, 4, 'Small House near Blue Berry', 0, 0, 0, 40000, 0, 0, 342.63, 62.72, 3.86, 0, 0, 0, 0, -1, 260.77, 1237.26, 1084.25, 0, 9, 1911, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1812, 4, 'Small House near Blue Berry', 0, 0, 0, 60000, 0, 0, 317.74, 54.61, 3.38, 0, 0, 0, 0, -1, 260.77, 1237.26, 1084.25, 0, 9, 1912, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1813, 4, 'Small House near Blue Berry', 0, 0, 0, 60000, 0, 0, 309.11, 44.42, 3.09, 0, 0, 0, 0, -1, 260.77, 1237.26, 1084.25, 0, 9, 1913, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1814, 4, 'Small House near Blue Berry', 0, 0, 0, 60000, 0, 0, 286.06, 41.15, 2.55, 0, 0, 0, 0, -1, 260.77, 1237.26, 1084.25, 0, 9, 1914, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1815, 4, 'Small House near Blue Berry', 0, 0, 0, 60000, 0, 0, 316.56, 18.27, 4.52, 0, 0, 0, 0, -1, 260.77, 1237.26, 1084.25, 0, 9, 1915, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1816, 4, 'Small House near Blue Berry', 0, 0, 0, 60000, 0, 0, 340.2, 33.45, 6.41, 0, 0, 0, 0, -1, 260.77, 1237.26, 1084.25, 0, 9, 1916, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1817, 4, 'House At Palomino Creek', 0, 0, 0, 60000, 0, 0, 2323.84, 162.27, 28.44, 0, 0, 0, 0, -1, 2282.9, -1139.99, 1050.89, 0, 11, 1917, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1818, 4, 'House At Palomino Creek', 0, 0, 0, 100000, 0, 0, 2364, 187.28, 28.44, 0, 0, 0, 0, -1, 327.91, 1477.79, 1084.43, 0, 15, 1918, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1819, 4, 'House At Palomino Creek', 0, 0, 0, 100000, 0, 0, 2364, 166.09, 28.44, 0, 0, 0, 0, -1, 327.91, 1477.79, 1084.43, 0, 15, 1919, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1820, 4, 'House At Palomino Creek', 0, 0, 0, 100000, 1, 0, 2323.84, 191.22, 28.44, 0, 0, 0, 0, -1, 327.91, 1477.79, 1084.43, 0, 15, 1920, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1821, 4, 'House At Palomino Creek', 0, 0, 0, 100000, 1000, 0, 2323.84, 136.42, 28.44, 0, 0, 0, 0, -1, 327.91, 1477.79, 1084.43, 0, 15, 1921, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1822, 4, 'House At Palomino Creek', 0, 0, 0, 60000, 1, 0, 2323.84, 116.14, 28.44, 0, 0, 0, 0, -1, 261.06, 1284.29, 1080.25, 0, 4, 1922, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1823, 4, 'House At Palomino Creek', 0, 0, 0, 60000, 0, 0, 2364, 116.13, 28.44, 0, 0, 0, 0, -1, 261.06, 1284.29, 1080.25, 0, 4, 1923, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1824, 4, 'House At Palomino Creek', 0, 0, 0, 60000, 0, 0, 2373.84, 71.08, 28.44, 0, 0, 0, 0, -1, 261.06, 1284.29, 1080.25, 0, 4, 1924, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1825, 4, 'House At Palomino Creek', 0, 0, 0, 60000, 0, 0, 2373.84, 42.28, 28.44, 0, 0, 0, 0, -1, 261.06, 1284.29, 1080.25, 0, 4, 1925, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1826, 4, 'House At Palomino Creek', 0, 0, 0, 60000, 0, 0, 2373.84, 21.98, 28.44, 0, 0, 0, 0, -1, 261.06, 1284.29, 1080.25, 0, 4, 1926, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1827, 4, 'House At Palomino Creek', 0, 0, 0, 60000, 0, 0, 2373.84, -8.65, 28.44, 0, 0, 0, 0, -1, 261.06, 1284.29, 1080.25, 0, 4, 1927, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1828, 4, 'House At Palomino Creek', 0, 0, 0, 60000, 0, 0, 2367.38, -49.13, 28.15, 0, 0, 0, 0, -1, 261.06, 1284.29, 1080.25, 0, 4, 1928, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1829, 4, 'House At Palomino Creek', 0, 0, 0, 100000, 0, 0, 2392.29, -54.96, 28.15, 0, 0, 0, 0, -1, 327.91, 1477.79, 1084.43, 0, 15, 1929, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1830, 4, 'House At Palomino Creek', 0, 0, 0, 100000, 0, 0, 2415.57, -5.7, 27.68, 0, 0, 0, 0, -1, 327.91, 1477.79, 1084.43, 0, 15, 1930, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1831, 4, 'House At Palomino Creek', 0, 0, 0, 60000, 0, 0, 2438.78, -54.96, 28.15, 0, 0, 0, 0, -1, 260.77, 1237.26, 1084.25, 0, 9, 1931, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1832, 4, 'House At Palomino Creek', 0, 0, 0, 60000, 0, 0, 2442.86, -4.04, 27.68, 0, 0, 0, 0, -1, 260.77, 1237.26, 1084.25, 0, 9, 1932, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1833, 4, 'House At Palomino Creek', 0, 0, 0, 60000, 0, 0, 2488.38, 11.76, 28.44, 0, 0, 0, 0, -1, 260.77, 1237.26, 1084.25, 0, 9, 1933, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1834, 4, 'House At Palomino Creek', 0, 0, 0, 60000, 0, 0, 2484.49, -28.39, 28.44, 0, 0, 0, 0, -1, 260.77, 1237.26, 1084.25, 0, 9, 1934, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1835, 4, 'House At Palomino Creek', 0, 0, 0, 85000, 1000, 0, 2513.28, -28.4, 28.44, 0, 0, 0, 0, -1, 260.77, 1237.26, 1084.25, 0, 9, 1935, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1836, 4, 'House At Palomino Creek', 0, 0, 0, 85000, 1000, 0, 2417.01, 17.88, 27.68, 0, 0, 0, 0, -1, 260.77, 1237.26, 1084.25, 0, 9, 1936, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1837, 4, 'House At Palomino Creek', 0, 0, 0, 150000, 0, 0, 2549.23, 25.14, 27.67, 0, 0, 0, 0, -1, 327.91, 1477.79, 1084.43, 0, 15, 1937, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1838, 4, 'House At Palomino Creek', 0, 0, 0, 150000, 0, 0, 2551.22, -5.51, 27.67, 0, 0, 0, 0, -1, 327.91, 1477.79, 1084.43, 0, 15, 1938, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1839, 4, 'House At Palomino Creek', 0, 0, 0, 110000, 0, 0, 2551.22, 57.14, 27.67, 0, 0, 0, 0, -1, 327.91, 1477.79, 1084.43, 0, 15, 1939, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1840, 4, 'House At Palomino Creek', 0, 0, 0, 110000, 0, 0, 2557.01, 87.89, 27.67, 0, 0, 0, 0, -1, 327.91, 1477.79, 1084.43, 0, 15, 1940, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1841, 4, 'House At Palomino Creek', 0, 0, 0, 110000, 5000, 0, 2536.24, 128.99, 27.68, 0, 0, 0, 0, -1, 327.91, 1477.79, 1084.43, 0, 15, 1941, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1842, 4, 'House At Palomino Creek', 0, 0, 0, 110000, 0, 0, 2518.44, 128.99, 27.68, 0, 0, 0, 0, -1, 327.91, 1477.79, 1084.43, 0, 15, 1942, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1843, 4, 'House At Palomino Creek', 0, 0, 0, 90000, 0, 0, 2514.05, 94.39, 27.68, 0, 0, 0, 0, -1, 260.77, 1237.26, 1084.25, 0, 9, 1943, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1844, 4, 'House At Palomino Creek', 0, 0, 0, 150000, 0, 0, 2480.62, 126.99, 27.67, 0, 0, 0, 0, -1, 327.91, 1477.79, 1084.43, 0, 15, 1944, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1845, 4, 'House At Palomino Creek', 0, 0, 0, 150000, 500, 0, 2462.76, 134.78, 27.68, 0, 0, 0, 0, -1, 327.91, 1477.79, 1084.43, 0, 15, 1945, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1846, 4, 'House At Palomino Creek', 0, 0, 0, 150000, 0, 0, 2443.84, 92.26, 28.44, 0, 0, 0, 0, -1, 327.91, 1477.79, 1084.43, 0, 15, 1946, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1847, 4, 'House At Palomino Creek', 0, 0, 0, 80000, 5000, 0, 2481.22, 64.37, 27.68, 0, 0, 0, 0, -1, 260.77, 1237.26, 1084.25, 0, 9, 1947, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1848, 4, 'House At Palomino Creek', 0, 0, 0, 70000, 0, 0, 2479.34, 94.39, 27.68, 0, 0, 0, 0, -1, 260.77, 1237.26, 1084.25, 0, 9, 1948, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1849, 4, 'House At Palomino Creek', 0, 0, 0, 125000, 0, 0, 2439.56, 24.5, 27.68, 0, 0, 0, 0, -1, 327.91, 1477.79, 1084.43, 0, 15, 1949, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1850, 4, 'House At Palomino Creek', 0, 0, 0, 90000, 1, 0, 2448.42, -11.02, 27.68, 0, 0, 0, 0, -1, 260.77, 1237.26, 1084.25, 0, 9, 1950, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1851, 4, 'House At Palomino Creek', 0, 0, 0, 250000, 0, 0, 2415.44, -52.28, 28.15, 0, 0, 0, 0, -1, 261.06, 1284.29, 1080.25, 0, 4, 1951, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1852, 4, 'House At Palomino Creek', 0, 0, 0, 60000, 0, 0, 2398.34, 111.76, 28.44, 0, 0, 0, 0, -1, 261.06, 1284.29, 1080.25, 0, 4, 1952, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1853, 4, 'House At Palomino Creek', 0, 0, 0, 60000, 0, 0, 2269.5, 111.76, 28.44, 0, 0, 0, 0, -1, 261.06, 1284.29, 1080.25, 0, 4, 1953, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1854, 4, 'House At Palomino Creek', 0, 0, 0, 60000, 0, 0, 2249.3, 111.76, 28.44, 0, 0, 0, 0, -1, 261.06, 1284.29, 1080.25, 0, 4, 1954, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1855, 4, 'House At Palomino Creek', 0, 0, 0, 95000, 0, 0, 2203.84, 106.15, 28.44, 0, 0, 0, 0, -1, 260.77, 1237.26, 1084.25, 0, 9, 1955, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1856, 4, 'House At Palomino Creek', 0, 0, 0, 120000, 0, 0, 2203.84, 62.28, 28.44, 0, 0, 0, 0, -1, 327.91, 1477.79, 1084.43, 0, 15, 1956, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1857, 4, 'House At Palomino Creek', 0, 0, 0, 120000, 0, 0, 2270.49, -7.5, 28.15, 0, 0, 0, 0, -1, 327.91, 1477.79, 1084.43, 0, 15, 1957, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1858, 4, 'House At Palomino Creek', 0, 0, 0, 190000, 0, 0, 2245.52, -1.66, 28.15, 0, 0, 0, 0, -1, 327.91, 1477.79, 1084.43, 0, 15, 1958, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1859, 4, 'House At Palomino Creek', 0, 0, 0, 250000, 0, 0, 2199.95, -37.35, 28.15, 0, 0, 0, 0, -1, 327.91, 1477.79, 1084.43, 0, 15, 1959, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1860, 4, 'House At Palomino Creek', 0, 0, 0, 220000, 0, 0, 2197.27, -60.67, 28.15, 0, 0, 0, 0, -1, 327.91, 1477.79, 1084.43, 0, 15, 1960, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1861, 4, 'House At Palomino Creek', 0, 0, 0, 250000, 0, 0, 2203.1, -89.22, 28.15, 0, 0, 0, 0, -1, 327.91, 1477.79, 1084.43, 0, 15, 1961, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1862, 4, 'House At Palomino Creek', 0, 0, 0, 220000, 0, 0, 2245.53, -122.29, 28.15, 0, 0, 0, 0, -1, 327.91, 1477.79, 1084.43, 0, 15, 1962, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1863, 4, 'House At Palomino Creek', 0, 0, 0, 220000, 0, 0, 2272.45, -119.14, 28.15, 0, 0, 0, 0, -1, 327.91, 1477.79, 1084.43, 0, 15, 1963, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1864, 4, 'House At Palomino Creek', 0, 0, 0, 110000, 0, 0, 2293.74, -124.96, 28.15, 0, 0, 0, 0, -1, 260.77, 1237.26, 1084.25, 0, 9, 1964, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1865, 4, 'House At Palomino Creek', 0, 0, 0, 110000, 0, 0, 2322.25, -124.96, 28.15, 0, 0, 0, 0, -1, 260.77, 1237.26, 1084.25, 0, 9, 1965, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1866, 4, 'House At Palomino Creek', 0, 0, 0, 110000, 0, 0, 2285.84, 161.77, 28.44, 0, 0, 0, 0, -1, 260.77, 1237.26, 1084.25, 0, 9, 1966, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1867, 4, 'House At Palomino Creek', 0, 0, 0, 110000, 0, 0, 2266.49, 168.34, 28.15, 0, 0, 0, 0, -1, 260.77, 1237.26, 1084.25, 0, 9, 1967, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1868, 4, 'House At Palomino Creek', 0, 0, 0, 110000, 0, 0, 2236.53, 168.3, 28.15, 0, 0, 0, 0, -1, 260.77, 1237.26, 1084.25, 0, 9, 1968, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1869, 4, 'House At Palomino Creek', 0, 0, 0, 110000, 0, 0, 2413.54, 61.76, 28.44, 0, 0, 0, 0, -1, 260.77, 1237.26, 1084.25, 0, 9, 1969, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1870, 4, 'House At Palomino Creek', 0, 0, 0, 120000, 0, 0, 2443.41, 61.76, 28.44, 0, 0, 0, 0, -1, 260.77, 1237.26, 1084.25, 0, 9, 1970, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1871, 4, 'House At Palomino Creek', 0, 0, 0, 90000, 1, 0, 2509.5, 11.76, 28.44, 0, 0, 0, 0, -1, 260.77, 1237.26, 1084.25, 0, 9, 1971, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1872, 4, 'House At Palomino Creek', 0, 0, 0, 125000, 0, 0, 2511.69, 57.22, 27.68, 0, 0, 0, 0, -1, 2282.9, -1139.99, 1050.89, 0, 11, 1972, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1873, 4, 'Trailer at Montgomery', 0, 0, 0, 40000, 0, 0, 1283.31, 158.37, 20.79, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 1973, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1874, 4, 'Trailer at Montgomery', 0, 0, 0, 40000, 0, 0, 1295.41, 174.55, 20.91, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 1974, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1875, 4, 'Trailer at Montgomery', 0, 0, 0, 40000, 5000, 0, 1294.51, 157.65, 20.58, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 1975, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1876, 4, 'Trailer at Montgomery', 0, 0, 0, 30000, 0, 0, 1299.14, 140.34, 20.54, 0, 0, 0, 0, -1, 244.41, 305.03, 999.15, 0, 1, 1976, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1877, 4, 'Trailer at Montgomery', 0, 0, 0, 40000, 0, 0, 1303.61, 186.1, 20.54, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 1977, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1878, 4, 'Trailer at Montgomery', 0, 0, 0, 40000, 0, 0, 1300.44, 193.27, 20.52, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 1978, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1879, 4, 'Trailer at Montgomery', 0, 0, 0, 40000, 0, 0, 1315.63, 180.16, 20.55, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 1979, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1880, 4, 'Trailer at Montgomery', 0, 0, 0, 40000, 0, 0, 1311.76, 169.57, 20.63, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 1980, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1881, 4, 'Trailer at Montgomery', 0, 0, 0, 40000, 0, 0, 1307.29, 153.32, 20.49, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 1981, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1882, 4, 'House at Montgomery', 0, 0, 0, 60000, 0, 0, 1409.27, 346.89, 19.25, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 1982, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1883, 4, 'House at Montgomery', 0, 0, 0, 60000, 0, 0, 1403.22, 333.85, 18.91, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 1983, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1884, 4, 'House at Montgomery', 0, 0, 0, 60000, 0, 0, 1415.88, 324.62, 18.84, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 1984, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1885, 4, 'House at Montgomery', 0, 0, 0, 60000, 0, 0, 1428.64, 356.43, 18.88, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 1985, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1886, 4, 'House at Montgomery', 0, 0, 0, 60000, 0, 0, 1413.14, 363.12, 19.2, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 1986, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1887, 4, 'House at Montgomery', 0, 0, 0, 60000, 0, 0, 1419.53, 389.47, 19.33, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 1987, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1888, 4, 'House at Montgomery', 0, 0, 0, 60000, 0, 0, 1475.32, 372.75, 19.66, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 1988, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1889, 4, 'House at Montgomery', 0, 0, 0, 60000, 0, 0, 1465.74, 364.2, 19.26, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 1989, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1890, 4, 'House at Montgomery', 0, 0, 0, 60000, 0, 0, 1469.66, 351.45, 18.92, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 1990, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1891, 4, 'House at Montgomery', 0, 0, 0, 60000, 0, 0, 1451.58, 375.79, 19.4, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 1991, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1892, 4, 'House at Montgomery', 0, 0, 0, 60000, 0, 0, 1447.45, 361.74, 18.91, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 1992, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1893, 4, 'House at Montgomery', 0, 0, 0, 60000, 0, 0, 1461.13, 342.47, 18.95, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 1993, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1894, 4, 'House at Montgomery', 0, 0, 0, 60000, 0, 0, 1434.89, 334.77, 18.95, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 1994, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1895, 4, 'House at Montgomery', 0, 0, 0, 60000, 0, 0, 1488.61, 360.9, 19.41, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 1995, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1896, 4, 'House near Blueberry', 0, 0, 0, 60000, 0, 0, 723.71, 269.67, 22.45, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 1996, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1897, 4, 'House near Blueberry', 0, 0, 0, 60000, 0, 0, 705.47, 292.1, 20.42, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 1997, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1898, 4, 'House near Blueberry', 0, 0, 0, 60000, 0, 0, 719.07, 300.58, 20.38, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 1998, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1899, 4, 'House near Blueberry', 0, 0, 0, 60000, 0, 0, 746.4, 305, 20.23, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 1999, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1900, 4, 'House near Blueberry', 0, 0, 0, 60000, 0, 0, 747.13, 278.17, 27.22, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 2000, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1901, 4, 'House near Blueberry', 0, 0, 0, 60000, 0, 0, 748.16, 257.11, 27.09, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 2001, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1902, 4, 'Trailer near Blueberry', 0, 0, 0, 15000, 1, 0, 748.43, 350.9, 20.59, 0, 0, 0, 0, -1, 244.41, 305.03, 999.15, 0, 1, 2002, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1903, 4, 'Trailer near Blueberry', 0, 0, 0, 15000, 0, 0, 808.07, 372.29, 19.45, 0, 0, 0, 0, -1, 244.41, 305.03, 999.15, 0, 1, 2003, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1904, 4, 'Trailer near Blueberry', 0, 0, 0, 15000, 500, 0, 783.17, 377.56, 21.3, 0, 0, 0, 0, -1, 244.41, 305.03, 999.15, 0, 1, 2004, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1905, 4, 'Trailer near Blueberry', 0, 0, 0, 15000, 5000, 0, 751.72, 375.22, 23.37, 0, 0, 0, 0, -1, 244.41, 305.03, 999.15, 0, 1, 2005, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1906, 4, 'House near Blueberry', 0, 0, 0, 60000, 0, 0, 783.88, 352.59, 19.59, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 2006, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1907, 4, 'House near Blueberry', 0, 0, 0, 60000, 0, 0, 805.33, 358.37, 19.76, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 2007, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1908, 4, 'House near Blueberry', 0, 0, 0, 60000, 0, 0, 758.92, 375.02, 23.39, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 2008, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1909, 4, 'House near Blueberry', 0, 0, 0, 60000, 0, 0, 772.92, 348.27, 20.15, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 2009, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1910, 4, 'Farm', 0, 0, 0, 75000, 0, 0, -1061.35, -1205.56, 129.76, 0, 0, 0, 0, -1, 2317.82, -1024.75, 1050.21, 0, 9, 2010, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1911, 4, 'Shack', 0, 0, 0, 75000, 0, 0, 1566.6, 23.26, 24.16, 0, 0, 0, 0, -1, 422.57, 2536.12, 10, 0, 10, 2011, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1912, 4, 'Ranch', 0, 0, 0, 25000, 0, 0, 870.4, -24.92, 63.99, 0, 0, 0, 0, -1, 422.29, 2536.68, 10, 0, 10, 2012, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1913, 4, 'Shack', 0, 0, 0, 1000000, 0, 0, -1051.73, 1549.97, 33.44, 0, 0, 0, 0, -1, 422.29, 2536.68, 10, 0, 10, 2013, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1914, 1, 'Apartments', 0, 0, 0, 0, 5000, 0, 1108.48, -606.32, 16.53, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2014, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1915, 1, 'Apartments', 0, 0, 0, 0, 5000, 0, 1098.4, -606.33, 16.53, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2015, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1916, 1, 'Apartments', 0, 0, 0, 0, 5000, 0, 1088.51, -606.33, 16.53, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2016, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1917, 1, 'Apartments', 0, 0, 0, 0, 5000, 0, 1078.4, -606.33, 16.53, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2017, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1918, 1, 'Apartments', 0, 0, 0, 0, 5000, 0, 1068.39, -606.33, 16.53, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2018, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1919, 1, 'Apartments', 0, 0, 0, 0, 5000, 0, 1113.51, -556.32, 17.19, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2019, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1920, 1, 'Apartments', 0, 0, 0, 0, 5000, 0, 1113.51, -546.2, 18.19, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2020, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1921, 1, 'Apartments', 0, 0, 0, 0, 5000, 0, 1113.51, -536.26, 19.18, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2021, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1922, 1, 'Apartments', 0, 0, 0, 0, 5000, 0, 1108.68, -516.08, 20.73, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2022, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1923, 1, 'Apartments', 0, 0, 0, 0, 5000, 0, 1098.55, -516.09, 19.74, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2023, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1924, 1, 'Apartments', 0, 0, 0, 0, 5000, 0, 1088.67, -516.08, 18.74, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2024, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1925, 1, 'Apartments', 0, 0, 0, 0, 5000, 0, 1078.69, -516.09, 17.74, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2025, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1926, 1, 'Apartments', 0, 0, 0, 0, 5000, 0, 1068.6, -516.09, 16.74, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2026, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1927, 1, 'Apartments', 0, 0, 0, 0, 5000, 0, 1113.45, -481.08, 21.58, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2027, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1928, 1, 'Apartments', 0, 0, 0, 0, 5000, 0, 1113.45, -466.16, 21.56, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2028, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1929, 1, 'Apartments', 0, 0, 0, 0, 5000, 0, 1113.45, -461.01, 21.56, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2029, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1930, 1, 'Apartments', 0, 0, 0, 0, 5000, 0, 1113.45, -446.14, 21.56, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2030, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1931, 1, 'Apartments', 0, 0, 0, 0, 5000, 0, 1113.45, -441.12, 21.57, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2031, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1932, 1, 'Apartments', 0, 0, 0, 0, 5000, 0, 1140.85, -485.21, 20.48, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2032, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1933, 1, 'Apartments', 0, 0, 0, 0, 5000, 0, 1150.99, -485.21, 21.49, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2033, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1934, 1, 'Apartments', 0, 0, 0, 0, 5000, 0, 1160.85, -485.21, 22.48, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2034, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1935, 1, 'Apartments', 0, 0, 0, 0, 5000, 0, 1170.93, -485.21, 23.49, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2035, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1936, 1, 'Apartments', 0, 0, 0, 0, 5000, 0, 1181.01, -485.21, 24.5, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2036, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1937, 1, 'Apartments', 0, 0, 0, 0, 5000, 0, 1207.81, -556.04, 22.27, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2037, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1938, 1, 'Apartments', 0, 0, 0, 0, 5000, 0, 1207.81, -546.03, 23.27, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2038, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1939, 1, 'Apartments', 0, 0, 0, 0, 5000, 0, 1207.8, -536.01, 24.25, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2039, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1940, 1, 'Apartments', 0, 0, 0, 0, 5000, 0, 1208.62, -515.88, 26.84, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2040, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1941, 1, 'Apartments', 0, 0, 0, 0, 5000, 0, 1218.7, -515.88, 27.84, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2041, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1942, 1, 'Apartments', 0, 0, 0, 0, 5000, 0, 1228.62, -515.88, 28.84, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2042, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1943, 1, 'Apartments', 0, 0, 0, 0, 5000, 0, 1238.57, -515.88, 29.83, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2043, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1944, 1, 'Apartments', 0, 0, 0, 0, 5000, 0, 1248.61, -515.88, 30.82, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2044, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1945, 1, 'Apartments', 0, 0, 0, 0, 5000, 0, 1210.81, -485.21, 25.52, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2045, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1946, 1, 'Apartments', 0, 0, 0, 0, 5000, 0, 1220.87, -485.21, 26.58, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2046, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1947, 1, 'Apartments', 0, 0, 0, 0, 5000, 0, 1230.72, -485.21, 27.57, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2047, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1948, 1, 'Apartments', 0, 0, 0, 0, 5000, 0, 1240.87, -485.21, 28.58, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2048, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1949, 1, 'Apartments', 0, 0, 0, 0, 5000, 0, 1250.85, -485.21, 29.58, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2049, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1950, 1, 'Apartments', 0, 0, 0, 0, 5000, 0, 1260.8, -484.17, 31.06, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2050, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1951, 1, 'Apartments', 0, 0, 0, 0, 5000, 0, 1270.66, -484.16, 33, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2051, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1952, 1, 'Apartments', 0, 0, 0, 0, 5000, 0, 1280.93, -484.16, 35.03, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2052, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1953, 1, 'Apartments', 0, 0, 0, 0, 5000, 0, 1290.9, -484.17, 36.99, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2053, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1954, 1, 'Apartments', 0, 0, 0, 0, 5000, 0, 1300.93, -484.16, 38.97, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2054, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1955, 1, 'Apartments', 0, 0, 0, 0, 5000, 0, 1388.03, -436.17, 51.43, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2055, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1956, 1, 'Apartments', 0, 0, 0, 0, 5000, 0, 1388.03, -426.17, 51.43, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2056, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1957, 1, 'Apartments', 0, 0, 0, 0, 5000, 0, 1388.03, -416.24, 51.43, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2057, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1958, 1, 'Apartments', 0, 0, 0, 0, 5000, 0, 1388.09, -408.74, 51.58, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2058, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1959, 1, 'Apartments', 0, 0, 0, 0, 5000, 0, 1388.09, -398.62, 51.58, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2059, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1960, 1, 'Apartments', 0, 0, 0, 0, 5000, 0, 1388.01, -386.14, 51.17, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2060, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1961, 1, 'Apartments', 0, 0, 0, 0, 5000, 0, 1388.02, -376.26, 51.17, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2061, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1962, 1, 'Apartments', 0, 0, 0, 0, 5000, 0, 1388.02, -366.29, 51.17, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2062, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1963, 1, 'Apartments', 0, 0, 0, 0, 5000, 0, 1388.1, -358.71, 51.61, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2063, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1964, 1, 'Apartments', 0, 0, 0, 0, 5000, 0, 1388.03, -346.21, 51.2, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2064, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1965, 1, 'Apartments', 0, 0, 0, 0, 5000, 0, 1388.03, -336.23, 51.2, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2065, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1966, 1, 'Apartments', 0, 0, 0, 0, 5000, 0, 1388.03, -326.23, 51.2, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2066, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1967, 1, 'Apartments', 0, 0, 0, 0, 5000, 0, 1388.11, -318.79, 51.55, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2067, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1968, 1, 'Apartments', 0, 0, 0, 0, 5000, 0, 1388.11, -308.72, 51.55, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2068, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1969, 1, 'Apartments', 0, 0, 0, 0, 5000, 0, 1388.1, -298.72, 51.55, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2069, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1970, 1, 'Apartments', 0, 0, 0, 0, 5000, 0, 1347.55, -293.39, 48.7, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2070, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1971, 1, 'Apartments', 0, 0, 0, 0, 5000, 0, 1337.53, -293.39, 46.64, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2071, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1972, 1, 'Apartments', 0, 0, 0, 0, 5000, 0, 1327.53, -293.39, 44.59, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2072, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1973, 1, 'Apartments', 0, 0, 0, 0, 5000, 0, 1317.63, -293.39, 42.56, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2073, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1974, 1, 'Apartments', 0, 0, 0, 0, 5000, 0, 1351.08, -274.15, 49.43, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2074, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1975, 1, 'Apartments', 0, 0, 0, 0, 5000, 0, 1340.99, -274.15, 47.36, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2075, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1976, 1, 'Apartments', 0, 0, 0, 0, 5000, 0, 1330.87, -274.16, 45.28, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2076, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1977, 1, 'Apartments', 0, 0, 0, 0, 5000, 0, 1320.77, -274.16, 43.2, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2077, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1978, 1, 'Apartments', 0, 0, 0, 0, 5000, 0, 1310.89, -274.16, 41.17, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2078, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1979, 1, 'Apartments', 0, 0, 0, 0, 5000, 0, 1300.94, -274.17, 39.16, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2079, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1980, 1, 'Apartments', 0, 0, 0, 0, 5000, 0, 1290.84, -274.17, 37.14, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2080, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1981, 1, 'Apartments', 0, 0, 0, 0, 5000, 0, 1280.85, -274.18, 35.14, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2081, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1982, 1, 'Apartments', 0, 0, 0, 0, 5000, 0, 1270.73, -274.17, 33.12, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2082, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1983, 1, 'Apartments', 0, 0, 0, 0, 5000, 0, 1260.86, -274.19, 31.14, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2083, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1984, 1, 'Apartments', 0, 0, 0, 0, 5000, 0, 1250.9, -274.2, 29.64, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2084, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1985, 1, 'Apartments', 0, 0, 0, 0, 5000, 0, 1240.84, -274.2, 28.63, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2085, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1986, 1, 'Apartments', 0, 0, 0, 0, 5000, 0, 1230.75, -274.2, 27.62, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2086, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1987, 1, 'Apartments', 0, 0, 0, 0, 5000, 0, 1220.83, -274.2, 26.63, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2087, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1988, 1, 'Apartments', 0, 0, 0, 0, 5000, 0, 1210.83, -274.21, 25.54, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2088, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1989, 1, 'Apartments', 0, 0, 0, 0, 5000, 0, 1210.82, -293.45, 25.54, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2089, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1990, 1, 'Apartments', 0, 0, 0, 0, 5000, 0, 1220.79, -293.45, 26.63, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2090, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1991, 1, 'Apartments', 0, 0, 0, 0, 5000, 0, 1230.84, -293.45, 27.63, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2091, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1992, 1, 'Apartments', 0, 0, 0, 0, 5000, 0, 1240.67, -293.43, 28.61, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2092, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1993, 1, 'Apartments', 0, 0, 0, 0, 5000, 0, 1250.84, -293.45, 29.63, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2093, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1994, 1, 'Apartments', 0, 0, 0, 0, 5000, 0, 1180.91, -293.45, 24.49, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2094, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1995, 1, 'Apartments', 0, 0, 0, 0, 5000, 0, 1170.65, -293.45, 23.46, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2095, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1996, 1, 'Apartments', 0, 0, 0, 0, 5000, 0, 1160.82, -293.45, 22.48, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2096, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1997, 1, 'Apartments', 0, 0, 0, 0, 5000, 0, 1150.77, -293.45, 21.47, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2097, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1998, 1, 'Apartments', 0, 0, 0, 0, 5000, 0, 1140.81, -293.45, 20.48, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2098, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1999, 1, 'Apartments', 0, 0, 0, 0, 5000, 0, 1111.69, -281.12, 21.74, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2099, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (2000, 1, 'Apartments', 0, 0, 0, 0, 5000, 0, 1111.69, -291.18, 21.74, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2100, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (2001, 1, 'Apartments', 0, 0, 0, 0, 5000, 0, 1111.69, -301.08, 21.74, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2101, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (2002, 1, 'Apartments', 0, 0, 0, 0, 5000, 0, 1113.44, -311.09, 21.55, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2102, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (2003, 1, 'Apartments', 0, 0, 0, 0, 5000, 0, 1113.44, -321.12, 21.55, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2103, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (2004, 1, 'Apartments', 0, 0, 0, 0, 5000, 0, 1113.44, -331.2, 21.55, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2104, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (2005, 1, 'Apartments', 0, 0, 0, 0, 5000, 0, 1113.44, -341.18, 21.55, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2105, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (2006, 1, 'Apartments', 0, 0, 0, 0, 5000, 0, 1113.44, -351.11, 21.55, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2106, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (2007, 1, 'Apartments', 0, 0, 0, 0, 5000, 0, 1138.68, -366.12, 21.75, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2107, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (2008, 1, 'Apartments', 0, 0, 0, 0, 5000, 0, 1148.57, -366.12, 22.75, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2108, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (2009, 1, 'Apartments', 0, 0, 0, 0, 5000, 0, 1158.71, -366.12, 23.75, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2109, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (2010, 1, 'Apartments', 0, 0, 0, 0, 5000, 0, 1168.57, -366.12, 24.75, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2110, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (2011, 1, 'Apartments', 0, 0, 0, 0, 5000, 0, 1178.72, -366.12, 25.74, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2111, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (2012, 1, 'Apartments', 0, 0, 0, 0, 5000, 0, 1180.97, -334.19, 24.49, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2112, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (2013, 1, 'Apartments', 0, 0, 0, 0, 5000, 0, 1170.78, -334.19, 23.47, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2113, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (2014, 1, 'Apartments', 0, 0, 0, 0, 5000, 0, 1160.74, -334.19, 22.47, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2114, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (2015, 1, 'Apartments', 0, 0, 0, 0, 5000, 0, 1150.78, -334.19, 21.47, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2115, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (2016, 1, 'Apartments', 0, 0, 0, 0, 5000, 0, 1140.75, -334.19, 20.47, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2116, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (2017, 1, 'Apartments', 0, 0, 0, 0, 5000, 0, 1116.16, -268.95, 19.5, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2117, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (2018, 1, 'Apartments', 0, 0, 0, 0, 5000, 0, 1116.16, -258.65, 18.5, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2118, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (2019, 1, 'Apartments', 0, 0, 0, 0, 5000, 0, 1116.16, -248.91, 17.56, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2119, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (2020, 1, 'Apartments', 0, 0, 0, 0, 5000, 0, 1116.16, -238.83, 16.58, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2120, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (2021, 1, 'Apartments', 0, 0, 0, 0, 5000, 0, 1116.16, -228.77, 15.51, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2121, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (2022, 1, 'Apartments', 0, 0, 0, 0, 5000, 0, 1116.16, -188.85, 14.48, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2122, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (2023, 1, 'Apartments', 0, 0, 0, 0, 5000, 0, 1116.16, -178.76, 13.47, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2123, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (2024, 1, 'Apartments', 0, 0, 0, 0, 5000, 0, 1116.16, -168.88, 12.48, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2124, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (2025, 1, 'Apartments', 0, 0, 0, 0, 5000, 0, 1116.16, -158.82, 11.47, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2125, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (2026, 1, 'Apartments', 0, 0, 0, 0, 5000, 0, 1116.17, -148.87, 10.48, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2126, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (2027, 1, 'Apartments', 0, 0, 0, 0, 5000, 0, 1138.03, -146.68, 11.71, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2127, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (2028, 1, 'Apartments', 0, 0, 0, 0, 5000, 0, 1138.03, -156.64, 12.71, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2128, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (2029, 1, 'Apartments', 0, 0, 0, 0, 5000, 0, 1138.03, -166.69, 13.71, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2129, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (2030, 1, 'Apartments', 0, 0, 0, 0, 5000, 0, 1138.02, -176.73, 14.71, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2130, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (2031, 1, 'Apartments', 0, 0, 0, 0, 5000, 0, 1138.02, -186.72, 15.7, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2131, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (2032, 1, 'Apartments', 0, 0, 0, 0, 5000, 0, 1068.09, -186.55, 6.56, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2132, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (2033, 1, 'Apartments', 0, 0, 0, 0, 5000, 0, 1068.1, -176.41, 6.56, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2133, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (2034, 1, 'Apartments', 0, 0, 0, 0, 5000, 0, 1068.1, -166.48, 6.56, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2134, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (2035, 1, 'Apartments', 0, 0, 0, 0, 5000, 0, 1068.1, -156.65, 6.56, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2135, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (2036, 1, 'Apartments', 0, 0, 0, 0, 5000, 0, 1068.1, -146.44, 6.56, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2136, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (2037, 1, 'Apartments', 0, 0, 0, 0, 5000, 0, 1068.07, -246.55, 6.69, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2137, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (2038, 1, 'Apartments', 0, 0, 0, 0, 5000, 0, 1068.07, -256.65, 7.68, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2138, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (2039, 1, 'Apartments', 0, 0, 0, 0, 5000, 0, 1068.03, -296.67, 11.72, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2139, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (2040, 1, 'Apartments', 0, 0, 0, 0, 5000, 0, 1068.03, -306.61, 12.72, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2140, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (2041, 1, 'Apartments', 0, 0, 0, 0, 5000, 0, 1068.03, -316.62, 13.72, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2141, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (2042, 1, 'Apartments', 0, 0, 0, 0, 5000, 0, 1068.02, -326.75, 14.72, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2142, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (2043, 1, 'Apartments', 0, 0, 0, 0, 5000, 0, 1068.02, -336.54, 15.71, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2143, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (2044, 1, 'Apartments', 0, 0, 0, 0, 5000, 0, 894.07, -464.94, 14.97, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2144, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (2045, 1, 'Apartments', 0, 0, 0, 0, 5000, 0, 860.88, -463.47, 14.97, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2145, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (2046, 1, 'Apartments', 0, 0, 0, 0, 5000, 0, 845.35, -400.24, 14.97, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2146, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (2047, 1, 'Apartments', 0, 0, 0, 0, 5000, 0, 845.29, -368.99, 12.6, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2147, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (2048, 1, 'Apartments', 0, 0, 0, 0, 5000, 0, 845.29, -350.17, 10.86, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2148, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (2049, 1, 'Apartments', 0, 0, 0, 0, 5000, 0, 845.28, -325.24, 8.37, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2149, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (2050, 1, 'Safehouse', 0, 0, 0, 0, 0, 0, 890.41, -308.33, 8.72, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2150, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (2051, 1, 'Projects', 0, 0, 0, 0, 0, 0, 944.05, -272.57, 4.94, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2151, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (2052, 1, 'Apartments', 0, 0, 0, 0, 5000, 0, 942.95, -348.47, 9.97, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2152, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (2053, 1, 'Apartments', 0, 0, 0, 0, 5000, 0, 867.21, -671.82, 14.97, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2153, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (2054, 1, 'Apartments', 0, 0, 0, 0, 5000, 0, 875.12, -671.3, 14.97, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2154, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (2055, 1, 'Apartments', 0, 0, 0, 0, 5000, 0, 872.96, -659.17, 14.97, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2155, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (2056, 1, 'Apartments', 0, 0, 0, 0, 5000, 0, 882.49, -708.41, 14.97, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2156, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (2057, 1, 'Apartments', 0, 0, 0, 0, 5000, 0, 854.34, -689.18, 14.97, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2157, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (2058, 1, 'Apartments', 0, 0, 0, 0, 5000, 0, 854.23, -759.09, 14.97, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2158, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (2059, 1, 'Apartments', 0, 0, 0, 0, 5000, 0, -119.92, -1379.99, 26.17, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2159, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (2060, 1, 'Apartments', 0, 0, 0, 0, 5000, 0, -129.3, -1380, 26.17, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2160, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (2061, 1, 'Apartments', 0, 0, 0, 0, 5000, 0, -134.95, -1389.72, 26.33, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2161, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (2062, 1, 'Apartments', 0, 0, 0, 0, 5000, 0, -149.13, -1382.05, 26.17, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2162, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (2063, 1, 'Apartments', 0, 0, 0, 0, 5000, 0, -140.61, -1385.4, 26.36, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2163, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (2064, 1, 'Apartments', 0, 0, 0, 0, 5000, 0, -163.41, -1386.55, 26.34, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2164, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (2065, 1, 'Apartments', 0, 0, 0, 0, 5000, 0, -153.9, -1382.77, 26.17, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2165, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (2066, 1, 'Apartments', 0, 0, 0, 0, 5000, 0, -168.32, -1382.13, 26.17, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2166, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (2067, 1, 'Apartments', 0, 0, 0, 0, 5000, 0, -176.51, -1384.51, 26.36, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2167, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (2068, 1, 'Apartments', 0, 0, 0, 0, 5000, 0, -185.88, -1380.46, 26.17, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2168, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (2069, 1, 'Apartments', 0, 0, 0, 0, 5000, 0, -157.18, -1476.82, 26.19, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2169, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (2070, 1, 'Apartments', 0, 0, 0, 0, 5000, 0, -163.18, -1462.64, 26.19, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2170, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (2071, 1, 'Apartments', 0, 0, 0, 0, 5000, 0, -168.42, -1449.97, 26.19, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2171, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (2072, 1, 'Apartments', 0, 0, 0, 0, 5000, 0, -149.72, -1489.55, 26.19, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2172, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (2073, 1, 'Apartments', 0, 0, 0, 0, 5000, 0, -124.5, -1519.6, 26.19, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2173, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (2074, 1, 'Apartments', 0, 0, 0, 0, 5000, 0, -103.41, -1540.97, 26.19, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2174, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (2075, 1, 'Apartments', 0, 0, 0, 0, 5000, 0, -73.55, -1564.37, 26.02, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2175, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (2076, 1, 'Apartments', 0, 0, 0, 0, 5000, 0, -50.96, -1575.5, 26.02, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2176, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (2077, 1, 'Apartments', 0, 0, 0, 0, 5000, 0, -15.36, -1587.86, 26.21, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2177, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (2078, 1, 'Apartments', 0, 0, 0, 0, 5000, 0, 15.51, -1590.52, 26.19, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2178, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (2079, 1, 'Apartments', 0, 0, 0, 0, 5000, 0, 125.07, -1489.57, 26.17, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2179, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (2080, 1, 'Large House', 0, 0, 0, 100000, 0, 0, -742.4, 286.64, 55.29, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2180, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (2081, 1, 'Large House', 0, 0, 0, 100000, 0, 0, -677.95, 307.89, 59.85, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2181, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (2082, 1, 'Large House', 0, 0, 0, 100000, 0, 0, -554.83, 309.9, 70.8, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2182, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (2083, 1, 'Large House', 0, 0, 0, 100000, 0, 0, -491.27, 286.25, 74.15, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2183, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (2084, 1, 'Mansion', 0, 0, 0, 250000, 0, 0, -380.6, 299.86, 63.92, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2184, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (2085, 1, 'Large House', 0, 0, 0, 100000, 0, 0, -832.62, 294.62, 41.48, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2185, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (2086, 1, 'Projects', 0, 0, 0, 0, 0, 0, -458.33, -46.19, 3.93, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2186, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (2087, 1, 'Projects', 0, 0, 0, 0, 0, 0, -501.08, -64.36, 3.93, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2187, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (2088, 1, 'Projects', 0, 0, 0, 0, 0, 0, -521.21, -65.17, 3.93, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2188, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (2089, 1, 'Projects', 0, 0, 0, 0, 0, 0, -459.48, -25.3, 3.93, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2189, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (2090, 1, 'Projects', 0, 0, 0, 0, 0, 0, -468.29, 52.11, 3.93, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2190, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (2091, 1, 'Projects', 0, 0, 0, 0, 0, 0, -488.71, 51.2, 3.93, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2191, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (2092, 1, 'Projects', 0, 0, 0, 0, 0, 0, -546.12, 31.71, 3.93, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2192, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (2093, 1, 'Projects', 0, 0, 0, 0, 0, 0, -545.19, 11.49, 3.93, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2193, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (2094, 2, 'Apartments', 0, 0, 0, 0, 0, 0, -789.69, -1212.64, 11.1, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2194, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (2095, 2, 'Apartments', 0, 0, 0, 0, 0, 0, -797.15, -1213.46, 11.1, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2195, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (2096, 2, 'Apartments', 0, 0, 0, 0, 0, 0, -797.43, -1217.4, 11.1, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2196, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (2097, 2, 'Apartments', 0, 0, 0, 0, 0, 0, -803.89, -1202.53, 11.1, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2197, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (2098, 2, 'Apartments', 0, 0, 0, 0, 0, 0, -805.51, -1197.92, 11.1, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2198, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (2099, 2, 'Apartments', 0, 0, 0, 0, 0, 0, -811.25, -1181.36, 11.1, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2199, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (2100, 2, 'Apartments', 0, 0, 0, 0, 0, 0, -810.78, -1177.46, 11.1, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2200, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (2101, 2, 'Apartments', 0, 0, 0, 0, 0, 0, -803.38, -1176.86, 11.1, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2201, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (2102, 2, 'Apartments', 0, 0, 0, 0, 0, 0, -801.07, -1182.84, 11.1, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2202, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (2103, 2, 'Apartments', 0, 0, 0, 0, 0, 0, -807.4, -1187.39, 11.11, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2203, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (2104, 2, 'Apartments', 0, 0, 0, 0, 0, 0, -817.18, -1166.56, 11.1, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2204, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (2105, 2, 'Apartments', 0, 0, 0, 0, 0, 0, -818.59, -1161.96, 11.1, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2205, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (2106, 2, 'Apartments', 0, 0, 0, 0, 0, 0, -813.84, -1147.13, 11.1, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2206, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (2107, 2, 'Apartments', 0, 0, 0, 0, 0, 0, -819.99, -1151.34, 11.11, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2207, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (2108, 2, 'Apartments', 0, 0, 0, 0, 0, 0, -823.63, -1145.27, 11.11, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2208, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (2109, 2, 'Apartments', 0, 0, 0, 0, 0, 0, -823.28, -1141.7, 11.11, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2209, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (2110, 2, 'Apartments', 0, 0, 0, 0, 0, 0, -815.79, -1141.42, 11.1, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2210, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (2111, 2, 'Apartments', 0, 0, 0, 0, 0, 0, -828.82, -1131.07, 11.11, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2211, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (2112, 2, 'Apartments', 0, 0, 0, 0, 0, 0, -830.02, -1126.36, 11.11, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2212, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (2113, 2, 'Apartments', 0, 0, 0, 0, 0, 0, -834.29, -1109.49, 11.11, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2213, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (2114, 2, 'Apartments', 0, 0, 0, 0, 0, 0, -833.38, -1106.25, 11.11, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2214, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (2115, 2, 'Apartments', 0, 0, 0, 0, 0, 0, -831, -1115.65, 11.11, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2215, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (2116, 2, 'Apartments', 0, 0, 0, 0, 0, 0, -824.42, -1111.64, 11.1, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2216, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (2117, 2, 'Apartments', 0, 0, 0, 0, 0, 0, -825.86, -1106.34, 11.11, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2217, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (2118, 2, 'Apartments', 0, 0, 0, 0, 0, 0, -838.46, -1095.65, 11.11, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2218, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (2119, 2, 'Apartments', 0, 0, 0, 0, 0, 0, -839.43, -1090.78, 11.11, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2219, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (2120, 2, 'Apartments', 0, 0, 0, 0, 0, 0, -832.84, -1077.57, 11.1, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2220, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (2121, 2, 'Apartments', 0, 0, 0, 0, 0, 0, -839.62, -1080.14, 11.11, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2221, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (2122, 2, 'Apartments', 0, 0, 0, 0, 0, 0, -842.75, -1074.18, 11.1, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2222, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (2123, 2, 'Apartments', 0, 0, 0, 0, 0, 0, -841.66, -1071.16, 11.1, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2223, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (2124, 2, 'Apartments', 0, 0, 0, 0, 0, 0, -834.22, -1071.72, 11.1, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2224, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (2125, 2, 'Apartments', 0, 0, 0, 0, 0, 0, -846.31, -1034.93, 12.48, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2225, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (2126, 2, 'Apartments', 0, 0, 0, 0, 0, 0, -847.9, -1018, 12.48, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2226, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (2127, 2, 'Apartments', 0, 0, 0, 0, 0, 0, -848.65, -1001.6, 12.48, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2227, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (2128, 2, 'Apartments', 0, 0, 0, 0, 0, 0, -839.55, -988.95, 11.1, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2228, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (2129, 2, 'Apartments', 0, 0, 0, 0, 0, 0, -839.31, -981.23, 11.1, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2229, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (2130, 2, 'Apartments', 0, 0, 0, 0, 0, 0, -850.77, -968.19, 11.1, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2230, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (2131, 2, 'Apartments', 0, 0, 0, 0, 0, 0, -849.29, -951.89, 11.1, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2231, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (2132, 2, 'Apartments', 0, 0, 0, 0, 0, 0, -833.4, -934.17, 11.1, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2232, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (2133, 2, 'Apartments', 0, 0, 0, 0, 0, 0, -834.59, -940.38, 11.1, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2233, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (2134, 2, 'Apartments', 0, 0, 0, 0, 0, 0, -844.7, -769.72, 12.66, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2234, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (2135, 2, 'Apartments', 0, 0, 0, 0, 0, 0, -845.79, -764.26, 12.66, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2235, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (2136, 2, 'Apartment', 0, 0, 0, 0, 0, 0, -1192.55, -504.65, 10.8, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2236, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (2137, 2, 'Apartment', 0, 0, 0, 0, 0, 0, -1193.41, -505.95, 13.8, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2237, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (2138, 2, 'Apartment', 0, 0, 0, 0, 0, 0, -1190.01, -508.94, 10.9, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2238, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (2139, 2, 'Apartment', 0, 0, 0, 0, 0, 0, -1178.3, -475.48, 10.81, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2239, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (2140, 2, 'Apartment', 0, 0, 0, 0, 0, 0, -1177.23, -470.62, 10.76, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2240, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (2141, 2, 'Apartment', 0, 0, 0, 0, 0, 0, -1176.77, -475.23, 13.8, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2241, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (2142, 2, 'Medium House', 0, 0, 0, 0, 0, 0, -1182.65, -447.05, 11.71, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2242, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (2143, 2, 'Medium House', 0, 0, 0, 0, 0, 0, -1207.93, -477.02, 11.71, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2243, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (2144, 2, 'Apartment', 0, 0, 0, 0, 0, 0, -1215.94, -463.12, 10.74, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2244, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (2145, 2, 'Apartment', 0, 0, 0, 0, 0, 0, -1214.25, -459.01, 10.75, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2245, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (2146, 2, 'Apartment', 0, 0, 0, 0, 0, 0, -1215.79, -458.66, 13.8, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2246, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (2147, 2, 'Medium House', 0, 0, 0, 0, 0, 0, -1214.81, -434.73, 11.71, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2247, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (2148, 2, 'Medium House', 0, 0, 0, 0, 0, 0, -1216.02, -414.29, 11.71, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2248, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (2149, 2, 'Apartment', 0, 0, 0, 0, 0, 0, -1220.18, -394.39, 10.82, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2249, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (2150, 2, 'Apartment', 0, 0, 0, 0, 0, 0, -1221.87, -398.81, 10.76, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2250, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (2151, 2, 'Apartment', 0, 0, 0, 0, 0, 0, -1221.73, -394.22, 13.8, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2251, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (2152, 2, 'Medium House', 0, 0, 0, 0, 0, 0, -1190.03, -392.43, 10.7, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2252, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (2153, 2, 'Apartment', 0, 0, 0, 0, 0, 0, -1195.05, -371.74, 10.92, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2253, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (2154, 2, 'Apartment', 0, 0, 0, 0, 0, 0, -1193.68, -367.1, 10.9, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2254, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (2155, 2, 'Apartment', 0, 0, 0, 0, 0, 0, -1193.5, -371.72, 14, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2255, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (2156, 2, 'Medium House', 0, 0, 0, 0, 0, 0, -1186.01, -420.01, 11.71, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2256, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (2157, 2, 'Apartment', 0, 0, 0, 0, 0, 0, -1164.05, -360.16, 13.8, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2257, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (2158, 2, 'Apartment', 0, 0, 0, 0, 0, 0, -1164.28, -358.39, 10.88, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2258, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (2159, 2, 'Apartment', 0, 0, 0, 0, 0, 0, -1159.66, -359.92, 10.81, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2259, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (2160, 2, 'Large House', 0, 0, 0, 0, 0, 0, -1131.96, -356.51, 15.04, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2260, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (2161, 2, 'Medium House', 0, 0, 0, 0, 0, 0, -1118.77, -424.2, 11.52, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2261, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (2162, 2, 'Apartment', 0, 0, 0, 0, 0, 0, -1120.06, -394.38, 10.71, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2262, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (2163, 2, 'Apartment', 0, 0, 0, 0, 0, 0, -1120.34, -389.87, 13.8, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2263, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (2164, 2, 'Apartment', 0, 0, 0, 0, 0, 0, -1118.81, -389.63, 10.74, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2264, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (2165, 2, 'Small House', 0, 0, 0, 0, 0, 0, -1050.45, -55.8, 11.31, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2265, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (2166, 2, 'Small House', 0, 0, 0, 0, 0, 0, -1048.94, -63.38, 11.01, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2266, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (2167, 2, 'Small House', 0, 0, 0, 0, 0, 0, -1052.15, -76.78, 10.98, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2267, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (2168, 2, 'Small House', 0, 0, 0, 0, 0, 0, -1052.41, -92.23, 11.03, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2268, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (2169, 2, 'Small House', 0, 0, 0, 0, 0, 0, -1038.58, -110.44, 10.96, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2269, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (2170, 2, 'Small House', 0, 0, 0, 0, 0, 0, -1025.35, -109.01, 10.96, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2270, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (2171, 2, 'Small House', 0, 0, 0, 0, 0, 0, -1011.3, -108.9, 10.96, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2271, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (2172, 2, 'Small House', 0, 0, 0, 0, 0, 0, -969.03, -125.16, 11.59, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2272, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (2173, 2, 'Small House', 0, 0, 0, 0, 0, 0, -968.42, -141.69, 10.96, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2273, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (2174, 2, 'Small House', 0, 0, 0, 0, 0, 0, -968.32, -159.96, 10.94, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2274, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (2175, 2, 'Small House', 0, 0, 0, 0, 0, 0, -968.98, -175.81, 11.59, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2275, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (2176, 2, 'Small House', 0, 0, 0, 0, 0, 0, -968.93, -194.17, 11.59, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2276, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (2177, 2, 'Small House', 0, 0, 0, 0, 0, 0, -971.47, -208.9, 11.01, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2277, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (2178, 2, 'Small House', 0, 0, 0, 0, 0, 0, -970.67, -225.57, 10.94, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2278, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (2179, 2, 'Small House', 0, 0, 0, 0, 0, 0, -970.98, -243.26, 10.94, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2279, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (2180, 2, 'Apartment', 0, 0, 0, 0, 0, 0, -998.03, -237.5, 10.95, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2280, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (2181, 2, 'Apartment', 0, 0, 0, 0, 0, 0, -999.61, -241.49, 10.87, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2281, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (2182, 2, 'Apartment', 0, 0, 0, 0, 0, 0, -1000.23, -237.58, 13.56, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2282, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (2183, 2, 'Small House', 0, 0, 0, 0, 0, 0, -1001.8, -220.75, 10.93, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2283, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (2184, 2, 'Small House', 0, 0, 0, 0, 0, 0, -1002.15, -209.04, 11.31, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2284, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (2185, 2, 'Small House', 0, 0, 0, 0, 0, 0, -1003.66, -200.93, 11.01, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2285, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (2186, 2, 'Small House', 0, 0, 0, 0, 0, 0, -1000.5, -187.95, 10.96, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2286, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (2187, 2, 'Small House', 0, 0, 0, 0, 0, 0, -1000.19, -171.7, 11.01, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2287, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (2188, 2, 'Small House', 0, 0, 0, 0, 0, 0, -1002.35, -151.92, 11.01, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2288, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (2189, 2, 'Small House', 0, 0, 0, 0, 0, 0, -968.98, -106.02, 11.59, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2289, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (2190, 2, 'Small House', 0, 0, 0, 0, 0, 0, -968.32, -90.14, 10.92, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2290, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (2191, 2, 'Small House', 0, 0, 0, 0, 0, 0, -998.54, -92.43, 11.01, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2291, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (2192, 2, 'Small House', 0, 0, 0, 0, 0, 0, -996.84, -77.86, 10.74, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2292, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (2193, 2, 'Small House', 0, 0, 0, 0, 0, 0, -996.71, -65.69, 10.93, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2293, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (2194, 2, 'Small House', 0, 0, 0, 0, 0, 0, -968.42, -72, 10.94, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2294, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (2195, 2, 'Small House', 0, 0, 0, 0, 0, 0, -969.9, -56.3, 10.94, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2295, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (2196, 2, 'Apartment', 0, 0, 0, 0, 0, 0, -997.37, -21.25, 10.75, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2296, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (2197, 2, 'Apartment', 0, 0, 0, 0, 0, 0, -995.38, -17.39, 10.73, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2297, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (2198, 2, 'Apartment', 0, 0, 0, 0, 0, 0, -997.56, -17.12, 13.56, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2298, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (2199, 2, 'Small House', 0, 0, 0, 0, 0, 0, -969.12, -40, 10.98, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2299, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (2200, 2, 'Small House', 0, 0, 0, 0, 0, 0, -968.81, -22.63, 10.91, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2300, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (2201, 2, 'Small House', 0, 0, 0, 0, 0, 0, -965.65, -6.91, 11.01, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2301, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (2202, 2, 'Small House', 0, 0, 0, 0, 0, 0, -967.16, 4.17, 11.31, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2302, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (2203, 2, 'Ghetto Shack', 0, 0, 0, 0, 0, 0, -979.66, 86.99, 10.12, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2303, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (2204, 2, 'Ghetto Shack', 0, 0, 0, 0, 0, 0, -985.78, 87.18, 10.15, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2304, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (2205, 2, 'Ghetto Shack', 0, 0, 0, 0, 0, 0, -993.11, 86.94, 10.17, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2305, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (2206, 2, 'Ghetto Shack', 0, 0, 0, 0, 0, 0, -1006.07, 87.25, 10.19, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2306, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (2207, 2, 'Ghetto Shack', 0, 0, 0, 0, 0, 0, -994, 105.07, 9.33, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2307, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (2208, 2, 'Ghetto Shack', 0, 0, 0, 0, 0, 0, -981.44, 105.09, 9.27, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2308, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (2209, 2, 'Ghetto Shack', 0, 0, 0, 0, 0, 0, -966.15, 104.86, 9.25, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2309, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (2210, 2, 'Ghetto Shack', 0, 0, 0, 0, 0, 0, -966.15, 111.28, 9.23, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2310, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (2211, 2, 'Ghetto Shack', 0, 0, 0, 0, 0, 0, -966.11, 120.72, 9.24, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2311, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (2212, 2, 'Ghetto Shack', 0, 0, 0, 0, 0, 0, -966.29, 127.41, 9.24, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2312, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (2213, 2, 'Ghetto Shack', 0, 0, 0, 0, 0, 0, -960.85, 87.13, 10.25, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2313, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (2214, 2, 'Ghetto Shack', 0, 0, 0, 0, 0, 0, -967.22, 87.06, 10.22, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2314, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (2215, 2, 'Ghetto Shack', 0, 0, 0, 0, 0, 0, -954.9, 87.18, 10.26, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2315, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (2216, 2, 'Ghetto Shack', 0, 0, 0, 0, 0, 0, -949.21, 86.33, 10.29, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2316, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (2217, 2, 'Ghetto Shack', 0, 0, 0, 0, 0, 0, -951.57, 136.68, 9.3, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2317, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (2218, 2, 'Ghetto Shack', 0, 0, 0, 0, 0, 0, -962.8, 146.1, 9.4, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2318, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (2219, 2, 'Ghetto Shack', 0, 0, 0, 0, 0, 0, -979.32, 143.39, 9.2, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2319, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (2220, 2, 'Ghetto Shack', 0, 0, 0, 0, 0, 0, -985.23, 143.57, 9.22, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2320, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (2221, 2, 'Ghetto Shack', 0, 0, 0, 0, 0, 0, -992.6, 143.34, 9.24, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2321, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (2222, 2, 'Ghetto Shack', 0, 0, 0, 0, 0, 0, -998.35, 143.68, 9.27, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2322, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (2223, 2, 'Ghetto Shack', 0, 0, 0, 0, 0, 0, -981.63, 131.18, 9.27, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2323, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (2224, 2, 'Ghetto Shack', 0, 0, 0, 0, 0, 0, -993.96, 123.36, 9.28, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2324, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (2225, 2, 'Apartment', 0, 0, 0, 0, 0, 0, -940.06, 201.21, 9.19, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2325, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (2226, 2, 'Apartment', 0, 0, 0, 0, 0, 0, -948.04, 201.21, 12.57, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2326, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (2227, 2, 'Apartment', 0, 0, 0, 0, 0, 0, -940.2, 201.22, 12.57, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2327, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (2228, 2, 'Apartment', 0, 0, 0, 0, 0, 0, -933.92, 209.09, 9.19, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2328, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (2229, 2, 'Apartment', 0, 0, 0, 0, 0, 0, -931.27, 233.34, 9.19, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2329, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (2230, 2, 'Apartment', 0, 0, 0, 0, 0, 0, -931.27, 233.3, 12.57, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2330, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (2231, 2, 'Apartment', 0, 0, 0, 0, 0, 0, -931.27, 247.23, 12.55, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2331, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (2232, 2, 'Apartment', 0, 0, 0, 0, 0, 0, -931.27, 240.95, 12.57, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2332, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (2233, 2, 'Apartment', 0, 0, 0, 0, 0, 0, -923.37, 227.09, 9.18, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2333, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (2234, 2, 'Mansion', 0, 0, 0, 0, 0, 0, -378.55, -556.1, 19.57, 0, 0, 0, 0, -1, -379.14, -551.65, 19.32, 0, 2, 100, 0, 0, 1); +/*!40000 ALTER TABLE `house_main` ENABLE KEYS */; + +-- Dumping structure for table gtac_main.idea_main +CREATE TABLE IF NOT EXISTS `idea_main` ( + `idea_id` int(11) NOT NULL AUTO_INCREMENT, + `idea_server` int(11) NOT NULL DEFAULT '0', + `idea_who_added` int(11) NOT NULL DEFAULT '0', + `idea_when_added` bigint(20) NOT NULL DEFAULT '0', + `idea_script_ver` varchar(16) NOT NULL DEFAULT '0.0', + `idea_pos_x` float NOT NULL DEFAULT '0', + `idea_pos_y` float NOT NULL DEFAULT '0', + `idea_pos_z` float NOT NULL DEFAULT '0', + `idea_rot_z` float NOT NULL DEFAULT '0', + `idea_message` varchar(256) NOT NULL DEFAULT '(No Message)', + `idea_svr_start` int(32) NOT NULL DEFAULT '0', + `idea_session` int(11) NOT NULL DEFAULT '0', + PRIMARY KEY (`idea_id`), + KEY `idea_server` (`idea_server`), + KEY `idea_who_added` (`idea_who_added`), + CONSTRAINT `fk_idea_server` FOREIGN KEY (`idea_server`) REFERENCES `svr_main` (`svr_id`) ON DELETE CASCADE ON UPDATE CASCADE, + CONSTRAINT `fk_idea_who_added` FOREIGN KEY (`idea_who_added`) REFERENCES `acct_main` (`acct_id`) ON DELETE CASCADE ON UPDATE CASCADE +) ENGINE=InnoDB AUTO_INCREMENT=278 DEFAULT CHARSET=latin1 COMMENT='User Submitted Ideas'; + +-- Dumping data for table gtac_main.idea_main: ~69 rows (approximately) +/*!40000 ALTER TABLE `idea_main` DISABLE KEYS */; +INSERT INTO `idea_main` (`idea_id`, `idea_server`, `idea_who_added`, `idea_when_added`, `idea_script_ver`, `idea_pos_x`, `idea_pos_y`, `idea_pos_z`, `idea_rot_z`, `idea_message`, `idea_svr_start`, `idea_session`) VALUES + (1, 2, 1, 1609756308, '1.0', 159.124, -437.974, 10.6419, 1.63332, 'loop to set wanted level to 0', 1609756265, 0); +INSERT INTO `idea_main` (`idea_id`, `idea_server`, `idea_who_added`, `idea_when_added`, `idea_script_ver`, `idea_pos_x`, `idea_pos_y`, `idea_pos_z`, `idea_rot_z`, `idea_message`, `idea_svr_start`, `idea_session`) VALUES + (4, 4, 1, 1608262318, '1.0', 2258.62, 2463.1, 10.8203, -0.5, 'Exclude LVPD garage from snow', 2147483647, 0); +INSERT INTO `idea_main` (`idea_id`, `idea_server`, `idea_who_added`, `idea_when_added`, `idea_script_ver`, `idea_pos_x`, `idea_pos_y`, `idea_pos_z`, `idea_rot_z`, `idea_message`, `idea_svr_start`, `idea_session`) VALUES + (5, 4, 1, 1608262432, '1.0', 2179.19, 1766.52, 56.5364, 1.3, 'Exclude LV parking garages from snow', 2147483647, 0); +INSERT INTO `idea_main` (`idea_id`, `idea_server`, `idea_who_added`, `idea_when_added`, `idea_script_ver`, `idea_pos_x`, `idea_pos_y`, `idea_pos_z`, `idea_rot_z`, `idea_message`, `idea_svr_start`, `idea_session`) VALUES + (6, 4, 1, 1608262457, '1.0', 1858.49, 1800.93, 36.5273, 0.5, 'Exclude LV parking garage ramp from snow', 2147483647, 0); +INSERT INTO `idea_main` (`idea_id`, `idea_server`, `idea_who_added`, `idea_when_added`, `idea_script_ver`, `idea_pos_x`, `idea_pos_y`, `idea_pos_z`, `idea_rot_z`, `idea_message`, `idea_svr_start`, `idea_session`) VALUES + (7, 4, 1, 1608262813, '1.0', 1192.94, -1321.7, 13.3984, -0.2, 'Add hospital fees', 2147483647, 0); +INSERT INTO `idea_main` (`idea_id`, `idea_server`, `idea_who_added`, `idea_when_added`, `idea_script_ver`, `idea_pos_x`, `idea_pos_y`, `idea_pos_z`, `idea_rot_z`, `idea_message`, `idea_svr_start`, `idea_session`) VALUES + (10, 4, 1, 1608264374, '1.0', -1983.54, 163.581, 27.6875, 1.02, 'Admin report system', 2147483647, 0); +INSERT INTO `idea_main` (`idea_id`, `idea_server`, `idea_who_added`, `idea_when_added`, `idea_script_ver`, `idea_pos_x`, `idea_pos_y`, `idea_pos_z`, `idea_rot_z`, `idea_message`, `idea_svr_start`, `idea_session`) VALUES + (21, 1, 2, 1608871415, '1.0', 1336.09, -758.642, 14.5972, -2.84, 'Import/Export between different cities, with each city demanding different cars.', 2147483647, 0); +INSERT INTO `idea_main` (`idea_id`, `idea_server`, `idea_who_added`, `idea_when_added`, `idea_script_ver`, `idea_pos_x`, `idea_pos_y`, `idea_pos_z`, `idea_rot_z`, `idea_message`, `idea_svr_start`, `idea_session`) VALUES + (23, 1, 1, 1608871808, '1.0', -597.479, 353.699, 78.4167, -1.8, 'Remove real estate flag on house in cedar grove', 2147483647, 0); +INSERT INTO `idea_main` (`idea_id`, `idea_server`, `idea_who_added`, `idea_when_added`, `idea_script_ver`, `idea_pos_x`, `idea_pos_y`, `idea_pos_z`, `idea_rot_z`, `idea_message`, `idea_svr_start`, `idea_session`) VALUES + (128, 1, 1, 1609102480, '1.0', 1299.98, -993.433, 14.8793, 0.840862, 'Respawn single vehicle command', 2147483647, 0); +INSERT INTO `idea_main` (`idea_id`, `idea_server`, `idea_who_added`, `idea_when_added`, `idea_script_ver`, `idea_pos_x`, `idea_pos_y`, `idea_pos_z`, `idea_rot_z`, `idea_message`, `idea_svr_start`, `idea_session`) VALUES + (129, 1, 1, 1609103197, '1.0', 1057.91, -398.217, 14.6232, -0.0146413, 'Hail a cab', 2147483647, 0); +INSERT INTO `idea_main` (`idea_id`, `idea_server`, `idea_who_added`, `idea_when_added`, `idea_script_ver`, `idea_pos_x`, `idea_pos_y`, `idea_pos_z`, `idea_rot_z`, `idea_message`, `idea_svr_start`, `idea_session`) VALUES + (133, 4, 2, 1609122166, '1.0', 1859.69, -2665.98, 5.75974, 1.57027, 'Airplane services?', 2147483647, 0); +INSERT INTO `idea_main` (`idea_id`, `idea_server`, `idea_who_added`, `idea_when_added`, `idea_script_ver`, `idea_pos_x`, `idea_pos_y`, `idea_pos_z`, `idea_rot_z`, `idea_message`, `idea_svr_start`, `idea_session`) VALUES + (134, 4, 2, 1609122329, '1.0', 1805.22, -2325.19, 13.3369, -0.342691, 'Should tuning shops be usable?', 2147483647, 0); +INSERT INTO `idea_main` (`idea_id`, `idea_server`, `idea_who_added`, `idea_when_added`, `idea_script_ver`, `idea_pos_x`, `idea_pos_y`, `idea_pos_z`, `idea_rot_z`, `idea_message`, `idea_svr_start`, `idea_session`) VALUES + (135, 4, 1, 1609142767, '1.0', 1552.72, -1674.83, 16.1953, 1.76176, 'Block use of usechar cmd while not in switchchar mode', 2147483647, 0); +INSERT INTO `idea_main` (`idea_id`, `idea_server`, `idea_who_added`, `idea_when_added`, `idea_script_ver`, `idea_pos_x`, `idea_pos_y`, `idea_pos_z`, `idea_rot_z`, `idea_message`, `idea_svr_start`, `idea_session`) VALUES + (202, 4, 1, 1609213965, '1.0', 237.392, 75.8236, 1005.04, 0.129586, 'Add helpful info on specific events. Approaching veh or job icon, etc', 2147483647, 0); +INSERT INTO `idea_main` (`idea_id`, `idea_server`, `idea_who_added`, `idea_when_added`, `idea_script_ver`, `idea_pos_x`, `idea_pos_y`, `idea_pos_z`, `idea_rot_z`, `idea_message`, `idea_svr_start`, `idea_session`) VALUES + (203, 2, 1, 1609224894, '1.0', -377.152, -337.399, 11.2356, -3.09393, 'Remove gates at starfish island houses', 2147483647, 0); +INSERT INTO `idea_main` (`idea_id`, `idea_server`, `idea_who_added`, `idea_when_added`, `idea_script_ver`, `idea_pos_x`, `idea_pos_y`, `idea_pos_z`, `idea_rot_z`, `idea_message`, `idea_svr_start`, `idea_session`) VALUES + (204, 1, 1, 1609233851, '1.0', 125.646, -922.827, 25.8177, 1.60839, 'Fix colon being too close to msg in admin chat', 2147483647, 0); +INSERT INTO `idea_main` (`idea_id`, `idea_server`, `idea_who_added`, `idea_when_added`, `idea_script_ver`, `idea_pos_x`, `idea_pos_y`, `idea_pos_z`, `idea_rot_z`, `idea_message`, `idea_svr_start`, `idea_session`) VALUES + (205, 1, 1, 1609233955, '1.0', -149.499, -1378.3, 26.1682, 1.54235, 'Add line of sight check to labels', 2147483647, 0); +INSERT INTO `idea_main` (`idea_id`, `idea_server`, `idea_who_added`, `idea_when_added`, `idea_script_ver`, `idea_pos_x`, `idea_pos_y`, `idea_pos_z`, `idea_rot_z`, `idea_message`, `idea_svr_start`, `idea_session`) VALUES + (206, 1, 1, 1609234666, '1.0', -365.363, 244.853, 60.8601, -0.181428, 'Remove cartel mansion gates in SSV', 2147483647, 0); +INSERT INTO `idea_main` (`idea_id`, `idea_server`, `idea_who_added`, `idea_when_added`, `idea_script_ver`, `idea_pos_x`, `idea_pos_y`, `idea_pos_z`, `idea_rot_z`, `idea_message`, `idea_svr_start`, `idea_session`) VALUES + (207, 1, 1, 1609235429, '1.0', 360.992, -1134.22, 22.9809, 0.125214, 'Delete gates at LCPD staunton station', 2147483647, 0); +INSERT INTO `idea_main` (`idea_id`, `idea_server`, `idea_who_added`, `idea_when_added`, `idea_script_ver`, `idea_pos_x`, `idea_pos_y`, `idea_pos_z`, `idea_rot_z`, `idea_message`, `idea_svr_start`, `idea_session`) VALUES + (208, 1, 1, 1609235439, '1.0', 346.371, -1157.53, 22.9809, 2.41115, 'Lock all job vehicles', 2147483647, 0); +INSERT INTO `idea_main` (`idea_id`, `idea_server`, `idea_who_added`, `idea_when_added`, `idea_script_ver`, `idea_pos_x`, `idea_pos_y`, `idea_pos_z`, `idea_rot_z`, `idea_message`, `idea_svr_start`, `idea_session`) VALUES + (209, 1, 1, 1609235450, '1.0', 334.967, -1187.78, 26.1682, -2.8111, 'Always respawn job vehicles as locked', 2147483647, 0); +INSERT INTO `idea_main` (`idea_id`, `idea_server`, `idea_who_added`, `idea_when_added`, `idea_script_ver`, `idea_pos_x`, `idea_pos_y`, `idea_pos_z`, `idea_rot_z`, `idea_message`, `idea_svr_start`, `idea_session`) VALUES + (210, 2, 1, 1609320596, '1.0', -807.673, -1186.79, 11.1053, -2.71469, 'Use pickup.isOnScreen check for label rendering', 2147483647, 0); +INSERT INTO `idea_main` (`idea_id`, `idea_server`, `idea_who_added`, `idea_when_added`, `idea_script_ver`, `idea_pos_x`, `idea_pos_y`, `idea_pos_z`, `idea_rot_z`, `idea_message`, `idea_svr_start`, `idea_session`) VALUES + (212, 2, 1, 1609322731, '1.0', -757.587, 558.332, 11.0974, -1.12629, 'Add cmds for biz buy/rent price', 2147483647, 0); +INSERT INTO `idea_main` (`idea_id`, `idea_server`, `idea_who_added`, `idea_when_added`, `idea_script_ver`, `idea_pos_x`, `idea_pos_y`, `idea_pos_z`, `idea_rot_z`, `idea_message`, `idea_svr_start`, `idea_session`) VALUES + (213, 2, 1, 1609322736, '1.0', -757.587, 558.332, 11.0974, -1.12629, 'Add cmds for house buy/rent price', 2147483647, 0); +INSERT INTO `idea_main` (`idea_id`, `idea_server`, `idea_who_added`, `idea_when_added`, `idea_script_ver`, `idea_pos_x`, `idea_pos_y`, `idea_pos_z`, `idea_rot_z`, `idea_message`, `idea_svr_start`, `idea_session`) VALUES + (214, 2, 1, 1609322861, '1.0', -877.584, 772.635, 11.0846, 0.274123, '(VC) Music records, record player, 8 track tapes', 2147483647, 0); +INSERT INTO `idea_main` (`idea_id`, `idea_server`, `idea_who_added`, `idea_when_added`, `idea_script_ver`, `idea_pos_x`, `idea_pos_y`, `idea_pos_z`, `idea_rot_z`, `idea_message`, `idea_svr_start`, `idea_session`) VALUES + (215, 1, 1, 1610089522, '1.0', 404.5, -1209.73, 25.8024, 3.13906, 'Staunton Patrol Sector 1', 1610089379, 0); +INSERT INTO `idea_main` (`idea_id`, `idea_server`, `idea_who_added`, `idea_when_added`, `idea_script_ver`, `idea_pos_x`, `idea_pos_y`, `idea_pos_z`, `idea_rot_z`, `idea_message`, `idea_svr_start`, `idea_session`) VALUES + (216, 1, 1, 1610089537, '1.0', 334.831, -1388.93, 25.8005, 1.56349, 'Staunton Patrol Sector 1', 1610089379, 0); +INSERT INTO `idea_main` (`idea_id`, `idea_server`, `idea_who_added`, `idea_when_added`, `idea_script_ver`, `idea_pos_x`, `idea_pos_y`, `idea_pos_z`, `idea_rot_z`, `idea_message`, `idea_svr_start`, `idea_session`) VALUES + (217, 1, 1, 1610089558, '1.0', 143.949, -1433.8, 25.802, -3.13242, 'Staunton Patrol Sector 1', 1610089379, 0); +INSERT INTO `idea_main` (`idea_id`, `idea_server`, `idea_who_added`, `idea_when_added`, `idea_script_ver`, `idea_pos_x`, `idea_pos_y`, `idea_pos_z`, `idea_rot_z`, `idea_message`, `idea_svr_start`, `idea_session`) VALUES + (218, 1, 1, 1610089570, '1.0', 144.79, -1592.07, 25.8019, 3.13841, 'Staunton Patrol Sector 1', 1610089379, 0); +INSERT INTO `idea_main` (`idea_id`, `idea_server`, `idea_who_added`, `idea_when_added`, `idea_script_ver`, `idea_pos_x`, `idea_pos_y`, `idea_pos_z`, `idea_rot_z`, `idea_message`, `idea_svr_start`, `idea_session`) VALUES + (219, 1, 1, 1610089581, '1.0', 49.9422, -1566.3, 25.8021, 0.0172569, 'Staunton Patrol Sector 1', 1610089379, 0); +INSERT INTO `idea_main` (`idea_id`, `idea_server`, `idea_who_added`, `idea_when_added`, `idea_script_ver`, `idea_pos_x`, `idea_pos_y`, `idea_pos_z`, `idea_rot_z`, `idea_message`, `idea_svr_start`, `idea_session`) VALUES + (220, 1, 1, 1610089596, '1.0', 48.9107, -1324.22, 25.8026, 0.00158491, 'Staunton Patrol Sector 1', 1610089379, 0); +INSERT INTO `idea_main` (`idea_id`, `idea_server`, `idea_who_added`, `idea_when_added`, `idea_script_ver`, `idea_pos_x`, `idea_pos_y`, `idea_pos_z`, `idea_rot_z`, `idea_message`, `idea_svr_start`, `idea_session`) VALUES + (221, 1, 1, 1610089611, '1.0', 50.0236, -1101.78, 25.8023, -0.00503862, 'Staunton Patrol Sector 1', 1610089379, 0); +INSERT INTO `idea_main` (`idea_id`, `idea_server`, `idea_who_added`, `idea_when_added`, `idea_script_ver`, `idea_pos_x`, `idea_pos_y`, `idea_pos_z`, `idea_rot_z`, `idea_message`, `idea_svr_start`, `idea_session`) VALUES + (222, 1, 1, 1610089621, '1.0', 131.694, -1111.31, 25.7952, -2.04836, 'Staunton Patrol Sector 1', 1610089379, 0); +INSERT INTO `idea_main` (`idea_id`, `idea_server`, `idea_who_added`, `idea_when_added`, `idea_script_ver`, `idea_pos_x`, `idea_pos_y`, `idea_pos_z`, `idea_rot_z`, `idea_message`, `idea_svr_start`, `idea_session`) VALUES + (223, 1, 1, 1610089630, '1.0', 189.424, -1063.86, 25.7998, -0.0182241, 'Staunton Patrol Sector 1', 1610089379, 0); +INSERT INTO `idea_main` (`idea_id`, `idea_server`, `idea_who_added`, `idea_when_added`, `idea_script_ver`, `idea_pos_x`, `idea_pos_y`, `idea_pos_z`, `idea_rot_z`, `idea_message`, `idea_svr_start`, `idea_session`) VALUES + (224, 1, 1, 1610089639, '1.0', 272.875, -1044.04, 25.8019, -1.59621, 'Staunton Patrol Sector 1', 1610089379, 0); +INSERT INTO `idea_main` (`idea_id`, `idea_server`, `idea_who_added`, `idea_when_added`, `idea_script_ver`, `idea_pos_x`, `idea_pos_y`, `idea_pos_z`, `idea_rot_z`, `idea_message`, `idea_svr_start`, `idea_session`) VALUES + (225, 1, 1, 1610089650, '1.0', 355.409, -847.512, 25.1725, -0.481276, 'Staunton Patrol Sector 1', 1610089379, 0); +INSERT INTO `idea_main` (`idea_id`, `idea_server`, `idea_who_added`, `idea_when_added`, `idea_script_ver`, `idea_pos_x`, `idea_pos_y`, `idea_pos_z`, `idea_rot_z`, `idea_message`, `idea_svr_start`, `idea_session`) VALUES + (226, 1, 1, 1610089671, '1.0', 521.08, -399.068, 20.9302, 1.57934, 'Staunton Patrol Sector 1', 1610089379, 0); +INSERT INTO `idea_main` (`idea_id`, `idea_server`, `idea_who_added`, `idea_when_added`, `idea_script_ver`, `idea_pos_x`, `idea_pos_y`, `idea_pos_z`, `idea_rot_z`, `idea_message`, `idea_svr_start`, `idea_session`) VALUES + (227, 1, 1, 1610089682, '1.0', 403.586, -471.898, 25.8008, -3.13068, 'Staunton Patrol Sector 1', 1610089379, 0); +INSERT INTO `idea_main` (`idea_id`, `idea_server`, `idea_who_added`, `idea_when_added`, `idea_script_ver`, `idea_pos_x`, `idea_pos_y`, `idea_pos_z`, `idea_rot_z`, `idea_message`, `idea_svr_start`, `idea_session`) VALUES + (228, 1, 1, 1610089689, '1.0', 403.915, -608.12, 25.7963, 3.13306, 'Staunton Patrol Sector 1', 1610089379, 0); +INSERT INTO `idea_main` (`idea_id`, `idea_server`, `idea_who_added`, `idea_when_added`, `idea_script_ver`, `idea_pos_x`, `idea_pos_y`, `idea_pos_z`, `idea_rot_z`, `idea_message`, `idea_svr_start`, `idea_session`) VALUES + (229, 1, 1, 1610089699, '1.0', 324.298, -687.727, 25.7945, 1.57342, 'Staunton Patrol Sector 1', 1610089379, 0); +INSERT INTO `idea_main` (`idea_id`, `idea_server`, `idea_who_added`, `idea_when_added`, `idea_script_ver`, `idea_pos_x`, `idea_pos_y`, `idea_pos_z`, `idea_rot_z`, `idea_message`, `idea_svr_start`, `idea_session`) VALUES + (230, 1, 1, 1610089708, '1.0', 230.278, -738.004, 25.8017, 2.5272, 'Staunton Patrol Sector 1', 1610089379, 0); +INSERT INTO `idea_main` (`idea_id`, `idea_server`, `idea_who_added`, `idea_when_added`, `idea_script_ver`, `idea_pos_x`, `idea_pos_y`, `idea_pos_z`, `idea_rot_z`, `idea_message`, `idea_svr_start`, `idea_session`) VALUES + (231, 1, 1, 1610089718, '1.0', 145.977, -907.481, 25.8045, 2.75241, 'Staunton Patrol Sector 1', 1610089379, 0); +INSERT INTO `idea_main` (`idea_id`, `idea_server`, `idea_who_added`, `idea_when_added`, `idea_script_ver`, `idea_pos_x`, `idea_pos_y`, `idea_pos_z`, `idea_rot_z`, `idea_message`, `idea_svr_start`, `idea_session`) VALUES + (232, 1, 1, 1610089735, '1.0', 81.1892, -924.272, 25.8088, 1.64597, 'Staunton Patrol Sector 1', 1610089379, 0); +INSERT INTO `idea_main` (`idea_id`, `idea_server`, `idea_who_added`, `idea_when_added`, `idea_script_ver`, `idea_pos_x`, `idea_pos_y`, `idea_pos_z`, `idea_rot_z`, `idea_message`, `idea_svr_start`, `idea_session`) VALUES + (233, 1, 1, 1610089752, '1.0', 35.0571, -1023.52, 25.7989, -3.13901, 'Staunton Patrol Sector 1', 1610089379, 0); +INSERT INTO `idea_main` (`idea_id`, `idea_server`, `idea_who_added`, `idea_when_added`, `idea_script_ver`, `idea_pos_x`, `idea_pos_y`, `idea_pos_z`, `idea_rot_z`, `idea_message`, `idea_svr_start`, `idea_session`) VALUES + (234, 1, 1, 1610089762, '1.0', 40.047, -1224.51, 25.801, 3.13417, 'Staunton Patrol Sector 1', 1610089379, 0); +INSERT INTO `idea_main` (`idea_id`, `idea_server`, `idea_who_added`, `idea_when_added`, `idea_script_ver`, `idea_pos_x`, `idea_pos_y`, `idea_pos_z`, `idea_rot_z`, `idea_message`, `idea_svr_start`, `idea_session`) VALUES + (235, 1, 1, 1610089771, '1.0', 105.924, -1313.85, 25.7972, -2.03191, 'Staunton Patrol Sector 1', 1610089379, 0); +INSERT INTO `idea_main` (`idea_id`, `idea_server`, `idea_who_added`, `idea_when_added`, `idea_script_ver`, `idea_pos_x`, `idea_pos_y`, `idea_pos_z`, `idea_rot_z`, `idea_message`, `idea_svr_start`, `idea_session`) VALUES + (236, 1, 1, 1610089783, '1.0', 149.367, -1377.78, 25.8016, 3.13387, 'Staunton Patrol Sector 1', 1610089379, 0); +INSERT INTO `idea_main` (`idea_id`, `idea_server`, `idea_who_added`, `idea_when_added`, `idea_script_ver`, `idea_pos_x`, `idea_pos_y`, `idea_pos_z`, `idea_rot_z`, `idea_message`, `idea_svr_start`, `idea_session`) VALUES + (237, 1, 1, 1610089793, '1.0', 271.09, -1399.14, 25.8019, -1.58546, 'Staunton Patrol Sector 1', 1610089379, 0); +INSERT INTO `idea_main` (`idea_id`, `idea_server`, `idea_who_added`, `idea_when_added`, `idea_script_ver`, `idea_pos_x`, `idea_pos_y`, `idea_pos_z`, `idea_rot_z`, `idea_message`, `idea_svr_start`, `idea_session`) VALUES + (238, 1, 1, 1610089820, '1.0', 303.644, -1079.71, 25.8029, -0.0351653, 'Staunton Patrol Sector 1', 1610089379, 0); +INSERT INTO `idea_main` (`idea_id`, `idea_server`, `idea_who_added`, `idea_when_added`, `idea_script_ver`, `idea_pos_x`, `idea_pos_y`, `idea_pos_z`, `idea_rot_z`, `idea_message`, `idea_svr_start`, `idea_session`) VALUES + (239, 1, 1, 1610089829, '1.0', 342.905, -873.693, 22.5513, -0.435446, 'Staunton Patrol Sector 1', 1610089379, 0); +INSERT INTO `idea_main` (`idea_id`, `idea_server`, `idea_who_added`, `idea_when_added`, `idea_script_ver`, `idea_pos_x`, `idea_pos_y`, `idea_pos_z`, `idea_rot_z`, `idea_message`, `idea_svr_start`, `idea_session`) VALUES + (240, 1, 1, 1610089849, '1.0', 542.573, -466.857, 23.3019, -0.472751, 'Staunton Patrol Sector 1', 1610089379, 0); +INSERT INTO `idea_main` (`idea_id`, `idea_server`, `idea_who_added`, `idea_when_added`, `idea_script_ver`, `idea_pos_x`, `idea_pos_y`, `idea_pos_z`, `idea_rot_z`, `idea_message`, `idea_svr_start`, `idea_session`) VALUES + (241, 1, 1, 1610089858, '1.0', 516.223, -398.79, 20.9548, 1.61617, 'Staunton Patrol Sector 1', 1610089379, 0); +INSERT INTO `idea_main` (`idea_id`, `idea_server`, `idea_who_added`, `idea_when_added`, `idea_script_ver`, `idea_pos_x`, `idea_pos_y`, `idea_pos_z`, `idea_rot_z`, `idea_message`, `idea_svr_start`, `idea_session`) VALUES + (242, 1, 1, 1610089867, '1.0', 404.847, -480.079, 25.7463, 3.12883, 'Staunton Patrol Sector 1', 1610089379, 0); +INSERT INTO `idea_main` (`idea_id`, `idea_server`, `idea_who_added`, `idea_when_added`, `idea_script_ver`, `idea_pos_x`, `idea_pos_y`, `idea_pos_z`, `idea_rot_z`, `idea_message`, `idea_svr_start`, `idea_session`) VALUES + (243, 1, 1, 1610089879, '1.0', 404.132, -908.893, 25.7912, 3.13617, 'Staunton Patrol Sector 1', 1610089379, 0); +INSERT INTO `idea_main` (`idea_id`, `idea_server`, `idea_who_added`, `idea_when_added`, `idea_script_ver`, `idea_pos_x`, `idea_pos_y`, `idea_pos_z`, `idea_rot_z`, `idea_message`, `idea_svr_start`, `idea_session`) VALUES + (244, 1, 1, 1610089888, '1.0', 403.389, -1098.75, 25.8034, 3.12562, 'Staunton Patrol Sector 1', 1610089379, 0); +INSERT INTO `idea_main` (`idea_id`, `idea_server`, `idea_who_added`, `idea_when_added`, `idea_script_ver`, `idea_pos_x`, `idea_pos_y`, `idea_pos_z`, `idea_rot_z`, `idea_message`, `idea_svr_start`, `idea_session`) VALUES + (256, 1, 1, 1610251067, '1.0', 928.993, -346.394, 9.86887, 1.77244, 'Add rgba colour picker', 1610250260, 0); +INSERT INTO `idea_main` (`idea_id`, `idea_server`, `idea_who_added`, `idea_when_added`, `idea_script_ver`, `idea_pos_x`, `idea_pos_y`, `idea_pos_z`, `idea_rot_z`, `idea_message`, `idea_svr_start`, `idea_session`) VALUES + (257, 1, 1, 1610251411, '1.0', 1308.86, -1017.92, 14.8858, -0.685351, 'Add RGBA colour saving to vehicle', 1610250260, 0); +INSERT INTO `idea_main` (`idea_id`, `idea_server`, `idea_who_added`, `idea_when_added`, `idea_script_ver`, `idea_pos_x`, `idea_pos_y`, `idea_pos_z`, `idea_rot_z`, `idea_message`, `idea_svr_start`, `idea_session`) VALUES + (258, 1, 4, 1610252071, '1.0', 1046.38, -666.92, 14.8227, 0.180096, 'Add character scale slider to new character window', 1610251764, 0); +INSERT INTO `idea_main` (`idea_id`, `idea_server`, `idea_who_added`, `idea_when_added`, `idea_script_ver`, `idea_pos_x`, `idea_pos_y`, `idea_pos_z`, `idea_rot_z`, `idea_message`, `idea_svr_start`, `idea_session`) VALUES + (259, 1, 4, 1610252083, '1.0', 1046.38, -666.92, 14.8227, 0.180096, 'Show character next to new character window', 1610251764, 0); +INSERT INTO `idea_main` (`idea_id`, `idea_server`, `idea_who_added`, `idea_when_added`, `idea_script_ver`, `idea_pos_x`, `idea_pos_y`, `idea_pos_z`, `idea_rot_z`, `idea_message`, `idea_svr_start`, `idea_session`) VALUES + (262, 1, 1, 1610352865, '1.0', 1166.35, -1106.47, 11.8602, -1.58256, 'Add biz hasGarage with enter/exit pos/int/vw', 1610322516, 0); +INSERT INTO `idea_main` (`idea_id`, `idea_server`, `idea_who_added`, `idea_when_added`, `idea_script_ver`, `idea_pos_x`, `idea_pos_y`, `idea_pos_z`, `idea_rot_z`, `idea_message`, `idea_svr_start`, `idea_session`) VALUES + (263, 1, 1, 1610764681, '1.0', 1132.85, -678.996, 14.9727, -3.12585, 'Command to revert account hotkeys back to default', 1610763688, 0); +INSERT INTO `idea_main` (`idea_id`, `idea_server`, `idea_who_added`, `idea_when_added`, `idea_script_ver`, `idea_pos_x`, `idea_pos_y`, `idea_pos_z`, `idea_rot_z`, `idea_message`, `idea_svr_start`, `idea_session`) VALUES + (264, 1, 2, 1610764796, '1.0', 1134.92, -685.119, 14.9727, 1.70852, 'List of vehicle names (to be used with /addveh, /tempveh).', 1610763688, 0); +INSERT INTO `idea_main` (`idea_id`, `idea_server`, `idea_who_added`, `idea_when_added`, `idea_script_ver`, `idea_pos_x`, `idea_pos_y`, `idea_pos_z`, `idea_rot_z`, `idea_message`, `idea_svr_start`, `idea_session`) VALUES + (265, 1, 1, 1610765130, '1.0', 958.348, -673.949, 14.9727, -0.0243053, 'Add emoji replace', 1610763688, 0); +INSERT INTO `idea_main` (`idea_id`, `idea_server`, `idea_who_added`, `idea_when_added`, `idea_script_ver`, `idea_pos_x`, `idea_pos_y`, `idea_pos_z`, `idea_rot_z`, `idea_message`, `idea_svr_start`, `idea_session`) VALUES + (266, 1, 2, 1610765274, '1.0', 953.956, -685.45, 14.9727, -0.525081, 'Command to open/close a vehicle trunk?', 1610763688, 0); +INSERT INTO `idea_main` (`idea_id`, `idea_server`, `idea_who_added`, `idea_when_added`, `idea_script_ver`, `idea_pos_x`, `idea_pos_y`, `idea_pos_z`, `idea_rot_z`, `idea_message`, `idea_svr_start`, `idea_session`) VALUES + (267, 1, 1, 1610765958, '1.0', 1092.34, -635.6, 14.9727, 1.57098, 'Prevent vehicle burning/exploding. Just disable it', 1610763688, 0); +INSERT INTO `idea_main` (`idea_id`, `idea_server`, `idea_who_added`, `idea_when_added`, `idea_script_ver`, `idea_pos_x`, `idea_pos_y`, `idea_pos_z`, `idea_rot_z`, `idea_message`, `idea_svr_start`, `idea_session`) VALUES + (271, 1, 1, 1610794424, '1.0', 1128.3, -631.851, 14.8227, -3.12625, 'GUI to show list of items and current market info (multipliers and such)', 1610794269, 0); +INSERT INTO `idea_main` (`idea_id`, `idea_server`, `idea_who_added`, `idea_when_added`, `idea_script_ver`, `idea_pos_x`, `idea_pos_y`, `idea_pos_z`, `idea_rot_z`, `idea_message`, `idea_svr_start`, `idea_session`) VALUES + (273, 3, 1, 1613882621, '1.0', 2364.28, 387.27, 6.08, 2.43, 'Reset password command for admins', 1613882251, 0); +INSERT INTO `idea_main` (`idea_id`, `idea_server`, `idea_who_added`, `idea_when_added`, `idea_script_ver`, `idea_pos_x`, `idea_pos_y`, `idea_pos_z`, `idea_rot_z`, `idea_message`, `idea_svr_start`, `idea_session`) VALUES + (276, 3, 1, 1613988102, '1.0', 2364.28, 387.27, 6.08, 2.43, 'Ped skin select with arrow keys', 1613987966, 0); +INSERT INTO `idea_main` (`idea_id`, `idea_server`, `idea_who_added`, `idea_when_added`, `idea_script_ver`, `idea_pos_x`, `idea_pos_y`, `idea_pos_z`, `idea_rot_z`, `idea_message`, `idea_svr_start`, `idea_session`) VALUES + (277, 3, 1, 1613988111, '1.0', 2364.28, 387.27, 6.08, 2.43, 'Select ped head, upper, and lower for IV', 1613987966, 0); +/*!40000 ALTER TABLE `idea_main` ENABLE KEYS */; + +-- Dumping structure for table gtac_main.ins_acct +CREATE TABLE IF NOT EXISTS `ins_acct` ( + `ins_acct_id` int(11) NOT NULL AUTO_INCREMENT, + `ins_acct_server` tinyint(2) NOT NULL DEFAULT '0', + `ins_acct_provider` int(11) NOT NULL DEFAULT '0', + `ins_acct_type` tinyint(2) NOT NULL DEFAULT '0', + `ins_acct_plan` int(11) NOT NULL DEFAULT '0', + `ins_acct_owner_type` int(11) NOT NULL DEFAULT '0', + `ins_acct_owner_id` int(11) NOT NULL DEFAULT '0', + `ins_acct_active` tinyint(1) NOT NULL DEFAULT '0', + `ins_acct_entity_type` int(11) NOT NULL DEFAULT '0', + `ins_acct_entity_id` int(11) NOT NULL DEFAULT '0', + PRIMARY KEY (`ins_acct_id`) USING BTREE +) ENGINE=InnoDB DEFAULT CHARSET=latin1 COMMENT='Insurance - Accounts'; + +-- Dumping data for table gtac_main.ins_acct: ~0 rows (approximately) +/*!40000 ALTER TABLE `ins_acct` DISABLE KEYS */; +/*!40000 ALTER TABLE `ins_acct` ENABLE KEYS */; + +-- Dumping structure for table gtac_main.ins_acct_history +CREATE TABLE IF NOT EXISTS `ins_acct_history` ( + `ins_acct_history_id` int(11) NOT NULL AUTO_INCREMENT, + `ins_acct_history_acct` int(11) NOT NULL DEFAULT '0', + `ins_acct_history_type` int(11) NOT NULL DEFAULT '0', + `ins_acct_history_paid` int(11) NOT NULL DEFAULT '0', + `ins_acct_history_total` int(11) NOT NULL DEFAULT '0', + `ins_acct_history_deleted` tinyint(1) NOT NULL DEFAULT '0', + `ins_acct_history_comment` varchar(256) NOT NULL DEFAULT '0', + PRIMARY KEY (`ins_acct_history_id`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Insurance - Account History'; + +-- Dumping data for table gtac_main.ins_acct_history: ~0 rows (approximately) +/*!40000 ALTER TABLE `ins_acct_history` DISABLE KEYS */; +/*!40000 ALTER TABLE `ins_acct_history` ENABLE KEYS */; + +-- Dumping structure for table gtac_main.ins_plan +CREATE TABLE IF NOT EXISTS `ins_plan` ( + `ins_plan_id` int(11) NOT NULL AUTO_INCREMENT, + `ins_plan_name` varchar(64) NOT NULL DEFAULT 'Unnamed', + `ins_plan_provider` int(11) NOT NULL DEFAULT '0', + `ins_plan_entity_type` int(11) NOT NULL DEFAULT '0', + `ins_plan_enabled` int(11) NOT NULL DEFAULT '0', + `ins_plan_setup_fee` int(11) NOT NULL DEFAULT '0', + `ins_plan_max_coverage` int(11) NOT NULL DEFAULT '0', + `ins_plan_min_coverage` int(11) NOT NULL DEFAULT '0', + `ins_plan_max_payout` int(11) NOT NULL DEFAULT '0', + `ins_plan_rate` int(11) NOT NULL DEFAULT '0', + `ins_plan_rate_multiplier` int(11) NOT NULL DEFAULT '0', + `ins_plan_minscore` int(11) NOT NULL DEFAULT '0', + PRIMARY KEY (`ins_plan_id`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Insurance - Plans'; + +-- Dumping data for table gtac_main.ins_plan: ~0 rows (approximately) +/*!40000 ALTER TABLE `ins_plan` DISABLE KEYS */; +/*!40000 ALTER TABLE `ins_plan` ENABLE KEYS */; + +-- Dumping structure for table gtac_main.ins_provider +CREATE TABLE IF NOT EXISTS `ins_provider` ( + `insurance_provider_id` mediumint(9) NOT NULL DEFAULT '0', + `insurance_provider_server` tinyint(2) NOT NULL DEFAULT '0', + `insurance_provider_name` varchar(64) NOT NULL DEFAULT '0', + `insurance_provider_type_flags` int(32) NOT NULL DEFAULT '0', + `insurance_provider_active` tinyint(1) NOT NULL DEFAULT '1', + `insurance_provider_owner_type` tinyint(1) NOT NULL DEFAULT '0', + `insurance_provider_owner_id` mediumint(9) NOT NULL DEFAULT '0', + PRIMARY KEY (`insurance_provider_id`) +) ENGINE=InnoDB DEFAULT CHARSET=latin1 COMMENT='Insurance - Providers'; + +-- Dumping data for table gtac_main.ins_provider: ~0 rows (approximately) +/*!40000 ALTER TABLE `ins_provider` DISABLE KEYS */; +/*!40000 ALTER TABLE `ins_provider` ENABLE KEYS */; + +-- Dumping structure for table gtac_main.int_main +CREATE TABLE IF NOT EXISTS `int_main` ( + `int_id` int(11) NOT NULL AUTO_INCREMENT, + `int_server` int(11) NOT NULL DEFAULT '0', + `int_name` varchar(50) NOT NULL DEFAULT 'Unnamed', + `int_type` int(11) NOT NULL DEFAULT '0', + `int_entrance_pos_x` float NOT NULL DEFAULT '0', + `int_entrance_pos_y` float NOT NULL DEFAULT '0', + `int_entrance_pos_z` float NOT NULL DEFAULT '0', + `int_entrance_rot_z` float NOT NULL DEFAULT '0', + `int_entrance_int` int(11) NOT NULL DEFAULT '0', + `int_entrance_vw` int(11) NOT NULL DEFAULT '0', + `int_exit_pos_x` float NOT NULL DEFAULT '0', + `int_exit_pos_y` float NOT NULL DEFAULT '0', + `int_exit_pos_z` float NOT NULL DEFAULT '0', + `int_exit_rot_z` float NOT NULL DEFAULT '0', + `int_exit_int` int(11) NOT NULL DEFAULT '0', + `int_exit_vw` int(11) NOT NULL DEFAULT '0', + PRIMARY KEY (`int_id`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Interiors'; + +-- Dumping data for table gtac_main.int_main: ~0 rows (approximately) +/*!40000 ALTER TABLE `int_main` DISABLE KEYS */; +/*!40000 ALTER TABLE `int_main` ENABLE KEYS */; + +-- Dumping structure for table gtac_main.item_main +CREATE TABLE IF NOT EXISTS `item_main` ( + `item_id` int(11) NOT NULL AUTO_INCREMENT, + `item_server` int(11) NOT NULL DEFAULT '0', + `item_type` int(11) NOT NULL DEFAULT '0', + `item_buy_price` int(11) NOT NULL DEFAULT '0', + `item_owner_type` int(11) NOT NULL DEFAULT '0', + `item_owner_id` int(11) NOT NULL DEFAULT '0', + `item_amount` int(11) NOT NULL DEFAULT '0', + `item_pos_x` float NOT NULL DEFAULT '0', + `item_pos_y` float NOT NULL DEFAULT '0', + `item_pos_z` float NOT NULL DEFAULT '0', + `item_int` int(11) NOT NULL DEFAULT '0', + `item_vw` int(11) NOT NULL DEFAULT '0', + `item_value` int(11) NOT NULL DEFAULT '0', + PRIMARY KEY (`item_id`) +) ENGINE=InnoDB AUTO_INCREMENT=3 DEFAULT CHARSET=utf8 COMMENT='Items'; + +-- Dumping data for table gtac_main.item_main: ~0 rows (approximately) +/*!40000 ALTER TABLE `item_main` DISABLE KEYS */; +INSERT INTO `item_main` (`item_id`, `item_server`, `item_type`, `item_buy_price`, `item_owner_type`, `item_owner_id`, `item_amount`, `item_pos_x`, `item_pos_y`, `item_pos_z`, `item_int`, `item_vw`, `item_value`) VALUES + (2, 4, 208, 0, 1, 8, 1, 0, 0, 0, 0, 0, 788500); +/*!40000 ALTER TABLE `item_main` ENABLE KEYS */; + +-- Dumping structure for table gtac_main.item_type +CREATE TABLE IF NOT EXISTS `item_type` ( + `item_type_id` int(11) NOT NULL AUTO_INCREMENT, + `item_type_server` int(11) NOT NULL DEFAULT '0', + `item_type_name` varchar(64) NOT NULL DEFAULT '', + `item_type_use_type` int(11) NOT NULL DEFAULT '0', + `item_type_use_id` int(11) NOT NULL DEFAULT '0', + `item_type_use_value` int(11) NOT NULL DEFAULT '0', + `item_type_order_price` int(11) NOT NULL DEFAULT '0', + `item_type_drop_type` int(11) NOT NULL DEFAULT '0', + `item_type_drop_model` int(11) NOT NULL DEFAULT '0', + `item_type_drop_pos_x` float NOT NULL DEFAULT '0', + `item_type_drop_pos_y` float NOT NULL DEFAULT '0', + `item_type_drop_pos_z` float NOT NULL DEFAULT '0', + `item_type_drop_rot_x` float NOT NULL DEFAULT '0', + `item_type_drop_rot_y` float NOT NULL DEFAULT '0', + `item_type_drop_rot_z` float NOT NULL DEFAULT '0', + `item_type_drop_scale_x` float NOT NULL DEFAULT '0', + `item_type_drop_scale_y` float NOT NULL DEFAULT '0', + `item_type_drop_scale_z` float NOT NULL DEFAULT '0', + `item_type_image_small` varchar(50) NOT NULL DEFAULT 'no-image.png', + `item_type_image_large` varchar(50) NOT NULL DEFAULT 'no-image.png', + `item_type_image_hotbar` varchar(50) NOT NULL DEFAULT 'no-image.png', + `item_type_size` int(11) NOT NULL DEFAULT '0', + `item_type_capacity` int(11) NOT NULL DEFAULT '0', + `item_type_demand_multiplier` float NOT NULL DEFAULT '1', + `item_type_supply_multiplier` float NOT NULL DEFAULT '1', + `item_type_risk_multiplier` float NOT NULL DEFAULT '1', + `item_type_enabled` tinyint(4) NOT NULL DEFAULT '1', + `item_type_delay_switch` int(11) NOT NULL DEFAULT '0', + `item_type_delay_use` int(11) NOT NULL DEFAULT '0', + `item_type_delay_pickup` int(11) NOT NULL DEFAULT '0', + `item_type_delay_put` int(11) NOT NULL DEFAULT '0', + `item_type_delay_take` int(11) NOT NULL DEFAULT '0', + `item_type_delay_give` int(11) NOT NULL DEFAULT '0', + `item_type_delay_drop` int(11) NOT NULL DEFAULT '0', + PRIMARY KEY (`item_type_id`), + KEY `item_type_server` (`item_type_server`), + CONSTRAINT `fk_item_type_server` FOREIGN KEY (`item_type_server`) REFERENCES `svr_main` (`svr_id`) ON DELETE CASCADE ON UPDATE CASCADE +) ENGINE=InnoDB AUTO_INCREMENT=212 DEFAULT CHARSET=utf8 COMMENT='Item Types'; + +-- Dumping data for table gtac_main.item_type: ~194 rows (approximately) +/*!40000 ALTER TABLE `item_type` DISABLE KEYS */; +INSERT INTO `item_type` (`item_type_id`, `item_type_server`, `item_type_name`, `item_type_use_type`, `item_type_use_id`, `item_type_use_value`, `item_type_order_price`, `item_type_drop_type`, `item_type_drop_model`, `item_type_drop_pos_x`, `item_type_drop_pos_y`, `item_type_drop_pos_z`, `item_type_drop_rot_x`, `item_type_drop_rot_y`, `item_type_drop_rot_z`, `item_type_drop_scale_x`, `item_type_drop_scale_y`, `item_type_drop_scale_z`, `item_type_image_small`, `item_type_image_large`, `item_type_image_hotbar`, `item_type_size`, `item_type_capacity`, `item_type_demand_multiplier`, `item_type_supply_multiplier`, `item_type_risk_multiplier`, `item_type_enabled`, `item_type_delay_switch`, `item_type_delay_use`, `item_type_delay_pickup`, `item_type_delay_put`, `item_type_delay_take`, `item_type_delay_give`, `item_type_delay_drop`) VALUES + (1, 1, 'Baseball Bat', 1, 1, 0, 25, 1, 172, 0, 0, -1, 1.6, 0, 0, 0, 0, 0, 'no-image.png', 'no-image.png', 'no-image.png', 0, 0, 1, 1, 1, 1, 500, 1500, 750, 750, 750, 500, 500); +INSERT INTO `item_type` (`item_type_id`, `item_type_server`, `item_type_name`, `item_type_use_type`, `item_type_use_id`, `item_type_use_value`, `item_type_order_price`, `item_type_drop_type`, `item_type_drop_model`, `item_type_drop_pos_x`, `item_type_drop_pos_y`, `item_type_drop_pos_z`, `item_type_drop_rot_x`, `item_type_drop_rot_y`, `item_type_drop_rot_z`, `item_type_drop_scale_x`, `item_type_drop_scale_y`, `item_type_drop_scale_z`, `item_type_image_small`, `item_type_image_large`, `item_type_image_hotbar`, `item_type_size`, `item_type_capacity`, `item_type_demand_multiplier`, `item_type_supply_multiplier`, `item_type_risk_multiplier`, `item_type_enabled`, `item_type_delay_switch`, `item_type_delay_use`, `item_type_delay_pickup`, `item_type_delay_put`, `item_type_delay_take`, `item_type_delay_give`, `item_type_delay_drop`) VALUES + (5, 1, 'Colt 45', 1, 2, 0, 350, 1, 173, 0, 0, -1, 1.6, 0, 0, 0, 0, 0, 'no-image.png', 'no-image.png', 'no-image.png', 0, 0, 1, 1, 2, 1, 500, 1500, 750, 750, 750, 500, 500); +INSERT INTO `item_type` (`item_type_id`, `item_type_server`, `item_type_name`, `item_type_use_type`, `item_type_use_id`, `item_type_use_value`, `item_type_order_price`, `item_type_drop_type`, `item_type_drop_model`, `item_type_drop_pos_x`, `item_type_drop_pos_y`, `item_type_drop_pos_z`, `item_type_drop_rot_x`, `item_type_drop_rot_y`, `item_type_drop_rot_z`, `item_type_drop_scale_x`, `item_type_drop_scale_y`, `item_type_drop_scale_z`, `item_type_image_small`, `item_type_image_large`, `item_type_image_hotbar`, `item_type_size`, `item_type_capacity`, `item_type_demand_multiplier`, `item_type_supply_multiplier`, `item_type_risk_multiplier`, `item_type_enabled`, `item_type_delay_switch`, `item_type_delay_use`, `item_type_delay_pickup`, `item_type_delay_put`, `item_type_delay_take`, `item_type_delay_give`, `item_type_delay_drop`) VALUES + (6, 1, 'Uzi', 1, 3, 0, 500, 1, 178, 0, 0, -1, 1.6, 0, 0, 0, 0, 0, 'no-image.png', 'no-image.png', 'no-image.png', 0, 0, 1, 1, 3, 1, 500, 1500, 750, 750, 750, 500, 500); +INSERT INTO `item_type` (`item_type_id`, `item_type_server`, `item_type_name`, `item_type_use_type`, `item_type_use_id`, `item_type_use_value`, `item_type_order_price`, `item_type_drop_type`, `item_type_drop_model`, `item_type_drop_pos_x`, `item_type_drop_pos_y`, `item_type_drop_pos_z`, `item_type_drop_rot_x`, `item_type_drop_rot_y`, `item_type_drop_rot_z`, `item_type_drop_scale_x`, `item_type_drop_scale_y`, `item_type_drop_scale_z`, `item_type_image_small`, `item_type_image_large`, `item_type_image_hotbar`, `item_type_size`, `item_type_capacity`, `item_type_demand_multiplier`, `item_type_supply_multiplier`, `item_type_risk_multiplier`, `item_type_enabled`, `item_type_delay_switch`, `item_type_delay_use`, `item_type_delay_pickup`, `item_type_delay_put`, `item_type_delay_take`, `item_type_delay_give`, `item_type_delay_drop`) VALUES + (7, 1, 'Shotgun', 1, 4, 0, 450, 1, 176, 0, 0, -1, 1.6, 0, 0, 0, 0, 0, 'no-image.png', 'no-image.png', 'no-image.png', 0, 0, 1, 1, 3, 1, 500, 1500, 750, 750, 750, 500, 500); +INSERT INTO `item_type` (`item_type_id`, `item_type_server`, `item_type_name`, `item_type_use_type`, `item_type_use_id`, `item_type_use_value`, `item_type_order_price`, `item_type_drop_type`, `item_type_drop_model`, `item_type_drop_pos_x`, `item_type_drop_pos_y`, `item_type_drop_pos_z`, `item_type_drop_rot_x`, `item_type_drop_rot_y`, `item_type_drop_rot_z`, `item_type_drop_scale_x`, `item_type_drop_scale_y`, `item_type_drop_scale_z`, `item_type_image_small`, `item_type_image_large`, `item_type_image_hotbar`, `item_type_size`, `item_type_capacity`, `item_type_demand_multiplier`, `item_type_supply_multiplier`, `item_type_risk_multiplier`, `item_type_enabled`, `item_type_delay_switch`, `item_type_delay_use`, `item_type_delay_pickup`, `item_type_delay_put`, `item_type_delay_take`, `item_type_delay_give`, `item_type_delay_drop`) VALUES + (8, 1, 'AK-47', 1, 5, 0, 1000, 1, 171, 0, 0, -1, 1.6, 0, 0, 0, 0, 0, 'no-image.png', 'no-image.png', 'no-image.png', 0, 0, 1, 1, 5, 1, 500, 1500, 750, 750, 750, 500, 500); +INSERT INTO `item_type` (`item_type_id`, `item_type_server`, `item_type_name`, `item_type_use_type`, `item_type_use_id`, `item_type_use_value`, `item_type_order_price`, `item_type_drop_type`, `item_type_drop_model`, `item_type_drop_pos_x`, `item_type_drop_pos_y`, `item_type_drop_pos_z`, `item_type_drop_rot_x`, `item_type_drop_rot_y`, `item_type_drop_rot_z`, `item_type_drop_scale_x`, `item_type_drop_scale_y`, `item_type_drop_scale_z`, `item_type_image_small`, `item_type_image_large`, `item_type_image_hotbar`, `item_type_size`, `item_type_capacity`, `item_type_demand_multiplier`, `item_type_supply_multiplier`, `item_type_risk_multiplier`, `item_type_enabled`, `item_type_delay_switch`, `item_type_delay_use`, `item_type_delay_pickup`, `item_type_delay_put`, `item_type_delay_take`, `item_type_delay_give`, `item_type_delay_drop`) VALUES + (9, 1, 'M16', 1, 6, 0, 2000, 1, 180, 0, 0, -1, 1.6, 0, 0, 0, 0, 0, 'no-image.png', 'no-image.png', 'no-image.png', 0, 0, 1, 1, 5, 1, 500, 1500, 750, 750, 750, 500, 500); +INSERT INTO `item_type` (`item_type_id`, `item_type_server`, `item_type_name`, `item_type_use_type`, `item_type_use_id`, `item_type_use_value`, `item_type_order_price`, `item_type_drop_type`, `item_type_drop_model`, `item_type_drop_pos_x`, `item_type_drop_pos_y`, `item_type_drop_pos_z`, `item_type_drop_rot_x`, `item_type_drop_rot_y`, `item_type_drop_rot_z`, `item_type_drop_scale_x`, `item_type_drop_scale_y`, `item_type_drop_scale_z`, `item_type_image_small`, `item_type_image_large`, `item_type_image_hotbar`, `item_type_size`, `item_type_capacity`, `item_type_demand_multiplier`, `item_type_supply_multiplier`, `item_type_risk_multiplier`, `item_type_enabled`, `item_type_delay_switch`, `item_type_delay_use`, `item_type_delay_pickup`, `item_type_delay_put`, `item_type_delay_take`, `item_type_delay_give`, `item_type_delay_drop`) VALUES + (10, 1, 'Sniper Rifle', 1, 7, 0, 2500, 1, 177, 0, 0, -1, 1.6, 0, 0, 0, 0, 0, 'no-image.png', 'no-image.png', 'no-image.png', 0, 0, 1, 1, 5, 1, 500, 1500, 750, 750, 750, 500, 500); +INSERT INTO `item_type` (`item_type_id`, `item_type_server`, `item_type_name`, `item_type_use_type`, `item_type_use_id`, `item_type_use_value`, `item_type_order_price`, `item_type_drop_type`, `item_type_drop_model`, `item_type_drop_pos_x`, `item_type_drop_pos_y`, `item_type_drop_pos_z`, `item_type_drop_rot_x`, `item_type_drop_rot_y`, `item_type_drop_rot_z`, `item_type_drop_scale_x`, `item_type_drop_scale_y`, `item_type_drop_scale_z`, `item_type_image_small`, `item_type_image_large`, `item_type_image_hotbar`, `item_type_size`, `item_type_capacity`, `item_type_demand_multiplier`, `item_type_supply_multiplier`, `item_type_risk_multiplier`, `item_type_enabled`, `item_type_delay_switch`, `item_type_delay_use`, `item_type_delay_pickup`, `item_type_delay_put`, `item_type_delay_take`, `item_type_delay_give`, `item_type_delay_drop`) VALUES + (11, 1, 'RPG', 1, 8, 0, 10000, 1, 175, 0, 0, -1, 1.6, 0, 0, 0, 0, 0, 'no-image.png', 'no-image.png', 'no-image.png', 0, 0, 1, 1, 8, 1, 500, 1500, 750, 750, 750, 500, 500); +INSERT INTO `item_type` (`item_type_id`, `item_type_server`, `item_type_name`, `item_type_use_type`, `item_type_use_id`, `item_type_use_value`, `item_type_order_price`, `item_type_drop_type`, `item_type_drop_model`, `item_type_drop_pos_x`, `item_type_drop_pos_y`, `item_type_drop_pos_z`, `item_type_drop_rot_x`, `item_type_drop_rot_y`, `item_type_drop_rot_z`, `item_type_drop_scale_x`, `item_type_drop_scale_y`, `item_type_drop_scale_z`, `item_type_image_small`, `item_type_image_large`, `item_type_image_hotbar`, `item_type_size`, `item_type_capacity`, `item_type_demand_multiplier`, `item_type_supply_multiplier`, `item_type_risk_multiplier`, `item_type_enabled`, `item_type_delay_switch`, `item_type_delay_use`, `item_type_delay_pickup`, `item_type_delay_put`, `item_type_delay_take`, `item_type_delay_give`, `item_type_delay_drop`) VALUES + (12, 1, 'Flamethrower', 1, 9, 0, 7500, 1, 181, 0, 0, -1, 1.6, 0, 0, 0, 0, 0, 'no-image.png', 'no-image.png', 'no-image.png', 0, 0, 1, 1, 6, 1, 500, 1500, 750, 750, 750, 500, 500); +INSERT INTO `item_type` (`item_type_id`, `item_type_server`, `item_type_name`, `item_type_use_type`, `item_type_use_id`, `item_type_use_value`, `item_type_order_price`, `item_type_drop_type`, `item_type_drop_model`, `item_type_drop_pos_x`, `item_type_drop_pos_y`, `item_type_drop_pos_z`, `item_type_drop_rot_x`, `item_type_drop_rot_y`, `item_type_drop_rot_z`, `item_type_drop_scale_x`, `item_type_drop_scale_y`, `item_type_drop_scale_z`, `item_type_image_small`, `item_type_image_large`, `item_type_image_hotbar`, `item_type_size`, `item_type_capacity`, `item_type_demand_multiplier`, `item_type_supply_multiplier`, `item_type_risk_multiplier`, `item_type_enabled`, `item_type_delay_switch`, `item_type_delay_use`, `item_type_delay_pickup`, `item_type_delay_put`, `item_type_delay_take`, `item_type_delay_give`, `item_type_delay_drop`) VALUES + (13, 1, 'Molotov', 1, 10, 0, 150, 1, 174, 0, 0, -1, 1.6, 0, 0, 0, 0, 0, 'no-image.png', 'no-image.png', 'no-image.png', 0, 0, 1, 1, 3, 1, 500, 1500, 750, 750, 750, 500, 500); +INSERT INTO `item_type` (`item_type_id`, `item_type_server`, `item_type_name`, `item_type_use_type`, `item_type_use_id`, `item_type_use_value`, `item_type_order_price`, `item_type_drop_type`, `item_type_drop_model`, `item_type_drop_pos_x`, `item_type_drop_pos_y`, `item_type_drop_pos_z`, `item_type_drop_rot_x`, `item_type_drop_rot_y`, `item_type_drop_rot_z`, `item_type_drop_scale_x`, `item_type_drop_scale_y`, `item_type_drop_scale_z`, `item_type_image_small`, `item_type_image_large`, `item_type_image_hotbar`, `item_type_size`, `item_type_capacity`, `item_type_demand_multiplier`, `item_type_supply_multiplier`, `item_type_risk_multiplier`, `item_type_enabled`, `item_type_delay_switch`, `item_type_delay_use`, `item_type_delay_pickup`, `item_type_delay_put`, `item_type_delay_take`, `item_type_delay_give`, `item_type_delay_drop`) VALUES + (14, 1, 'Grenade', 1, 11, 0, 500, 1, 170, 0, 0, -1, 1.6, 0, 0, 0, 0, 0, 'no-image.png', 'no-image.png', 'no-image.png', 0, 0, 1, 1, 5, 1, 500, 1500, 750, 750, 750, 500, 500); +INSERT INTO `item_type` (`item_type_id`, `item_type_server`, `item_type_name`, `item_type_use_type`, `item_type_use_id`, `item_type_use_value`, `item_type_order_price`, `item_type_drop_type`, `item_type_drop_model`, `item_type_drop_pos_x`, `item_type_drop_pos_y`, `item_type_drop_pos_z`, `item_type_drop_rot_x`, `item_type_drop_rot_y`, `item_type_drop_rot_z`, `item_type_drop_scale_x`, `item_type_drop_scale_y`, `item_type_drop_scale_z`, `item_type_image_small`, `item_type_image_large`, `item_type_image_hotbar`, `item_type_size`, `item_type_capacity`, `item_type_demand_multiplier`, `item_type_supply_multiplier`, `item_type_risk_multiplier`, `item_type_enabled`, `item_type_delay_switch`, `item_type_delay_use`, `item_type_delay_pickup`, `item_type_delay_put`, `item_type_delay_take`, `item_type_delay_give`, `item_type_delay_drop`) VALUES + (15, 1, 'Remote', 1, 0, 0, 0, 1, 182, 0, 0, -1, 1.6, 0, 0, 0, 0, 0, 'no-image.png', 'no-image.png', 'no-image.png', 0, 0, 1, 1, 1, 1, 500, 1500, 750, 750, 750, 500, 500); +INSERT INTO `item_type` (`item_type_id`, `item_type_server`, `item_type_name`, `item_type_use_type`, `item_type_use_id`, `item_type_use_value`, `item_type_order_price`, `item_type_drop_type`, `item_type_drop_model`, `item_type_drop_pos_x`, `item_type_drop_pos_y`, `item_type_drop_pos_z`, `item_type_drop_rot_x`, `item_type_drop_rot_y`, `item_type_drop_rot_z`, `item_type_drop_scale_x`, `item_type_drop_scale_y`, `item_type_drop_scale_z`, `item_type_image_small`, `item_type_image_large`, `item_type_image_hotbar`, `item_type_size`, `item_type_capacity`, `item_type_demand_multiplier`, `item_type_supply_multiplier`, `item_type_risk_multiplier`, `item_type_enabled`, `item_type_delay_switch`, `item_type_delay_use`, `item_type_delay_pickup`, `item_type_delay_put`, `item_type_delay_take`, `item_type_delay_give`, `item_type_delay_drop`) VALUES + (16, 1, 'Phone', 3, 0, 0, 250, 1, 182, 0, 0, -1, 1.6, 0, 0, 0, 0.5, 1.3, 'no-image.png', 'no-image.png', 'no-image.png', 0, 0, 1, 1, 1, 1, 500, 1500, 750, 750, 750, 500, 500); +INSERT INTO `item_type` (`item_type_id`, `item_type_server`, `item_type_name`, `item_type_use_type`, `item_type_use_id`, `item_type_use_value`, `item_type_order_price`, `item_type_drop_type`, `item_type_drop_model`, `item_type_drop_pos_x`, `item_type_drop_pos_y`, `item_type_drop_pos_z`, `item_type_drop_rot_x`, `item_type_drop_rot_y`, `item_type_drop_rot_z`, `item_type_drop_scale_x`, `item_type_drop_scale_y`, `item_type_drop_scale_z`, `item_type_image_small`, `item_type_image_large`, `item_type_image_hotbar`, `item_type_size`, `item_type_capacity`, `item_type_demand_multiplier`, `item_type_supply_multiplier`, `item_type_risk_multiplier`, `item_type_enabled`, `item_type_delay_switch`, `item_type_delay_use`, `item_type_delay_pickup`, `item_type_delay_put`, `item_type_delay_take`, `item_type_delay_give`, `item_type_delay_drop`) VALUES + (25, 1, 'Radio', 32, 0, 0, 0, 1, 182, 0, 0, -1, 1.6, 0, 0, 0, 0, 0, 'no-image.png', 'no-image.png', 'no-image.png', 0, 0, 1, 1, 1, 1, 500, 1500, 750, 750, 750, 500, 500); +INSERT INTO `item_type` (`item_type_id`, `item_type_server`, `item_type_name`, `item_type_use_type`, `item_type_use_id`, `item_type_use_value`, `item_type_order_price`, `item_type_drop_type`, `item_type_drop_model`, `item_type_drop_pos_x`, `item_type_drop_pos_y`, `item_type_drop_pos_z`, `item_type_drop_rot_x`, `item_type_drop_rot_y`, `item_type_drop_rot_z`, `item_type_drop_scale_x`, `item_type_drop_scale_y`, `item_type_drop_scale_z`, `item_type_image_small`, `item_type_image_large`, `item_type_image_hotbar`, `item_type_size`, `item_type_capacity`, `item_type_demand_multiplier`, `item_type_supply_multiplier`, `item_type_risk_multiplier`, `item_type_enabled`, `item_type_delay_switch`, `item_type_delay_use`, `item_type_delay_pickup`, `item_type_delay_put`, `item_type_delay_take`, `item_type_delay_give`, `item_type_delay_drop`) VALUES + (29, 1, 'Pot Seed', 13, 0, 0, 2, 1, 1319, 0, 0, -1, 1.6, 0, 0, 0, 0, 0, 'no-image.png', 'no-image.png', 'no-image.png', 0, 0, 1, 1, 1, 1, 500, 1500, 750, 750, 750, 500, 500); +INSERT INTO `item_type` (`item_type_id`, `item_type_server`, `item_type_name`, `item_type_use_type`, `item_type_use_id`, `item_type_use_value`, `item_type_order_price`, `item_type_drop_type`, `item_type_drop_model`, `item_type_drop_pos_x`, `item_type_drop_pos_y`, `item_type_drop_pos_z`, `item_type_drop_rot_x`, `item_type_drop_rot_y`, `item_type_drop_rot_z`, `item_type_drop_scale_x`, `item_type_drop_scale_y`, `item_type_drop_scale_z`, `item_type_image_small`, `item_type_image_large`, `item_type_image_hotbar`, `item_type_size`, `item_type_capacity`, `item_type_demand_multiplier`, `item_type_supply_multiplier`, `item_type_risk_multiplier`, `item_type_enabled`, `item_type_delay_switch`, `item_type_delay_use`, `item_type_delay_pickup`, `item_type_delay_put`, `item_type_delay_take`, `item_type_delay_give`, `item_type_delay_drop`) VALUES + (30, 1, 'Weed', 14, 0, 0, 20, 1, 1319, 0, 0, -1, 1.6, 0, 0, 0.3, 0.3, 0.3, 'no-image.png', 'no-image.png', 'no-image.png', 0, 0, 1, 1, 1, 1, 500, 1500, 750, 750, 750, 500, 500); +INSERT INTO `item_type` (`item_type_id`, `item_type_server`, `item_type_name`, `item_type_use_type`, `item_type_use_id`, `item_type_use_value`, `item_type_order_price`, `item_type_drop_type`, `item_type_drop_model`, `item_type_drop_pos_x`, `item_type_drop_pos_y`, `item_type_drop_pos_z`, `item_type_drop_rot_x`, `item_type_drop_rot_y`, `item_type_drop_rot_z`, `item_type_drop_scale_x`, `item_type_drop_scale_y`, `item_type_drop_scale_z`, `item_type_image_small`, `item_type_image_large`, `item_type_image_hotbar`, `item_type_size`, `item_type_capacity`, `item_type_demand_multiplier`, `item_type_supply_multiplier`, `item_type_risk_multiplier`, `item_type_enabled`, `item_type_delay_switch`, `item_type_delay_use`, `item_type_delay_pickup`, `item_type_delay_put`, `item_type_delay_take`, `item_type_delay_give`, `item_type_delay_drop`) VALUES + (31, 1, 'Meth', 16, 0, 0, 100, 1, 1319, 0, 0, -1, 1.6, 0, 0, 0.3, 0.3, 0.3, 'no-image.png', 'no-image.png', 'no-image.png', 0, 100, 1, 1, 3, 1, 500, 1500, 750, 750, 750, 500, 500); +INSERT INTO `item_type` (`item_type_id`, `item_type_server`, `item_type_name`, `item_type_use_type`, `item_type_use_id`, `item_type_use_value`, `item_type_order_price`, `item_type_drop_type`, `item_type_drop_model`, `item_type_drop_pos_x`, `item_type_drop_pos_y`, `item_type_drop_pos_z`, `item_type_drop_rot_x`, `item_type_drop_rot_y`, `item_type_drop_rot_z`, `item_type_drop_scale_x`, `item_type_drop_scale_y`, `item_type_drop_scale_z`, `item_type_image_small`, `item_type_image_large`, `item_type_image_hotbar`, `item_type_size`, `item_type_capacity`, `item_type_demand_multiplier`, `item_type_supply_multiplier`, `item_type_risk_multiplier`, `item_type_enabled`, `item_type_delay_switch`, `item_type_delay_use`, `item_type_delay_pickup`, `item_type_delay_put`, `item_type_delay_take`, `item_type_delay_give`, `item_type_delay_drop`) VALUES + (32, 1, 'Coke', 15, 0, 0, 250, 1, 1319, 0, 0, -1, 1.6, 0, 0, 0.3, 0.3, 0.3, 'no-image.png', 'no-image.png', 'no-image.png', 0, 100, 1, 1, 4, 1, 500, 1500, 750, 750, 750, 500, 500); +INSERT INTO `item_type` (`item_type_id`, `item_type_server`, `item_type_name`, `item_type_use_type`, `item_type_use_id`, `item_type_use_value`, `item_type_order_price`, `item_type_drop_type`, `item_type_drop_model`, `item_type_drop_pos_x`, `item_type_drop_pos_y`, `item_type_drop_pos_z`, `item_type_drop_rot_x`, `item_type_drop_rot_y`, `item_type_drop_rot_z`, `item_type_drop_scale_x`, `item_type_drop_scale_y`, `item_type_drop_scale_z`, `item_type_image_small`, `item_type_image_large`, `item_type_image_hotbar`, `item_type_size`, `item_type_capacity`, `item_type_demand_multiplier`, `item_type_supply_multiplier`, `item_type_risk_multiplier`, `item_type_enabled`, `item_type_delay_switch`, `item_type_delay_use`, `item_type_delay_pickup`, `item_type_delay_put`, `item_type_delay_take`, `item_type_delay_give`, `item_type_delay_drop`) VALUES + (33, 1, 'Wallet', 9, 0, 0, 10, 1, 1319, 0, 0, -1, 1.6, 0, 0, 0.3, 0.3, 0.2, 'no-image.png', 'no-image.png', 'no-image.png', 0, 0, 1, 1, 1, 1, 500, 1500, 750, 750, 750, 500, 500); +INSERT INTO `item_type` (`item_type_id`, `item_type_server`, `item_type_name`, `item_type_use_type`, `item_type_use_id`, `item_type_use_value`, `item_type_order_price`, `item_type_drop_type`, `item_type_drop_model`, `item_type_drop_pos_x`, `item_type_drop_pos_y`, `item_type_drop_pos_z`, `item_type_drop_rot_x`, `item_type_drop_rot_y`, `item_type_drop_rot_z`, `item_type_drop_scale_x`, `item_type_drop_scale_y`, `item_type_drop_scale_z`, `item_type_image_small`, `item_type_image_large`, `item_type_image_hotbar`, `item_type_size`, `item_type_capacity`, `item_type_demand_multiplier`, `item_type_supply_multiplier`, `item_type_risk_multiplier`, `item_type_enabled`, `item_type_delay_switch`, `item_type_delay_use`, `item_type_delay_pickup`, `item_type_delay_put`, `item_type_delay_take`, `item_type_delay_give`, `item_type_delay_drop`) VALUES + (34, 1, 'Crate', 9, 0, 0, 25, 1, 1343, 0, 0, -1, 1.6, 0, 0, 0, 0, 0, 'no-image.png', 'no-image.png', 'no-image.png', 0, 0, 1, 1, 1, 1, 500, 1500, 750, 750, 750, 500, 500); +INSERT INTO `item_type` (`item_type_id`, `item_type_server`, `item_type_name`, `item_type_use_type`, `item_type_use_id`, `item_type_use_value`, `item_type_order_price`, `item_type_drop_type`, `item_type_drop_model`, `item_type_drop_pos_x`, `item_type_drop_pos_y`, `item_type_drop_pos_z`, `item_type_drop_rot_x`, `item_type_drop_rot_y`, `item_type_drop_rot_z`, `item_type_drop_scale_x`, `item_type_drop_scale_y`, `item_type_drop_scale_z`, `item_type_image_small`, `item_type_image_large`, `item_type_image_hotbar`, `item_type_size`, `item_type_capacity`, `item_type_demand_multiplier`, `item_type_supply_multiplier`, `item_type_risk_multiplier`, `item_type_enabled`, `item_type_delay_switch`, `item_type_delay_use`, `item_type_delay_pickup`, `item_type_delay_put`, `item_type_delay_take`, `item_type_delay_give`, `item_type_delay_drop`) VALUES + (35, 1, 'Outfit', 6, 0, 0, 50, 1, 1319, 0, 0, -1, 1.6, 0, 0, 0, 0, 0, 'no-image.png', 'no-image.png', 'no-image.png', 0, 0, 1, 1, 1, 1, 500, 1500, 750, 750, 750, 500, 500); +INSERT INTO `item_type` (`item_type_id`, `item_type_server`, `item_type_name`, `item_type_use_type`, `item_type_use_id`, `item_type_use_value`, `item_type_order_price`, `item_type_drop_type`, `item_type_drop_model`, `item_type_drop_pos_x`, `item_type_drop_pos_y`, `item_type_drop_pos_z`, `item_type_drop_rot_x`, `item_type_drop_rot_y`, `item_type_drop_rot_z`, `item_type_drop_scale_x`, `item_type_drop_scale_y`, `item_type_drop_scale_z`, `item_type_image_small`, `item_type_image_large`, `item_type_image_hotbar`, `item_type_size`, `item_type_capacity`, `item_type_demand_multiplier`, `item_type_supply_multiplier`, `item_type_risk_multiplier`, `item_type_enabled`, `item_type_delay_switch`, `item_type_delay_use`, `item_type_delay_pickup`, `item_type_delay_put`, `item_type_delay_take`, `item_type_delay_give`, `item_type_delay_drop`) VALUES + (36, 1, 'Megaphone', 15, 0, 0, 35, 1, 1319, 0, 0, -1, 1.6, 0, 0, 0, 0, 0, 'no-image.png', 'no-image.png', 'no-image.png', 0, 100, 1, 1, 1, 1, 500, 1500, 750, 750, 750, 500, 500); +INSERT INTO `item_type` (`item_type_id`, `item_type_server`, `item_type_name`, `item_type_use_type`, `item_type_use_id`, `item_type_use_value`, `item_type_order_price`, `item_type_drop_type`, `item_type_drop_model`, `item_type_drop_pos_x`, `item_type_drop_pos_y`, `item_type_drop_pos_z`, `item_type_drop_rot_x`, `item_type_drop_rot_y`, `item_type_drop_rot_z`, `item_type_drop_scale_x`, `item_type_drop_scale_y`, `item_type_drop_scale_z`, `item_type_image_small`, `item_type_image_large`, `item_type_image_hotbar`, `item_type_size`, `item_type_capacity`, `item_type_demand_multiplier`, `item_type_supply_multiplier`, `item_type_risk_multiplier`, `item_type_enabled`, `item_type_delay_switch`, `item_type_delay_use`, `item_type_delay_pickup`, `item_type_delay_put`, `item_type_delay_take`, `item_type_delay_give`, `item_type_delay_drop`) VALUES + (37, 1, 'Bottle of Water', 18, 1, 10, 3, 1, 1319, 0, 0, -1, 1.6, 0, 0, 0, 0, 0, 'no-image.png', 'no-image.png', 'no-image.png', 0, 100, 1, 1, 1, 1, 500, 1500, 750, 750, 750, 500, 500); +INSERT INTO `item_type` (`item_type_id`, `item_type_server`, `item_type_name`, `item_type_use_type`, `item_type_use_id`, `item_type_use_value`, `item_type_order_price`, `item_type_drop_type`, `item_type_drop_model`, `item_type_drop_pos_x`, `item_type_drop_pos_y`, `item_type_drop_pos_z`, `item_type_drop_rot_x`, `item_type_drop_rot_y`, `item_type_drop_rot_z`, `item_type_drop_scale_x`, `item_type_drop_scale_y`, `item_type_drop_scale_z`, `item_type_image_small`, `item_type_image_large`, `item_type_image_hotbar`, `item_type_size`, `item_type_capacity`, `item_type_demand_multiplier`, `item_type_supply_multiplier`, `item_type_risk_multiplier`, `item_type_enabled`, `item_type_delay_switch`, `item_type_delay_use`, `item_type_delay_pickup`, `item_type_delay_put`, `item_type_delay_take`, `item_type_delay_give`, `item_type_delay_drop`) VALUES + (38, 1, 'Can of Beer', 35, 3, 5, 5, 1, 1319, 0, 0, -1, 1.6, 0, 0, 0, 0, 0, 'no-image.png', 'no-image.png', 'no-image.png', 0, 100, 1, 1, 1, 1, 500, 1500, 750, 750, 750, 500, 500); +INSERT INTO `item_type` (`item_type_id`, `item_type_server`, `item_type_name`, `item_type_use_type`, `item_type_use_id`, `item_type_use_value`, `item_type_order_price`, `item_type_drop_type`, `item_type_drop_model`, `item_type_drop_pos_x`, `item_type_drop_pos_y`, `item_type_drop_pos_z`, `item_type_drop_rot_x`, `item_type_drop_rot_y`, `item_type_drop_rot_z`, `item_type_drop_scale_x`, `item_type_drop_scale_y`, `item_type_drop_scale_z`, `item_type_image_small`, `item_type_image_large`, `item_type_image_hotbar`, `item_type_size`, `item_type_capacity`, `item_type_demand_multiplier`, `item_type_supply_multiplier`, `item_type_risk_multiplier`, `item_type_enabled`, `item_type_delay_switch`, `item_type_delay_use`, `item_type_delay_pickup`, `item_type_delay_put`, `item_type_delay_take`, `item_type_delay_give`, `item_type_delay_drop`) VALUES + (39, 1, 'Bottle of Vodka', 35, 3, 5, 10, 1, 1319, 0, 0, -1, 1.6, 0, 0, 0, 0, 0, 'no-image.png', 'no-image.png', 'no-image.png', 0, 100, 1, 1, 1, 1, 500, 1500, 750, 750, 750, 500, 500); +INSERT INTO `item_type` (`item_type_id`, `item_type_server`, `item_type_name`, `item_type_use_type`, `item_type_use_id`, `item_type_use_value`, `item_type_order_price`, `item_type_drop_type`, `item_type_drop_model`, `item_type_drop_pos_x`, `item_type_drop_pos_y`, `item_type_drop_pos_z`, `item_type_drop_rot_x`, `item_type_drop_rot_y`, `item_type_drop_rot_z`, `item_type_drop_scale_x`, `item_type_drop_scale_y`, `item_type_drop_scale_z`, `item_type_image_small`, `item_type_image_large`, `item_type_image_hotbar`, `item_type_size`, `item_type_capacity`, `item_type_demand_multiplier`, `item_type_supply_multiplier`, `item_type_risk_multiplier`, `item_type_enabled`, `item_type_delay_switch`, `item_type_delay_use`, `item_type_delay_pickup`, `item_type_delay_put`, `item_type_delay_take`, `item_type_delay_give`, `item_type_delay_drop`) VALUES + (40, 1, 'Bottle of Whiskey', 35, 3, 5, 12, 1, 1319, 0, 0, -1, 1.6, 0, 0, 0, 0, 0, 'no-image.png', 'no-image.png', 'no-image.png', 0, 100, 1, 1, 1, 1, 500, 1500, 750, 750, 750, 500, 500); +INSERT INTO `item_type` (`item_type_id`, `item_type_server`, `item_type_name`, `item_type_use_type`, `item_type_use_id`, `item_type_use_value`, `item_type_order_price`, `item_type_drop_type`, `item_type_drop_model`, `item_type_drop_pos_x`, `item_type_drop_pos_y`, `item_type_drop_pos_z`, `item_type_drop_rot_x`, `item_type_drop_rot_y`, `item_type_drop_rot_z`, `item_type_drop_scale_x`, `item_type_drop_scale_y`, `item_type_drop_scale_z`, `item_type_image_small`, `item_type_image_large`, `item_type_image_hotbar`, `item_type_size`, `item_type_capacity`, `item_type_demand_multiplier`, `item_type_supply_multiplier`, `item_type_risk_multiplier`, `item_type_enabled`, `item_type_delay_switch`, `item_type_delay_use`, `item_type_delay_pickup`, `item_type_delay_put`, `item_type_delay_take`, `item_type_delay_give`, `item_type_delay_drop`) VALUES + (41, 1, 'Handcuffs', 24, 0, 0, 100, 0, 1319, 0, 0, -1, 1.6, 0, 0, 0.3, 0.3, 0.2, 'no-image.png', 'no-image.png', 'no-image.png', 0, 0, 1, 1, 1, 1, 500, 1500, 750, 750, 750, 500, 500); +INSERT INTO `item_type` (`item_type_id`, `item_type_server`, `item_type_name`, `item_type_use_type`, `item_type_use_id`, `item_type_use_value`, `item_type_order_price`, `item_type_drop_type`, `item_type_drop_model`, `item_type_drop_pos_x`, `item_type_drop_pos_y`, `item_type_drop_pos_z`, `item_type_drop_rot_x`, `item_type_drop_rot_y`, `item_type_drop_rot_z`, `item_type_drop_scale_x`, `item_type_drop_scale_y`, `item_type_drop_scale_z`, `item_type_image_small`, `item_type_image_large`, `item_type_image_hotbar`, `item_type_size`, `item_type_capacity`, `item_type_demand_multiplier`, `item_type_supply_multiplier`, `item_type_risk_multiplier`, `item_type_enabled`, `item_type_delay_switch`, `item_type_delay_use`, `item_type_delay_pickup`, `item_type_delay_put`, `item_type_delay_take`, `item_type_delay_give`, `item_type_delay_drop`) VALUES + (42, 1, 'Rope', 25, 0, 0, 20, 0, 1319, 0, 0, -1, 1.6, 0, 0, 0, 0, 0, 'no-image.png', 'no-image.png', 'no-image.png', 0, 0, 1, 1, 1, 1, 500, 1500, 750, 750, 750, 500, 500); +INSERT INTO `item_type` (`item_type_id`, `item_type_server`, `item_type_name`, `item_type_use_type`, `item_type_use_id`, `item_type_use_value`, `item_type_order_price`, `item_type_drop_type`, `item_type_drop_model`, `item_type_drop_pos_x`, `item_type_drop_pos_y`, `item_type_drop_pos_z`, `item_type_drop_rot_x`, `item_type_drop_rot_y`, `item_type_drop_rot_z`, `item_type_drop_scale_x`, `item_type_drop_scale_y`, `item_type_drop_scale_z`, `item_type_image_small`, `item_type_image_large`, `item_type_image_hotbar`, `item_type_size`, `item_type_capacity`, `item_type_demand_multiplier`, `item_type_supply_multiplier`, `item_type_risk_multiplier`, `item_type_enabled`, `item_type_delay_switch`, `item_type_delay_use`, `item_type_delay_pickup`, `item_type_delay_put`, `item_type_delay_take`, `item_type_delay_give`, `item_type_delay_drop`) VALUES + (43, 1, 'Blindfold', 26, 0, 0, 20, 0, 1319, 0, 0, -1, 1.6, 0, 0, 0, 0, 0, 'no-image.png', 'no-image.png', 'no-image.png', 0, 0, 1, 1, 1, 1, 500, 1500, 750, 750, 750, 500, 500); +INSERT INTO `item_type` (`item_type_id`, `item_type_server`, `item_type_name`, `item_type_use_type`, `item_type_use_id`, `item_type_use_value`, `item_type_order_price`, `item_type_drop_type`, `item_type_drop_model`, `item_type_drop_pos_x`, `item_type_drop_pos_y`, `item_type_drop_pos_z`, `item_type_drop_rot_x`, `item_type_drop_rot_y`, `item_type_drop_rot_z`, `item_type_drop_scale_x`, `item_type_drop_scale_y`, `item_type_drop_scale_z`, `item_type_image_small`, `item_type_image_large`, `item_type_image_hotbar`, `item_type_size`, `item_type_capacity`, `item_type_demand_multiplier`, `item_type_supply_multiplier`, `item_type_risk_multiplier`, `item_type_enabled`, `item_type_delay_switch`, `item_type_delay_use`, `item_type_delay_pickup`, `item_type_delay_put`, `item_type_delay_take`, `item_type_delay_give`, `item_type_delay_drop`) VALUES + (44, 1, 'Bulletproof Vest', 28, 0, 0, 500, 0, 1319, 0, 0, -1, 1.6, 0, 0, 0, 0, 0, 'no-image.png', 'no-image.png', 'no-image.png', 0, 100, 1, 1, 1, 2, 500, 1500, 750, 750, 750, 500, 500); +INSERT INTO `item_type` (`item_type_id`, `item_type_server`, `item_type_name`, `item_type_use_type`, `item_type_use_id`, `item_type_use_value`, `item_type_order_price`, `item_type_drop_type`, `item_type_drop_model`, `item_type_drop_pos_x`, `item_type_drop_pos_y`, `item_type_drop_pos_z`, `item_type_drop_rot_x`, `item_type_drop_rot_y`, `item_type_drop_rot_z`, `item_type_drop_scale_x`, `item_type_drop_scale_y`, `item_type_drop_scale_z`, `item_type_image_small`, `item_type_image_large`, `item_type_image_hotbar`, `item_type_size`, `item_type_capacity`, `item_type_demand_multiplier`, `item_type_supply_multiplier`, `item_type_risk_multiplier`, `item_type_enabled`, `item_type_delay_switch`, `item_type_delay_use`, `item_type_delay_pickup`, `item_type_delay_put`, `item_type_delay_take`, `item_type_delay_give`, `item_type_delay_drop`) VALUES + (45, 1, 'Uniform', 6, 0, 0, 0, 1, 1319, 0, 0, -1, 1.6, 0, 0, 0, 0, 0, 'no-image.png', 'no-image.png', 'no-image.png', 0, 0, 1, 1, 1, 1, 500, 1500, 750, 750, 750, 500, 500); +INSERT INTO `item_type` (`item_type_id`, `item_type_server`, `item_type_name`, `item_type_use_type`, `item_type_use_id`, `item_type_use_value`, `item_type_order_price`, `item_type_drop_type`, `item_type_drop_model`, `item_type_drop_pos_x`, `item_type_drop_pos_y`, `item_type_drop_pos_z`, `item_type_drop_rot_x`, `item_type_drop_rot_y`, `item_type_drop_rot_z`, `item_type_drop_scale_x`, `item_type_drop_scale_y`, `item_type_drop_scale_z`, `item_type_image_small`, `item_type_image_large`, `item_type_image_hotbar`, `item_type_size`, `item_type_capacity`, `item_type_demand_multiplier`, `item_type_supply_multiplier`, `item_type_risk_multiplier`, `item_type_enabled`, `item_type_delay_switch`, `item_type_delay_use`, `item_type_delay_pickup`, `item_type_delay_put`, `item_type_delay_take`, `item_type_delay_give`, `item_type_delay_drop`) VALUES + (46, 1, 'Fire Extinguisher', 36, 0, 0, 0, 0, 1319, 0, 0, -1, 1.6, 0, 0, 0, 0, 0, 'no-image.png', 'no-image.png', 'no-image.png', 0, 1000, 1, 1, 1, 1, 500, 1500, 750, 750, 750, 500, 500); +INSERT INTO `item_type` (`item_type_id`, `item_type_server`, `item_type_name`, `item_type_use_type`, `item_type_use_id`, `item_type_use_value`, `item_type_order_price`, `item_type_drop_type`, `item_type_drop_model`, `item_type_drop_pos_x`, `item_type_drop_pos_y`, `item_type_drop_pos_z`, `item_type_drop_rot_x`, `item_type_drop_rot_y`, `item_type_drop_rot_z`, `item_type_drop_scale_x`, `item_type_drop_scale_y`, `item_type_drop_scale_z`, `item_type_image_small`, `item_type_image_large`, `item_type_image_hotbar`, `item_type_size`, `item_type_capacity`, `item_type_demand_multiplier`, `item_type_supply_multiplier`, `item_type_risk_multiplier`, `item_type_enabled`, `item_type_delay_switch`, `item_type_delay_use`, `item_type_delay_pickup`, `item_type_delay_put`, `item_type_delay_take`, `item_type_delay_give`, `item_type_delay_drop`) VALUES + (47, 1, 'Tazer', 27, 2, 0, 350, 0, 1319, 0, 0, -1, 1.6, 0, 0, 0, 0, 0, 'no-image.png', 'no-image.png', 'no-image.png', 0, 0, 1, 1, 1, 1, 500, 1500, 750, 750, 750, 500, 500); +INSERT INTO `item_type` (`item_type_id`, `item_type_server`, `item_type_name`, `item_type_use_type`, `item_type_use_id`, `item_type_use_value`, `item_type_order_price`, `item_type_drop_type`, `item_type_drop_model`, `item_type_drop_pos_x`, `item_type_drop_pos_y`, `item_type_drop_pos_z`, `item_type_drop_rot_x`, `item_type_drop_rot_y`, `item_type_drop_rot_z`, `item_type_drop_scale_x`, `item_type_drop_scale_y`, `item_type_drop_scale_z`, `item_type_image_small`, `item_type_image_large`, `item_type_image_hotbar`, `item_type_size`, `item_type_capacity`, `item_type_demand_multiplier`, `item_type_supply_multiplier`, `item_type_risk_multiplier`, `item_type_enabled`, `item_type_delay_switch`, `item_type_delay_use`, `item_type_delay_pickup`, `item_type_delay_put`, `item_type_delay_take`, `item_type_delay_give`, `item_type_delay_drop`) VALUES + (48, 1, 'Pepper Spray', 38, 0, 0, 150, 0, 1319, 0, 0, -1, 1.6, 0, 0, 0, 0, 0, 'no-image.png', 'no-image.png', 'no-image.png', 0, 1000, 1, 1, 1, 1, 500, 1500, 750, 750, 750, 500, 500); +INSERT INTO `item_type` (`item_type_id`, `item_type_server`, `item_type_name`, `item_type_use_type`, `item_type_use_id`, `item_type_use_value`, `item_type_order_price`, `item_type_drop_type`, `item_type_drop_model`, `item_type_drop_pos_x`, `item_type_drop_pos_y`, `item_type_drop_pos_z`, `item_type_drop_rot_x`, `item_type_drop_rot_y`, `item_type_drop_rot_z`, `item_type_drop_scale_x`, `item_type_drop_scale_y`, `item_type_drop_scale_z`, `item_type_image_small`, `item_type_image_large`, `item_type_image_hotbar`, `item_type_size`, `item_type_capacity`, `item_type_demand_multiplier`, `item_type_supply_multiplier`, `item_type_risk_multiplier`, `item_type_enabled`, `item_type_delay_switch`, `item_type_delay_use`, `item_type_delay_pickup`, `item_type_delay_put`, `item_type_delay_take`, `item_type_delay_give`, `item_type_delay_drop`) VALUES + (49, 1, 'Flashlight', 39, 0, 0, 35, 0, 1319, 0, 0, -1, 1.6, 0, 0, 0, 0, 0, 'no-image.png', 'no-image.png', 'no-image.png', 0, 0, 1, 1, 1, 1, 500, 1500, 750, 750, 750, 500, 500); +INSERT INTO `item_type` (`item_type_id`, `item_type_server`, `item_type_name`, `item_type_use_type`, `item_type_use_id`, `item_type_use_value`, `item_type_order_price`, `item_type_drop_type`, `item_type_drop_model`, `item_type_drop_pos_x`, `item_type_drop_pos_y`, `item_type_drop_pos_z`, `item_type_drop_rot_x`, `item_type_drop_rot_y`, `item_type_drop_rot_z`, `item_type_drop_scale_x`, `item_type_drop_scale_y`, `item_type_drop_scale_z`, `item_type_image_small`, `item_type_image_large`, `item_type_image_hotbar`, `item_type_size`, `item_type_capacity`, `item_type_demand_multiplier`, `item_type_supply_multiplier`, `item_type_risk_multiplier`, `item_type_enabled`, `item_type_delay_switch`, `item_type_delay_use`, `item_type_delay_pickup`, `item_type_delay_put`, `item_type_delay_take`, `item_type_delay_give`, `item_type_delay_drop`) VALUES + (50, 1, 'First Aid Kit', 29, 0, 50, 75, 0, 1319, 0, 0, -1, 1.6, 0, 0, 0, 0, 0, 'no-image.png', 'no-image.png', 'no-image.png', 0, 100, 1, 1, 1, 1, 500, 1500, 750, 750, 750, 500, 500); +INSERT INTO `item_type` (`item_type_id`, `item_type_server`, `item_type_name`, `item_type_use_type`, `item_type_use_id`, `item_type_use_value`, `item_type_order_price`, `item_type_drop_type`, `item_type_drop_model`, `item_type_drop_pos_x`, `item_type_drop_pos_y`, `item_type_drop_pos_z`, `item_type_drop_rot_x`, `item_type_drop_rot_y`, `item_type_drop_rot_z`, `item_type_drop_scale_x`, `item_type_drop_scale_y`, `item_type_drop_scale_z`, `item_type_image_small`, `item_type_image_large`, `item_type_image_hotbar`, `item_type_size`, `item_type_capacity`, `item_type_demand_multiplier`, `item_type_supply_multiplier`, `item_type_risk_multiplier`, `item_type_enabled`, `item_type_delay_switch`, `item_type_delay_use`, `item_type_delay_pickup`, `item_type_delay_put`, `item_type_delay_take`, `item_type_delay_give`, `item_type_delay_drop`) VALUES + (51, 1, 'AED', 29, 0, 100, 3000, 0, 1319, 0, 0, -1, 1.6, 0, 0, 0, 0, 0, 'no-image.png', 'no-image.png', 'no-image.png', 0, 100, 1, 1, 1, 1, 500, 1500, 750, 750, 750, 500, 500); +INSERT INTO `item_type` (`item_type_id`, `item_type_server`, `item_type_name`, `item_type_use_type`, `item_type_use_id`, `item_type_use_value`, `item_type_order_price`, `item_type_drop_type`, `item_type_drop_model`, `item_type_drop_pos_x`, `item_type_drop_pos_y`, `item_type_drop_pos_z`, `item_type_drop_rot_x`, `item_type_drop_rot_y`, `item_type_drop_rot_z`, `item_type_drop_scale_x`, `item_type_drop_scale_y`, `item_type_drop_scale_z`, `item_type_image_small`, `item_type_image_large`, `item_type_image_hotbar`, `item_type_size`, `item_type_capacity`, `item_type_demand_multiplier`, `item_type_supply_multiplier`, `item_type_risk_multiplier`, `item_type_enabled`, `item_type_delay_switch`, `item_type_delay_use`, `item_type_delay_pickup`, `item_type_delay_put`, `item_type_delay_take`, `item_type_delay_give`, `item_type_delay_drop`) VALUES + (52, 1, 'Morphine Syringe', 29, 0, 100, 650, 0, 1319, 0, 0, -1, 1.6, 0, 0, 0, 0, 0, 'no-image.png', 'no-image.png', 'no-image.png', 0, 100, 1, 1, 1, 1, 500, 1500, 750, 750, 750, 500, 500); +INSERT INTO `item_type` (`item_type_id`, `item_type_server`, `item_type_name`, `item_type_use_type`, `item_type_use_id`, `item_type_use_value`, `item_type_order_price`, `item_type_drop_type`, `item_type_drop_model`, `item_type_drop_pos_x`, `item_type_drop_pos_y`, `item_type_drop_pos_z`, `item_type_drop_rot_x`, `item_type_drop_rot_y`, `item_type_drop_rot_z`, `item_type_drop_scale_x`, `item_type_drop_scale_y`, `item_type_drop_scale_z`, `item_type_image_small`, `item_type_image_large`, `item_type_image_hotbar`, `item_type_size`, `item_type_capacity`, `item_type_demand_multiplier`, `item_type_supply_multiplier`, `item_type_risk_multiplier`, `item_type_enabled`, `item_type_delay_switch`, `item_type_delay_use`, `item_type_delay_pickup`, `item_type_delay_put`, `item_type_delay_take`, `item_type_delay_give`, `item_type_delay_drop`) VALUES + (54, 1, 'Cheeseburger', 19, 0, 10, 5, 0, 1319, 0, 0, -1, 1.6, 0, 0, 0, 0, 0, 'no-image.png', 'no-image.png', 'no-image.png', 0, 100, 1, 1, 1, 1, 500, 1500, 750, 750, 750, 500, 500); +INSERT INTO `item_type` (`item_type_id`, `item_type_server`, `item_type_name`, `item_type_use_type`, `item_type_use_id`, `item_type_use_value`, `item_type_order_price`, `item_type_drop_type`, `item_type_drop_model`, `item_type_drop_pos_x`, `item_type_drop_pos_y`, `item_type_drop_pos_z`, `item_type_drop_rot_x`, `item_type_drop_rot_y`, `item_type_drop_rot_z`, `item_type_drop_scale_x`, `item_type_drop_scale_y`, `item_type_drop_scale_z`, `item_type_image_small`, `item_type_image_large`, `item_type_image_hotbar`, `item_type_size`, `item_type_capacity`, `item_type_demand_multiplier`, `item_type_supply_multiplier`, `item_type_risk_multiplier`, `item_type_enabled`, `item_type_delay_switch`, `item_type_delay_use`, `item_type_delay_pickup`, `item_type_delay_put`, `item_type_delay_take`, `item_type_delay_give`, `item_type_delay_drop`) VALUES + (55, 1, 'Slice of Pizza', 19, 0, 10, 5, 0, 1319, 0, 0, -1, 1.6, 0, 0, 0, 0, 0, 'no-image.png', 'no-image.png', 'no-image.png', 0, 100, 1, 1, 1, 1, 500, 1500, 750, 750, 750, 500, 500); +INSERT INTO `item_type` (`item_type_id`, `item_type_server`, `item_type_name`, `item_type_use_type`, `item_type_use_id`, `item_type_use_value`, `item_type_order_price`, `item_type_drop_type`, `item_type_drop_model`, `item_type_drop_pos_x`, `item_type_drop_pos_y`, `item_type_drop_pos_z`, `item_type_drop_rot_x`, `item_type_drop_rot_y`, `item_type_drop_rot_z`, `item_type_drop_scale_x`, `item_type_drop_scale_y`, `item_type_drop_scale_z`, `item_type_image_small`, `item_type_image_large`, `item_type_image_hotbar`, `item_type_size`, `item_type_capacity`, `item_type_demand_multiplier`, `item_type_supply_multiplier`, `item_type_risk_multiplier`, `item_type_enabled`, `item_type_delay_switch`, `item_type_delay_use`, `item_type_delay_pickup`, `item_type_delay_put`, `item_type_delay_take`, `item_type_delay_give`, `item_type_delay_drop`) VALUES + (56, 1, 'Chicken Wing', 19, 0, 10, 5, 0, 1319, 0, 0, -1, 1.6, 0, 0, 0.1, 0.1, 0.1, 'no-image.png', 'no-image.png', 'no-image.png', 0, 100, 1, 1, 1, 1, 500, 1500, 750, 750, 750, 500, 500); +INSERT INTO `item_type` (`item_type_id`, `item_type_server`, `item_type_name`, `item_type_use_type`, `item_type_use_id`, `item_type_use_value`, `item_type_order_price`, `item_type_drop_type`, `item_type_drop_model`, `item_type_drop_pos_x`, `item_type_drop_pos_y`, `item_type_drop_pos_z`, `item_type_drop_rot_x`, `item_type_drop_rot_y`, `item_type_drop_rot_z`, `item_type_drop_scale_x`, `item_type_drop_scale_y`, `item_type_drop_scale_z`, `item_type_image_small`, `item_type_image_large`, `item_type_image_hotbar`, `item_type_size`, `item_type_capacity`, `item_type_demand_multiplier`, `item_type_supply_multiplier`, `item_type_risk_multiplier`, `item_type_enabled`, `item_type_delay_switch`, `item_type_delay_use`, `item_type_delay_pickup`, `item_type_delay_put`, `item_type_delay_take`, `item_type_delay_give`, `item_type_delay_drop`) VALUES + (57, 1, 'Pizza', 19, 0, 10, 15, 0, 1319, 0, 0, -1, 1.6, 0, 0, 0.1, 0.1, 0.1, 'no-image.png', 'no-image.png', 'no-image.png', 0, 100, 1, 1, 1, 1, 500, 0, 750, 750, 750, 500, 500); +INSERT INTO `item_type` (`item_type_id`, `item_type_server`, `item_type_name`, `item_type_use_type`, `item_type_use_id`, `item_type_use_value`, `item_type_order_price`, `item_type_drop_type`, `item_type_drop_model`, `item_type_drop_pos_x`, `item_type_drop_pos_y`, `item_type_drop_pos_z`, `item_type_drop_rot_x`, `item_type_drop_rot_y`, `item_type_drop_rot_z`, `item_type_drop_scale_x`, `item_type_drop_scale_y`, `item_type_drop_scale_z`, `item_type_image_small`, `item_type_image_large`, `item_type_image_hotbar`, `item_type_size`, `item_type_capacity`, `item_type_demand_multiplier`, `item_type_supply_multiplier`, `item_type_risk_multiplier`, `item_type_enabled`, `item_type_delay_switch`, `item_type_delay_use`, `item_type_delay_pickup`, `item_type_delay_put`, `item_type_delay_take`, `item_type_delay_give`, `item_type_delay_drop`) VALUES + (58, 1, 'Walkie Talkie', 31, 0, 0, 50, 0, 182, 0, 0, -1, 1.6, 0, 0, 0, 0, 0, 'no-image.png', 'no-image.png', 'no-image.png', 0, 0, 1, 1, 1, 1, 500, 0, 750, 750, 750, 750, 750); +INSERT INTO `item_type` (`item_type_id`, `item_type_server`, `item_type_name`, `item_type_use_type`, `item_type_use_id`, `item_type_use_value`, `item_type_order_price`, `item_type_drop_type`, `item_type_drop_model`, `item_type_drop_pos_x`, `item_type_drop_pos_y`, `item_type_drop_pos_z`, `item_type_drop_rot_x`, `item_type_drop_rot_y`, `item_type_drop_rot_z`, `item_type_drop_scale_x`, `item_type_drop_scale_y`, `item_type_drop_scale_z`, `item_type_image_small`, `item_type_image_large`, `item_type_image_hotbar`, `item_type_size`, `item_type_capacity`, `item_type_demand_multiplier`, `item_type_supply_multiplier`, `item_type_risk_multiplier`, `item_type_enabled`, `item_type_delay_switch`, `item_type_delay_use`, `item_type_delay_pickup`, `item_type_delay_put`, `item_type_delay_take`, `item_type_delay_give`, `item_type_delay_drop`) VALUES + (61, 1, 'Bottle of Soda', 35, 2, 0, 0, 0, 0, 0, 0, -1, 1.6, 0, 0, 0, 0, 0, 'no-image.png', 'no-image.png', 'no-image.png', 0, 100, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `item_type` (`item_type_id`, `item_type_server`, `item_type_name`, `item_type_use_type`, `item_type_use_id`, `item_type_use_value`, `item_type_order_price`, `item_type_drop_type`, `item_type_drop_model`, `item_type_drop_pos_x`, `item_type_drop_pos_y`, `item_type_drop_pos_z`, `item_type_drop_rot_x`, `item_type_drop_rot_y`, `item_type_drop_rot_z`, `item_type_drop_scale_x`, `item_type_drop_scale_y`, `item_type_drop_scale_z`, `item_type_image_small`, `item_type_image_large`, `item_type_image_hotbar`, `item_type_size`, `item_type_capacity`, `item_type_demand_multiplier`, `item_type_supply_multiplier`, `item_type_risk_multiplier`, `item_type_enabled`, `item_type_delay_switch`, `item_type_delay_use`, `item_type_delay_pickup`, `item_type_delay_put`, `item_type_delay_take`, `item_type_delay_give`, `item_type_delay_drop`) VALUES + (62, 1, 'Can of Soda', 35, 2, 0, 0, 0, 0, 0, 0, -1, 1.6, 0, 0, 0, 0, 0, 'no-image.png', 'no-image.png', 'no-image.png', 0, 100, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `item_type` (`item_type_id`, `item_type_server`, `item_type_name`, `item_type_use_type`, `item_type_use_id`, `item_type_use_value`, `item_type_order_price`, `item_type_drop_type`, `item_type_drop_model`, `item_type_drop_pos_x`, `item_type_drop_pos_y`, `item_type_drop_pos_z`, `item_type_drop_rot_x`, `item_type_drop_rot_y`, `item_type_drop_rot_z`, `item_type_drop_scale_x`, `item_type_drop_scale_y`, `item_type_drop_scale_z`, `item_type_image_small`, `item_type_image_large`, `item_type_image_hotbar`, `item_type_size`, `item_type_capacity`, `item_type_demand_multiplier`, `item_type_supply_multiplier`, `item_type_risk_multiplier`, `item_type_enabled`, `item_type_delay_switch`, `item_type_delay_use`, `item_type_delay_pickup`, `item_type_delay_put`, `item_type_delay_take`, `item_type_delay_give`, `item_type_delay_drop`) VALUES + (63, 1, 'Badge', 34, 0, 0, 0, 0, 0, 0, 0, -1, 1.6, 0, 0, 0, 0, 0, 'no-image.png', 'no-image.png', 'no-image.png', 0, 0, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `item_type` (`item_type_id`, `item_type_server`, `item_type_name`, `item_type_use_type`, `item_type_use_id`, `item_type_use_value`, `item_type_order_price`, `item_type_drop_type`, `item_type_drop_model`, `item_type_drop_pos_x`, `item_type_drop_pos_y`, `item_type_drop_pos_z`, `item_type_drop_rot_x`, `item_type_drop_rot_y`, `item_type_drop_rot_z`, `item_type_drop_scale_x`, `item_type_drop_scale_y`, `item_type_drop_scale_z`, `item_type_image_small`, `item_type_image_large`, `item_type_image_hotbar`, `item_type_size`, `item_type_capacity`, `item_type_demand_multiplier`, `item_type_supply_multiplier`, `item_type_risk_multiplier`, `item_type_enabled`, `item_type_delay_switch`, `item_type_delay_use`, `item_type_delay_pickup`, `item_type_delay_put`, `item_type_delay_take`, `item_type_delay_give`, `item_type_delay_drop`) VALUES + (64, 2, 'Brass Knuckles', 1, 1, 0, 25, 0, 259, 0, 0, -1, 1.6, 0, 0, 0, 0, 0, 'no-image.png', 'no-image.png', 'no-image.png', 0, 0, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `item_type` (`item_type_id`, `item_type_server`, `item_type_name`, `item_type_use_type`, `item_type_use_id`, `item_type_use_value`, `item_type_order_price`, `item_type_drop_type`, `item_type_drop_model`, `item_type_drop_pos_x`, `item_type_drop_pos_y`, `item_type_drop_pos_z`, `item_type_drop_rot_x`, `item_type_drop_rot_y`, `item_type_drop_rot_z`, `item_type_drop_scale_x`, `item_type_drop_scale_y`, `item_type_drop_scale_z`, `item_type_image_small`, `item_type_image_large`, `item_type_image_hotbar`, `item_type_size`, `item_type_capacity`, `item_type_demand_multiplier`, `item_type_supply_multiplier`, `item_type_risk_multiplier`, `item_type_enabled`, `item_type_delay_switch`, `item_type_delay_use`, `item_type_delay_pickup`, `item_type_delay_put`, `item_type_delay_take`, `item_type_delay_give`, `item_type_delay_drop`) VALUES + (65, 2, 'Screwdriver', 1, 2, 0, 10, 0, 260, 0, 0, -1, 1.6, 0, 0, 0, 0, 0, 'no-image.png', 'no-image.png', 'no-image.png', 0, 0, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `item_type` (`item_type_id`, `item_type_server`, `item_type_name`, `item_type_use_type`, `item_type_use_id`, `item_type_use_value`, `item_type_order_price`, `item_type_drop_type`, `item_type_drop_model`, `item_type_drop_pos_x`, `item_type_drop_pos_y`, `item_type_drop_pos_z`, `item_type_drop_rot_x`, `item_type_drop_rot_y`, `item_type_drop_rot_z`, `item_type_drop_scale_x`, `item_type_drop_scale_y`, `item_type_drop_scale_z`, `item_type_image_small`, `item_type_image_large`, `item_type_image_hotbar`, `item_type_size`, `item_type_capacity`, `item_type_demand_multiplier`, `item_type_supply_multiplier`, `item_type_risk_multiplier`, `item_type_enabled`, `item_type_delay_switch`, `item_type_delay_use`, `item_type_delay_pickup`, `item_type_delay_put`, `item_type_delay_take`, `item_type_delay_give`, `item_type_delay_drop`) VALUES + (66, 2, 'Golf Club', 1, 3, 0, 40, 0, 261, 0, 0, -1, 1.6, 0, 0, 0, 0, 0, 'no-image.png', 'no-image.png', 'no-image.png', 0, 0, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `item_type` (`item_type_id`, `item_type_server`, `item_type_name`, `item_type_use_type`, `item_type_use_id`, `item_type_use_value`, `item_type_order_price`, `item_type_drop_type`, `item_type_drop_model`, `item_type_drop_pos_x`, `item_type_drop_pos_y`, `item_type_drop_pos_z`, `item_type_drop_rot_x`, `item_type_drop_rot_y`, `item_type_drop_rot_z`, `item_type_drop_scale_x`, `item_type_drop_scale_y`, `item_type_drop_scale_z`, `item_type_image_small`, `item_type_image_large`, `item_type_image_hotbar`, `item_type_size`, `item_type_capacity`, `item_type_demand_multiplier`, `item_type_supply_multiplier`, `item_type_risk_multiplier`, `item_type_enabled`, `item_type_delay_switch`, `item_type_delay_use`, `item_type_delay_pickup`, `item_type_delay_put`, `item_type_delay_take`, `item_type_delay_give`, `item_type_delay_drop`) VALUES + (67, 2, 'Nitestick', 1, 4, 0, 40, 0, 262, 0, 0, -1, 1.6, 0, 0, 0, 0, 0, 'no-image.png', 'no-image.png', 'no-image.png', 0, 0, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `item_type` (`item_type_id`, `item_type_server`, `item_type_name`, `item_type_use_type`, `item_type_use_id`, `item_type_use_value`, `item_type_order_price`, `item_type_drop_type`, `item_type_drop_model`, `item_type_drop_pos_x`, `item_type_drop_pos_y`, `item_type_drop_pos_z`, `item_type_drop_rot_x`, `item_type_drop_rot_y`, `item_type_drop_rot_z`, `item_type_drop_scale_x`, `item_type_drop_scale_y`, `item_type_drop_scale_z`, `item_type_image_small`, `item_type_image_large`, `item_type_image_hotbar`, `item_type_size`, `item_type_capacity`, `item_type_demand_multiplier`, `item_type_supply_multiplier`, `item_type_risk_multiplier`, `item_type_enabled`, `item_type_delay_switch`, `item_type_delay_use`, `item_type_delay_pickup`, `item_type_delay_put`, `item_type_delay_take`, `item_type_delay_give`, `item_type_delay_drop`) VALUES + (68, 2, 'Knife', 1, 5, 0, 35, 0, 263, 0, 0, -1, 1.6, 0, 0, 0, 0, 0, 'no-image.png', 'no-image.png', 'no-image.png', 0, 0, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `item_type` (`item_type_id`, `item_type_server`, `item_type_name`, `item_type_use_type`, `item_type_use_id`, `item_type_use_value`, `item_type_order_price`, `item_type_drop_type`, `item_type_drop_model`, `item_type_drop_pos_x`, `item_type_drop_pos_y`, `item_type_drop_pos_z`, `item_type_drop_rot_x`, `item_type_drop_rot_y`, `item_type_drop_rot_z`, `item_type_drop_scale_x`, `item_type_drop_scale_y`, `item_type_drop_scale_z`, `item_type_image_small`, `item_type_image_large`, `item_type_image_hotbar`, `item_type_size`, `item_type_capacity`, `item_type_demand_multiplier`, `item_type_supply_multiplier`, `item_type_risk_multiplier`, `item_type_enabled`, `item_type_delay_switch`, `item_type_delay_use`, `item_type_delay_pickup`, `item_type_delay_put`, `item_type_delay_take`, `item_type_delay_give`, `item_type_delay_drop`) VALUES + (69, 2, 'Baseball Bat', 1, 6, 0, 25, 0, 264, 0, 0, -1, 1.6, 0, 0, 0, 0, 0, 'no-image.png', 'no-image.png', 'no-image.png', 0, 0, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `item_type` (`item_type_id`, `item_type_server`, `item_type_name`, `item_type_use_type`, `item_type_use_id`, `item_type_use_value`, `item_type_order_price`, `item_type_drop_type`, `item_type_drop_model`, `item_type_drop_pos_x`, `item_type_drop_pos_y`, `item_type_drop_pos_z`, `item_type_drop_rot_x`, `item_type_drop_rot_y`, `item_type_drop_rot_z`, `item_type_drop_scale_x`, `item_type_drop_scale_y`, `item_type_drop_scale_z`, `item_type_image_small`, `item_type_image_large`, `item_type_image_hotbar`, `item_type_size`, `item_type_capacity`, `item_type_demand_multiplier`, `item_type_supply_multiplier`, `item_type_risk_multiplier`, `item_type_enabled`, `item_type_delay_switch`, `item_type_delay_use`, `item_type_delay_pickup`, `item_type_delay_put`, `item_type_delay_take`, `item_type_delay_give`, `item_type_delay_drop`) VALUES + (70, 2, 'Hammer', 1, 7, 0, 12, 0, 265, 0, 0, -1, 1.6, 0, 0, 0, 0, 0, 'no-image.png', 'no-image.png', 'no-image.png', 0, 0, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `item_type` (`item_type_id`, `item_type_server`, `item_type_name`, `item_type_use_type`, `item_type_use_id`, `item_type_use_value`, `item_type_order_price`, `item_type_drop_type`, `item_type_drop_model`, `item_type_drop_pos_x`, `item_type_drop_pos_y`, `item_type_drop_pos_z`, `item_type_drop_rot_x`, `item_type_drop_rot_y`, `item_type_drop_rot_z`, `item_type_drop_scale_x`, `item_type_drop_scale_y`, `item_type_drop_scale_z`, `item_type_image_small`, `item_type_image_large`, `item_type_image_hotbar`, `item_type_size`, `item_type_capacity`, `item_type_demand_multiplier`, `item_type_supply_multiplier`, `item_type_risk_multiplier`, `item_type_enabled`, `item_type_delay_switch`, `item_type_delay_use`, `item_type_delay_pickup`, `item_type_delay_put`, `item_type_delay_take`, `item_type_delay_give`, `item_type_delay_drop`) VALUES + (71, 2, 'Meat Cleaver', 1, 8, 0, 12, 0, 266, 0, 0, -1, 1.6, 0, 0, 0, 0, 0, 'no-image.png', 'no-image.png', 'no-image.png', 0, 0, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `item_type` (`item_type_id`, `item_type_server`, `item_type_name`, `item_type_use_type`, `item_type_use_id`, `item_type_use_value`, `item_type_order_price`, `item_type_drop_type`, `item_type_drop_model`, `item_type_drop_pos_x`, `item_type_drop_pos_y`, `item_type_drop_pos_z`, `item_type_drop_rot_x`, `item_type_drop_rot_y`, `item_type_drop_rot_z`, `item_type_drop_scale_x`, `item_type_drop_scale_y`, `item_type_drop_scale_z`, `item_type_image_small`, `item_type_image_large`, `item_type_image_hotbar`, `item_type_size`, `item_type_capacity`, `item_type_demand_multiplier`, `item_type_supply_multiplier`, `item_type_risk_multiplier`, `item_type_enabled`, `item_type_delay_switch`, `item_type_delay_use`, `item_type_delay_pickup`, `item_type_delay_put`, `item_type_delay_take`, `item_type_delay_give`, `item_type_delay_drop`) VALUES + (72, 2, 'Machete', 1, 9, 0, 100, 0, 267, 0, 0, -1, 1.6, 0, 0, 0, 0, 0, 'no-image.png', 'no-image.png', 'no-image.png', 0, 0, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `item_type` (`item_type_id`, `item_type_server`, `item_type_name`, `item_type_use_type`, `item_type_use_id`, `item_type_use_value`, `item_type_order_price`, `item_type_drop_type`, `item_type_drop_model`, `item_type_drop_pos_x`, `item_type_drop_pos_y`, `item_type_drop_pos_z`, `item_type_drop_rot_x`, `item_type_drop_rot_y`, `item_type_drop_rot_z`, `item_type_drop_scale_x`, `item_type_drop_scale_y`, `item_type_drop_scale_z`, `item_type_image_small`, `item_type_image_large`, `item_type_image_hotbar`, `item_type_size`, `item_type_capacity`, `item_type_demand_multiplier`, `item_type_supply_multiplier`, `item_type_risk_multiplier`, `item_type_enabled`, `item_type_delay_switch`, `item_type_delay_use`, `item_type_delay_pickup`, `item_type_delay_put`, `item_type_delay_take`, `item_type_delay_give`, `item_type_delay_drop`) VALUES + (73, 2, 'Katana', 1, 10, 0, 250, 0, 268, 0, 0, -1, 1.6, 0, 0, 0, 0, 0, 'no-image.png', 'no-image.png', 'no-image.png', 0, 0, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `item_type` (`item_type_id`, `item_type_server`, `item_type_name`, `item_type_use_type`, `item_type_use_id`, `item_type_use_value`, `item_type_order_price`, `item_type_drop_type`, `item_type_drop_model`, `item_type_drop_pos_x`, `item_type_drop_pos_y`, `item_type_drop_pos_z`, `item_type_drop_rot_x`, `item_type_drop_rot_y`, `item_type_drop_rot_z`, `item_type_drop_scale_x`, `item_type_drop_scale_y`, `item_type_drop_scale_z`, `item_type_image_small`, `item_type_image_large`, `item_type_image_hotbar`, `item_type_size`, `item_type_capacity`, `item_type_demand_multiplier`, `item_type_supply_multiplier`, `item_type_risk_multiplier`, `item_type_enabled`, `item_type_delay_switch`, `item_type_delay_use`, `item_type_delay_pickup`, `item_type_delay_put`, `item_type_delay_take`, `item_type_delay_give`, `item_type_delay_drop`) VALUES + (74, 2, 'Chainsaw', 1, 11, 0, 350, 0, 269, 0, 0, -1, 1.6, 0, 0, 0, 0, 0, 'no-image.png', 'no-image.png', 'no-image.png', 0, 0, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `item_type` (`item_type_id`, `item_type_server`, `item_type_name`, `item_type_use_type`, `item_type_use_id`, `item_type_use_value`, `item_type_order_price`, `item_type_drop_type`, `item_type_drop_model`, `item_type_drop_pos_x`, `item_type_drop_pos_y`, `item_type_drop_pos_z`, `item_type_drop_rot_x`, `item_type_drop_rot_y`, `item_type_drop_rot_z`, `item_type_drop_scale_x`, `item_type_drop_scale_y`, `item_type_drop_scale_z`, `item_type_image_small`, `item_type_image_large`, `item_type_image_hotbar`, `item_type_size`, `item_type_capacity`, `item_type_demand_multiplier`, `item_type_supply_multiplier`, `item_type_risk_multiplier`, `item_type_enabled`, `item_type_delay_switch`, `item_type_delay_use`, `item_type_delay_pickup`, `item_type_delay_put`, `item_type_delay_take`, `item_type_delay_give`, `item_type_delay_drop`) VALUES + (75, 2, 'Grenade', 1, 12, 0, 500, 0, 270, 0, 0, -1, 1.6, 0, 0, 0, 0, 0, 'no-image.png', 'no-image.png', 'no-image.png', 0, 0, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `item_type` (`item_type_id`, `item_type_server`, `item_type_name`, `item_type_use_type`, `item_type_use_id`, `item_type_use_value`, `item_type_order_price`, `item_type_drop_type`, `item_type_drop_model`, `item_type_drop_pos_x`, `item_type_drop_pos_y`, `item_type_drop_pos_z`, `item_type_drop_rot_x`, `item_type_drop_rot_y`, `item_type_drop_rot_z`, `item_type_drop_scale_x`, `item_type_drop_scale_y`, `item_type_drop_scale_z`, `item_type_image_small`, `item_type_image_large`, `item_type_image_hotbar`, `item_type_size`, `item_type_capacity`, `item_type_demand_multiplier`, `item_type_supply_multiplier`, `item_type_risk_multiplier`, `item_type_enabled`, `item_type_delay_switch`, `item_type_delay_use`, `item_type_delay_pickup`, `item_type_delay_put`, `item_type_delay_take`, `item_type_delay_give`, `item_type_delay_drop`) VALUES + (76, 2, 'Remote Grenade', 1, 13, 0, 1000, 0, 270, 0, 0, -1, 1.6, 0, 0, 0, 0, 0, 'no-image.png', 'no-image.png', 'no-image.png', 0, 0, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `item_type` (`item_type_id`, `item_type_server`, `item_type_name`, `item_type_use_type`, `item_type_use_id`, `item_type_use_value`, `item_type_order_price`, `item_type_drop_type`, `item_type_drop_model`, `item_type_drop_pos_x`, `item_type_drop_pos_y`, `item_type_drop_pos_z`, `item_type_drop_rot_x`, `item_type_drop_rot_y`, `item_type_drop_rot_z`, `item_type_drop_scale_x`, `item_type_drop_scale_y`, `item_type_drop_scale_z`, `item_type_image_small`, `item_type_image_large`, `item_type_image_hotbar`, `item_type_size`, `item_type_capacity`, `item_type_demand_multiplier`, `item_type_supply_multiplier`, `item_type_risk_multiplier`, `item_type_enabled`, `item_type_delay_switch`, `item_type_delay_use`, `item_type_delay_pickup`, `item_type_delay_put`, `item_type_delay_take`, `item_type_delay_give`, `item_type_delay_drop`) VALUES + (77, 2, 'Teargas', 1, 14, 0, 150, 0, 271, 0, 0, -1, 1.6, 0, 0, 0, 0, 0, 'no-image.png', 'no-image.png', 'no-image.png', 0, 0, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `item_type` (`item_type_id`, `item_type_server`, `item_type_name`, `item_type_use_type`, `item_type_use_id`, `item_type_use_value`, `item_type_order_price`, `item_type_drop_type`, `item_type_drop_model`, `item_type_drop_pos_x`, `item_type_drop_pos_y`, `item_type_drop_pos_z`, `item_type_drop_rot_x`, `item_type_drop_rot_y`, `item_type_drop_rot_z`, `item_type_drop_scale_x`, `item_type_drop_scale_y`, `item_type_drop_scale_z`, `item_type_image_small`, `item_type_image_large`, `item_type_image_hotbar`, `item_type_size`, `item_type_capacity`, `item_type_demand_multiplier`, `item_type_supply_multiplier`, `item_type_risk_multiplier`, `item_type_enabled`, `item_type_delay_switch`, `item_type_delay_use`, `item_type_delay_pickup`, `item_type_delay_put`, `item_type_delay_take`, `item_type_delay_give`, `item_type_delay_drop`) VALUES + (78, 2, 'Molotov Cocktail', 1, 15, 0, 150, 0, 272, 0, 0, -1, 1.6, 0, 0, 0, 0, 0, 'no-image.png', 'no-image.png', 'no-image.png', 0, 0, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `item_type` (`item_type_id`, `item_type_server`, `item_type_name`, `item_type_use_type`, `item_type_use_id`, `item_type_use_value`, `item_type_order_price`, `item_type_drop_type`, `item_type_drop_model`, `item_type_drop_pos_x`, `item_type_drop_pos_y`, `item_type_drop_pos_z`, `item_type_drop_rot_x`, `item_type_drop_rot_y`, `item_type_drop_rot_z`, `item_type_drop_scale_x`, `item_type_drop_scale_y`, `item_type_drop_scale_z`, `item_type_image_small`, `item_type_image_large`, `item_type_image_hotbar`, `item_type_size`, `item_type_capacity`, `item_type_demand_multiplier`, `item_type_supply_multiplier`, `item_type_risk_multiplier`, `item_type_enabled`, `item_type_delay_switch`, `item_type_delay_use`, `item_type_delay_pickup`, `item_type_delay_put`, `item_type_delay_take`, `item_type_delay_give`, `item_type_delay_drop`) VALUES + (79, 2, 'Rocket (Unfirable)', 1, 16, 0, 0, 0, 273, 0, 0, -1, 1.6, 0, 0, 0, 0, 0, 'no-image.png', 'no-image.png', 'no-image.png', 0, 0, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `item_type` (`item_type_id`, `item_type_server`, `item_type_name`, `item_type_use_type`, `item_type_use_id`, `item_type_use_value`, `item_type_order_price`, `item_type_drop_type`, `item_type_drop_model`, `item_type_drop_pos_x`, `item_type_drop_pos_y`, `item_type_drop_pos_z`, `item_type_drop_rot_x`, `item_type_drop_rot_y`, `item_type_drop_rot_z`, `item_type_drop_scale_x`, `item_type_drop_scale_y`, `item_type_drop_scale_z`, `item_type_image_small`, `item_type_image_large`, `item_type_image_hotbar`, `item_type_size`, `item_type_capacity`, `item_type_demand_multiplier`, `item_type_supply_multiplier`, `item_type_risk_multiplier`, `item_type_enabled`, `item_type_delay_switch`, `item_type_delay_use`, `item_type_delay_pickup`, `item_type_delay_put`, `item_type_delay_take`, `item_type_delay_give`, `item_type_delay_drop`) VALUES + (80, 2, 'Colt .45', 1, 17, 0, 350, 0, 274, 0, 0, -1, 1.6, 0, 0, 0, 0, 0, 'no-image.png', 'no-image.png', 'no-image.png', 0, 0, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `item_type` (`item_type_id`, `item_type_server`, `item_type_name`, `item_type_use_type`, `item_type_use_id`, `item_type_use_value`, `item_type_order_price`, `item_type_drop_type`, `item_type_drop_model`, `item_type_drop_pos_x`, `item_type_drop_pos_y`, `item_type_drop_pos_z`, `item_type_drop_rot_x`, `item_type_drop_rot_y`, `item_type_drop_rot_z`, `item_type_drop_scale_x`, `item_type_drop_scale_y`, `item_type_drop_scale_z`, `item_type_image_small`, `item_type_image_large`, `item_type_image_hotbar`, `item_type_size`, `item_type_capacity`, `item_type_demand_multiplier`, `item_type_supply_multiplier`, `item_type_risk_multiplier`, `item_type_enabled`, `item_type_delay_switch`, `item_type_delay_use`, `item_type_delay_pickup`, `item_type_delay_put`, `item_type_delay_take`, `item_type_delay_give`, `item_type_delay_drop`) VALUES + (81, 2, 'Python', 1, 18, 0, 450, 0, 275, 0, 0, -1, 1.6, 0, 0, 0, 0, 0, 'no-image.png', 'no-image.png', 'no-image.png', 0, 0, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `item_type` (`item_type_id`, `item_type_server`, `item_type_name`, `item_type_use_type`, `item_type_use_id`, `item_type_use_value`, `item_type_order_price`, `item_type_drop_type`, `item_type_drop_model`, `item_type_drop_pos_x`, `item_type_drop_pos_y`, `item_type_drop_pos_z`, `item_type_drop_rot_x`, `item_type_drop_rot_y`, `item_type_drop_rot_z`, `item_type_drop_scale_x`, `item_type_drop_scale_y`, `item_type_drop_scale_z`, `item_type_image_small`, `item_type_image_large`, `item_type_image_hotbar`, `item_type_size`, `item_type_capacity`, `item_type_demand_multiplier`, `item_type_supply_multiplier`, `item_type_risk_multiplier`, `item_type_enabled`, `item_type_delay_switch`, `item_type_delay_use`, `item_type_delay_pickup`, `item_type_delay_put`, `item_type_delay_take`, `item_type_delay_give`, `item_type_delay_drop`) VALUES + (82, 2, 'Shotgun', 1, 19, 0, 450, 0, 277, 0, 0, -1, 1.6, 0, 0, 0, 0, 0, 'no-image.png', 'no-image.png', 'no-image.png', 0, 0, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `item_type` (`item_type_id`, `item_type_server`, `item_type_name`, `item_type_use_type`, `item_type_use_id`, `item_type_use_value`, `item_type_order_price`, `item_type_drop_type`, `item_type_drop_model`, `item_type_drop_pos_x`, `item_type_drop_pos_y`, `item_type_drop_pos_z`, `item_type_drop_rot_x`, `item_type_drop_rot_y`, `item_type_drop_rot_z`, `item_type_drop_scale_x`, `item_type_drop_scale_y`, `item_type_drop_scale_z`, `item_type_image_small`, `item_type_image_large`, `item_type_image_hotbar`, `item_type_size`, `item_type_capacity`, `item_type_demand_multiplier`, `item_type_supply_multiplier`, `item_type_risk_multiplier`, `item_type_enabled`, `item_type_delay_switch`, `item_type_delay_use`, `item_type_delay_pickup`, `item_type_delay_put`, `item_type_delay_take`, `item_type_delay_give`, `item_type_delay_drop`) VALUES + (83, 2, 'Spaz Shotgun', 1, 20, 0, 1250, 0, 278, 0, 0, -1, 1.6, 0, 0, 0, 0, 0, 'no-image.png', 'no-image.png', 'no-image.png', 0, 0, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `item_type` (`item_type_id`, `item_type_server`, `item_type_name`, `item_type_use_type`, `item_type_use_id`, `item_type_use_value`, `item_type_order_price`, `item_type_drop_type`, `item_type_drop_model`, `item_type_drop_pos_x`, `item_type_drop_pos_y`, `item_type_drop_pos_z`, `item_type_drop_rot_x`, `item_type_drop_rot_y`, `item_type_drop_rot_z`, `item_type_drop_scale_x`, `item_type_drop_scale_y`, `item_type_drop_scale_z`, `item_type_image_small`, `item_type_image_large`, `item_type_image_hotbar`, `item_type_size`, `item_type_capacity`, `item_type_demand_multiplier`, `item_type_supply_multiplier`, `item_type_risk_multiplier`, `item_type_enabled`, `item_type_delay_switch`, `item_type_delay_use`, `item_type_delay_pickup`, `item_type_delay_put`, `item_type_delay_take`, `item_type_delay_give`, `item_type_delay_drop`) VALUES + (84, 2, 'Stubby Shotgun', 1, 21, 0, 350, 0, 279, 0, 0, -1, 1.6, 0, 0, 0, 0, 0, 'no-image.png', 'no-image.png', 'no-image.png', 0, 0, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `item_type` (`item_type_id`, `item_type_server`, `item_type_name`, `item_type_use_type`, `item_type_use_id`, `item_type_use_value`, `item_type_order_price`, `item_type_drop_type`, `item_type_drop_model`, `item_type_drop_pos_x`, `item_type_drop_pos_y`, `item_type_drop_pos_z`, `item_type_drop_rot_x`, `item_type_drop_rot_y`, `item_type_drop_rot_z`, `item_type_drop_scale_x`, `item_type_drop_scale_y`, `item_type_drop_scale_z`, `item_type_image_small`, `item_type_image_large`, `item_type_image_hotbar`, `item_type_size`, `item_type_capacity`, `item_type_demand_multiplier`, `item_type_supply_multiplier`, `item_type_risk_multiplier`, `item_type_enabled`, `item_type_delay_switch`, `item_type_delay_use`, `item_type_delay_pickup`, `item_type_delay_put`, `item_type_delay_take`, `item_type_delay_give`, `item_type_delay_drop`) VALUES + (85, 2, 'Tec-9', 1, 22, 0, 500, 0, 281, 0, 0, -1, 1.6, 0, 0, 0, 0, 0, 'no-image.png', 'no-image.png', 'no-image.png', 0, 0, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `item_type` (`item_type_id`, `item_type_server`, `item_type_name`, `item_type_use_type`, `item_type_use_id`, `item_type_use_value`, `item_type_order_price`, `item_type_drop_type`, `item_type_drop_model`, `item_type_drop_pos_x`, `item_type_drop_pos_y`, `item_type_drop_pos_z`, `item_type_drop_rot_x`, `item_type_drop_rot_y`, `item_type_drop_rot_z`, `item_type_drop_scale_x`, `item_type_drop_scale_y`, `item_type_drop_scale_z`, `item_type_image_small`, `item_type_image_large`, `item_type_image_hotbar`, `item_type_size`, `item_type_capacity`, `item_type_demand_multiplier`, `item_type_supply_multiplier`, `item_type_risk_multiplier`, `item_type_enabled`, `item_type_delay_switch`, `item_type_delay_use`, `item_type_delay_pickup`, `item_type_delay_put`, `item_type_delay_take`, `item_type_delay_give`, `item_type_delay_drop`) VALUES + (86, 2, 'Uzi', 1, 23, 0, 550, 0, 282, 0, 0, -1, 1.6, 0, 0, 0, 0, 0, 'no-image.png', 'no-image.png', 'no-image.png', 0, 0, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `item_type` (`item_type_id`, `item_type_server`, `item_type_name`, `item_type_use_type`, `item_type_use_id`, `item_type_use_value`, `item_type_order_price`, `item_type_drop_type`, `item_type_drop_model`, `item_type_drop_pos_x`, `item_type_drop_pos_y`, `item_type_drop_pos_z`, `item_type_drop_rot_x`, `item_type_drop_rot_y`, `item_type_drop_rot_z`, `item_type_drop_scale_x`, `item_type_drop_scale_y`, `item_type_drop_scale_z`, `item_type_image_small`, `item_type_image_large`, `item_type_image_hotbar`, `item_type_size`, `item_type_capacity`, `item_type_demand_multiplier`, `item_type_supply_multiplier`, `item_type_risk_multiplier`, `item_type_enabled`, `item_type_delay_switch`, `item_type_delay_use`, `item_type_delay_pickup`, `item_type_delay_put`, `item_type_delay_take`, `item_type_delay_give`, `item_type_delay_drop`) VALUES + (87, 2, 'Ingram', 1, 24, 0, 575, 0, 283, 0, 0, -1, 1.6, 0, 0, 0, 0, 0, 'no-image.png', 'no-image.png', 'no-image.png', 0, 0, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `item_type` (`item_type_id`, `item_type_server`, `item_type_name`, `item_type_use_type`, `item_type_use_id`, `item_type_use_value`, `item_type_order_price`, `item_type_drop_type`, `item_type_drop_model`, `item_type_drop_pos_x`, `item_type_drop_pos_y`, `item_type_drop_pos_z`, `item_type_drop_rot_x`, `item_type_drop_rot_y`, `item_type_drop_rot_z`, `item_type_drop_scale_x`, `item_type_drop_scale_y`, `item_type_drop_scale_z`, `item_type_image_small`, `item_type_image_large`, `item_type_image_hotbar`, `item_type_size`, `item_type_capacity`, `item_type_demand_multiplier`, `item_type_supply_multiplier`, `item_type_risk_multiplier`, `item_type_enabled`, `item_type_delay_switch`, `item_type_delay_use`, `item_type_delay_pickup`, `item_type_delay_put`, `item_type_delay_take`, `item_type_delay_give`, `item_type_delay_drop`) VALUES + (88, 2, 'MP5', 1, 25, 0, 800, 0, 284, 0, 0, -1, 1.6, 0, 0, 0, 0, 0, 'no-image.png', 'no-image.png', 'no-image.png', 0, 0, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `item_type` (`item_type_id`, `item_type_server`, `item_type_name`, `item_type_use_type`, `item_type_use_id`, `item_type_use_value`, `item_type_order_price`, `item_type_drop_type`, `item_type_drop_model`, `item_type_drop_pos_x`, `item_type_drop_pos_y`, `item_type_drop_pos_z`, `item_type_drop_rot_x`, `item_type_drop_rot_y`, `item_type_drop_rot_z`, `item_type_drop_scale_x`, `item_type_drop_scale_y`, `item_type_drop_scale_z`, `item_type_image_small`, `item_type_image_large`, `item_type_image_hotbar`, `item_type_size`, `item_type_capacity`, `item_type_demand_multiplier`, `item_type_supply_multiplier`, `item_type_risk_multiplier`, `item_type_enabled`, `item_type_delay_switch`, `item_type_delay_use`, `item_type_delay_pickup`, `item_type_delay_put`, `item_type_delay_take`, `item_type_delay_give`, `item_type_delay_drop`) VALUES + (89, 2, 'M4', 1, 26, 0, 1500, 0, 280, 0, 0, -1, 1.6, 0, 0, 0, 0, 0, 'no-image.png', 'no-image.png', 'no-image.png', 0, 0, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `item_type` (`item_type_id`, `item_type_server`, `item_type_name`, `item_type_use_type`, `item_type_use_id`, `item_type_use_value`, `item_type_order_price`, `item_type_drop_type`, `item_type_drop_model`, `item_type_drop_pos_x`, `item_type_drop_pos_y`, `item_type_drop_pos_z`, `item_type_drop_rot_x`, `item_type_drop_rot_y`, `item_type_drop_rot_z`, `item_type_drop_scale_x`, `item_type_drop_scale_y`, `item_type_drop_scale_z`, `item_type_image_small`, `item_type_image_large`, `item_type_image_hotbar`, `item_type_size`, `item_type_capacity`, `item_type_demand_multiplier`, `item_type_supply_multiplier`, `item_type_risk_multiplier`, `item_type_enabled`, `item_type_delay_switch`, `item_type_delay_use`, `item_type_delay_pickup`, `item_type_delay_put`, `item_type_delay_take`, `item_type_delay_give`, `item_type_delay_drop`) VALUES + (90, 2, 'Ruger', 1, 27, 0, 1250, 0, 276, 0, 0, -1, 1.6, 0, 0, 0, 0, 0, 'no-image.png', 'no-image.png', 'no-image.png', 0, 0, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `item_type` (`item_type_id`, `item_type_server`, `item_type_name`, `item_type_use_type`, `item_type_use_id`, `item_type_use_value`, `item_type_order_price`, `item_type_drop_type`, `item_type_drop_model`, `item_type_drop_pos_x`, `item_type_drop_pos_y`, `item_type_drop_pos_z`, `item_type_drop_rot_x`, `item_type_drop_rot_y`, `item_type_drop_rot_z`, `item_type_drop_scale_x`, `item_type_drop_scale_y`, `item_type_drop_scale_z`, `item_type_image_small`, `item_type_image_large`, `item_type_image_hotbar`, `item_type_size`, `item_type_capacity`, `item_type_demand_multiplier`, `item_type_supply_multiplier`, `item_type_risk_multiplier`, `item_type_enabled`, `item_type_delay_switch`, `item_type_delay_use`, `item_type_delay_pickup`, `item_type_delay_put`, `item_type_delay_take`, `item_type_delay_give`, `item_type_delay_drop`) VALUES + (91, 2, 'Sniper Rifle', 1, 28, 0, 1500, 0, 285, 0, 0, -1, 1.6, 0, 0, 0, 0, 0, 'no-image.png', 'no-image.png', 'no-image.png', 0, 0, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `item_type` (`item_type_id`, `item_type_server`, `item_type_name`, `item_type_use_type`, `item_type_use_id`, `item_type_use_value`, `item_type_order_price`, `item_type_drop_type`, `item_type_drop_model`, `item_type_drop_pos_x`, `item_type_drop_pos_y`, `item_type_drop_pos_z`, `item_type_drop_rot_x`, `item_type_drop_rot_y`, `item_type_drop_rot_z`, `item_type_drop_scale_x`, `item_type_drop_scale_y`, `item_type_drop_scale_z`, `item_type_image_small`, `item_type_image_large`, `item_type_image_hotbar`, `item_type_size`, `item_type_capacity`, `item_type_demand_multiplier`, `item_type_supply_multiplier`, `item_type_risk_multiplier`, `item_type_enabled`, `item_type_delay_switch`, `item_type_delay_use`, `item_type_delay_pickup`, `item_type_delay_put`, `item_type_delay_take`, `item_type_delay_give`, `item_type_delay_drop`) VALUES + (92, 2, 'Laser Sniper', 1, 29, 0, 2000, 0, 286, 0, 0, -1, 1.6, 0, 0, 0, 0, 0, 'no-image.png', 'no-image.png', 'no-image.png', 0, 0, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `item_type` (`item_type_id`, `item_type_server`, `item_type_name`, `item_type_use_type`, `item_type_use_id`, `item_type_use_value`, `item_type_order_price`, `item_type_drop_type`, `item_type_drop_model`, `item_type_drop_pos_x`, `item_type_drop_pos_y`, `item_type_drop_pos_z`, `item_type_drop_rot_x`, `item_type_drop_rot_y`, `item_type_drop_rot_z`, `item_type_drop_scale_x`, `item_type_drop_scale_y`, `item_type_drop_scale_z`, `item_type_image_small`, `item_type_image_large`, `item_type_image_hotbar`, `item_type_size`, `item_type_capacity`, `item_type_demand_multiplier`, `item_type_supply_multiplier`, `item_type_risk_multiplier`, `item_type_enabled`, `item_type_delay_switch`, `item_type_delay_use`, `item_type_delay_pickup`, `item_type_delay_put`, `item_type_delay_take`, `item_type_delay_give`, `item_type_delay_drop`) VALUES + (93, 2, 'RPG', 1, 30, 0, 5000, 0, 287, 0, 0, -1, 1.6, 0, 0, 0, 0, 0, 'no-image.png', 'no-image.png', 'no-image.png', 0, 0, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `item_type` (`item_type_id`, `item_type_server`, `item_type_name`, `item_type_use_type`, `item_type_use_id`, `item_type_use_value`, `item_type_order_price`, `item_type_drop_type`, `item_type_drop_model`, `item_type_drop_pos_x`, `item_type_drop_pos_y`, `item_type_drop_pos_z`, `item_type_drop_rot_x`, `item_type_drop_rot_y`, `item_type_drop_rot_z`, `item_type_drop_scale_x`, `item_type_drop_scale_y`, `item_type_drop_scale_z`, `item_type_image_small`, `item_type_image_large`, `item_type_image_hotbar`, `item_type_size`, `item_type_capacity`, `item_type_demand_multiplier`, `item_type_supply_multiplier`, `item_type_risk_multiplier`, `item_type_enabled`, `item_type_delay_switch`, `item_type_delay_use`, `item_type_delay_pickup`, `item_type_delay_put`, `item_type_delay_take`, `item_type_delay_give`, `item_type_delay_drop`) VALUES + (94, 2, 'Flame Thrower', 1, 31, 0, 3000, 0, 288, 0, 0, -1, 1.6, 0, 0, 0, 0, 0, 'no-image.png', 'no-image.png', 'no-image.png', 0, 0, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `item_type` (`item_type_id`, `item_type_server`, `item_type_name`, `item_type_use_type`, `item_type_use_id`, `item_type_use_value`, `item_type_order_price`, `item_type_drop_type`, `item_type_drop_model`, `item_type_drop_pos_x`, `item_type_drop_pos_y`, `item_type_drop_pos_z`, `item_type_drop_rot_x`, `item_type_drop_rot_y`, `item_type_drop_rot_z`, `item_type_drop_scale_x`, `item_type_drop_scale_y`, `item_type_drop_scale_z`, `item_type_image_small`, `item_type_image_large`, `item_type_image_hotbar`, `item_type_size`, `item_type_capacity`, `item_type_demand_multiplier`, `item_type_supply_multiplier`, `item_type_risk_multiplier`, `item_type_enabled`, `item_type_delay_switch`, `item_type_delay_use`, `item_type_delay_pickup`, `item_type_delay_put`, `item_type_delay_take`, `item_type_delay_give`, `item_type_delay_drop`) VALUES + (95, 2, 'M60', 1, 32, 0, 10000, 0, 289, 0, 0, -1, 1.6, 0, 0, 0, 0, 0, 'no-image.png', 'no-image.png', 'no-image.png', 0, 0, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `item_type` (`item_type_id`, `item_type_server`, `item_type_name`, `item_type_use_type`, `item_type_use_id`, `item_type_use_value`, `item_type_order_price`, `item_type_drop_type`, `item_type_drop_model`, `item_type_drop_pos_x`, `item_type_drop_pos_y`, `item_type_drop_pos_z`, `item_type_drop_rot_x`, `item_type_drop_rot_y`, `item_type_drop_rot_z`, `item_type_drop_scale_x`, `item_type_drop_scale_y`, `item_type_drop_scale_z`, `item_type_image_small`, `item_type_image_large`, `item_type_image_hotbar`, `item_type_size`, `item_type_capacity`, `item_type_demand_multiplier`, `item_type_supply_multiplier`, `item_type_risk_multiplier`, `item_type_enabled`, `item_type_delay_switch`, `item_type_delay_use`, `item_type_delay_pickup`, `item_type_delay_put`, `item_type_delay_take`, `item_type_delay_give`, `item_type_delay_drop`) VALUES + (96, 2, 'Minigun', 1, 33, 0, 25000, 0, 290, 0, 0, -1, 1.6, 0, 0, 0, 0, 0, 'no-image.png', 'no-image.png', 'no-image.png', 0, 0, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `item_type` (`item_type_id`, `item_type_server`, `item_type_name`, `item_type_use_type`, `item_type_use_id`, `item_type_use_value`, `item_type_order_price`, `item_type_drop_type`, `item_type_drop_model`, `item_type_drop_pos_x`, `item_type_drop_pos_y`, `item_type_drop_pos_z`, `item_type_drop_rot_x`, `item_type_drop_rot_y`, `item_type_drop_rot_z`, `item_type_drop_scale_x`, `item_type_drop_scale_y`, `item_type_drop_scale_z`, `item_type_image_small`, `item_type_image_large`, `item_type_image_hotbar`, `item_type_size`, `item_type_capacity`, `item_type_demand_multiplier`, `item_type_supply_multiplier`, `item_type_risk_multiplier`, `item_type_enabled`, `item_type_delay_switch`, `item_type_delay_use`, `item_type_delay_pickup`, `item_type_delay_put`, `item_type_delay_take`, `item_type_delay_give`, `item_type_delay_drop`) VALUES + (97, 2, 'Camera', 1, 34, 0, 25, 0, 292, 0, 0, -1, 1.6, 0, 0, 0, 0, 0, 'no-image.png', 'no-image.png', 'no-image.png', 0, 0, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `item_type` (`item_type_id`, `item_type_server`, `item_type_name`, `item_type_use_type`, `item_type_use_id`, `item_type_use_value`, `item_type_order_price`, `item_type_drop_type`, `item_type_drop_model`, `item_type_drop_pos_x`, `item_type_drop_pos_y`, `item_type_drop_pos_z`, `item_type_drop_rot_x`, `item_type_drop_rot_y`, `item_type_drop_rot_z`, `item_type_drop_scale_x`, `item_type_drop_scale_y`, `item_type_drop_scale_z`, `item_type_image_small`, `item_type_image_large`, `item_type_image_hotbar`, `item_type_size`, `item_type_capacity`, `item_type_demand_multiplier`, `item_type_supply_multiplier`, `item_type_risk_multiplier`, `item_type_enabled`, `item_type_delay_switch`, `item_type_delay_use`, `item_type_delay_pickup`, `item_type_delay_put`, `item_type_delay_take`, `item_type_delay_give`, `item_type_delay_drop`) VALUES + (98, 2, 'Detonator', 1, 36, 0, 0, 0, 291, 0, 0, -1, 1.6, 0, 0, 0, 0, 0, 'no-image.png', 'no-image.png', 'no-image.png', 0, 0, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `item_type` (`item_type_id`, `item_type_server`, `item_type_name`, `item_type_use_type`, `item_type_use_id`, `item_type_use_value`, `item_type_order_price`, `item_type_drop_type`, `item_type_drop_model`, `item_type_drop_pos_x`, `item_type_drop_pos_y`, `item_type_drop_pos_z`, `item_type_drop_rot_x`, `item_type_drop_rot_y`, `item_type_drop_rot_z`, `item_type_drop_scale_x`, `item_type_drop_scale_y`, `item_type_drop_scale_z`, `item_type_image_small`, `item_type_image_large`, `item_type_image_hotbar`, `item_type_size`, `item_type_capacity`, `item_type_demand_multiplier`, `item_type_supply_multiplier`, `item_type_risk_multiplier`, `item_type_enabled`, `item_type_delay_switch`, `item_type_delay_use`, `item_type_delay_pickup`, `item_type_delay_put`, `item_type_delay_take`, `item_type_delay_give`, `item_type_delay_drop`) VALUES + (99, 2, 'Phone', 3, 0, 0, 250, 1, 258, 0, 0, -1, 1.6, 0, 0, 0, 0, 0, 'no-image.png', 'no-image.png', 'no-image.png', 0, 0, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `item_type` (`item_type_id`, `item_type_server`, `item_type_name`, `item_type_use_type`, `item_type_use_id`, `item_type_use_value`, `item_type_order_price`, `item_type_drop_type`, `item_type_drop_model`, `item_type_drop_pos_x`, `item_type_drop_pos_y`, `item_type_drop_pos_z`, `item_type_drop_rot_x`, `item_type_drop_rot_y`, `item_type_drop_rot_z`, `item_type_drop_scale_x`, `item_type_drop_scale_y`, `item_type_drop_scale_z`, `item_type_image_small`, `item_type_image_large`, `item_type_image_hotbar`, `item_type_size`, `item_type_capacity`, `item_type_demand_multiplier`, `item_type_supply_multiplier`, `item_type_risk_multiplier`, `item_type_enabled`, `item_type_delay_switch`, `item_type_delay_use`, `item_type_delay_pickup`, `item_type_delay_put`, `item_type_delay_take`, `item_type_delay_give`, `item_type_delay_drop`) VALUES + (100, 2, 'Radio', 32, 0, 0, 0, 1, 291, 0, 0, -1, 1.6, 0, 0, 0, 0, 0, 'no-image.png', 'no-image.png', 'no-image.png', 0, 0, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `item_type` (`item_type_id`, `item_type_server`, `item_type_name`, `item_type_use_type`, `item_type_use_id`, `item_type_use_value`, `item_type_order_price`, `item_type_drop_type`, `item_type_drop_model`, `item_type_drop_pos_x`, `item_type_drop_pos_y`, `item_type_drop_pos_z`, `item_type_drop_rot_x`, `item_type_drop_rot_y`, `item_type_drop_rot_z`, `item_type_drop_scale_x`, `item_type_drop_scale_y`, `item_type_drop_scale_z`, `item_type_image_small`, `item_type_image_large`, `item_type_image_hotbar`, `item_type_size`, `item_type_capacity`, `item_type_demand_multiplier`, `item_type_supply_multiplier`, `item_type_risk_multiplier`, `item_type_enabled`, `item_type_delay_switch`, `item_type_delay_use`, `item_type_delay_pickup`, `item_type_delay_put`, `item_type_delay_take`, `item_type_delay_give`, `item_type_delay_drop`) VALUES + (101, 2, 'Pot Seed', 13, 0, 0, 2, 1, 0, 0, 0, -1, 1.6, 0, 0, 0, 0, 0, 'no-image.png', 'no-image.png', 'no-image.png', 0, 0, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `item_type` (`item_type_id`, `item_type_server`, `item_type_name`, `item_type_use_type`, `item_type_use_id`, `item_type_use_value`, `item_type_order_price`, `item_type_drop_type`, `item_type_drop_model`, `item_type_drop_pos_x`, `item_type_drop_pos_y`, `item_type_drop_pos_z`, `item_type_drop_rot_x`, `item_type_drop_rot_y`, `item_type_drop_rot_z`, `item_type_drop_scale_x`, `item_type_drop_scale_y`, `item_type_drop_scale_z`, `item_type_image_small`, `item_type_image_large`, `item_type_image_hotbar`, `item_type_size`, `item_type_capacity`, `item_type_demand_multiplier`, `item_type_supply_multiplier`, `item_type_risk_multiplier`, `item_type_enabled`, `item_type_delay_switch`, `item_type_delay_use`, `item_type_delay_pickup`, `item_type_delay_put`, `item_type_delay_take`, `item_type_delay_give`, `item_type_delay_drop`) VALUES + (102, 2, 'Weed', 14, 0, 0, 20, 1, 0, 0, 0, -1, 1.6, 0, 0, 0.3, 0.3, 0.3, 'no-image.png', 'no-image.png', 'no-image.png', 0, 0, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `item_type` (`item_type_id`, `item_type_server`, `item_type_name`, `item_type_use_type`, `item_type_use_id`, `item_type_use_value`, `item_type_order_price`, `item_type_drop_type`, `item_type_drop_model`, `item_type_drop_pos_x`, `item_type_drop_pos_y`, `item_type_drop_pos_z`, `item_type_drop_rot_x`, `item_type_drop_rot_y`, `item_type_drop_rot_z`, `item_type_drop_scale_x`, `item_type_drop_scale_y`, `item_type_drop_scale_z`, `item_type_image_small`, `item_type_image_large`, `item_type_image_hotbar`, `item_type_size`, `item_type_capacity`, `item_type_demand_multiplier`, `item_type_supply_multiplier`, `item_type_risk_multiplier`, `item_type_enabled`, `item_type_delay_switch`, `item_type_delay_use`, `item_type_delay_pickup`, `item_type_delay_put`, `item_type_delay_take`, `item_type_delay_give`, `item_type_delay_drop`) VALUES + (103, 2, 'Meth', 16, 0, 0, 100, 1, 0, 0, 0, -1, 1.6, 0, 0, 0.3, 0.3, 0.3, 'no-image.png', 'no-image.png', 'no-image.png', 0, 100, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `item_type` (`item_type_id`, `item_type_server`, `item_type_name`, `item_type_use_type`, `item_type_use_id`, `item_type_use_value`, `item_type_order_price`, `item_type_drop_type`, `item_type_drop_model`, `item_type_drop_pos_x`, `item_type_drop_pos_y`, `item_type_drop_pos_z`, `item_type_drop_rot_x`, `item_type_drop_rot_y`, `item_type_drop_rot_z`, `item_type_drop_scale_x`, `item_type_drop_scale_y`, `item_type_drop_scale_z`, `item_type_image_small`, `item_type_image_large`, `item_type_image_hotbar`, `item_type_size`, `item_type_capacity`, `item_type_demand_multiplier`, `item_type_supply_multiplier`, `item_type_risk_multiplier`, `item_type_enabled`, `item_type_delay_switch`, `item_type_delay_use`, `item_type_delay_pickup`, `item_type_delay_put`, `item_type_delay_take`, `item_type_delay_give`, `item_type_delay_drop`) VALUES + (104, 2, 'Coke', 15, 0, 0, 250, 1, 0, 0, 0, -1, 1.6, 0, 0, 0.3, 0.3, 0.3, 'no-image.png', 'no-image.png', 'no-image.png', 0, 100, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `item_type` (`item_type_id`, `item_type_server`, `item_type_name`, `item_type_use_type`, `item_type_use_id`, `item_type_use_value`, `item_type_order_price`, `item_type_drop_type`, `item_type_drop_model`, `item_type_drop_pos_x`, `item_type_drop_pos_y`, `item_type_drop_pos_z`, `item_type_drop_rot_x`, `item_type_drop_rot_y`, `item_type_drop_rot_z`, `item_type_drop_scale_x`, `item_type_drop_scale_y`, `item_type_drop_scale_z`, `item_type_image_small`, `item_type_image_large`, `item_type_image_hotbar`, `item_type_size`, `item_type_capacity`, `item_type_demand_multiplier`, `item_type_supply_multiplier`, `item_type_risk_multiplier`, `item_type_enabled`, `item_type_delay_switch`, `item_type_delay_use`, `item_type_delay_pickup`, `item_type_delay_put`, `item_type_delay_take`, `item_type_delay_give`, `item_type_delay_drop`) VALUES + (105, 2, 'Wallet', 9, 0, 0, 10, 1, 0, 0, 0, -1, 1.6, 0, 0, 0.3, 0.3, 0.2, 'no-image.png', 'no-image.png', 'no-image.png', 0, 0, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `item_type` (`item_type_id`, `item_type_server`, `item_type_name`, `item_type_use_type`, `item_type_use_id`, `item_type_use_value`, `item_type_order_price`, `item_type_drop_type`, `item_type_drop_model`, `item_type_drop_pos_x`, `item_type_drop_pos_y`, `item_type_drop_pos_z`, `item_type_drop_rot_x`, `item_type_drop_rot_y`, `item_type_drop_rot_z`, `item_type_drop_scale_x`, `item_type_drop_scale_y`, `item_type_drop_scale_z`, `item_type_image_small`, `item_type_image_large`, `item_type_image_hotbar`, `item_type_size`, `item_type_capacity`, `item_type_demand_multiplier`, `item_type_supply_multiplier`, `item_type_risk_multiplier`, `item_type_enabled`, `item_type_delay_switch`, `item_type_delay_use`, `item_type_delay_pickup`, `item_type_delay_put`, `item_type_delay_take`, `item_type_delay_give`, `item_type_delay_drop`) VALUES + (106, 2, 'Crate', 9, 0, 0, 25, 1, 349, 0, 0, -1, 1.6, 0, 0, 0, 0, 0, 'no-image.png', 'no-image.png', 'no-image.png', 0, 0, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `item_type` (`item_type_id`, `item_type_server`, `item_type_name`, `item_type_use_type`, `item_type_use_id`, `item_type_use_value`, `item_type_order_price`, `item_type_drop_type`, `item_type_drop_model`, `item_type_drop_pos_x`, `item_type_drop_pos_y`, `item_type_drop_pos_z`, `item_type_drop_rot_x`, `item_type_drop_rot_y`, `item_type_drop_rot_z`, `item_type_drop_scale_x`, `item_type_drop_scale_y`, `item_type_drop_scale_z`, `item_type_image_small`, `item_type_image_large`, `item_type_image_hotbar`, `item_type_size`, `item_type_capacity`, `item_type_demand_multiplier`, `item_type_supply_multiplier`, `item_type_risk_multiplier`, `item_type_enabled`, `item_type_delay_switch`, `item_type_delay_use`, `item_type_delay_pickup`, `item_type_delay_put`, `item_type_delay_take`, `item_type_delay_give`, `item_type_delay_drop`) VALUES + (107, 2, 'Cardboard Box', 9, 0, 0, 25, 1, 346, 0, 0, -1, 1.6, 0, 0, 0, 0, 0, 'no-image.png', 'no-image.png', 'no-image.png', 0, 0, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `item_type` (`item_type_id`, `item_type_server`, `item_type_name`, `item_type_use_type`, `item_type_use_id`, `item_type_use_value`, `item_type_order_price`, `item_type_drop_type`, `item_type_drop_model`, `item_type_drop_pos_x`, `item_type_drop_pos_y`, `item_type_drop_pos_z`, `item_type_drop_rot_x`, `item_type_drop_rot_y`, `item_type_drop_rot_z`, `item_type_drop_scale_x`, `item_type_drop_scale_y`, `item_type_drop_scale_z`, `item_type_image_small`, `item_type_image_large`, `item_type_image_hotbar`, `item_type_size`, `item_type_capacity`, `item_type_demand_multiplier`, `item_type_supply_multiplier`, `item_type_risk_multiplier`, `item_type_enabled`, `item_type_delay_switch`, `item_type_delay_use`, `item_type_delay_pickup`, `item_type_delay_put`, `item_type_delay_take`, `item_type_delay_give`, `item_type_delay_drop`) VALUES + (108, 2, 'Barrel', 9, 0, 0, 25, 1, 342, 0, 0, -1, 1.6, 0, 0, 0, 0, 0, 'no-image.png', 'no-image.png', 'no-image.png', 0, 0, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `item_type` (`item_type_id`, `item_type_server`, `item_type_name`, `item_type_use_type`, `item_type_use_id`, `item_type_use_value`, `item_type_order_price`, `item_type_drop_type`, `item_type_drop_model`, `item_type_drop_pos_x`, `item_type_drop_pos_y`, `item_type_drop_pos_z`, `item_type_drop_rot_x`, `item_type_drop_rot_y`, `item_type_drop_rot_z`, `item_type_drop_scale_x`, `item_type_drop_scale_y`, `item_type_drop_scale_z`, `item_type_image_small`, `item_type_image_large`, `item_type_image_hotbar`, `item_type_size`, `item_type_capacity`, `item_type_demand_multiplier`, `item_type_supply_multiplier`, `item_type_risk_multiplier`, `item_type_enabled`, `item_type_delay_switch`, `item_type_delay_use`, `item_type_delay_pickup`, `item_type_delay_put`, `item_type_delay_take`, `item_type_delay_give`, `item_type_delay_drop`) VALUES + (109, 2, 'Outfit', 6, 0, 0, 50, 1, 502, 0, 0, -1, 1.6, 0, 0, 0, 0, 0, 'no-image.png', 'no-image.png', 'no-image.png', 0, 0, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `item_type` (`item_type_id`, `item_type_server`, `item_type_name`, `item_type_use_type`, `item_type_use_id`, `item_type_use_value`, `item_type_order_price`, `item_type_drop_type`, `item_type_drop_model`, `item_type_drop_pos_x`, `item_type_drop_pos_y`, `item_type_drop_pos_z`, `item_type_drop_rot_x`, `item_type_drop_rot_y`, `item_type_drop_rot_z`, `item_type_drop_scale_x`, `item_type_drop_scale_y`, `item_type_drop_scale_z`, `item_type_image_small`, `item_type_image_large`, `item_type_image_hotbar`, `item_type_size`, `item_type_capacity`, `item_type_demand_multiplier`, `item_type_supply_multiplier`, `item_type_risk_multiplier`, `item_type_enabled`, `item_type_delay_switch`, `item_type_delay_use`, `item_type_delay_pickup`, `item_type_delay_put`, `item_type_delay_take`, `item_type_delay_give`, `item_type_delay_drop`) VALUES + (110, 2, 'Megaphone', 15, 0, 0, 35, 1, 502, 0, 0, -1, 1.6, 0, 0, 0, 0, 0, 'no-image.png', 'no-image.png', 'no-image.png', 0, 100, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `item_type` (`item_type_id`, `item_type_server`, `item_type_name`, `item_type_use_type`, `item_type_use_id`, `item_type_use_value`, `item_type_order_price`, `item_type_drop_type`, `item_type_drop_model`, `item_type_drop_pos_x`, `item_type_drop_pos_y`, `item_type_drop_pos_z`, `item_type_drop_rot_x`, `item_type_drop_rot_y`, `item_type_drop_rot_z`, `item_type_drop_scale_x`, `item_type_drop_scale_y`, `item_type_drop_scale_z`, `item_type_image_small`, `item_type_image_large`, `item_type_image_hotbar`, `item_type_size`, `item_type_capacity`, `item_type_demand_multiplier`, `item_type_supply_multiplier`, `item_type_risk_multiplier`, `item_type_enabled`, `item_type_delay_switch`, `item_type_delay_use`, `item_type_delay_pickup`, `item_type_delay_put`, `item_type_delay_take`, `item_type_delay_give`, `item_type_delay_drop`) VALUES + (111, 2, 'Bottle of Water', 18, 1, 10, 3, 1, 596, 0, 0, -1, 1.6, 0, 0, 0, 0, 0, 'no-image.png', 'no-image.png', 'no-image.png', 0, 100, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `item_type` (`item_type_id`, `item_type_server`, `item_type_name`, `item_type_use_type`, `item_type_use_id`, `item_type_use_value`, `item_type_order_price`, `item_type_drop_type`, `item_type_drop_model`, `item_type_drop_pos_x`, `item_type_drop_pos_y`, `item_type_drop_pos_z`, `item_type_drop_rot_x`, `item_type_drop_rot_y`, `item_type_drop_rot_z`, `item_type_drop_scale_x`, `item_type_drop_scale_y`, `item_type_drop_scale_z`, `item_type_image_small`, `item_type_image_large`, `item_type_image_hotbar`, `item_type_size`, `item_type_capacity`, `item_type_demand_multiplier`, `item_type_supply_multiplier`, `item_type_risk_multiplier`, `item_type_enabled`, `item_type_delay_switch`, `item_type_delay_use`, `item_type_delay_pickup`, `item_type_delay_put`, `item_type_delay_take`, `item_type_delay_give`, `item_type_delay_drop`) VALUES + (112, 2, 'Can of Beer', 35, 3, 5, 5, 1, 594, 0, 0, -1, 1.6, 0, 0, 0, 0, 0, 'no-image.png', 'no-image.png', 'no-image.png', 0, 100, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `item_type` (`item_type_id`, `item_type_server`, `item_type_name`, `item_type_use_type`, `item_type_use_id`, `item_type_use_value`, `item_type_order_price`, `item_type_drop_type`, `item_type_drop_model`, `item_type_drop_pos_x`, `item_type_drop_pos_y`, `item_type_drop_pos_z`, `item_type_drop_rot_x`, `item_type_drop_rot_y`, `item_type_drop_rot_z`, `item_type_drop_scale_x`, `item_type_drop_scale_y`, `item_type_drop_scale_z`, `item_type_image_small`, `item_type_image_large`, `item_type_image_hotbar`, `item_type_size`, `item_type_capacity`, `item_type_demand_multiplier`, `item_type_supply_multiplier`, `item_type_risk_multiplier`, `item_type_enabled`, `item_type_delay_switch`, `item_type_delay_use`, `item_type_delay_pickup`, `item_type_delay_put`, `item_type_delay_take`, `item_type_delay_give`, `item_type_delay_drop`) VALUES + (113, 2, 'Bottle of Vodka', 35, 3, 5, 10, 1, 596, 0, 0, -1, 1.6, 0, 0, 0, 0, 0, 'no-image.png', 'no-image.png', 'no-image.png', 0, 100, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `item_type` (`item_type_id`, `item_type_server`, `item_type_name`, `item_type_use_type`, `item_type_use_id`, `item_type_use_value`, `item_type_order_price`, `item_type_drop_type`, `item_type_drop_model`, `item_type_drop_pos_x`, `item_type_drop_pos_y`, `item_type_drop_pos_z`, `item_type_drop_rot_x`, `item_type_drop_rot_y`, `item_type_drop_rot_z`, `item_type_drop_scale_x`, `item_type_drop_scale_y`, `item_type_drop_scale_z`, `item_type_image_small`, `item_type_image_large`, `item_type_image_hotbar`, `item_type_size`, `item_type_capacity`, `item_type_demand_multiplier`, `item_type_supply_multiplier`, `item_type_risk_multiplier`, `item_type_enabled`, `item_type_delay_switch`, `item_type_delay_use`, `item_type_delay_pickup`, `item_type_delay_put`, `item_type_delay_take`, `item_type_delay_give`, `item_type_delay_drop`) VALUES + (114, 2, 'Bottle of Whiskey', 35, 3, 5, 12, 1, 592, 0, 0, -1, 1.6, 0, 0, 0, 0, 0, 'no-image.png', 'no-image.png', 'no-image.png', 0, 100, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `item_type` (`item_type_id`, `item_type_server`, `item_type_name`, `item_type_use_type`, `item_type_use_id`, `item_type_use_value`, `item_type_order_price`, `item_type_drop_type`, `item_type_drop_model`, `item_type_drop_pos_x`, `item_type_drop_pos_y`, `item_type_drop_pos_z`, `item_type_drop_rot_x`, `item_type_drop_rot_y`, `item_type_drop_rot_z`, `item_type_drop_scale_x`, `item_type_drop_scale_y`, `item_type_drop_scale_z`, `item_type_image_small`, `item_type_image_large`, `item_type_image_hotbar`, `item_type_size`, `item_type_capacity`, `item_type_demand_multiplier`, `item_type_supply_multiplier`, `item_type_risk_multiplier`, `item_type_enabled`, `item_type_delay_switch`, `item_type_delay_use`, `item_type_delay_pickup`, `item_type_delay_put`, `item_type_delay_take`, `item_type_delay_give`, `item_type_delay_drop`) VALUES + (115, 2, 'Handcuffs', 24, 0, 0, 100, 0, 502, 0, 0, -1, 1.6, 0, 0, 0.3, 0.3, 0.2, 'no-image.png', 'no-image.png', 'no-image.png', 0, 0, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `item_type` (`item_type_id`, `item_type_server`, `item_type_name`, `item_type_use_type`, `item_type_use_id`, `item_type_use_value`, `item_type_order_price`, `item_type_drop_type`, `item_type_drop_model`, `item_type_drop_pos_x`, `item_type_drop_pos_y`, `item_type_drop_pos_z`, `item_type_drop_rot_x`, `item_type_drop_rot_y`, `item_type_drop_rot_z`, `item_type_drop_scale_x`, `item_type_drop_scale_y`, `item_type_drop_scale_z`, `item_type_image_small`, `item_type_image_large`, `item_type_image_hotbar`, `item_type_size`, `item_type_capacity`, `item_type_demand_multiplier`, `item_type_supply_multiplier`, `item_type_risk_multiplier`, `item_type_enabled`, `item_type_delay_switch`, `item_type_delay_use`, `item_type_delay_pickup`, `item_type_delay_put`, `item_type_delay_take`, `item_type_delay_give`, `item_type_delay_drop`) VALUES + (116, 2, 'Rope', 25, 0, 0, 20, 0, 502, 0, 0, -1, 1.6, 0, 0, 0, 0, 0, 'no-image.png', 'no-image.png', 'no-image.png', 0, 0, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `item_type` (`item_type_id`, `item_type_server`, `item_type_name`, `item_type_use_type`, `item_type_use_id`, `item_type_use_value`, `item_type_order_price`, `item_type_drop_type`, `item_type_drop_model`, `item_type_drop_pos_x`, `item_type_drop_pos_y`, `item_type_drop_pos_z`, `item_type_drop_rot_x`, `item_type_drop_rot_y`, `item_type_drop_rot_z`, `item_type_drop_scale_x`, `item_type_drop_scale_y`, `item_type_drop_scale_z`, `item_type_image_small`, `item_type_image_large`, `item_type_image_hotbar`, `item_type_size`, `item_type_capacity`, `item_type_demand_multiplier`, `item_type_supply_multiplier`, `item_type_risk_multiplier`, `item_type_enabled`, `item_type_delay_switch`, `item_type_delay_use`, `item_type_delay_pickup`, `item_type_delay_put`, `item_type_delay_take`, `item_type_delay_give`, `item_type_delay_drop`) VALUES + (117, 2, 'Blindfold', 26, 0, 0, 20, 0, 502, 0, 0, -1, 1.6, 0, 0, 0, 0, 0, 'no-image.png', 'no-image.png', 'no-image.png', 0, 0, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `item_type` (`item_type_id`, `item_type_server`, `item_type_name`, `item_type_use_type`, `item_type_use_id`, `item_type_use_value`, `item_type_order_price`, `item_type_drop_type`, `item_type_drop_model`, `item_type_drop_pos_x`, `item_type_drop_pos_y`, `item_type_drop_pos_z`, `item_type_drop_rot_x`, `item_type_drop_rot_y`, `item_type_drop_rot_z`, `item_type_drop_scale_x`, `item_type_drop_scale_y`, `item_type_drop_scale_z`, `item_type_image_small`, `item_type_image_large`, `item_type_image_hotbar`, `item_type_size`, `item_type_capacity`, `item_type_demand_multiplier`, `item_type_supply_multiplier`, `item_type_risk_multiplier`, `item_type_enabled`, `item_type_delay_switch`, `item_type_delay_use`, `item_type_delay_pickup`, `item_type_delay_put`, `item_type_delay_take`, `item_type_delay_give`, `item_type_delay_drop`) VALUES + (118, 2, 'Bulletproof Vest', 28, 0, 0, 0, 1, 500, 0, 0, -1, 1.6, 0, 0, 0, 0, 0, 'no-image.png', 'no-image.png', 'no-image.png', 0, 100, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `item_type` (`item_type_id`, `item_type_server`, `item_type_name`, `item_type_use_type`, `item_type_use_id`, `item_type_use_value`, `item_type_order_price`, `item_type_drop_type`, `item_type_drop_model`, `item_type_drop_pos_x`, `item_type_drop_pos_y`, `item_type_drop_pos_z`, `item_type_drop_rot_x`, `item_type_drop_rot_y`, `item_type_drop_rot_z`, `item_type_drop_scale_x`, `item_type_drop_scale_y`, `item_type_drop_scale_z`, `item_type_image_small`, `item_type_image_large`, `item_type_image_hotbar`, `item_type_size`, `item_type_capacity`, `item_type_demand_multiplier`, `item_type_supply_multiplier`, `item_type_risk_multiplier`, `item_type_enabled`, `item_type_delay_switch`, `item_type_delay_use`, `item_type_delay_pickup`, `item_type_delay_put`, `item_type_delay_take`, `item_type_delay_give`, `item_type_delay_drop`) VALUES + (119, 2, 'Uniform', 6, 0, 0, 0, 1, 502, 0, 0, -1, 1.6, 0, 0, 0, 0, 0, 'no-image.png', 'no-image.png', 'no-image.png', 0, 0, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `item_type` (`item_type_id`, `item_type_server`, `item_type_name`, `item_type_use_type`, `item_type_use_id`, `item_type_use_value`, `item_type_order_price`, `item_type_drop_type`, `item_type_drop_model`, `item_type_drop_pos_x`, `item_type_drop_pos_y`, `item_type_drop_pos_z`, `item_type_drop_rot_x`, `item_type_drop_rot_y`, `item_type_drop_rot_z`, `item_type_drop_scale_x`, `item_type_drop_scale_y`, `item_type_drop_scale_z`, `item_type_image_small`, `item_type_image_large`, `item_type_image_hotbar`, `item_type_size`, `item_type_capacity`, `item_type_demand_multiplier`, `item_type_supply_multiplier`, `item_type_risk_multiplier`, `item_type_enabled`, `item_type_delay_switch`, `item_type_delay_use`, `item_type_delay_pickup`, `item_type_delay_put`, `item_type_delay_take`, `item_type_delay_give`, `item_type_delay_drop`) VALUES + (120, 2, 'Fire Extinguisher', 36, 0, 0, 0, 0, 502, 0, 0, -1, 1.6, 0, 0, 0, 0, 0, 'no-image.png', 'no-image.png', 'no-image.png', 0, 1000, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `item_type` (`item_type_id`, `item_type_server`, `item_type_name`, `item_type_use_type`, `item_type_use_id`, `item_type_use_value`, `item_type_order_price`, `item_type_drop_type`, `item_type_drop_model`, `item_type_drop_pos_x`, `item_type_drop_pos_y`, `item_type_drop_pos_z`, `item_type_drop_rot_x`, `item_type_drop_rot_y`, `item_type_drop_rot_z`, `item_type_drop_scale_x`, `item_type_drop_scale_y`, `item_type_drop_scale_z`, `item_type_image_small`, `item_type_image_large`, `item_type_image_hotbar`, `item_type_size`, `item_type_capacity`, `item_type_demand_multiplier`, `item_type_supply_multiplier`, `item_type_risk_multiplier`, `item_type_enabled`, `item_type_delay_switch`, `item_type_delay_use`, `item_type_delay_pickup`, `item_type_delay_put`, `item_type_delay_take`, `item_type_delay_give`, `item_type_delay_drop`) VALUES + (121, 2, 'Tazer', 27, 17, 0, 350, 0, 502, 0, 0, -1, 1.6, 0, 0, 0, 0, 0, 'no-image.png', 'no-image.png', 'no-image.png', 0, 0, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `item_type` (`item_type_id`, `item_type_server`, `item_type_name`, `item_type_use_type`, `item_type_use_id`, `item_type_use_value`, `item_type_order_price`, `item_type_drop_type`, `item_type_drop_model`, `item_type_drop_pos_x`, `item_type_drop_pos_y`, `item_type_drop_pos_z`, `item_type_drop_rot_x`, `item_type_drop_rot_y`, `item_type_drop_rot_z`, `item_type_drop_scale_x`, `item_type_drop_scale_y`, `item_type_drop_scale_z`, `item_type_image_small`, `item_type_image_large`, `item_type_image_hotbar`, `item_type_size`, `item_type_capacity`, `item_type_demand_multiplier`, `item_type_supply_multiplier`, `item_type_risk_multiplier`, `item_type_enabled`, `item_type_delay_switch`, `item_type_delay_use`, `item_type_delay_pickup`, `item_type_delay_put`, `item_type_delay_take`, `item_type_delay_give`, `item_type_delay_drop`) VALUES + (122, 2, 'Pepper Spray', 38, 0, 0, 150, 0, 502, 0, 0, -1, 1.6, 0, 0, 0, 0, 0, 'no-image.png', 'no-image.png', 'no-image.png', 0, 1000, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `item_type` (`item_type_id`, `item_type_server`, `item_type_name`, `item_type_use_type`, `item_type_use_id`, `item_type_use_value`, `item_type_order_price`, `item_type_drop_type`, `item_type_drop_model`, `item_type_drop_pos_x`, `item_type_drop_pos_y`, `item_type_drop_pos_z`, `item_type_drop_rot_x`, `item_type_drop_rot_y`, `item_type_drop_rot_z`, `item_type_drop_scale_x`, `item_type_drop_scale_y`, `item_type_drop_scale_z`, `item_type_image_small`, `item_type_image_large`, `item_type_image_hotbar`, `item_type_size`, `item_type_capacity`, `item_type_demand_multiplier`, `item_type_supply_multiplier`, `item_type_risk_multiplier`, `item_type_enabled`, `item_type_delay_switch`, `item_type_delay_use`, `item_type_delay_pickup`, `item_type_delay_put`, `item_type_delay_take`, `item_type_delay_give`, `item_type_delay_drop`) VALUES + (123, 2, 'Flashlight', 39, 0, 0, 35, 0, 502, 0, 0, -1, 1.6, 0, 0, 0, 0, 0, 'no-image.png', 'no-image.png', 'no-image.png', 0, 0, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `item_type` (`item_type_id`, `item_type_server`, `item_type_name`, `item_type_use_type`, `item_type_use_id`, `item_type_use_value`, `item_type_order_price`, `item_type_drop_type`, `item_type_drop_model`, `item_type_drop_pos_x`, `item_type_drop_pos_y`, `item_type_drop_pos_z`, `item_type_drop_rot_x`, `item_type_drop_rot_y`, `item_type_drop_rot_z`, `item_type_drop_scale_x`, `item_type_drop_scale_y`, `item_type_drop_scale_z`, `item_type_image_small`, `item_type_image_large`, `item_type_image_hotbar`, `item_type_size`, `item_type_capacity`, `item_type_demand_multiplier`, `item_type_supply_multiplier`, `item_type_risk_multiplier`, `item_type_enabled`, `item_type_delay_switch`, `item_type_delay_use`, `item_type_delay_pickup`, `item_type_delay_put`, `item_type_delay_take`, `item_type_delay_give`, `item_type_delay_drop`) VALUES + (124, 2, 'First Aid Kit', 29, 0, 50, 75, 0, 502, 0, 0, -1, 1.6, 0, 0, 0, 0, 0, 'no-image.png', 'no-image.png', 'no-image.png', 0, 100, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `item_type` (`item_type_id`, `item_type_server`, `item_type_name`, `item_type_use_type`, `item_type_use_id`, `item_type_use_value`, `item_type_order_price`, `item_type_drop_type`, `item_type_drop_model`, `item_type_drop_pos_x`, `item_type_drop_pos_y`, `item_type_drop_pos_z`, `item_type_drop_rot_x`, `item_type_drop_rot_y`, `item_type_drop_rot_z`, `item_type_drop_scale_x`, `item_type_drop_scale_y`, `item_type_drop_scale_z`, `item_type_image_small`, `item_type_image_large`, `item_type_image_hotbar`, `item_type_size`, `item_type_capacity`, `item_type_demand_multiplier`, `item_type_supply_multiplier`, `item_type_risk_multiplier`, `item_type_enabled`, `item_type_delay_switch`, `item_type_delay_use`, `item_type_delay_pickup`, `item_type_delay_put`, `item_type_delay_take`, `item_type_delay_give`, `item_type_delay_drop`) VALUES + (125, 2, 'AED', 29, 0, 100, 3000, 0, 502, 0, 0, -1, 1.6, 0, 0, 0, 0, 0, 'no-image.png', 'no-image.png', 'no-image.png', 0, 100, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `item_type` (`item_type_id`, `item_type_server`, `item_type_name`, `item_type_use_type`, `item_type_use_id`, `item_type_use_value`, `item_type_order_price`, `item_type_drop_type`, `item_type_drop_model`, `item_type_drop_pos_x`, `item_type_drop_pos_y`, `item_type_drop_pos_z`, `item_type_drop_rot_x`, `item_type_drop_rot_y`, `item_type_drop_rot_z`, `item_type_drop_scale_x`, `item_type_drop_scale_y`, `item_type_drop_scale_z`, `item_type_image_small`, `item_type_image_large`, `item_type_image_hotbar`, `item_type_size`, `item_type_capacity`, `item_type_demand_multiplier`, `item_type_supply_multiplier`, `item_type_risk_multiplier`, `item_type_enabled`, `item_type_delay_switch`, `item_type_delay_use`, `item_type_delay_pickup`, `item_type_delay_put`, `item_type_delay_take`, `item_type_delay_give`, `item_type_delay_drop`) VALUES + (126, 2, 'Morphine Syringe', 29, 0, 100, 650, 0, 502, 0, 0, -1, 1.6, 0, 0, 0, 0, 0, 'no-image.png', 'no-image.png', 'no-image.png', 0, 100, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `item_type` (`item_type_id`, `item_type_server`, `item_type_name`, `item_type_use_type`, `item_type_use_id`, `item_type_use_value`, `item_type_order_price`, `item_type_drop_type`, `item_type_drop_model`, `item_type_drop_pos_x`, `item_type_drop_pos_y`, `item_type_drop_pos_z`, `item_type_drop_rot_x`, `item_type_drop_rot_y`, `item_type_drop_rot_z`, `item_type_drop_scale_x`, `item_type_drop_scale_y`, `item_type_drop_scale_z`, `item_type_image_small`, `item_type_image_large`, `item_type_image_hotbar`, `item_type_size`, `item_type_capacity`, `item_type_demand_multiplier`, `item_type_supply_multiplier`, `item_type_risk_multiplier`, `item_type_enabled`, `item_type_delay_switch`, `item_type_delay_use`, `item_type_delay_pickup`, `item_type_delay_put`, `item_type_delay_take`, `item_type_delay_give`, `item_type_delay_drop`) VALUES + (127, 2, 'Cheeseburger', 19, 0, 10, 5, 0, 502, 0, 0, -1, 1.6, 0, 0, 0, 0, 0, 'no-image.png', 'no-image.png', 'no-image.png', 0, 100, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `item_type` (`item_type_id`, `item_type_server`, `item_type_name`, `item_type_use_type`, `item_type_use_id`, `item_type_use_value`, `item_type_order_price`, `item_type_drop_type`, `item_type_drop_model`, `item_type_drop_pos_x`, `item_type_drop_pos_y`, `item_type_drop_pos_z`, `item_type_drop_rot_x`, `item_type_drop_rot_y`, `item_type_drop_rot_z`, `item_type_drop_scale_x`, `item_type_drop_scale_y`, `item_type_drop_scale_z`, `item_type_image_small`, `item_type_image_large`, `item_type_image_hotbar`, `item_type_size`, `item_type_capacity`, `item_type_demand_multiplier`, `item_type_supply_multiplier`, `item_type_risk_multiplier`, `item_type_enabled`, `item_type_delay_switch`, `item_type_delay_use`, `item_type_delay_pickup`, `item_type_delay_put`, `item_type_delay_take`, `item_type_delay_give`, `item_type_delay_drop`) VALUES + (128, 2, 'Slice of Pizza', 19, 0, 10, 5, 0, 502, 0, 0, -1, 1.6, 0, 0, 0, 0, 0, 'no-image.png', 'no-image.png', 'no-image.png', 0, 100, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `item_type` (`item_type_id`, `item_type_server`, `item_type_name`, `item_type_use_type`, `item_type_use_id`, `item_type_use_value`, `item_type_order_price`, `item_type_drop_type`, `item_type_drop_model`, `item_type_drop_pos_x`, `item_type_drop_pos_y`, `item_type_drop_pos_z`, `item_type_drop_rot_x`, `item_type_drop_rot_y`, `item_type_drop_rot_z`, `item_type_drop_scale_x`, `item_type_drop_scale_y`, `item_type_drop_scale_z`, `item_type_image_small`, `item_type_image_large`, `item_type_image_hotbar`, `item_type_size`, `item_type_capacity`, `item_type_demand_multiplier`, `item_type_supply_multiplier`, `item_type_risk_multiplier`, `item_type_enabled`, `item_type_delay_switch`, `item_type_delay_use`, `item_type_delay_pickup`, `item_type_delay_put`, `item_type_delay_take`, `item_type_delay_give`, `item_type_delay_drop`) VALUES + (129, 2, 'Chicken Wing', 19, 0, 10, 5, 0, 502, 0, 0, -1, 1.6, 0, 0, 0.1, 0.1, 0.1, 'no-image.png', 'no-image.png', 'no-image.png', 0, 100, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `item_type` (`item_type_id`, `item_type_server`, `item_type_name`, `item_type_use_type`, `item_type_use_id`, `item_type_use_value`, `item_type_order_price`, `item_type_drop_type`, `item_type_drop_model`, `item_type_drop_pos_x`, `item_type_drop_pos_y`, `item_type_drop_pos_z`, `item_type_drop_rot_x`, `item_type_drop_rot_y`, `item_type_drop_rot_z`, `item_type_drop_scale_x`, `item_type_drop_scale_y`, `item_type_drop_scale_z`, `item_type_image_small`, `item_type_image_large`, `item_type_image_hotbar`, `item_type_size`, `item_type_capacity`, `item_type_demand_multiplier`, `item_type_supply_multiplier`, `item_type_risk_multiplier`, `item_type_enabled`, `item_type_delay_switch`, `item_type_delay_use`, `item_type_delay_pickup`, `item_type_delay_put`, `item_type_delay_take`, `item_type_delay_give`, `item_type_delay_drop`) VALUES + (130, 2, 'Pizza', 19, 0, 10, 15, 0, 510, 0, 0, -1, 1.6, 0, 0, 0, 0, 0, 'no-image.png', 'no-image.png', 'no-image.png', 0, 100, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `item_type` (`item_type_id`, `item_type_server`, `item_type_name`, `item_type_use_type`, `item_type_use_id`, `item_type_use_value`, `item_type_order_price`, `item_type_drop_type`, `item_type_drop_model`, `item_type_drop_pos_x`, `item_type_drop_pos_y`, `item_type_drop_pos_z`, `item_type_drop_rot_x`, `item_type_drop_rot_y`, `item_type_drop_rot_z`, `item_type_drop_scale_x`, `item_type_drop_scale_y`, `item_type_drop_scale_z`, `item_type_image_small`, `item_type_image_large`, `item_type_image_hotbar`, `item_type_size`, `item_type_capacity`, `item_type_demand_multiplier`, `item_type_supply_multiplier`, `item_type_risk_multiplier`, `item_type_enabled`, `item_type_delay_switch`, `item_type_delay_use`, `item_type_delay_pickup`, `item_type_delay_put`, `item_type_delay_take`, `item_type_delay_give`, `item_type_delay_drop`) VALUES + (131, 2, 'Walkie Talkie', 31, 0, 0, 50, 0, 182, 0, 0, -1, 1.6, 0, 0, 0, 0, 0, 'no-image.png', 'no-image.png', 'no-image.png', 0, 0, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `item_type` (`item_type_id`, `item_type_server`, `item_type_name`, `item_type_use_type`, `item_type_use_id`, `item_type_use_value`, `item_type_order_price`, `item_type_drop_type`, `item_type_drop_model`, `item_type_drop_pos_x`, `item_type_drop_pos_y`, `item_type_drop_pos_z`, `item_type_drop_rot_x`, `item_type_drop_rot_y`, `item_type_drop_rot_z`, `item_type_drop_scale_x`, `item_type_drop_scale_y`, `item_type_drop_scale_z`, `item_type_image_small`, `item_type_image_large`, `item_type_image_hotbar`, `item_type_size`, `item_type_capacity`, `item_type_demand_multiplier`, `item_type_supply_multiplier`, `item_type_risk_multiplier`, `item_type_enabled`, `item_type_delay_switch`, `item_type_delay_use`, `item_type_delay_pickup`, `item_type_delay_put`, `item_type_delay_take`, `item_type_delay_give`, `item_type_delay_drop`) VALUES + (132, 2, 'Bottle of Soda', 35, 2, 0, 0, 0, 597, 0, 0, -1, 1.6, 0, 0, 0, 0, 0, 'no-image.png', 'no-image.png', 'no-image.png', 0, 100, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `item_type` (`item_type_id`, `item_type_server`, `item_type_name`, `item_type_use_type`, `item_type_use_id`, `item_type_use_value`, `item_type_order_price`, `item_type_drop_type`, `item_type_drop_model`, `item_type_drop_pos_x`, `item_type_drop_pos_y`, `item_type_drop_pos_z`, `item_type_drop_rot_x`, `item_type_drop_rot_y`, `item_type_drop_rot_z`, `item_type_drop_scale_x`, `item_type_drop_scale_y`, `item_type_drop_scale_z`, `item_type_image_small`, `item_type_image_large`, `item_type_image_hotbar`, `item_type_size`, `item_type_capacity`, `item_type_demand_multiplier`, `item_type_supply_multiplier`, `item_type_risk_multiplier`, `item_type_enabled`, `item_type_delay_switch`, `item_type_delay_use`, `item_type_delay_pickup`, `item_type_delay_put`, `item_type_delay_take`, `item_type_delay_give`, `item_type_delay_drop`) VALUES + (133, 2, 'Can of Soda', 35, 2, 0, 0, 0, 594, 0, 0, -1, 1.6, 0, 0, 0, 0, 0, 'no-image.png', 'no-image.png', 'no-image.png', 0, 100, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `item_type` (`item_type_id`, `item_type_server`, `item_type_name`, `item_type_use_type`, `item_type_use_id`, `item_type_use_value`, `item_type_order_price`, `item_type_drop_type`, `item_type_drop_model`, `item_type_drop_pos_x`, `item_type_drop_pos_y`, `item_type_drop_pos_z`, `item_type_drop_rot_x`, `item_type_drop_rot_y`, `item_type_drop_rot_z`, `item_type_drop_scale_x`, `item_type_drop_scale_y`, `item_type_drop_scale_z`, `item_type_image_small`, `item_type_image_large`, `item_type_image_hotbar`, `item_type_size`, `item_type_capacity`, `item_type_demand_multiplier`, `item_type_supply_multiplier`, `item_type_risk_multiplier`, `item_type_enabled`, `item_type_delay_switch`, `item_type_delay_use`, `item_type_delay_pickup`, `item_type_delay_put`, `item_type_delay_take`, `item_type_delay_give`, `item_type_delay_drop`) VALUES + (134, 2, 'Badge', 34, 0, 0, 0, 0, 0, 0, 0, -1, 1.6, 0, 0, 0, 0, 0, 'no-image.png', 'no-image.png', 'no-image.png', 0, 0, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `item_type` (`item_type_id`, `item_type_server`, `item_type_name`, `item_type_use_type`, `item_type_use_id`, `item_type_use_value`, `item_type_order_price`, `item_type_drop_type`, `item_type_drop_model`, `item_type_drop_pos_x`, `item_type_drop_pos_y`, `item_type_drop_pos_z`, `item_type_drop_rot_x`, `item_type_drop_rot_y`, `item_type_drop_rot_z`, `item_type_drop_scale_x`, `item_type_drop_scale_y`, `item_type_drop_scale_z`, `item_type_image_small`, `item_type_image_large`, `item_type_image_hotbar`, `item_type_size`, `item_type_capacity`, `item_type_demand_multiplier`, `item_type_supply_multiplier`, `item_type_risk_multiplier`, `item_type_enabled`, `item_type_delay_switch`, `item_type_delay_use`, `item_type_delay_pickup`, `item_type_delay_put`, `item_type_delay_take`, `item_type_delay_give`, `item_type_delay_drop`) VALUES + (135, 4, 'Brass Knuckles', 1, 1, 0, 25, 0, 331, 0, 0, -0.95, 1.6, 0, 0, 0, 0, 0, 'no-image.png', 'no-image.png', 'no-image.png', 0, 0, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `item_type` (`item_type_id`, `item_type_server`, `item_type_name`, `item_type_use_type`, `item_type_use_id`, `item_type_use_value`, `item_type_order_price`, `item_type_drop_type`, `item_type_drop_model`, `item_type_drop_pos_x`, `item_type_drop_pos_y`, `item_type_drop_pos_z`, `item_type_drop_rot_x`, `item_type_drop_rot_y`, `item_type_drop_rot_z`, `item_type_drop_scale_x`, `item_type_drop_scale_y`, `item_type_drop_scale_z`, `item_type_image_small`, `item_type_image_large`, `item_type_image_hotbar`, `item_type_size`, `item_type_capacity`, `item_type_demand_multiplier`, `item_type_supply_multiplier`, `item_type_risk_multiplier`, `item_type_enabled`, `item_type_delay_switch`, `item_type_delay_use`, `item_type_delay_pickup`, `item_type_delay_put`, `item_type_delay_take`, `item_type_delay_give`, `item_type_delay_drop`) VALUES + (136, 4, 'Golf Club', 1, 2, 0, 40, 0, 333, 0, 0, -0.95, 1.6, 0, 0, 0, 0, 0, 'no-image.png', 'no-image.png', 'no-image.png', 0, 0, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `item_type` (`item_type_id`, `item_type_server`, `item_type_name`, `item_type_use_type`, `item_type_use_id`, `item_type_use_value`, `item_type_order_price`, `item_type_drop_type`, `item_type_drop_model`, `item_type_drop_pos_x`, `item_type_drop_pos_y`, `item_type_drop_pos_z`, `item_type_drop_rot_x`, `item_type_drop_rot_y`, `item_type_drop_rot_z`, `item_type_drop_scale_x`, `item_type_drop_scale_y`, `item_type_drop_scale_z`, `item_type_image_small`, `item_type_image_large`, `item_type_image_hotbar`, `item_type_size`, `item_type_capacity`, `item_type_demand_multiplier`, `item_type_supply_multiplier`, `item_type_risk_multiplier`, `item_type_enabled`, `item_type_delay_switch`, `item_type_delay_use`, `item_type_delay_pickup`, `item_type_delay_put`, `item_type_delay_take`, `item_type_delay_give`, `item_type_delay_drop`) VALUES + (137, 4, 'Nightstick', 1, 3, 0, 40, 0, 334, 0, 0, -0.95, 1.6, 0, 0, 0, 0, 0, 'no-image.png', 'no-image.png', 'no-image.png', 0, 0, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `item_type` (`item_type_id`, `item_type_server`, `item_type_name`, `item_type_use_type`, `item_type_use_id`, `item_type_use_value`, `item_type_order_price`, `item_type_drop_type`, `item_type_drop_model`, `item_type_drop_pos_x`, `item_type_drop_pos_y`, `item_type_drop_pos_z`, `item_type_drop_rot_x`, `item_type_drop_rot_y`, `item_type_drop_rot_z`, `item_type_drop_scale_x`, `item_type_drop_scale_y`, `item_type_drop_scale_z`, `item_type_image_small`, `item_type_image_large`, `item_type_image_hotbar`, `item_type_size`, `item_type_capacity`, `item_type_demand_multiplier`, `item_type_supply_multiplier`, `item_type_risk_multiplier`, `item_type_enabled`, `item_type_delay_switch`, `item_type_delay_use`, `item_type_delay_pickup`, `item_type_delay_put`, `item_type_delay_take`, `item_type_delay_give`, `item_type_delay_drop`) VALUES + (138, 4, 'Knife', 1, 4, 0, 35, 0, 335, 0, 0, -0.95, 1.6, 0, 0, 0, 0, 0, 'no-image.png', 'no-image.png', 'no-image.png', 0, 0, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `item_type` (`item_type_id`, `item_type_server`, `item_type_name`, `item_type_use_type`, `item_type_use_id`, `item_type_use_value`, `item_type_order_price`, `item_type_drop_type`, `item_type_drop_model`, `item_type_drop_pos_x`, `item_type_drop_pos_y`, `item_type_drop_pos_z`, `item_type_drop_rot_x`, `item_type_drop_rot_y`, `item_type_drop_rot_z`, `item_type_drop_scale_x`, `item_type_drop_scale_y`, `item_type_drop_scale_z`, `item_type_image_small`, `item_type_image_large`, `item_type_image_hotbar`, `item_type_size`, `item_type_capacity`, `item_type_demand_multiplier`, `item_type_supply_multiplier`, `item_type_risk_multiplier`, `item_type_enabled`, `item_type_delay_switch`, `item_type_delay_use`, `item_type_delay_pickup`, `item_type_delay_put`, `item_type_delay_take`, `item_type_delay_give`, `item_type_delay_drop`) VALUES + (139, 4, 'Baseball Bat', 1, 5, 0, 25, 0, 336, 0, 0, -0.95, 1.6, 0, 0, 0, 0, 0, 'no-image.png', 'no-image.png', 'no-image.png', 0, 0, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `item_type` (`item_type_id`, `item_type_server`, `item_type_name`, `item_type_use_type`, `item_type_use_id`, `item_type_use_value`, `item_type_order_price`, `item_type_drop_type`, `item_type_drop_model`, `item_type_drop_pos_x`, `item_type_drop_pos_y`, `item_type_drop_pos_z`, `item_type_drop_rot_x`, `item_type_drop_rot_y`, `item_type_drop_rot_z`, `item_type_drop_scale_x`, `item_type_drop_scale_y`, `item_type_drop_scale_z`, `item_type_image_small`, `item_type_image_large`, `item_type_image_hotbar`, `item_type_size`, `item_type_capacity`, `item_type_demand_multiplier`, `item_type_supply_multiplier`, `item_type_risk_multiplier`, `item_type_enabled`, `item_type_delay_switch`, `item_type_delay_use`, `item_type_delay_pickup`, `item_type_delay_put`, `item_type_delay_take`, `item_type_delay_give`, `item_type_delay_drop`) VALUES + (140, 4, 'Shovel', 1, 6, 0, 10, 0, 337, 0, 0, -0.95, 1.6, 0, 0, 0, 0, 0, 'no-image.png', 'no-image.png', 'no-image.png', 0, 0, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `item_type` (`item_type_id`, `item_type_server`, `item_type_name`, `item_type_use_type`, `item_type_use_id`, `item_type_use_value`, `item_type_order_price`, `item_type_drop_type`, `item_type_drop_model`, `item_type_drop_pos_x`, `item_type_drop_pos_y`, `item_type_drop_pos_z`, `item_type_drop_rot_x`, `item_type_drop_rot_y`, `item_type_drop_rot_z`, `item_type_drop_scale_x`, `item_type_drop_scale_y`, `item_type_drop_scale_z`, `item_type_image_small`, `item_type_image_large`, `item_type_image_hotbar`, `item_type_size`, `item_type_capacity`, `item_type_demand_multiplier`, `item_type_supply_multiplier`, `item_type_risk_multiplier`, `item_type_enabled`, `item_type_delay_switch`, `item_type_delay_use`, `item_type_delay_pickup`, `item_type_delay_put`, `item_type_delay_take`, `item_type_delay_give`, `item_type_delay_drop`) VALUES + (141, 4, 'Pool Cue', 1, 7, 0, 15, 0, 338, 0, 0, -0.95, 1.6, 0, 0, 0, 0, 0, 'no-image.png', 'no-image.png', 'no-image.png', 0, 0, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `item_type` (`item_type_id`, `item_type_server`, `item_type_name`, `item_type_use_type`, `item_type_use_id`, `item_type_use_value`, `item_type_order_price`, `item_type_drop_type`, `item_type_drop_model`, `item_type_drop_pos_x`, `item_type_drop_pos_y`, `item_type_drop_pos_z`, `item_type_drop_rot_x`, `item_type_drop_rot_y`, `item_type_drop_rot_z`, `item_type_drop_scale_x`, `item_type_drop_scale_y`, `item_type_drop_scale_z`, `item_type_image_small`, `item_type_image_large`, `item_type_image_hotbar`, `item_type_size`, `item_type_capacity`, `item_type_demand_multiplier`, `item_type_supply_multiplier`, `item_type_risk_multiplier`, `item_type_enabled`, `item_type_delay_switch`, `item_type_delay_use`, `item_type_delay_pickup`, `item_type_delay_put`, `item_type_delay_take`, `item_type_delay_give`, `item_type_delay_drop`) VALUES + (142, 4, 'Katana', 1, 8, 0, 250, 0, 339, 0, 0, -0.95, 1.6, 0, 0, 0, 0, 0, 'no-image.png', 'no-image.png', 'no-image.png', 0, 0, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `item_type` (`item_type_id`, `item_type_server`, `item_type_name`, `item_type_use_type`, `item_type_use_id`, `item_type_use_value`, `item_type_order_price`, `item_type_drop_type`, `item_type_drop_model`, `item_type_drop_pos_x`, `item_type_drop_pos_y`, `item_type_drop_pos_z`, `item_type_drop_rot_x`, `item_type_drop_rot_y`, `item_type_drop_rot_z`, `item_type_drop_scale_x`, `item_type_drop_scale_y`, `item_type_drop_scale_z`, `item_type_image_small`, `item_type_image_large`, `item_type_image_hotbar`, `item_type_size`, `item_type_capacity`, `item_type_demand_multiplier`, `item_type_supply_multiplier`, `item_type_risk_multiplier`, `item_type_enabled`, `item_type_delay_switch`, `item_type_delay_use`, `item_type_delay_pickup`, `item_type_delay_put`, `item_type_delay_take`, `item_type_delay_give`, `item_type_delay_drop`) VALUES + (143, 4, 'Chainsaw', 1, 9, 0, 350, 0, 341, 0, 0, -0.95, 1.6, 0, 0, 0, 0, 0, 'no-image.png', 'no-image.png', 'no-image.png', 0, 0, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `item_type` (`item_type_id`, `item_type_server`, `item_type_name`, `item_type_use_type`, `item_type_use_id`, `item_type_use_value`, `item_type_order_price`, `item_type_drop_type`, `item_type_drop_model`, `item_type_drop_pos_x`, `item_type_drop_pos_y`, `item_type_drop_pos_z`, `item_type_drop_rot_x`, `item_type_drop_rot_y`, `item_type_drop_rot_z`, `item_type_drop_scale_x`, `item_type_drop_scale_y`, `item_type_drop_scale_z`, `item_type_image_small`, `item_type_image_large`, `item_type_image_hotbar`, `item_type_size`, `item_type_capacity`, `item_type_demand_multiplier`, `item_type_supply_multiplier`, `item_type_risk_multiplier`, `item_type_enabled`, `item_type_delay_switch`, `item_type_delay_use`, `item_type_delay_pickup`, `item_type_delay_put`, `item_type_delay_take`, `item_type_delay_give`, `item_type_delay_drop`) VALUES + (144, 4, 'Purple Dildo', 1, 10, 0, 30, 0, 321, 0, 0, -0.95, 1.6, 0, 0, 0, 0, 0, 'no-image.png', 'no-image.png', 'no-image.png', 0, 0, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `item_type` (`item_type_id`, `item_type_server`, `item_type_name`, `item_type_use_type`, `item_type_use_id`, `item_type_use_value`, `item_type_order_price`, `item_type_drop_type`, `item_type_drop_model`, `item_type_drop_pos_x`, `item_type_drop_pos_y`, `item_type_drop_pos_z`, `item_type_drop_rot_x`, `item_type_drop_rot_y`, `item_type_drop_rot_z`, `item_type_drop_scale_x`, `item_type_drop_scale_y`, `item_type_drop_scale_z`, `item_type_image_small`, `item_type_image_large`, `item_type_image_hotbar`, `item_type_size`, `item_type_capacity`, `item_type_demand_multiplier`, `item_type_supply_multiplier`, `item_type_risk_multiplier`, `item_type_enabled`, `item_type_delay_switch`, `item_type_delay_use`, `item_type_delay_pickup`, `item_type_delay_put`, `item_type_delay_take`, `item_type_delay_give`, `item_type_delay_drop`) VALUES + (145, 4, 'Dildo', 1, 11, 0, 10, 0, 322, 0, 0, -0.95, 1.6, 0, 0, 0, 0, 0, 'no-image.png', 'no-image.png', 'no-image.png', 0, 0, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `item_type` (`item_type_id`, `item_type_server`, `item_type_name`, `item_type_use_type`, `item_type_use_id`, `item_type_use_value`, `item_type_order_price`, `item_type_drop_type`, `item_type_drop_model`, `item_type_drop_pos_x`, `item_type_drop_pos_y`, `item_type_drop_pos_z`, `item_type_drop_rot_x`, `item_type_drop_rot_y`, `item_type_drop_rot_z`, `item_type_drop_scale_x`, `item_type_drop_scale_y`, `item_type_drop_scale_z`, `item_type_image_small`, `item_type_image_large`, `item_type_image_hotbar`, `item_type_size`, `item_type_capacity`, `item_type_demand_multiplier`, `item_type_supply_multiplier`, `item_type_risk_multiplier`, `item_type_enabled`, `item_type_delay_switch`, `item_type_delay_use`, `item_type_delay_pickup`, `item_type_delay_put`, `item_type_delay_take`, `item_type_delay_give`, `item_type_delay_drop`) VALUES + (146, 4, 'Vibrator', 1, 12, 0, 25, 0, 323, 0, 0, -0.95, 1.6, 0, 0, 0, 0, 0, 'no-image.png', 'no-image.png', 'no-image.png', 0, 0, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `item_type` (`item_type_id`, `item_type_server`, `item_type_name`, `item_type_use_type`, `item_type_use_id`, `item_type_use_value`, `item_type_order_price`, `item_type_drop_type`, `item_type_drop_model`, `item_type_drop_pos_x`, `item_type_drop_pos_y`, `item_type_drop_pos_z`, `item_type_drop_rot_x`, `item_type_drop_rot_y`, `item_type_drop_rot_z`, `item_type_drop_scale_x`, `item_type_drop_scale_y`, `item_type_drop_scale_z`, `item_type_image_small`, `item_type_image_large`, `item_type_image_hotbar`, `item_type_size`, `item_type_capacity`, `item_type_demand_multiplier`, `item_type_supply_multiplier`, `item_type_risk_multiplier`, `item_type_enabled`, `item_type_delay_switch`, `item_type_delay_use`, `item_type_delay_pickup`, `item_type_delay_put`, `item_type_delay_take`, `item_type_delay_give`, `item_type_delay_drop`) VALUES + (147, 4, 'Silver Vibrator', 1, 13, 0, 15, 0, 324, 0, 0, -0.95, 1.6, 0, 0, 0, 0, 0, 'no-image.png', 'no-image.png', 'no-image.png', 0, 0, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `item_type` (`item_type_id`, `item_type_server`, `item_type_name`, `item_type_use_type`, `item_type_use_id`, `item_type_use_value`, `item_type_order_price`, `item_type_drop_type`, `item_type_drop_model`, `item_type_drop_pos_x`, `item_type_drop_pos_y`, `item_type_drop_pos_z`, `item_type_drop_rot_x`, `item_type_drop_rot_y`, `item_type_drop_rot_z`, `item_type_drop_scale_x`, `item_type_drop_scale_y`, `item_type_drop_scale_z`, `item_type_image_small`, `item_type_image_large`, `item_type_image_hotbar`, `item_type_size`, `item_type_capacity`, `item_type_demand_multiplier`, `item_type_supply_multiplier`, `item_type_risk_multiplier`, `item_type_enabled`, `item_type_delay_switch`, `item_type_delay_use`, `item_type_delay_pickup`, `item_type_delay_put`, `item_type_delay_take`, `item_type_delay_give`, `item_type_delay_drop`) VALUES + (148, 4, 'Flowers', 1, 14, 0, 10, 0, 325, 0, 0, -0.95, 1.6, 0, 0, 0, 0, 0, 'no-image.png', 'no-image.png', 'no-image.png', 0, 0, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `item_type` (`item_type_id`, `item_type_server`, `item_type_name`, `item_type_use_type`, `item_type_use_id`, `item_type_use_value`, `item_type_order_price`, `item_type_drop_type`, `item_type_drop_model`, `item_type_drop_pos_x`, `item_type_drop_pos_y`, `item_type_drop_pos_z`, `item_type_drop_rot_x`, `item_type_drop_rot_y`, `item_type_drop_rot_z`, `item_type_drop_scale_x`, `item_type_drop_scale_y`, `item_type_drop_scale_z`, `item_type_image_small`, `item_type_image_large`, `item_type_image_hotbar`, `item_type_size`, `item_type_capacity`, `item_type_demand_multiplier`, `item_type_supply_multiplier`, `item_type_risk_multiplier`, `item_type_enabled`, `item_type_delay_switch`, `item_type_delay_use`, `item_type_delay_pickup`, `item_type_delay_put`, `item_type_delay_take`, `item_type_delay_give`, `item_type_delay_drop`) VALUES + (149, 4, 'Cane', 1, 15, 0, 10, 0, 326, 0, 0, -0.95, 1.6, 0, 0, 0, 0, 0, 'no-image.png', 'no-image.png', 'no-image.png', 0, 0, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `item_type` (`item_type_id`, `item_type_server`, `item_type_name`, `item_type_use_type`, `item_type_use_id`, `item_type_use_value`, `item_type_order_price`, `item_type_drop_type`, `item_type_drop_model`, `item_type_drop_pos_x`, `item_type_drop_pos_y`, `item_type_drop_pos_z`, `item_type_drop_rot_x`, `item_type_drop_rot_y`, `item_type_drop_rot_z`, `item_type_drop_scale_x`, `item_type_drop_scale_y`, `item_type_drop_scale_z`, `item_type_image_small`, `item_type_image_large`, `item_type_image_hotbar`, `item_type_size`, `item_type_capacity`, `item_type_demand_multiplier`, `item_type_supply_multiplier`, `item_type_risk_multiplier`, `item_type_enabled`, `item_type_delay_switch`, `item_type_delay_use`, `item_type_delay_pickup`, `item_type_delay_put`, `item_type_delay_take`, `item_type_delay_give`, `item_type_delay_drop`) VALUES + (150, 4, 'Grenade', 1, 16, 0, 500, 0, 342, 0, 0, -0.95, 1.6, 0, 0, 0, 0, 0, 'no-image.png', 'no-image.png', 'no-image.png', 0, 0, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `item_type` (`item_type_id`, `item_type_server`, `item_type_name`, `item_type_use_type`, `item_type_use_id`, `item_type_use_value`, `item_type_order_price`, `item_type_drop_type`, `item_type_drop_model`, `item_type_drop_pos_x`, `item_type_drop_pos_y`, `item_type_drop_pos_z`, `item_type_drop_rot_x`, `item_type_drop_rot_y`, `item_type_drop_rot_z`, `item_type_drop_scale_x`, `item_type_drop_scale_y`, `item_type_drop_scale_z`, `item_type_image_small`, `item_type_image_large`, `item_type_image_hotbar`, `item_type_size`, `item_type_capacity`, `item_type_demand_multiplier`, `item_type_supply_multiplier`, `item_type_risk_multiplier`, `item_type_enabled`, `item_type_delay_switch`, `item_type_delay_use`, `item_type_delay_pickup`, `item_type_delay_put`, `item_type_delay_take`, `item_type_delay_give`, `item_type_delay_drop`) VALUES + (151, 4, 'Tear Gas', 1, 17, 0, 150, 0, 343, 0, 0, -0.95, 1.6, 0, 0, 0, 0, 0, 'no-image.png', 'no-image.png', 'no-image.png', 0, 0, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `item_type` (`item_type_id`, `item_type_server`, `item_type_name`, `item_type_use_type`, `item_type_use_id`, `item_type_use_value`, `item_type_order_price`, `item_type_drop_type`, `item_type_drop_model`, `item_type_drop_pos_x`, `item_type_drop_pos_y`, `item_type_drop_pos_z`, `item_type_drop_rot_x`, `item_type_drop_rot_y`, `item_type_drop_rot_z`, `item_type_drop_scale_x`, `item_type_drop_scale_y`, `item_type_drop_scale_z`, `item_type_image_small`, `item_type_image_large`, `item_type_image_hotbar`, `item_type_size`, `item_type_capacity`, `item_type_demand_multiplier`, `item_type_supply_multiplier`, `item_type_risk_multiplier`, `item_type_enabled`, `item_type_delay_switch`, `item_type_delay_use`, `item_type_delay_pickup`, `item_type_delay_put`, `item_type_delay_take`, `item_type_delay_give`, `item_type_delay_drop`) VALUES + (152, 4, 'Molotov Cocktail', 1, 18, 0, 150, 0, 344, 0, 0, -0.95, 1.6, 0, 0, 0, 0, 0, 'no-image.png', 'no-image.png', 'no-image.png', 0, 0, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `item_type` (`item_type_id`, `item_type_server`, `item_type_name`, `item_type_use_type`, `item_type_use_id`, `item_type_use_value`, `item_type_order_price`, `item_type_drop_type`, `item_type_drop_model`, `item_type_drop_pos_x`, `item_type_drop_pos_y`, `item_type_drop_pos_z`, `item_type_drop_rot_x`, `item_type_drop_rot_y`, `item_type_drop_rot_z`, `item_type_drop_scale_x`, `item_type_drop_scale_y`, `item_type_drop_scale_z`, `item_type_image_small`, `item_type_image_large`, `item_type_image_hotbar`, `item_type_size`, `item_type_capacity`, `item_type_demand_multiplier`, `item_type_supply_multiplier`, `item_type_risk_multiplier`, `item_type_enabled`, `item_type_delay_switch`, `item_type_delay_use`, `item_type_delay_pickup`, `item_type_delay_put`, `item_type_delay_take`, `item_type_delay_give`, `item_type_delay_drop`) VALUES + (153, 4, '9mm', 1, 22, 0, 350, 0, 346, 0, 0, -0.95, 1.6, 0, 0, 0, 0, 0, 'no-image.png', 'no-image.png', 'no-image.png', 0, 0, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `item_type` (`item_type_id`, `item_type_server`, `item_type_name`, `item_type_use_type`, `item_type_use_id`, `item_type_use_value`, `item_type_order_price`, `item_type_drop_type`, `item_type_drop_model`, `item_type_drop_pos_x`, `item_type_drop_pos_y`, `item_type_drop_pos_z`, `item_type_drop_rot_x`, `item_type_drop_rot_y`, `item_type_drop_rot_z`, `item_type_drop_scale_x`, `item_type_drop_scale_y`, `item_type_drop_scale_z`, `item_type_image_small`, `item_type_image_large`, `item_type_image_hotbar`, `item_type_size`, `item_type_capacity`, `item_type_demand_multiplier`, `item_type_supply_multiplier`, `item_type_risk_multiplier`, `item_type_enabled`, `item_type_delay_switch`, `item_type_delay_use`, `item_type_delay_pickup`, `item_type_delay_put`, `item_type_delay_take`, `item_type_delay_give`, `item_type_delay_drop`) VALUES + (154, 4, 'Silenced 9mm', 1, 23, 0, 400, 0, 347, 0, 0, -0.95, 1.6, 0, 0, 0, 0, 0, 'no-image.png', 'no-image.png', 'no-image.png', 0, 0, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `item_type` (`item_type_id`, `item_type_server`, `item_type_name`, `item_type_use_type`, `item_type_use_id`, `item_type_use_value`, `item_type_order_price`, `item_type_drop_type`, `item_type_drop_model`, `item_type_drop_pos_x`, `item_type_drop_pos_y`, `item_type_drop_pos_z`, `item_type_drop_rot_x`, `item_type_drop_rot_y`, `item_type_drop_rot_z`, `item_type_drop_scale_x`, `item_type_drop_scale_y`, `item_type_drop_scale_z`, `item_type_image_small`, `item_type_image_large`, `item_type_image_hotbar`, `item_type_size`, `item_type_capacity`, `item_type_demand_multiplier`, `item_type_supply_multiplier`, `item_type_risk_multiplier`, `item_type_enabled`, `item_type_delay_switch`, `item_type_delay_use`, `item_type_delay_pickup`, `item_type_delay_put`, `item_type_delay_take`, `item_type_delay_give`, `item_type_delay_drop`) VALUES + (155, 4, 'Desert Eagle', 1, 24, 0, 500, 0, 348, 0, 0, -0.95, 1.6, 0, 0, 0, 0, 0, 'no-image.png', 'no-image.png', 'no-image.png', 0, 0, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `item_type` (`item_type_id`, `item_type_server`, `item_type_name`, `item_type_use_type`, `item_type_use_id`, `item_type_use_value`, `item_type_order_price`, `item_type_drop_type`, `item_type_drop_model`, `item_type_drop_pos_x`, `item_type_drop_pos_y`, `item_type_drop_pos_z`, `item_type_drop_rot_x`, `item_type_drop_rot_y`, `item_type_drop_rot_z`, `item_type_drop_scale_x`, `item_type_drop_scale_y`, `item_type_drop_scale_z`, `item_type_image_small`, `item_type_image_large`, `item_type_image_hotbar`, `item_type_size`, `item_type_capacity`, `item_type_demand_multiplier`, `item_type_supply_multiplier`, `item_type_risk_multiplier`, `item_type_enabled`, `item_type_delay_switch`, `item_type_delay_use`, `item_type_delay_pickup`, `item_type_delay_put`, `item_type_delay_take`, `item_type_delay_give`, `item_type_delay_drop`) VALUES + (156, 4, 'Shotgun', 1, 25, 0, 450, 0, 349, 0, 0, -0.95, 1.6, 0, 0, 0, 0, 0, 'no-image.png', 'no-image.png', 'no-image.png', 0, 0, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `item_type` (`item_type_id`, `item_type_server`, `item_type_name`, `item_type_use_type`, `item_type_use_id`, `item_type_use_value`, `item_type_order_price`, `item_type_drop_type`, `item_type_drop_model`, `item_type_drop_pos_x`, `item_type_drop_pos_y`, `item_type_drop_pos_z`, `item_type_drop_rot_x`, `item_type_drop_rot_y`, `item_type_drop_rot_z`, `item_type_drop_scale_x`, `item_type_drop_scale_y`, `item_type_drop_scale_z`, `item_type_image_small`, `item_type_image_large`, `item_type_image_hotbar`, `item_type_size`, `item_type_capacity`, `item_type_demand_multiplier`, `item_type_supply_multiplier`, `item_type_risk_multiplier`, `item_type_enabled`, `item_type_delay_switch`, `item_type_delay_use`, `item_type_delay_pickup`, `item_type_delay_put`, `item_type_delay_take`, `item_type_delay_give`, `item_type_delay_drop`) VALUES + (157, 4, 'Sawnoff Shotgun', 1, 26, 0, 400, 0, 350, 0, 0, -0.95, 1.6, 0, 0, 0, 0, 0, 'no-image.png', 'no-image.png', 'no-image.png', 0, 0, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `item_type` (`item_type_id`, `item_type_server`, `item_type_name`, `item_type_use_type`, `item_type_use_id`, `item_type_use_value`, `item_type_order_price`, `item_type_drop_type`, `item_type_drop_model`, `item_type_drop_pos_x`, `item_type_drop_pos_y`, `item_type_drop_pos_z`, `item_type_drop_rot_x`, `item_type_drop_rot_y`, `item_type_drop_rot_z`, `item_type_drop_scale_x`, `item_type_drop_scale_y`, `item_type_drop_scale_z`, `item_type_image_small`, `item_type_image_large`, `item_type_image_hotbar`, `item_type_size`, `item_type_capacity`, `item_type_demand_multiplier`, `item_type_supply_multiplier`, `item_type_risk_multiplier`, `item_type_enabled`, `item_type_delay_switch`, `item_type_delay_use`, `item_type_delay_pickup`, `item_type_delay_put`, `item_type_delay_take`, `item_type_delay_give`, `item_type_delay_drop`) VALUES + (158, 4, 'Combat Shotgun', 1, 27, 0, 1250, 0, 351, 0, 0, -0.95, 1.6, 0, 0, 0, 0, 0, 'no-image.png', 'no-image.png', 'no-image.png', 0, 0, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `item_type` (`item_type_id`, `item_type_server`, `item_type_name`, `item_type_use_type`, `item_type_use_id`, `item_type_use_value`, `item_type_order_price`, `item_type_drop_type`, `item_type_drop_model`, `item_type_drop_pos_x`, `item_type_drop_pos_y`, `item_type_drop_pos_z`, `item_type_drop_rot_x`, `item_type_drop_rot_y`, `item_type_drop_rot_z`, `item_type_drop_scale_x`, `item_type_drop_scale_y`, `item_type_drop_scale_z`, `item_type_image_small`, `item_type_image_large`, `item_type_image_hotbar`, `item_type_size`, `item_type_capacity`, `item_type_demand_multiplier`, `item_type_supply_multiplier`, `item_type_risk_multiplier`, `item_type_enabled`, `item_type_delay_switch`, `item_type_delay_use`, `item_type_delay_pickup`, `item_type_delay_put`, `item_type_delay_take`, `item_type_delay_give`, `item_type_delay_drop`) VALUES + (159, 4, 'Micro SMG/Uzi', 1, 28, 0, 550, 0, 352, 0, 0, -0.95, 1.6, 0, 0, 0, 0, 0, 'no-image.png', 'no-image.png', 'no-image.png', 0, 0, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `item_type` (`item_type_id`, `item_type_server`, `item_type_name`, `item_type_use_type`, `item_type_use_id`, `item_type_use_value`, `item_type_order_price`, `item_type_drop_type`, `item_type_drop_model`, `item_type_drop_pos_x`, `item_type_drop_pos_y`, `item_type_drop_pos_z`, `item_type_drop_rot_x`, `item_type_drop_rot_y`, `item_type_drop_rot_z`, `item_type_drop_scale_x`, `item_type_drop_scale_y`, `item_type_drop_scale_z`, `item_type_image_small`, `item_type_image_large`, `item_type_image_hotbar`, `item_type_size`, `item_type_capacity`, `item_type_demand_multiplier`, `item_type_supply_multiplier`, `item_type_risk_multiplier`, `item_type_enabled`, `item_type_delay_switch`, `item_type_delay_use`, `item_type_delay_pickup`, `item_type_delay_put`, `item_type_delay_take`, `item_type_delay_give`, `item_type_delay_drop`) VALUES + (160, 4, 'MP5', 1, 29, 0, 800, 0, 353, 0, 0, -0.95, 1.6, 0, 0, 0, 0, 0, 'no-image.png', 'no-image.png', 'no-image.png', 0, 0, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `item_type` (`item_type_id`, `item_type_server`, `item_type_name`, `item_type_use_type`, `item_type_use_id`, `item_type_use_value`, `item_type_order_price`, `item_type_drop_type`, `item_type_drop_model`, `item_type_drop_pos_x`, `item_type_drop_pos_y`, `item_type_drop_pos_z`, `item_type_drop_rot_x`, `item_type_drop_rot_y`, `item_type_drop_rot_z`, `item_type_drop_scale_x`, `item_type_drop_scale_y`, `item_type_drop_scale_z`, `item_type_image_small`, `item_type_image_large`, `item_type_image_hotbar`, `item_type_size`, `item_type_capacity`, `item_type_demand_multiplier`, `item_type_supply_multiplier`, `item_type_risk_multiplier`, `item_type_enabled`, `item_type_delay_switch`, `item_type_delay_use`, `item_type_delay_pickup`, `item_type_delay_put`, `item_type_delay_take`, `item_type_delay_give`, `item_type_delay_drop`) VALUES + (161, 4, 'AK-47', 1, 30, 0, 850, 0, 355, 0, 0, -0.95, 1.6, 0, 0, 0, 0, 0, 'no-image.png', 'no-image.png', 'no-image.png', 0, 0, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `item_type` (`item_type_id`, `item_type_server`, `item_type_name`, `item_type_use_type`, `item_type_use_id`, `item_type_use_value`, `item_type_order_price`, `item_type_drop_type`, `item_type_drop_model`, `item_type_drop_pos_x`, `item_type_drop_pos_y`, `item_type_drop_pos_z`, `item_type_drop_rot_x`, `item_type_drop_rot_y`, `item_type_drop_rot_z`, `item_type_drop_scale_x`, `item_type_drop_scale_y`, `item_type_drop_scale_z`, `item_type_image_small`, `item_type_image_large`, `item_type_image_hotbar`, `item_type_size`, `item_type_capacity`, `item_type_demand_multiplier`, `item_type_supply_multiplier`, `item_type_risk_multiplier`, `item_type_enabled`, `item_type_delay_switch`, `item_type_delay_use`, `item_type_delay_pickup`, `item_type_delay_put`, `item_type_delay_take`, `item_type_delay_give`, `item_type_delay_drop`) VALUES + (162, 4, 'M4', 1, 31, 0, 1500, 0, 356, 0, 0, -0.95, 1.6, 0, 0, 0, 0, 0, 'no-image.png', 'no-image.png', 'no-image.png', 0, 0, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `item_type` (`item_type_id`, `item_type_server`, `item_type_name`, `item_type_use_type`, `item_type_use_id`, `item_type_use_value`, `item_type_order_price`, `item_type_drop_type`, `item_type_drop_model`, `item_type_drop_pos_x`, `item_type_drop_pos_y`, `item_type_drop_pos_z`, `item_type_drop_rot_x`, `item_type_drop_rot_y`, `item_type_drop_rot_z`, `item_type_drop_scale_x`, `item_type_drop_scale_y`, `item_type_drop_scale_z`, `item_type_image_small`, `item_type_image_large`, `item_type_image_hotbar`, `item_type_size`, `item_type_capacity`, `item_type_demand_multiplier`, `item_type_supply_multiplier`, `item_type_risk_multiplier`, `item_type_enabled`, `item_type_delay_switch`, `item_type_delay_use`, `item_type_delay_pickup`, `item_type_delay_put`, `item_type_delay_take`, `item_type_delay_give`, `item_type_delay_drop`) VALUES + (163, 4, 'Tec-9', 1, 32, 0, 500, 0, 372, 0, 0, -0.95, 1.6, 0, 0, 0, 0, 0, 'no-image.png', 'no-image.png', 'no-image.png', 0, 0, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `item_type` (`item_type_id`, `item_type_server`, `item_type_name`, `item_type_use_type`, `item_type_use_id`, `item_type_use_value`, `item_type_order_price`, `item_type_drop_type`, `item_type_drop_model`, `item_type_drop_pos_x`, `item_type_drop_pos_y`, `item_type_drop_pos_z`, `item_type_drop_rot_x`, `item_type_drop_rot_y`, `item_type_drop_rot_z`, `item_type_drop_scale_x`, `item_type_drop_scale_y`, `item_type_drop_scale_z`, `item_type_image_small`, `item_type_image_large`, `item_type_image_hotbar`, `item_type_size`, `item_type_capacity`, `item_type_demand_multiplier`, `item_type_supply_multiplier`, `item_type_risk_multiplier`, `item_type_enabled`, `item_type_delay_switch`, `item_type_delay_use`, `item_type_delay_pickup`, `item_type_delay_put`, `item_type_delay_take`, `item_type_delay_give`, `item_type_delay_drop`) VALUES + (164, 4, 'Country Rifle', 1, 33, 0, 1100, 0, 357, 0, 0, -0.95, 1.6, 0, 0, 0, 0, 0, 'no-image.png', 'no-image.png', 'no-image.png', 0, 0, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `item_type` (`item_type_id`, `item_type_server`, `item_type_name`, `item_type_use_type`, `item_type_use_id`, `item_type_use_value`, `item_type_order_price`, `item_type_drop_type`, `item_type_drop_model`, `item_type_drop_pos_x`, `item_type_drop_pos_y`, `item_type_drop_pos_z`, `item_type_drop_rot_x`, `item_type_drop_rot_y`, `item_type_drop_rot_z`, `item_type_drop_scale_x`, `item_type_drop_scale_y`, `item_type_drop_scale_z`, `item_type_image_small`, `item_type_image_large`, `item_type_image_hotbar`, `item_type_size`, `item_type_capacity`, `item_type_demand_multiplier`, `item_type_supply_multiplier`, `item_type_risk_multiplier`, `item_type_enabled`, `item_type_delay_switch`, `item_type_delay_use`, `item_type_delay_pickup`, `item_type_delay_put`, `item_type_delay_take`, `item_type_delay_give`, `item_type_delay_drop`) VALUES + (165, 4, 'Sniper Rifle', 1, 34, 0, 1500, 0, 358, 0, 0, -0.95, 1.6, 0, 0, 0, 0, 0, 'no-image.png', 'no-image.png', 'no-image.png', 0, 0, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `item_type` (`item_type_id`, `item_type_server`, `item_type_name`, `item_type_use_type`, `item_type_use_id`, `item_type_use_value`, `item_type_order_price`, `item_type_drop_type`, `item_type_drop_model`, `item_type_drop_pos_x`, `item_type_drop_pos_y`, `item_type_drop_pos_z`, `item_type_drop_rot_x`, `item_type_drop_rot_y`, `item_type_drop_rot_z`, `item_type_drop_scale_x`, `item_type_drop_scale_y`, `item_type_drop_scale_z`, `item_type_image_small`, `item_type_image_large`, `item_type_image_hotbar`, `item_type_size`, `item_type_capacity`, `item_type_demand_multiplier`, `item_type_supply_multiplier`, `item_type_risk_multiplier`, `item_type_enabled`, `item_type_delay_switch`, `item_type_delay_use`, `item_type_delay_pickup`, `item_type_delay_put`, `item_type_delay_take`, `item_type_delay_give`, `item_type_delay_drop`) VALUES + (166, 4, 'RPG', 1, 35, 0, 5000, 0, 359, 0, 0, -0.95, 1.6, 0, 0, 0, 0, 0, 'no-image.png', 'no-image.png', 'no-image.png', 0, 0, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `item_type` (`item_type_id`, `item_type_server`, `item_type_name`, `item_type_use_type`, `item_type_use_id`, `item_type_use_value`, `item_type_order_price`, `item_type_drop_type`, `item_type_drop_model`, `item_type_drop_pos_x`, `item_type_drop_pos_y`, `item_type_drop_pos_z`, `item_type_drop_rot_x`, `item_type_drop_rot_y`, `item_type_drop_rot_z`, `item_type_drop_scale_x`, `item_type_drop_scale_y`, `item_type_drop_scale_z`, `item_type_image_small`, `item_type_image_large`, `item_type_image_hotbar`, `item_type_size`, `item_type_capacity`, `item_type_demand_multiplier`, `item_type_supply_multiplier`, `item_type_risk_multiplier`, `item_type_enabled`, `item_type_delay_switch`, `item_type_delay_use`, `item_type_delay_pickup`, `item_type_delay_put`, `item_type_delay_take`, `item_type_delay_give`, `item_type_delay_drop`) VALUES + (167, 4, 'HS Rocket', 1, 36, 0, 7500, 0, 360, 0, 0, -0.95, 1.6, 0, 0, 0, 0, 0, 'no-image.png', 'no-image.png', 'no-image.png', 0, 0, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `item_type` (`item_type_id`, `item_type_server`, `item_type_name`, `item_type_use_type`, `item_type_use_id`, `item_type_use_value`, `item_type_order_price`, `item_type_drop_type`, `item_type_drop_model`, `item_type_drop_pos_x`, `item_type_drop_pos_y`, `item_type_drop_pos_z`, `item_type_drop_rot_x`, `item_type_drop_rot_y`, `item_type_drop_rot_z`, `item_type_drop_scale_x`, `item_type_drop_scale_y`, `item_type_drop_scale_z`, `item_type_image_small`, `item_type_image_large`, `item_type_image_hotbar`, `item_type_size`, `item_type_capacity`, `item_type_demand_multiplier`, `item_type_supply_multiplier`, `item_type_risk_multiplier`, `item_type_enabled`, `item_type_delay_switch`, `item_type_delay_use`, `item_type_delay_pickup`, `item_type_delay_put`, `item_type_delay_take`, `item_type_delay_give`, `item_type_delay_drop`) VALUES + (168, 4, 'Flamethrower', 1, 37, 0, 3000, 0, 361, 0, 0, -0.95, 1.6, 0, 0, 0, 0, 0, 'no-image.png', 'no-image.png', 'no-image.png', 0, 0, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `item_type` (`item_type_id`, `item_type_server`, `item_type_name`, `item_type_use_type`, `item_type_use_id`, `item_type_use_value`, `item_type_order_price`, `item_type_drop_type`, `item_type_drop_model`, `item_type_drop_pos_x`, `item_type_drop_pos_y`, `item_type_drop_pos_z`, `item_type_drop_rot_x`, `item_type_drop_rot_y`, `item_type_drop_rot_z`, `item_type_drop_scale_x`, `item_type_drop_scale_y`, `item_type_drop_scale_z`, `item_type_image_small`, `item_type_image_large`, `item_type_image_hotbar`, `item_type_size`, `item_type_capacity`, `item_type_demand_multiplier`, `item_type_supply_multiplier`, `item_type_risk_multiplier`, `item_type_enabled`, `item_type_delay_switch`, `item_type_delay_use`, `item_type_delay_pickup`, `item_type_delay_put`, `item_type_delay_take`, `item_type_delay_give`, `item_type_delay_drop`) VALUES + (169, 4, 'Minigun', 1, 38, 0, 25000, 0, 362, 0, 0, -0.95, 1.6, 0, 0, 0, 0, 0, 'no-image.png', 'no-image.png', 'no-image.png', 0, 0, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `item_type` (`item_type_id`, `item_type_server`, `item_type_name`, `item_type_use_type`, `item_type_use_id`, `item_type_use_value`, `item_type_order_price`, `item_type_drop_type`, `item_type_drop_model`, `item_type_drop_pos_x`, `item_type_drop_pos_y`, `item_type_drop_pos_z`, `item_type_drop_rot_x`, `item_type_drop_rot_y`, `item_type_drop_rot_z`, `item_type_drop_scale_x`, `item_type_drop_scale_y`, `item_type_drop_scale_z`, `item_type_image_small`, `item_type_image_large`, `item_type_image_hotbar`, `item_type_size`, `item_type_capacity`, `item_type_demand_multiplier`, `item_type_supply_multiplier`, `item_type_risk_multiplier`, `item_type_enabled`, `item_type_delay_switch`, `item_type_delay_use`, `item_type_delay_pickup`, `item_type_delay_put`, `item_type_delay_take`, `item_type_delay_give`, `item_type_delay_drop`) VALUES + (170, 4, 'Satchel Charge', 1, 39, 0, 3000, 0, 363, 0, 0, -0.95, 1.6, 0, 0, 0, 0, 0, 'no-image.png', 'no-image.png', 'no-image.png', 0, 0, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `item_type` (`item_type_id`, `item_type_server`, `item_type_name`, `item_type_use_type`, `item_type_use_id`, `item_type_use_value`, `item_type_order_price`, `item_type_drop_type`, `item_type_drop_model`, `item_type_drop_pos_x`, `item_type_drop_pos_y`, `item_type_drop_pos_z`, `item_type_drop_rot_x`, `item_type_drop_rot_y`, `item_type_drop_rot_z`, `item_type_drop_scale_x`, `item_type_drop_scale_y`, `item_type_drop_scale_z`, `item_type_image_small`, `item_type_image_large`, `item_type_image_hotbar`, `item_type_size`, `item_type_capacity`, `item_type_demand_multiplier`, `item_type_supply_multiplier`, `item_type_risk_multiplier`, `item_type_enabled`, `item_type_delay_switch`, `item_type_delay_use`, `item_type_delay_pickup`, `item_type_delay_put`, `item_type_delay_take`, `item_type_delay_give`, `item_type_delay_drop`) VALUES + (171, 4, 'Detonator', 1, 40, 0, 0, 0, 364, 0, 0, -0.95, 1.6, 0, 0, 0, 0, 0, 'no-image.png', 'no-image.png', 'no-image.png', 0, 0, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `item_type` (`item_type_id`, `item_type_server`, `item_type_name`, `item_type_use_type`, `item_type_use_id`, `item_type_use_value`, `item_type_order_price`, `item_type_drop_type`, `item_type_drop_model`, `item_type_drop_pos_x`, `item_type_drop_pos_y`, `item_type_drop_pos_z`, `item_type_drop_rot_x`, `item_type_drop_rot_y`, `item_type_drop_rot_z`, `item_type_drop_scale_x`, `item_type_drop_scale_y`, `item_type_drop_scale_z`, `item_type_image_small`, `item_type_image_large`, `item_type_image_hotbar`, `item_type_size`, `item_type_capacity`, `item_type_demand_multiplier`, `item_type_supply_multiplier`, `item_type_risk_multiplier`, `item_type_enabled`, `item_type_delay_switch`, `item_type_delay_use`, `item_type_delay_pickup`, `item_type_delay_put`, `item_type_delay_take`, `item_type_delay_give`, `item_type_delay_drop`) VALUES + (172, 4, 'Spraycan', 1, 41, 0, 10, 0, 365, 0, 0, -0.95, 1.6, 0, 0, 0, 0, 0, 'no-image.png', 'no-image.png', 'no-image.png', 0, 0, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `item_type` (`item_type_id`, `item_type_server`, `item_type_name`, `item_type_use_type`, `item_type_use_id`, `item_type_use_value`, `item_type_order_price`, `item_type_drop_type`, `item_type_drop_model`, `item_type_drop_pos_x`, `item_type_drop_pos_y`, `item_type_drop_pos_z`, `item_type_drop_rot_x`, `item_type_drop_rot_y`, `item_type_drop_rot_z`, `item_type_drop_scale_x`, `item_type_drop_scale_y`, `item_type_drop_scale_z`, `item_type_image_small`, `item_type_image_large`, `item_type_image_hotbar`, `item_type_size`, `item_type_capacity`, `item_type_demand_multiplier`, `item_type_supply_multiplier`, `item_type_risk_multiplier`, `item_type_enabled`, `item_type_delay_switch`, `item_type_delay_use`, `item_type_delay_pickup`, `item_type_delay_put`, `item_type_delay_take`, `item_type_delay_give`, `item_type_delay_drop`) VALUES + (173, 4, 'Pepper Spray', 1, 41, 0, 15, 0, 365, 0, 0, -0.95, 1.6, 0, 0, 0, 0, 0, 'no-image.png', 'no-image.png', 'no-image.png', 0, 0, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `item_type` (`item_type_id`, `item_type_server`, `item_type_name`, `item_type_use_type`, `item_type_use_id`, `item_type_use_value`, `item_type_order_price`, `item_type_drop_type`, `item_type_drop_model`, `item_type_drop_pos_x`, `item_type_drop_pos_y`, `item_type_drop_pos_z`, `item_type_drop_rot_x`, `item_type_drop_rot_y`, `item_type_drop_rot_z`, `item_type_drop_scale_x`, `item_type_drop_scale_y`, `item_type_drop_scale_z`, `item_type_image_small`, `item_type_image_large`, `item_type_image_hotbar`, `item_type_size`, `item_type_capacity`, `item_type_demand_multiplier`, `item_type_supply_multiplier`, `item_type_risk_multiplier`, `item_type_enabled`, `item_type_delay_switch`, `item_type_delay_use`, `item_type_delay_pickup`, `item_type_delay_put`, `item_type_delay_take`, `item_type_delay_give`, `item_type_delay_drop`) VALUES + (174, 4, 'Fire Extinguisher', 1, 42, 0, 35, 0, 366, 0, 0, -0.95, 1.6, 0, 0, 0, 0, 0, 'no-image.png', 'no-image.png', 'no-image.png', 0, 0, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `item_type` (`item_type_id`, `item_type_server`, `item_type_name`, `item_type_use_type`, `item_type_use_id`, `item_type_use_value`, `item_type_order_price`, `item_type_drop_type`, `item_type_drop_model`, `item_type_drop_pos_x`, `item_type_drop_pos_y`, `item_type_drop_pos_z`, `item_type_drop_rot_x`, `item_type_drop_rot_y`, `item_type_drop_rot_z`, `item_type_drop_scale_x`, `item_type_drop_scale_y`, `item_type_drop_scale_z`, `item_type_image_small`, `item_type_image_large`, `item_type_image_hotbar`, `item_type_size`, `item_type_capacity`, `item_type_demand_multiplier`, `item_type_supply_multiplier`, `item_type_risk_multiplier`, `item_type_enabled`, `item_type_delay_switch`, `item_type_delay_use`, `item_type_delay_pickup`, `item_type_delay_put`, `item_type_delay_take`, `item_type_delay_give`, `item_type_delay_drop`) VALUES + (175, 4, 'Camera', 1, 43, 0, 25, 0, 367, 0, 0, -0.95, 1.6, 0, 0, 0, 0, 0, 'no-image.png', 'no-image.png', 'no-image.png', 0, 0, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `item_type` (`item_type_id`, `item_type_server`, `item_type_name`, `item_type_use_type`, `item_type_use_id`, `item_type_use_value`, `item_type_order_price`, `item_type_drop_type`, `item_type_drop_model`, `item_type_drop_pos_x`, `item_type_drop_pos_y`, `item_type_drop_pos_z`, `item_type_drop_rot_x`, `item_type_drop_rot_y`, `item_type_drop_rot_z`, `item_type_drop_scale_x`, `item_type_drop_scale_y`, `item_type_drop_scale_z`, `item_type_image_small`, `item_type_image_large`, `item_type_image_hotbar`, `item_type_size`, `item_type_capacity`, `item_type_demand_multiplier`, `item_type_supply_multiplier`, `item_type_risk_multiplier`, `item_type_enabled`, `item_type_delay_switch`, `item_type_delay_use`, `item_type_delay_pickup`, `item_type_delay_put`, `item_type_delay_take`, `item_type_delay_give`, `item_type_delay_drop`) VALUES + (176, 4, 'Night Vision Goggles', 1, 44, 0, 300, 0, 368, 0, 0, -0.95, 1.6, 0, 0, 0, 0, 0, 'no-image.png', 'no-image.png', 'no-image.png', 0, 0, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `item_type` (`item_type_id`, `item_type_server`, `item_type_name`, `item_type_use_type`, `item_type_use_id`, `item_type_use_value`, `item_type_order_price`, `item_type_drop_type`, `item_type_drop_model`, `item_type_drop_pos_x`, `item_type_drop_pos_y`, `item_type_drop_pos_z`, `item_type_drop_rot_x`, `item_type_drop_rot_y`, `item_type_drop_rot_z`, `item_type_drop_scale_x`, `item_type_drop_scale_y`, `item_type_drop_scale_z`, `item_type_image_small`, `item_type_image_large`, `item_type_image_hotbar`, `item_type_size`, `item_type_capacity`, `item_type_demand_multiplier`, `item_type_supply_multiplier`, `item_type_risk_multiplier`, `item_type_enabled`, `item_type_delay_switch`, `item_type_delay_use`, `item_type_delay_pickup`, `item_type_delay_put`, `item_type_delay_take`, `item_type_delay_give`, `item_type_delay_drop`) VALUES + (177, 4, 'Thermal Goggles', 1, 45, 0, 500, 0, 369, 0, 0, -0.95, 1.6, 0, 0, 0, 0, 0, 'no-image.png', 'no-image.png', 'no-image.png', 0, 0, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `item_type` (`item_type_id`, `item_type_server`, `item_type_name`, `item_type_use_type`, `item_type_use_id`, `item_type_use_value`, `item_type_order_price`, `item_type_drop_type`, `item_type_drop_model`, `item_type_drop_pos_x`, `item_type_drop_pos_y`, `item_type_drop_pos_z`, `item_type_drop_rot_x`, `item_type_drop_rot_y`, `item_type_drop_rot_z`, `item_type_drop_scale_x`, `item_type_drop_scale_y`, `item_type_drop_scale_z`, `item_type_image_small`, `item_type_image_large`, `item_type_image_hotbar`, `item_type_size`, `item_type_capacity`, `item_type_demand_multiplier`, `item_type_supply_multiplier`, `item_type_risk_multiplier`, `item_type_enabled`, `item_type_delay_switch`, `item_type_delay_use`, `item_type_delay_pickup`, `item_type_delay_put`, `item_type_delay_take`, `item_type_delay_give`, `item_type_delay_drop`) VALUES + (178, 4, 'Parachute', 1, 46, 0, 100, 0, 371, 0, 0, -0.95, 1.6, 0, 0, 0, 0, 0, 'no-image.png', 'no-image.png', 'no-image.png', 0, 0, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `item_type` (`item_type_id`, `item_type_server`, `item_type_name`, `item_type_use_type`, `item_type_use_id`, `item_type_use_value`, `item_type_order_price`, `item_type_drop_type`, `item_type_drop_model`, `item_type_drop_pos_x`, `item_type_drop_pos_y`, `item_type_drop_pos_z`, `item_type_drop_rot_x`, `item_type_drop_rot_y`, `item_type_drop_rot_z`, `item_type_drop_scale_x`, `item_type_drop_scale_y`, `item_type_drop_scale_z`, `item_type_image_small`, `item_type_image_large`, `item_type_image_hotbar`, `item_type_size`, `item_type_capacity`, `item_type_demand_multiplier`, `item_type_supply_multiplier`, `item_type_risk_multiplier`, `item_type_enabled`, `item_type_delay_switch`, `item_type_delay_use`, `item_type_delay_pickup`, `item_type_delay_put`, `item_type_delay_take`, `item_type_delay_give`, `item_type_delay_drop`) VALUES + (179, 4, 'Phone', 3, 0, 0, 250, 1, 330, 0, 0, -0.95, 1.6, 0, 0, 0, 0, 0, 'no-image.png', 'no-image.png', 'no-image.png', 0, 0, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `item_type` (`item_type_id`, `item_type_server`, `item_type_name`, `item_type_use_type`, `item_type_use_id`, `item_type_use_value`, `item_type_order_price`, `item_type_drop_type`, `item_type_drop_model`, `item_type_drop_pos_x`, `item_type_drop_pos_y`, `item_type_drop_pos_z`, `item_type_drop_rot_x`, `item_type_drop_rot_y`, `item_type_drop_rot_z`, `item_type_drop_scale_x`, `item_type_drop_scale_y`, `item_type_drop_scale_z`, `item_type_image_small`, `item_type_image_large`, `item_type_image_hotbar`, `item_type_size`, `item_type_capacity`, `item_type_demand_multiplier`, `item_type_supply_multiplier`, `item_type_risk_multiplier`, `item_type_enabled`, `item_type_delay_switch`, `item_type_delay_use`, `item_type_delay_pickup`, `item_type_delay_put`, `item_type_delay_take`, `item_type_delay_give`, `item_type_delay_drop`) VALUES + (180, 4, 'Radio', 32, 0, 0, 0, 0, 1279, 0, 0, -0.95, 1.6, 0, 0, 0, 0, 0, 'no-image.png', 'no-image.png', 'no-image.png', 0, 0, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `item_type` (`item_type_id`, `item_type_server`, `item_type_name`, `item_type_use_type`, `item_type_use_id`, `item_type_use_value`, `item_type_order_price`, `item_type_drop_type`, `item_type_drop_model`, `item_type_drop_pos_x`, `item_type_drop_pos_y`, `item_type_drop_pos_z`, `item_type_drop_rot_x`, `item_type_drop_rot_y`, `item_type_drop_rot_z`, `item_type_drop_scale_x`, `item_type_drop_scale_y`, `item_type_drop_scale_z`, `item_type_image_small`, `item_type_image_large`, `item_type_image_hotbar`, `item_type_size`, `item_type_capacity`, `item_type_demand_multiplier`, `item_type_supply_multiplier`, `item_type_risk_multiplier`, `item_type_enabled`, `item_type_delay_switch`, `item_type_delay_use`, `item_type_delay_pickup`, `item_type_delay_put`, `item_type_delay_take`, `item_type_delay_give`, `item_type_delay_drop`) VALUES + (181, 4, 'Pot Seed', 13, 0, 0, 2, 1, 1279, 0, 0, -0.95, 1.6, 0, 0, 0, 0, 0, 'no-image.png', 'no-image.png', 'no-image.png', 0, 0, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `item_type` (`item_type_id`, `item_type_server`, `item_type_name`, `item_type_use_type`, `item_type_use_id`, `item_type_use_value`, `item_type_order_price`, `item_type_drop_type`, `item_type_drop_model`, `item_type_drop_pos_x`, `item_type_drop_pos_y`, `item_type_drop_pos_z`, `item_type_drop_rot_x`, `item_type_drop_rot_y`, `item_type_drop_rot_z`, `item_type_drop_scale_x`, `item_type_drop_scale_y`, `item_type_drop_scale_z`, `item_type_image_small`, `item_type_image_large`, `item_type_image_hotbar`, `item_type_size`, `item_type_capacity`, `item_type_demand_multiplier`, `item_type_supply_multiplier`, `item_type_risk_multiplier`, `item_type_enabled`, `item_type_delay_switch`, `item_type_delay_use`, `item_type_delay_pickup`, `item_type_delay_put`, `item_type_delay_take`, `item_type_delay_give`, `item_type_delay_drop`) VALUES + (182, 4, 'Weed', 14, 0, 0, 20, 1, 1279, 0, 0, -0.95, 1.6, 0, 0, 0.3, 0.3, 0.3, 'no-image.png', 'no-image.png', 'no-image.png', 0, 0, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `item_type` (`item_type_id`, `item_type_server`, `item_type_name`, `item_type_use_type`, `item_type_use_id`, `item_type_use_value`, `item_type_order_price`, `item_type_drop_type`, `item_type_drop_model`, `item_type_drop_pos_x`, `item_type_drop_pos_y`, `item_type_drop_pos_z`, `item_type_drop_rot_x`, `item_type_drop_rot_y`, `item_type_drop_rot_z`, `item_type_drop_scale_x`, `item_type_drop_scale_y`, `item_type_drop_scale_z`, `item_type_image_small`, `item_type_image_large`, `item_type_image_hotbar`, `item_type_size`, `item_type_capacity`, `item_type_demand_multiplier`, `item_type_supply_multiplier`, `item_type_risk_multiplier`, `item_type_enabled`, `item_type_delay_switch`, `item_type_delay_use`, `item_type_delay_pickup`, `item_type_delay_put`, `item_type_delay_take`, `item_type_delay_give`, `item_type_delay_drop`) VALUES + (183, 4, 'Meth', 16, 0, 0, 100, 1, 1279, 0, 0, -0.95, 1.6, 0, 0, 0.3, 0.3, 0.3, 'no-image.png', 'no-image.png', 'no-image.png', 0, 100, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `item_type` (`item_type_id`, `item_type_server`, `item_type_name`, `item_type_use_type`, `item_type_use_id`, `item_type_use_value`, `item_type_order_price`, `item_type_drop_type`, `item_type_drop_model`, `item_type_drop_pos_x`, `item_type_drop_pos_y`, `item_type_drop_pos_z`, `item_type_drop_rot_x`, `item_type_drop_rot_y`, `item_type_drop_rot_z`, `item_type_drop_scale_x`, `item_type_drop_scale_y`, `item_type_drop_scale_z`, `item_type_image_small`, `item_type_image_large`, `item_type_image_hotbar`, `item_type_size`, `item_type_capacity`, `item_type_demand_multiplier`, `item_type_supply_multiplier`, `item_type_risk_multiplier`, `item_type_enabled`, `item_type_delay_switch`, `item_type_delay_use`, `item_type_delay_pickup`, `item_type_delay_put`, `item_type_delay_take`, `item_type_delay_give`, `item_type_delay_drop`) VALUES + (184, 4, 'Coke', 15, 0, 0, 250, 1, 1279, 0, 0, -0.95, 1.6, 0, 0, 0.3, 0.3, 0.3, 'no-image.png', 'no-image.png', 'no-image.png', 0, 100, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `item_type` (`item_type_id`, `item_type_server`, `item_type_name`, `item_type_use_type`, `item_type_use_id`, `item_type_use_value`, `item_type_order_price`, `item_type_drop_type`, `item_type_drop_model`, `item_type_drop_pos_x`, `item_type_drop_pos_y`, `item_type_drop_pos_z`, `item_type_drop_rot_x`, `item_type_drop_rot_y`, `item_type_drop_rot_z`, `item_type_drop_scale_x`, `item_type_drop_scale_y`, `item_type_drop_scale_z`, `item_type_image_small`, `item_type_image_large`, `item_type_image_hotbar`, `item_type_size`, `item_type_capacity`, `item_type_demand_multiplier`, `item_type_supply_multiplier`, `item_type_risk_multiplier`, `item_type_enabled`, `item_type_delay_switch`, `item_type_delay_use`, `item_type_delay_pickup`, `item_type_delay_put`, `item_type_delay_take`, `item_type_delay_give`, `item_type_delay_drop`) VALUES + (185, 4, 'Wallet', 9, 0, 0, 10, 1, 1279, 0, 0, -0.95, 1.6, 0, 0, 0.3, 0.3, 0.2, 'no-image.png', 'no-image.png', 'no-image.png', 0, 0, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `item_type` (`item_type_id`, `item_type_server`, `item_type_name`, `item_type_use_type`, `item_type_use_id`, `item_type_use_value`, `item_type_order_price`, `item_type_drop_type`, `item_type_drop_model`, `item_type_drop_pos_x`, `item_type_drop_pos_y`, `item_type_drop_pos_z`, `item_type_drop_rot_x`, `item_type_drop_rot_y`, `item_type_drop_rot_z`, `item_type_drop_scale_x`, `item_type_drop_scale_y`, `item_type_drop_scale_z`, `item_type_image_small`, `item_type_image_large`, `item_type_image_hotbar`, `item_type_size`, `item_type_capacity`, `item_type_demand_multiplier`, `item_type_supply_multiplier`, `item_type_risk_multiplier`, `item_type_enabled`, `item_type_delay_switch`, `item_type_delay_use`, `item_type_delay_pickup`, `item_type_delay_put`, `item_type_delay_take`, `item_type_delay_give`, `item_type_delay_drop`) VALUES + (186, 4, 'Crate', 9, 0, 0, 25, 1, 1271, 0, 0, -0.95, 1.6, 0, 0, 0, 0, 0, 'no-image.png', 'no-image.png', 'no-image.png', 0, 0, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `item_type` (`item_type_id`, `item_type_server`, `item_type_name`, `item_type_use_type`, `item_type_use_id`, `item_type_use_value`, `item_type_order_price`, `item_type_drop_type`, `item_type_drop_model`, `item_type_drop_pos_x`, `item_type_drop_pos_y`, `item_type_drop_pos_z`, `item_type_drop_rot_x`, `item_type_drop_rot_y`, `item_type_drop_rot_z`, `item_type_drop_scale_x`, `item_type_drop_scale_y`, `item_type_drop_scale_z`, `item_type_image_small`, `item_type_image_large`, `item_type_image_hotbar`, `item_type_size`, `item_type_capacity`, `item_type_demand_multiplier`, `item_type_supply_multiplier`, `item_type_risk_multiplier`, `item_type_enabled`, `item_type_delay_switch`, `item_type_delay_use`, `item_type_delay_pickup`, `item_type_delay_put`, `item_type_delay_take`, `item_type_delay_give`, `item_type_delay_drop`) VALUES + (187, 4, 'Barrel', 9, 0, 0, 25, 1, 3632, 0, 0, -0.95, 1.6, 0, 0, 0, 0, 0, 'no-image.png', 'no-image.png', 'no-image.png', 0, 0, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `item_type` (`item_type_id`, `item_type_server`, `item_type_name`, `item_type_use_type`, `item_type_use_id`, `item_type_use_value`, `item_type_order_price`, `item_type_drop_type`, `item_type_drop_model`, `item_type_drop_pos_x`, `item_type_drop_pos_y`, `item_type_drop_pos_z`, `item_type_drop_rot_x`, `item_type_drop_rot_y`, `item_type_drop_rot_z`, `item_type_drop_scale_x`, `item_type_drop_scale_y`, `item_type_drop_scale_z`, `item_type_image_small`, `item_type_image_large`, `item_type_image_hotbar`, `item_type_size`, `item_type_capacity`, `item_type_demand_multiplier`, `item_type_supply_multiplier`, `item_type_risk_multiplier`, `item_type_enabled`, `item_type_delay_switch`, `item_type_delay_use`, `item_type_delay_pickup`, `item_type_delay_put`, `item_type_delay_take`, `item_type_delay_give`, `item_type_delay_drop`) VALUES + (188, 4, 'Outfit', 6, 0, 0, 50, 1, 1275, 0, 0, -1.1, 1.6, 0, 0, 0, 0, 0, 'no-image.png', 'no-image.png', 'no-image.png', 0, 0, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `item_type` (`item_type_id`, `item_type_server`, `item_type_name`, `item_type_use_type`, `item_type_use_id`, `item_type_use_value`, `item_type_order_price`, `item_type_drop_type`, `item_type_drop_model`, `item_type_drop_pos_x`, `item_type_drop_pos_y`, `item_type_drop_pos_z`, `item_type_drop_rot_x`, `item_type_drop_rot_y`, `item_type_drop_rot_z`, `item_type_drop_scale_x`, `item_type_drop_scale_y`, `item_type_drop_scale_z`, `item_type_image_small`, `item_type_image_large`, `item_type_image_hotbar`, `item_type_size`, `item_type_capacity`, `item_type_demand_multiplier`, `item_type_supply_multiplier`, `item_type_risk_multiplier`, `item_type_enabled`, `item_type_delay_switch`, `item_type_delay_use`, `item_type_delay_pickup`, `item_type_delay_put`, `item_type_delay_take`, `item_type_delay_give`, `item_type_delay_drop`) VALUES + (189, 4, 'Megaphone', 15, 0, 0, 35, 1, 1279, 0, 0, -0.95, 1.6, 0, 0, 0, 0, 0, 'no-image.png', 'no-image.png', 'no-image.png', 0, 100, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `item_type` (`item_type_id`, `item_type_server`, `item_type_name`, `item_type_use_type`, `item_type_use_id`, `item_type_use_value`, `item_type_order_price`, `item_type_drop_type`, `item_type_drop_model`, `item_type_drop_pos_x`, `item_type_drop_pos_y`, `item_type_drop_pos_z`, `item_type_drop_rot_x`, `item_type_drop_rot_y`, `item_type_drop_rot_z`, `item_type_drop_scale_x`, `item_type_drop_scale_y`, `item_type_drop_scale_z`, `item_type_image_small`, `item_type_image_large`, `item_type_image_hotbar`, `item_type_size`, `item_type_capacity`, `item_type_demand_multiplier`, `item_type_supply_multiplier`, `item_type_risk_multiplier`, `item_type_enabled`, `item_type_delay_switch`, `item_type_delay_use`, `item_type_delay_pickup`, `item_type_delay_put`, `item_type_delay_take`, `item_type_delay_give`, `item_type_delay_drop`) VALUES + (190, 4, 'Bottle of Water', 18, 1, 10, 3, 1, 1484, 0, 0, -0.95, 1.6, 0, 0, 0, 0, 0, 'no-image.png', 'no-image.png', 'no-image.png', 0, 100, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `item_type` (`item_type_id`, `item_type_server`, `item_type_name`, `item_type_use_type`, `item_type_use_id`, `item_type_use_value`, `item_type_order_price`, `item_type_drop_type`, `item_type_drop_model`, `item_type_drop_pos_x`, `item_type_drop_pos_y`, `item_type_drop_pos_z`, `item_type_drop_rot_x`, `item_type_drop_rot_y`, `item_type_drop_rot_z`, `item_type_drop_scale_x`, `item_type_drop_scale_y`, `item_type_drop_scale_z`, `item_type_image_small`, `item_type_image_large`, `item_type_image_hotbar`, `item_type_size`, `item_type_capacity`, `item_type_demand_multiplier`, `item_type_supply_multiplier`, `item_type_risk_multiplier`, `item_type_enabled`, `item_type_delay_switch`, `item_type_delay_use`, `item_type_delay_pickup`, `item_type_delay_put`, `item_type_delay_take`, `item_type_delay_give`, `item_type_delay_drop`) VALUES + (191, 4, 'Can of Beer', 35, 3, 5, 5, 1, 594, 0, 0, -0.95, 1.6, 0, 0, 0, 0, 0, 'no-image.png', 'no-image.png', 'no-image.png', 0, 100, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `item_type` (`item_type_id`, `item_type_server`, `item_type_name`, `item_type_use_type`, `item_type_use_id`, `item_type_use_value`, `item_type_order_price`, `item_type_drop_type`, `item_type_drop_model`, `item_type_drop_pos_x`, `item_type_drop_pos_y`, `item_type_drop_pos_z`, `item_type_drop_rot_x`, `item_type_drop_rot_y`, `item_type_drop_rot_z`, `item_type_drop_scale_x`, `item_type_drop_scale_y`, `item_type_drop_scale_z`, `item_type_image_small`, `item_type_image_large`, `item_type_image_hotbar`, `item_type_size`, `item_type_capacity`, `item_type_demand_multiplier`, `item_type_supply_multiplier`, `item_type_risk_multiplier`, `item_type_enabled`, `item_type_delay_switch`, `item_type_delay_use`, `item_type_delay_pickup`, `item_type_delay_put`, `item_type_delay_take`, `item_type_delay_give`, `item_type_delay_drop`) VALUES + (192, 4, 'Bottle of Vodka', 35, 3, 5, 10, 1, 1484, 0, 0, -0.95, 1.6, 0, 0, 0, 0, 0, 'no-image.png', 'no-image.png', 'no-image.png', 0, 100, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `item_type` (`item_type_id`, `item_type_server`, `item_type_name`, `item_type_use_type`, `item_type_use_id`, `item_type_use_value`, `item_type_order_price`, `item_type_drop_type`, `item_type_drop_model`, `item_type_drop_pos_x`, `item_type_drop_pos_y`, `item_type_drop_pos_z`, `item_type_drop_rot_x`, `item_type_drop_rot_y`, `item_type_drop_rot_z`, `item_type_drop_scale_x`, `item_type_drop_scale_y`, `item_type_drop_scale_z`, `item_type_image_small`, `item_type_image_large`, `item_type_image_hotbar`, `item_type_size`, `item_type_capacity`, `item_type_demand_multiplier`, `item_type_supply_multiplier`, `item_type_risk_multiplier`, `item_type_enabled`, `item_type_delay_switch`, `item_type_delay_use`, `item_type_delay_pickup`, `item_type_delay_put`, `item_type_delay_take`, `item_type_delay_give`, `item_type_delay_drop`) VALUES + (193, 4, 'Bottle of Whiskey', 35, 3, 5, 12, 1, 1512, 0, 0, -0.95, 1.6, 0, 0, 0, 0, 0, 'no-image.png', 'no-image.png', 'no-image.png', 0, 100, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `item_type` (`item_type_id`, `item_type_server`, `item_type_name`, `item_type_use_type`, `item_type_use_id`, `item_type_use_value`, `item_type_order_price`, `item_type_drop_type`, `item_type_drop_model`, `item_type_drop_pos_x`, `item_type_drop_pos_y`, `item_type_drop_pos_z`, `item_type_drop_rot_x`, `item_type_drop_rot_y`, `item_type_drop_rot_z`, `item_type_drop_scale_x`, `item_type_drop_scale_y`, `item_type_drop_scale_z`, `item_type_image_small`, `item_type_image_large`, `item_type_image_hotbar`, `item_type_size`, `item_type_capacity`, `item_type_demand_multiplier`, `item_type_supply_multiplier`, `item_type_risk_multiplier`, `item_type_enabled`, `item_type_delay_switch`, `item_type_delay_use`, `item_type_delay_pickup`, `item_type_delay_put`, `item_type_delay_take`, `item_type_delay_give`, `item_type_delay_drop`) VALUES + (194, 4, 'Handcuffs', 24, 0, 0, 100, 0, 1279, 0, 0, -0.95, 1.6, 0, 0, 0.3, 0.3, 0.2, 'no-image.png', 'no-image.png', 'no-image.png', 0, 0, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `item_type` (`item_type_id`, `item_type_server`, `item_type_name`, `item_type_use_type`, `item_type_use_id`, `item_type_use_value`, `item_type_order_price`, `item_type_drop_type`, `item_type_drop_model`, `item_type_drop_pos_x`, `item_type_drop_pos_y`, `item_type_drop_pos_z`, `item_type_drop_rot_x`, `item_type_drop_rot_y`, `item_type_drop_rot_z`, `item_type_drop_scale_x`, `item_type_drop_scale_y`, `item_type_drop_scale_z`, `item_type_image_small`, `item_type_image_large`, `item_type_image_hotbar`, `item_type_size`, `item_type_capacity`, `item_type_demand_multiplier`, `item_type_supply_multiplier`, `item_type_risk_multiplier`, `item_type_enabled`, `item_type_delay_switch`, `item_type_delay_use`, `item_type_delay_pickup`, `item_type_delay_put`, `item_type_delay_take`, `item_type_delay_give`, `item_type_delay_drop`) VALUES + (195, 4, 'Rope', 25, 0, 0, 20, 0, 1279, 0, 0, -0.95, 1.6, 0, 0, 0, 0, 0, 'no-image.png', 'no-image.png', 'no-image.png', 0, 0, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `item_type` (`item_type_id`, `item_type_server`, `item_type_name`, `item_type_use_type`, `item_type_use_id`, `item_type_use_value`, `item_type_order_price`, `item_type_drop_type`, `item_type_drop_model`, `item_type_drop_pos_x`, `item_type_drop_pos_y`, `item_type_drop_pos_z`, `item_type_drop_rot_x`, `item_type_drop_rot_y`, `item_type_drop_rot_z`, `item_type_drop_scale_x`, `item_type_drop_scale_y`, `item_type_drop_scale_z`, `item_type_image_small`, `item_type_image_large`, `item_type_image_hotbar`, `item_type_size`, `item_type_capacity`, `item_type_demand_multiplier`, `item_type_supply_multiplier`, `item_type_risk_multiplier`, `item_type_enabled`, `item_type_delay_switch`, `item_type_delay_use`, `item_type_delay_pickup`, `item_type_delay_put`, `item_type_delay_take`, `item_type_delay_give`, `item_type_delay_drop`) VALUES + (196, 4, 'Blindfold', 26, 0, 0, 20, 0, 1279, 0, 0, -0.95, 1.6, 0, 0, 0, 0, 0, 'no-image.png', 'no-image.png', 'no-image.png', 0, 0, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `item_type` (`item_type_id`, `item_type_server`, `item_type_name`, `item_type_use_type`, `item_type_use_id`, `item_type_use_value`, `item_type_order_price`, `item_type_drop_type`, `item_type_drop_model`, `item_type_drop_pos_x`, `item_type_drop_pos_y`, `item_type_drop_pos_z`, `item_type_drop_rot_x`, `item_type_drop_rot_y`, `item_type_drop_rot_z`, `item_type_drop_scale_x`, `item_type_drop_scale_y`, `item_type_drop_scale_z`, `item_type_image_small`, `item_type_image_large`, `item_type_image_hotbar`, `item_type_size`, `item_type_capacity`, `item_type_demand_multiplier`, `item_type_supply_multiplier`, `item_type_risk_multiplier`, `item_type_enabled`, `item_type_delay_switch`, `item_type_delay_use`, `item_type_delay_pickup`, `item_type_delay_put`, `item_type_delay_take`, `item_type_delay_give`, `item_type_delay_drop`) VALUES + (197, 4, 'Bulletproof Vest', 28, 0, 0, 0, 1, 373, 0, 0, -0.95, 1.6, 0, 0, 0, 0, 0, 'no-image.png', 'no-image.png', 'no-image.png', 0, 100, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `item_type` (`item_type_id`, `item_type_server`, `item_type_name`, `item_type_use_type`, `item_type_use_id`, `item_type_use_value`, `item_type_order_price`, `item_type_drop_type`, `item_type_drop_model`, `item_type_drop_pos_x`, `item_type_drop_pos_y`, `item_type_drop_pos_z`, `item_type_drop_rot_x`, `item_type_drop_rot_y`, `item_type_drop_rot_z`, `item_type_drop_scale_x`, `item_type_drop_scale_y`, `item_type_drop_scale_z`, `item_type_image_small`, `item_type_image_large`, `item_type_image_hotbar`, `item_type_size`, `item_type_capacity`, `item_type_demand_multiplier`, `item_type_supply_multiplier`, `item_type_risk_multiplier`, `item_type_enabled`, `item_type_delay_switch`, `item_type_delay_use`, `item_type_delay_pickup`, `item_type_delay_put`, `item_type_delay_take`, `item_type_delay_give`, `item_type_delay_drop`) VALUES + (198, 4, 'Uniform', 6, 0, 0, 0, 1, 1275, 0, 0, -0.95, 1.6, 0, 0, 0, 0, 0, 'no-image.png', 'no-image.png', 'no-image.png', 0, 0, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `item_type` (`item_type_id`, `item_type_server`, `item_type_name`, `item_type_use_type`, `item_type_use_id`, `item_type_use_value`, `item_type_order_price`, `item_type_drop_type`, `item_type_drop_model`, `item_type_drop_pos_x`, `item_type_drop_pos_y`, `item_type_drop_pos_z`, `item_type_drop_rot_x`, `item_type_drop_rot_y`, `item_type_drop_rot_z`, `item_type_drop_scale_x`, `item_type_drop_scale_y`, `item_type_drop_scale_z`, `item_type_image_small`, `item_type_image_large`, `item_type_image_hotbar`, `item_type_size`, `item_type_capacity`, `item_type_demand_multiplier`, `item_type_supply_multiplier`, `item_type_risk_multiplier`, `item_type_enabled`, `item_type_delay_switch`, `item_type_delay_use`, `item_type_delay_pickup`, `item_type_delay_put`, `item_type_delay_take`, `item_type_delay_give`, `item_type_delay_drop`) VALUES + (199, 4, 'Tazer', 27, 23, 0, 350, 0, 1279, 0, 0, -0.95, 1.6, 0, 0, 0, 0, 0, 'no-image.png', 'no-image.png', 'no-image.png', 0, 0, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `item_type` (`item_type_id`, `item_type_server`, `item_type_name`, `item_type_use_type`, `item_type_use_id`, `item_type_use_value`, `item_type_order_price`, `item_type_drop_type`, `item_type_drop_model`, `item_type_drop_pos_x`, `item_type_drop_pos_y`, `item_type_drop_pos_z`, `item_type_drop_rot_x`, `item_type_drop_rot_y`, `item_type_drop_rot_z`, `item_type_drop_scale_x`, `item_type_drop_scale_y`, `item_type_drop_scale_z`, `item_type_image_small`, `item_type_image_large`, `item_type_image_hotbar`, `item_type_size`, `item_type_capacity`, `item_type_demand_multiplier`, `item_type_supply_multiplier`, `item_type_risk_multiplier`, `item_type_enabled`, `item_type_delay_switch`, `item_type_delay_use`, `item_type_delay_pickup`, `item_type_delay_put`, `item_type_delay_take`, `item_type_delay_give`, `item_type_delay_drop`) VALUES + (200, 4, 'Flashlight', 39, 0, 0, 35, 0, 1279, 0, 0, -0.95, 1.6, 0, 0, 0, 0, 0, 'no-image.png', 'no-image.png', 'no-image.png', 0, 0, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `item_type` (`item_type_id`, `item_type_server`, `item_type_name`, `item_type_use_type`, `item_type_use_id`, `item_type_use_value`, `item_type_order_price`, `item_type_drop_type`, `item_type_drop_model`, `item_type_drop_pos_x`, `item_type_drop_pos_y`, `item_type_drop_pos_z`, `item_type_drop_rot_x`, `item_type_drop_rot_y`, `item_type_drop_rot_z`, `item_type_drop_scale_x`, `item_type_drop_scale_y`, `item_type_drop_scale_z`, `item_type_image_small`, `item_type_image_large`, `item_type_image_hotbar`, `item_type_size`, `item_type_capacity`, `item_type_demand_multiplier`, `item_type_supply_multiplier`, `item_type_risk_multiplier`, `item_type_enabled`, `item_type_delay_switch`, `item_type_delay_use`, `item_type_delay_pickup`, `item_type_delay_put`, `item_type_delay_take`, `item_type_delay_give`, `item_type_delay_drop`) VALUES + (201, 4, 'First Aid Kit', 29, 0, 50, 75, 0, 1279, 0, 0, -0.95, 1.6, 0, 0, 0, 0, 0, 'no-image.png', 'no-image.png', 'no-image.png', 0, 100, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `item_type` (`item_type_id`, `item_type_server`, `item_type_name`, `item_type_use_type`, `item_type_use_id`, `item_type_use_value`, `item_type_order_price`, `item_type_drop_type`, `item_type_drop_model`, `item_type_drop_pos_x`, `item_type_drop_pos_y`, `item_type_drop_pos_z`, `item_type_drop_rot_x`, `item_type_drop_rot_y`, `item_type_drop_rot_z`, `item_type_drop_scale_x`, `item_type_drop_scale_y`, `item_type_drop_scale_z`, `item_type_image_small`, `item_type_image_large`, `item_type_image_hotbar`, `item_type_size`, `item_type_capacity`, `item_type_demand_multiplier`, `item_type_supply_multiplier`, `item_type_risk_multiplier`, `item_type_enabled`, `item_type_delay_switch`, `item_type_delay_use`, `item_type_delay_pickup`, `item_type_delay_put`, `item_type_delay_take`, `item_type_delay_give`, `item_type_delay_drop`) VALUES + (202, 4, 'AED', 29, 0, 100, 3000, 0, 1279, 0, 0, -0.95, 1.6, 0, 0, 0, 0, 0, 'no-image.png', 'no-image.png', 'no-image.png', 0, 100, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `item_type` (`item_type_id`, `item_type_server`, `item_type_name`, `item_type_use_type`, `item_type_use_id`, `item_type_use_value`, `item_type_order_price`, `item_type_drop_type`, `item_type_drop_model`, `item_type_drop_pos_x`, `item_type_drop_pos_y`, `item_type_drop_pos_z`, `item_type_drop_rot_x`, `item_type_drop_rot_y`, `item_type_drop_rot_z`, `item_type_drop_scale_x`, `item_type_drop_scale_y`, `item_type_drop_scale_z`, `item_type_image_small`, `item_type_image_large`, `item_type_image_hotbar`, `item_type_size`, `item_type_capacity`, `item_type_demand_multiplier`, `item_type_supply_multiplier`, `item_type_risk_multiplier`, `item_type_enabled`, `item_type_delay_switch`, `item_type_delay_use`, `item_type_delay_pickup`, `item_type_delay_put`, `item_type_delay_take`, `item_type_delay_give`, `item_type_delay_drop`) VALUES + (203, 4, 'Morphine Syringe', 29, 0, 100, 650, 0, 1279, 0, 0, -0.95, 1.6, 0, 0, 0, 0, 0, 'no-image.png', 'no-image.png', 'no-image.png', 0, 100, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `item_type` (`item_type_id`, `item_type_server`, `item_type_name`, `item_type_use_type`, `item_type_use_id`, `item_type_use_value`, `item_type_order_price`, `item_type_drop_type`, `item_type_drop_model`, `item_type_drop_pos_x`, `item_type_drop_pos_y`, `item_type_drop_pos_z`, `item_type_drop_rot_x`, `item_type_drop_rot_y`, `item_type_drop_rot_z`, `item_type_drop_scale_x`, `item_type_drop_scale_y`, `item_type_drop_scale_z`, `item_type_image_small`, `item_type_image_large`, `item_type_image_hotbar`, `item_type_size`, `item_type_capacity`, `item_type_demand_multiplier`, `item_type_supply_multiplier`, `item_type_risk_multiplier`, `item_type_enabled`, `item_type_delay_switch`, `item_type_delay_use`, `item_type_delay_pickup`, `item_type_delay_put`, `item_type_delay_take`, `item_type_delay_give`, `item_type_delay_drop`) VALUES + (204, 4, 'Cheeseburger', 19, 0, 10, 5, 0, 2880, 0, 0, -0.95, 1.6, 0, 0, 0, 0, 0, 'no-image.png', 'no-image.png', 'no-image.png', 0, 100, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `item_type` (`item_type_id`, `item_type_server`, `item_type_name`, `item_type_use_type`, `item_type_use_id`, `item_type_use_value`, `item_type_order_price`, `item_type_drop_type`, `item_type_drop_model`, `item_type_drop_pos_x`, `item_type_drop_pos_y`, `item_type_drop_pos_z`, `item_type_drop_rot_x`, `item_type_drop_rot_y`, `item_type_drop_rot_z`, `item_type_drop_scale_x`, `item_type_drop_scale_y`, `item_type_drop_scale_z`, `item_type_image_small`, `item_type_image_large`, `item_type_image_hotbar`, `item_type_size`, `item_type_capacity`, `item_type_demand_multiplier`, `item_type_supply_multiplier`, `item_type_risk_multiplier`, `item_type_enabled`, `item_type_delay_switch`, `item_type_delay_use`, `item_type_delay_pickup`, `item_type_delay_put`, `item_type_delay_take`, `item_type_delay_give`, `item_type_delay_drop`) VALUES + (205, 4, 'Slice of Pizza', 19, 0, 10, 5, 0, 1279, 0, 0, -0.95, 1.6, 0, 0, 0, 0, 0, 'no-image.png', 'no-image.png', 'no-image.png', 0, 100, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `item_type` (`item_type_id`, `item_type_server`, `item_type_name`, `item_type_use_type`, `item_type_use_id`, `item_type_use_value`, `item_type_order_price`, `item_type_drop_type`, `item_type_drop_model`, `item_type_drop_pos_x`, `item_type_drop_pos_y`, `item_type_drop_pos_z`, `item_type_drop_rot_x`, `item_type_drop_rot_y`, `item_type_drop_rot_z`, `item_type_drop_scale_x`, `item_type_drop_scale_y`, `item_type_drop_scale_z`, `item_type_image_small`, `item_type_image_large`, `item_type_image_hotbar`, `item_type_size`, `item_type_capacity`, `item_type_demand_multiplier`, `item_type_supply_multiplier`, `item_type_risk_multiplier`, `item_type_enabled`, `item_type_delay_switch`, `item_type_delay_use`, `item_type_delay_pickup`, `item_type_delay_put`, `item_type_delay_take`, `item_type_delay_give`, `item_type_delay_drop`) VALUES + (206, 4, 'Chicken Wing', 19, 0, 10, 5, 0, 1279, 0, 0, -0.95, 1.6, 0, 0, 0.1, 0.1, 0.1, 'no-image.png', 'no-image.png', 'no-image.png', 0, 100, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `item_type` (`item_type_id`, `item_type_server`, `item_type_name`, `item_type_use_type`, `item_type_use_id`, `item_type_use_value`, `item_type_order_price`, `item_type_drop_type`, `item_type_drop_model`, `item_type_drop_pos_x`, `item_type_drop_pos_y`, `item_type_drop_pos_z`, `item_type_drop_rot_x`, `item_type_drop_rot_y`, `item_type_drop_rot_z`, `item_type_drop_scale_x`, `item_type_drop_scale_y`, `item_type_drop_scale_z`, `item_type_image_small`, `item_type_image_large`, `item_type_image_hotbar`, `item_type_size`, `item_type_capacity`, `item_type_demand_multiplier`, `item_type_supply_multiplier`, `item_type_risk_multiplier`, `item_type_enabled`, `item_type_delay_switch`, `item_type_delay_use`, `item_type_delay_pickup`, `item_type_delay_put`, `item_type_delay_take`, `item_type_delay_give`, `item_type_delay_drop`) VALUES + (207, 4, 'Pizza', 19, 0, 10, 15, 0, 1582, 0, 0, -0.95, 1.6, 0, 0, 0, 0, 0, 'no-image.png', 'no-image.png', 'no-image.png', 0, 100, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `item_type` (`item_type_id`, `item_type_server`, `item_type_name`, `item_type_use_type`, `item_type_use_id`, `item_type_use_value`, `item_type_order_price`, `item_type_drop_type`, `item_type_drop_model`, `item_type_drop_pos_x`, `item_type_drop_pos_y`, `item_type_drop_pos_z`, `item_type_drop_rot_x`, `item_type_drop_rot_y`, `item_type_drop_rot_z`, `item_type_drop_scale_x`, `item_type_drop_scale_y`, `item_type_drop_scale_z`, `item_type_image_small`, `item_type_image_large`, `item_type_image_hotbar`, `item_type_size`, `item_type_capacity`, `item_type_demand_multiplier`, `item_type_supply_multiplier`, `item_type_risk_multiplier`, `item_type_enabled`, `item_type_delay_switch`, `item_type_delay_use`, `item_type_delay_pickup`, `item_type_delay_put`, `item_type_delay_take`, `item_type_delay_give`, `item_type_delay_drop`) VALUES + (208, 4, 'Walkie Talkie', 31, 0, 0, 50, 0, 1279, 0, 0, -0.95, 1.6, 0, 0, 0, 0, 0, 'no-image.png', 'no-image.png', 'no-image.png', 0, 0, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `item_type` (`item_type_id`, `item_type_server`, `item_type_name`, `item_type_use_type`, `item_type_use_id`, `item_type_use_value`, `item_type_order_price`, `item_type_drop_type`, `item_type_drop_model`, `item_type_drop_pos_x`, `item_type_drop_pos_y`, `item_type_drop_pos_z`, `item_type_drop_rot_x`, `item_type_drop_rot_y`, `item_type_drop_rot_z`, `item_type_drop_scale_x`, `item_type_drop_scale_y`, `item_type_drop_scale_z`, `item_type_image_small`, `item_type_image_large`, `item_type_image_hotbar`, `item_type_size`, `item_type_capacity`, `item_type_demand_multiplier`, `item_type_supply_multiplier`, `item_type_risk_multiplier`, `item_type_enabled`, `item_type_delay_switch`, `item_type_delay_use`, `item_type_delay_pickup`, `item_type_delay_put`, `item_type_delay_take`, `item_type_delay_give`, `item_type_delay_drop`) VALUES + (209, 4, 'Bottle of Soda', 35, 2, 0, 0, 0, 1544, 0, 0, -0.95, 1.6, 0, 0, 0, 0, 0, 'no-image.png', 'no-image.png', 'no-image.png', 0, 100, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `item_type` (`item_type_id`, `item_type_server`, `item_type_name`, `item_type_use_type`, `item_type_use_id`, `item_type_use_value`, `item_type_order_price`, `item_type_drop_type`, `item_type_drop_model`, `item_type_drop_pos_x`, `item_type_drop_pos_y`, `item_type_drop_pos_z`, `item_type_drop_rot_x`, `item_type_drop_rot_y`, `item_type_drop_rot_z`, `item_type_drop_scale_x`, `item_type_drop_scale_y`, `item_type_drop_scale_z`, `item_type_image_small`, `item_type_image_large`, `item_type_image_hotbar`, `item_type_size`, `item_type_capacity`, `item_type_demand_multiplier`, `item_type_supply_multiplier`, `item_type_risk_multiplier`, `item_type_enabled`, `item_type_delay_switch`, `item_type_delay_use`, `item_type_delay_pickup`, `item_type_delay_put`, `item_type_delay_take`, `item_type_delay_give`, `item_type_delay_drop`) VALUES + (210, 4, 'Can of Soda', 35, 2, 0, 0, 0, 2601, 0, 0, -0.95, 1.6, 0, 0, 0, 0, 0, 'no-image.png', 'no-image.png', 'no-image.png', 0, 100, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `item_type` (`item_type_id`, `item_type_server`, `item_type_name`, `item_type_use_type`, `item_type_use_id`, `item_type_use_value`, `item_type_order_price`, `item_type_drop_type`, `item_type_drop_model`, `item_type_drop_pos_x`, `item_type_drop_pos_y`, `item_type_drop_pos_z`, `item_type_drop_rot_x`, `item_type_drop_rot_y`, `item_type_drop_rot_z`, `item_type_drop_scale_x`, `item_type_drop_scale_y`, `item_type_drop_scale_z`, `item_type_image_small`, `item_type_image_large`, `item_type_image_hotbar`, `item_type_size`, `item_type_capacity`, `item_type_demand_multiplier`, `item_type_supply_multiplier`, `item_type_risk_multiplier`, `item_type_enabled`, `item_type_delay_switch`, `item_type_delay_use`, `item_type_delay_pickup`, `item_type_delay_put`, `item_type_delay_take`, `item_type_delay_give`, `item_type_delay_drop`) VALUES + (211, 4, 'Badge', 34, 0, 0, 0, 0, 1581, 0, 0, -0.95, 1.6, 0, 0, 0, 0, 0, 'no-image.png', 'no-image.png', 'no-image.png', 0, 0, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0); +/*!40000 ALTER TABLE `item_type` ENABLE KEYS */; + +-- Dumping structure for table gtac_main.job_bl +CREATE TABLE IF NOT EXISTS `job_bl` ( + `job_bl_id` int(11) NOT NULL AUTO_INCREMENT, + `job_bl_job` int(11) NOT NULL DEFAULT '0', + `job_bl_sacct` int(11) NOT NULL DEFAULT '0', + `job_bl_when_added` int(11) NOT NULL DEFAULT '0', + `job_bl_who_added` int(11) NOT NULL DEFAULT '0', + `job_bl_deleted` int(11) NOT NULL DEFAULT '0', + PRIMARY KEY (`job_bl_id`), + KEY `job_bl_job` (`job_bl_job`), + KEY `job_bl_sacct` (`job_bl_sacct`), + KEY `job_bl_who_added` (`job_bl_who_added`), + CONSTRAINT `fk_job_bl_admin` FOREIGN KEY (`job_bl_who_added`) REFERENCES `acct_main` (`acct_id`) ON DELETE CASCADE ON UPDATE CASCADE, + CONSTRAINT `fk_job_bl_job` FOREIGN KEY (`job_bl_job`) REFERENCES `job_main` (`job_id`) ON DELETE CASCADE ON UPDATE CASCADE, + CONSTRAINT `fk_job_bl_sacct` FOREIGN KEY (`job_bl_sacct`) REFERENCES `sacct_main` (`sacct_id`) ON DELETE CASCADE ON UPDATE CASCADE +) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Job - Blacklist'; + +-- Dumping data for table gtac_main.job_bl: ~0 rows (approximately) +/*!40000 ALTER TABLE `job_bl` DISABLE KEYS */; +/*!40000 ALTER TABLE `job_bl` ENABLE KEYS */; + +-- Dumping structure for table gtac_main.job_equip +CREATE TABLE IF NOT EXISTS `job_equip` ( + `job_equip_id` int(11) NOT NULL AUTO_INCREMENT, + `job_equip_job` int(11) NOT NULL DEFAULT '0', + `job_equip_minrank` int(11) NOT NULL DEFAULT '0', + `job_equip_name` varchar(50) NOT NULL DEFAULT '0', + `job_equip_enabled` tinyint(1) NOT NULL DEFAULT '1', + PRIMARY KEY (`job_equip_id`), + KEY `job_equip_job` (`job_equip_job`), + CONSTRAINT `fk_job_equip_job` FOREIGN KEY (`job_equip_job`) REFERENCES `job_main` (`job_id`) ON DELETE CASCADE ON UPDATE CASCADE +) ENGINE=InnoDB AUTO_INCREMENT=21 DEFAULT CHARSET=utf8 COMMENT='Job Equipments'; + +-- Dumping data for table gtac_main.job_equip: ~20 rows (approximately) +/*!40000 ALTER TABLE `job_equip` DISABLE KEYS */; +INSERT INTO `job_equip` (`job_equip_id`, `job_equip_job`, `job_equip_minrank`, `job_equip_name`, `job_equip_enabled`) VALUES + (1, 1, 0, 'Police Officer', 1); +INSERT INTO `job_equip` (`job_equip_id`, `job_equip_job`, `job_equip_minrank`, `job_equip_name`, `job_equip_enabled`) VALUES + (2, 2, 0, 'Police Officer', 1); +INSERT INTO `job_equip` (`job_equip_id`, `job_equip_job`, `job_equip_minrank`, `job_equip_name`, `job_equip_enabled`) VALUES + (3, 3, 0, 'Police Officer', 1); +INSERT INTO `job_equip` (`job_equip_id`, `job_equip_job`, `job_equip_minrank`, `job_equip_name`, `job_equip_enabled`) VALUES + (4, 4, 0, 'Police Officer', 1); +INSERT INTO `job_equip` (`job_equip_id`, `job_equip_job`, `job_equip_minrank`, `job_equip_name`, `job_equip_enabled`) VALUES + (5, 1, 1, 'Detective', 1); +INSERT INTO `job_equip` (`job_equip_id`, `job_equip_job`, `job_equip_minrank`, `job_equip_name`, `job_equip_enabled`) VALUES + (6, 2, 1, 'Detective', 1); +INSERT INTO `job_equip` (`job_equip_id`, `job_equip_job`, `job_equip_minrank`, `job_equip_name`, `job_equip_enabled`) VALUES + (7, 3, 1, 'Detective', 1); +INSERT INTO `job_equip` (`job_equip_id`, `job_equip_job`, `job_equip_minrank`, `job_equip_name`, `job_equip_enabled`) VALUES + (8, 4, 1, 'Detective', 1); +INSERT INTO `job_equip` (`job_equip_id`, `job_equip_job`, `job_equip_minrank`, `job_equip_name`, `job_equip_enabled`) VALUES + (9, 1, 2, 'SWAT', 1); +INSERT INTO `job_equip` (`job_equip_id`, `job_equip_job`, `job_equip_minrank`, `job_equip_name`, `job_equip_enabled`) VALUES + (10, 2, 2, 'SWAT', 1); +INSERT INTO `job_equip` (`job_equip_id`, `job_equip_job`, `job_equip_minrank`, `job_equip_name`, `job_equip_enabled`) VALUES + (11, 3, 2, 'SWAT', 1); +INSERT INTO `job_equip` (`job_equip_id`, `job_equip_job`, `job_equip_minrank`, `job_equip_name`, `job_equip_enabled`) VALUES + (12, 4, 2, 'SWAT', 1); +INSERT INTO `job_equip` (`job_equip_id`, `job_equip_job`, `job_equip_minrank`, `job_equip_name`, `job_equip_enabled`) VALUES + (13, 1, 3, 'Supervisor', 1); +INSERT INTO `job_equip` (`job_equip_id`, `job_equip_job`, `job_equip_minrank`, `job_equip_name`, `job_equip_enabled`) VALUES + (14, 2, 3, 'Supervisor', 1); +INSERT INTO `job_equip` (`job_equip_id`, `job_equip_job`, `job_equip_minrank`, `job_equip_name`, `job_equip_enabled`) VALUES + (15, 3, 3, 'Supervisor', 1); +INSERT INTO `job_equip` (`job_equip_id`, `job_equip_job`, `job_equip_minrank`, `job_equip_name`, `job_equip_enabled`) VALUES + (16, 4, 3, 'Supervisor', 1); +INSERT INTO `job_equip` (`job_equip_id`, `job_equip_job`, `job_equip_minrank`, `job_equip_name`, `job_equip_enabled`) VALUES + (17, 9, 0, 'Firefighter', 1); +INSERT INTO `job_equip` (`job_equip_id`, `job_equip_job`, `job_equip_minrank`, `job_equip_name`, `job_equip_enabled`) VALUES + (18, 10, 0, 'Firefighter', 1); +INSERT INTO `job_equip` (`job_equip_id`, `job_equip_job`, `job_equip_minrank`, `job_equip_name`, `job_equip_enabled`) VALUES + (19, 11, 0, 'Firefighter', 1); +INSERT INTO `job_equip` (`job_equip_id`, `job_equip_job`, `job_equip_minrank`, `job_equip_name`, `job_equip_enabled`) VALUES + (20, 12, 0, 'Firefighter', 1); +/*!40000 ALTER TABLE `job_equip` ENABLE KEYS */; + +-- Dumping structure for table gtac_main.job_equip_item +CREATE TABLE IF NOT EXISTS `job_equip_item` ( + `job_equip_item_id` int(11) NOT NULL AUTO_INCREMENT, + `job_equip_item_equip` int(11) NOT NULL DEFAULT '0', + `job_equip_item_type` int(11) NOT NULL DEFAULT '0', + `job_equip_item_value` int(11) NOT NULL DEFAULT '0', + `job_equip_item_enabled` tinyint(1) NOT NULL DEFAULT '1', + PRIMARY KEY (`job_equip_item_id`) USING BTREE, + KEY `job_equip_item_equip` (`job_equip_item_equip`), + KEY `job_equip_item_type` (`job_equip_item_type`), + CONSTRAINT `fk_job_equip_item_equip` FOREIGN KEY (`job_equip_item_equip`) REFERENCES `job_equip` (`job_equip_id`) ON DELETE CASCADE ON UPDATE CASCADE, + CONSTRAINT `fk_job_equip_item_item` FOREIGN KEY (`job_equip_item_type`) REFERENCES `item_type` (`item_type_id`) ON DELETE CASCADE ON UPDATE CASCADE +) ENGINE=InnoDB AUTO_INCREMENT=40 DEFAULT CHARSET=utf8 COMMENT='Job Equipments - Items'; + +-- Dumping data for table gtac_main.job_equip_item: ~36 rows (approximately) +/*!40000 ALTER TABLE `job_equip_item` DISABLE KEYS */; +INSERT INTO `job_equip_item` (`job_equip_item_id`, `job_equip_item_equip`, `job_equip_item_type`, `job_equip_item_value`, `job_equip_item_enabled`) VALUES + (1, 1, 1, 1, 1); +INSERT INTO `job_equip_item` (`job_equip_item_id`, `job_equip_item_equip`, `job_equip_item_type`, `job_equip_item_value`, `job_equip_item_enabled`) VALUES + (2, 1, 5, 50, 1); +INSERT INTO `job_equip_item` (`job_equip_item_id`, `job_equip_item_equip`, `job_equip_item_type`, `job_equip_item_value`, `job_equip_item_enabled`) VALUES + (3, 1, 7, 20, 1); +INSERT INTO `job_equip_item` (`job_equip_item_id`, `job_equip_item_equip`, `job_equip_item_type`, `job_equip_item_value`, `job_equip_item_enabled`) VALUES + (4, 5, 5, 150, 1); +INSERT INTO `job_equip_item` (`job_equip_item_id`, `job_equip_item_equip`, `job_equip_item_type`, `job_equip_item_value`, `job_equip_item_enabled`) VALUES + (5, 9, 1, 1, 1); +INSERT INTO `job_equip_item` (`job_equip_item_id`, `job_equip_item_equip`, `job_equip_item_type`, `job_equip_item_value`, `job_equip_item_enabled`) VALUES + (6, 9, 5, 250, 1); +INSERT INTO `job_equip_item` (`job_equip_item_id`, `job_equip_item_equip`, `job_equip_item_type`, `job_equip_item_value`, `job_equip_item_enabled`) VALUES + (7, 9, 7, 50, 1); +INSERT INTO `job_equip_item` (`job_equip_item_id`, `job_equip_item_equip`, `job_equip_item_type`, `job_equip_item_value`, `job_equip_item_enabled`) VALUES + (8, 9, 9, 500, 1); +INSERT INTO `job_equip_item` (`job_equip_item_id`, `job_equip_item_equip`, `job_equip_item_type`, `job_equip_item_value`, `job_equip_item_enabled`) VALUES + (9, 9, 10, 15, 1); +INSERT INTO `job_equip_item` (`job_equip_item_id`, `job_equip_item_equip`, `job_equip_item_type`, `job_equip_item_value`, `job_equip_item_enabled`) VALUES + (10, 13, 1, 1, 1); +INSERT INTO `job_equip_item` (`job_equip_item_id`, `job_equip_item_equip`, `job_equip_item_type`, `job_equip_item_value`, `job_equip_item_enabled`) VALUES + (11, 13, 5, 50, 1); +INSERT INTO `job_equip_item` (`job_equip_item_id`, `job_equip_item_equip`, `job_equip_item_type`, `job_equip_item_value`, `job_equip_item_enabled`) VALUES + (12, 13, 6, 300, 1); +INSERT INTO `job_equip_item` (`job_equip_item_id`, `job_equip_item_equip`, `job_equip_item_type`, `job_equip_item_value`, `job_equip_item_enabled`) VALUES + (13, 13, 7, 50, 1); +INSERT INTO `job_equip_item` (`job_equip_item_id`, `job_equip_item_equip`, `job_equip_item_type`, `job_equip_item_value`, `job_equip_item_enabled`) VALUES + (14, 17, 46, 500, 1); +INSERT INTO `job_equip_item` (`job_equip_item_id`, `job_equip_item_equip`, `job_equip_item_type`, `job_equip_item_value`, `job_equip_item_enabled`) VALUES + (15, 17, 50, 1, 1); +INSERT INTO `job_equip_item` (`job_equip_item_id`, `job_equip_item_equip`, `job_equip_item_type`, `job_equip_item_value`, `job_equip_item_enabled`) VALUES + (16, 1, 58, 1, 1); +INSERT INTO `job_equip_item` (`job_equip_item_id`, `job_equip_item_equip`, `job_equip_item_type`, `job_equip_item_value`, `job_equip_item_enabled`) VALUES + (18, 4, 137, 1, 1); +INSERT INTO `job_equip_item` (`job_equip_item_id`, `job_equip_item_equip`, `job_equip_item_type`, `job_equip_item_value`, `job_equip_item_enabled`) VALUES + (19, 4, 153, 150, 1); +INSERT INTO `job_equip_item` (`job_equip_item_id`, `job_equip_item_equip`, `job_equip_item_type`, `job_equip_item_value`, `job_equip_item_enabled`) VALUES + (20, 4, 156, 20, 1); +INSERT INTO `job_equip_item` (`job_equip_item_id`, `job_equip_item_equip`, `job_equip_item_type`, `job_equip_item_value`, `job_equip_item_enabled`) VALUES + (21, 8, 155, 150, 1); +INSERT INTO `job_equip_item` (`job_equip_item_id`, `job_equip_item_equip`, `job_equip_item_type`, `job_equip_item_value`, `job_equip_item_enabled`) VALUES + (22, 8, 175, 50, 1); +INSERT INTO `job_equip_item` (`job_equip_item_id`, `job_equip_item_equip`, `job_equip_item_type`, `job_equip_item_value`, `job_equip_item_enabled`) VALUES + (23, 4, 208, 0, 1); +INSERT INTO `job_equip_item` (`job_equip_item_id`, `job_equip_item_equip`, `job_equip_item_type`, `job_equip_item_value`, `job_equip_item_enabled`) VALUES + (24, 4, 194, 1, 1); +INSERT INTO `job_equip_item` (`job_equip_item_id`, `job_equip_item_equip`, `job_equip_item_type`, `job_equip_item_value`, `job_equip_item_enabled`) VALUES + (25, 16, 155, 150, 1); +INSERT INTO `job_equip_item` (`job_equip_item_id`, `job_equip_item_equip`, `job_equip_item_type`, `job_equip_item_value`, `job_equip_item_enabled`) VALUES + (26, 16, 156, 20, 1); +INSERT INTO `job_equip_item` (`job_equip_item_id`, `job_equip_item_equip`, `job_equip_item_type`, `job_equip_item_value`, `job_equip_item_enabled`) VALUES + (27, 16, 160, 300, 1); +INSERT INTO `job_equip_item` (`job_equip_item_id`, `job_equip_item_equip`, `job_equip_item_type`, `job_equip_item_value`, `job_equip_item_enabled`) VALUES + (29, 12, 162, 500, 1); +INSERT INTO `job_equip_item` (`job_equip_item_id`, `job_equip_item_equip`, `job_equip_item_type`, `job_equip_item_value`, `job_equip_item_enabled`) VALUES + (30, 12, 165, 30, 1); +INSERT INTO `job_equip_item` (`job_equip_item_id`, `job_equip_item_equip`, `job_equip_item_type`, `job_equip_item_value`, `job_equip_item_enabled`) VALUES + (31, 16, 158, 100, 1); +INSERT INTO `job_equip_item` (`job_equip_item_id`, `job_equip_item_equip`, `job_equip_item_type`, `job_equip_item_value`, `job_equip_item_enabled`) VALUES + (32, 12, 151, 5, 1); +INSERT INTO `job_equip_item` (`job_equip_item_id`, `job_equip_item_equip`, `job_equip_item_type`, `job_equip_item_value`, `job_equip_item_enabled`) VALUES + (33, 20, 174, 99999, 1); +INSERT INTO `job_equip_item` (`job_equip_item_id`, `job_equip_item_equip`, `job_equip_item_type`, `job_equip_item_value`, `job_equip_item_enabled`) VALUES + (34, 8, 211, 1, 1); +INSERT INTO `job_equip_item` (`job_equip_item_id`, `job_equip_item_equip`, `job_equip_item_type`, `job_equip_item_value`, `job_equip_item_enabled`) VALUES + (35, 16, 211, 1, 1); +INSERT INTO `job_equip_item` (`job_equip_item_id`, `job_equip_item_equip`, `job_equip_item_type`, `job_equip_item_value`, `job_equip_item_enabled`) VALUES + (37, 4, 199, 5, 1); +INSERT INTO `job_equip_item` (`job_equip_item_id`, `job_equip_item_equip`, `job_equip_item_type`, `job_equip_item_value`, `job_equip_item_enabled`) VALUES + (38, 1, 41, 1, 1); +INSERT INTO `job_equip_item` (`job_equip_item_id`, `job_equip_item_equip`, `job_equip_item_type`, `job_equip_item_value`, `job_equip_item_enabled`) VALUES + (39, 1, 47, 5, 1); +/*!40000 ALTER TABLE `job_equip_item` ENABLE KEYS */; + +-- Dumping structure for table gtac_main.job_loc +CREATE TABLE IF NOT EXISTS `job_loc` ( + `job_loc_id` int(11) NOT NULL AUTO_INCREMENT, + `job_loc_job` int(11) NOT NULL DEFAULT '0', + `job_loc_pos_x` float NOT NULL DEFAULT '0', + `job_loc_pos_y` float NOT NULL DEFAULT '0', + `job_loc_pos_z` float NOT NULL DEFAULT '0', + `job_loc_enabled` float NOT NULL DEFAULT '0', + `job_loc_uniform` int(11) NOT NULL DEFAULT '0', + `job_loc_int` int(11) NOT NULL DEFAULT '0', + `job_loc_vw` int(11) NOT NULL DEFAULT '0', + PRIMARY KEY (`job_loc_id`), + KEY `job_loc_job` (`job_loc_job`), + CONSTRAINT `fk_job_loc_job` FOREIGN KEY (`job_loc_job`) REFERENCES `job_main` (`job_id`) ON DELETE CASCADE ON UPDATE CASCADE +) ENGINE=InnoDB AUTO_INCREMENT=61 DEFAULT CHARSET=utf8 COMMENT='Job - Locations'; + +-- Dumping data for table gtac_main.job_loc: ~51 rows (approximately) +/*!40000 ALTER TABLE `job_loc` DISABLE KEYS */; +INSERT INTO `job_loc` (`job_loc_id`, `job_loc_job`, `job_loc_pos_x`, `job_loc_pos_y`, `job_loc_pos_z`, `job_loc_enabled`, `job_loc_uniform`, `job_loc_int`, `job_loc_vw`) VALUES + (1, 1, 1143.87, -675.18, 14.97, 1, 1, 0, 0); +INSERT INTO `job_loc` (`job_loc_id`, `job_loc_job`, `job_loc_pos_x`, `job_loc_pos_y`, `job_loc_pos_z`, `job_loc_enabled`, `job_loc_uniform`, `job_loc_int`, `job_loc_vw`) VALUES + (3, 5, -1253, -138.18, 58.75, 1, 0, 0, 0); +INSERT INTO `job_loc` (`job_loc_id`, `job_loc_job`, `job_loc_pos_x`, `job_loc_pos_y`, `job_loc_pos_z`, `job_loc_enabled`, `job_loc_uniform`, `job_loc_int`, `job_loc_vw`) VALUES + (4, 2, 401.94, -482.55, 12.34, 1, 3, 12, 5326); +INSERT INTO `job_loc` (`job_loc_id`, `job_loc_job`, `job_loc_pos_x`, `job_loc_pos_y`, `job_loc_pos_z`, `job_loc_enabled`, `job_loc_uniform`, `job_loc_int`, `job_loc_vw`) VALUES + (5, 2, 508.96, 512.07, 12.1, 1, 3, 0, 0); +INSERT INTO `job_loc` (`job_loc_id`, `job_loc_job`, `job_loc_pos_x`, `job_loc_pos_y`, `job_loc_pos_z`, `job_loc_enabled`, `job_loc_uniform`, `job_loc_int`, `job_loc_vw`) VALUES + (6, 2, -657.43, 762.31, 11.59, 1, 3, 0, 0); +INSERT INTO `job_loc` (`job_loc_id`, `job_loc_job`, `job_loc_pos_x`, `job_loc_pos_y`, `job_loc_pos_z`, `job_loc_enabled`, `job_loc_uniform`, `job_loc_int`, `job_loc_vw`) VALUES + (7, 6, -885.08, -470.44, 13.11, 1, 0, 0, 0); +INSERT INTO `job_loc` (`job_loc_id`, `job_loc_job`, `job_loc_pos_x`, `job_loc_pos_y`, `job_loc_pos_z`, `job_loc_enabled`, `job_loc_uniform`, `job_loc_int`, `job_loc_vw`) VALUES + (8, 4, 254.38, 77.72, 1003.64, 1, 0, 6, 2); +INSERT INTO `job_loc` (`job_loc_id`, `job_loc_job`, `job_loc_pos_x`, `job_loc_pos_y`, `job_loc_pos_z`, `job_loc_enabled`, `job_loc_uniform`, `job_loc_int`, `job_loc_vw`) VALUES + (11, 5, 1144.25, -596.87, 14.97, 1, 0, 0, 0); +INSERT INTO `job_loc` (`job_loc_id`, `job_loc_job`, `job_loc_pos_x`, `job_loc_pos_y`, `job_loc_pos_z`, `job_loc_enabled`, `job_loc_uniform`, `job_loc_int`, `job_loc_vw`) VALUES + (12, 1, -1259.5, -44.5, 58.89, 1, 1, 0, 0); +INSERT INTO `job_loc` (`job_loc_id`, `job_loc_job`, `job_loc_pos_x`, `job_loc_pos_y`, `job_loc_pos_z`, `job_loc_enabled`, `job_loc_uniform`, `job_loc_int`, `job_loc_vw`) VALUES + (13, 5, 183.5, -17.75, 16.21, 1, 0, 0, 0); +INSERT INTO `job_loc` (`job_loc_id`, `job_loc_job`, `job_loc_pos_x`, `job_loc_pos_y`, `job_loc_pos_z`, `job_loc_enabled`, `job_loc_uniform`, `job_loc_int`, `job_loc_vw`) VALUES + (14, 9, 1103.7, -52.45, 7.49, 1, 0, 0, 0); +INSERT INTO `job_loc` (`job_loc_id`, `job_loc_job`, `job_loc_pos_x`, `job_loc_pos_y`, `job_loc_pos_z`, `job_loc_enabled`, `job_loc_uniform`, `job_loc_int`, `job_loc_vw`) VALUES + (15, 9, -78.48, -436.8, 16.17, 1, 0, 0, 0); +INSERT INTO `job_loc` (`job_loc_id`, `job_loc_job`, `job_loc_pos_x`, `job_loc_pos_y`, `job_loc_pos_z`, `job_loc_enabled`, `job_loc_uniform`, `job_loc_int`, `job_loc_vw`) VALUES + (16, 9, -1202.1, -14.67, 53.2, 1, 0, 0, 0); +INSERT INTO `job_loc` (`job_loc_id`, `job_loc_job`, `job_loc_pos_x`, `job_loc_pos_y`, `job_loc_pos_z`, `job_loc_enabled`, `job_loc_uniform`, `job_loc_int`, `job_loc_vw`) VALUES + (17, 13, 1229.2, -740.1, 15.17, 1, 0, 0, 0); +INSERT INTO `job_loc` (`job_loc_id`, `job_loc_job`, `job_loc_pos_x`, `job_loc_pos_y`, `job_loc_pos_z`, `job_loc_enabled`, `job_loc_uniform`, `job_loc_int`, `job_loc_vw`) VALUES + (18, 17, -57.1661, -334.266, 16.9324, 1, 0, 0, 0); +INSERT INTO `job_loc` (`job_loc_id`, `job_loc_job`, `job_loc_pos_x`, `job_loc_pos_y`, `job_loc_pos_z`, `job_loc_enabled`, `job_loc_uniform`, `job_loc_int`, `job_loc_vw`) VALUES + (19, 17, 0, 0, 0, 1, 0, 0, 0); +INSERT INTO `job_loc` (`job_loc_id`, `job_loc_job`, `job_loc_pos_x`, `job_loc_pos_y`, `job_loc_pos_z`, `job_loc_enabled`, `job_loc_uniform`, `job_loc_int`, `job_loc_vw`) VALUES + (20, 17, 1310.2, -1016.3, 14.88, 1, 0, 0, 0); +INSERT INTO `job_loc` (`job_loc_id`, `job_loc_job`, `job_loc_pos_x`, `job_loc_pos_y`, `job_loc_pos_z`, `job_loc_enabled`, `job_loc_uniform`, `job_loc_int`, `job_loc_vw`) VALUES + (21, 21, -66.8, -932.2, 16.47, 1, 0, 0, 0); +INSERT INTO `job_loc` (`job_loc_id`, `job_loc_job`, `job_loc_pos_x`, `job_loc_pos_y`, `job_loc_pos_z`, `job_loc_enabled`, `job_loc_uniform`, `job_loc_int`, `job_loc_vw`) VALUES + (22, 21, 1121.8, 27.8, 1.99, 1, 0, 0, 0); +INSERT INTO `job_loc` (`job_loc_id`, `job_loc_job`, `job_loc_pos_x`, `job_loc_pos_y`, `job_loc_pos_z`, `job_loc_enabled`, `job_loc_uniform`, `job_loc_int`, `job_loc_vw`) VALUES + (23, 3, 894.99, -357.39, 18.185, 1, 0, 0, 0); +INSERT INTO `job_loc` (`job_loc_id`, `job_loc_job`, `job_loc_pos_x`, `job_loc_pos_y`, `job_loc_pos_z`, `job_loc_enabled`, `job_loc_uniform`, `job_loc_int`, `job_loc_vw`) VALUES + (24, 3, 435.4, 1592.29, 17.353, 1, 0, 0, 0); +INSERT INTO `job_loc` (`job_loc_id`, `job_loc_job`, `job_loc_pos_x`, `job_loc_pos_y`, `job_loc_pos_z`, `job_loc_enabled`, `job_loc_uniform`, `job_loc_int`, `job_loc_vw`) VALUES + (25, 3, 974.93, 1870.45, 23.073, 1, 0, 0, 0); +INSERT INTO `job_loc` (`job_loc_id`, `job_loc_job`, `job_loc_pos_x`, `job_loc_pos_y`, `job_loc_pos_z`, `job_loc_enabled`, `job_loc_uniform`, `job_loc_int`, `job_loc_vw`) VALUES + (26, 3, 1233.25, -89.13, 28.034, 1, 0, 0, 0); +INSERT INTO `job_loc` (`job_loc_id`, `job_loc_job`, `job_loc_pos_x`, `job_loc_pos_y`, `job_loc_pos_z`, `job_loc_enabled`, `job_loc_uniform`, `job_loc_int`, `job_loc_vw`) VALUES + (27, 3, 50.12, 679.88, 15.316, 1, 0, 0, 0); +INSERT INTO `job_loc` (`job_loc_id`, `job_loc_job`, `job_loc_pos_x`, `job_loc_pos_y`, `job_loc_pos_z`, `job_loc_enabled`, `job_loc_uniform`, `job_loc_int`, `job_loc_vw`) VALUES + (28, 3, 85.21, 1189.82, 14.755, 1, 0, 0, 0); +INSERT INTO `job_loc` (`job_loc_id`, `job_loc_job`, `job_loc_pos_x`, `job_loc_pos_y`, `job_loc_pos_z`, `job_loc_enabled`, `job_loc_uniform`, `job_loc_int`, `job_loc_vw`) VALUES + (29, 3, 2170.87, 448.87, 6.085, 1, 0, 0, 0); +INSERT INTO `job_loc` (`job_loc_id`, `job_loc_job`, `job_loc_pos_x`, `job_loc_pos_y`, `job_loc_pos_z`, `job_loc_enabled`, `job_loc_uniform`, `job_loc_int`, `job_loc_vw`) VALUES + (30, 3, 213.12, -211.7, 10.752, 1, 0, 0, 0); +INSERT INTO `job_loc` (`job_loc_id`, `job_loc_job`, `job_loc_pos_x`, `job_loc_pos_y`, `job_loc_pos_z`, `job_loc_enabled`, `job_loc_uniform`, `job_loc_int`, `job_loc_vw`) VALUES + (31, 3, -1714.95, 276.31, 22.134, 1, 0, 0, 0); +INSERT INTO `job_loc` (`job_loc_id`, `job_loc_job`, `job_loc_pos_x`, `job_loc_pos_y`, `job_loc_pos_z`, `job_loc_enabled`, `job_loc_uniform`, `job_loc_int`, `job_loc_vw`) VALUES + (32, 3, -1220.73, -231.53, 3.024, 1, 0, 0, 0); +INSERT INTO `job_loc` (`job_loc_id`, `job_loc_job`, `job_loc_pos_x`, `job_loc_pos_y`, `job_loc_pos_z`, `job_loc_enabled`, `job_loc_uniform`, `job_loc_int`, `job_loc_vw`) VALUES + (33, 3, -927.66, 1263.63, 24.587, 1, 0, 0, 0); +INSERT INTO `job_loc` (`job_loc_id`, `job_loc_job`, `job_loc_pos_x`, `job_loc_pos_y`, `job_loc_pos_z`, `job_loc_enabled`, `job_loc_uniform`, `job_loc_int`, `job_loc_vw`) VALUES + (34, 6, -826.06, 1144.41, 12.41, 1, 0, 0, 0); +INSERT INTO `job_loc` (`job_loc_id`, `job_loc_job`, `job_loc_pos_x`, `job_loc_pos_y`, `job_loc_pos_z`, `job_loc_enabled`, `job_loc_uniform`, `job_loc_int`, `job_loc_vw`) VALUES + (35, 2, 401.94, -482.55, 12.34, 1, 3, 12, 5291); +INSERT INTO `job_loc` (`job_loc_id`, `job_loc_job`, `job_loc_pos_x`, `job_loc_pos_y`, `job_loc_pos_z`, `job_loc_enabled`, `job_loc_uniform`, `job_loc_int`, `job_loc_vw`) VALUES + (36, 10, -698.22, 942.38, 11.08, 1, 0, 0, 0); +INSERT INTO `job_loc` (`job_loc_id`, `job_loc_job`, `job_loc_pos_x`, `job_loc_pos_y`, `job_loc_pos_z`, `job_loc_enabled`, `job_loc_uniform`, `job_loc_int`, `job_loc_vw`) VALUES + (37, 18, -1146.06, -285.65, 11.2, 1, 0, 0, 0); +INSERT INTO `job_loc` (`job_loc_id`, `job_loc_job`, `job_loc_pos_x`, `job_loc_pos_y`, `job_loc_pos_z`, `job_loc_enabled`, `job_loc_uniform`, `job_loc_int`, `job_loc_vw`) VALUES + (38, 14, -994.88, 185.1, 12.43, 1, 0, 0, 0); +INSERT INTO `job_loc` (`job_loc_id`, `job_loc_job`, `job_loc_pos_x`, `job_loc_pos_y`, `job_loc_pos_z`, `job_loc_enabled`, `job_loc_uniform`, `job_loc_int`, `job_loc_vw`) VALUES + (39, 6, 493.14, 709.31, 11.8, 1, 0, 0, 0); +INSERT INTO `job_loc` (`job_loc_id`, `job_loc_job`, `job_loc_pos_x`, `job_loc_pos_y`, `job_loc_pos_z`, `job_loc_enabled`, `job_loc_uniform`, `job_loc_int`, `job_loc_vw`) VALUES + (40, 22, -1264.42, 6.05, 11.45, 1, 0, 0, 0); +INSERT INTO `job_loc` (`job_loc_id`, `job_loc_job`, `job_loc_pos_x`, `job_loc_pos_y`, `job_loc_pos_z`, `job_loc_enabled`, `job_loc_uniform`, `job_loc_int`, `job_loc_vw`) VALUES + (41, 8, 1172.96, -1323.42, 15.4, 1, 0, 0, 0); +INSERT INTO `job_loc` (`job_loc_id`, `job_loc_job`, `job_loc_pos_x`, `job_loc_pos_y`, `job_loc_pos_z`, `job_loc_enabled`, `job_loc_uniform`, `job_loc_int`, `job_loc_vw`) VALUES + (42, 8, 2034.04, -1405.07, 17.24, 1, 0, 0, 0); +INSERT INTO `job_loc` (`job_loc_id`, `job_loc_job`, `job_loc_pos_x`, `job_loc_pos_y`, `job_loc_pos_z`, `job_loc_enabled`, `job_loc_uniform`, `job_loc_int`, `job_loc_vw`) VALUES + (43, 24, 2309.22, -2088.32, 13.55, 1, 0, 0, 0); +INSERT INTO `job_loc` (`job_loc_id`, `job_loc_job`, `job_loc_pos_x`, `job_loc_pos_y`, `job_loc_pos_z`, `job_loc_enabled`, `job_loc_uniform`, `job_loc_int`, `job_loc_vw`) VALUES + (44, 20, 1765.89, -1885.48, 13.55, 1, 0, 0, 0); +INSERT INTO `job_loc` (`job_loc_id`, `job_loc_job`, `job_loc_pos_x`, `job_loc_pos_y`, `job_loc_pos_z`, `job_loc_enabled`, `job_loc_uniform`, `job_loc_int`, `job_loc_vw`) VALUES + (45, 16, 1808.64, -1938.58, 13.55, 1, 0, 0, 0); +INSERT INTO `job_loc` (`job_loc_id`, `job_loc_job`, `job_loc_pos_x`, `job_loc_pos_y`, `job_loc_pos_z`, `job_loc_enabled`, `job_loc_uniform`, `job_loc_int`, `job_loc_vw`) VALUES + (46, 12, 1133.7, -1312.92, 13.58, 1, 0, 0, 0); +INSERT INTO `job_loc` (`job_loc_id`, `job_loc_job`, `job_loc_pos_x`, `job_loc_pos_y`, `job_loc_pos_z`, `job_loc_enabled`, `job_loc_uniform`, `job_loc_int`, `job_loc_vw`) VALUES + (47, 4, 2290.49, 2430.09, 10.82, 1, 0, 0, 0); +INSERT INTO `job_loc` (`job_loc_id`, `job_loc_job`, `job_loc_pos_x`, `job_loc_pos_y`, `job_loc_pos_z`, `job_loc_enabled`, `job_loc_uniform`, `job_loc_int`, `job_loc_vw`) VALUES + (48, 12, 1744.95, 2082.8, 10.82, 1, 0, 0, 0); +INSERT INTO `job_loc` (`job_loc_id`, `job_loc_job`, `job_loc_pos_x`, `job_loc_pos_y`, `job_loc_pos_z`, `job_loc_enabled`, `job_loc_uniform`, `job_loc_int`, `job_loc_vw`) VALUES + (49, 4, -1605.38, 711.5, 13.87, 1, 0, 0, 0); +INSERT INTO `job_loc` (`job_loc_id`, `job_loc_job`, `job_loc_pos_x`, `job_loc_pos_y`, `job_loc_pos_z`, `job_loc_enabled`, `job_loc_uniform`, `job_loc_int`, `job_loc_vw`) VALUES + (50, 8, -2655.15, 638.72, 14.45, 1, 0, 0, 0); +INSERT INTO `job_loc` (`job_loc_id`, `job_loc_job`, `job_loc_pos_x`, `job_loc_pos_y`, `job_loc_pos_z`, `job_loc_enabled`, `job_loc_uniform`, `job_loc_int`, `job_loc_vw`) VALUES + (51, 12, -2026.34, 67.17, 28.69, 1, 0, 0, 0); +INSERT INTO `job_loc` (`job_loc_id`, `job_loc_job`, `job_loc_pos_x`, `job_loc_pos_y`, `job_loc_pos_z`, `job_loc_enabled`, `job_loc_uniform`, `job_loc_int`, `job_loc_vw`) VALUES + (52, 17, -1130.99, -177.76, 43.72, 1, 0, 0, 0); +INSERT INTO `job_loc` (`job_loc_id`, `job_loc_job`, `job_loc_pos_x`, `job_loc_pos_y`, `job_loc_pos_z`, `job_loc_enabled`, `job_loc_uniform`, `job_loc_int`, `job_loc_vw`) VALUES + (53, 1, 345.588, -1122.58, 25.9809, 1, 0, 0, 0); +INSERT INTO `job_loc` (`job_loc_id`, `job_loc_job`, `job_loc_pos_x`, `job_loc_pos_y`, `job_loc_pos_z`, `job_loc_enabled`, `job_loc_uniform`, `job_loc_int`, `job_loc_vw`) VALUES + (60, 4, 254.643, 77.1645, 1003.64, 1, 0, 6, 5230); +/*!40000 ALTER TABLE `job_loc` ENABLE KEYS */; + +-- Dumping structure for table gtac_main.job_main +CREATE TABLE IF NOT EXISTS `job_main` ( + `job_id` int(11) NOT NULL AUTO_INCREMENT, + `job_server` int(11) NOT NULL DEFAULT '0', + `job_enabled` int(11) NOT NULL DEFAULT '1', + `job_name` varchar(50) NOT NULL DEFAULT 'Unnamed', + `job_pickup` int(11) NOT NULL DEFAULT '0', + `job_type` int(11) NOT NULL DEFAULT '0', + `job_blip` int(11) NOT NULL DEFAULT '0', + `job_colour_r` int(11) NOT NULL DEFAULT '255', + `job_colour_g` int(11) NOT NULL DEFAULT '255', + `job_colour_b` int(11) NOT NULL DEFAULT '255', + `job_whitelist` tinyint(1) NOT NULL DEFAULT '0', + `job_blacklist` tinyint(1) NOT NULL DEFAULT '0', + `job_walkietalkiefreq` int(11) NOT NULL DEFAULT '5000', + PRIMARY KEY (`job_id`), + KEY `job_server` (`job_server`), + CONSTRAINT `fk_job_server` FOREIGN KEY (`job_server`) REFERENCES `svr_main` (`svr_id`) ON DELETE CASCADE ON UPDATE CASCADE +) ENGINE=InnoDB AUTO_INCREMENT=25 DEFAULT CHARSET=utf8 COMMENT='Jobs'; + +-- Dumping data for table gtac_main.job_main: ~24 rows (approximately) +/*!40000 ALTER TABLE `job_main` DISABLE KEYS */; +INSERT INTO `job_main` (`job_id`, `job_server`, `job_enabled`, `job_name`, `job_pickup`, `job_type`, `job_blip`, `job_colour_r`, `job_colour_g`, `job_colour_b`, `job_whitelist`, `job_blacklist`, `job_walkietalkiefreq`) VALUES + (1, 1, 1, 'Police', 1383, 1, 0, 70, 150, 200, 0, 0, 268500); +INSERT INTO `job_main` (`job_id`, `job_server`, `job_enabled`, `job_name`, `job_pickup`, `job_type`, `job_blip`, `job_colour_r`, `job_colour_g`, `job_colour_b`, `job_whitelist`, `job_blacklist`, `job_walkietalkiefreq`) VALUES + (2, 2, 1, 'Police', 375, 1, 0, 70, 130, 180, 0, 0, 233400); +INSERT INTO `job_main` (`job_id`, `job_server`, `job_enabled`, `job_name`, `job_pickup`, `job_type`, `job_blip`, `job_colour_r`, `job_colour_g`, `job_colour_b`, `job_whitelist`, `job_blacklist`, `job_walkietalkiefreq`) VALUES + (3, 3, 1, 'Police', 0, 1, 0, 70, 130, 180, 0, 0, 656700); +INSERT INTO `job_main` (`job_id`, `job_server`, `job_enabled`, `job_name`, `job_pickup`, `job_type`, `job_blip`, `job_colour_r`, `job_colour_g`, `job_colour_b`, `job_whitelist`, `job_blacklist`, `job_walkietalkiefreq`) VALUES + (4, 4, 1, 'Police', 1247, 1, 30, 70, 130, 180, 0, 0, 788500); +INSERT INTO `job_main` (`job_id`, `job_server`, `job_enabled`, `job_name`, `job_pickup`, `job_type`, `job_blip`, `job_colour_r`, `job_colour_g`, `job_colour_b`, `job_whitelist`, `job_blacklist`, `job_walkietalkiefreq`) VALUES + (5, 1, 1, 'Paramedic', 1362, 2, 0, 219, 112, 147, 0, 0, 696500); +INSERT INTO `job_main` (`job_id`, `job_server`, `job_enabled`, `job_name`, `job_pickup`, `job_type`, `job_blip`, `job_colour_r`, `job_colour_g`, `job_colour_b`, `job_whitelist`, `job_blacklist`, `job_walkietalkiefreq`) VALUES + (6, 2, 1, 'Paramedic', 366, 2, 0, 219, 112, 147, 0, 0, 466500); +INSERT INTO `job_main` (`job_id`, `job_server`, `job_enabled`, `job_name`, `job_pickup`, `job_type`, `job_blip`, `job_colour_r`, `job_colour_g`, `job_colour_b`, `job_whitelist`, `job_blacklist`, `job_walkietalkiefreq`) VALUES + (7, 3, 1, 'Paramedic', 0, 2, 0, 219, 112, 147, 0, 0, 855700); +INSERT INTO `job_main` (`job_id`, `job_server`, `job_enabled`, `job_name`, `job_pickup`, `job_type`, `job_blip`, `job_colour_r`, `job_colour_g`, `job_colour_b`, `job_whitelist`, `job_blacklist`, `job_walkietalkiefreq`) VALUES + (8, 4, 1, 'Paramedic', 1240, 2, 22, 219, 112, 147, 0, 0, 239800); +INSERT INTO `job_main` (`job_id`, `job_server`, `job_enabled`, `job_name`, `job_pickup`, `job_type`, `job_blip`, `job_colour_r`, `job_colour_g`, `job_colour_b`, `job_whitelist`, `job_blacklist`, `job_walkietalkiefreq`) VALUES + (9, 1, 1, 'Firefighter', 1364, 3, 0, 205, 92, 92, 0, 0, 0); +INSERT INTO `job_main` (`job_id`, `job_server`, `job_enabled`, `job_name`, `job_pickup`, `job_type`, `job_blip`, `job_colour_r`, `job_colour_g`, `job_colour_b`, `job_whitelist`, `job_blacklist`, `job_walkietalkiefreq`) VALUES + (10, 2, 1, 'Firefighter', 365, 3, 0, 205, 92, 92, 0, 0, 0); +INSERT INTO `job_main` (`job_id`, `job_server`, `job_enabled`, `job_name`, `job_pickup`, `job_type`, `job_blip`, `job_colour_r`, `job_colour_g`, `job_colour_b`, `job_whitelist`, `job_blacklist`, `job_walkietalkiefreq`) VALUES + (11, 3, 1, 'Firefighter', 0, 3, 0, 205, 92, 92, 0, 0, 0); +INSERT INTO `job_main` (`job_id`, `job_server`, `job_enabled`, `job_name`, `job_pickup`, `job_type`, `job_blip`, `job_colour_r`, `job_colour_g`, `job_colour_b`, `job_whitelist`, `job_blacklist`, `job_walkietalkiefreq`) VALUES + (12, 4, 1, 'Firefighter', 1318, 3, 20, 205, 92, 92, 0, 0, 0); +INSERT INTO `job_main` (`job_id`, `job_server`, `job_enabled`, `job_name`, `job_pickup`, `job_type`, `job_blip`, `job_colour_r`, `job_colour_g`, `job_colour_b`, `job_whitelist`, `job_blacklist`, `job_walkietalkiefreq`) VALUES + (13, 1, 1, 'Taxi Driver', 1361, 5, 0, 240, 230, 140, 0, 0, 0); +INSERT INTO `job_main` (`job_id`, `job_server`, `job_enabled`, `job_name`, `job_pickup`, `job_type`, `job_blip`, `job_colour_r`, `job_colour_g`, `job_colour_b`, `job_whitelist`, `job_blacklist`, `job_walkietalkiefreq`) VALUES + (14, 2, 1, 'Taxi Driver', 365, 5, 0, 240, 230, 140, 0, 0, 0); +INSERT INTO `job_main` (`job_id`, `job_server`, `job_enabled`, `job_name`, `job_pickup`, `job_type`, `job_blip`, `job_colour_r`, `job_colour_g`, `job_colour_b`, `job_whitelist`, `job_blacklist`, `job_walkietalkiefreq`) VALUES + (15, 3, 1, 'Taxi Driver', 0, 5, 0, 240, 230, 140, 0, 0, 0); +INSERT INTO `job_main` (`job_id`, `job_server`, `job_enabled`, `job_name`, `job_pickup`, `job_type`, `job_blip`, `job_colour_r`, `job_colour_g`, `job_colour_b`, `job_whitelist`, `job_blacklist`, `job_walkietalkiefreq`) VALUES + (16, 4, 1, 'Taxi Driver', 1318, 5, 0, 240, 230, 140, 0, 0, 0); +INSERT INTO `job_main` (`job_id`, `job_server`, `job_enabled`, `job_name`, `job_pickup`, `job_type`, `job_blip`, `job_colour_r`, `job_colour_g`, `job_colour_b`, `job_whitelist`, `job_blacklist`, `job_walkietalkiefreq`) VALUES + (17, 1, 1, 'Bus Driver', 1361, 4, 0, 50, 205, 50, 0, 0, 0); +INSERT INTO `job_main` (`job_id`, `job_server`, `job_enabled`, `job_name`, `job_pickup`, `job_type`, `job_blip`, `job_colour_r`, `job_colour_g`, `job_colour_b`, `job_whitelist`, `job_blacklist`, `job_walkietalkiefreq`) VALUES + (18, 2, 1, 'Bus Driver', 365, 4, 0, 50, 205, 50, 0, 0, 0); +INSERT INTO `job_main` (`job_id`, `job_server`, `job_enabled`, `job_name`, `job_pickup`, `job_type`, `job_blip`, `job_colour_r`, `job_colour_g`, `job_colour_b`, `job_whitelist`, `job_blacklist`, `job_walkietalkiefreq`) VALUES + (19, 3, 1, 'Bus Driver', 0, 4, 0, 50, 205, 50, 0, 0, 0); +INSERT INTO `job_main` (`job_id`, `job_server`, `job_enabled`, `job_name`, `job_pickup`, `job_type`, `job_blip`, `job_colour_r`, `job_colour_g`, `job_colour_b`, `job_whitelist`, `job_blacklist`, `job_walkietalkiefreq`) VALUES + (20, 4, 1, 'Bus Driver', 1318, 4, 0, 50, 205, 50, 0, 0, 0); +INSERT INTO `job_main` (`job_id`, `job_server`, `job_enabled`, `job_name`, `job_pickup`, `job_type`, `job_blip`, `job_colour_r`, `job_colour_g`, `job_colour_b`, `job_whitelist`, `job_blacklist`, `job_walkietalkiefreq`) VALUES + (21, 1, 1, 'Trash Collector', 1351, 6, 0, 150, 150, 150, 0, 0, 0); +INSERT INTO `job_main` (`job_id`, `job_server`, `job_enabled`, `job_name`, `job_pickup`, `job_type`, `job_blip`, `job_colour_r`, `job_colour_g`, `job_colour_b`, `job_whitelist`, `job_blacklist`, `job_walkietalkiefreq`) VALUES + (22, 2, 1, 'Trash Collector', 365, 6, 0, 150, 150, 150, 0, 0, 0); +INSERT INTO `job_main` (`job_id`, `job_server`, `job_enabled`, `job_name`, `job_pickup`, `job_type`, `job_blip`, `job_colour_r`, `job_colour_g`, `job_colour_b`, `job_whitelist`, `job_blacklist`, `job_walkietalkiefreq`) VALUES + (23, 3, 1, 'Trash Collector', 0, 6, 0, 150, 150, 150, 0, 0, 0); +INSERT INTO `job_main` (`job_id`, `job_server`, `job_enabled`, `job_name`, `job_pickup`, `job_type`, `job_blip`, `job_colour_r`, `job_colour_g`, `job_colour_b`, `job_whitelist`, `job_blacklist`, `job_walkietalkiefreq`) VALUES + (24, 4, 1, 'Trash Collector', 1318, 6, 0, 150, 150, 150, 0, 0, 0); +/*!40000 ALTER TABLE `job_main` ENABLE KEYS */; + +-- Dumping structure for table gtac_main.job_uniform +CREATE TABLE IF NOT EXISTS `job_uniform` ( + `job_uniform_id` int(11) NOT NULL AUTO_INCREMENT, + `job_uniform_job` int(11) NOT NULL DEFAULT '0', + `job_uniform_skin` int(11) NOT NULL DEFAULT '0', + `job_uniform_enabled` tinyint(1) NOT NULL DEFAULT '0', + `job_uniform_minrank` int(11) NOT NULL DEFAULT '0', + `job_uniform_name` varchar(50) NOT NULL DEFAULT 'Unnamed', + PRIMARY KEY (`job_uniform_id`), + KEY `job_uniform_job` (`job_uniform_job`), + CONSTRAINT `fk_job_uniform_job` FOREIGN KEY (`job_uniform_job`) REFERENCES `job_main` (`job_id`) ON DELETE CASCADE ON UPDATE CASCADE +) ENGINE=InnoDB AUTO_INCREMENT=62 DEFAULT CHARSET=utf8 COMMENT='Jobs - Uniforms'; + +-- Dumping data for table gtac_main.job_uniform: ~60 rows (approximately) +/*!40000 ALTER TABLE `job_uniform` DISABLE KEYS */; +INSERT INTO `job_uniform` (`job_uniform_id`, `job_uniform_job`, `job_uniform_skin`, `job_uniform_enabled`, `job_uniform_minrank`, `job_uniform_name`) VALUES + (1, 1, 1, 1, 0, 'Police Officer 1'); +INSERT INTO `job_uniform` (`job_uniform_id`, `job_uniform_job`, `job_uniform_skin`, `job_uniform_enabled`, `job_uniform_minrank`, `job_uniform_name`) VALUES + (2, 1, 92, 1, 0, 'Police Officer 2'); +INSERT INTO `job_uniform` (`job_uniform_id`, `job_uniform_job`, `job_uniform_skin`, `job_uniform_enabled`, `job_uniform_minrank`, `job_uniform_name`) VALUES + (3, 2, 1, 1, 0, 'Police Officer 1'); +INSERT INTO `job_uniform` (`job_uniform_id`, `job_uniform_job`, `job_uniform_skin`, `job_uniform_enabled`, `job_uniform_minrank`, `job_uniform_name`) VALUES + (4, 2, 120, 1, 0, 'Officer Lance Vance'); +INSERT INTO `job_uniform` (`job_uniform_id`, `job_uniform_job`, `job_uniform_skin`, `job_uniform_enabled`, `job_uniform_minrank`, `job_uniform_name`) VALUES + (5, 2, 97, 1, 1, 'Detective 1'); +INSERT INTO `job_uniform` (`job_uniform_id`, `job_uniform_job`, `job_uniform_skin`, `job_uniform_enabled`, `job_uniform_minrank`, `job_uniform_name`) VALUES + (6, 2, 98, 1, 1, 'Detective 2'); +INSERT INTO `job_uniform` (`job_uniform_id`, `job_uniform_job`, `job_uniform_skin`, `job_uniform_enabled`, `job_uniform_minrank`, `job_uniform_name`) VALUES + (7, 2, 99, 1, 1, 'Detective 3'); +INSERT INTO `job_uniform` (`job_uniform_id`, `job_uniform_job`, `job_uniform_skin`, `job_uniform_enabled`, `job_uniform_minrank`, `job_uniform_name`) VALUES + (8, 2, 100, 1, 1, 'Detective 4'); +INSERT INTO `job_uniform` (`job_uniform_id`, `job_uniform_job`, `job_uniform_skin`, `job_uniform_enabled`, `job_uniform_minrank`, `job_uniform_name`) VALUES + (9, 2, 101, 1, 1, 'Detective 5'); +INSERT INTO `job_uniform` (`job_uniform_id`, `job_uniform_job`, `job_uniform_skin`, `job_uniform_enabled`, `job_uniform_minrank`, `job_uniform_name`) VALUES + (10, 2, 102, 1, 1, 'Detective 6'); +INSERT INTO `job_uniform` (`job_uniform_id`, `job_uniform_job`, `job_uniform_skin`, `job_uniform_enabled`, `job_uniform_minrank`, `job_uniform_name`) VALUES + (11, 4, 280, 1, 0, 'Los Santos Police Officer'); +INSERT INTO `job_uniform` (`job_uniform_id`, `job_uniform_job`, `job_uniform_skin`, `job_uniform_enabled`, `job_uniform_minrank`, `job_uniform_name`) VALUES + (12, 4, 281, 1, 0, 'San Fierro Police Officer'); +INSERT INTO `job_uniform` (`job_uniform_id`, `job_uniform_job`, `job_uniform_skin`, `job_uniform_enabled`, `job_uniform_minrank`, `job_uniform_name`) VALUES + (13, 4, 282, 1, 0, 'Las Venturas Police Officer'); +INSERT INTO `job_uniform` (`job_uniform_id`, `job_uniform_job`, `job_uniform_skin`, `job_uniform_enabled`, `job_uniform_minrank`, `job_uniform_name`) VALUES + (14, 4, 284, 1, 0, 'Motorcycle Cop'); +INSERT INTO `job_uniform` (`job_uniform_id`, `job_uniform_job`, `job_uniform_skin`, `job_uniform_enabled`, `job_uniform_minrank`, `job_uniform_name`) VALUES + (15, 4, 165, 1, 0, 'Detective 1'); +INSERT INTO `job_uniform` (`job_uniform_id`, `job_uniform_job`, `job_uniform_skin`, `job_uniform_enabled`, `job_uniform_minrank`, `job_uniform_name`) VALUES + (16, 4, 166, 1, 0, 'Detective 2'); +INSERT INTO `job_uniform` (`job_uniform_id`, `job_uniform_job`, `job_uniform_skin`, `job_uniform_enabled`, `job_uniform_minrank`, `job_uniform_name`) VALUES + (17, 4, 285, 1, 2, 'SWAT'); +INSERT INTO `job_uniform` (`job_uniform_id`, `job_uniform_job`, `job_uniform_skin`, `job_uniform_enabled`, `job_uniform_minrank`, `job_uniform_name`) VALUES + (18, 4, 283, 1, 3, 'Sheriff 1'); +INSERT INTO `job_uniform` (`job_uniform_id`, `job_uniform_job`, `job_uniform_skin`, `job_uniform_enabled`, `job_uniform_minrank`, `job_uniform_name`) VALUES + (19, 4, 288, 1, 3, 'Sheriff 2'); +INSERT INTO `job_uniform` (`job_uniform_id`, `job_uniform_job`, `job_uniform_skin`, `job_uniform_enabled`, `job_uniform_minrank`, `job_uniform_name`) VALUES + (20, 4, 265, 1, 0, 'Officer Frank Tenpenny'); +INSERT INTO `job_uniform` (`job_uniform_id`, `job_uniform_job`, `job_uniform_skin`, `job_uniform_enabled`, `job_uniform_minrank`, `job_uniform_name`) VALUES + (21, 4, 266, 1, 0, 'Officer Eddie Pulaski'); +INSERT INTO `job_uniform` (`job_uniform_id`, `job_uniform_job`, `job_uniform_skin`, `job_uniform_enabled`, `job_uniform_minrank`, `job_uniform_name`) VALUES + (22, 4, 267, 1, 0, 'Officer Jimmy Hernandez'); +INSERT INTO `job_uniform` (`job_uniform_id`, `job_uniform_job`, `job_uniform_skin`, `job_uniform_enabled`, `job_uniform_minrank`, `job_uniform_name`) VALUES + (23, 3, -183203150, 1, 0, 'Police Officer 1'); +INSERT INTO `job_uniform` (`job_uniform_id`, `job_uniform_job`, `job_uniform_skin`, `job_uniform_enabled`, `job_uniform_minrank`, `job_uniform_name`) VALUES + (24, 3, -1518937979, 1, 0, 'Police Officer 2'); +INSERT INTO `job_uniform` (`job_uniform_id`, `job_uniform_job`, `job_uniform_skin`, `job_uniform_enabled`, `job_uniform_minrank`, `job_uniform_name`) VALUES + (25, 3, -370395528, 1, 0, 'Fat Police Officer'); +INSERT INTO `job_uniform` (`job_uniform_id`, `job_uniform_job`, `job_uniform_skin`, `job_uniform_enabled`, `job_uniform_minrank`, `job_uniform_name`) VALUES + (26, 3, -999506922, 1, 1, 'Detective 1'); +INSERT INTO `job_uniform` (`job_uniform_id`, `job_uniform_job`, `job_uniform_skin`, `job_uniform_enabled`, `job_uniform_minrank`, `job_uniform_name`) VALUES + (27, 5, 5, 1, 0, 'Paramedic 1'); +INSERT INTO `job_uniform` (`job_uniform_id`, `job_uniform_job`, `job_uniform_skin`, `job_uniform_enabled`, `job_uniform_minrank`, `job_uniform_name`) VALUES + (28, 5, 72, 1, 0, 'Paramedic 2'); +INSERT INTO `job_uniform` (`job_uniform_id`, `job_uniform_job`, `job_uniform_skin`, `job_uniform_enabled`, `job_uniform_minrank`, `job_uniform_name`) VALUES + (29, 5, 73, 1, 0, 'Paramedic 3'); +INSERT INTO `job_uniform` (`job_uniform_id`, `job_uniform_job`, `job_uniform_skin`, `job_uniform_enabled`, `job_uniform_minrank`, `job_uniform_name`) VALUES + (30, 6, 5, 1, 0, 'Paramedic 1'); +INSERT INTO `job_uniform` (`job_uniform_id`, `job_uniform_job`, `job_uniform_skin`, `job_uniform_enabled`, `job_uniform_minrank`, `job_uniform_name`) VALUES + (31, 6, 5, 1, 0, 'Paramedic 1'); +INSERT INTO `job_uniform` (`job_uniform_id`, `job_uniform_job`, `job_uniform_skin`, `job_uniform_enabled`, `job_uniform_minrank`, `job_uniform_name`) VALUES + (32, 7, -1175077216, 1, 0, 'Paramedic 1'); +INSERT INTO `job_uniform` (`job_uniform_id`, `job_uniform_job`, `job_uniform_skin`, `job_uniform_enabled`, `job_uniform_minrank`, `job_uniform_name`) VALUES + (33, 8, 274, 1, 0, 'Paramedic 1'); +INSERT INTO `job_uniform` (`job_uniform_id`, `job_uniform_job`, `job_uniform_skin`, `job_uniform_enabled`, `job_uniform_minrank`, `job_uniform_name`) VALUES + (34, 8, 275, 1, 0, 'Paramedic 2'); +INSERT INTO `job_uniform` (`job_uniform_id`, `job_uniform_job`, `job_uniform_skin`, `job_uniform_enabled`, `job_uniform_minrank`, `job_uniform_name`) VALUES + (35, 8, 276, 1, 0, 'Paramedic 3'); +INSERT INTO `job_uniform` (`job_uniform_id`, `job_uniform_job`, `job_uniform_skin`, `job_uniform_enabled`, `job_uniform_minrank`, `job_uniform_name`) VALUES + (36, 11, -610224615, 1, 0, 'Firefighter'); +INSERT INTO `job_uniform` (`job_uniform_id`, `job_uniform_job`, `job_uniform_skin`, `job_uniform_enabled`, `job_uniform_minrank`, `job_uniform_name`) VALUES + (37, 11, 610888851, 1, 0, 'Fire Chief'); +INSERT INTO `job_uniform` (`job_uniform_id`, `job_uniform_job`, `job_uniform_skin`, `job_uniform_enabled`, `job_uniform_minrank`, `job_uniform_name`) VALUES + (38, 11, 277, 1, 0, 'Firefighter 1'); +INSERT INTO `job_uniform` (`job_uniform_id`, `job_uniform_job`, `job_uniform_skin`, `job_uniform_enabled`, `job_uniform_minrank`, `job_uniform_name`) VALUES + (39, 12, 278, 1, 0, 'Firefighter 2'); +INSERT INTO `job_uniform` (`job_uniform_id`, `job_uniform_job`, `job_uniform_skin`, `job_uniform_enabled`, `job_uniform_minrank`, `job_uniform_name`) VALUES + (40, 12, 279, 1, 0, 'Firefighter 3'); +INSERT INTO `job_uniform` (`job_uniform_id`, `job_uniform_job`, `job_uniform_skin`, `job_uniform_enabled`, `job_uniform_minrank`, `job_uniform_name`) VALUES + (42, 13, 8, 1, 0, 'Taxi Driver 1'); +INSERT INTO `job_uniform` (`job_uniform_id`, `job_uniform_job`, `job_uniform_skin`, `job_uniform_enabled`, `job_uniform_minrank`, `job_uniform_name`) VALUES + (43, 14, 8, 1, 0, 'Taxi Driver 1'); +INSERT INTO `job_uniform` (`job_uniform_id`, `job_uniform_job`, `job_uniform_skin`, `job_uniform_enabled`, `job_uniform_minrank`, `job_uniform_name`) VALUES + (44, 16, 7, 1, 0, 'Taxi Driver 1'); +INSERT INTO `job_uniform` (`job_uniform_id`, `job_uniform_job`, `job_uniform_skin`, `job_uniform_enabled`, `job_uniform_minrank`, `job_uniform_name`) VALUES + (45, 16, 142, 1, 0, 'Taxi Driver 2'); +INSERT INTO `job_uniform` (`job_uniform_id`, `job_uniform_job`, `job_uniform_skin`, `job_uniform_enabled`, `job_uniform_minrank`, `job_uniform_name`) VALUES + (46, 17, 8, 1, 0, 'Bus Driver 1'); +INSERT INTO `job_uniform` (`job_uniform_id`, `job_uniform_job`, `job_uniform_skin`, `job_uniform_enabled`, `job_uniform_minrank`, `job_uniform_name`) VALUES + (47, 18, 8, 1, 0, 'Bus Driver 1'); +INSERT INTO `job_uniform` (`job_uniform_id`, `job_uniform_job`, `job_uniform_skin`, `job_uniform_enabled`, `job_uniform_minrank`, `job_uniform_name`) VALUES + (48, 20, 7, 1, 0, 'Bus Driver 1'); +INSERT INTO `job_uniform` (`job_uniform_id`, `job_uniform_job`, `job_uniform_skin`, `job_uniform_enabled`, `job_uniform_minrank`, `job_uniform_name`) VALUES + (49, 20, 142, 1, 0, 'Bus Driver 2'); +INSERT INTO `job_uniform` (`job_uniform_id`, `job_uniform_job`, `job_uniform_skin`, `job_uniform_enabled`, `job_uniform_minrank`, `job_uniform_name`) VALUES + (50, 21, 53, 1, 0, 'Garbage Collector 1'); +INSERT INTO `job_uniform` (`job_uniform_id`, `job_uniform_job`, `job_uniform_skin`, `job_uniform_enabled`, `job_uniform_minrank`, `job_uniform_name`) VALUES + (51, 21, 54, 1, 0, 'Garbage Collector 2'); +INSERT INTO `job_uniform` (`job_uniform_id`, `job_uniform_job`, `job_uniform_skin`, `job_uniform_enabled`, `job_uniform_minrank`, `job_uniform_name`) VALUES + (52, 22, 53, 1, 0, 'Garbage Collector 1'); +INSERT INTO `job_uniform` (`job_uniform_id`, `job_uniform_job`, `job_uniform_skin`, `job_uniform_enabled`, `job_uniform_minrank`, `job_uniform_name`) VALUES + (53, 22, 54, 1, 0, 'Garbage Collector 2'); +INSERT INTO `job_uniform` (`job_uniform_id`, `job_uniform_job`, `job_uniform_skin`, `job_uniform_enabled`, `job_uniform_minrank`, `job_uniform_name`) VALUES + (54, 24, 16, 1, 0, 'Garbage Collector 1'); +INSERT INTO `job_uniform` (`job_uniform_id`, `job_uniform_job`, `job_uniform_skin`, `job_uniform_enabled`, `job_uniform_minrank`, `job_uniform_name`) VALUES + (55, 23, 1136499716, 1, 0, 'Garbage Collector 1'); +INSERT INTO `job_uniform` (`job_uniform_id`, `job_uniform_job`, `job_uniform_skin`, `job_uniform_enabled`, `job_uniform_minrank`, `job_uniform_name`) VALUES + (56, 19, 134077503, 1, 0, 'Bus Driver 1'); +INSERT INTO `job_uniform` (`job_uniform_id`, `job_uniform_job`, `job_uniform_skin`, `job_uniform_enabled`, `job_uniform_minrank`, `job_uniform_name`) VALUES + (57, 15, 8772846, 1, 0, 'Taxi Driver 1'); +INSERT INTO `job_uniform` (`job_uniform_id`, `job_uniform_job`, `job_uniform_skin`, `job_uniform_enabled`, `job_uniform_minrank`, `job_uniform_name`) VALUES + (58, 3, -89302119, 1, 3, 'State Trooper'); +INSERT INTO `job_uniform` (`job_uniform_id`, `job_uniform_job`, `job_uniform_skin`, `job_uniform_enabled`, `job_uniform_minrank`, `job_uniform_name`) VALUES + (59, 3, -1004762946, 1, 2, 'SWAT'); +INSERT INTO `job_uniform` (`job_uniform_id`, `job_uniform_job`, `job_uniform_skin`, `job_uniform_enabled`, `job_uniform_minrank`, `job_uniform_name`) VALUES + (60, 2, 166, 1, 0, 'Officer Tommy Vercetti'); +INSERT INTO `job_uniform` (`job_uniform_id`, `job_uniform_job`, `job_uniform_skin`, `job_uniform_enabled`, `job_uniform_minrank`, `job_uniform_name`) VALUES + (61, 9, 6, 1, 0, 'Firefighter'); +/*!40000 ALTER TABLE `job_uniform` ENABLE KEYS */; + +-- Dumping structure for table gtac_main.job_wl +CREATE TABLE IF NOT EXISTS `job_wl` ( + `job_wl_id` int(11) NOT NULL AUTO_INCREMENT, + `job_wl_job` int(11) NOT NULL DEFAULT '0', + `job_wl_sacct` int(11) NOT NULL DEFAULT '0', + `job_wl_who_added` int(11) NOT NULL DEFAULT '0', + `job_wl_when_added` int(11) NOT NULL DEFAULT '0', + `job_wl_enabled` int(11) NOT NULL DEFAULT '1', + PRIMARY KEY (`job_wl_id`), + KEY `job_wl_job` (`job_wl_job`), + KEY `job_wl_sacct` (`job_wl_sacct`), + KEY `job_wl_who_added` (`job_wl_who_added`), + CONSTRAINT `fk_job_wl_admin` FOREIGN KEY (`job_wl_who_added`) REFERENCES `acct_main` (`acct_id`) ON DELETE CASCADE ON UPDATE CASCADE, + CONSTRAINT `fk_job_wl_job` FOREIGN KEY (`job_wl_job`) REFERENCES `job_main` (`job_id`) ON DELETE CASCADE ON UPDATE CASCADE, + CONSTRAINT `fk_job_wl_sacct` FOREIGN KEY (`job_wl_sacct`) REFERENCES `sacct_main` (`sacct_id`) ON DELETE CASCADE ON UPDATE CASCADE +) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Jobs - Whitelist'; + +-- Dumping data for table gtac_main.job_wl: ~0 rows (approximately) +/*!40000 ALTER TABLE `job_wl` DISABLE KEYS */; +/*!40000 ALTER TABLE `job_wl` ENABLE KEYS */; + +-- Dumping structure for table gtac_main.log_admin +CREATE TABLE IF NOT EXISTS `log_admin` ( + `log_admin_id` int(11) NOT NULL AUTO_INCREMENT, + `log_admin_target` int(11) NOT NULL DEFAULT '0', + `log_admin_msg` varchar(128) NOT NULL DEFAULT '', + `log_admin_type` int(11) NOT NULL DEFAULT '0', + `log_admin_admin` int(11) NOT NULL DEFAULT '0', + `log_admin_timestamp` int(32) NOT NULL DEFAULT '0', + PRIMARY KEY (`log_admin_id`) +) ENGINE=InnoDB DEFAULT CHARSET=latin1 COMMENT='Log - Admin Actions'; + +-- Dumping data for table gtac_main.log_admin: ~0 rows (approximately) +/*!40000 ALTER TABLE `log_admin` DISABLE KEYS */; +/*!40000 ALTER TABLE `log_admin` ENABLE KEYS */; + +-- Dumping structure for table gtac_main.log_chat +CREATE TABLE IF NOT EXISTS `log_chat` ( + `log_chat_id` int(11) NOT NULL AUTO_INCREMENT, + `log_chat_server` int(11) NOT NULL DEFAULT '0', + `log_chat_sacct` int(11) NOT NULL DEFAULT '0', + `log_chat_type` int(11) NOT NULL DEFAULT '0', + `log_chat_msg` varchar(128) NOT NULL DEFAULT '', + `log_chat_timestamp` int(32) NOT NULL DEFAULT '0', + PRIMARY KEY (`log_chat_id`) +) ENGINE=InnoDB DEFAULT CHARSET=latin1 COMMENT='Log - Game Chat'; + +-- Dumping data for table gtac_main.log_chat: ~0 rows (approximately) +/*!40000 ALTER TABLE `log_chat` DISABLE KEYS */; +/*!40000 ALTER TABLE `log_chat` ENABLE KEYS */; + +-- Dumping structure for table gtac_main.log_conn +CREATE TABLE IF NOT EXISTS `log_conn` ( + `log_conn_id` int(11) NOT NULL AUTO_INCREMENT, + `log_conn_name` varchar(64) NOT NULL DEFAULT 'Unknown', + `log_conn_server` int(11) NOT NULL DEFAULT '0', + `log_conn_ip` int(11) NOT NULL DEFAULT '0', + `log_conn_when_connect` int(32) NOT NULL DEFAULT '0', + `log_conn_when_disconnect` int(32) NOT NULL DEFAULT '0', + `log_conn_gameversion` int(11) NOT NULL DEFAULT '0', + PRIMARY KEY (`log_conn_id`) +) ENGINE=InnoDB DEFAULT CHARSET=latin1 COMMENT='Log - Connections'; + +-- Dumping data for table gtac_main.log_conn: ~0 rows (approximately) +/*!40000 ALTER TABLE `log_conn` DISABLE KEYS */; +/*!40000 ALTER TABLE `log_conn` ENABLE KEYS */; + +-- Dumping structure for table gtac_main.log_death +CREATE TABLE IF NOT EXISTS `log_death` ( + `log_death_id` int(11) NOT NULL AUTO_INCREMENT, + `log_death_server` int(11) NOT NULL DEFAULT '0', + `log_death_who_died` int(11) NOT NULL DEFAULT '0', + `log_death_who_killed` int(11) NOT NULL DEFAULT '0', + `log_death_timestamp` int(32) NOT NULL DEFAULT '0', + `log_death_pedpiece` int(11) NOT NULL DEFAULT '0', + `log_death_weapon` int(11) NOT NULL DEFAULT '0', + PRIMARY KEY (`log_death_id`) +) ENGINE=InnoDB DEFAULT CHARSET=latin1 COMMENT='Log - Deaths'; + +-- Dumping data for table gtac_main.log_death: ~0 rows (approximately) +/*!40000 ALTER TABLE `log_death` DISABLE KEYS */; +/*!40000 ALTER TABLE `log_death` ENABLE KEYS */; + +-- Dumping structure for table gtac_main.log_pns +CREATE TABLE IF NOT EXISTS `log_pns` ( + `log_pns_id` int(11) NOT NULL AUTO_INCREMENT, + `log_pns_pns` int(11) DEFAULT '0', + `log_pns_when_used` int(32) DEFAULT '0', + `log_pns_conn` int(11) DEFAULT '0', + `log_pns_veh` int(11) DEFAULT '0', + `log_pns_action` float DEFAULT '0', + `log_pns_paid` int(11) DEFAULT '0', + `log_pns_detail` int(11) DEFAULT '0', + PRIMARY KEY (`log_pns_id`) +) ENGINE=InnoDB DEFAULT CHARSET=latin1 COMMENT='Log - Pay and Spray'; + +-- Dumping data for table gtac_main.log_pns: ~0 rows (approximately) +/*!40000 ALTER TABLE `log_pns` DISABLE KEYS */; +/*!40000 ALTER TABLE `log_pns` ENABLE KEYS */; + +-- Dumping structure for table gtac_main.npc_cond +CREATE TABLE IF NOT EXISTS `npc_cond` ( + `npc_cond_id` int(11) NOT NULL AUTO_INCREMENT, + `npc_cond_npc` int(11) NOT NULL DEFAULT '0', + `npc_cond_trig` int(11) NOT NULL DEFAULT '0', + `npc_cond_type` int(11) NOT NULL DEFAULT '0', + `npc_cond_data` varchar(11) NOT NULL DEFAULT '0', + `npc_cond_logic` varchar(11) NOT NULL DEFAULT '0', + `npc_cond_enabled` tinyint(1) NOT NULL DEFAULT '1', + PRIMARY KEY (`npc_cond_id`) +) ENGINE=InnoDB DEFAULT CHARSET=latin1 COMMENT='NPCs - Action Conditions'; + +-- Dumping data for table gtac_main.npc_cond: ~0 rows (approximately) +/*!40000 ALTER TABLE `npc_cond` DISABLE KEYS */; +/*!40000 ALTER TABLE `npc_cond` ENABLE KEYS */; + +-- Dumping structure for table gtac_main.npc_main +CREATE TABLE IF NOT EXISTS `npc_main` ( + `npc_id` int(11) NOT NULL AUTO_INCREMENT, + `npc_server` tinyint(2) NOT NULL DEFAULT '0', + `npc_name` varchar(128) NOT NULL DEFAULT '', + `npc_model` int(11) NOT NULL DEFAULT '0', + `npc_type_flags` int(32) NOT NULL DEFAULT '0', + `npc_ped_health` int(4) NOT NULL DEFAULT '100', + `npc_ped_armour` int(4) NOT NULL DEFAULT '0', + `npc_ped_threats` int(32) NOT NULL DEFAULT '0', + `npc_ped_heedthreats` tinyint(1) NOT NULL DEFAULT '0', + `npc_ped_stay` tinyint(1) NOT NULL DEFAULT '1', + `npc_ped_walkstyle` int(11) NOT NULL DEFAULT '0', + `npc_owner_type` int(11) DEFAULT NULL, + `npc_owner_id` int(11) DEFAULT NULL, + PRIMARY KEY (`npc_id`) +) ENGINE=InnoDB DEFAULT CHARSET=latin1 COMMENT='NPCs'; + +-- Dumping data for table gtac_main.npc_main: ~0 rows (approximately) +/*!40000 ALTER TABLE `npc_main` DISABLE KEYS */; +/*!40000 ALTER TABLE `npc_main` ENABLE KEYS */; + +-- Dumping structure for table gtac_main.npc_resp +CREATE TABLE IF NOT EXISTS `npc_resp` ( + `npc_resp_id` int(11) NOT NULL AUTO_INCREMENT, + `npc_resp_npc` int(11) NOT NULL DEFAULT '0', + `npc_resp_type` int(11) NOT NULL DEFAULT '0', + `npc_resp_trig` int(11) NOT NULL DEFAULT '0', + `npc_resp_data` varchar(11) NOT NULL DEFAULT '0', + `npc_resp_logic` varchar(11) NOT NULL DEFAULT '0', + `npc_resp_enabled` tinyint(1) NOT NULL DEFAULT '1', + PRIMARY KEY (`npc_resp_id`) +) ENGINE=InnoDB DEFAULT CHARSET=latin1 COMMENT='NPCs - Action Responses'; + +-- Dumping data for table gtac_main.npc_resp: ~0 rows (approximately) +/*!40000 ALTER TABLE `npc_resp` DISABLE KEYS */; +/*!40000 ALTER TABLE `npc_resp` ENABLE KEYS */; + +-- Dumping structure for table gtac_main.npc_trig +CREATE TABLE IF NOT EXISTS `npc_trig` ( + `npc_trig_id` int(11) NOT NULL AUTO_INCREMENT, + `npc_trig_npc` int(11) NOT NULL DEFAULT '0', + `npc_trig_type` int(11) NOT NULL DEFAULT '0', + `npc_trig_enabled` tinyint(1) NOT NULL DEFAULT '1', + PRIMARY KEY (`npc_trig_id`) +) ENGINE=InnoDB DEFAULT CHARSET=latin1 COMMENT='NPCs - Action Triggers'; + +-- Dumping data for table gtac_main.npc_trig: ~0 rows (approximately) +/*!40000 ALTER TABLE `npc_trig` DISABLE KEYS */; +/*!40000 ALTER TABLE `npc_trig` ENABLE KEYS */; + +-- Dumping structure for table gtac_main.radio_main +CREATE TABLE IF NOT EXISTS `radio_main` ( + `radio_id` smallint(6) NOT NULL DEFAULT '0', + `radio_name` varchar(64) NOT NULL DEFAULT '', + `radio_url` text NOT NULL, + `radio_enabled` tinyint(4) NOT NULL DEFAULT '0' +) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Radio Stations'; + +-- Dumping data for table gtac_main.radio_main: ~0 rows (approximately) +/*!40000 ALTER TABLE `radio_main` DISABLE KEYS */; +/*!40000 ALTER TABLE `radio_main` ENABLE KEYS */; + +-- Dumping structure for table gtac_main.sacct_main +CREATE TABLE IF NOT EXISTS `sacct_main` ( + `sacct_id` int(11) NOT NULL AUTO_INCREMENT, + `sacct_acct` int(11) NOT NULL DEFAULT '0', + `sacct_server` int(11) NOT NULL DEFAULT '0', + `sacct_name_first` varchar(50) CHARACTER SET utf16 COLLATE utf16_unicode_ci NOT NULL DEFAULT '', + `sacct_name_last` varchar(50) CHARACTER SET utf16 COLLATE utf16_unicode_ci NOT NULL DEFAULT '', + `sacct_name_middle` varchar(50) CHARACTER SET utf16 COLLATE utf16_unicode_ci NOT NULL DEFAULT '', + `sacct_when_born` varchar(50) NOT NULL DEFAULT '', + `sacct_origin` varchar(50) NOT NULL DEFAULT '', + `sacct_job` int(11) NOT NULL DEFAULT '0', + `sacct_clan` int(11) NOT NULL DEFAULT '0', + `sacct_clan_rank` int(11) NOT NULL DEFAULT '0', + `sacct_clan_flags` int(11) NOT NULL DEFAULT '0', + `sacct_clan_title` varchar(32) NOT NULL DEFAULT '', + `sacct_clan_tag` varchar(32) NOT NULL DEFAULT '', + `sacct_last_ip` int(11) NOT NULL DEFAULT '0', + `sacct_last_uid` varchar(128) NOT NULL DEFAULT '', + `sacct_total_time` int(11) NOT NULL DEFAULT '0', + `sacct_pos_x` float NOT NULL DEFAULT '0', + `sacct_pos_y` float NOT NULL DEFAULT '0', + `sacct_pos_z` float NOT NULL DEFAULT '0', + `sacct_angle` float NOT NULL DEFAULT '0', + `sacct_cash` int(11) NOT NULL DEFAULT '0', + `sacct_bank` int(11) NOT NULL DEFAULT '0', + `sacct_skin` int(11) NOT NULL DEFAULT '0', + `sacct_health` int(11) NOT NULL DEFAULT '0', + `sacct_armour` int(11) NOT NULL DEFAULT '0', + `sacct_licenses` int(11) NOT NULL DEFAULT '0', + `sacct_last_session` int(11) NOT NULL DEFAULT '0', + `sacct_when_made` bigint(20) NOT NULL DEFAULT '0', + `sacct_when_lastlogin` bigint(20) NOT NULL DEFAULT '0', + `sacct_arrest_state` int(11) NOT NULL DEFAULT '0', + `sacct_arrest_time` int(32) NOT NULL DEFAULT '0', + `sacct_int` int(11) NOT NULL DEFAULT '0', + `sacct_vw` int(11) NOT NULL DEFAULT '0', + `sacct_needs_setup` int(11) NOT NULL DEFAULT '1', + `sacct_scale_x` float NOT NULL DEFAULT '1', + `sacct_scale_y` float NOT NULL DEFAULT '1', + `sacct_scale_z` float NOT NULL DEFAULT '1', + `sacct_walkstyle` int(11) NOT NULL DEFAULT '0', + `sacct_fightstyle` int(11) NOT NULL DEFAULT '0', + `sacct_hd_part_hair_model` int(11) NOT NULL DEFAULT '0', + `sacct_hd_part_hair_texture` int(11) NOT NULL DEFAULT '0', + `sacct_hd_part_head_model` int(11) NOT NULL DEFAULT '0', + `sacct_hd_part_head_texture` int(11) NOT NULL DEFAULT '0', + `sacct_hd_part_upper_model` int(11) NOT NULL DEFAULT '0', + `sacct_hd_part_upper_texture` int(11) NOT NULL DEFAULT '0', + `sacct_hd_part_lower_model` int(11) NOT NULL DEFAULT '0', + `sacct_hd_part_lower_texture` int(11) NOT NULL DEFAULT '0', + `sacct_hd_part_feet_model` int(11) NOT NULL DEFAULT '0', + `sacct_hd_part_feet_texture` int(11) NOT NULL DEFAULT '0', + `sacct_hd_part_hands_model` int(11) NOT NULL DEFAULT '0', + `sacct_hd_part_hands_texture` int(11) NOT NULL DEFAULT '0', + `sacct_hd_prop_hair_model` int(11) NOT NULL DEFAULT '0', + `sacct_hd_prop_hair_texture` int(11) NOT NULL DEFAULT '0', + `sacct_hd_prop_head_model` int(11) NOT NULL DEFAULT '0', + `sacct_hd_prop_head_texture` int(11) NOT NULL DEFAULT '0', + `sacct_hd_prop_eyes_model` int(11) NOT NULL DEFAULT '0', + `sacct_hd_prop_eyes_texture` int(11) NOT NULL DEFAULT '0', + `sacct_hd_prop_ears_model` int(11) NOT NULL DEFAULT '0', + `sacct_hd_prop_ears_texture` int(11) NOT NULL DEFAULT '0', + `sacct_hd_prop_mouth_model` int(11) NOT NULL DEFAULT '0', + `sacct_hd_prop_mouth_texture` int(11) NOT NULL DEFAULT '0', + `sacct_hd_prop_lefthand_model` int(11) NOT NULL DEFAULT '0', + `sacct_hd_prop_lefthand_texture` int(11) NOT NULL DEFAULT '0', + `sacct_hd_prop_righthand_model` int(11) NOT NULL DEFAULT '0', + `sacct_hd_prop_righthand_texture` int(11) NOT NULL DEFAULT '0', + `sacct_hd_prop_leftwrist_model` int(11) NOT NULL DEFAULT '0', + `sacct_hd_prop_leftwrist_texture` int(11) NOT NULL DEFAULT '0', + `sacct_hd_prop_rightwrist_model` int(11) NOT NULL DEFAULT '0', + `sacct_hd_prop_rightwrist_texture` int(11) NOT NULL DEFAULT '0', + `sacct_hd_prop_hip_model` int(11) NOT NULL DEFAULT '0', + `sacct_hd_prop_hip_texture` int(11) NOT NULL DEFAULT '0', + `sacct_hd_prop_leftfoot_model` int(11) NOT NULL DEFAULT '0', + `sacct_hd_prop_leftfoot_texture` int(11) NOT NULL DEFAULT '0', + `sacct_hd_prop_rightfoot_model` int(11) NOT NULL DEFAULT '0', + `sacct_hd_prop_rightfoot_texture` int(11) NOT NULL DEFAULT '0', + `sacct_voice` int(11) NOT NULL DEFAULT '0', + PRIMARY KEY (`sacct_id`) +) ENGINE=InnoDB AUTO_INCREMENT=20 DEFAULT CHARSET=latin1 COMMENT='Sub Accounts (Characters)'; + +-- Dumping data for table gtac_main.sacct_main: ~16 rows (approximately) +/*!40000 ALTER TABLE `sacct_main` DISABLE KEYS */; +INSERT INTO `sacct_main` (`sacct_id`, `sacct_acct`, `sacct_server`, `sacct_name_first`, `sacct_name_last`, `sacct_name_middle`, `sacct_when_born`, `sacct_origin`, `sacct_job`, `sacct_clan`, `sacct_clan_rank`, `sacct_clan_flags`, `sacct_clan_title`, `sacct_clan_tag`, `sacct_last_ip`, `sacct_last_uid`, `sacct_total_time`, `sacct_pos_x`, `sacct_pos_y`, `sacct_pos_z`, `sacct_angle`, `sacct_cash`, `sacct_bank`, `sacct_skin`, `sacct_health`, `sacct_armour`, `sacct_licenses`, `sacct_last_session`, `sacct_when_made`, `sacct_when_lastlogin`, `sacct_arrest_state`, `sacct_arrest_time`, `sacct_int`, `sacct_vw`, `sacct_needs_setup`, `sacct_scale_x`, `sacct_scale_y`, `sacct_scale_z`, `sacct_walkstyle`, `sacct_fightstyle`, `sacct_hd_part_hair_model`, `sacct_hd_part_hair_texture`, `sacct_hd_part_head_model`, `sacct_hd_part_head_texture`, `sacct_hd_part_upper_model`, `sacct_hd_part_upper_texture`, `sacct_hd_part_lower_model`, `sacct_hd_part_lower_texture`, `sacct_hd_part_feet_model`, `sacct_hd_part_feet_texture`, `sacct_hd_part_hands_model`, `sacct_hd_part_hands_texture`, `sacct_hd_prop_hair_model`, `sacct_hd_prop_hair_texture`, `sacct_hd_prop_head_model`, `sacct_hd_prop_head_texture`, `sacct_hd_prop_eyes_model`, `sacct_hd_prop_eyes_texture`, `sacct_hd_prop_ears_model`, `sacct_hd_prop_ears_texture`, `sacct_hd_prop_mouth_model`, `sacct_hd_prop_mouth_texture`, `sacct_hd_prop_lefthand_model`, `sacct_hd_prop_lefthand_texture`, `sacct_hd_prop_righthand_model`, `sacct_hd_prop_righthand_texture`, `sacct_hd_prop_leftwrist_model`, `sacct_hd_prop_leftwrist_texture`, `sacct_hd_prop_rightwrist_model`, `sacct_hd_prop_rightwrist_texture`, `sacct_hd_prop_hip_model`, `sacct_hd_prop_hip_texture`, `sacct_hd_prop_leftfoot_model`, `sacct_hd_prop_leftfoot_texture`, `sacct_hd_prop_rightfoot_model`, `sacct_hd_prop_rightfoot_texture`, `sacct_voice`) VALUES + (1, 1, 1, 'Ryan', 'Stokes', '', '3/6/1990', 'San Fierro', 1, 0, 0, 0, '0', '', 0, '', 0, 869.48, -305.85, 8.31724, 1.59, 0, 0, 109, 100, 0, 0, 0, 1610246083, 1615208841279, 0, 0, 0, 0, 0, 1.5, 1.5, 1.5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `sacct_main` (`sacct_id`, `sacct_acct`, `sacct_server`, `sacct_name_first`, `sacct_name_last`, `sacct_name_middle`, `sacct_when_born`, `sacct_origin`, `sacct_job`, `sacct_clan`, `sacct_clan_rank`, `sacct_clan_flags`, `sacct_clan_title`, `sacct_clan_tag`, `sacct_last_ip`, `sacct_last_uid`, `sacct_total_time`, `sacct_pos_x`, `sacct_pos_y`, `sacct_pos_z`, `sacct_angle`, `sacct_cash`, `sacct_bank`, `sacct_skin`, `sacct_health`, `sacct_armour`, `sacct_licenses`, `sacct_last_session`, `sacct_when_made`, `sacct_when_lastlogin`, `sacct_arrest_state`, `sacct_arrest_time`, `sacct_int`, `sacct_vw`, `sacct_needs_setup`, `sacct_scale_x`, `sacct_scale_y`, `sacct_scale_z`, `sacct_walkstyle`, `sacct_fightstyle`, `sacct_hd_part_hair_model`, `sacct_hd_part_hair_texture`, `sacct_hd_part_head_model`, `sacct_hd_part_head_texture`, `sacct_hd_part_upper_model`, `sacct_hd_part_upper_texture`, `sacct_hd_part_lower_model`, `sacct_hd_part_lower_texture`, `sacct_hd_part_feet_model`, `sacct_hd_part_feet_texture`, `sacct_hd_part_hands_model`, `sacct_hd_part_hands_texture`, `sacct_hd_prop_hair_model`, `sacct_hd_prop_hair_texture`, `sacct_hd_prop_head_model`, `sacct_hd_prop_head_texture`, `sacct_hd_prop_eyes_model`, `sacct_hd_prop_eyes_texture`, `sacct_hd_prop_ears_model`, `sacct_hd_prop_ears_texture`, `sacct_hd_prop_mouth_model`, `sacct_hd_prop_mouth_texture`, `sacct_hd_prop_lefthand_model`, `sacct_hd_prop_lefthand_texture`, `sacct_hd_prop_righthand_model`, `sacct_hd_prop_righthand_texture`, `sacct_hd_prop_leftwrist_model`, `sacct_hd_prop_leftwrist_texture`, `sacct_hd_prop_rightwrist_model`, `sacct_hd_prop_rightwrist_texture`, `sacct_hd_prop_hip_model`, `sacct_hd_prop_hip_texture`, `sacct_hd_prop_leftfoot_model`, `sacct_hd_prop_leftfoot_texture`, `sacct_hd_prop_rightfoot_model`, `sacct_hd_prop_rightfoot_texture`, `sacct_voice`) VALUES + (2, 2, 1, 'Maxle', 'Face', '', '6/7/2011', 'Las Venturas', 0, 0, 0, 0, '', '', 0, '', 0, 280.516, -1057.41, 26.1682, 0.0775859, 1000, 0, 33, 100, 0, 0, 0, 1610246162, 0, 0, 0, 0, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `sacct_main` (`sacct_id`, `sacct_acct`, `sacct_server`, `sacct_name_first`, `sacct_name_last`, `sacct_name_middle`, `sacct_when_born`, `sacct_origin`, `sacct_job`, `sacct_clan`, `sacct_clan_rank`, `sacct_clan_flags`, `sacct_clan_title`, `sacct_clan_tag`, `sacct_last_ip`, `sacct_last_uid`, `sacct_total_time`, `sacct_pos_x`, `sacct_pos_y`, `sacct_pos_z`, `sacct_angle`, `sacct_cash`, `sacct_bank`, `sacct_skin`, `sacct_health`, `sacct_armour`, `sacct_licenses`, `sacct_last_session`, `sacct_when_made`, `sacct_when_lastlogin`, `sacct_arrest_state`, `sacct_arrest_time`, `sacct_int`, `sacct_vw`, `sacct_needs_setup`, `sacct_scale_x`, `sacct_scale_y`, `sacct_scale_z`, `sacct_walkstyle`, `sacct_fightstyle`, `sacct_hd_part_hair_model`, `sacct_hd_part_hair_texture`, `sacct_hd_part_head_model`, `sacct_hd_part_head_texture`, `sacct_hd_part_upper_model`, `sacct_hd_part_upper_texture`, `sacct_hd_part_lower_model`, `sacct_hd_part_lower_texture`, `sacct_hd_part_feet_model`, `sacct_hd_part_feet_texture`, `sacct_hd_part_hands_model`, `sacct_hd_part_hands_texture`, `sacct_hd_prop_hair_model`, `sacct_hd_prop_hair_texture`, `sacct_hd_prop_head_model`, `sacct_hd_prop_head_texture`, `sacct_hd_prop_eyes_model`, `sacct_hd_prop_eyes_texture`, `sacct_hd_prop_ears_model`, `sacct_hd_prop_ears_texture`, `sacct_hd_prop_mouth_model`, `sacct_hd_prop_mouth_texture`, `sacct_hd_prop_lefthand_model`, `sacct_hd_prop_lefthand_texture`, `sacct_hd_prop_righthand_model`, `sacct_hd_prop_righthand_texture`, `sacct_hd_prop_leftwrist_model`, `sacct_hd_prop_leftwrist_texture`, `sacct_hd_prop_rightwrist_model`, `sacct_hd_prop_rightwrist_texture`, `sacct_hd_prop_hip_model`, `sacct_hd_prop_hip_texture`, `sacct_hd_prop_leftfoot_model`, `sacct_hd_prop_leftfoot_texture`, `sacct_hd_prop_rightfoot_model`, `sacct_hd_prop_rightfoot_texture`, `sacct_voice`) VALUES + (3, 3, 1, 'Peter', 'Berett', '', '20/1/1992', 'San Andreas', 0, 0, 0, 0, '', '', 0, '', 0, 1312.31, -1016.42, 14.4717, 2.5633, 0, 0, 10, 100, 0, 0, 0, 1610247697, 0, 0, 0, 0, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `sacct_main` (`sacct_id`, `sacct_acct`, `sacct_server`, `sacct_name_first`, `sacct_name_last`, `sacct_name_middle`, `sacct_when_born`, `sacct_origin`, `sacct_job`, `sacct_clan`, `sacct_clan_rank`, `sacct_clan_flags`, `sacct_clan_title`, `sacct_clan_tag`, `sacct_last_ip`, `sacct_last_uid`, `sacct_total_time`, `sacct_pos_x`, `sacct_pos_y`, `sacct_pos_z`, `sacct_angle`, `sacct_cash`, `sacct_bank`, `sacct_skin`, `sacct_health`, `sacct_armour`, `sacct_licenses`, `sacct_last_session`, `sacct_when_made`, `sacct_when_lastlogin`, `sacct_arrest_state`, `sacct_arrest_time`, `sacct_int`, `sacct_vw`, `sacct_needs_setup`, `sacct_scale_x`, `sacct_scale_y`, `sacct_scale_z`, `sacct_walkstyle`, `sacct_fightstyle`, `sacct_hd_part_hair_model`, `sacct_hd_part_hair_texture`, `sacct_hd_part_head_model`, `sacct_hd_part_head_texture`, `sacct_hd_part_upper_model`, `sacct_hd_part_upper_texture`, `sacct_hd_part_lower_model`, `sacct_hd_part_lower_texture`, `sacct_hd_part_feet_model`, `sacct_hd_part_feet_texture`, `sacct_hd_part_hands_model`, `sacct_hd_part_hands_texture`, `sacct_hd_prop_hair_model`, `sacct_hd_prop_hair_texture`, `sacct_hd_prop_head_model`, `sacct_hd_prop_head_texture`, `sacct_hd_prop_eyes_model`, `sacct_hd_prop_eyes_texture`, `sacct_hd_prop_ears_model`, `sacct_hd_prop_ears_texture`, `sacct_hd_prop_mouth_model`, `sacct_hd_prop_mouth_texture`, `sacct_hd_prop_lefthand_model`, `sacct_hd_prop_lefthand_texture`, `sacct_hd_prop_righthand_model`, `sacct_hd_prop_righthand_texture`, `sacct_hd_prop_leftwrist_model`, `sacct_hd_prop_leftwrist_texture`, `sacct_hd_prop_rightwrist_model`, `sacct_hd_prop_rightwrist_texture`, `sacct_hd_prop_hip_model`, `sacct_hd_prop_hip_texture`, `sacct_hd_prop_leftfoot_model`, `sacct_hd_prop_leftfoot_texture`, `sacct_hd_prop_rightfoot_model`, `sacct_hd_prop_rightfoot_texture`, `sacct_voice`) VALUES + (4, 4, 1, 'Ryan', 'Nashton', '', '30/8/1990', 'Bone County', 0, 0, 0, 0, '', '', 0, '', 0, 1140.98, -677.149, 14.9727, 0.224663, 1000, 0, 109, 100, 0, 0, 0, 1610251928, 0, 0, 0, 0, 0, 0, 1.5, 1.5, 1.5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `sacct_main` (`sacct_id`, `sacct_acct`, `sacct_server`, `sacct_name_first`, `sacct_name_last`, `sacct_name_middle`, `sacct_when_born`, `sacct_origin`, `sacct_job`, `sacct_clan`, `sacct_clan_rank`, `sacct_clan_flags`, `sacct_clan_title`, `sacct_clan_tag`, `sacct_last_ip`, `sacct_last_uid`, `sacct_total_time`, `sacct_pos_x`, `sacct_pos_y`, `sacct_pos_z`, `sacct_angle`, `sacct_cash`, `sacct_bank`, `sacct_skin`, `sacct_health`, `sacct_armour`, `sacct_licenses`, `sacct_last_session`, `sacct_when_made`, `sacct_when_lastlogin`, `sacct_arrest_state`, `sacct_arrest_time`, `sacct_int`, `sacct_vw`, `sacct_needs_setup`, `sacct_scale_x`, `sacct_scale_y`, `sacct_scale_z`, `sacct_walkstyle`, `sacct_fightstyle`, `sacct_hd_part_hair_model`, `sacct_hd_part_hair_texture`, `sacct_hd_part_head_model`, `sacct_hd_part_head_texture`, `sacct_hd_part_upper_model`, `sacct_hd_part_upper_texture`, `sacct_hd_part_lower_model`, `sacct_hd_part_lower_texture`, `sacct_hd_part_feet_model`, `sacct_hd_part_feet_texture`, `sacct_hd_part_hands_model`, `sacct_hd_part_hands_texture`, `sacct_hd_prop_hair_model`, `sacct_hd_prop_hair_texture`, `sacct_hd_prop_head_model`, `sacct_hd_prop_head_texture`, `sacct_hd_prop_eyes_model`, `sacct_hd_prop_eyes_texture`, `sacct_hd_prop_ears_model`, `sacct_hd_prop_ears_texture`, `sacct_hd_prop_mouth_model`, `sacct_hd_prop_mouth_texture`, `sacct_hd_prop_lefthand_model`, `sacct_hd_prop_lefthand_texture`, `sacct_hd_prop_righthand_model`, `sacct_hd_prop_righthand_texture`, `sacct_hd_prop_leftwrist_model`, `sacct_hd_prop_leftwrist_texture`, `sacct_hd_prop_rightwrist_model`, `sacct_hd_prop_rightwrist_texture`, `sacct_hd_prop_hip_model`, `sacct_hd_prop_hip_texture`, `sacct_hd_prop_leftfoot_model`, `sacct_hd_prop_leftfoot_texture`, `sacct_hd_prop_rightfoot_model`, `sacct_hd_prop_rightfoot_texture`, `sacct_voice`) VALUES + (5, 1, 4, 'Tom', 'Willard', '', '01/01/1901', 'Liberty City', 4, 0, 0, 0, '0', '', 0, '', 0, 988.542, -1367.43, 13.556, -1.49803, 1000, 0, 26, 100, 0, 0, 0, 1610552381, 0, 0, 0, 0, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `sacct_main` (`sacct_id`, `sacct_acct`, `sacct_server`, `sacct_name_first`, `sacct_name_last`, `sacct_name_middle`, `sacct_when_born`, `sacct_origin`, `sacct_job`, `sacct_clan`, `sacct_clan_rank`, `sacct_clan_flags`, `sacct_clan_title`, `sacct_clan_tag`, `sacct_last_ip`, `sacct_last_uid`, `sacct_total_time`, `sacct_pos_x`, `sacct_pos_y`, `sacct_pos_z`, `sacct_angle`, `sacct_cash`, `sacct_bank`, `sacct_skin`, `sacct_health`, `sacct_armour`, `sacct_licenses`, `sacct_last_session`, `sacct_when_made`, `sacct_when_lastlogin`, `sacct_arrest_state`, `sacct_arrest_time`, `sacct_int`, `sacct_vw`, `sacct_needs_setup`, `sacct_scale_x`, `sacct_scale_y`, `sacct_scale_z`, `sacct_walkstyle`, `sacct_fightstyle`, `sacct_hd_part_hair_model`, `sacct_hd_part_hair_texture`, `sacct_hd_part_head_model`, `sacct_hd_part_head_texture`, `sacct_hd_part_upper_model`, `sacct_hd_part_upper_texture`, `sacct_hd_part_lower_model`, `sacct_hd_part_lower_texture`, `sacct_hd_part_feet_model`, `sacct_hd_part_feet_texture`, `sacct_hd_part_hands_model`, `sacct_hd_part_hands_texture`, `sacct_hd_prop_hair_model`, `sacct_hd_prop_hair_texture`, `sacct_hd_prop_head_model`, `sacct_hd_prop_head_texture`, `sacct_hd_prop_eyes_model`, `sacct_hd_prop_eyes_texture`, `sacct_hd_prop_ears_model`, `sacct_hd_prop_ears_texture`, `sacct_hd_prop_mouth_model`, `sacct_hd_prop_mouth_texture`, `sacct_hd_prop_lefthand_model`, `sacct_hd_prop_lefthand_texture`, `sacct_hd_prop_righthand_model`, `sacct_hd_prop_righthand_texture`, `sacct_hd_prop_leftwrist_model`, `sacct_hd_prop_leftwrist_texture`, `sacct_hd_prop_rightwrist_model`, `sacct_hd_prop_rightwrist_texture`, `sacct_hd_prop_hip_model`, `sacct_hd_prop_hip_texture`, `sacct_hd_prop_leftfoot_model`, `sacct_hd_prop_leftfoot_texture`, `sacct_hd_prop_rightfoot_model`, `sacct_hd_prop_rightfoot_texture`, `sacct_voice`) VALUES + (7, 1, 2, 'Ryan', 'Nashton', '', '7/9/1989', 'Los Santos', 0, 0, 0, 0, '', '', 0, '', 0, -708.918, 179.315, 11.0712, 2.94625, 1000, 0, 94, 100, 0, 0, 0, 1610682051, 0, 0, 0, 0, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `sacct_main` (`sacct_id`, `sacct_acct`, `sacct_server`, `sacct_name_first`, `sacct_name_last`, `sacct_name_middle`, `sacct_when_born`, `sacct_origin`, `sacct_job`, `sacct_clan`, `sacct_clan_rank`, `sacct_clan_flags`, `sacct_clan_title`, `sacct_clan_tag`, `sacct_last_ip`, `sacct_last_uid`, `sacct_total_time`, `sacct_pos_x`, `sacct_pos_y`, `sacct_pos_z`, `sacct_angle`, `sacct_cash`, `sacct_bank`, `sacct_skin`, `sacct_health`, `sacct_armour`, `sacct_licenses`, `sacct_last_session`, `sacct_when_made`, `sacct_when_lastlogin`, `sacct_arrest_state`, `sacct_arrest_time`, `sacct_int`, `sacct_vw`, `sacct_needs_setup`, `sacct_scale_x`, `sacct_scale_y`, `sacct_scale_z`, `sacct_walkstyle`, `sacct_fightstyle`, `sacct_hd_part_hair_model`, `sacct_hd_part_hair_texture`, `sacct_hd_part_head_model`, `sacct_hd_part_head_texture`, `sacct_hd_part_upper_model`, `sacct_hd_part_upper_texture`, `sacct_hd_part_lower_model`, `sacct_hd_part_lower_texture`, `sacct_hd_part_feet_model`, `sacct_hd_part_feet_texture`, `sacct_hd_part_hands_model`, `sacct_hd_part_hands_texture`, `sacct_hd_prop_hair_model`, `sacct_hd_prop_hair_texture`, `sacct_hd_prop_head_model`, `sacct_hd_prop_head_texture`, `sacct_hd_prop_eyes_model`, `sacct_hd_prop_eyes_texture`, `sacct_hd_prop_ears_model`, `sacct_hd_prop_ears_texture`, `sacct_hd_prop_mouth_model`, `sacct_hd_prop_mouth_texture`, `sacct_hd_prop_lefthand_model`, `sacct_hd_prop_lefthand_texture`, `sacct_hd_prop_righthand_model`, `sacct_hd_prop_righthand_texture`, `sacct_hd_prop_leftwrist_model`, `sacct_hd_prop_leftwrist_texture`, `sacct_hd_prop_rightwrist_model`, `sacct_hd_prop_rightwrist_texture`, `sacct_hd_prop_hip_model`, `sacct_hd_prop_hip_texture`, `sacct_hd_prop_leftfoot_model`, `sacct_hd_prop_leftfoot_texture`, `sacct_hd_prop_rightfoot_model`, `sacct_hd_prop_rightfoot_texture`, `sacct_voice`) VALUES + (8, 1, 4, 'Takeshi', 'Mikio', '', '01/01/1901', 'Liberty City', 0, 0, 0, 0, '0', '', 0, '', 0, 1561.49, -2309.5, 13.5489, 2.20509, 1000, 0, 26, 100, 0, 0, 0, 1611088103, 0, 0, 0, 0, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `sacct_main` (`sacct_id`, `sacct_acct`, `sacct_server`, `sacct_name_first`, `sacct_name_last`, `sacct_name_middle`, `sacct_when_born`, `sacct_origin`, `sacct_job`, `sacct_clan`, `sacct_clan_rank`, `sacct_clan_flags`, `sacct_clan_title`, `sacct_clan_tag`, `sacct_last_ip`, `sacct_last_uid`, `sacct_total_time`, `sacct_pos_x`, `sacct_pos_y`, `sacct_pos_z`, `sacct_angle`, `sacct_cash`, `sacct_bank`, `sacct_skin`, `sacct_health`, `sacct_armour`, `sacct_licenses`, `sacct_last_session`, `sacct_when_made`, `sacct_when_lastlogin`, `sacct_arrest_state`, `sacct_arrest_time`, `sacct_int`, `sacct_vw`, `sacct_needs_setup`, `sacct_scale_x`, `sacct_scale_y`, `sacct_scale_z`, `sacct_walkstyle`, `sacct_fightstyle`, `sacct_hd_part_hair_model`, `sacct_hd_part_hair_texture`, `sacct_hd_part_head_model`, `sacct_hd_part_head_texture`, `sacct_hd_part_upper_model`, `sacct_hd_part_upper_texture`, `sacct_hd_part_lower_model`, `sacct_hd_part_lower_texture`, `sacct_hd_part_feet_model`, `sacct_hd_part_feet_texture`, `sacct_hd_part_hands_model`, `sacct_hd_part_hands_texture`, `sacct_hd_prop_hair_model`, `sacct_hd_prop_hair_texture`, `sacct_hd_prop_head_model`, `sacct_hd_prop_head_texture`, `sacct_hd_prop_eyes_model`, `sacct_hd_prop_eyes_texture`, `sacct_hd_prop_ears_model`, `sacct_hd_prop_ears_texture`, `sacct_hd_prop_mouth_model`, `sacct_hd_prop_mouth_texture`, `sacct_hd_prop_lefthand_model`, `sacct_hd_prop_lefthand_texture`, `sacct_hd_prop_righthand_model`, `sacct_hd_prop_righthand_texture`, `sacct_hd_prop_leftwrist_model`, `sacct_hd_prop_leftwrist_texture`, `sacct_hd_prop_rightwrist_model`, `sacct_hd_prop_rightwrist_texture`, `sacct_hd_prop_hip_model`, `sacct_hd_prop_hip_texture`, `sacct_hd_prop_leftfoot_model`, `sacct_hd_prop_leftfoot_texture`, `sacct_hd_prop_rightfoot_model`, `sacct_hd_prop_rightfoot_texture`, `sacct_voice`) VALUES + (9, 1, 2, 'Toni', 'Salieri', '', '26/7/1990', 'Liberty City', 0, 0, 0, 0, '', '', 0, '', 0, -708.918, 179.315, 11.0712, 2.94625, 1000, 0, 115, 100, 0, 0, 0, 1611526552, 0, 0, 0, 0, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `sacct_main` (`sacct_id`, `sacct_acct`, `sacct_server`, `sacct_name_first`, `sacct_name_last`, `sacct_name_middle`, `sacct_when_born`, `sacct_origin`, `sacct_job`, `sacct_clan`, `sacct_clan_rank`, `sacct_clan_flags`, `sacct_clan_title`, `sacct_clan_tag`, `sacct_last_ip`, `sacct_last_uid`, `sacct_total_time`, `sacct_pos_x`, `sacct_pos_y`, `sacct_pos_z`, `sacct_angle`, `sacct_cash`, `sacct_bank`, `sacct_skin`, `sacct_health`, `sacct_armour`, `sacct_licenses`, `sacct_last_session`, `sacct_when_made`, `sacct_when_lastlogin`, `sacct_arrest_state`, `sacct_arrest_time`, `sacct_int`, `sacct_vw`, `sacct_needs_setup`, `sacct_scale_x`, `sacct_scale_y`, `sacct_scale_z`, `sacct_walkstyle`, `sacct_fightstyle`, `sacct_hd_part_hair_model`, `sacct_hd_part_hair_texture`, `sacct_hd_part_head_model`, `sacct_hd_part_head_texture`, `sacct_hd_part_upper_model`, `sacct_hd_part_upper_texture`, `sacct_hd_part_lower_model`, `sacct_hd_part_lower_texture`, `sacct_hd_part_feet_model`, `sacct_hd_part_feet_texture`, `sacct_hd_part_hands_model`, `sacct_hd_part_hands_texture`, `sacct_hd_prop_hair_model`, `sacct_hd_prop_hair_texture`, `sacct_hd_prop_head_model`, `sacct_hd_prop_head_texture`, `sacct_hd_prop_eyes_model`, `sacct_hd_prop_eyes_texture`, `sacct_hd_prop_ears_model`, `sacct_hd_prop_ears_texture`, `sacct_hd_prop_mouth_model`, `sacct_hd_prop_mouth_texture`, `sacct_hd_prop_lefthand_model`, `sacct_hd_prop_lefthand_texture`, `sacct_hd_prop_righthand_model`, `sacct_hd_prop_righthand_texture`, `sacct_hd_prop_leftwrist_model`, `sacct_hd_prop_leftwrist_texture`, `sacct_hd_prop_rightwrist_model`, `sacct_hd_prop_rightwrist_texture`, `sacct_hd_prop_hip_model`, `sacct_hd_prop_hip_texture`, `sacct_hd_prop_leftfoot_model`, `sacct_hd_prop_leftfoot_texture`, `sacct_hd_prop_rightfoot_model`, `sacct_hd_prop_rightfoot_texture`, `sacct_voice`) VALUES + (11, 9, 1, 'Jack', 'Powell', '', '1/1/2000', 'Liberty City', 0, 0, 0, 0, '', '', 0, '', 0, 1038.4, -666.7, 14.97, 1, 1000, 0, 12, 100, 0, 0, 0, 1613340636, 0, 0, 0, 0, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `sacct_main` (`sacct_id`, `sacct_acct`, `sacct_server`, `sacct_name_first`, `sacct_name_last`, `sacct_name_middle`, `sacct_when_born`, `sacct_origin`, `sacct_job`, `sacct_clan`, `sacct_clan_rank`, `sacct_clan_flags`, `sacct_clan_title`, `sacct_clan_tag`, `sacct_last_ip`, `sacct_last_uid`, `sacct_total_time`, `sacct_pos_x`, `sacct_pos_y`, `sacct_pos_z`, `sacct_angle`, `sacct_cash`, `sacct_bank`, `sacct_skin`, `sacct_health`, `sacct_armour`, `sacct_licenses`, `sacct_last_session`, `sacct_when_made`, `sacct_when_lastlogin`, `sacct_arrest_state`, `sacct_arrest_time`, `sacct_int`, `sacct_vw`, `sacct_needs_setup`, `sacct_scale_x`, `sacct_scale_y`, `sacct_scale_z`, `sacct_walkstyle`, `sacct_fightstyle`, `sacct_hd_part_hair_model`, `sacct_hd_part_hair_texture`, `sacct_hd_part_head_model`, `sacct_hd_part_head_texture`, `sacct_hd_part_upper_model`, `sacct_hd_part_upper_texture`, `sacct_hd_part_lower_model`, `sacct_hd_part_lower_texture`, `sacct_hd_part_feet_model`, `sacct_hd_part_feet_texture`, `sacct_hd_part_hands_model`, `sacct_hd_part_hands_texture`, `sacct_hd_prop_hair_model`, `sacct_hd_prop_hair_texture`, `sacct_hd_prop_head_model`, `sacct_hd_prop_head_texture`, `sacct_hd_prop_eyes_model`, `sacct_hd_prop_eyes_texture`, `sacct_hd_prop_ears_model`, `sacct_hd_prop_ears_texture`, `sacct_hd_prop_mouth_model`, `sacct_hd_prop_mouth_texture`, `sacct_hd_prop_lefthand_model`, `sacct_hd_prop_lefthand_texture`, `sacct_hd_prop_righthand_model`, `sacct_hd_prop_righthand_texture`, `sacct_hd_prop_leftwrist_model`, `sacct_hd_prop_leftwrist_texture`, `sacct_hd_prop_rightwrist_model`, `sacct_hd_prop_rightwrist_texture`, `sacct_hd_prop_hip_model`, `sacct_hd_prop_hip_texture`, `sacct_hd_prop_leftfoot_model`, `sacct_hd_prop_leftfoot_texture`, `sacct_hd_prop_rightfoot_model`, `sacct_hd_prop_rightfoot_texture`, `sacct_voice`) VALUES + (12, 9, 4, 'Jack', 'Powell', '', '01/01/1901', 'Liberty City', 0, 0, 0, 0, '', '', 0, '', 0, 1632.49, -2331.96, 13.547, -0.005, 1000, 0, 26, 100, 0, 0, 0, 1613341663, 0, 0, 0, 0, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `sacct_main` (`sacct_id`, `sacct_acct`, `sacct_server`, `sacct_name_first`, `sacct_name_last`, `sacct_name_middle`, `sacct_when_born`, `sacct_origin`, `sacct_job`, `sacct_clan`, `sacct_clan_rank`, `sacct_clan_flags`, `sacct_clan_title`, `sacct_clan_tag`, `sacct_last_ip`, `sacct_last_uid`, `sacct_total_time`, `sacct_pos_x`, `sacct_pos_y`, `sacct_pos_z`, `sacct_angle`, `sacct_cash`, `sacct_bank`, `sacct_skin`, `sacct_health`, `sacct_armour`, `sacct_licenses`, `sacct_last_session`, `sacct_when_made`, `sacct_when_lastlogin`, `sacct_arrest_state`, `sacct_arrest_time`, `sacct_int`, `sacct_vw`, `sacct_needs_setup`, `sacct_scale_x`, `sacct_scale_y`, `sacct_scale_z`, `sacct_walkstyle`, `sacct_fightstyle`, `sacct_hd_part_hair_model`, `sacct_hd_part_hair_texture`, `sacct_hd_part_head_model`, `sacct_hd_part_head_texture`, `sacct_hd_part_upper_model`, `sacct_hd_part_upper_texture`, `sacct_hd_part_lower_model`, `sacct_hd_part_lower_texture`, `sacct_hd_part_feet_model`, `sacct_hd_part_feet_texture`, `sacct_hd_part_hands_model`, `sacct_hd_part_hands_texture`, `sacct_hd_prop_hair_model`, `sacct_hd_prop_hair_texture`, `sacct_hd_prop_head_model`, `sacct_hd_prop_head_texture`, `sacct_hd_prop_eyes_model`, `sacct_hd_prop_eyes_texture`, `sacct_hd_prop_ears_model`, `sacct_hd_prop_ears_texture`, `sacct_hd_prop_mouth_model`, `sacct_hd_prop_mouth_texture`, `sacct_hd_prop_lefthand_model`, `sacct_hd_prop_lefthand_texture`, `sacct_hd_prop_righthand_model`, `sacct_hd_prop_righthand_texture`, `sacct_hd_prop_leftwrist_model`, `sacct_hd_prop_leftwrist_texture`, `sacct_hd_prop_rightwrist_model`, `sacct_hd_prop_rightwrist_texture`, `sacct_hd_prop_hip_model`, `sacct_hd_prop_hip_texture`, `sacct_hd_prop_leftfoot_model`, `sacct_hd_prop_leftfoot_texture`, `sacct_hd_prop_rightfoot_model`, `sacct_hd_prop_rightfoot_texture`, `sacct_voice`) VALUES + (13, 2, 4, 'Maxle', 'Face', '', '01/01/1901', 'Liberty City', 0, 0, 0, 0, '', '', 0, '', 0, 1632.49, -2331.96, 13.547, -0.005, 1000, 0, 26, 100, 0, 0, 0, 1613341696, 0, 0, 0, 0, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `sacct_main` (`sacct_id`, `sacct_acct`, `sacct_server`, `sacct_name_first`, `sacct_name_last`, `sacct_name_middle`, `sacct_when_born`, `sacct_origin`, `sacct_job`, `sacct_clan`, `sacct_clan_rank`, `sacct_clan_flags`, `sacct_clan_title`, `sacct_clan_tag`, `sacct_last_ip`, `sacct_last_uid`, `sacct_total_time`, `sacct_pos_x`, `sacct_pos_y`, `sacct_pos_z`, `sacct_angle`, `sacct_cash`, `sacct_bank`, `sacct_skin`, `sacct_health`, `sacct_armour`, `sacct_licenses`, `sacct_last_session`, `sacct_when_made`, `sacct_when_lastlogin`, `sacct_arrest_state`, `sacct_arrest_time`, `sacct_int`, `sacct_vw`, `sacct_needs_setup`, `sacct_scale_x`, `sacct_scale_y`, `sacct_scale_z`, `sacct_walkstyle`, `sacct_fightstyle`, `sacct_hd_part_hair_model`, `sacct_hd_part_hair_texture`, `sacct_hd_part_head_model`, `sacct_hd_part_head_texture`, `sacct_hd_part_upper_model`, `sacct_hd_part_upper_texture`, `sacct_hd_part_lower_model`, `sacct_hd_part_lower_texture`, `sacct_hd_part_feet_model`, `sacct_hd_part_feet_texture`, `sacct_hd_part_hands_model`, `sacct_hd_part_hands_texture`, `sacct_hd_prop_hair_model`, `sacct_hd_prop_hair_texture`, `sacct_hd_prop_head_model`, `sacct_hd_prop_head_texture`, `sacct_hd_prop_eyes_model`, `sacct_hd_prop_eyes_texture`, `sacct_hd_prop_ears_model`, `sacct_hd_prop_ears_texture`, `sacct_hd_prop_mouth_model`, `sacct_hd_prop_mouth_texture`, `sacct_hd_prop_lefthand_model`, `sacct_hd_prop_lefthand_texture`, `sacct_hd_prop_righthand_model`, `sacct_hd_prop_righthand_texture`, `sacct_hd_prop_leftwrist_model`, `sacct_hd_prop_leftwrist_texture`, `sacct_hd_prop_rightwrist_model`, `sacct_hd_prop_rightwrist_texture`, `sacct_hd_prop_hip_model`, `sacct_hd_prop_hip_texture`, `sacct_hd_prop_leftfoot_model`, `sacct_hd_prop_leftfoot_texture`, `sacct_hd_prop_rightfoot_model`, `sacct_hd_prop_rightfoot_texture`, `sacct_voice`) VALUES + (15, 1, 3, 'Takeshi', 'Mikio', '', '24/6/1991', 'Las Venturas', 0, 0, 0, 0, '', '', 0, '', 0, 2364.28, 387.27, 6.085, 2.434, 1000, 0, -1084007777, 100, 0, 0, 0, 1613344317, 0, 0, 0, 0, 0, 0, 1, 1, 1, 0, 0, 1, 0, 0, 1, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `sacct_main` (`sacct_id`, `sacct_acct`, `sacct_server`, `sacct_name_first`, `sacct_name_last`, `sacct_name_middle`, `sacct_when_born`, `sacct_origin`, `sacct_job`, `sacct_clan`, `sacct_clan_rank`, `sacct_clan_flags`, `sacct_clan_title`, `sacct_clan_tag`, `sacct_last_ip`, `sacct_last_uid`, `sacct_total_time`, `sacct_pos_x`, `sacct_pos_y`, `sacct_pos_z`, `sacct_angle`, `sacct_cash`, `sacct_bank`, `sacct_skin`, `sacct_health`, `sacct_armour`, `sacct_licenses`, `sacct_last_session`, `sacct_when_made`, `sacct_when_lastlogin`, `sacct_arrest_state`, `sacct_arrest_time`, `sacct_int`, `sacct_vw`, `sacct_needs_setup`, `sacct_scale_x`, `sacct_scale_y`, `sacct_scale_z`, `sacct_walkstyle`, `sacct_fightstyle`, `sacct_hd_part_hair_model`, `sacct_hd_part_hair_texture`, `sacct_hd_part_head_model`, `sacct_hd_part_head_texture`, `sacct_hd_part_upper_model`, `sacct_hd_part_upper_texture`, `sacct_hd_part_lower_model`, `sacct_hd_part_lower_texture`, `sacct_hd_part_feet_model`, `sacct_hd_part_feet_texture`, `sacct_hd_part_hands_model`, `sacct_hd_part_hands_texture`, `sacct_hd_prop_hair_model`, `sacct_hd_prop_hair_texture`, `sacct_hd_prop_head_model`, `sacct_hd_prop_head_texture`, `sacct_hd_prop_eyes_model`, `sacct_hd_prop_eyes_texture`, `sacct_hd_prop_ears_model`, `sacct_hd_prop_ears_texture`, `sacct_hd_prop_mouth_model`, `sacct_hd_prop_mouth_texture`, `sacct_hd_prop_lefthand_model`, `sacct_hd_prop_lefthand_texture`, `sacct_hd_prop_righthand_model`, `sacct_hd_prop_righthand_texture`, `sacct_hd_prop_leftwrist_model`, `sacct_hd_prop_leftwrist_texture`, `sacct_hd_prop_rightwrist_model`, `sacct_hd_prop_rightwrist_texture`, `sacct_hd_prop_hip_model`, `sacct_hd_prop_hip_texture`, `sacct_hd_prop_leftfoot_model`, `sacct_hd_prop_leftfoot_texture`, `sacct_hd_prop_rightfoot_model`, `sacct_hd_prop_rightfoot_texture`, `sacct_voice`) VALUES + (16, 2, 3, 'Maxle', 'Face', '', '4/1/2000', 'San Andreas', 0, 0, 0, 0, '', '', 0, '', 0, 2364.28, 387.27, 6.085, 2.434, 1000, 0, -999506922, 100, 0, 0, 0, 1613344854, 0, 0, 0, 0, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `sacct_main` (`sacct_id`, `sacct_acct`, `sacct_server`, `sacct_name_first`, `sacct_name_last`, `sacct_name_middle`, `sacct_when_born`, `sacct_origin`, `sacct_job`, `sacct_clan`, `sacct_clan_rank`, `sacct_clan_flags`, `sacct_clan_title`, `sacct_clan_tag`, `sacct_last_ip`, `sacct_last_uid`, `sacct_total_time`, `sacct_pos_x`, `sacct_pos_y`, `sacct_pos_z`, `sacct_angle`, `sacct_cash`, `sacct_bank`, `sacct_skin`, `sacct_health`, `sacct_armour`, `sacct_licenses`, `sacct_last_session`, `sacct_when_made`, `sacct_when_lastlogin`, `sacct_arrest_state`, `sacct_arrest_time`, `sacct_int`, `sacct_vw`, `sacct_needs_setup`, `sacct_scale_x`, `sacct_scale_y`, `sacct_scale_z`, `sacct_walkstyle`, `sacct_fightstyle`, `sacct_hd_part_hair_model`, `sacct_hd_part_hair_texture`, `sacct_hd_part_head_model`, `sacct_hd_part_head_texture`, `sacct_hd_part_upper_model`, `sacct_hd_part_upper_texture`, `sacct_hd_part_lower_model`, `sacct_hd_part_lower_texture`, `sacct_hd_part_feet_model`, `sacct_hd_part_feet_texture`, `sacct_hd_part_hands_model`, `sacct_hd_part_hands_texture`, `sacct_hd_prop_hair_model`, `sacct_hd_prop_hair_texture`, `sacct_hd_prop_head_model`, `sacct_hd_prop_head_texture`, `sacct_hd_prop_eyes_model`, `sacct_hd_prop_eyes_texture`, `sacct_hd_prop_ears_model`, `sacct_hd_prop_ears_texture`, `sacct_hd_prop_mouth_model`, `sacct_hd_prop_mouth_texture`, `sacct_hd_prop_lefthand_model`, `sacct_hd_prop_lefthand_texture`, `sacct_hd_prop_righthand_model`, `sacct_hd_prop_righthand_texture`, `sacct_hd_prop_leftwrist_model`, `sacct_hd_prop_leftwrist_texture`, `sacct_hd_prop_rightwrist_model`, `sacct_hd_prop_rightwrist_texture`, `sacct_hd_prop_hip_model`, `sacct_hd_prop_hip_texture`, `sacct_hd_prop_leftfoot_model`, `sacct_hd_prop_leftfoot_texture`, `sacct_hd_prop_rightfoot_model`, `sacct_hd_prop_rightfoot_texture`, `sacct_voice`) VALUES + (17, 2, 3, 'Maaaaaaxle', 'Faaaaaace', '', '1/1/2019', 'Vice City', 0, 0, 0, 0, '', '', 0, '', 0, 2364.28, 387.27, 6.085, 2.434, 1000, 0, -1646893330, 100, 0, 0, 0, 1613870077, 0, 0, 0, 0, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `sacct_main` (`sacct_id`, `sacct_acct`, `sacct_server`, `sacct_name_first`, `sacct_name_last`, `sacct_name_middle`, `sacct_when_born`, `sacct_origin`, `sacct_job`, `sacct_clan`, `sacct_clan_rank`, `sacct_clan_flags`, `sacct_clan_title`, `sacct_clan_tag`, `sacct_last_ip`, `sacct_last_uid`, `sacct_total_time`, `sacct_pos_x`, `sacct_pos_y`, `sacct_pos_z`, `sacct_angle`, `sacct_cash`, `sacct_bank`, `sacct_skin`, `sacct_health`, `sacct_armour`, `sacct_licenses`, `sacct_last_session`, `sacct_when_made`, `sacct_when_lastlogin`, `sacct_arrest_state`, `sacct_arrest_time`, `sacct_int`, `sacct_vw`, `sacct_needs_setup`, `sacct_scale_x`, `sacct_scale_y`, `sacct_scale_z`, `sacct_walkstyle`, `sacct_fightstyle`, `sacct_hd_part_hair_model`, `sacct_hd_part_hair_texture`, `sacct_hd_part_head_model`, `sacct_hd_part_head_texture`, `sacct_hd_part_upper_model`, `sacct_hd_part_upper_texture`, `sacct_hd_part_lower_model`, `sacct_hd_part_lower_texture`, `sacct_hd_part_feet_model`, `sacct_hd_part_feet_texture`, `sacct_hd_part_hands_model`, `sacct_hd_part_hands_texture`, `sacct_hd_prop_hair_model`, `sacct_hd_prop_hair_texture`, `sacct_hd_prop_head_model`, `sacct_hd_prop_head_texture`, `sacct_hd_prop_eyes_model`, `sacct_hd_prop_eyes_texture`, `sacct_hd_prop_ears_model`, `sacct_hd_prop_ears_texture`, `sacct_hd_prop_mouth_model`, `sacct_hd_prop_mouth_texture`, `sacct_hd_prop_lefthand_model`, `sacct_hd_prop_lefthand_texture`, `sacct_hd_prop_righthand_model`, `sacct_hd_prop_righthand_texture`, `sacct_hd_prop_leftwrist_model`, `sacct_hd_prop_leftwrist_texture`, `sacct_hd_prop_rightwrist_model`, `sacct_hd_prop_rightwrist_texture`, `sacct_hd_prop_hip_model`, `sacct_hd_prop_hip_texture`, `sacct_hd_prop_leftfoot_model`, `sacct_hd_prop_leftfoot_texture`, `sacct_hd_prop_rightfoot_model`, `sacct_hd_prop_rightfoot_texture`, `sacct_voice`) VALUES + (18, 1, 3, 'Ryan', 'Stokes', '', '1/1/2021', 'Las Venturas', 0, 0, 0, 0, '', '', 0, '', 0, 2364.28, 387.27, 6.085, 2.434, 1000, 0, -200234085, 100, 0, 0, 0, 1613870343, 0, 0, 0, 0, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `sacct_main` (`sacct_id`, `sacct_acct`, `sacct_server`, `sacct_name_first`, `sacct_name_last`, `sacct_name_middle`, `sacct_when_born`, `sacct_origin`, `sacct_job`, `sacct_clan`, `sacct_clan_rank`, `sacct_clan_flags`, `sacct_clan_title`, `sacct_clan_tag`, `sacct_last_ip`, `sacct_last_uid`, `sacct_total_time`, `sacct_pos_x`, `sacct_pos_y`, `sacct_pos_z`, `sacct_angle`, `sacct_cash`, `sacct_bank`, `sacct_skin`, `sacct_health`, `sacct_armour`, `sacct_licenses`, `sacct_last_session`, `sacct_when_made`, `sacct_when_lastlogin`, `sacct_arrest_state`, `sacct_arrest_time`, `sacct_int`, `sacct_vw`, `sacct_needs_setup`, `sacct_scale_x`, `sacct_scale_y`, `sacct_scale_z`, `sacct_walkstyle`, `sacct_fightstyle`, `sacct_hd_part_hair_model`, `sacct_hd_part_hair_texture`, `sacct_hd_part_head_model`, `sacct_hd_part_head_texture`, `sacct_hd_part_upper_model`, `sacct_hd_part_upper_texture`, `sacct_hd_part_lower_model`, `sacct_hd_part_lower_texture`, `sacct_hd_part_feet_model`, `sacct_hd_part_feet_texture`, `sacct_hd_part_hands_model`, `sacct_hd_part_hands_texture`, `sacct_hd_prop_hair_model`, `sacct_hd_prop_hair_texture`, `sacct_hd_prop_head_model`, `sacct_hd_prop_head_texture`, `sacct_hd_prop_eyes_model`, `sacct_hd_prop_eyes_texture`, `sacct_hd_prop_ears_model`, `sacct_hd_prop_ears_texture`, `sacct_hd_prop_mouth_model`, `sacct_hd_prop_mouth_texture`, `sacct_hd_prop_lefthand_model`, `sacct_hd_prop_lefthand_texture`, `sacct_hd_prop_righthand_model`, `sacct_hd_prop_righthand_texture`, `sacct_hd_prop_leftwrist_model`, `sacct_hd_prop_leftwrist_texture`, `sacct_hd_prop_rightwrist_model`, `sacct_hd_prop_rightwrist_texture`, `sacct_hd_prop_hip_model`, `sacct_hd_prop_hip_texture`, `sacct_hd_prop_leftfoot_model`, `sacct_hd_prop_leftfoot_texture`, `sacct_hd_prop_rightfoot_model`, `sacct_hd_prop_rightfoot_texture`, `sacct_voice`) VALUES + (19, 9, 3, 'Jack', 'Powell', '', '1/1/2000', 'Liberty City', 0, 0, 0, 0, '', '', 0, '', 0, 2364.28, 387.27, 6.085, 2.434, 1000, 0, -1927496394, 100, 0, 0, 0, 1614050469, 0, 0, 0, 0, 0, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +/*!40000 ALTER TABLE `sacct_main` ENABLE KEYS */; + +-- Dumping structure for table gtac_main.sacct_pay +CREATE TABLE IF NOT EXISTS `sacct_pay` ( + `sacct_pay_id` int(11) NOT NULL AUTO_INCREMENT, + `sacct_pay_server` int(11) NOT NULL DEFAULT '0', + `sacct_pay_from_sacct_id` int(11) NOT NULL DEFAULT '0', + `sacct_pay_to_sacct_id` int(11) NOT NULL DEFAULT '0', + `sacct_pay_amount` int(11) NOT NULL DEFAULT '0', + `sacct_pay_when` int(32) NOT NULL DEFAULT '0', + `sacct_pay_pos_x` float NOT NULL DEFAULT '0', + `sacct_pay_pos_y` float NOT NULL DEFAULT '0', + `sacct_pay_pos_z` float NOT NULL DEFAULT '0', + PRIMARY KEY (`sacct_pay_id`) +) ENGINE=InnoDB DEFAULT CHARSET=latin1 COMMENT='Sub Accounts - Cash Exchanges'; + +-- Dumping data for table gtac_main.sacct_pay: ~0 rows (approximately) +/*!40000 ALTER TABLE `sacct_pay` DISABLE KEYS */; +/*!40000 ALTER TABLE `sacct_pay` ENABLE KEYS */; + +-- Dumping structure for table gtac_main.sacct_stat +CREATE TABLE IF NOT EXISTS `sacct_stat` ( + `sacct_stat_id` int(32) NOT NULL DEFAULT '0', + `sacct_stat_sacct` int(32) NOT NULL DEFAULT '0', + `sacct_stat_max_kill_streak` int(32) NOT NULL DEFAULT '0', + `sacct_stat_furthest_headshot` float NOT NULL DEFAULT '0', + `sacct_stat_packages_picked` int(32) NOT NULL DEFAULT '0', + `sacct_stat_health_picked` int(32) NOT NULL DEFAULT '0', + `sacct_stat_weapons_picked` int(32) NOT NULL DEFAULT '0', + `sacct_stat_armour_picked` int(32) NOT NULL DEFAULT '0', + `sacct_stat_distance_foot` float NOT NULL DEFAULT '0', + `sacct_stat_distance_car` float NOT NULL DEFAULT '0', + `sacct_stat_distance_boat` float NOT NULL DEFAULT '0', + `sacct_stat_distance_plane` float NOT NULL DEFAULT '0', + `sacct_stat_longest_server_time` int(32) NOT NULL DEFAULT '0', + `sacct_stat_veh_resprays` int(32) NOT NULL DEFAULT '0', + `sacct_stat_wanted_veh_resprays` int(32) NOT NULL DEFAULT '0', + `sacct_stat_spent_on_weapons` int(32) NOT NULL DEFAULT '0', + `sacct_stat_weapons_purchased` int(32) NOT NULL DEFAULT '0', + `sacct_stat_businesses_purchased` int(32) NOT NULL DEFAULT '0', + `sacct_stat_houses_purchased` int(32) NOT NULL DEFAULT '0', + `sacct_stat_times_busted` int(32) NOT NULL DEFAULT '0', + `sacct_stat_stars_obtained` int(32) NOT NULL DEFAULT '0', + `sacct_stat_stars_evaded` int(32) NOT NULL DEFAULT '0', + `sacct_stat_highest_wanted_level` int(32) NOT NULL DEFAULT '0', + PRIMARY KEY (`sacct_stat_id`) +) ENGINE=InnoDB DEFAULT CHARSET=latin1 COMMENT='Subaccounts - Stats'; + +-- Dumping data for table gtac_main.sacct_stat: ~0 rows (approximately) +/*!40000 ALTER TABLE `sacct_stat` DISABLE KEYS */; +/*!40000 ALTER TABLE `sacct_stat` ENABLE KEYS */; + +-- Dumping structure for table gtac_main.sacct_svr +CREATE TABLE IF NOT EXISTS `sacct_svr` ( + `sacct_svr_id` int(11) NOT NULL AUTO_INCREMENT, + `sacct_svr_sacct` int(11) NOT NULL DEFAULT '0', + `sacct_svr_model` int(11) NOT NULL DEFAULT '0', + `sacct_svr_head_model` int(11) NOT NULL DEFAULT '0', + `sacct_svr_head_texture` int(11) NOT NULL DEFAULT '0', + `sacct_svr_upper_model` int(11) NOT NULL DEFAULT '0', + `sacct_svr_upper_texture` int(11) NOT NULL DEFAULT '0', + `sacct_svr_lower_model` int(11) NOT NULL DEFAULT '0', + `sacct_svr_lower_texture` int(11) NOT NULL DEFAULT '0', + `sacct_svr_scale_x` float NOT NULL DEFAULT '1', + `sacct_svr_scale_y` float NOT NULL DEFAULT '1', + `sacct_svr_scale_z` float NOT NULL DEFAULT '1', + PRIMARY KEY (`sacct_svr_id`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci COMMENT='Subaccounts - Per-Server Data'; + +-- Dumping data for table gtac_main.sacct_svr: ~0 rows (approximately) +/*!40000 ALTER TABLE `sacct_svr` DISABLE KEYS */; +/*!40000 ALTER TABLE `sacct_svr` ENABLE KEYS */; + +-- Dumping structure for table gtac_main.sus_main +CREATE TABLE IF NOT EXISTS `sus_main` ( + `sus_id` int(11) NOT NULL AUTO_INCREMENT, + `sus_server` tinyint(2) NOT NULL DEFAULT '0', + `sus_suspect` int(11) NOT NULL DEFAULT '0', + `sus_officer` int(11) NOT NULL DEFAULT '0', + `sus_minutes` int(11) NOT NULL DEFAULT '0', + `sus_reason` varchar(128) NOT NULL DEFAULT '', + `sus_state` int(11) NOT NULL DEFAULT '0', + PRIMARY KEY (`sus_id`) +) ENGINE=InnoDB DEFAULT CHARSET=latin1 COMMENT='Crimes'; + +-- Dumping data for table gtac_main.sus_main: ~0 rows (approximately) +/*!40000 ALTER TABLE `sus_main` DISABLE KEYS */; +/*!40000 ALTER TABLE `sus_main` ENABLE KEYS */; + +-- Dumping structure for table gtac_main.svr_main +CREATE TABLE IF NOT EXISTS `svr_main` ( + `svr_id` int(11) NOT NULL AUTO_INCREMENT, + `svr_name` varchar(50) NOT NULL DEFAULT '0', + `svr_game` int(11) NOT NULL DEFAULT '0', + `svr_port` int(11) NOT NULL DEFAULT '0', + `svr_password` varchar(50) NOT NULL DEFAULT '0', + `svr_start_time_hour` int(11) NOT NULL DEFAULT '0', + `svr_start_time_min` int(11) NOT NULL DEFAULT '0', + `svr_start_weather` int(11) NOT NULL DEFAULT '0', + `svr_start_snow_falling` tinyint(1) NOT NULL DEFAULT '0', + `svr_start_snow_ground` tinyint(1) NOT NULL DEFAULT '0', + `svr_newchar_pos_x` float NOT NULL DEFAULT '0', + `svr_newchar_pos_y` float NOT NULL DEFAULT '0', + `svr_newchar_pos_z` float NOT NULL DEFAULT '0', + `svr_newchar_rot_z` float NOT NULL DEFAULT '0', + `svr_newchar_money` int(11) NOT NULL DEFAULT '0', + `svr_newchar_bank` int(11) NOT NULL DEFAULT '0', + `svr_newchar_skin` int(11) NOT NULL DEFAULT '0', + `svr_manager` int(11) NOT NULL DEFAULT '0', + `svr_connectcam_pos_x` float NOT NULL DEFAULT '0', + `svr_connectcam_pos_y` float NOT NULL DEFAULT '0', + `svr_connectcam_pos_z` float NOT NULL DEFAULT '0', + `svr_connectcam_lookat_x` float NOT NULL DEFAULT '0', + `svr_connectcam_lookat_y` float NOT NULL DEFAULT '0', + `svr_connectcam_lookat_z` float NOT NULL DEFAULT '0', + `svr_gui` tinyint(1) NOT NULL DEFAULT '1', + `svr_gui_col1_r` smallint(6) NOT NULL DEFAULT '200', + `svr_gui_col1_g` smallint(6) NOT NULL DEFAULT '200', + `svr_gui_col1_b` smallint(6) NOT NULL DEFAULT '200', + `svr_logo` tinyint(1) NOT NULL DEFAULT '1', + `svr_ac_enabled` tinyint(1) NOT NULL DEFAULT '1', + `svr_ac_check_scripts` tinyint(1) NOT NULL DEFAULT '1', + `svr_ac_script_wl` tinyint(1) NOT NULL DEFAULT '0', + `svr_ac_script_bl` tinyint(1) NOT NULL DEFAULT '1', + `svr_inflation_multiplier` float NOT NULL DEFAULT '1', + `svr_job_pickups` tinyint(1) DEFAULT '1', + `svr_job_blips` tinyint(1) DEFAULT '1', + `svr_biz_pickups` tinyint(1) DEFAULT '1', + `svr_biz_blips` tinyint(1) DEFAULT '1', + `svr_house_pickups` tinyint(1) DEFAULT '1', + `svr_house_blips` tinyint(1) DEFAULT '1', + `svr_discord_bot_enabled` tinyint(1) DEFAULT '0', + `svr_discord_bot` int(11) DEFAULT '0', + `svr_time_min_duration` int(11) NOT NULL DEFAULT '60000', + PRIMARY KEY (`svr_id`) +) ENGINE=InnoDB AUTO_INCREMENT=5 DEFAULT CHARSET=utf8 COMMENT='Servers'; + +-- Dumping data for table gtac_main.svr_main: ~4 rows (approximately) +/*!40000 ALTER TABLE `svr_main` DISABLE KEYS */; +INSERT INTO `svr_main` (`svr_id`, `svr_name`, `svr_game`, `svr_port`, `svr_password`, `svr_start_time_hour`, `svr_start_time_min`, `svr_start_weather`, `svr_start_snow_falling`, `svr_start_snow_ground`, `svr_newchar_pos_x`, `svr_newchar_pos_y`, `svr_newchar_pos_z`, `svr_newchar_rot_z`, `svr_newchar_money`, `svr_newchar_bank`, `svr_newchar_skin`, `svr_manager`, `svr_connectcam_pos_x`, `svr_connectcam_pos_y`, `svr_connectcam_pos_z`, `svr_connectcam_lookat_x`, `svr_connectcam_lookat_y`, `svr_connectcam_lookat_z`, `svr_gui`, `svr_gui_col1_r`, `svr_gui_col1_g`, `svr_gui_col1_b`, `svr_logo`, `svr_ac_enabled`, `svr_ac_check_scripts`, `svr_ac_script_wl`, `svr_ac_script_bl`, `svr_inflation_multiplier`, `svr_job_pickups`, `svr_job_blips`, `svr_biz_pickups`, `svr_biz_blips`, `svr_house_pickups`, `svr_house_blips`, `svr_discord_bot_enabled`, `svr_discord_bot`, `svr_time_min_duration`) VALUES + (1, 'Asshat Gaming Roleplay (Coming soon!)', 1, 22001, 'AsshatsUnite!', 0, 0, 0, 0, 0, 1038.4, -666.7, 14.97, 1, 1000, 0, 0, 1, -1176.48, -17.694, 95.992, -1175.73, -17.055, 95.847, 1, 40, 110, 185, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 60000); +INSERT INTO `svr_main` (`svr_id`, `svr_name`, `svr_game`, `svr_port`, `svr_password`, `svr_start_time_hour`, `svr_start_time_min`, `svr_start_weather`, `svr_start_snow_falling`, `svr_start_snow_ground`, `svr_newchar_pos_x`, `svr_newchar_pos_y`, `svr_newchar_pos_z`, `svr_newchar_rot_z`, `svr_newchar_money`, `svr_newchar_bank`, `svr_newchar_skin`, `svr_manager`, `svr_connectcam_pos_x`, `svr_connectcam_pos_y`, `svr_connectcam_pos_z`, `svr_connectcam_lookat_x`, `svr_connectcam_lookat_y`, `svr_connectcam_lookat_z`, `svr_gui`, `svr_gui_col1_r`, `svr_gui_col1_g`, `svr_gui_col1_b`, `svr_logo`, `svr_ac_enabled`, `svr_ac_check_scripts`, `svr_ac_script_wl`, `svr_ac_script_bl`, `svr_inflation_multiplier`, `svr_job_pickups`, `svr_job_blips`, `svr_biz_pickups`, `svr_biz_blips`, `svr_house_pickups`, `svr_house_blips`, `svr_discord_bot_enabled`, `svr_discord_bot`, `svr_time_min_duration`) VALUES + (2, 'Asshat Gaming Roleplay (Coming soon!)', 2, 22002, 'AsshatsUnite!', 0, 0, 0, 0, 0, -708.918, 179.315, 11.0712, 2.94625, 1000, 0, 15, 1, 210.04, -1492.01, 55.071, 240.19, -1282.52, 10.902, 1, 255, 110, 199, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 60000); +INSERT INTO `svr_main` (`svr_id`, `svr_name`, `svr_game`, `svr_port`, `svr_password`, `svr_start_time_hour`, `svr_start_time_min`, `svr_start_weather`, `svr_start_snow_falling`, `svr_start_snow_ground`, `svr_newchar_pos_x`, `svr_newchar_pos_y`, `svr_newchar_pos_z`, `svr_newchar_rot_z`, `svr_newchar_money`, `svr_newchar_bank`, `svr_newchar_skin`, `svr_manager`, `svr_connectcam_pos_x`, `svr_connectcam_pos_y`, `svr_connectcam_pos_z`, `svr_connectcam_lookat_x`, `svr_connectcam_lookat_y`, `svr_connectcam_lookat_z`, `svr_gui`, `svr_gui_col1_r`, `svr_gui_col1_g`, `svr_gui_col1_b`, `svr_logo`, `svr_ac_enabled`, `svr_ac_check_scripts`, `svr_ac_script_wl`, `svr_ac_script_bl`, `svr_inflation_multiplier`, `svr_job_pickups`, `svr_job_blips`, `svr_biz_pickups`, `svr_biz_blips`, `svr_house_pickups`, `svr_house_blips`, `svr_discord_bot_enabled`, `svr_discord_bot`, `svr_time_min_duration`) VALUES + (3, 'Asshat Gaming Roleplay (Coming soon!)', 5, 22005, 'AsshatsUnite!', 0, 0, 0, 0, 0, 2364.28, 387.27, 6.085, 2.434, 1000, 0, -2020305438, 1, 8.75, -826.53, 331.072, -63.58, 240.71, 26.373, 1, 128, 128, 128, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 60000); +INSERT INTO `svr_main` (`svr_id`, `svr_name`, `svr_game`, `svr_port`, `svr_password`, `svr_start_time_hour`, `svr_start_time_min`, `svr_start_weather`, `svr_start_snow_falling`, `svr_start_snow_ground`, `svr_newchar_pos_x`, `svr_newchar_pos_y`, `svr_newchar_pos_z`, `svr_newchar_rot_z`, `svr_newchar_money`, `svr_newchar_bank`, `svr_newchar_skin`, `svr_manager`, `svr_connectcam_pos_x`, `svr_connectcam_pos_y`, `svr_connectcam_pos_z`, `svr_connectcam_lookat_x`, `svr_connectcam_lookat_y`, `svr_connectcam_lookat_z`, `svr_gui`, `svr_gui_col1_r`, `svr_gui_col1_g`, `svr_gui_col1_b`, `svr_logo`, `svr_ac_enabled`, `svr_ac_check_scripts`, `svr_ac_script_wl`, `svr_ac_script_bl`, `svr_inflation_multiplier`, `svr_job_pickups`, `svr_job_blips`, `svr_biz_pickups`, `svr_biz_blips`, `svr_house_pickups`, `svr_house_blips`, `svr_discord_bot_enabled`, `svr_discord_bot`, `svr_time_min_duration`) VALUES + (4, 'Asshat Gaming Roleplay (Coming soon!)', 3, 22003, 'AsshatsUnite!', 0, 0, 10, 0, 0, 1632.49, -2331.96, 13.547, -0.005, 1000, 0, 26, 1, 1292.31, -2037.57, 109.596, 1291.31, -2037.57, 109.171, 1, 64, 64, 64, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 0, 0, 60000); +/*!40000 ALTER TABLE `svr_main` ENABLE KEYS */; + +-- Dumping structure for table gtac_main.veh_history +CREATE TABLE IF NOT EXISTS `veh_history` ( + `veh_history_id` int(11) NOT NULL AUTO_INCREMENT, + `veh_history_veh` int(11) NOT NULL, + `veh_history_type` int(11) NOT NULL, + `veh_history_when` bigint(20) NOT NULL DEFAULT '0', + `veh_history_value` int(11) NOT NULL, + `veh_history_details` varchar(50) NOT NULL DEFAULT '', + PRIMARY KEY (`veh_history_id`), + KEY `veh_history_veh` (`veh_history_veh`), + CONSTRAINT `fk_veh_history_veh` FOREIGN KEY (`veh_history_veh`) REFERENCES `veh_main` (`veh_id`) ON DELETE CASCADE ON UPDATE CASCADE +) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Vehicle - History'; + +-- Dumping data for table gtac_main.veh_history: ~0 rows (approximately) +/*!40000 ALTER TABLE `veh_history` DISABLE KEYS */; +/*!40000 ALTER TABLE `veh_history` ENABLE KEYS */; + +-- Dumping structure for table gtac_main.veh_main +CREATE TABLE IF NOT EXISTS `veh_main` ( + `veh_id` int(11) NOT NULL AUTO_INCREMENT, + `veh_server` tinyint(2) NOT NULL DEFAULT '0', + `veh_model` int(11) NOT NULL DEFAULT '0', + `veh_col1_isrgb` tinyint(1) NOT NULL DEFAULT '0', + `veh_col2_isrgb` tinyint(1) NOT NULL DEFAULT '0', + `veh_col3_isrgb` tinyint(1) NOT NULL DEFAULT '0', + `veh_col4_isrgb` tinyint(1) NOT NULL DEFAULT '0', + `veh_col1` smallint(6) NOT NULL DEFAULT '0', + `veh_col2` smallint(6) NOT NULL DEFAULT '0', + `veh_col3` smallint(6) NOT NULL DEFAULT '0', + `veh_col4` smallint(6) NOT NULL DEFAULT '0', + `veh_col1_r` smallint(6) NOT NULL DEFAULT '0', + `veh_col1_g` smallint(6) NOT NULL DEFAULT '0', + `veh_col1_b` smallint(6) NOT NULL DEFAULT '0', + `veh_col1_a` smallint(6) NOT NULL DEFAULT '0', + `veh_col2_r` smallint(6) NOT NULL DEFAULT '0', + `veh_col2_g` smallint(6) NOT NULL DEFAULT '0', + `veh_col2_b` smallint(6) NOT NULL DEFAULT '0', + `veh_col2_a` smallint(6) NOT NULL DEFAULT '0', + `veh_col3_r` smallint(6) NOT NULL DEFAULT '0', + `veh_col3_g` smallint(6) NOT NULL DEFAULT '0', + `veh_col3_b` smallint(6) NOT NULL DEFAULT '0', + `veh_col3_a` smallint(6) NOT NULL DEFAULT '0', + `veh_col4_r` smallint(6) NOT NULL DEFAULT '0', + `veh_col4_g` smallint(6) NOT NULL DEFAULT '0', + `veh_col4_b` smallint(6) NOT NULL DEFAULT '0', + `veh_col4_a` smallint(6) NOT NULL DEFAULT '0', + `veh_locked` tinyint(1) NOT NULL DEFAULT '0', + `veh_health` float NOT NULL DEFAULT '1000', + `veh_pos_x` float NOT NULL DEFAULT '0', + `veh_pos_y` float NOT NULL DEFAULT '0', + `veh_pos_z` float NOT NULL DEFAULT '0', + `veh_rot_x` float NOT NULL DEFAULT '0', + `veh_rot_y` float NOT NULL DEFAULT '0', + `veh_rot_z` float NOT NULL DEFAULT '0', + `veh_owner_type` int(11) NOT NULL DEFAULT '0', + `veh_owner_id` int(11) NOT NULL DEFAULT '0', + `veh_engine` tinyint(1) NOT NULL DEFAULT '0', + `veh_rank` tinyint(1) NOT NULL DEFAULT '0', + `veh_lights` tinyint(1) NOT NULL DEFAULT '0', + `veh_siren` tinyint(1) NOT NULL DEFAULT '0', + `veh_sirenlight` tinyint(1) NOT NULL DEFAULT '0', + `veh_taxilight` tinyint(1) NOT NULL DEFAULT '0', + `veh_radio_custom` tinyint(1) NOT NULL DEFAULT '0', + `veh_radio_station` smallint(6) NOT NULL DEFAULT '0', + `veh_radio_volume` tinyint(4) NOT NULL DEFAULT '0', + `veh_fuel` smallint(6) NOT NULL DEFAULT '0', + `veh_spawned` tinyint(1) NOT NULL DEFAULT '0', + `veh_ins_acct` tinyint(1) NOT NULL DEFAULT '0', + `veh_price` int(8) NOT NULL DEFAULT '0', + `veh_deleted` tinyint(1) NOT NULL DEFAULT '0', + `veh_flags` int(32) NOT NULL DEFAULT '0', + `veh_spawn_lock` tinyint(1) NOT NULL DEFAULT '0', + `veh_buy_price` int(11) NOT NULL DEFAULT '0', + `veh_rent_price` int(11) NOT NULL DEFAULT '0', + `veh_destroyed` tinyint(1) NOT NULL DEFAULT '0', + `veh_mod_enginemult` int(11) NOT NULL DEFAULT '0', + `veh_mod_wheelmult` int(11) NOT NULL DEFAULT '0', + `veh_mod_brakemult` int(11) NOT NULL DEFAULT '0', + `veh_mod_hydraulics` tinyint(1) NOT NULL DEFAULT '0', + `veh_mod_nos` tinyint(1) NOT NULL DEFAULT '0', + `veh_tire_fl` tinyint(1) NOT NULL DEFAULT '0', + `veh_tire_fr` tinyint(1) NOT NULL DEFAULT '0', + `veh_tire_rl` tinyint(1) NOT NULL DEFAULT '0', + `veh_tire_rr` tinyint(1) NOT NULL DEFAULT '0', + `veh_light_fl` tinyint(1) NOT NULL DEFAULT '0', + `veh_light_fr` tinyint(1) NOT NULL DEFAULT '0', + `veh_light_rl` tinyint(1) NOT NULL DEFAULT '0', + `veh_light_rr` tinyint(1) NOT NULL DEFAULT '0', + `veh_door_fl` tinyint(1) NOT NULL DEFAULT '0', + `veh_door_fr` tinyint(1) NOT NULL DEFAULT '0', + `veh_door_rl` tinyint(1) NOT NULL DEFAULT '0', + `veh_door_rr` tinyint(1) NOT NULL DEFAULT '0', + `veh_boot` tinyint(1) NOT NULL DEFAULT '0', + `veh_bonnet` tinyint(1) NOT NULL DEFAULT '0', + `veh_panel_bumper_front` tinyint(1) NOT NULL DEFAULT '0', + `veh_panel_bumper_rear` tinyint(1) NOT NULL DEFAULT '0', + `veh_panel_front_left` tinyint(1) NOT NULL DEFAULT '0', + `veh_panel_front_right` tinyint(1) NOT NULL DEFAULT '0', + `veh_panel_rear_left` tinyint(1) NOT NULL DEFAULT '0', + `veh_panel_rear_right` tinyint(1) NOT NULL DEFAULT '0', + `veh_panel_windshield` tinyint(1) NOT NULL DEFAULT '0', + `veh_dirt_level` int(11) NOT NULL DEFAULT '0', + `veh_damage_visual` int(11) NOT NULL DEFAULT '0', + `veh_damage_engine` float NOT NULL DEFAULT '0', + `veh_damage_normal` float NOT NULL DEFAULT '0', + `veh_when_added` bigint(32) NOT NULL DEFAULT '0', + `veh_how_added` int(11) NOT NULL DEFAULT '0', + `veh_who_added` bigint(32) NOT NULL DEFAULT '0', + `veh_hd_extra1` int(11) NOT NULL DEFAULT '0', + `veh_hd_extra2` int(11) NOT NULL DEFAULT '0', + `veh_hd_extra3` int(11) NOT NULL DEFAULT '0', + `veh_hd_extra4` int(11) NOT NULL DEFAULT '0', + `veh_hd_extra5` int(11) NOT NULL DEFAULT '0', + `veh_hd_extra6` int(11) NOT NULL DEFAULT '0', + `veh_hd_extra7` int(11) NOT NULL DEFAULT '0', + `veh_hd_extra8` int(11) NOT NULL DEFAULT '0', + `veh_hd_extra9` int(11) NOT NULL DEFAULT '0', + PRIMARY KEY (`veh_id`), + KEY `veh_server` (`veh_server`), + KEY `veh_owner` (`veh_owner_type`,`veh_owner_id`) +) ENGINE=InnoDB AUTO_INCREMENT=362 DEFAULT CHARSET=latin1 COMMENT='Vehicles'; + +-- Dumping data for table gtac_main.veh_main: ~335 rows (approximately) +/*!40000 ALTER TABLE `veh_main` DISABLE KEYS */; +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `veh_when_added`, `veh_how_added`, `veh_who_added`, `veh_hd_extra1`, `veh_hd_extra2`, `veh_hd_extra3`, `veh_hd_extra4`, `veh_hd_extra5`, `veh_hd_extra6`, `veh_hd_extra7`, `veh_hd_extra8`, `veh_hd_extra9`) VALUES + (1, 1, 116, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1000, 1150.19, -691.413, 14.7679, 0, 0, -0.00433205, 2, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `veh_when_added`, `veh_how_added`, `veh_who_added`, `veh_hd_extra1`, `veh_hd_extra2`, `veh_hd_extra3`, `veh_hd_extra4`, `veh_hd_extra5`, `veh_hd_extra6`, `veh_hd_extra7`, `veh_hd_extra8`, `veh_hd_extra9`) VALUES + (2, 1, 116, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1000, 1146.75, -691.522, 14.7632, 0, 0, 0.0311547, 2, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `veh_when_added`, `veh_how_added`, `veh_who_added`, `veh_hd_extra1`, `veh_hd_extra2`, `veh_hd_extra3`, `veh_hd_extra4`, `veh_hd_extra5`, `veh_hd_extra6`, `veh_hd_extra7`, `veh_hd_extra8`, `veh_hd_extra9`) VALUES + (3, 1, 116, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1000, 1150.19, -647.976, 14.7432, 0, 0, 1.58688, 2, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `veh_when_added`, `veh_how_added`, `veh_who_added`, `veh_hd_extra1`, `veh_hd_extra2`, `veh_hd_extra3`, `veh_hd_extra4`, `veh_hd_extra5`, `veh_hd_extra6`, `veh_hd_extra7`, `veh_hd_extra8`, `veh_hd_extra9`) VALUES + (4, 1, 116, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1000, 1150.05, -644.664, 14.7377, 0, 0, 1.63214, 2, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `veh_when_added`, `veh_how_added`, `veh_who_added`, `veh_hd_extra1`, `veh_hd_extra2`, `veh_hd_extra3`, `veh_hd_extra4`, `veh_hd_extra5`, `veh_hd_extra6`, `veh_hd_extra7`, `veh_hd_extra8`, `veh_hd_extra9`) VALUES + (5, 1, 116, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1000, 1150.03, -641.414, 14.7305, 0, 0, 1.58556, 2, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `veh_when_added`, `veh_how_added`, `veh_who_added`, `veh_hd_extra1`, `veh_hd_extra2`, `veh_hd_extra3`, `veh_hd_extra4`, `veh_hd_extra5`, `veh_hd_extra6`, `veh_hd_extra7`, `veh_hd_extra8`, `veh_hd_extra9`) VALUES + (6, 1, 116, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1000, 1137.77, -637.964, 14.7565, 0, 0, 3.12411, 2, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `veh_when_added`, `veh_how_added`, `veh_who_added`, `veh_hd_extra1`, `veh_hd_extra2`, `veh_hd_extra3`, `veh_hd_extra4`, `veh_hd_extra5`, `veh_hd_extra6`, `veh_hd_extra7`, `veh_hd_extra8`, `veh_hd_extra9`) VALUES + (7, 1, 116, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1000, 1141.03, -637.832, 14.7565, 0, 0, 3.13313, 2, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `veh_when_added`, `veh_how_added`, `veh_who_added`, `veh_hd_extra1`, `veh_hd_extra2`, `veh_hd_extra3`, `veh_hd_extra4`, `veh_hd_extra5`, `veh_hd_extra6`, `veh_hd_extra7`, `veh_hd_extra8`, `veh_hd_extra9`) VALUES + (8, 1, 117, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1000, 1167.97, -671.216, 18.9339, 0, 0, -3.12864, 2, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `veh_when_added`, `veh_how_added`, `veh_who_added`, `veh_hd_extra1`, `veh_hd_extra2`, `veh_hd_extra3`, `veh_hd_extra4`, `veh_hd_extra5`, `veh_hd_extra6`, `veh_hd_extra7`, `veh_hd_extra8`, `veh_hd_extra9`) VALUES + (9, 1, 117, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1000, 1167.88, -659.962, 18.9344, 0, 0, -3.13742, 2, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `veh_when_added`, `veh_how_added`, `veh_who_added`, `veh_hd_extra1`, `veh_hd_extra2`, `veh_hd_extra3`, `veh_hd_extra4`, `veh_hd_extra5`, `veh_hd_extra6`, `veh_hd_extra7`, `veh_hd_extra8`, `veh_hd_extra9`) VALUES + (10, 1, 107, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1000, 1156.99, -648.106, 18.8026, 0, 0, -1.54444, 2, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `veh_when_added`, `veh_how_added`, `veh_who_added`, `veh_hd_extra1`, `veh_hd_extra2`, `veh_hd_extra3`, `veh_hd_extra4`, `veh_hd_extra5`, `veh_hd_extra6`, `veh_hd_extra7`, `veh_hd_extra8`, `veh_hd_extra9`) VALUES + (11, 1, 107, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1000, 1156.71, -644.208, 18.8018, 0, 0, -1.56368, 2, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `veh_when_added`, `veh_how_added`, `veh_who_added`, `veh_hd_extra1`, `veh_hd_extra2`, `veh_hd_extra3`, `veh_hd_extra4`, `veh_hd_extra5`, `veh_hd_extra6`, `veh_hd_extra7`, `veh_hd_extra8`, `veh_hd_extra9`) VALUES + (12, 1, 106, 0, 0, 0, 0, 1, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1000, 1156.51, -546.982, 21.8099, 0, 0, 1.54116, 2, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `veh_when_added`, `veh_how_added`, `veh_who_added`, `veh_hd_extra1`, `veh_hd_extra2`, `veh_hd_extra3`, `veh_hd_extra4`, `veh_hd_extra5`, `veh_hd_extra6`, `veh_hd_extra7`, `veh_hd_extra8`, `veh_hd_extra9`) VALUES + (13, 1, 106, 0, 0, 0, 0, 1, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1000, 1144.34, -526.256, 21.811, 0, 0, 3.10339, 2, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `veh_when_added`, `veh_how_added`, `veh_who_added`, `veh_hd_extra1`, `veh_hd_extra2`, `veh_hd_extra3`, `veh_hd_extra4`, `veh_hd_extra5`, `veh_hd_extra6`, `veh_hd_extra7`, `veh_hd_extra8`, `veh_hd_extra9`) VALUES + (14, 1, 106, 0, 0, 0, 0, 1, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1000, 1149.82, -526.413, 21.8051, 0, 0, 3.12915, 2, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `veh_when_added`, `veh_how_added`, `veh_who_added`, `veh_hd_extra1`, `veh_hd_extra2`, `veh_hd_extra3`, `veh_hd_extra4`, `veh_hd_extra5`, `veh_hd_extra6`, `veh_hd_extra7`, `veh_hd_extra8`, `veh_hd_extra9`) VALUES + (15, 1, 97, 0, 0, 0, 0, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1000, 1107.33, -47.3277, 7.6909, 0, 0, -1.58177, 2, 9, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `veh_when_added`, `veh_how_added`, `veh_who_added`, `veh_hd_extra1`, `veh_hd_extra2`, `veh_hd_extra3`, `veh_hd_extra4`, `veh_hd_extra5`, `veh_hd_extra6`, `veh_hd_extra7`, `veh_hd_extra8`, `veh_hd_extra9`) VALUES + (16, 1, 97, 0, 0, 0, 0, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1000, 1107.44, -56.9672, 7.68915, 0, 0, -1.55498, 2, 9, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `veh_when_added`, `veh_how_added`, `veh_who_added`, `veh_hd_extra1`, `veh_hd_extra2`, `veh_hd_extra3`, `veh_hd_extra4`, `veh_hd_extra5`, `veh_hd_extra6`, `veh_hd_extra7`, `veh_hd_extra8`, `veh_hd_extra9`) VALUES + (17, 1, 97, 0, 0, 0, 0, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1000, 1107.07, -36.7668, 7.68907, 0, 0, -1.54614, 2, 9, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `veh_when_added`, `veh_how_added`, `veh_who_added`, `veh_hd_extra1`, `veh_hd_extra2`, `veh_hd_extra3`, `veh_hd_extra4`, `veh_hd_extra5`, `veh_hd_extra6`, `veh_hd_extra7`, `veh_hd_extra8`, `veh_hd_extra9`) VALUES + (18, 1, 98, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1000, 1143.85, 24.7314, 0.193595, 0, 0, 0.030849, 2, 21, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `veh_when_added`, `veh_how_added`, `veh_who_added`, `veh_hd_extra1`, `veh_hd_extra2`, `veh_hd_extra3`, `veh_hd_extra4`, `veh_hd_extra5`, `veh_hd_extra6`, `veh_hd_extra7`, `veh_hd_extra8`, `veh_hd_extra9`) VALUES + (19, 1, 98, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1000, 1127.04, 42.6658, 0.0965313, 0, 0, -1.59613, 2, 21, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `veh_when_added`, `veh_how_added`, `veh_who_added`, `veh_hd_extra1`, `veh_hd_extra2`, `veh_hd_extra3`, `veh_hd_extra4`, `veh_hd_extra5`, `veh_hd_extra6`, `veh_hd_extra7`, `veh_hd_extra8`, `veh_hd_extra9`) VALUES + (20, 1, 98, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1000, 1160.02, 63.4447, 0.0918589, 0, 0, -3.06856, 2, 21, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `veh_when_added`, `veh_how_added`, `veh_who_added`, `veh_hd_extra1`, `veh_hd_extra2`, `veh_hd_extra3`, `veh_hd_extra4`, `veh_hd_extra5`, `veh_hd_extra6`, `veh_hd_extra7`, `veh_hd_extra8`, `veh_hd_extra9`) VALUES + (21, 1, 116, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1000, 1139.63, -687.404, 14.7563, 0, 0, -1.5751, 2, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `veh_when_added`, `veh_how_added`, `veh_who_added`, `veh_hd_extra1`, `veh_hd_extra2`, `veh_hd_extra3`, `veh_hd_extra4`, `veh_hd_extra5`, `veh_hd_extra6`, `veh_hd_extra7`, `veh_hd_extra8`, `veh_hd_extra9`) VALUES + (22, 1, 127, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1000, 1281.16, -964.567, 15.006, 0, 0, -2.35689, 2, 17, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `veh_when_added`, `veh_how_added`, `veh_who_added`, `veh_hd_extra1`, `veh_hd_extra2`, `veh_hd_extra3`, `veh_hd_extra4`, `veh_hd_extra5`, `veh_hd_extra6`, `veh_hd_extra7`, `veh_hd_extra8`, `veh_hd_extra9`) VALUES + (23, 1, 127, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1000, 1274.07, -971.255, 14.9847, 0, 0, -2.36657, 2, 17, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `veh_when_added`, `veh_how_added`, `veh_who_added`, `veh_hd_extra1`, `veh_hd_extra2`, `veh_hd_extra3`, `veh_hd_extra4`, `veh_hd_extra5`, `veh_hd_extra6`, `veh_hd_extra7`, `veh_hd_extra8`, `veh_hd_extra9`) VALUES + (24, 1, 127, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1000, 1255.04, -993.608, 14.9642, 0, 0, -0.875785, 2, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `veh_when_added`, `veh_how_added`, `veh_who_added`, `veh_hd_extra1`, `veh_hd_extra2`, `veh_hd_extra3`, `veh_hd_extra4`, `veh_hd_extra5`, `veh_hd_extra6`, `veh_hd_extra7`, `veh_hd_extra8`, `veh_hd_extra9`) VALUES + (25, 1, 127, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1000, 1262.9, -1001.84, 14.966, 0, 0, -0.898034, 2, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `veh_when_added`, `veh_how_added`, `veh_who_added`, `veh_hd_extra1`, `veh_hd_extra2`, `veh_hd_extra3`, `veh_hd_extra4`, `veh_hd_extra5`, `veh_hd_extra6`, `veh_hd_extra7`, `veh_hd_extra8`, `veh_hd_extra9`) VALUES + (26, 1, 110, 0, 0, 0, 0, 6, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1000, 1226.42, -725.875, 14.9189, 0, 0, -2.34667, 2, 13, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `veh_when_added`, `veh_how_added`, `veh_who_added`, `veh_hd_extra1`, `veh_hd_extra2`, `veh_hd_extra3`, `veh_hd_extra4`, `veh_hd_extra5`, `veh_hd_extra6`, `veh_hd_extra7`, `veh_hd_extra8`, `veh_hd_extra9`) VALUES + (27, 1, 110, 0, 0, 0, 0, 6, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1000, 1229.62, -722.578, 14.9188, 0, 0, -2.35245, 2, 13, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `veh_when_added`, `veh_how_added`, `veh_who_added`, `veh_hd_extra1`, `veh_hd_extra2`, `veh_hd_extra3`, `veh_hd_extra4`, `veh_hd_extra5`, `veh_hd_extra6`, `veh_hd_extra7`, `veh_hd_extra8`, `veh_hd_extra9`) VALUES + (28, 1, 110, 0, 0, 0, 0, 6, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1000, 1257.41, -752.06, 14.9186, 0, 0, 0.734189, 2, 13, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `veh_when_added`, `veh_how_added`, `veh_who_added`, `veh_hd_extra1`, `veh_hd_extra2`, `veh_hd_extra3`, `veh_hd_extra4`, `veh_hd_extra5`, `veh_hd_extra6`, `veh_hd_extra7`, `veh_hd_extra8`, `veh_hd_extra9`) VALUES + (29, 1, 110, 0, 0, 0, 0, 6, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1000, 1254.04, -755.676, 14.9186, 0, 0, 0.767078, 2, 13, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `veh_when_added`, `veh_how_added`, `veh_who_added`, `veh_hd_extra1`, `veh_hd_extra2`, `veh_hd_extra3`, `veh_hd_extra4`, `veh_hd_extra5`, `veh_hd_extra6`, `veh_hd_extra7`, `veh_hd_extra8`, `veh_hd_extra9`) VALUES + (30, 1, 128, 0, 0, 0, 0, 6, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1000, 1249.93, -736.377, 15.1166, 0, 0, 2.33642, 2, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `veh_when_added`, `veh_how_added`, `veh_who_added`, `veh_hd_extra1`, `veh_hd_extra2`, `veh_hd_extra3`, `veh_hd_extra4`, `veh_hd_extra5`, `veh_hd_extra6`, `veh_hd_extra7`, `veh_hd_extra8`, `veh_hd_extra9`) VALUES + (31, 1, 128, 0, 0, 0, 0, 6, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1000, 1246.99, -733.376, 15.1162, 0, 0, 2.33641, 2, 13, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `veh_when_added`, `veh_how_added`, `veh_who_added`, `veh_hd_extra1`, `veh_hd_extra2`, `veh_hd_extra3`, `veh_hd_extra4`, `veh_hd_extra5`, `veh_hd_extra6`, `veh_hd_extra7`, `veh_hd_extra8`, `veh_hd_extra9`) VALUES + (32, 1, 116, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1000, 1139.41, -683.735, 14.7565, 0, 0, -1.55153, 2, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `veh_when_added`, `veh_how_added`, `veh_who_added`, `veh_hd_extra1`, `veh_hd_extra2`, `veh_hd_extra3`, `veh_hd_extra4`, `veh_hd_extra5`, `veh_hd_extra6`, `veh_hd_extra7`, `veh_hd_extra8`, `veh_hd_extra9`) VALUES + (33, 1, 116, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1000, 355.017, -1135.91, 22.7644, 0, 0, -2.41669, 2, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `veh_when_added`, `veh_how_added`, `veh_who_added`, `veh_hd_extra1`, `veh_hd_extra2`, `veh_hd_extra3`, `veh_hd_extra4`, `veh_hd_extra5`, `veh_hd_extra6`, `veh_hd_extra7`, `veh_hd_extra8`, `veh_hd_extra9`) VALUES + (34, 1, 116, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1000, 350.109, -1135.89, 22.7647, 0, 0, -2.46912, 2, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `veh_when_added`, `veh_how_added`, `veh_who_added`, `veh_hd_extra1`, `veh_hd_extra2`, `veh_hd_extra3`, `veh_hd_extra4`, `veh_hd_extra5`, `veh_hd_extra6`, `veh_hd_extra7`, `veh_hd_extra8`, `veh_hd_extra9`) VALUES + (35, 1, 116, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1000, 345.608, -1135.62, 22.7649, 0, 0, -2.53825, 2, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `veh_when_added`, `veh_how_added`, `veh_who_added`, `veh_hd_extra1`, `veh_hd_extra2`, `veh_hd_extra3`, `veh_hd_extra4`, `veh_hd_extra5`, `veh_hd_extra6`, `veh_hd_extra7`, `veh_hd_extra8`, `veh_hd_extra9`) VALUES + (36, 1, 116, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1000, 341.261, -1135.68, 22.7642, 0, 0, -2.54692, 2, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `veh_when_added`, `veh_how_added`, `veh_who_added`, `veh_hd_extra1`, `veh_hd_extra2`, `veh_hd_extra3`, `veh_hd_extra4`, `veh_hd_extra5`, `veh_hd_extra6`, `veh_hd_extra7`, `veh_hd_extra8`, `veh_hd_extra9`) VALUES + (37, 1, 116, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1000, 336.717, -1135.68, 22.7706, 0, 0, -2.56974, 2, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `veh_when_added`, `veh_how_added`, `veh_who_added`, `veh_hd_extra1`, `veh_hd_extra2`, `veh_hd_extra3`, `veh_hd_extra4`, `veh_hd_extra5`, `veh_hd_extra6`, `veh_hd_extra7`, `veh_hd_extra8`, `veh_hd_extra9`) VALUES + (38, 1, 116, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1000, 332.574, -1135.79, 22.7643, 0, 0, -2.54837, 2, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `veh_when_added`, `veh_how_added`, `veh_who_added`, `veh_hd_extra1`, `veh_hd_extra2`, `veh_hd_extra3`, `veh_hd_extra4`, `veh_hd_extra5`, `veh_hd_extra6`, `veh_hd_extra7`, `veh_hd_extra8`, `veh_hd_extra9`) VALUES + (39, 1, 116, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1000, 330.361, -1143.6, 22.7644, 0, 0, -1.53463, 2, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `veh_when_added`, `veh_how_added`, `veh_who_added`, `veh_hd_extra1`, `veh_hd_extra2`, `veh_hd_extra3`, `veh_hd_extra4`, `veh_hd_extra5`, `veh_hd_extra6`, `veh_hd_extra7`, `veh_hd_extra8`, `veh_hd_extra9`) VALUES + (40, 1, 116, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1000, 330.33, -1147.05, 22.7647, 0, 0, -1.55975, 2, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `veh_when_added`, `veh_how_added`, `veh_who_added`, `veh_hd_extra1`, `veh_hd_extra2`, `veh_hd_extra3`, `veh_hd_extra4`, `veh_hd_extra5`, `veh_hd_extra6`, `veh_hd_extra7`, `veh_hd_extra8`, `veh_hd_extra9`) VALUES + (41, 1, 116, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1000, 330.239, -1150.96, 22.7647, 0, 0, -1.59091, 2, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `veh_when_added`, `veh_how_added`, `veh_who_added`, `veh_hd_extra1`, `veh_hd_extra2`, `veh_hd_extra3`, `veh_hd_extra4`, `veh_hd_extra5`, `veh_hd_extra6`, `veh_hd_extra7`, `veh_hd_extra8`, `veh_hd_extra9`) VALUES + (42, 1, 116, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1000, 330.082, -1154.76, 22.7643, 0, 0, -1.59227, 2, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `veh_when_added`, `veh_how_added`, `veh_who_added`, `veh_hd_extra1`, `veh_hd_extra2`, `veh_hd_extra3`, `veh_hd_extra4`, `veh_hd_extra5`, `veh_hd_extra6`, `veh_hd_extra7`, `veh_hd_extra8`, `veh_hd_extra9`) VALUES + (43, 1, 116, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1000, 330.062, -1158.64, 22.764, 0, 0, -1.56752, 2, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `veh_when_added`, `veh_how_added`, `veh_who_added`, `veh_hd_extra1`, `veh_hd_extra2`, `veh_hd_extra3`, `veh_hd_extra4`, `veh_hd_extra5`, `veh_hd_extra6`, `veh_hd_extra7`, `veh_hd_extra8`, `veh_hd_extra9`) VALUES + (44, 1, 116, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1000, 330.123, -1162.56, 22.757, 0, 0, -1.57938, 2, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `veh_when_added`, `veh_how_added`, `veh_who_added`, `veh_hd_extra1`, `veh_hd_extra2`, `veh_hd_extra3`, `veh_hd_extra4`, `veh_hd_extra5`, `veh_hd_extra6`, `veh_hd_extra7`, `veh_hd_extra8`, `veh_hd_extra9`) VALUES + (45, 1, 116, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1000, 349.266, -1175.87, 22.7646, 0, 0, 0.0401467, 2, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `veh_when_added`, `veh_how_added`, `veh_who_added`, `veh_hd_extra1`, `veh_hd_extra2`, `veh_hd_extra3`, `veh_hd_extra4`, `veh_hd_extra5`, `veh_hd_extra6`, `veh_hd_extra7`, `veh_hd_extra8`, `veh_hd_extra9`) VALUES + (46, 1, 116, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1000, 352.866, -1175.72, 22.7649, 0, 0, 0.0375325, 2, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `veh_when_added`, `veh_how_added`, `veh_who_added`, `veh_hd_extra1`, `veh_hd_extra2`, `veh_hd_extra3`, `veh_hd_extra4`, `veh_hd_extra5`, `veh_hd_extra6`, `veh_hd_extra7`, `veh_hd_extra8`, `veh_hd_extra9`) VALUES + (47, 1, 116, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1000, 356.565, -1175.68, 22.7649, 0, 0, 0.0262495, 2, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `veh_when_added`, `veh_how_added`, `veh_who_added`, `veh_hd_extra1`, `veh_hd_extra2`, `veh_hd_extra3`, `veh_hd_extra4`, `veh_hd_extra5`, `veh_hd_extra6`, `veh_hd_extra7`, `veh_hd_extra8`, `veh_hd_extra9`) VALUES + (48, 1, 116, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1000, 360.123, -1175.56, 22.765, 0, 0, 0.00383999, 2, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `veh_when_added`, `veh_how_added`, `veh_who_added`, `veh_hd_extra1`, `veh_hd_extra2`, `veh_hd_extra3`, `veh_hd_extra4`, `veh_hd_extra5`, `veh_hd_extra6`, `veh_hd_extra7`, `veh_hd_extra8`, `veh_hd_extra9`) VALUES + (49, 1, 116, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1000, 363.628, -1175.71, 22.7647, 0, 0, 0.0135003, 2, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `veh_when_added`, `veh_how_added`, `veh_who_added`, `veh_hd_extra1`, `veh_hd_extra2`, `veh_hd_extra3`, `veh_hd_extra4`, `veh_hd_extra5`, `veh_hd_extra6`, `veh_hd_extra7`, `veh_hd_extra8`, `veh_hd_extra9`) VALUES + (50, 1, 116, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1000, 344.813, -1175.93, 22.7648, 0, 0, 0.0261305, 2, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `veh_when_added`, `veh_how_added`, `veh_who_added`, `veh_hd_extra1`, `veh_hd_extra2`, `veh_hd_extra3`, `veh_hd_extra4`, `veh_hd_extra5`, `veh_hd_extra6`, `veh_hd_extra7`, `veh_hd_extra8`, `veh_hd_extra9`) VALUES + (51, 1, 117, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1000, 363.039, -1056.26, 26.0159, 0, 0, -3.13414, 2, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `veh_when_added`, `veh_how_added`, `veh_who_added`, `veh_hd_extra1`, `veh_hd_extra2`, `veh_hd_extra3`, `veh_hd_extra4`, `veh_hd_extra5`, `veh_hd_extra6`, `veh_hd_extra7`, `veh_hd_extra8`, `veh_hd_extra9`) VALUES + (52, 1, 117, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1000, 357.656, -1056.36, 26.016, 0, 0, 3.12152, 2, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `veh_when_added`, `veh_how_added`, `veh_who_added`, `veh_hd_extra1`, `veh_hd_extra2`, `veh_hd_extra3`, `veh_hd_extra4`, `veh_hd_extra5`, `veh_hd_extra6`, `veh_hd_extra7`, `veh_hd_extra8`, `veh_hd_extra9`) VALUES + (53, 1, 117, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1000, 352.455, -1056.27, 26.0166, 0, 0, 3.1086, 2, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `veh_when_added`, `veh_how_added`, `veh_who_added`, `veh_hd_extra1`, `veh_hd_extra2`, `veh_hd_extra3`, `veh_hd_extra4`, `veh_hd_extra5`, `veh_hd_extra6`, `veh_hd_extra7`, `veh_hd_extra8`, `veh_hd_extra9`) VALUES + (54, 1, 107, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1000, 346.23, -1055.48, 25.8838, 0, 0, 3.1377, 2, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `veh_when_added`, `veh_how_added`, `veh_who_added`, `veh_hd_extra1`, `veh_hd_extra2`, `veh_hd_extra3`, `veh_hd_extra4`, `veh_hd_extra5`, `veh_hd_extra6`, `veh_hd_extra7`, `veh_hd_extra8`, `veh_hd_extra9`) VALUES + (55, 1, 107, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1000, 342.364, -1055.36, 25.8839, 0, 0, 3.12213, 2, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `veh_when_added`, `veh_how_added`, `veh_who_added`, `veh_hd_extra1`, `veh_hd_extra2`, `veh_hd_extra3`, `veh_hd_extra4`, `veh_hd_extra5`, `veh_hd_extra6`, `veh_hd_extra7`, `veh_hd_extra8`, `veh_hd_extra9`) VALUES + (56, 1, 107, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1000, 338.239, -1055.29, 25.8841, 0, 0, 3.07547, 2, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `veh_when_added`, `veh_how_added`, `veh_who_added`, `veh_hd_extra1`, `veh_hd_extra2`, `veh_hd_extra3`, `veh_hd_extra4`, `veh_hd_extra5`, `veh_hd_extra6`, `veh_hd_extra7`, `veh_hd_extra8`, `veh_hd_extra9`) VALUES + (57, 1, 107, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1000, 333.56, -1055.31, 25.8841, 0, 0, 3.09697, 2, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `veh_when_added`, `veh_how_added`, `veh_who_added`, `veh_hd_extra1`, `veh_hd_extra2`, `veh_hd_extra3`, `veh_hd_extra4`, `veh_hd_extra5`, `veh_hd_extra6`, `veh_hd_extra7`, `veh_hd_extra8`, `veh_hd_extra9`) VALUES + (58, 2, 156, 0, 0, 0, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, -863.201, -666.353, 11.0311, 0, 0, -3.04091, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `veh_when_added`, `veh_how_added`, `veh_who_added`, `veh_hd_extra1`, `veh_hd_extra2`, `veh_hd_extra3`, `veh_hd_extra4`, `veh_hd_extra5`, `veh_hd_extra6`, `veh_hd_extra7`, `veh_hd_extra8`, `veh_hd_extra9`) VALUES + (59, 2, 156, 0, 0, 0, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, -859.264, -665.929, 11.0121, 0, 0, -3.02909, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `veh_when_added`, `veh_how_added`, `veh_who_added`, `veh_hd_extra1`, `veh_hd_extra2`, `veh_hd_extra3`, `veh_hd_extra4`, `veh_hd_extra5`, `veh_hd_extra6`, `veh_hd_extra7`, `veh_hd_extra8`, `veh_hd_extra9`) VALUES + (60, 2, 156, 0, 0, 0, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, -855.519, -665.594, 10.9943, 0, 0, -3.03498, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `veh_when_added`, `veh_how_added`, `veh_who_added`, `veh_hd_extra1`, `veh_hd_extra2`, `veh_hd_extra3`, `veh_hd_extra4`, `veh_hd_extra5`, `veh_hd_extra6`, `veh_hd_extra7`, `veh_hd_extra8`, `veh_hd_extra9`) VALUES + (61, 2, 156, 0, 0, 0, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, -851.826, -665.276, 10.9767, 0, 0, -3.02548, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `veh_when_added`, `veh_how_added`, `veh_who_added`, `veh_hd_extra1`, `veh_hd_extra2`, `veh_hd_extra3`, `veh_hd_extra4`, `veh_hd_extra5`, `veh_hd_extra6`, `veh_hd_extra7`, `veh_hd_extra8`, `veh_hd_extra9`) VALUES + (62, 2, 156, 0, 0, 0, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, -843.97, -679.789, 10.9396, 0, 0, 1.72875, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `veh_when_added`, `veh_how_added`, `veh_who_added`, `veh_hd_extra1`, `veh_hd_extra2`, `veh_hd_extra3`, `veh_hd_extra4`, `veh_hd_extra5`, `veh_hd_extra6`, `veh_hd_extra7`, `veh_hd_extra8`, `veh_hd_extra9`) VALUES + (63, 2, 156, 0, 0, 0, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, -844.578, -675.52, 10.9427, 0, 0, 1.70593, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `veh_when_added`, `veh_how_added`, `veh_who_added`, `veh_hd_extra1`, `veh_hd_extra2`, `veh_hd_extra3`, `veh_hd_extra4`, `veh_hd_extra5`, `veh_hd_extra6`, `veh_hd_extra7`, `veh_hd_extra8`, `veh_hd_extra9`) VALUES + (64, 2, 156, 0, 0, 0, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, -845.17, -671.403, 10.9455, 0, 0, 1.69794, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `veh_when_added`, `veh_how_added`, `veh_who_added`, `veh_hd_extra1`, `veh_hd_extra2`, `veh_hd_extra3`, `veh_hd_extra4`, `veh_hd_extra5`, `veh_hd_extra6`, `veh_hd_extra7`, `veh_hd_extra8`, `veh_hd_extra9`) VALUES + (65, 2, 157, 0, 0, 0, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, -873.775, -710.286, 11.1915, 0, 0, -2.06147, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `veh_when_added`, `veh_how_added`, `veh_who_added`, `veh_hd_extra1`, `veh_hd_extra2`, `veh_hd_extra3`, `veh_hd_extra4`, `veh_hd_extra5`, `veh_hd_extra6`, `veh_hd_extra7`, `veh_hd_extra8`, `veh_hd_extra9`) VALUES + (66, 2, 157, 0, 0, 0, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, -881.43, -705.81, 11.2087, 0, 0, -2.22486, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `veh_when_added`, `veh_how_added`, `veh_who_added`, `veh_hd_extra1`, `veh_hd_extra2`, `veh_hd_extra3`, `veh_hd_extra4`, `veh_hd_extra5`, `veh_hd_extra6`, `veh_hd_extra7`, `veh_hd_extra8`, `veh_hd_extra9`) VALUES + (67, 2, 236, 0, 0, 0, 0, 76, 76, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, -897.515, -698.598, 10.9724, 0, 0, -3.01881, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `veh_when_added`, `veh_how_added`, `veh_who_added`, `veh_hd_extra1`, `veh_hd_extra2`, `veh_hd_extra3`, `veh_hd_extra4`, `veh_hd_extra5`, `veh_hd_extra6`, `veh_hd_extra7`, `veh_hd_extra8`, `veh_hd_extra9`) VALUES + (68, 2, 236, 0, 0, 0, 0, 76, 76, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, -894.148, -698.128, 10.9701, 0, 0, -3.01433, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `veh_when_added`, `veh_how_added`, `veh_who_added`, `veh_hd_extra1`, `veh_hd_extra2`, `veh_hd_extra3`, `veh_hd_extra4`, `veh_hd_extra5`, `veh_hd_extra6`, `veh_hd_extra7`, `veh_hd_extra8`, `veh_hd_extra9`) VALUES + (69, 2, 236, 0, 0, 0, 0, 76, 76, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, -894.135, -719.859, 10.9428, 0, 0, -1.41224, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `veh_when_added`, `veh_how_added`, `veh_who_added`, `veh_hd_extra1`, `veh_hd_extra2`, `veh_hd_extra3`, `veh_hd_extra4`, `veh_hd_extra5`, `veh_hd_extra6`, `veh_hd_extra7`, `veh_hd_extra8`, `veh_hd_extra9`) VALUES + (70, 2, 236, 0, 0, 0, 0, 52, 52, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, -894.683, -715.826, 10.9485, 0, 0, -1.42683, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `veh_when_added`, `veh_how_added`, `veh_who_added`, `veh_hd_extra1`, `veh_hd_extra2`, `veh_hd_extra3`, `veh_hd_extra4`, `veh_hd_extra5`, `veh_hd_extra6`, `veh_hd_extra7`, `veh_hd_extra8`, `veh_hd_extra9`) VALUES + (71, 2, 156, 0, 0, 0, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, -650.832, 754.237, 11.2032, 0, 0, 1.50302, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `veh_when_added`, `veh_how_added`, `veh_who_added`, `veh_hd_extra1`, `veh_hd_extra2`, `veh_hd_extra3`, `veh_hd_extra4`, `veh_hd_extra5`, `veh_hd_extra6`, `veh_hd_extra7`, `veh_hd_extra8`, `veh_hd_extra9`) VALUES + (72, 2, 156, 0, 0, 0, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, -639.172, 753.413, 11.2032, 0, 0, 1.50092, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `veh_when_added`, `veh_how_added`, `veh_who_added`, `veh_hd_extra1`, `veh_hd_extra2`, `veh_hd_extra3`, `veh_hd_extra4`, `veh_hd_extra5`, `veh_hd_extra6`, `veh_hd_extra7`, `veh_hd_extra8`, `veh_hd_extra9`) VALUES + (73, 2, 156, 0, 0, 0, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, -621.907, 752.278, 11.2033, 0, 0, 1.49172, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `veh_when_added`, `veh_how_added`, `veh_who_added`, `veh_hd_extra1`, `veh_hd_extra2`, `veh_hd_extra3`, `veh_hd_extra4`, `veh_hd_extra5`, `veh_hd_extra6`, `veh_hd_extra7`, `veh_hd_extra8`, `veh_hd_extra9`) VALUES + (74, 2, 156, 0, 0, 0, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, -610.695, 751.54, 11.2031, 0, 0, 1.5242, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `veh_when_added`, `veh_how_added`, `veh_who_added`, `veh_hd_extra1`, `veh_hd_extra2`, `veh_hd_extra3`, `veh_hd_extra4`, `veh_hd_extra5`, `veh_hd_extra6`, `veh_hd_extra7`, `veh_hd_extra8`, `veh_hd_extra9`) VALUES + (75, 2, 157, 0, 0, 0, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, -599.312, 812.778, 11.4341, 0, 0, -1.51886, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `veh_when_added`, `veh_how_added`, `veh_who_added`, `veh_hd_extra1`, `veh_hd_extra2`, `veh_hd_extra3`, `veh_hd_extra4`, `veh_hd_extra5`, `veh_hd_extra6`, `veh_hd_extra7`, `veh_hd_extra8`, `veh_hd_extra9`) VALUES + (76, 2, 157, 0, 0, 0, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, -599.318, 808.625, 11.4343, 0, 0, -1.54175, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `veh_when_added`, `veh_how_added`, `veh_who_added`, `veh_hd_extra1`, `veh_hd_extra2`, `veh_hd_extra3`, `veh_hd_extra4`, `veh_hd_extra5`, `veh_hd_extra6`, `veh_hd_extra7`, `veh_hd_extra8`, `veh_hd_extra9`) VALUES + (77, 2, 157, 0, 0, 0, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, -599.262, 804.179, 11.4321, 0, 0, -1.55996, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `veh_when_added`, `veh_how_added`, `veh_who_added`, `veh_hd_extra1`, `veh_hd_extra2`, `veh_hd_extra3`, `veh_hd_extra4`, `veh_hd_extra5`, `veh_hd_extra6`, `veh_hd_extra7`, `veh_hd_extra8`, `veh_hd_extra9`) VALUES + (78, 2, 236, 0, 0, 0, 0, 52, 52, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, -601.455, 777.717, 11.3721, 0, 0, -1.56567, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `veh_when_added`, `veh_how_added`, `veh_who_added`, `veh_hd_extra1`, `veh_hd_extra2`, `veh_hd_extra3`, `veh_hd_extra4`, `veh_hd_extra5`, `veh_hd_extra6`, `veh_hd_extra7`, `veh_hd_extra8`, `veh_hd_extra9`) VALUES + (79, 2, 236, 0, 0, 0, 0, 3, 3, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, -601.427, 781.32, 11.372, 0, 0, -1.57976, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `veh_when_added`, `veh_how_added`, `veh_who_added`, `veh_hd_extra1`, `veh_hd_extra2`, `veh_hd_extra3`, `veh_hd_extra4`, `veh_hd_extra5`, `veh_hd_extra6`, `veh_hd_extra7`, `veh_hd_extra8`, `veh_hd_extra9`) VALUES + (80, 2, 236, 0, 0, 0, 0, 7, 7, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, -601.614, 785.262, 11.3678, 0, 0, -1.53095, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `veh_when_added`, `veh_how_added`, `veh_who_added`, `veh_hd_extra1`, `veh_hd_extra2`, `veh_hd_extra3`, `veh_hd_extra4`, `veh_hd_extra5`, `veh_hd_extra6`, `veh_hd_extra7`, `veh_hd_extra8`, `veh_hd_extra9`) VALUES + (81, 2, 227, 0, 0, 0, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, -614.282, 804.889, 29.667, 0, 0, -3.13458, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `veh_when_added`, `veh_how_added`, `veh_who_added`, `veh_hd_extra1`, `veh_hd_extra2`, `veh_hd_extra3`, `veh_hd_extra4`, `veh_hd_extra5`, `veh_hd_extra6`, `veh_hd_extra7`, `veh_hd_extra8`, `veh_hd_extra9`) VALUES + (82, 2, 156, 0, 0, 0, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, -665.011, 766.586, 10.8582, 0, 0, -3.12432, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `veh_when_added`, `veh_how_added`, `veh_who_added`, `veh_hd_extra1`, `veh_hd_extra2`, `veh_hd_extra3`, `veh_hd_extra4`, `veh_hd_extra5`, `veh_hd_extra6`, `veh_hd_extra7`, `veh_hd_extra8`, `veh_hd_extra9`) VALUES + (83, 2, 156, 0, 0, 0, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, -665.185, 777.893, 11.0314, 0, 0, 3.13051, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `veh_when_added`, `veh_how_added`, `veh_who_added`, `veh_hd_extra1`, `veh_hd_extra2`, `veh_hd_extra3`, `veh_hd_extra4`, `veh_hd_extra5`, `veh_hd_extra6`, `veh_hd_extra7`, `veh_hd_extra8`, `veh_hd_extra9`) VALUES + (84, 2, 156, 0, 0, 0, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, -665.29, 793.478, 11.0371, 0, 0, -3.13675, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `veh_when_added`, `veh_how_added`, `veh_who_added`, `veh_hd_extra1`, `veh_hd_extra2`, `veh_hd_extra3`, `veh_hd_extra4`, `veh_hd_extra5`, `veh_hd_extra6`, `veh_hd_extra7`, `veh_hd_extra8`, `veh_hd_extra9`) VALUES + (85, 2, 156, 0, 0, 0, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, -665.178, 804.984, 11.0372, 0, 0, 3.13152, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `veh_when_added`, `veh_how_added`, `veh_who_added`, `veh_hd_extra1`, `veh_hd_extra2`, `veh_hd_extra3`, `veh_hd_extra4`, `veh_hd_extra5`, `veh_hd_extra6`, `veh_hd_extra7`, `veh_hd_extra8`, `veh_hd_extra9`) VALUES + (86, 2, 137, 0, 0, 0, 0, 3, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, -695.476, 917.25, 11.193, 0, 0, -1.5752, 2, 10, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `veh_when_added`, `veh_how_added`, `veh_who_added`, `veh_hd_extra1`, `veh_hd_extra2`, `veh_hd_extra3`, `veh_hd_extra4`, `veh_hd_extra5`, `veh_hd_extra6`, `veh_hd_extra7`, `veh_hd_extra8`, `veh_hd_extra9`) VALUES + (87, 2, 137, 0, 0, 0, 0, 3, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, -695.799, 933.069, 11.1976, 0, 0, -1.59279, 2, 10, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `veh_when_added`, `veh_how_added`, `veh_who_added`, `veh_hd_extra1`, `veh_hd_extra2`, `veh_hd_extra3`, `veh_hd_extra4`, `veh_hd_extra5`, `veh_hd_extra6`, `veh_hd_extra7`, `veh_hd_extra8`, `veh_hd_extra9`) VALUES + (88, 2, 137, 0, 0, 0, 0, 3, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, -751.642, 927.235, 11.2813, 0, 0, 1.58276, 2, 10, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `veh_when_added`, `veh_how_added`, `veh_who_added`, `veh_hd_extra1`, `veh_hd_extra2`, `veh_hd_extra3`, `veh_hd_extra4`, `veh_hd_extra5`, `veh_hd_extra6`, `veh_hd_extra7`, `veh_hd_extra8`, `veh_hd_extra9`) VALUES + (89, 2, 156, 0, 0, 0, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 520.53, 503.127, 10.8484, 0, 0, -0.00178437, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `veh_when_added`, `veh_how_added`, `veh_who_added`, `veh_hd_extra1`, `veh_hd_extra2`, `veh_hd_extra3`, `veh_hd_extra4`, `veh_hd_extra5`, `veh_hd_extra6`, `veh_hd_extra7`, `veh_hd_extra8`, `veh_hd_extra9`) VALUES + (90, 2, 156, 0, 0, 0, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 516.364, 503.18, 10.9362, 0, 0, -0.0254137, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `veh_when_added`, `veh_how_added`, `veh_who_added`, `veh_hd_extra1`, `veh_hd_extra2`, `veh_hd_extra3`, `veh_hd_extra4`, `veh_hd_extra5`, `veh_hd_extra6`, `veh_hd_extra7`, `veh_hd_extra8`, `veh_hd_extra9`) VALUES + (91, 2, 156, 0, 0, 0, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 498.01, 503.081, 11.193, 0, 0, 0.0146382, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `veh_when_added`, `veh_how_added`, `veh_who_added`, `veh_hd_extra1`, `veh_hd_extra2`, `veh_hd_extra3`, `veh_hd_extra4`, `veh_hd_extra5`, `veh_hd_extra6`, `veh_hd_extra7`, `veh_hd_extra8`, `veh_hd_extra9`) VALUES + (92, 2, 156, 0, 0, 0, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 502.233, 503.026, 11.1357, 0, 0, 0.0138817, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `veh_when_added`, `veh_how_added`, `veh_who_added`, `veh_hd_extra1`, `veh_hd_extra2`, `veh_hd_extra3`, `veh_hd_extra4`, `veh_hd_extra5`, `veh_hd_extra6`, `veh_hd_extra7`, `veh_hd_extra8`, `veh_hd_extra9`) VALUES + (93, 2, 156, 0, 0, 0, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 493.552, 503.077, 11.2541, 0, 0, -0.0044642, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `veh_when_added`, `veh_how_added`, `veh_who_added`, `veh_hd_extra1`, `veh_hd_extra2`, `veh_hd_extra3`, `veh_hd_extra4`, `veh_hd_extra5`, `veh_hd_extra6`, `veh_hd_extra7`, `veh_hd_extra8`, `veh_hd_extra9`) VALUES + (94, 2, 236, 0, 0, 0, 0, 52, 52, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 490.796, 528.832, 11.3465, 0, 0, 1.54742, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `veh_when_added`, `veh_how_added`, `veh_who_added`, `veh_hd_extra1`, `veh_hd_extra2`, `veh_hd_extra3`, `veh_hd_extra4`, `veh_hd_extra5`, `veh_hd_extra6`, `veh_hd_extra7`, `veh_hd_extra8`, `veh_hd_extra9`) VALUES + (95, 2, 236, 0, 0, 0, 0, 76, 76, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 490.796, 525.464, 11.3455, 0, 0, 1.57115, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `veh_when_added`, `veh_how_added`, `veh_who_added`, `veh_hd_extra1`, `veh_hd_extra2`, `veh_hd_extra3`, `veh_hd_extra4`, `veh_hd_extra5`, `veh_hd_extra6`, `veh_hd_extra7`, `veh_hd_extra8`, `veh_hd_extra9`) VALUES + (96, 2, 157, 0, 0, 0, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 490.527, 519.161, 11.6082, 0, 0, 3.12121, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `veh_when_added`, `veh_how_added`, `veh_who_added`, `veh_hd_extra1`, `veh_hd_extra2`, `veh_hd_extra3`, `veh_hd_extra4`, `veh_hd_extra5`, `veh_hd_extra6`, `veh_hd_extra7`, `veh_hd_extra8`, `veh_hd_extra9`) VALUES + (97, 2, 156, 0, 0, 0, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 372.272, -526.059, 12.1009, 0, 0, -0.731552, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `veh_when_added`, `veh_how_added`, `veh_who_added`, `veh_hd_extra1`, `veh_hd_extra2`, `veh_hd_extra3`, `veh_hd_extra4`, `veh_hd_extra5`, `veh_hd_extra6`, `veh_hd_extra7`, `veh_hd_extra8`, `veh_hd_extra9`) VALUES + (98, 2, 156, 0, 0, 0, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 369.489, -523.585, 12.0988, 0, 0, -0.718855, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `veh_when_added`, `veh_how_added`, `veh_who_added`, `veh_hd_extra1`, `veh_hd_extra2`, `veh_hd_extra3`, `veh_hd_extra4`, `veh_hd_extra5`, `veh_hd_extra6`, `veh_hd_extra7`, `veh_hd_extra8`, `veh_hd_extra9`) VALUES + (99, 2, 156, 0, 0, 0, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 366.674, -521.239, 12.0989, 0, 0, -0.712901, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `veh_when_added`, `veh_how_added`, `veh_who_added`, `veh_hd_extra1`, `veh_hd_extra2`, `veh_hd_extra3`, `veh_hd_extra4`, `veh_hd_extra5`, `veh_hd_extra6`, `veh_hd_extra7`, `veh_hd_extra8`, `veh_hd_extra9`) VALUES + (100, 2, 156, 0, 0, 0, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 363.691, -518.751, 12.0982, 0, 0, -0.698761, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `veh_when_added`, `veh_how_added`, `veh_who_added`, `veh_hd_extra1`, `veh_hd_extra2`, `veh_hd_extra3`, `veh_hd_extra4`, `veh_hd_extra5`, `veh_hd_extra6`, `veh_hd_extra7`, `veh_hd_extra8`, `veh_hd_extra9`) VALUES + (101, 2, 156, 0, 0, 0, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 361.239, -516.717, 12.0989, 0, 0, -0.705683, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `veh_when_added`, `veh_how_added`, `veh_who_added`, `veh_hd_extra1`, `veh_hd_extra2`, `veh_hd_extra3`, `veh_hd_extra4`, `veh_hd_extra5`, `veh_hd_extra6`, `veh_hd_extra7`, `veh_hd_extra8`, `veh_hd_extra9`) VALUES + (102, 2, 156, 0, 0, 0, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 358.335, -514.321, 12.0942, 0, 0, -0.696986, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `veh_when_added`, `veh_how_added`, `veh_who_added`, `veh_hd_extra1`, `veh_hd_extra2`, `veh_hd_extra3`, `veh_hd_extra4`, `veh_hd_extra5`, `veh_hd_extra6`, `veh_hd_extra7`, `veh_hd_extra8`, `veh_hd_extra9`) VALUES + (103, 2, 156, 0, 0, 0, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 355.575, -511.957, 12.0989, 0, 0, -0.701771, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `veh_when_added`, `veh_how_added`, `veh_who_added`, `veh_hd_extra1`, `veh_hd_extra2`, `veh_hd_extra3`, `veh_hd_extra4`, `veh_hd_extra5`, `veh_hd_extra6`, `veh_hd_extra7`, `veh_hd_extra8`, `veh_hd_extra9`) VALUES + (104, 2, 157, 0, 0, 0, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 348.887, -491.942, 12.3596, 0, 0, 2.45143, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `veh_when_added`, `veh_how_added`, `veh_who_added`, `veh_hd_extra1`, `veh_hd_extra2`, `veh_hd_extra3`, `veh_hd_extra4`, `veh_hd_extra5`, `veh_hd_extra6`, `veh_hd_extra7`, `veh_hd_extra8`, `veh_hd_extra9`) VALUES + (105, 2, 157, 0, 0, 0, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 351.751, -494.224, 12.3596, 0, 0, 2.44634, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `veh_when_added`, `veh_how_added`, `veh_who_added`, `veh_hd_extra1`, `veh_hd_extra2`, `veh_hd_extra3`, `veh_hd_extra4`, `veh_hd_extra5`, `veh_hd_extra6`, `veh_hd_extra7`, `veh_hd_extra8`, `veh_hd_extra9`) VALUES + (106, 2, 146, 0, 0, 0, 0, 1, 3, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, -119.267, -918.579, 10.6751, 0, 0, 1.83377, 2, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `veh_when_added`, `veh_how_added`, `veh_who_added`, `veh_hd_extra1`, `veh_hd_extra2`, `veh_hd_extra3`, `veh_hd_extra4`, `veh_hd_extra5`, `veh_hd_extra6`, `veh_hd_extra7`, `veh_hd_extra8`, `veh_hd_extra9`) VALUES + (107, 2, 146, 0, 0, 0, 0, 1, 3, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, -117.954, -924.926, 10.6753, 0, 0, 1.8211, 2, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `veh_when_added`, `veh_how_added`, `veh_who_added`, `veh_hd_extra1`, `veh_hd_extra2`, `veh_hd_extra3`, `veh_hd_extra4`, `veh_hd_extra5`, `veh_hd_extra6`, `veh_hd_extra7`, `veh_hd_extra8`, `veh_hd_extra9`) VALUES + (108, 2, 146, 0, 0, 0, 0, 1, 3, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, -116.5, -931.549, 10.6753, 0, 0, 1.76665, 2, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `veh_when_added`, `veh_how_added`, `veh_who_added`, `veh_hd_extra1`, `veh_hd_extra2`, `veh_hd_extra3`, `veh_hd_extra4`, `veh_hd_extra5`, `veh_hd_extra6`, `veh_hd_extra7`, `veh_hd_extra8`, `veh_hd_extra9`) VALUES + (129, 2, 146, 0, 0, 0, 0, 1, 3, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, -769.326, 1155.62, 12.6228, 0, 0, -3.14049, 2, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `veh_when_added`, `veh_how_added`, `veh_who_added`, `veh_hd_extra1`, `veh_hd_extra2`, `veh_hd_extra3`, `veh_hd_extra4`, `veh_hd_extra5`, `veh_hd_extra6`, `veh_hd_extra7`, `veh_hd_extra8`, `veh_hd_extra9`) VALUES + (130, 2, 146, 0, 0, 0, 0, 1, 3, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, -773.948, 1155.64, 12.6228, 0, 0, 3.13857, 2, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `veh_when_added`, `veh_how_added`, `veh_who_added`, `veh_hd_extra1`, `veh_hd_extra2`, `veh_hd_extra3`, `veh_hd_extra4`, `veh_hd_extra5`, `veh_hd_extra6`, `veh_hd_extra7`, `veh_hd_extra8`, `veh_hd_extra9`) VALUES + (131, 2, 146, 0, 0, 0, 0, 1, 3, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, -769.568, 1131.04, 12.6227, 0, 0, -0.010725, 2, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `veh_when_added`, `veh_how_added`, `veh_who_added`, `veh_hd_extra1`, `veh_hd_extra2`, `veh_hd_extra3`, `veh_hd_extra4`, `veh_hd_extra5`, `veh_hd_extra6`, `veh_hd_extra7`, `veh_hd_extra8`, `veh_hd_extra9`) VALUES + (132, 2, 146, 0, 0, 0, 0, 1, 3, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, -774.835, 1131.13, 12.6229, 0, 0, -0.0206099, 2, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `veh_when_added`, `veh_how_added`, `veh_who_added`, `veh_hd_extra1`, `veh_hd_extra2`, `veh_hd_extra3`, `veh_hd_extra4`, `veh_hd_extra5`, `veh_hd_extra6`, `veh_hd_extra7`, `veh_hd_extra8`, `veh_hd_extra9`) VALUES + (133, 2, 146, 0, 0, 0, 0, 1, 3, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 458.814, 702.22, 11.49, 0, 0, 1.51274, 2, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `veh_when_added`, `veh_how_added`, `veh_who_added`, `veh_hd_extra1`, `veh_hd_extra2`, `veh_hd_extra3`, `veh_hd_extra4`, `veh_hd_extra5`, `veh_hd_extra6`, `veh_hd_extra7`, `veh_hd_extra8`, `veh_hd_extra9`) VALUES + (134, 2, 146, 0, 0, 0, 0, 1, 3, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 467.202, 701.723, 11.6151, 0, 0, 1.50174, 2, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `veh_when_added`, `veh_how_added`, `veh_who_added`, `veh_hd_extra1`, `veh_hd_extra2`, `veh_hd_extra3`, `veh_hd_extra4`, `veh_hd_extra5`, `veh_hd_extra6`, `veh_hd_extra7`, `veh_hd_extra8`, `veh_hd_extra9`) VALUES + (135, 2, 150, 0, 0, 0, 0, 6, 73, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, -1005.69, 208.713, 11.1279, 0, 0, 3.03758, 2, 14, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `veh_when_added`, `veh_how_added`, `veh_who_added`, `veh_hd_extra1`, `veh_hd_extra2`, `veh_hd_extra3`, `veh_hd_extra4`, `veh_hd_extra5`, `veh_hd_extra6`, `veh_hd_extra7`, `veh_hd_extra8`, `veh_hd_extra9`) VALUES + (136, 2, 150, 0, 0, 0, 0, 6, 75, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, -1002.12, 203.73, 11.4539, 0, 0, 3.01694, 2, 14, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `veh_when_added`, `veh_how_added`, `veh_who_added`, `veh_hd_extra1`, `veh_hd_extra2`, `veh_hd_extra3`, `veh_hd_extra4`, `veh_hd_extra5`, `veh_hd_extra6`, `veh_hd_extra7`, `veh_hd_extra8`, `veh_hd_extra9`) VALUES + (137, 2, 168, 0, 0, 0, 0, 6, 76, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, -1008.54, 186.246, 11.3789, 0, 0, -0.157828, 2, 14, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `veh_when_added`, `veh_how_added`, `veh_who_added`, `veh_hd_extra1`, `veh_hd_extra2`, `veh_hd_extra3`, `veh_hd_extra4`, `veh_hd_extra5`, `veh_hd_extra6`, `veh_hd_extra7`, `veh_hd_extra8`, `veh_hd_extra9`) VALUES + (138, 2, 168, 0, 0, 0, 0, 6, 76, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, -995.796, 193.143, 11.4015, 0, 0, 1.41776, 2, 14, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `veh_when_added`, `veh_how_added`, `veh_who_added`, `veh_hd_extra1`, `veh_hd_extra2`, `veh_hd_extra3`, `veh_hd_extra4`, `veh_hd_extra5`, `veh_hd_extra6`, `veh_hd_extra7`, `veh_hd_extra8`, `veh_hd_extra9`) VALUES + (139, 2, 167, 0, 0, 0, 0, 56, 75, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, -1141.98, -283.386, 11.3194, 0, 0, -3.09345, 2, 18, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `veh_when_added`, `veh_how_added`, `veh_who_added`, `veh_hd_extra1`, `veh_hd_extra2`, `veh_hd_extra3`, `veh_hd_extra4`, `veh_hd_extra5`, `veh_hd_extra6`, `veh_hd_extra7`, `veh_hd_extra8`, `veh_hd_extra9`) VALUES + (140, 2, 167, 0, 0, 0, 0, 13, 76, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, -1143.05, -270.229, 11.4251, 0, 0, -3.05214, 2, 18, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `veh_when_added`, `veh_how_added`, `veh_who_added`, `veh_hd_extra1`, `veh_hd_extra2`, `veh_hd_extra3`, `veh_hd_extra4`, `veh_hd_extra5`, `veh_hd_extra6`, `veh_hd_extra7`, `veh_hd_extra8`, `veh_hd_extra9`) VALUES + (141, 2, 167, 0, 0, 0, 0, 13, 76, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, -1143.99, -256.669, 11.5147, 0, 0, -3.07535, 2, 18, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `veh_when_added`, `veh_how_added`, `veh_who_added`, `veh_hd_extra1`, `veh_hd_extra2`, `veh_hd_extra3`, `veh_hd_extra4`, `veh_hd_extra5`, `veh_hd_extra6`, `veh_hd_extra7`, `veh_hd_extra8`, `veh_hd_extra9`) VALUES + (142, 2, 146, 0, 0, 0, 0, 1, 3, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, -873.256, -482.571, 11.3251, 0, 0, -1.5271, 2, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `veh_when_added`, `veh_how_added`, `veh_who_added`, `veh_hd_extra1`, `veh_hd_extra2`, `veh_hd_extra3`, `veh_hd_extra4`, `veh_hd_extra5`, `veh_hd_extra6`, `veh_hd_extra7`, `veh_hd_extra8`, `veh_hd_extra9`) VALUES + (143, 2, 146, 0, 0, 0, 0, 1, 3, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, -873.249, -478.507, 11.3193, 0, 0, -1.55587, 2, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `veh_when_added`, `veh_how_added`, `veh_who_added`, `veh_hd_extra1`, `veh_hd_extra2`, `veh_hd_extra3`, `veh_hd_extra4`, `veh_hd_extra5`, `veh_hd_extra6`, `veh_hd_extra7`, `veh_hd_extra8`, `veh_hd_extra9`) VALUES + (144, 2, 138, 0, 0, 0, 0, 1, 75, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, -1243.33, 23.4004, 12.013, 0, 0, 3.12587, 2, 22, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `veh_when_added`, `veh_how_added`, `veh_who_added`, `veh_hd_extra1`, `veh_hd_extra2`, `veh_hd_extra3`, `veh_hd_extra4`, `veh_hd_extra5`, `veh_hd_extra6`, `veh_hd_extra7`, `veh_hd_extra8`, `veh_hd_extra9`) VALUES + (145, 2, 138, 0, 0, 0, 0, 1, 75, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, -1247.7, 23.4549, 12.0141, 0, 0, 3.1171, 2, 22, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `veh_when_added`, `veh_how_added`, `veh_who_added`, `veh_hd_extra1`, `veh_hd_extra2`, `veh_hd_extra3`, `veh_hd_extra4`, `veh_hd_extra5`, `veh_hd_extra6`, `veh_hd_extra7`, `veh_hd_extra8`, `veh_hd_extra9`) VALUES + (146, 2, 138, 0, 0, 0, 0, 1, 75, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, -1251.99, 23.5308, 12.0096, 0, 0, 3.12793, 2, 22, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `veh_when_added`, `veh_how_added`, `veh_who_added`, `veh_hd_extra1`, `veh_hd_extra2`, `veh_hd_extra3`, `veh_hd_extra4`, `veh_hd_extra5`, `veh_hd_extra6`, `veh_hd_extra7`, `veh_hd_extra8`, `veh_hd_extra9`) VALUES + (147, 4, 596, 0, 0, 0, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 1602.73, -1703.95, 5.62027, 0, 0, 1.59558, 2, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `veh_when_added`, `veh_how_added`, `veh_who_added`, `veh_hd_extra1`, `veh_hd_extra2`, `veh_hd_extra3`, `veh_hd_extra4`, `veh_hd_extra5`, `veh_hd_extra6`, `veh_hd_extra7`, `veh_hd_extra8`, `veh_hd_extra9`) VALUES + (148, 4, 596, 0, 0, 0, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 1602.74, -1700.18, 5.61885, 0, 0, 1.59013, 2, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `veh_when_added`, `veh_how_added`, `veh_who_added`, `veh_hd_extra1`, `veh_hd_extra2`, `veh_hd_extra3`, `veh_hd_extra4`, `veh_hd_extra5`, `veh_hd_extra6`, `veh_hd_extra7`, `veh_hd_extra8`, `veh_hd_extra9`) VALUES + (149, 4, 596, 0, 0, 0, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 1602.68, -1696.18, 5.61891, 0, 0, 1.57734, 2, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `veh_when_added`, `veh_how_added`, `veh_who_added`, `veh_hd_extra1`, `veh_hd_extra2`, `veh_hd_extra3`, `veh_hd_extra4`, `veh_hd_extra5`, `veh_hd_extra6`, `veh_hd_extra7`, `veh_hd_extra8`, `veh_hd_extra9`) VALUES + (150, 4, 596, 0, 0, 0, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 1602.67, -1691.93, 5.61976, 0, 0, 1.59322, 2, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `veh_when_added`, `veh_how_added`, `veh_who_added`, `veh_hd_extra1`, `veh_hd_extra2`, `veh_hd_extra3`, `veh_hd_extra4`, `veh_hd_extra5`, `veh_hd_extra6`, `veh_hd_extra7`, `veh_hd_extra8`, `veh_hd_extra9`) VALUES + (151, 4, 596, 0, 0, 0, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 2083.1, -1706.03, 13.104, 0, 0, 0.635562, 2, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `veh_when_added`, `veh_how_added`, `veh_who_added`, `veh_hd_extra1`, `veh_hd_extra2`, `veh_hd_extra3`, `veh_hd_extra4`, `veh_hd_extra5`, `veh_hd_extra6`, `veh_hd_extra7`, `veh_hd_extra8`, `veh_hd_extra9`) VALUES + (152, 4, 596, 0, 0, 0, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 1595.43, -1711.89, 5.61871, 0, 0, -0.0106168, 2, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `veh_when_added`, `veh_how_added`, `veh_who_added`, `veh_hd_extra1`, `veh_hd_extra2`, `veh_hd_extra3`, `veh_hd_extra4`, `veh_hd_extra5`, `veh_hd_extra6`, `veh_hd_extra7`, `veh_hd_extra8`, `veh_hd_extra9`) VALUES + (153, 4, 596, 0, 0, 0, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 1591.43, -1711.87, 5.61965, 0, 0, 0.00642908, 2, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `veh_when_added`, `veh_how_added`, `veh_who_added`, `veh_hd_extra1`, `veh_hd_extra2`, `veh_hd_extra3`, `veh_hd_extra4`, `veh_hd_extra5`, `veh_hd_extra6`, `veh_hd_extra7`, `veh_hd_extra8`, `veh_hd_extra9`) VALUES + (154, 4, 596, 0, 0, 0, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 1587.33, -1711.86, 5.61184, 0, 0, 0.00975822, 2, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `veh_when_added`, `veh_how_added`, `veh_who_added`, `veh_hd_extra1`, `veh_hd_extra2`, `veh_hd_extra3`, `veh_hd_extra4`, `veh_hd_extra5`, `veh_hd_extra6`, `veh_hd_extra7`, `veh_hd_extra8`, `veh_hd_extra9`) VALUES + (155, 4, 427, 0, 0, 0, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 1526.72, -1644.82, 6.02297, 0, 0, -3.13362, 2, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `veh_when_added`, `veh_how_added`, `veh_who_added`, `veh_hd_extra1`, `veh_hd_extra2`, `veh_hd_extra3`, `veh_hd_extra4`, `veh_hd_extra5`, `veh_hd_extra6`, `veh_hd_extra7`, `veh_hd_extra8`, `veh_hd_extra9`) VALUES + (156, 4, 427, 0, 0, 0, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 1530.62, -1644.78, 6.02321, 0, 0, -3.11574, 2, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `veh_when_added`, `veh_how_added`, `veh_who_added`, `veh_hd_extra1`, `veh_hd_extra2`, `veh_hd_extra3`, `veh_hd_extra4`, `veh_hd_extra5`, `veh_hd_extra6`, `veh_hd_extra7`, `veh_hd_extra8`, `veh_hd_extra9`) VALUES + (157, 4, 427, 0, 0, 0, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 1534.72, -1644.71, 6.03863, 0, 0, -3.13567, 2, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `veh_when_added`, `veh_how_added`, `veh_who_added`, `veh_hd_extra1`, `veh_hd_extra2`, `veh_hd_extra3`, `veh_hd_extra4`, `veh_hd_extra5`, `veh_hd_extra6`, `veh_hd_extra7`, `veh_hd_extra8`, `veh_hd_extra9`) VALUES + (158, 4, 599, 0, 0, 0, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 1545.99, -1651.07, 6.08226, 0, 0, 1.56824, 2, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `veh_when_added`, `veh_how_added`, `veh_who_added`, `veh_hd_extra1`, `veh_hd_extra2`, `veh_hd_extra3`, `veh_hd_extra4`, `veh_hd_extra5`, `veh_hd_extra6`, `veh_hd_extra7`, `veh_hd_extra8`, `veh_hd_extra9`) VALUES + (159, 4, 599, 0, 0, 0, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 1546.03, -1654.96, 6.03352, 0, 0, 1.54986, 2, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `veh_when_added`, `veh_how_added`, `veh_who_added`, `veh_hd_extra1`, `veh_hd_extra2`, `veh_hd_extra3`, `veh_hd_extra4`, `veh_hd_extra5`, `veh_hd_extra6`, `veh_hd_extra7`, `veh_hd_extra8`, `veh_hd_extra9`) VALUES + (160, 4, 426, 0, 0, 0, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 1545.79, -1667.84, 5.62373, 0, 0, 1.56514, 2, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `veh_when_added`, `veh_how_added`, `veh_who_added`, `veh_hd_extra1`, `veh_hd_extra2`, `veh_hd_extra3`, `veh_hd_extra4`, `veh_hd_extra5`, `veh_hd_extra6`, `veh_hd_extra7`, `veh_hd_extra8`, `veh_hd_extra9`) VALUES + (161, 4, 426, 0, 0, 0, 0, 10, 10, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 1545.98, -1672.1, 5.63141, 0, 0, 1.5917, 2, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `veh_when_added`, `veh_how_added`, `veh_who_added`, `veh_hd_extra1`, `veh_hd_extra2`, `veh_hd_extra3`, `veh_hd_extra4`, `veh_hd_extra5`, `veh_hd_extra6`, `veh_hd_extra7`, `veh_hd_extra8`, `veh_hd_extra9`) VALUES + (162, 2, 131, 0, 0, 0, 0, 5, 62, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, -979.65, -882.122, 12.8471, 0, 0, 0.706624, 6, 201, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `veh_when_added`, `veh_how_added`, `veh_who_added`, `veh_hd_extra1`, `veh_hd_extra2`, `veh_hd_extra3`, `veh_hd_extra4`, `veh_hd_extra5`, `veh_hd_extra6`, `veh_hd_extra7`, `veh_hd_extra8`, `veh_hd_extra9`) VALUES + (163, 2, 175, 0, 0, 0, 0, 10, 10, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, -982.328, -884.745, 12.8644, 0, 0, 0.752705, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `veh_when_added`, `veh_how_added`, `veh_who_added`, `veh_hd_extra1`, `veh_hd_extra2`, `veh_hd_extra3`, `veh_hd_extra4`, `veh_hd_extra5`, `veh_hd_extra6`, `veh_hd_extra7`, `veh_hd_extra8`, `veh_hd_extra9`) VALUES + (164, 2, 134, 0, 0, 0, 0, 37, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, -984.716, -887.286, 12.7108, 0, 0, 0.798329, 6, 201, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 750, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `veh_when_added`, `veh_how_added`, `veh_who_added`, `veh_hd_extra1`, `veh_hd_extra2`, `veh_hd_extra3`, `veh_hd_extra4`, `veh_hd_extra5`, `veh_hd_extra6`, `veh_hd_extra7`, `veh_hd_extra8`, `veh_hd_extra9`) VALUES + (165, 4, 523, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 1526.17, -1680.36, 5.45989, 0, 0, -0.797715, 2, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `veh_when_added`, `veh_how_added`, `veh_who_added`, `veh_hd_extra1`, `veh_hd_extra2`, `veh_hd_extra3`, `veh_hd_extra4`, `veh_hd_extra5`, `veh_hd_extra6`, `veh_hd_extra7`, `veh_hd_extra8`, `veh_hd_extra9`) VALUES + (166, 4, 523, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 1526.06, -1674.86, 5.46142, 0, 0, -2.37213, 2, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `veh_when_added`, `veh_how_added`, `veh_who_added`, `veh_hd_extra1`, `veh_hd_extra2`, `veh_hd_extra3`, `veh_hd_extra4`, `veh_hd_extra5`, `veh_hd_extra6`, `veh_hd_extra7`, `veh_hd_extra8`, `veh_hd_extra9`) VALUES + (167, 4, 523, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 1529.73, -1674.89, 5.4601, 0, 0, -2.37606, 2, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `veh_when_added`, `veh_how_added`, `veh_who_added`, `veh_hd_extra1`, `veh_hd_extra2`, `veh_hd_extra3`, `veh_hd_extra4`, `veh_hd_extra5`, `veh_hd_extra6`, `veh_hd_extra7`, `veh_hd_extra8`, `veh_hd_extra9`) VALUES + (168, 4, 523, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 1529.64, -1680.68, 5.46212, 0, 0, -0.793975, 2, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `veh_when_added`, `veh_how_added`, `veh_who_added`, `veh_hd_extra1`, `veh_hd_extra2`, `veh_hd_extra3`, `veh_hd_extra4`, `veh_hd_extra5`, `veh_hd_extra6`, `veh_hd_extra7`, `veh_hd_extra8`, `veh_hd_extra9`) VALUES + (169, 4, 416, 0, 0, 0, 0, 1, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 1178.73, -1338.94, 14.0094, 0, 0, -1.54939, 2, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `veh_when_added`, `veh_how_added`, `veh_who_added`, `veh_hd_extra1`, `veh_hd_extra2`, `veh_hd_extra3`, `veh_hd_extra4`, `veh_hd_extra5`, `veh_hd_extra6`, `veh_hd_extra7`, `veh_hd_extra8`, `veh_hd_extra9`) VALUES + (170, 4, 416, 0, 0, 0, 0, 1, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 1178.46, -1308.67, 13.9791, 0, 0, -1.56455, 2, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `veh_when_added`, `veh_how_added`, `veh_who_added`, `veh_hd_extra1`, `veh_hd_extra2`, `veh_hd_extra3`, `veh_hd_extra4`, `veh_hd_extra5`, `veh_hd_extra6`, `veh_hd_extra7`, `veh_hd_extra8`, `veh_hd_extra9`) VALUES + (171, 4, 416, 0, 0, 0, 0, 1, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 2036.82, -1425.53, 17.1413, 0, 0, -0.00217407, 2, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `veh_when_added`, `veh_how_added`, `veh_who_added`, `veh_hd_extra1`, `veh_hd_extra2`, `veh_hd_extra3`, `veh_hd_extra4`, `veh_hd_extra5`, `veh_hd_extra6`, `veh_hd_extra7`, `veh_hd_extra8`, `veh_hd_extra9`) VALUES + (172, 4, 416, 0, 0, 0, 0, 1, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 2024.7, -1409.68, 17.1419, 0, 0, 1.55537, 2, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `veh_when_added`, `veh_how_added`, `veh_who_added`, `veh_hd_extra1`, `veh_hd_extra2`, `veh_hd_extra3`, `veh_hd_extra4`, `veh_hd_extra5`, `veh_hd_extra6`, `veh_hd_extra7`, `veh_hd_extra8`, `veh_hd_extra9`) VALUES + (173, 4, 408, 0, 0, 0, 0, 26, 26, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 2338.19, -2085.52, 14.0841, 0, 0, 1.56666, 2, 24, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `veh_when_added`, `veh_how_added`, `veh_who_added`, `veh_hd_extra1`, `veh_hd_extra2`, `veh_hd_extra3`, `veh_hd_extra4`, `veh_hd_extra5`, `veh_hd_extra6`, `veh_hd_extra7`, `veh_hd_extra8`, `veh_hd_extra9`) VALUES + (174, 4, 408, 0, 0, 0, 0, 26, 26, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 2338.24, -2090.4, 14.097, 0, 0, 1.57921, 2, 24, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `veh_when_added`, `veh_how_added`, `veh_who_added`, `veh_hd_extra1`, `veh_hd_extra2`, `veh_hd_extra3`, `veh_hd_extra4`, `veh_hd_extra5`, `veh_hd_extra6`, `veh_hd_extra7`, `veh_hd_extra8`, `veh_hd_extra9`) VALUES + (175, 4, 408, 0, 0, 0, 0, 26, 26, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 2338.3, -2095.48, 14.0909, 0, 0, 1.57749, 2, 24, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `veh_when_added`, `veh_how_added`, `veh_who_added`, `veh_hd_extra1`, `veh_hd_extra2`, `veh_hd_extra3`, `veh_hd_extra4`, `veh_hd_extra5`, `veh_hd_extra6`, `veh_hd_extra7`, `veh_hd_extra8`, `veh_hd_extra9`) VALUES + (176, 4, 431, 0, 0, 0, 0, 47, 74, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 1781.16, -1887.68, 13.493, 0, 0, -1.54371, 2, 20, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `veh_when_added`, `veh_how_added`, `veh_who_added`, `veh_hd_extra1`, `veh_hd_extra2`, `veh_hd_extra3`, `veh_hd_extra4`, `veh_hd_extra5`, `veh_hd_extra6`, `veh_hd_extra7`, `veh_hd_extra8`, `veh_hd_extra9`) VALUES + (177, 4, 431, 0, 0, 0, 0, 92, 72, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 1781.08, -1892.33, 13.492, 0, 0, -1.55517, 2, 20, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `veh_when_added`, `veh_how_added`, `veh_who_added`, `veh_hd_extra1`, `veh_hd_extra2`, `veh_hd_extra3`, `veh_hd_extra4`, `veh_hd_extra5`, `veh_hd_extra6`, `veh_hd_extra7`, `veh_hd_extra8`, `veh_hd_extra9`) VALUES + (178, 4, 431, 0, 0, 0, 0, 92, 72, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 1780.83, -1897.52, 13.4905, 0, 0, -1.56997, 2, 20, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `veh_when_added`, `veh_how_added`, `veh_who_added`, `veh_hd_extra1`, `veh_hd_extra2`, `veh_hd_extra3`, `veh_hd_extra4`, `veh_hd_extra5`, `veh_hd_extra6`, `veh_hd_extra7`, `veh_hd_extra8`, `veh_hd_extra9`) VALUES + (179, 4, 420, 0, 0, 0, 0, 6, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 1804.27, -1932.53, 13.1664, 0, 0, -0.015131, 2, 16, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `veh_when_added`, `veh_how_added`, `veh_who_added`, `veh_hd_extra1`, `veh_hd_extra2`, `veh_hd_extra3`, `veh_hd_extra4`, `veh_hd_extra5`, `veh_hd_extra6`, `veh_hd_extra7`, `veh_hd_extra8`, `veh_hd_extra9`) VALUES + (180, 4, 420, 0, 0, 0, 0, 6, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 1800.35, -1932.4, 13.166, 0, 0, -0.0127972, 2, 16, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `veh_when_added`, `veh_how_added`, `veh_who_added`, `veh_hd_extra1`, `veh_hd_extra2`, `veh_hd_extra3`, `veh_hd_extra4`, `veh_hd_extra5`, `veh_hd_extra6`, `veh_hd_extra7`, `veh_hd_extra8`, `veh_hd_extra9`) VALUES + (181, 4, 420, 0, 0, 0, 0, 6, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 1796.72, -1932.55, 13.1653, 0, 0, -0.000382929, 2, 16, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `veh_when_added`, `veh_how_added`, `veh_who_added`, `veh_hd_extra1`, `veh_hd_extra2`, `veh_hd_extra3`, `veh_hd_extra4`, `veh_hd_extra5`, `veh_hd_extra6`, `veh_hd_extra7`, `veh_hd_extra8`, `veh_hd_extra9`) VALUES + (182, 4, 438, 0, 0, 0, 0, 6, 76, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 1792.65, -1932.66, 13.3902, 0, 0, 0.00784995, 2, 16, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `veh_when_added`, `veh_how_added`, `veh_who_added`, `veh_hd_extra1`, `veh_hd_extra2`, `veh_hd_extra3`, `veh_hd_extra4`, `veh_hd_extra5`, `veh_hd_extra6`, `veh_hd_extra7`, `veh_hd_extra8`, `veh_hd_extra9`) VALUES + (183, 4, 438, 0, 0, 0, 0, 6, 76, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 1788.85, -1932.83, 13.3847, 0, 0, 0.025678, 2, 16, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `veh_when_added`, `veh_how_added`, `veh_who_added`, `veh_hd_extra1`, `veh_hd_extra2`, `veh_hd_extra3`, `veh_hd_extra4`, `veh_hd_extra5`, `veh_hd_extra6`, `veh_hd_extra7`, `veh_hd_extra8`, `veh_hd_extra9`) VALUES + (184, 4, 407, 0, 0, 0, 0, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 1147.58, -1295.9, 13.8958, 0, 0, 0.00109566, 2, 12, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `veh_when_added`, `veh_how_added`, `veh_who_added`, `veh_hd_extra1`, `veh_hd_extra2`, `veh_hd_extra3`, `veh_hd_extra4`, `veh_hd_extra5`, `veh_hd_extra6`, `veh_hd_extra7`, `veh_hd_extra8`, `veh_hd_extra9`) VALUES + (185, 4, 407, 0, 0, 0, 0, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 1147.58, -1308.6, 13.9144, 0, 0, 0.00538338, 2, 12, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `veh_when_added`, `veh_how_added`, `veh_who_added`, `veh_hd_extra1`, `veh_hd_extra2`, `veh_hd_extra3`, `veh_hd_extra4`, `veh_hd_extra5`, `veh_hd_extra6`, `veh_hd_extra7`, `veh_hd_extra8`, `veh_hd_extra9`) VALUES + (186, 4, 598, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 2282.26, 2442.01, 10.5652, 0, 0, -0.0100905, 2, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `veh_when_added`, `veh_how_added`, `veh_who_added`, `veh_hd_extra1`, `veh_hd_extra2`, `veh_hd_extra3`, `veh_hd_extra4`, `veh_hd_extra5`, `veh_hd_extra6`, `veh_hd_extra7`, `veh_hd_extra8`, `veh_hd_extra9`) VALUES + (187, 4, 598, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 2277.82, 2441.92, 10.5665, 0, 0, 0.0142917, 2, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `veh_when_added`, `veh_how_added`, `veh_who_added`, `veh_hd_extra1`, `veh_hd_extra2`, `veh_hd_extra3`, `veh_hd_extra4`, `veh_hd_extra5`, `veh_hd_extra6`, `veh_hd_extra7`, `veh_hd_extra8`, `veh_hd_extra9`) VALUES + (188, 4, 598, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 2273.75, 2441.84, 10.5656, 0, 0, 0.00445989, 2, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `veh_when_added`, `veh_how_added`, `veh_who_added`, `veh_hd_extra1`, `veh_hd_extra2`, `veh_hd_extra3`, `veh_hd_extra4`, `veh_hd_extra5`, `veh_hd_extra6`, `veh_hd_extra7`, `veh_hd_extra8`, `veh_hd_extra9`) VALUES + (189, 4, 598, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 2269.03, 2441.76, 10.565, 0, 0, 0.02489, 2, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `veh_when_added`, `veh_how_added`, `veh_who_added`, `veh_hd_extra1`, `veh_hd_extra2`, `veh_hd_extra3`, `veh_hd_extra4`, `veh_hd_extra5`, `veh_hd_extra6`, `veh_hd_extra7`, `veh_hd_extra8`, `veh_hd_extra9`) VALUES + (190, 4, 598, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 2277.94, 2478.61, 10.5693, 0, 0, 3.13522, 2, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `veh_when_added`, `veh_how_added`, `veh_who_added`, `veh_hd_extra1`, `veh_hd_extra2`, `veh_hd_extra3`, `veh_hd_extra4`, `veh_hd_extra5`, `veh_hd_extra6`, `veh_hd_extra7`, `veh_hd_extra8`, `veh_hd_extra9`) VALUES + (191, 4, 598, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 2273.44, 2478.64, 10.5671, 0, 0, 3.12822, 2, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `veh_when_added`, `veh_how_added`, `veh_who_added`, `veh_hd_extra1`, `veh_hd_extra2`, `veh_hd_extra3`, `veh_hd_extra4`, `veh_hd_extra5`, `veh_hd_extra6`, `veh_hd_extra7`, `veh_hd_extra8`, `veh_hd_extra9`) VALUES + (192, 4, 598, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 2269.09, 2478.64, 10.5649, 0, 0, 3.13244, 2, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `veh_when_added`, `veh_how_added`, `veh_who_added`, `veh_hd_extra1`, `veh_hd_extra2`, `veh_hd_extra3`, `veh_hd_extra4`, `veh_hd_extra5`, `veh_hd_extra6`, `veh_hd_extra7`, `veh_hd_extra8`, `veh_hd_extra9`) VALUES + (193, 4, 598, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 2282.15, 2478.59, 10.5668, 0, 0, -3.12538, 2, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `veh_when_added`, `veh_how_added`, `veh_who_added`, `veh_hd_extra1`, `veh_hd_extra2`, `veh_hd_extra3`, `veh_hd_extra4`, `veh_hd_extra5`, `veh_hd_extra6`, `veh_hd_extra7`, `veh_hd_extra8`, `veh_hd_extra9`) VALUES + (194, 4, 407, 0, 0, 0, 0, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 1751.1, 2077.36, 11.0579, 0, 0, 3.13707, 2, 12, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `veh_when_added`, `veh_how_added`, `veh_who_added`, `veh_hd_extra1`, `veh_hd_extra2`, `veh_hd_extra3`, `veh_hd_extra4`, `veh_hd_extra5`, `veh_hd_extra6`, `veh_hd_extra7`, `veh_hd_extra8`, `veh_hd_extra9`) VALUES + (195, 4, 407, 0, 0, 0, 0, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 1756.99, 2077.55, 11.0555, 0, 0, -3.13337, 2, 12, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `veh_when_added`, `veh_how_added`, `veh_who_added`, `veh_hd_extra1`, `veh_hd_extra2`, `veh_hd_extra3`, `veh_hd_extra4`, `veh_hd_extra5`, `veh_hd_extra6`, `veh_hd_extra7`, `veh_hd_extra8`, `veh_hd_extra9`) VALUES + (196, 4, 407, 0, 0, 0, 0, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 1763.96, 2077.97, 11.0573, 0, 0, -3.10259, 2, 12, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `veh_when_added`, `veh_how_added`, `veh_who_added`, `veh_hd_extra1`, `veh_hd_extra2`, `veh_hd_extra3`, `veh_hd_extra4`, `veh_hd_extra5`, `veh_hd_extra6`, `veh_hd_extra7`, `veh_hd_extra8`, `veh_hd_extra9`) VALUES + (197, 4, 597, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, -1572.66, 742.629, -5.47258, 0, 0, 1.57093, 2, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `veh_when_added`, `veh_how_added`, `veh_who_added`, `veh_hd_extra1`, `veh_hd_extra2`, `veh_hd_extra3`, `veh_hd_extra4`, `veh_hd_extra5`, `veh_hd_extra6`, `veh_hd_extra7`, `veh_hd_extra8`, `veh_hd_extra9`) VALUES + (198, 4, 597, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, -1572.64, 738.657, -5.47407, 0, 0, 1.5799, 2, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `veh_when_added`, `veh_how_added`, `veh_who_added`, `veh_hd_extra1`, `veh_hd_extra2`, `veh_hd_extra3`, `veh_hd_extra4`, `veh_hd_extra5`, `veh_hd_extra6`, `veh_hd_extra7`, `veh_hd_extra8`, `veh_hd_extra9`) VALUES + (199, 4, 597, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, -1572.6, 734.641, -5.47307, 0, 0, 1.57367, 2, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `veh_when_added`, `veh_how_added`, `veh_who_added`, `veh_hd_extra1`, `veh_hd_extra2`, `veh_hd_extra3`, `veh_hd_extra4`, `veh_hd_extra5`, `veh_hd_extra6`, `veh_hd_extra7`, `veh_hd_extra8`, `veh_hd_extra9`) VALUES + (200, 4, 597, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, -1572.56, 730.619, -5.47164, 0, 0, 1.57203, 2, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `veh_when_added`, `veh_how_added`, `veh_who_added`, `veh_hd_extra1`, `veh_hd_extra2`, `veh_hd_extra3`, `veh_hd_extra4`, `veh_hd_extra5`, `veh_hd_extra6`, `veh_hd_extra7`, `veh_hd_extra8`, `veh_hd_extra9`) VALUES + (201, 4, 597, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, -1572.46, 726.494, -5.47229, 0, 0, 1.57229, 2, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `veh_when_added`, `veh_how_added`, `veh_who_added`, `veh_hd_extra1`, `veh_hd_extra2`, `veh_hd_extra3`, `veh_hd_extra4`, `veh_hd_extra5`, `veh_hd_extra6`, `veh_hd_extra7`, `veh_hd_extra8`, `veh_hd_extra9`) VALUES + (202, 4, 597, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, -1579.91, 750.258, -5.47212, 0, 0, 3.13972, 2, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `veh_when_added`, `veh_how_added`, `veh_who_added`, `veh_hd_extra1`, `veh_hd_extra2`, `veh_hd_extra3`, `veh_hd_extra4`, `veh_hd_extra5`, `veh_hd_extra6`, `veh_hd_extra7`, `veh_hd_extra8`, `veh_hd_extra9`) VALUES + (203, 4, 597, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, -1584.04, 750.231, -5.47137, 0, 0, -3.13672, 2, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `veh_when_added`, `veh_how_added`, `veh_who_added`, `veh_hd_extra1`, `veh_hd_extra2`, `veh_hd_extra3`, `veh_hd_extra4`, `veh_hd_extra5`, `veh_hd_extra6`, `veh_hd_extra7`, `veh_hd_extra8`, `veh_hd_extra9`) VALUES + (204, 4, 597, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, -1588.07, 750.247, -5.47243, 0, 0, 3.13574, 2, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `veh_when_added`, `veh_how_added`, `veh_who_added`, `veh_hd_extra1`, `veh_hd_extra2`, `veh_hd_extra3`, `veh_hd_extra4`, `veh_hd_extra5`, `veh_hd_extra6`, `veh_hd_extra7`, `veh_hd_extra8`, `veh_hd_extra9`) VALUES + (205, 4, 597, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, -1592.38, 750.296, -5.47143, 0, 0, 3.13692, 2, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `veh_when_added`, `veh_how_added`, `veh_who_added`, `veh_hd_extra1`, `veh_hd_extra2`, `veh_hd_extra3`, `veh_hd_extra4`, `veh_hd_extra5`, `veh_hd_extra6`, `veh_hd_extra7`, `veh_hd_extra8`, `veh_hd_extra9`) VALUES + (206, 4, 523, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, -1611.79, 730.701, -5.67174, 0, 0, 0.560641, 2, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `veh_when_added`, `veh_how_added`, `veh_who_added`, `veh_hd_extra1`, `veh_hd_extra2`, `veh_hd_extra3`, `veh_hd_extra4`, `veh_hd_extra5`, `veh_hd_extra6`, `veh_hd_extra7`, `veh_hd_extra8`, `veh_hd_extra9`) VALUES + (207, 4, 523, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, -1617.18, 730.908, -5.66764, 0, 0, -0.753548, 2, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `veh_when_added`, `veh_how_added`, `veh_who_added`, `veh_hd_extra1`, `veh_hd_extra2`, `veh_hd_extra3`, `veh_hd_extra4`, `veh_hd_extra5`, `veh_hd_extra6`, `veh_hd_extra7`, `veh_hd_extra8`, `veh_hd_extra9`) VALUES + (208, 4, 523, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, -1611.58, 733.413, -5.67532, 0, 0, 0.526106, 2, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `veh_when_added`, `veh_how_added`, `veh_who_added`, `veh_hd_extra1`, `veh_hd_extra2`, `veh_hd_extra3`, `veh_hd_extra4`, `veh_hd_extra5`, `veh_hd_extra6`, `veh_hd_extra7`, `veh_hd_extra8`, `veh_hd_extra9`) VALUES + (209, 4, 523, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, -1617.37, 733.199, -5.67666, 0, 0, -0.764526, 2, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `veh_when_added`, `veh_how_added`, `veh_who_added`, `veh_hd_extra1`, `veh_hd_extra2`, `veh_hd_extra3`, `veh_hd_extra4`, `veh_hd_extra5`, `veh_hd_extra6`, `veh_hd_extra7`, `veh_hd_extra8`, `veh_hd_extra9`) VALUES + (210, 4, 426, 0, 0, 0, 0, 11, 11, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, -1572.29, 705.876, -5.49726, 0, 0, 1.58725, 2, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `veh_when_added`, `veh_how_added`, `veh_who_added`, `veh_hd_extra1`, `veh_hd_extra2`, `veh_hd_extra3`, `veh_hd_extra4`, `veh_hd_extra5`, `veh_hd_extra6`, `veh_hd_extra7`, `veh_hd_extra8`, `veh_hd_extra9`) VALUES + (211, 4, 426, 0, 0, 0, 0, 53, 53, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, -1572.31, 710.11, -5.49697, 0, 0, 1.55664, 2, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `veh_when_added`, `veh_how_added`, `veh_who_added`, `veh_hd_extra1`, `veh_hd_extra2`, `veh_hd_extra3`, `veh_hd_extra4`, `veh_hd_extra5`, `veh_hd_extra6`, `veh_hd_extra7`, `veh_hd_extra8`, `veh_hd_extra9`) VALUES + (212, 4, 426, 0, 0, 0, 0, 11, 11, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, -1572.36, 714.22, -5.49761, 0, 0, 1.58512, 2, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `veh_when_added`, `veh_how_added`, `veh_who_added`, `veh_hd_extra1`, `veh_hd_extra2`, `veh_hd_extra3`, `veh_hd_extra4`, `veh_hd_extra5`, `veh_hd_extra6`, `veh_hd_extra7`, `veh_hd_extra8`, `veh_hd_extra9`) VALUES + (213, 4, 427, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, -1596.07, 676.545, -5.10801, 0, 0, 0.0186245, 2, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `veh_when_added`, `veh_how_added`, `veh_who_added`, `veh_hd_extra1`, `veh_hd_extra2`, `veh_hd_extra3`, `veh_hd_extra4`, `veh_hd_extra5`, `veh_hd_extra6`, `veh_hd_extra7`, `veh_hd_extra8`, `veh_hd_extra9`) VALUES + (214, 4, 427, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, -1600.28, 676.495, -5.10837, 0, 0, 0.0136404, 2, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `veh_when_added`, `veh_how_added`, `veh_who_added`, `veh_hd_extra1`, `veh_hd_extra2`, `veh_hd_extra3`, `veh_hd_extra4`, `veh_hd_extra5`, `veh_hd_extra6`, `veh_hd_extra7`, `veh_hd_extra8`, `veh_hd_extra9`) VALUES + (215, 4, 416, 0, 0, 0, 0, 1, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, -2677.4, 630.025, 14.6044, 0, 0, 1.57874, 2, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `veh_when_added`, `veh_how_added`, `veh_who_added`, `veh_hd_extra1`, `veh_hd_extra2`, `veh_hd_extra3`, `veh_hd_extra4`, `veh_hd_extra5`, `veh_hd_extra6`, `veh_hd_extra7`, `veh_hd_extra8`, `veh_hd_extra9`) VALUES + (216, 4, 416, 0, 0, 0, 0, 1, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, -2666.93, 629.908, 14.6044, 0, 0, 1.56592, 2, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `veh_when_added`, `veh_how_added`, `veh_who_added`, `veh_hd_extra1`, `veh_hd_extra2`, `veh_hd_extra3`, `veh_hd_extra4`, `veh_hd_extra5`, `veh_hd_extra6`, `veh_hd_extra7`, `veh_hd_extra8`, `veh_hd_extra9`) VALUES + (217, 4, 416, 0, 0, 0, 0, 1, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, -2686.18, 628.286, 14.6058, 0, 0, 1.9158, 2, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `veh_when_added`, `veh_how_added`, `veh_who_added`, `veh_hd_extra1`, `veh_hd_extra2`, `veh_hd_extra3`, `veh_hd_extra4`, `veh_hd_extra5`, `veh_hd_extra6`, `veh_hd_extra7`, `veh_hd_extra8`, `veh_hd_extra9`) VALUES + (218, 4, 407, 0, 0, 0, 0, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, -2022.76, 75.2526, 28.3631, 0, 0, -1.47777, 2, 12, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `veh_when_added`, `veh_how_added`, `veh_who_added`, `veh_hd_extra1`, `veh_hd_extra2`, `veh_hd_extra3`, `veh_hd_extra4`, `veh_hd_extra5`, `veh_hd_extra6`, `veh_hd_extra7`, `veh_hd_extra8`, `veh_hd_extra9`) VALUES + (219, 4, 407, 0, 0, 0, 0, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, -2022.92, 84.3134, 28.3332, 0, 0, -1.5322, 2, 12, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `veh_when_added`, `veh_how_added`, `veh_who_added`, `veh_hd_extra1`, `veh_hd_extra2`, `veh_hd_extra3`, `veh_hd_extra4`, `veh_hd_extra5`, `veh_hd_extra6`, `veh_hd_extra7`, `veh_hd_extra8`, `veh_hd_extra9`) VALUES + (220, 4, 407, 0, 0, 0, 0, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, -2022.93, 92.2289, 28.3678, 0, 0, -1.51043, 2, 12, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `veh_when_added`, `veh_how_added`, `veh_who_added`, `veh_hd_extra1`, `veh_hd_extra2`, `veh_hd_extra3`, `veh_hd_extra4`, `veh_hd_extra5`, `veh_hd_extra6`, `veh_hd_extra7`, `veh_hd_extra8`, `veh_hd_extra9`) VALUES + (221, 4, 411, 0, 0, 0, 0, 12, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 564.59, -1291.1, 16.9753, 0, 0, 0.0255753, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `veh_when_added`, `veh_how_added`, `veh_who_added`, `veh_hd_extra1`, `veh_hd_extra2`, `veh_hd_extra3`, `veh_hd_extra4`, `veh_hd_extra5`, `veh_hd_extra6`, `veh_hd_extra7`, `veh_hd_extra8`, `veh_hd_extra9`) VALUES + (222, 4, 541, 0, 0, 0, 0, 36, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 561, -1291.44, 16.8732, 0, 0, 0.00172557, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `veh_when_added`, `veh_how_added`, `veh_who_added`, `veh_hd_extra1`, `veh_hd_extra2`, `veh_hd_extra3`, `veh_hd_extra4`, `veh_hd_extra5`, `veh_hd_extra6`, `veh_hd_extra7`, `veh_hd_extra8`, `veh_hd_extra9`) VALUES + (223, 4, 480, 0, 0, 0, 0, 6, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 557.632, -1291.24, 17.022, 0, 0, 0.0362236, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `veh_when_added`, `veh_how_added`, `veh_who_added`, `veh_hd_extra1`, `veh_hd_extra2`, `veh_hd_extra3`, `veh_hd_extra4`, `veh_hd_extra5`, `veh_hd_extra6`, `veh_hd_extra7`, `veh_hd_extra8`, `veh_hd_extra9`) VALUES + (224, 4, 477, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 554.015, -1291.05, 17.0018, 0, 0, -0.0592367, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `veh_when_added`, `veh_how_added`, `veh_who_added`, `veh_hd_extra1`, `veh_hd_extra2`, `veh_hd_extra3`, `veh_hd_extra4`, `veh_hd_extra5`, `veh_hd_extra6`, `veh_hd_extra7`, `veh_hd_extra8`, `veh_hd_extra9`) VALUES + (227, 1, 102, 0, 0, 0, 0, 57, 73, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 1209.59, -85.9233, 12.6336, 0, 0, -2.23509, 6, 204, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 2500, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `veh_when_added`, `veh_how_added`, `veh_who_added`, `veh_hd_extra1`, `veh_hd_extra2`, `veh_hd_extra3`, `veh_hd_extra4`, `veh_hd_extra5`, `veh_hd_extra6`, `veh_hd_extra7`, `veh_hd_extra8`, `veh_hd_extra9`) VALUES + (228, 1, 129, 0, 0, 0, 0, 25, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 1209.51, -81.4913, 12.1281, 0, 0, -2.20648, 6, 204, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 2100, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `veh_when_added`, `veh_how_added`, `veh_who_added`, `veh_hd_extra1`, `veh_hd_extra2`, `veh_hd_extra3`, `veh_hd_extra4`, `veh_hd_extra5`, `veh_hd_extra6`, `veh_hd_extra7`, `veh_hd_extra8`, `veh_hd_extra9`) VALUES + (229, 1, 112, 0, 0, 0, 0, 55, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 1209.65, -77.2701, 11.9, 0, 0, -2.20789, 6, 204, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 2000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `veh_when_added`, `veh_how_added`, `veh_who_added`, `veh_hd_extra1`, `veh_hd_extra2`, `veh_hd_extra3`, `veh_hd_extra4`, `veh_hd_extra5`, `veh_hd_extra6`, `veh_hd_extra7`, `veh_hd_extra8`, `veh_hd_extra9`) VALUES + (230, 1, 91, 0, 0, 0, 0, 51, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 1211.41, -66.0152, 10.4973, 0, 0, -2.52612, 6, 204, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1500, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `veh_when_added`, `veh_how_added`, `veh_who_added`, `veh_hd_extra1`, `veh_hd_extra2`, `veh_hd_extra3`, `veh_hd_extra4`, `veh_hd_extra5`, `veh_hd_extra6`, `veh_hd_extra7`, `veh_hd_extra8`, `veh_hd_extra9`) VALUES + (231, 1, 100, 0, 0, 0, 0, 69, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 1210.97, -73.589, 11.1925, 0, 0, -2.19468, 6, 204, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `veh_when_added`, `veh_how_added`, `veh_who_added`, `veh_hd_extra1`, `veh_hd_extra2`, `veh_hd_extra3`, `veh_hd_extra4`, `veh_hd_extra5`, `veh_hd_extra6`, `veh_hd_extra7`, `veh_hd_extra8`, `veh_hd_extra9`) VALUES + (232, 1, 94, 0, 0, 0, 0, 23, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 1214.52, -63.2275, 10.152, 0, 0, -2.81749, 6, 204, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `veh_when_added`, `veh_how_added`, `veh_who_added`, `veh_hd_extra1`, `veh_hd_extra2`, `veh_hd_extra3`, `veh_hd_extra4`, `veh_hd_extra5`, `veh_hd_extra6`, `veh_hd_extra7`, `veh_hd_extra8`, `veh_hd_extra9`) VALUES + (233, 1, 90, 0, 0, 0, 0, 41, 76, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 1218.85, -62.5937, 10.422, 0, 0, 3.0997, 6, 204, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 2500, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `veh_when_added`, `veh_how_added`, `veh_who_added`, `veh_hd_extra1`, `veh_hd_extra2`, `veh_hd_extra3`, `veh_hd_extra4`, `veh_hd_extra5`, `veh_hd_extra6`, `veh_hd_extra7`, `veh_hd_extra8`, `veh_hd_extra9`) VALUES + (234, 1, 109, 0, 0, 0, 0, 18, 18, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 1222.63, -63.0764, 10.2099, 0, 0, 3.10392, 6, 204, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1200, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `veh_when_added`, `veh_how_added`, `veh_who_added`, `veh_hd_extra1`, `veh_hd_extra2`, `veh_hd_extra3`, `veh_hd_extra4`, `veh_hd_extra5`, `veh_hd_extra6`, `veh_hd_extra7`, `veh_hd_extra8`, `veh_hd_extra9`) VALUES + (235, 1, 105, 0, 0, 0, 0, 51, 77, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 1244.93, -120.808, 14.604, 0, 0, -0.0421777, 6, 204, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 75000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `veh_when_added`, `veh_how_added`, `veh_who_added`, `veh_hd_extra1`, `veh_hd_extra2`, `veh_hd_extra3`, `veh_hd_extra4`, `veh_hd_extra5`, `veh_hd_extra6`, `veh_hd_extra7`, `veh_hd_extra8`, `veh_hd_extra9`) VALUES + (236, 1, 101, 0, 0, 0, 0, 57, 74, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 1241.28, -120.641, 14.6288, 0, 0, 0.0264841, 6, 204, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 85000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `veh_when_added`, `veh_how_added`, `veh_who_added`, `veh_hd_extra1`, `veh_hd_extra2`, `veh_hd_extra3`, `veh_hd_extra4`, `veh_hd_extra5`, `veh_hd_extra6`, `veh_hd_extra7`, `veh_hd_extra8`, `veh_hd_extra9`) VALUES + (237, 1, 119, 0, 0, 0, 0, 12, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 1237.61, -121, 14.5594, 0, 0, 0.00477941, 6, 204, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 115000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `veh_when_added`, `veh_how_added`, `veh_who_added`, `veh_hd_extra1`, `veh_hd_extra2`, `veh_hd_extra3`, `veh_hd_extra4`, `veh_hd_extra5`, `veh_hd_extra6`, `veh_hd_extra7`, `veh_hd_extra8`, `veh_hd_extra9`) VALUES + (238, 1, 92, 0, 0, 0, 0, 53, 73, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 1233.86, -120.93, 14.6328, 0, 0, -0.0198187, 6, 204, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 100000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `veh_when_added`, `veh_how_added`, `veh_who_added`, `veh_hd_extra1`, `veh_hd_extra2`, `veh_hd_extra3`, `veh_hd_extra4`, `veh_hd_extra5`, `veh_hd_extra6`, `veh_hd_extra7`, `veh_hd_extra8`, `veh_hd_extra9`) VALUES + (239, 1, 134, 0, 0, 0, 0, 72, 75, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 1247.55, -107.909, 14.7097, 0, 0, 1.50495, 6, 204, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 25000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `veh_when_added`, `veh_how_added`, `veh_who_added`, `veh_hd_extra1`, `veh_hd_extra2`, `veh_hd_extra3`, `veh_hd_extra4`, `veh_hd_extra5`, `veh_hd_extra6`, `veh_hd_extra7`, `veh_hd_extra8`, `veh_hd_extra9`) VALUES + (240, 1, 137, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 1247.63, -104.151, 14.2887, 0, 0, 1.54257, 6, 204, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 20000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `veh_when_added`, `veh_how_added`, `veh_who_added`, `veh_hd_extra1`, `veh_hd_extra2`, `veh_hd_extra3`, `veh_hd_extra4`, `veh_hd_extra5`, `veh_hd_extra6`, `veh_hd_extra7`, `veh_hd_extra8`, `veh_hd_extra9`) VALUES + (241, 1, 135, 0, 0, 0, 0, 11, 75, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 1247.29, -100.391, 14.0073, 0, 0, 1.52489, 6, 204, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 22000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `veh_when_added`, `veh_how_added`, `veh_who_added`, `veh_hd_extra1`, `veh_hd_extra2`, `veh_hd_extra3`, `veh_hd_extra4`, `veh_hd_extra5`, `veh_hd_extra6`, `veh_hd_extra7`, `veh_hd_extra8`, `veh_hd_extra9`) VALUES + (243, 1, 139, 0, 0, 0, 0, 9, 73, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 1247.41, -96.6294, 13.9466, 0, 0, 1.55603, 6, 204, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 25000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `veh_when_added`, `veh_how_added`, `veh_who_added`, `veh_hd_extra1`, `veh_hd_extra2`, `veh_hd_extra3`, `veh_hd_extra4`, `veh_hd_extra5`, `veh_hd_extra6`, `veh_hd_extra7`, `veh_hd_extra8`, `veh_hd_extra9`) VALUES + (244, 1, 138, 0, 0, 0, 0, 54, 76, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 1247.62, -92.3873, 13.426, 0, 0, 1.51434, 6, 204, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 27000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `veh_when_added`, `veh_how_added`, `veh_who_added`, `veh_hd_extra1`, `veh_hd_extra2`, `veh_hd_extra3`, `veh_hd_extra4`, `veh_hd_extra5`, `veh_hd_extra6`, `veh_hd_extra7`, `veh_hd_extra8`, `veh_hd_extra9`) VALUES + (245, 1, 102, 0, 0, 0, 0, 26, 75, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, -751.01, -535.337, 8.80389, 0, 0, -1.13589, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `veh_when_added`, `veh_how_added`, `veh_who_added`, `veh_hd_extra1`, `veh_hd_extra2`, `veh_hd_extra3`, `veh_hd_extra4`, `veh_hd_extra5`, `veh_hd_extra6`, `veh_hd_extra7`, `veh_hd_extra8`, `veh_hd_extra9`) VALUES + (246, 1, 102, 0, 0, 0, 0, 34, 73, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, -750.797, -539.199, 8.80304, 0, 0, -1.10576, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `veh_when_added`, `veh_how_added`, `veh_who_added`, `veh_hd_extra1`, `veh_hd_extra2`, `veh_hd_extra3`, `veh_hd_extra4`, `veh_hd_extra5`, `veh_hd_extra6`, `veh_hd_extra7`, `veh_hd_extra8`, `veh_hd_extra9`) VALUES + (247, 1, 102, 0, 0, 0, 0, 44, 74, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, -751.052, -543.618, 8.80374, 0, 0, -1.07295, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `veh_when_added`, `veh_how_added`, `veh_who_added`, `veh_hd_extra1`, `veh_hd_extra2`, `veh_hd_extra3`, `veh_hd_extra4`, `veh_hd_extra5`, `veh_hd_extra6`, `veh_hd_extra7`, `veh_hd_extra8`, `veh_hd_extra9`) VALUES + (248, 1, 100, 0, 0, 0, 0, 58, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, -751.566, -552.963, 8.59979, 0, 0, -1.61011, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `veh_when_added`, `veh_how_added`, `veh_who_added`, `veh_hd_extra1`, `veh_hd_extra2`, `veh_hd_extra3`, `veh_hd_extra4`, `veh_hd_extra5`, `veh_hd_extra6`, `veh_hd_extra7`, `veh_hd_extra8`, `veh_hd_extra9`) VALUES + (249, 1, 100, 0, 0, 0, 0, 18, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, -751.576, -556.203, 8.59965, 0, 0, -1.59793, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `veh_when_added`, `veh_how_added`, `veh_who_added`, `veh_hd_extra1`, `veh_hd_extra2`, `veh_hd_extra3`, `veh_hd_extra4`, `veh_hd_extra5`, `veh_hd_extra6`, `veh_hd_extra7`, `veh_hd_extra8`, `veh_hd_extra9`) VALUES + (250, 1, 100, 0, 0, 0, 0, 58, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, -751.577, -559.737, 8.59964, 0, 0, -1.57346, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `veh_when_added`, `veh_how_added`, `veh_who_added`, `veh_hd_extra1`, `veh_hd_extra2`, `veh_hd_extra3`, `veh_hd_extra4`, `veh_hd_extra5`, `veh_hd_extra6`, `veh_hd_extra7`, `veh_hd_extra8`, `veh_hd_extra9`) VALUES + (251, 1, 100, 0, 0, 0, 0, 18, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, -751.575, -563.115, 8.60021, 0, 0, -1.57212, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `veh_when_added`, `veh_how_added`, `veh_who_added`, `veh_hd_extra1`, `veh_hd_extra2`, `veh_hd_extra3`, `veh_hd_extra4`, `veh_hd_extra5`, `veh_hd_extra6`, `veh_hd_extra7`, `veh_hd_extra8`, `veh_hd_extra9`) VALUES + (252, 1, 126, 0, 0, 0, 0, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, -1524.37, -927.334, 11.6627, 0, 0, -1.51896, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 100, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `veh_when_added`, `veh_how_added`, `veh_who_added`, `veh_hd_extra1`, `veh_hd_extra2`, `veh_hd_extra3`, `veh_hd_extra4`, `veh_hd_extra5`, `veh_hd_extra6`, `veh_hd_extra7`, `veh_hd_extra8`, `veh_hd_extra9`) VALUES + (253, 1, 126, 0, 0, 0, 0, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, -1524.94, -920.765, 11.6717, 0, 0, -1.51945, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 100, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `veh_when_added`, `veh_how_added`, `veh_who_added`, `veh_hd_extra1`, `veh_hd_extra2`, `veh_hd_extra3`, `veh_hd_extra4`, `veh_hd_extra5`, `veh_hd_extra6`, `veh_hd_extra7`, `veh_hd_extra8`, `veh_hd_extra9`) VALUES + (254, 1, 126, 0, 0, 0, 0, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, -1525.38, -914.304, 11.6674, 0, 0, -1.49781, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 100, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `veh_when_added`, `veh_how_added`, `veh_who_added`, `veh_hd_extra1`, `veh_hd_extra2`, `veh_hd_extra3`, `veh_hd_extra4`, `veh_hd_extra5`, `veh_hd_extra6`, `veh_hd_extra7`, `veh_hd_extra8`, `veh_hd_extra9`) VALUES + (255, 1, 142, 0, 0, 0, 0, 1, 53, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 620.768, -665.364, -0.327586, 0, 0, -0.0217677, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `veh_when_added`, `veh_how_added`, `veh_who_added`, `veh_hd_extra1`, `veh_hd_extra2`, `veh_hd_extra3`, `veh_hd_extra4`, `veh_hd_extra5`, `veh_hd_extra6`, `veh_hd_extra7`, `veh_hd_extra8`, `veh_hd_extra9`) VALUES + (256, 1, 143, 0, 0, 0, 0, 12, 35, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 627.834, -666.615, -0.505819, 0, 0, -0.0385386, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 35000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `veh_when_added`, `veh_how_added`, `veh_who_added`, `veh_hd_extra1`, `veh_hd_extra2`, `veh_hd_extra3`, `veh_hd_extra4`, `veh_hd_extra5`, `veh_hd_extra6`, `veh_hd_extra7`, `veh_hd_extra8`, `veh_hd_extra9`) VALUES + (258, 1, 146, 0, 0, 0, 0, 34, 74, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 1426.45, -803.581, 11.9599, 0, 0, 1.56821, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 35000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `veh_when_added`, `veh_how_added`, `veh_who_added`, `veh_hd_extra1`, `veh_hd_extra2`, `veh_hd_extra3`, `veh_hd_extra4`, `veh_hd_extra5`, `veh_hd_extra6`, `veh_hd_extra7`, `veh_hd_extra8`, `veh_hd_extra9`) VALUES + (259, 1, 104, 0, 0, 0, 0, 52, 74, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 1426.62, -795.533, 11.8912, 0, 0, 1.56813, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 30000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `veh_when_added`, `veh_how_added`, `veh_who_added`, `veh_hd_extra1`, `veh_hd_extra2`, `veh_hd_extra3`, `veh_hd_extra4`, `veh_hd_extra5`, `veh_hd_extra6`, `veh_hd_extra7`, `veh_hd_extra8`, `veh_hd_extra9`) VALUES + (260, 1, 93, 0, 0, 0, 0, 39, 78, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 1426.01, -786.663, 12.4028, 0, 0, 1.56679, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 40000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `veh_when_added`, `veh_how_added`, `veh_who_added`, `veh_hd_extra1`, `veh_hd_extra2`, `veh_hd_extra3`, `veh_hd_extra4`, `veh_hd_extra5`, `veh_hd_extra6`, `veh_hd_extra7`, `veh_hd_extra8`, `veh_hd_extra9`) VALUES + (261, 4, 547, 0, 0, 0, 0, 10, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 2136.31, -1150.2, 23.9743, 0, 0, 0.748413, 6, 228, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `veh_when_added`, `veh_how_added`, `veh_who_added`, `veh_hd_extra1`, `veh_hd_extra2`, `veh_hd_extra3`, `veh_hd_extra4`, `veh_hd_extra5`, `veh_hd_extra6`, `veh_hd_extra7`, `veh_hd_extra8`, `veh_hd_extra9`) VALUES + (262, 4, 516, 0, 0, 0, 0, 122, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 2136.18, -1145.37, 24.6024, 0, 0, 0.789813, 6, 228, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `veh_when_added`, `veh_how_added`, `veh_who_added`, `veh_hd_extra1`, `veh_hd_extra2`, `veh_hd_extra3`, `veh_hd_extra4`, `veh_hd_extra5`, `veh_hd_extra6`, `veh_hd_extra7`, `veh_hd_extra8`, `veh_hd_extra9`) VALUES + (263, 4, 466, 0, 0, 0, 0, 78, 76, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 2125.15, -1152.9, 23.7633, 0, 0, -0.783476, 6, 228, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `veh_when_added`, `veh_how_added`, `veh_who_added`, `veh_hd_extra1`, `veh_hd_extra2`, `veh_hd_extra3`, `veh_hd_extra4`, `veh_hd_extra5`, `veh_hd_extra6`, `veh_hd_extra7`, `veh_hd_extra8`, `veh_hd_extra9`) VALUES + (264, 4, 410, 0, 0, 0, 0, 10, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 2136.76, -1141.11, 24.8917, 0, 0, 0.786093, 6, 228, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `veh_when_added`, `veh_how_added`, `veh_who_added`, `veh_hd_extra1`, `veh_hd_extra2`, `veh_hd_extra3`, `veh_hd_extra4`, `veh_hd_extra5`, `veh_hd_extra6`, `veh_hd_extra7`, `veh_hd_extra8`, `veh_hd_extra9`) VALUES + (265, 4, 445, 0, 0, 0, 0, 45, 45, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 2117.76, -1155.76, 24.126, 0, 0, -0.705611, 6, 228, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `veh_when_added`, `veh_how_added`, `veh_who_added`, `veh_hd_extra1`, `veh_hd_extra2`, `veh_hd_extra3`, `veh_hd_extra4`, `veh_hd_extra5`, `veh_hd_extra6`, `veh_hd_extra7`, `veh_hd_extra8`, `veh_hd_extra9`) VALUES + (266, 4, 405, 0, 0, 0, 0, 24, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 2117.4, -1151.21, 24.2249, 0, 0, -0.645516, 6, 228, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `veh_when_added`, `veh_how_added`, `veh_who_added`, `veh_hd_extra1`, `veh_hd_extra2`, `veh_hd_extra3`, `veh_hd_extra4`, `veh_hd_extra5`, `veh_hd_extra6`, `veh_hd_extra7`, `veh_hd_extra8`, `veh_hd_extra9`) VALUES + (267, 4, 458, 0, 0, 0, 0, 4, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 2136.36, -1136, 25.5515, 0, 0, 0.777684, 6, 228, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1400, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `veh_when_added`, `veh_how_added`, `veh_who_added`, `veh_hd_extra1`, `veh_hd_extra2`, `veh_hd_extra3`, `veh_hd_extra4`, `veh_hd_extra5`, `veh_hd_extra6`, `veh_hd_extra7`, `veh_hd_extra8`, `veh_hd_extra9`) VALUES + (268, 4, 496, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 2118.21, -1145.71, 24.3037, 0, 0, -1.09275, 6, 228, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `veh_when_added`, `veh_how_added`, `veh_who_added`, `veh_hd_extra1`, `veh_hd_extra2`, `veh_hd_extra3`, `veh_hd_extra4`, `veh_hd_extra5`, `veh_hd_extra6`, `veh_hd_extra7`, `veh_hd_extra8`, `veh_hd_extra9`) VALUES + (269, 4, 418, 0, 0, 0, 0, 95, 95, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 2118.32, -1141.57, 24.9918, 0, 0, -1.07252, 6, 228, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `veh_when_added`, `veh_how_added`, `veh_who_added`, `veh_hd_extra1`, `veh_hd_extra2`, `veh_hd_extra3`, `veh_hd_extra4`, `veh_hd_extra5`, `veh_hd_extra6`, `veh_hd_extra7`, `veh_hd_extra8`, `veh_hd_extra9`) VALUES + (271, 4, 549, 0, 0, 0, 0, 79, 39, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 2136.42, -1131.45, 25.3818, 0, 0, 0.778913, 6, 228, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 750, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `veh_when_added`, `veh_how_added`, `veh_who_added`, `veh_hd_extra1`, `veh_hd_extra2`, `veh_hd_extra3`, `veh_hd_extra4`, `veh_hd_extra5`, `veh_hd_extra6`, `veh_hd_extra7`, `veh_hd_extra8`, `veh_hd_extra9`) VALUES + (272, 4, 404, 0, 0, 0, 0, 83, 110, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 2119.1, -1128.71, 25.0533, 0, 0, -1.00972, 6, 228, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1100, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `veh_when_added`, `veh_how_added`, `veh_who_added`, `veh_hd_extra1`, `veh_hd_extra2`, `veh_hd_extra3`, `veh_hd_extra4`, `veh_hd_extra5`, `veh_hd_extra6`, `veh_hd_extra7`, `veh_hd_extra8`, `veh_hd_extra9`) VALUES + (273, 4, 422, 0, 0, 0, 0, 113, 36, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 2118.91, -1132.57, 25.2674, 0, 0, -1.04863, 6, 228, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `veh_when_added`, `veh_how_added`, `veh_who_added`, `veh_hd_extra1`, `veh_hd_extra2`, `veh_hd_extra3`, `veh_hd_extra4`, `veh_hd_extra5`, `veh_hd_extra6`, `veh_hd_extra7`, `veh_hd_extra8`, `veh_hd_extra9`) VALUES + (274, 4, 419, 0, 0, 0, 0, 47, 76, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 2119.37, -1123.81, 25.1752, 0, 0, -0.824258, 6, 228, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1500, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `veh_when_added`, `veh_how_added`, `veh_who_added`, `veh_hd_extra1`, `veh_hd_extra2`, `veh_hd_extra3`, `veh_hd_extra4`, `veh_hd_extra5`, `veh_hd_extra6`, `veh_hd_extra7`, `veh_hd_extra8`, `veh_hd_extra9`) VALUES + (275, 4, 559, 0, 0, 0, 0, 13, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 543.558, -1291.16, 16.8736, 0, 0, -0.140231, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `veh_when_added`, `veh_how_added`, `veh_who_added`, `veh_hd_extra1`, `veh_hd_extra2`, `veh_hd_extra3`, `veh_hd_extra4`, `veh_hd_extra5`, `veh_hd_extra6`, `veh_hd_extra7`, `veh_hd_extra8`, `veh_hd_extra9`) VALUES + (276, 4, 506, 0, 0, 0, 0, 76, 76, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 539.57, -1291.52, 16.949, 0, 0, 0.0129029, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `veh_when_added`, `veh_how_added`, `veh_who_added`, `veh_hd_extra1`, `veh_hd_extra2`, `veh_hd_extra3`, `veh_hd_extra4`, `veh_hd_extra5`, `veh_hd_extra6`, `veh_hd_extra7`, `veh_hd_extra8`, `veh_hd_extra9`) VALUES + (277, 4, 451, 0, 0, 0, 0, 46, 46, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 529.109, -1291.35, 16.9441, 0, 0, 0.007333, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 130000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `veh_when_added`, `veh_how_added`, `veh_who_added`, `veh_hd_extra1`, `veh_hd_extra2`, `veh_hd_extra3`, `veh_hd_extra4`, `veh_hd_extra5`, `veh_hd_extra6`, `veh_hd_extra7`, `veh_hd_extra8`, `veh_hd_extra9`) VALUES + (278, 4, 415, 0, 0, 0, 0, 25, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 532.506, -1291.65, 17.0134, 0, 0, 0.0241039, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `veh_when_added`, `veh_how_added`, `veh_who_added`, `veh_hd_extra1`, `veh_hd_extra2`, `veh_hd_extra3`, `veh_hd_extra4`, `veh_hd_extra5`, `veh_hd_extra6`, `veh_hd_extra7`, `veh_hd_extra8`, `veh_hd_extra9`) VALUES + (279, 4, 429, 0, 0, 0, 0, 13, 13, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 535.97, -1291.55, 16.9238, 0, 0, -0.00909396, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `veh_when_added`, `veh_how_added`, `veh_who_added`, `veh_hd_extra1`, `veh_hd_extra2`, `veh_hd_extra3`, `veh_hd_extra4`, `veh_hd_extra5`, `veh_hd_extra6`, `veh_hd_extra7`, `veh_hd_extra8`, `veh_hd_extra9`) VALUES + (280, 4, 565, 0, 0, 0, 0, 42, 42, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 525.643, -1291.94, 16.8666, 0, 0, 0.0016915, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `veh_when_added`, `veh_how_added`, `veh_who_added`, `veh_hd_extra1`, `veh_hd_extra2`, `veh_hd_extra3`, `veh_hd_extra4`, `veh_hd_extra5`, `veh_hd_extra6`, `veh_hd_extra7`, `veh_hd_extra8`, `veh_hd_extra9`) VALUES + (281, 4, 602, 0, 0, 0, 0, 13, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 522.465, -1291.49, 17.0442, 0, 0, -0.0111869, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 60000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `veh_when_added`, `veh_how_added`, `veh_who_added`, `veh_hd_extra1`, `veh_hd_extra2`, `veh_hd_extra3`, `veh_hd_extra4`, `veh_hd_extra5`, `veh_hd_extra6`, `veh_hd_extra7`, `veh_hd_extra8`, `veh_hd_extra9`) VALUES + (282, 4, 589, 0, 0, 0, 0, 114, 114, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 518.795, -1291.31, 16.9074, 0, 0, 0.0178289, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 50000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `veh_when_added`, `veh_how_added`, `veh_who_added`, `veh_hd_extra1`, `veh_hd_extra2`, `veh_hd_extra3`, `veh_hd_extra4`, `veh_hd_extra5`, `veh_hd_extra6`, `veh_hd_extra7`, `veh_hd_extra8`, `veh_hd_extra9`) VALUES + (283, 4, 519, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 1995.15, -2367.1, 14.4654, 0, 0, 1.57039, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 750000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `veh_when_added`, `veh_how_added`, `veh_who_added`, `veh_hd_extra1`, `veh_hd_extra2`, `veh_hd_extra3`, `veh_hd_extra4`, `veh_hd_extra5`, `veh_hd_extra6`, `veh_hd_extra7`, `veh_hd_extra8`, `veh_hd_extra9`) VALUES + (284, 4, 511, 0, 0, 0, 0, 37, 51, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 1994.14, -2388.79, 14.9204, 0, 0, 1.59079, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 400000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `veh_when_added`, `veh_how_added`, `veh_who_added`, `veh_hd_extra1`, `veh_hd_extra2`, `veh_hd_extra3`, `veh_hd_extra4`, `veh_hd_extra5`, `veh_hd_extra6`, `veh_hd_extra7`, `veh_hd_extra8`, `veh_hd_extra9`) VALUES + (285, 4, 593, 0, 0, 0, 0, 2, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 1995.97, -2407.75, 14.0243, 0, 0, 1.54898, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 200000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `veh_when_added`, `veh_how_added`, `veh_who_added`, `veh_hd_extra1`, `veh_hd_extra2`, `veh_hd_extra3`, `veh_hd_extra4`, `veh_hd_extra5`, `veh_hd_extra6`, `veh_hd_extra7`, `veh_hd_extra8`, `veh_hd_extra9`) VALUES + (286, 4, 553, 0, 0, 0, 0, 55, 23, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 2025.74, -2418.28, 14.8912, 0, 0, 2.46133, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 500000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `veh_when_added`, `veh_how_added`, `veh_who_added`, `veh_hd_extra1`, `veh_hd_extra2`, `veh_hd_extra3`, `veh_hd_extra4`, `veh_hd_extra5`, `veh_hd_extra6`, `veh_hd_extra7`, `veh_hd_extra8`, `veh_hd_extra9`) VALUES + (287, 4, 487, 0, 0, 0, 0, 74, 35, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 1995.52, -2332.31, 13.7254, 0, 0, 1.58853, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 300000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `veh_when_added`, `veh_how_added`, `veh_who_added`, `veh_hd_extra1`, `veh_hd_extra2`, `veh_hd_extra3`, `veh_hd_extra4`, `veh_hd_extra5`, `veh_hd_extra6`, `veh_hd_extra7`, `veh_hd_extra8`, `veh_hd_extra9`) VALUES + (288, 4, 548, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 1992.24, -2316.92, 15.1977, 0, 0, 1.58742, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `veh_when_added`, `veh_how_added`, `veh_who_added`, `veh_hd_extra1`, `veh_hd_extra2`, `veh_hd_extra3`, `veh_hd_extra4`, `veh_hd_extra5`, `veh_hd_extra6`, `veh_hd_extra7`, `veh_hd_extra8`, `veh_hd_extra9`) VALUES + (289, 4, 469, 0, 0, 0, 0, 1, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 1995.62, -2303.97, 13.5477, 0, 0, 1.53661, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 250000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `veh_when_added`, `veh_how_added`, `veh_who_added`, `veh_hd_extra1`, `veh_hd_extra2`, `veh_hd_extra3`, `veh_hd_extra4`, `veh_hd_extra5`, `veh_hd_extra6`, `veh_hd_extra7`, `veh_hd_extra8`, `veh_hd_extra9`) VALUES + (290, 4, 417, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 1992.1, -2255.76, 13.6483, 0, 0, 1.54044, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 900000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `veh_when_added`, `veh_how_added`, `veh_who_added`, `veh_hd_extra1`, `veh_hd_extra2`, `veh_hd_extra3`, `veh_hd_extra4`, `veh_hd_extra5`, `veh_hd_extra6`, `veh_hd_extra7`, `veh_hd_extra8`, `veh_hd_extra9`) VALUES + (292, 1, 111, 0, 0, 0, 0, 14, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 1129.34, -112.16, 9.58797, 0, 0, -3.13911, 1, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 2500, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `veh_when_added`, `veh_how_added`, `veh_who_added`, `veh_hd_extra1`, `veh_hd_extra2`, `veh_hd_extra3`, `veh_hd_extra4`, `veh_hd_extra5`, `veh_hd_extra6`, `veh_hd_extra7`, `veh_hd_extra8`, `veh_hd_extra9`) VALUES + (293, 1, 127, 0, 0, 0, 0, 44, 27, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 331.266, -1573.11, 26.0381, 0, 0, -0.879107, 2, 17, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `veh_when_added`, `veh_how_added`, `veh_who_added`, `veh_hd_extra1`, `veh_hd_extra2`, `veh_hd_extra3`, `veh_hd_extra4`, `veh_hd_extra5`, `veh_hd_extra6`, `veh_hd_extra7`, `veh_hd_extra8`, `veh_hd_extra9`) VALUES + (294, 1, 127, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, -73.1733, -349.082, 16.2603, 0, 0, -0.0165034, 2, 17, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `veh_when_added`, `veh_how_added`, `veh_who_added`, `veh_hd_extra1`, `veh_hd_extra2`, `veh_hd_extra3`, `veh_hd_extra4`, `veh_hd_extra5`, `veh_hd_extra6`, `veh_hd_extra7`, `veh_hd_extra8`, `veh_hd_extra9`) VALUES + (295, 1, 127, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, -73.4793, -367.01, 16.2607, 0, 0, -0.0240202, 2, 17, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `veh_when_added`, `veh_how_added`, `veh_who_added`, `veh_hd_extra1`, `veh_hd_extra2`, `veh_hd_extra3`, `veh_hd_extra4`, `veh_hd_extra5`, `veh_hd_extra6`, `veh_hd_extra7`, `veh_hd_extra8`, `veh_hd_extra9`) VALUES + (296, 4, 529, 0, 0, 0, 0, 7, 7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 2118.54, -1137.2, 24.7795, 0, 0, -1.06224, 6, 228, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 850, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `veh_when_added`, `veh_how_added`, `veh_who_added`, `veh_hd_extra1`, `veh_hd_extra2`, `veh_hd_extra3`, `veh_hd_extra4`, `veh_hd_extra5`, `veh_hd_extra6`, `veh_hd_extra7`, `veh_hd_extra8`, `veh_hd_extra9`) VALUES + (297, 4, 596, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 1583.14, -1711.82, 5.60978, 0, 0, -0.0255531, 2, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `veh_when_added`, `veh_how_added`, `veh_who_added`, `veh_hd_extra1`, `veh_hd_extra2`, `veh_hd_extra3`, `veh_hd_extra4`, `veh_hd_extra5`, `veh_hd_extra6`, `veh_hd_extra7`, `veh_hd_extra8`, `veh_hd_extra9`) VALUES + (298, 4, 596, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 1578.54, -1711.84, 5.6025, 0, 0, 0.00653891, 2, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `veh_when_added`, `veh_how_added`, `veh_who_added`, `veh_hd_extra1`, `veh_hd_extra2`, `veh_hd_extra3`, `veh_hd_extra4`, `veh_hd_extra5`, `veh_hd_extra6`, `veh_hd_extra7`, `veh_hd_extra8`, `veh_hd_extra9`) VALUES + (299, 4, 596, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 1574.12, -1711.96, 5.61197, 0, 0, 0.00792556, 2, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `veh_when_added`, `veh_how_added`, `veh_who_added`, `veh_hd_extra1`, `veh_hd_extra2`, `veh_hd_extra3`, `veh_hd_extra4`, `veh_hd_extra5`, `veh_hd_extra6`, `veh_hd_extra7`, `veh_hd_extra8`, `veh_hd_extra9`) VALUES + (300, 2, 221, 0, 0, 0, 0, 30, 72, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, -987.238, -890.147, 12.7976, 0, 0, 0.861982, 6, 201, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 3500, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `veh_when_added`, `veh_how_added`, `veh_who_added`, `veh_hd_extra1`, `veh_hd_extra2`, `veh_hd_extra3`, `veh_hd_extra4`, `veh_hd_extra5`, `veh_hd_extra6`, `veh_hd_extra7`, `veh_hd_extra8`, `veh_hd_extra9`) VALUES + (301, 2, 135, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, -975.756, -878.166, 12.9318, 0, 0, 0.813128, 6, 201, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 7000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `veh_when_added`, `veh_how_added`, `veh_who_added`, `veh_hd_extra1`, `veh_hd_extra2`, `veh_hd_extra3`, `veh_hd_extra4`, `veh_hd_extra5`, `veh_hd_extra6`, `veh_hd_extra7`, `veh_hd_extra8`, `veh_hd_extra9`) VALUES + (302, 2, 226, 0, 0, 0, 0, 8, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, -966.656, -864.78, 12.8917, 0, 0, 1.16068, 6, 201, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 4000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `veh_when_added`, `veh_how_added`, `veh_who_added`, `veh_hd_extra1`, `veh_hd_extra2`, `veh_hd_extra3`, `veh_hd_extra4`, `veh_hd_extra5`, `veh_hd_extra6`, `veh_hd_extra7`, `veh_hd_extra8`, `veh_hd_extra9`) VALUES + (303, 2, 152, 0, 0, 0, 0, 8, 90, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, -971.067, -873.153, 13.2271, 0, 0, 0.834572, 6, 201, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 3200, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `veh_when_added`, `veh_how_added`, `veh_who_added`, `veh_hd_extra1`, `veh_hd_extra2`, `veh_hd_extra3`, `veh_hd_extra4`, `veh_hd_extra5`, `veh_hd_extra6`, `veh_hd_extra7`, `veh_hd_extra8`, `veh_hd_extra9`) VALUES + (304, 2, 130, 0, 0, 0, 0, 41, 76, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, -968.206, -868.967, 13.2656, 0, 0, 1.08971, 6, 201, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 4750, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `veh_when_added`, `veh_how_added`, `veh_who_added`, `veh_hd_extra1`, `veh_hd_extra2`, `veh_hd_extra3`, `veh_hd_extra4`, `veh_hd_extra5`, `veh_hd_extra6`, `veh_hd_extra7`, `veh_hd_extra8`, `veh_hd_extra9`) VALUES + (305, 2, 140, 0, 0, 0, 0, 32, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, -973.192, -875.855, 12.8791, 0, 0, 0.822114, 6, 201, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 2400, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `veh_when_added`, `veh_how_added`, `veh_who_added`, `veh_hd_extra1`, `veh_hd_extra2`, `veh_hd_extra3`, `veh_hd_extra4`, `veh_hd_extra5`, `veh_hd_extra6`, `veh_hd_extra7`, `veh_hd_extra8`, `veh_hd_extra9`) VALUES + (306, 2, 164, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, -989.644, -824.774, 7.12597, 0, 0, 3.12791, 6, 201, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 15000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `veh_when_added`, `veh_how_added`, `veh_who_added`, `veh_hd_extra1`, `veh_hd_extra2`, `veh_hd_extra3`, `veh_hd_extra4`, `veh_hd_extra5`, `veh_hd_extra6`, `veh_hd_extra7`, `veh_hd_extra8`, `veh_hd_extra9`) VALUES + (307, 2, 204, 0, 0, 0, 0, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, -965.592, -860.48, 12.8871, 0, 0, 1.1847, 6, 201, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 2500, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `veh_when_added`, `veh_how_added`, `veh_who_added`, `veh_hd_extra1`, `veh_hd_extra2`, `veh_hd_extra3`, `veh_hd_extra4`, `veh_hd_extra5`, `veh_hd_extra6`, `veh_hd_extra7`, `veh_hd_extra8`, `veh_hd_extra9`) VALUES + (308, 2, 149, 0, 0, 0, 0, 59, 75, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, -966.155, -855.875, 12.9219, 0, 0, 1.39879, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 3500, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `veh_when_added`, `veh_how_added`, `veh_who_added`, `veh_hd_extra1`, `veh_hd_extra2`, `veh_hd_extra3`, `veh_hd_extra4`, `veh_hd_extra5`, `veh_hd_extra6`, `veh_hd_extra7`, `veh_hd_extra8`, `veh_hd_extra9`) VALUES + (309, 2, 205, 0, 0, 0, 0, 41, 29, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, -965.04, -852.363, 12.8994, 0, 0, 1.44163, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 6000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `veh_when_added`, `veh_how_added`, `veh_who_added`, `veh_hd_extra1`, `veh_hd_extra2`, `veh_hd_extra3`, `veh_hd_extra4`, `veh_hd_extra5`, `veh_hd_extra6`, `veh_hd_extra7`, `veh_hd_extra8`, `veh_hd_extra9`) VALUES + (310, 2, 197, 0, 0, 0, 0, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, -965.029, -848.421, 12.8642, 0, 0, 1.43081, 6, 201, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 5250, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `veh_when_added`, `veh_how_added`, `veh_who_added`, `veh_hd_extra1`, `veh_hd_extra2`, `veh_hd_extra3`, `veh_hd_extra4`, `veh_hd_extra5`, `veh_hd_extra6`, `veh_hd_extra7`, `veh_hd_extra8`, `veh_hd_extra9`) VALUES + (311, 2, 208, 0, 0, 0, 0, 42, 42, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, -964.721, -844.608, 13.1339, 0, 0, 1.52394, 6, 201, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 3250, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `veh_when_added`, `veh_how_added`, `veh_who_added`, `veh_hd_extra1`, `veh_hd_extra2`, `veh_hd_extra3`, `veh_hd_extra4`, `veh_hd_extra5`, `veh_hd_extra6`, `veh_hd_extra7`, `veh_hd_extra8`, `veh_hd_extra9`) VALUES + (312, 2, 209, 0, 0, 0, 0, 14, 32, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, -965.016, -841.054, 12.9559, 0, 0, 1.53651, 6, 201, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 4500, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `veh_when_added`, `veh_how_added`, `veh_who_added`, `veh_hd_extra1`, `veh_hd_extra2`, `veh_hd_extra3`, `veh_hd_extra4`, `veh_hd_extra5`, `veh_hd_extra6`, `veh_hd_extra7`, `veh_hd_extra8`, `veh_hd_extra9`) VALUES + (313, 2, 211, 0, 0, 0, 0, 3, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, -964.673, -837.367, 12.8576, 0, 0, 1.51387, 6, 201, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 10000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `veh_when_added`, `veh_how_added`, `veh_who_added`, `veh_hd_extra1`, `veh_hd_extra2`, `veh_hd_extra3`, `veh_hd_extra4`, `veh_hd_extra5`, `veh_hd_extra6`, `veh_hd_extra7`, `veh_hd_extra8`, `veh_hd_extra9`) VALUES + (314, 2, 222, 0, 0, 0, 0, 33, 78, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, -964.774, -832.762, 12.8844, 0, 0, 1.51272, 6, 201, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 2000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `veh_when_added`, `veh_how_added`, `veh_who_added`, `veh_hd_extra1`, `veh_hd_extra2`, `veh_hd_extra3`, `veh_hd_extra4`, `veh_hd_extra5`, `veh_hd_extra6`, `veh_hd_extra7`, `veh_hd_extra8`, `veh_hd_extra9`) VALUES + (315, 2, 230, 0, 0, 0, 0, 48, 65, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, -964.115, -828.989, 13.2367, 0, 0, 1.55643, 6, 201, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 3000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `veh_when_added`, `veh_how_added`, `veh_who_added`, `veh_hd_extra1`, `veh_hd_extra2`, `veh_hd_extra3`, `veh_hd_extra4`, `veh_hd_extra5`, `veh_hd_extra6`, `veh_hd_extra7`, `veh_hd_extra8`, `veh_hd_extra9`) VALUES + (316, 2, 219, 0, 0, 0, 0, 32, 42, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, -964.923, -824.966, 13.3115, 0, 0, 1.56249, 6, 201, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 4750, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `veh_when_added`, `veh_how_added`, `veh_who_added`, `veh_hd_extra1`, `veh_hd_extra2`, `veh_hd_extra3`, `veh_hd_extra4`, `veh_hd_extra5`, `veh_hd_extra6`, `veh_hd_extra7`, `veh_hd_extra8`, `veh_hd_extra9`) VALUES + (317, 2, 179, 0, 0, 0, 0, 16, 74, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, -985.562, -824.846, 7.45749, 0, 0, -3.1114, 6, 201, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 27500, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `veh_when_added`, `veh_how_added`, `veh_who_added`, `veh_hd_extra1`, `veh_hd_extra2`, `veh_hd_extra3`, `veh_hd_extra4`, `veh_hd_extra5`, `veh_hd_extra6`, `veh_hd_extra7`, `veh_hd_extra8`, `veh_hd_extra9`) VALUES + (318, 2, 174, 0, 0, 0, 0, 64, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, -993.506, -825.182, 7.22026, 0, 0, -3.13612, 6, 201, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 25000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `veh_when_added`, `veh_how_added`, `veh_who_added`, `veh_hd_extra1`, `veh_hd_extra2`, `veh_hd_extra3`, `veh_hd_extra4`, `veh_hd_extra5`, `veh_hd_extra6`, `veh_hd_extra7`, `veh_hd_extra8`, `veh_hd_extra9`) VALUES + (319, 2, 142, 0, 0, 0, 0, 13, 72, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, -997.382, -825.397, 7.10469, 0, 0, 3.12664, 6, 201, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 17500, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `veh_when_added`, `veh_how_added`, `veh_who_added`, `veh_hd_extra1`, `veh_hd_extra2`, `veh_hd_extra3`, `veh_hd_extra4`, `veh_hd_extra5`, `veh_hd_extra6`, `veh_hd_extra7`, `veh_hd_extra8`, `veh_hd_extra9`) VALUES + (320, 2, 193, 0, 0, 0, 0, 53, 53, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, -967.23, -823.644, 6.2945, 0, 0, 1.56423, 6, 201, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 3500, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `veh_when_added`, `veh_how_added`, `veh_who_added`, `veh_hd_extra1`, `veh_hd_extra2`, `veh_hd_extra3`, `veh_hd_extra4`, `veh_hd_extra5`, `veh_hd_extra6`, `veh_hd_extra7`, `veh_hd_extra8`, `veh_hd_extra9`) VALUES + (321, 2, 166, 0, 0, 0, 0, 14, 75, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, -967.043, -825.686, 6.29443, 0, 0, 1.61558, 6, 201, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 4000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `veh_when_added`, `veh_how_added`, `veh_who_added`, `veh_hd_extra1`, `veh_hd_extra2`, `veh_hd_extra3`, `veh_hd_extra4`, `veh_hd_extra5`, `veh_hd_extra6`, `veh_hd_extra7`, `veh_hd_extra8`, `veh_hd_extra9`) VALUES + (322, 2, 198, 0, 0, 0, 0, 46, 46, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, -967.063, -827.738, 6.43505, 0, 0, 1.54959, 6, 201, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 3000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `veh_when_added`, `veh_how_added`, `veh_who_added`, `veh_hd_extra1`, `veh_hd_extra2`, `veh_hd_extra3`, `veh_hd_extra4`, `veh_hd_extra5`, `veh_hd_extra6`, `veh_hd_extra7`, `veh_hd_extra8`, `veh_hd_extra9`) VALUES + (323, 2, 191, 0, 0, 0, 0, 22, 22, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, -967.07, -829.886, 6.31988, 0, 0, 1.58164, 6, 201, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 4500, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `veh_when_added`, `veh_how_added`, `veh_who_added`, `veh_hd_extra1`, `veh_hd_extra2`, `veh_hd_extra3`, `veh_hd_extra4`, `veh_hd_extra5`, `veh_hd_extra6`, `veh_hd_extra7`, `veh_hd_extra8`, `veh_hd_extra9`) VALUES + (324, 2, 192, 0, 0, 0, 0, 33, 37, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, -966.719, -831.972, 6.35928, 0, 0, 1.58748, 6, 201, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `veh_when_added`, `veh_how_added`, `veh_who_added`, `veh_hd_extra1`, `veh_hd_extra2`, `veh_hd_extra3`, `veh_hd_extra4`, `veh_hd_extra5`, `veh_hd_extra6`, `veh_hd_extra7`, `veh_hd_extra8`, `veh_hd_extra9`) VALUES + (325, 2, 210, 0, 0, 0, 0, 6, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, -1019.12, -844.436, 12.85, 0, 0, -1.61629, 6, 201, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 85000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `veh_when_added`, `veh_how_added`, `veh_who_added`, `veh_hd_extra1`, `veh_hd_extra2`, `veh_hd_extra3`, `veh_hd_extra4`, `veh_hd_extra5`, `veh_hd_extra6`, `veh_hd_extra7`, `veh_hd_extra8`, `veh_hd_extra9`) VALUES + (326, 2, 132, 0, 0, 0, 0, 35, 35, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, -1015.09, -848.702, 12.8354, 0, 0, -1.52303, 6, 201, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 75000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `veh_when_added`, `veh_how_added`, `veh_who_added`, `veh_hd_extra1`, `veh_hd_extra2`, `veh_hd_extra3`, `veh_hd_extra4`, `veh_hd_extra5`, `veh_hd_extra6`, `veh_hd_extra7`, `veh_hd_extra8`, `veh_hd_extra9`) VALUES + (327, 2, 141, 0, 0, 0, 0, 11, 11, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, -1010.9, -852.751, 12.7769, 0, 0, -1.23101, 6, 201, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 100000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `veh_when_added`, `veh_how_added`, `veh_who_added`, `veh_hd_extra1`, `veh_hd_extra2`, `veh_hd_extra3`, `veh_hd_extra4`, `veh_hd_extra5`, `veh_hd_extra6`, `veh_hd_extra7`, `veh_hd_extra8`, `veh_hd_extra9`) VALUES + (328, 2, 159, 0, 0, 0, 0, 36, 36, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, -1007.32, -856.729, 12.8655, 0, 0, -1.08926, 6, 201, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 80000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `veh_when_added`, `veh_how_added`, `veh_who_added`, `veh_hd_extra1`, `veh_hd_extra2`, `veh_hd_extra3`, `veh_hd_extra4`, `veh_hd_extra5`, `veh_hd_extra6`, `veh_hd_extra7`, `veh_hd_extra8`, `veh_hd_extra9`) VALUES + (329, 2, 145, 0, 0, 0, 0, 36, 36, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, -1004.13, -860.21, 12.8584, 0, 0, -0.843169, 6, 201, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 80000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `veh_when_added`, `veh_how_added`, `veh_who_added`, `veh_hd_extra1`, `veh_hd_extra2`, `veh_hd_extra3`, `veh_hd_extra4`, `veh_hd_extra5`, `veh_hd_extra6`, `veh_hd_extra7`, `veh_hd_extra8`, `veh_hd_extra9`) VALUES + (330, 1, 106, 0, 0, 0, 0, 1, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 212.281, -41.5702, 16.4286, 0, 0, -0.00175398, 2, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `veh_when_added`, `veh_how_added`, `veh_who_added`, `veh_hd_extra1`, `veh_hd_extra2`, `veh_hd_extra3`, `veh_hd_extra4`, `veh_hd_extra5`, `veh_hd_extra6`, `veh_hd_extra7`, `veh_hd_extra8`, `veh_hd_extra9`) VALUES + (331, 1, 106, 0, 0, 0, 0, 1, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 220.664, -41.2063, 16.4286, 0, 0, -0.00824242, 2, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `veh_when_added`, `veh_how_added`, `veh_who_added`, `veh_hd_extra1`, `veh_hd_extra2`, `veh_hd_extra3`, `veh_hd_extra4`, `veh_hd_extra5`, `veh_hd_extra6`, `veh_hd_extra7`, `veh_hd_extra8`, `veh_hd_extra9`) VALUES + (332, 1, 106, 0, 0, 0, 0, 1, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 240.307, -41.481, 16.4286, 0, 0, -0.00575317, 2, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `veh_when_added`, `veh_how_added`, `veh_who_added`, `veh_hd_extra1`, `veh_hd_extra2`, `veh_hd_extra3`, `veh_hd_extra4`, `veh_hd_extra5`, `veh_hd_extra6`, `veh_hd_extra7`, `veh_hd_extra8`, `veh_hd_extra9`) VALUES + (333, 1, 106, 0, 0, 0, 0, 1, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 248.963, -41.6128, 16.4285, 0, 0, -0.0129603, 2, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `veh_when_added`, `veh_how_added`, `veh_who_added`, `veh_hd_extra1`, `veh_hd_extra2`, `veh_hd_extra3`, `veh_hd_extra4`, `veh_hd_extra5`, `veh_hd_extra6`, `veh_hd_extra7`, `veh_hd_extra8`, `veh_hd_extra9`) VALUES + (334, 1, 127, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, -72.9919, -331.528, 16.2616, 0, 0, -0.0204993, 2, 17, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `veh_when_added`, `veh_how_added`, `veh_who_added`, `veh_hd_extra1`, `veh_hd_extra2`, `veh_hd_extra3`, `veh_hd_extra4`, `veh_hd_extra5`, `veh_hd_extra6`, `veh_hd_extra7`, `veh_hd_extra8`, `veh_hd_extra9`) VALUES + (335, 1, 97, 0, 0, 0, 0, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, -83.3733, -442.729, 16.3754, 0, 0, 1.53779, 2, 9, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `veh_when_added`, `veh_how_added`, `veh_who_added`, `veh_hd_extra1`, `veh_hd_extra2`, `veh_hd_extra3`, `veh_hd_extra4`, `veh_hd_extra5`, `veh_hd_extra6`, `veh_hd_extra7`, `veh_hd_extra8`, `veh_hd_extra9`) VALUES + (336, 1, 97, 0, 0, 0, 0, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, -83.3866, -432.508, 16.3646, 0, 0, 1.56684, 2, 9, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `veh_when_added`, `veh_how_added`, `veh_who_added`, `veh_hd_extra1`, `veh_hd_extra2`, `veh_hd_extra3`, `veh_hd_extra4`, `veh_hd_extra5`, `veh_hd_extra6`, `veh_hd_extra7`, `veh_hd_extra8`, `veh_hd_extra9`) VALUES + (337, 1, 116, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, -662.811, -422.455, 18.5614, 0, 0, -0.227887, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `veh_when_added`, `veh_how_added`, `veh_who_added`, `veh_hd_extra1`, `veh_hd_extra2`, `veh_hd_extra3`, `veh_hd_extra4`, `veh_hd_extra5`, `veh_hd_extra6`, `veh_hd_extra7`, `veh_hd_extra8`, `veh_hd_extra9`) VALUES + (338, 1, 102, 0, 0, 0, 0, 44, 74, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, -739.187, -576.721, 8.54147, 0, 0, -0.412251, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `veh_when_added`, `veh_how_added`, `veh_who_added`, `veh_hd_extra1`, `veh_hd_extra2`, `veh_hd_extra3`, `veh_hd_extra4`, `veh_hd_extra5`, `veh_hd_extra6`, `veh_hd_extra7`, `veh_hd_extra8`, `veh_hd_extra9`) VALUES + (339, 2, 236, 0, 0, 0, 0, 7, 7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 349.923, -507.823, 12.098, 0, 0, -0.695444, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `veh_when_added`, `veh_how_added`, `veh_who_added`, `veh_hd_extra1`, `veh_hd_extra2`, `veh_hd_extra3`, `veh_hd_extra4`, `veh_hd_extra5`, `veh_hd_extra6`, `veh_hd_extra7`, `veh_hd_extra8`, `veh_hd_extra9`) VALUES + (340, 2, 236, 0, 0, 0, 0, 3, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 352.536, -509.998, 12.098, 0, 0, -0.71261, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `veh_when_added`, `veh_how_added`, `veh_who_added`, `veh_hd_extra1`, `veh_hd_extra2`, `veh_hd_extra3`, `veh_hd_extra4`, `veh_hd_extra5`, `veh_hd_extra6`, `veh_hd_extra7`, `veh_hd_extra8`, `veh_hd_extra9`) VALUES + (341, 1, 111, 0, 0, 0, 0, 34, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 1120.8, -105.232, 9.55985, 0, 0, -3.09175, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `veh_when_added`, `veh_how_added`, `veh_who_added`, `veh_hd_extra1`, `veh_hd_extra2`, `veh_hd_extra3`, `veh_hd_extra4`, `veh_hd_extra5`, `veh_hd_extra6`, `veh_hd_extra7`, `veh_hd_extra8`, `veh_hd_extra9`) VALUES + (342, 1, 111, 0, 0, 0, 0, 26, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 1209.73, -90.2957, 12.9842, 0, 0, -2.2061, 6, 204, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 2500, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `veh_when_added`, `veh_how_added`, `veh_who_added`, `veh_hd_extra1`, `veh_hd_extra2`, `veh_hd_extra3`, `veh_hd_extra4`, `veh_hd_extra5`, `veh_hd_extra6`, `veh_hd_extra7`, `veh_hd_extra8`, `veh_hd_extra9`) VALUES + (343, 4, 462, 0, 0, 0, 0, 13, 13, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 1561.43, -2264.18, 13.1445, 0, 0, 1.56442, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `veh_when_added`, `veh_how_added`, `veh_who_added`, `veh_hd_extra1`, `veh_hd_extra2`, `veh_hd_extra3`, `veh_hd_extra4`, `veh_hd_extra5`, `veh_hd_extra6`, `veh_hd_extra7`, `veh_hd_extra8`, `veh_hd_extra9`) VALUES + (344, 4, 462, 0, 0, 0, 0, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 1561.42, -2260.71, 13.1447, 0, 0, 1.56546, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `veh_when_added`, `veh_how_added`, `veh_who_added`, `veh_hd_extra1`, `veh_hd_extra2`, `veh_hd_extra3`, `veh_hd_extra4`, `veh_hd_extra5`, `veh_hd_extra6`, `veh_hd_extra7`, `veh_hd_extra8`, `veh_hd_extra9`) VALUES + (345, 4, 462, 0, 0, 0, 0, 2, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 1561.43, -2257.49, 13.144, 0, 0, 1.57553, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `veh_when_added`, `veh_how_added`, `veh_who_added`, `veh_hd_extra1`, `veh_hd_extra2`, `veh_hd_extra3`, `veh_hd_extra4`, `veh_hd_extra5`, `veh_hd_extra6`, `veh_hd_extra7`, `veh_hd_extra8`, `veh_hd_extra9`) VALUES + (346, 4, 462, 0, 0, 0, 0, 12, 12, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 1561.32, -2254.05, 13.1433, 0, 0, 1.60366, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `veh_when_added`, `veh_how_added`, `veh_who_added`, `veh_hd_extra1`, `veh_hd_extra2`, `veh_hd_extra3`, `veh_hd_extra4`, `veh_hd_extra5`, `veh_hd_extra6`, `veh_hd_extra7`, `veh_hd_extra8`, `veh_hd_extra9`) VALUES + (347, 4, 462, 0, 0, 0, 0, 2, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 1561.39, -2250.88, 13.1434, 0, 0, 1.5767, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `veh_when_added`, `veh_how_added`, `veh_who_added`, `veh_hd_extra1`, `veh_hd_extra2`, `veh_hd_extra3`, `veh_hd_extra4`, `veh_hd_extra5`, `veh_hd_extra6`, `veh_hd_extra7`, `veh_hd_extra8`, `veh_hd_extra9`) VALUES + (348, 4, 462, 0, 0, 0, 0, 13, 13, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 1561.54, -2308.67, 13.1443, 0, 0, 1.56716, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `veh_when_added`, `veh_how_added`, `veh_who_added`, `veh_hd_extra1`, `veh_hd_extra2`, `veh_hd_extra3`, `veh_hd_extra4`, `veh_hd_extra5`, `veh_hd_extra6`, `veh_hd_extra7`, `veh_hd_extra8`, `veh_hd_extra9`) VALUES + (349, 4, 462, 0, 0, 0, 0, 1, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 1561.43, -2312.21, 13.1413, 0, 0, 1.57362, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `veh_when_added`, `veh_how_added`, `veh_who_added`, `veh_hd_extra1`, `veh_hd_extra2`, `veh_hd_extra3`, `veh_hd_extra4`, `veh_hd_extra5`, `veh_hd_extra6`, `veh_hd_extra7`, `veh_hd_extra8`, `veh_hd_extra9`) VALUES + (350, 4, 462, 0, 0, 0, 0, 1, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 1561.37, -2315.54, 13.1502, 0, 0, 1.57955, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `veh_when_added`, `veh_how_added`, `veh_who_added`, `veh_hd_extra1`, `veh_hd_extra2`, `veh_hd_extra3`, `veh_hd_extra4`, `veh_hd_extra5`, `veh_hd_extra6`, `veh_hd_extra7`, `veh_hd_extra8`, `veh_hd_extra9`) VALUES + (351, 4, 462, 0, 0, 0, 0, 1, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 1561.46, -2318.79, 13.1152, 0, 0, 1.70434, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `veh_when_added`, `veh_how_added`, `veh_who_added`, `veh_hd_extra1`, `veh_hd_extra2`, `veh_hd_extra3`, `veh_hd_extra4`, `veh_hd_extra5`, `veh_hd_extra6`, `veh_hd_extra7`, `veh_hd_extra8`, `veh_hd_extra9`) VALUES + (352, 4, 462, 0, 0, 0, 0, 13, 13, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 1561.57, -2321.93, 13.1452, 0, 0, 1.5955, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `veh_when_added`, `veh_how_added`, `veh_who_added`, `veh_hd_extra1`, `veh_hd_extra2`, `veh_hd_extra3`, `veh_hd_extra4`, `veh_hd_extra5`, `veh_hd_extra6`, `veh_hd_extra7`, `veh_hd_extra8`, `veh_hd_extra9`) VALUES + (353, 4, 462, 0, 0, 0, 0, 12, 12, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 1561.83, -2325.31, 13.1411, 0, 0, 1.58323, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `veh_when_added`, `veh_how_added`, `veh_who_added`, `veh_hd_extra1`, `veh_hd_extra2`, `veh_hd_extra3`, `veh_hd_extra4`, `veh_hd_extra5`, `veh_hd_extra6`, `veh_hd_extra7`, `veh_hd_extra8`, `veh_hd_extra9`) VALUES + (354, 4, 463, 0, 0, 0, 0, 19, 19, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 990.59, -1353.73, 12.9093, 0, 0, -1.54904, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `veh_when_added`, `veh_how_added`, `veh_who_added`, `veh_hd_extra1`, `veh_hd_extra2`, `veh_hd_extra3`, `veh_hd_extra4`, `veh_hd_extra5`, `veh_hd_extra6`, `veh_hd_extra7`, `veh_hd_extra8`, `veh_hd_extra9`) VALUES + (355, 4, 586, 0, 0, 0, 0, 8, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 990.701, -1355.77, 12.8884, 0, 0, -1.54248, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `veh_when_added`, `veh_how_added`, `veh_who_added`, `veh_hd_extra1`, `veh_hd_extra2`, `veh_hd_extra3`, `veh_hd_extra4`, `veh_hd_extra5`, `veh_hd_extra6`, `veh_hd_extra7`, `veh_hd_extra8`, `veh_hd_extra9`) VALUES + (356, 4, 462, 0, 0, 0, 0, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 990.4, -1357.84, 12.9707, 0, 0, -1.5026, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `veh_when_added`, `veh_how_added`, `veh_who_added`, `veh_hd_extra1`, `veh_hd_extra2`, `veh_hd_extra3`, `veh_hd_extra4`, `veh_hd_extra5`, `veh_hd_extra6`, `veh_hd_extra7`, `veh_hd_extra8`, `veh_hd_extra9`) VALUES + (357, 4, 468, 0, 0, 0, 0, 6, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 990.512, -1359.94, 13.0338, 0, 0, -1.52087, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `veh_when_added`, `veh_how_added`, `veh_who_added`, `veh_hd_extra1`, `veh_hd_extra2`, `veh_hd_extra3`, `veh_hd_extra4`, `veh_hd_extra5`, `veh_hd_extra6`, `veh_hd_extra7`, `veh_hd_extra8`, `veh_hd_extra9`) VALUES + (358, 4, 581, 0, 0, 0, 0, 66, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 990.615, -1361.65, 12.9657, 0, 0, -1.62156, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `veh_when_added`, `veh_how_added`, `veh_who_added`, `veh_hd_extra1`, `veh_hd_extra2`, `veh_hd_extra3`, `veh_hd_extra4`, `veh_hd_extra5`, `veh_hd_extra6`, `veh_hd_extra7`, `veh_hd_extra8`, `veh_hd_extra9`) VALUES + (359, 4, 461, 0, 0, 0, 0, 36, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 990.65, -1363.27, 12.9532, 0, 0, -1.58056, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `veh_when_added`, `veh_how_added`, `veh_who_added`, `veh_hd_extra1`, `veh_hd_extra2`, `veh_hd_extra3`, `veh_hd_extra4`, `veh_hd_extra5`, `veh_hd_extra6`, `veh_hd_extra7`, `veh_hd_extra8`, `veh_hd_extra9`) VALUES + (360, 4, 522, 0, 0, 0, 0, 3, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 990.505, -1364.99, 12.9362, 0, 0, -1.60842, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `veh_when_added`, `veh_how_added`, `veh_who_added`, `veh_hd_extra1`, `veh_hd_extra2`, `veh_hd_extra3`, `veh_hd_extra4`, `veh_hd_extra5`, `veh_hd_extra6`, `veh_hd_extra7`, `veh_hd_extra8`, `veh_hd_extra9`) VALUES + (361, 4, 471, 0, 0, 0, 0, 66, 71, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 990.345, -1367.09, 12.8528, 0, 0, -1.6018, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +/*!40000 ALTER TABLE `veh_main` ENABLE KEYS */; + +/*!40101 SET SQL_MODE=IFNULL(@OLD_SQL_MODE, '') */; +/*!40014 SET FOREIGN_KEY_CHECKS=IF(@OLD_FOREIGN_KEY_CHECKS IS NULL, 1, @OLD_FOREIGN_KEY_CHECKS) */; +/*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */; +/*!40111 SET SQL_NOTES=@OLD_SQL_NOTES */; diff --git a/misc/backup/database/asshat-10MAR2021-0806.sql b/misc/backup/database/asshat-10MAR2021-0806.sql new file mode 100644 index 00000000..b423af5f --- /dev/null +++ b/misc/backup/database/asshat-10MAR2021-0806.sql @@ -0,0 +1,8817 @@ +-- -------------------------------------------------------- +-- Host: 127.0.0.1 +-- Server version: 5.7.32 - MySQL Community Server (GPL) +-- Server OS: Linux +-- HeidiSQL Version: 11.1.0.6116 +-- -------------------------------------------------------- + +/*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */; +/*!40101 SET NAMES utf8 */; +/*!50503 SET NAMES utf8mb4 */; +/*!40014 SET @OLD_FOREIGN_KEY_CHECKS=@@FOREIGN_KEY_CHECKS, FOREIGN_KEY_CHECKS=0 */; +/*!40101 SET @OLD_SQL_MODE=@@SQL_MODE, SQL_MODE='NO_AUTO_VALUE_ON_ZERO' */; +/*!40111 SET @OLD_SQL_NOTES=@@SQL_NOTES, SQL_NOTES=0 */; + +-- Dumping structure for table gtac_main.acct_auth +CREATE TABLE IF NOT EXISTS `acct_auth` ( + `acct_auth_id` int(11) NOT NULL AUTO_INCREMENT, + `acct_auth_acct` int(11) NOT NULL DEFAULT '0', + `acct_auth_type` int(11) NOT NULL DEFAULT '0', + `acct_auth_detail` varchar(128) NOT NULL DEFAULT '', + `acct_auth_smscarrier` int(11) NOT NULL DEFAULT '-1', + `acct_auth_verified` tinyint(1) NOT NULL DEFAULT '0', + `acct_auth_when_verified` int(32) NOT NULL DEFAULT '0', + `acct_auth_verifycode` varchar(32) NOT NULL DEFAULT '', + `acct_auth_token` varchar(128) NOT NULL DEFAULT '', + PRIMARY KEY (`acct_auth_id`), + KEY `acct_auth_acct` (`acct_auth_acct`), + CONSTRAINT `fk_acct_auth_acct` FOREIGN KEY (`acct_auth_acct`) REFERENCES `acct_main` (`acct_id`) ON DELETE CASCADE ON UPDATE CASCADE +) ENGINE=InnoDB DEFAULT CHARSET=latin1 COMMENT='Accounts - Authentication Methods'; + +-- Dumping data for table gtac_main.acct_auth: ~0 rows (approximately) +/*!40000 ALTER TABLE `acct_auth` DISABLE KEYS */; +/*!40000 ALTER TABLE `acct_auth` ENABLE KEYS */; + +-- Dumping structure for table gtac_main.acct_bl +CREATE TABLE IF NOT EXISTS `acct_bl` ( + `acct_bl_id` int(11) NOT NULL AUTO_INCREMENT, + `acct_bl_acct` int(11) NOT NULL DEFAULT '0', + `acct_bl_ip` int(24) NOT NULL DEFAULT '0', + `acct_bl_uid` varchar(128) NOT NULL DEFAULT '', + `acct_bl_when_added` int(32) NOT NULL DEFAULT '0', + `acct_bl_enabled` tinyint(1) NOT NULL DEFAULT '1', + PRIMARY KEY (`acct_bl_id`), + KEY `acct_bl_acct` (`acct_bl_acct`), + CONSTRAINT `hk_acct_bl_acct` FOREIGN KEY (`acct_bl_acct`) REFERENCES `acct_main` (`acct_id`) ON DELETE CASCADE ON UPDATE CASCADE +) ENGINE=InnoDB DEFAULT CHARSET=latin1 COMMENT='Accounts - Access Blacklist'; + +-- Dumping data for table gtac_main.acct_bl: ~0 rows (approximately) +/*!40000 ALTER TABLE `acct_bl` DISABLE KEYS */; +/*!40000 ALTER TABLE `acct_bl` ENABLE KEYS */; + +-- Dumping structure for table gtac_main.acct_contact +CREATE TABLE IF NOT EXISTS `acct_contact` ( + `acct_contact_id` int(11) NOT NULL AUTO_INCREMENT, + `acct_contact_acct` int(11) NOT NULL DEFAULT '0', + `acct_contact_contact` int(11) NOT NULL DEFAULT '0', + `acct_contact_type` int(11) NOT NULL DEFAULT '0', + `acct_contact_when_added` int(32) NOT NULL DEFAULT '0', + `acct_contact_accepted` tinyint(1) NOT NULL DEFAULT '0', + `acct_contact_when_accepted` int(32) NOT NULL DEFAULT '0', + `acct_contact_deleted` tinyint(1) NOT NULL DEFAULT '0', + PRIMARY KEY (`acct_contact_id`), + KEY `acct_contact_acct` (`acct_contact_acct`) +) ENGINE=InnoDB DEFAULT CHARSET=latin1 COMMENT='Accounts - Contacts (Friends/Blocked/Etc)'; + +-- Dumping data for table gtac_main.acct_contact: ~0 rows (approximately) +/*!40000 ALTER TABLE `acct_contact` DISABLE KEYS */; +/*!40000 ALTER TABLE `acct_contact` ENABLE KEYS */; + +-- Dumping structure for table gtac_main.acct_hotkey +CREATE TABLE IF NOT EXISTS `acct_hotkey` ( + `acct_hotkey_id` int(11) NOT NULL AUTO_INCREMENT, + `acct_hotkey_acct` int(11) NOT NULL DEFAULT '0', + `acct_hotkey_key` int(11) NOT NULL DEFAULT '0', + `acct_hotkey_cmdstr` varchar(128) NOT NULL DEFAULT '', + `acct_hotkey_enabled` tinyint(1) NOT NULL DEFAULT '1', + `acct_hotkey_when_added` bigint(20) NOT NULL DEFAULT '0', + `acct_hotkey_down` int(11) NOT NULL DEFAULT '0', + PRIMARY KEY (`acct_hotkey_id`), + KEY `acct_hotkey_acct` (`acct_hotkey_acct`), + CONSTRAINT `hk_acct_hotkey_acct` FOREIGN KEY (`acct_hotkey_acct`) REFERENCES `acct_main` (`acct_id`) ON DELETE CASCADE ON UPDATE CASCADE +) ENGINE=InnoDB AUTO_INCREMENT=181 DEFAULT CHARSET=latin1 COMMENT='Accounts - Custom Hotkeys'; + +-- Dumping data for table gtac_main.acct_hotkey: ~100 rows (approximately) +/*!40000 ALTER TABLE `acct_hotkey` DISABLE KEYS */; +INSERT INTO `acct_hotkey` (`acct_hotkey_id`, `acct_hotkey_acct`, `acct_hotkey_key`, `acct_hotkey_cmdstr`, `acct_hotkey_enabled`, `acct_hotkey_when_added`, `acct_hotkey_down`) VALUES + (1, 1, 107, 'engine', 1, 1610246045, 0); +INSERT INTO `acct_hotkey` (`acct_hotkey_id`, `acct_hotkey_acct`, `acct_hotkey_key`, `acct_hotkey_cmdstr`, `acct_hotkey_enabled`, `acct_hotkey_when_added`, `acct_hotkey_down`) VALUES + (2, 1, 108, 'lights', 1, 1610246045, 0); +INSERT INTO `acct_hotkey` (`acct_hotkey_id`, `acct_hotkey_acct`, `acct_hotkey_key`, `acct_hotkey_cmdstr`, `acct_hotkey_enabled`, `acct_hotkey_when_added`, `acct_hotkey_down`) VALUES + (3, 1, 106, 'lock', 1, 1610246045, 0); +INSERT INTO `acct_hotkey` (`acct_hotkey_id`, `acct_hotkey_acct`, `acct_hotkey_key`, `acct_hotkey_cmdstr`, `acct_hotkey_enabled`, `acct_hotkey_when_added`, `acct_hotkey_down`) VALUES + (4, 1, 102, 'enter', 1, 1610246045, 0); +INSERT INTO `acct_hotkey` (`acct_hotkey_id`, `acct_hotkey_acct`, `acct_hotkey_key`, `acct_hotkey_cmdstr`, `acct_hotkey_enabled`, `acct_hotkey_when_added`, `acct_hotkey_down`) VALUES + (5, 1, 103, 'passenger', 1, 1610246045, 0); +INSERT INTO `acct_hotkey` (`acct_hotkey_id`, `acct_hotkey_acct`, `acct_hotkey_key`, `acct_hotkey_cmdstr`, `acct_hotkey_enabled`, `acct_hotkey_when_added`, `acct_hotkey_down`) VALUES + (6, 1, 109, 'cursor', 1, 1610246045, 0); +INSERT INTO `acct_hotkey` (`acct_hotkey_id`, `acct_hotkey_acct`, `acct_hotkey_key`, `acct_hotkey_cmdstr`, `acct_hotkey_enabled`, `acct_hotkey_when_added`, `acct_hotkey_down`) VALUES + (7, 1, 111, 'drop', 1, 1610246045, 0); +INSERT INTO `acct_hotkey` (`acct_hotkey_id`, `acct_hotkey_acct`, `acct_hotkey_key`, `acct_hotkey_cmdstr`, `acct_hotkey_enabled`, `acct_hotkey_when_added`, `acct_hotkey_down`) VALUES + (8, 1, 112, 'pickup', 1, 1610246045, 0); +INSERT INTO `acct_hotkey` (`acct_hotkey_id`, `acct_hotkey_acct`, `acct_hotkey_key`, `acct_hotkey_cmdstr`, `acct_hotkey_enabled`, `acct_hotkey_when_added`, `acct_hotkey_down`) VALUES + (9, 1, 117, 'use', 1, 1610246045, 0); +INSERT INTO `acct_hotkey` (`acct_hotkey_id`, `acct_hotkey_acct`, `acct_hotkey_key`, `acct_hotkey_cmdstr`, `acct_hotkey_enabled`, `acct_hotkey_when_added`, `acct_hotkey_down`) VALUES + (10, 1, 105, 'inv', 1, 1610246045, 0); +INSERT INTO `acct_hotkey` (`acct_hotkey_id`, `acct_hotkey_acct`, `acct_hotkey_key`, `acct_hotkey_cmdstr`, `acct_hotkey_enabled`, `acct_hotkey_when_added`, `acct_hotkey_down`) VALUES + (11, 1, 48, 'i 0', 1, 1610246045, 0); +INSERT INTO `acct_hotkey` (`acct_hotkey_id`, `acct_hotkey_acct`, `acct_hotkey_key`, `acct_hotkey_cmdstr`, `acct_hotkey_enabled`, `acct_hotkey_when_added`, `acct_hotkey_down`) VALUES + (12, 1, 49, 'i 1', 1, 1610246045, 0); +INSERT INTO `acct_hotkey` (`acct_hotkey_id`, `acct_hotkey_acct`, `acct_hotkey_key`, `acct_hotkey_cmdstr`, `acct_hotkey_enabled`, `acct_hotkey_when_added`, `acct_hotkey_down`) VALUES + (13, 1, 50, 'i 2', 1, 1610246045, 0); +INSERT INTO `acct_hotkey` (`acct_hotkey_id`, `acct_hotkey_acct`, `acct_hotkey_key`, `acct_hotkey_cmdstr`, `acct_hotkey_enabled`, `acct_hotkey_when_added`, `acct_hotkey_down`) VALUES + (14, 1, 51, 'i 3', 1, 1610246045, 0); +INSERT INTO `acct_hotkey` (`acct_hotkey_id`, `acct_hotkey_acct`, `acct_hotkey_key`, `acct_hotkey_cmdstr`, `acct_hotkey_enabled`, `acct_hotkey_when_added`, `acct_hotkey_down`) VALUES + (15, 1, 52, 'i 4', 1, 1610246045, 0); +INSERT INTO `acct_hotkey` (`acct_hotkey_id`, `acct_hotkey_acct`, `acct_hotkey_key`, `acct_hotkey_cmdstr`, `acct_hotkey_enabled`, `acct_hotkey_when_added`, `acct_hotkey_down`) VALUES + (16, 1, 53, 'i 5', 1, 1610246045, 0); +INSERT INTO `acct_hotkey` (`acct_hotkey_id`, `acct_hotkey_acct`, `acct_hotkey_key`, `acct_hotkey_cmdstr`, `acct_hotkey_enabled`, `acct_hotkey_when_added`, `acct_hotkey_down`) VALUES + (17, 1, 54, 'i 6', 1, 1610246045, 0); +INSERT INTO `acct_hotkey` (`acct_hotkey_id`, `acct_hotkey_acct`, `acct_hotkey_key`, `acct_hotkey_cmdstr`, `acct_hotkey_enabled`, `acct_hotkey_when_added`, `acct_hotkey_down`) VALUES + (18, 1, 55, 'i 7', 1, 1610246045, 0); +INSERT INTO `acct_hotkey` (`acct_hotkey_id`, `acct_hotkey_acct`, `acct_hotkey_key`, `acct_hotkey_cmdstr`, `acct_hotkey_enabled`, `acct_hotkey_when_added`, `acct_hotkey_down`) VALUES + (19, 1, 56, 'i 8', 1, 1610246045, 0); +INSERT INTO `acct_hotkey` (`acct_hotkey_id`, `acct_hotkey_acct`, `acct_hotkey_key`, `acct_hotkey_cmdstr`, `acct_hotkey_enabled`, `acct_hotkey_when_added`, `acct_hotkey_down`) VALUES + (20, 1, 57, 'i 9', 1, 1610246045, 0); +INSERT INTO `acct_hotkey` (`acct_hotkey_id`, `acct_hotkey_acct`, `acct_hotkey_key`, `acct_hotkey_cmdstr`, `acct_hotkey_enabled`, `acct_hotkey_when_added`, `acct_hotkey_down`) VALUES + (21, 2, 107, 'engine', 1, 1610246120, 0); +INSERT INTO `acct_hotkey` (`acct_hotkey_id`, `acct_hotkey_acct`, `acct_hotkey_key`, `acct_hotkey_cmdstr`, `acct_hotkey_enabled`, `acct_hotkey_when_added`, `acct_hotkey_down`) VALUES + (22, 2, 108, 'lights', 1, 1610246120, 0); +INSERT INTO `acct_hotkey` (`acct_hotkey_id`, `acct_hotkey_acct`, `acct_hotkey_key`, `acct_hotkey_cmdstr`, `acct_hotkey_enabled`, `acct_hotkey_when_added`, `acct_hotkey_down`) VALUES + (23, 2, 106, 'lock', 1, 1610246120, 0); +INSERT INTO `acct_hotkey` (`acct_hotkey_id`, `acct_hotkey_acct`, `acct_hotkey_key`, `acct_hotkey_cmdstr`, `acct_hotkey_enabled`, `acct_hotkey_when_added`, `acct_hotkey_down`) VALUES + (24, 2, 102, 'enter', 1, 1610246120, 0); +INSERT INTO `acct_hotkey` (`acct_hotkey_id`, `acct_hotkey_acct`, `acct_hotkey_key`, `acct_hotkey_cmdstr`, `acct_hotkey_enabled`, `acct_hotkey_when_added`, `acct_hotkey_down`) VALUES + (25, 2, 103, 'passenger', 1, 1610246120, 0); +INSERT INTO `acct_hotkey` (`acct_hotkey_id`, `acct_hotkey_acct`, `acct_hotkey_key`, `acct_hotkey_cmdstr`, `acct_hotkey_enabled`, `acct_hotkey_when_added`, `acct_hotkey_down`) VALUES + (26, 2, 109, 'cursor', 1, 1610246120, 0); +INSERT INTO `acct_hotkey` (`acct_hotkey_id`, `acct_hotkey_acct`, `acct_hotkey_key`, `acct_hotkey_cmdstr`, `acct_hotkey_enabled`, `acct_hotkey_when_added`, `acct_hotkey_down`) VALUES + (27, 2, 111, 'drop', 1, 1610246120, 0); +INSERT INTO `acct_hotkey` (`acct_hotkey_id`, `acct_hotkey_acct`, `acct_hotkey_key`, `acct_hotkey_cmdstr`, `acct_hotkey_enabled`, `acct_hotkey_when_added`, `acct_hotkey_down`) VALUES + (28, 2, 112, 'pickup', 1, 1610246120, 0); +INSERT INTO `acct_hotkey` (`acct_hotkey_id`, `acct_hotkey_acct`, `acct_hotkey_key`, `acct_hotkey_cmdstr`, `acct_hotkey_enabled`, `acct_hotkey_when_added`, `acct_hotkey_down`) VALUES + (29, 2, 117, 'use', 1, 1610246120, 0); +INSERT INTO `acct_hotkey` (`acct_hotkey_id`, `acct_hotkey_acct`, `acct_hotkey_key`, `acct_hotkey_cmdstr`, `acct_hotkey_enabled`, `acct_hotkey_when_added`, `acct_hotkey_down`) VALUES + (30, 2, 105, 'inv', 1, 1610246120, 0); +INSERT INTO `acct_hotkey` (`acct_hotkey_id`, `acct_hotkey_acct`, `acct_hotkey_key`, `acct_hotkey_cmdstr`, `acct_hotkey_enabled`, `acct_hotkey_when_added`, `acct_hotkey_down`) VALUES + (31, 2, 48, 'i 0', 1, 1610246120, 0); +INSERT INTO `acct_hotkey` (`acct_hotkey_id`, `acct_hotkey_acct`, `acct_hotkey_key`, `acct_hotkey_cmdstr`, `acct_hotkey_enabled`, `acct_hotkey_when_added`, `acct_hotkey_down`) VALUES + (32, 2, 49, 'i 1', 1, 1610246120, 0); +INSERT INTO `acct_hotkey` (`acct_hotkey_id`, `acct_hotkey_acct`, `acct_hotkey_key`, `acct_hotkey_cmdstr`, `acct_hotkey_enabled`, `acct_hotkey_when_added`, `acct_hotkey_down`) VALUES + (33, 2, 50, 'i 2', 1, 1610246120, 0); +INSERT INTO `acct_hotkey` (`acct_hotkey_id`, `acct_hotkey_acct`, `acct_hotkey_key`, `acct_hotkey_cmdstr`, `acct_hotkey_enabled`, `acct_hotkey_when_added`, `acct_hotkey_down`) VALUES + (34, 2, 51, 'i 3', 1, 1610246120, 0); +INSERT INTO `acct_hotkey` (`acct_hotkey_id`, `acct_hotkey_acct`, `acct_hotkey_key`, `acct_hotkey_cmdstr`, `acct_hotkey_enabled`, `acct_hotkey_when_added`, `acct_hotkey_down`) VALUES + (35, 2, 52, 'i 4', 1, 1610246120, 0); +INSERT INTO `acct_hotkey` (`acct_hotkey_id`, `acct_hotkey_acct`, `acct_hotkey_key`, `acct_hotkey_cmdstr`, `acct_hotkey_enabled`, `acct_hotkey_when_added`, `acct_hotkey_down`) VALUES + (36, 2, 53, 'i 5', 1, 1610246120, 0); +INSERT INTO `acct_hotkey` (`acct_hotkey_id`, `acct_hotkey_acct`, `acct_hotkey_key`, `acct_hotkey_cmdstr`, `acct_hotkey_enabled`, `acct_hotkey_when_added`, `acct_hotkey_down`) VALUES + (37, 2, 54, 'i 6', 1, 1610246120, 0); +INSERT INTO `acct_hotkey` (`acct_hotkey_id`, `acct_hotkey_acct`, `acct_hotkey_key`, `acct_hotkey_cmdstr`, `acct_hotkey_enabled`, `acct_hotkey_when_added`, `acct_hotkey_down`) VALUES + (38, 2, 55, 'i 7', 1, 1610246120, 0); +INSERT INTO `acct_hotkey` (`acct_hotkey_id`, `acct_hotkey_acct`, `acct_hotkey_key`, `acct_hotkey_cmdstr`, `acct_hotkey_enabled`, `acct_hotkey_when_added`, `acct_hotkey_down`) VALUES + (39, 2, 56, 'i 8', 1, 1610246120, 0); +INSERT INTO `acct_hotkey` (`acct_hotkey_id`, `acct_hotkey_acct`, `acct_hotkey_key`, `acct_hotkey_cmdstr`, `acct_hotkey_enabled`, `acct_hotkey_when_added`, `acct_hotkey_down`) VALUES + (40, 2, 57, 'i 9', 1, 1610246120, 0); +INSERT INTO `acct_hotkey` (`acct_hotkey_id`, `acct_hotkey_acct`, `acct_hotkey_key`, `acct_hotkey_cmdstr`, `acct_hotkey_enabled`, `acct_hotkey_when_added`, `acct_hotkey_down`) VALUES + (41, 3, 107, 'engine', 1, 1610247643, 0); +INSERT INTO `acct_hotkey` (`acct_hotkey_id`, `acct_hotkey_acct`, `acct_hotkey_key`, `acct_hotkey_cmdstr`, `acct_hotkey_enabled`, `acct_hotkey_when_added`, `acct_hotkey_down`) VALUES + (42, 3, 108, 'lights', 1, 1610247643, 0); +INSERT INTO `acct_hotkey` (`acct_hotkey_id`, `acct_hotkey_acct`, `acct_hotkey_key`, `acct_hotkey_cmdstr`, `acct_hotkey_enabled`, `acct_hotkey_when_added`, `acct_hotkey_down`) VALUES + (43, 3, 106, 'lock', 1, 1610247643, 0); +INSERT INTO `acct_hotkey` (`acct_hotkey_id`, `acct_hotkey_acct`, `acct_hotkey_key`, `acct_hotkey_cmdstr`, `acct_hotkey_enabled`, `acct_hotkey_when_added`, `acct_hotkey_down`) VALUES + (44, 3, 102, 'enter', 1, 1610247643, 0); +INSERT INTO `acct_hotkey` (`acct_hotkey_id`, `acct_hotkey_acct`, `acct_hotkey_key`, `acct_hotkey_cmdstr`, `acct_hotkey_enabled`, `acct_hotkey_when_added`, `acct_hotkey_down`) VALUES + (45, 3, 103, 'passenger', 1, 1610247643, 0); +INSERT INTO `acct_hotkey` (`acct_hotkey_id`, `acct_hotkey_acct`, `acct_hotkey_key`, `acct_hotkey_cmdstr`, `acct_hotkey_enabled`, `acct_hotkey_when_added`, `acct_hotkey_down`) VALUES + (46, 3, 109, 'cursor', 1, 1610247643, 0); +INSERT INTO `acct_hotkey` (`acct_hotkey_id`, `acct_hotkey_acct`, `acct_hotkey_key`, `acct_hotkey_cmdstr`, `acct_hotkey_enabled`, `acct_hotkey_when_added`, `acct_hotkey_down`) VALUES + (47, 3, 111, 'drop', 1, 1610247643, 0); +INSERT INTO `acct_hotkey` (`acct_hotkey_id`, `acct_hotkey_acct`, `acct_hotkey_key`, `acct_hotkey_cmdstr`, `acct_hotkey_enabled`, `acct_hotkey_when_added`, `acct_hotkey_down`) VALUES + (48, 3, 112, 'pickup', 1, 1610247643, 0); +INSERT INTO `acct_hotkey` (`acct_hotkey_id`, `acct_hotkey_acct`, `acct_hotkey_key`, `acct_hotkey_cmdstr`, `acct_hotkey_enabled`, `acct_hotkey_when_added`, `acct_hotkey_down`) VALUES + (49, 3, 117, 'use', 1, 1610247643, 0); +INSERT INTO `acct_hotkey` (`acct_hotkey_id`, `acct_hotkey_acct`, `acct_hotkey_key`, `acct_hotkey_cmdstr`, `acct_hotkey_enabled`, `acct_hotkey_when_added`, `acct_hotkey_down`) VALUES + (50, 3, 105, 'inv', 1, 1610247643, 0); +INSERT INTO `acct_hotkey` (`acct_hotkey_id`, `acct_hotkey_acct`, `acct_hotkey_key`, `acct_hotkey_cmdstr`, `acct_hotkey_enabled`, `acct_hotkey_when_added`, `acct_hotkey_down`) VALUES + (51, 3, 48, 'i 0', 1, 1610247643, 0); +INSERT INTO `acct_hotkey` (`acct_hotkey_id`, `acct_hotkey_acct`, `acct_hotkey_key`, `acct_hotkey_cmdstr`, `acct_hotkey_enabled`, `acct_hotkey_when_added`, `acct_hotkey_down`) VALUES + (52, 3, 49, 'i 1', 1, 1610247643, 0); +INSERT INTO `acct_hotkey` (`acct_hotkey_id`, `acct_hotkey_acct`, `acct_hotkey_key`, `acct_hotkey_cmdstr`, `acct_hotkey_enabled`, `acct_hotkey_when_added`, `acct_hotkey_down`) VALUES + (53, 3, 50, 'i 2', 1, 1610247643, 0); +INSERT INTO `acct_hotkey` (`acct_hotkey_id`, `acct_hotkey_acct`, `acct_hotkey_key`, `acct_hotkey_cmdstr`, `acct_hotkey_enabled`, `acct_hotkey_when_added`, `acct_hotkey_down`) VALUES + (54, 3, 51, 'i 3', 1, 1610247643, 0); +INSERT INTO `acct_hotkey` (`acct_hotkey_id`, `acct_hotkey_acct`, `acct_hotkey_key`, `acct_hotkey_cmdstr`, `acct_hotkey_enabled`, `acct_hotkey_when_added`, `acct_hotkey_down`) VALUES + (55, 3, 52, 'i 4', 1, 1610247643, 0); +INSERT INTO `acct_hotkey` (`acct_hotkey_id`, `acct_hotkey_acct`, `acct_hotkey_key`, `acct_hotkey_cmdstr`, `acct_hotkey_enabled`, `acct_hotkey_when_added`, `acct_hotkey_down`) VALUES + (56, 3, 53, 'i 5', 1, 1610247643, 0); +INSERT INTO `acct_hotkey` (`acct_hotkey_id`, `acct_hotkey_acct`, `acct_hotkey_key`, `acct_hotkey_cmdstr`, `acct_hotkey_enabled`, `acct_hotkey_when_added`, `acct_hotkey_down`) VALUES + (57, 3, 54, 'i 6', 1, 1610247643, 0); +INSERT INTO `acct_hotkey` (`acct_hotkey_id`, `acct_hotkey_acct`, `acct_hotkey_key`, `acct_hotkey_cmdstr`, `acct_hotkey_enabled`, `acct_hotkey_when_added`, `acct_hotkey_down`) VALUES + (58, 3, 55, 'i 7', 1, 1610247643, 0); +INSERT INTO `acct_hotkey` (`acct_hotkey_id`, `acct_hotkey_acct`, `acct_hotkey_key`, `acct_hotkey_cmdstr`, `acct_hotkey_enabled`, `acct_hotkey_when_added`, `acct_hotkey_down`) VALUES + (59, 3, 56, 'i 8', 1, 1610247643, 0); +INSERT INTO `acct_hotkey` (`acct_hotkey_id`, `acct_hotkey_acct`, `acct_hotkey_key`, `acct_hotkey_cmdstr`, `acct_hotkey_enabled`, `acct_hotkey_when_added`, `acct_hotkey_down`) VALUES + (60, 3, 57, 'i 9', 1, 1610247643, 0); +INSERT INTO `acct_hotkey` (`acct_hotkey_id`, `acct_hotkey_acct`, `acct_hotkey_key`, `acct_hotkey_cmdstr`, `acct_hotkey_enabled`, `acct_hotkey_when_added`, `acct_hotkey_down`) VALUES + (61, 4, 107, 'engine', 1, 1610251858, 0); +INSERT INTO `acct_hotkey` (`acct_hotkey_id`, `acct_hotkey_acct`, `acct_hotkey_key`, `acct_hotkey_cmdstr`, `acct_hotkey_enabled`, `acct_hotkey_when_added`, `acct_hotkey_down`) VALUES + (62, 4, 108, 'lights', 1, 1610251858, 0); +INSERT INTO `acct_hotkey` (`acct_hotkey_id`, `acct_hotkey_acct`, `acct_hotkey_key`, `acct_hotkey_cmdstr`, `acct_hotkey_enabled`, `acct_hotkey_when_added`, `acct_hotkey_down`) VALUES + (63, 4, 106, 'lock', 1, 1610251858, 0); +INSERT INTO `acct_hotkey` (`acct_hotkey_id`, `acct_hotkey_acct`, `acct_hotkey_key`, `acct_hotkey_cmdstr`, `acct_hotkey_enabled`, `acct_hotkey_when_added`, `acct_hotkey_down`) VALUES + (64, 4, 102, 'enter', 1, 1610251858, 0); +INSERT INTO `acct_hotkey` (`acct_hotkey_id`, `acct_hotkey_acct`, `acct_hotkey_key`, `acct_hotkey_cmdstr`, `acct_hotkey_enabled`, `acct_hotkey_when_added`, `acct_hotkey_down`) VALUES + (65, 4, 103, 'passenger', 1, 1610251858, 0); +INSERT INTO `acct_hotkey` (`acct_hotkey_id`, `acct_hotkey_acct`, `acct_hotkey_key`, `acct_hotkey_cmdstr`, `acct_hotkey_enabled`, `acct_hotkey_when_added`, `acct_hotkey_down`) VALUES + (66, 4, 109, 'cursor', 1, 1610251858, 0); +INSERT INTO `acct_hotkey` (`acct_hotkey_id`, `acct_hotkey_acct`, `acct_hotkey_key`, `acct_hotkey_cmdstr`, `acct_hotkey_enabled`, `acct_hotkey_when_added`, `acct_hotkey_down`) VALUES + (67, 4, 111, 'drop', 1, 1610251858, 0); +INSERT INTO `acct_hotkey` (`acct_hotkey_id`, `acct_hotkey_acct`, `acct_hotkey_key`, `acct_hotkey_cmdstr`, `acct_hotkey_enabled`, `acct_hotkey_when_added`, `acct_hotkey_down`) VALUES + (68, 4, 112, 'pickup', 1, 1610251858, 0); +INSERT INTO `acct_hotkey` (`acct_hotkey_id`, `acct_hotkey_acct`, `acct_hotkey_key`, `acct_hotkey_cmdstr`, `acct_hotkey_enabled`, `acct_hotkey_when_added`, `acct_hotkey_down`) VALUES + (69, 4, 117, 'use', 1, 1610251858, 0); +INSERT INTO `acct_hotkey` (`acct_hotkey_id`, `acct_hotkey_acct`, `acct_hotkey_key`, `acct_hotkey_cmdstr`, `acct_hotkey_enabled`, `acct_hotkey_when_added`, `acct_hotkey_down`) VALUES + (70, 4, 105, 'inv', 1, 1610251858, 0); +INSERT INTO `acct_hotkey` (`acct_hotkey_id`, `acct_hotkey_acct`, `acct_hotkey_key`, `acct_hotkey_cmdstr`, `acct_hotkey_enabled`, `acct_hotkey_when_added`, `acct_hotkey_down`) VALUES + (71, 4, 48, 'i 0', 1, 1610251858, 0); +INSERT INTO `acct_hotkey` (`acct_hotkey_id`, `acct_hotkey_acct`, `acct_hotkey_key`, `acct_hotkey_cmdstr`, `acct_hotkey_enabled`, `acct_hotkey_when_added`, `acct_hotkey_down`) VALUES + (72, 4, 49, 'i 1', 1, 1610251858, 0); +INSERT INTO `acct_hotkey` (`acct_hotkey_id`, `acct_hotkey_acct`, `acct_hotkey_key`, `acct_hotkey_cmdstr`, `acct_hotkey_enabled`, `acct_hotkey_when_added`, `acct_hotkey_down`) VALUES + (73, 4, 50, 'i 2', 1, 1610251858, 0); +INSERT INTO `acct_hotkey` (`acct_hotkey_id`, `acct_hotkey_acct`, `acct_hotkey_key`, `acct_hotkey_cmdstr`, `acct_hotkey_enabled`, `acct_hotkey_when_added`, `acct_hotkey_down`) VALUES + (74, 4, 51, 'i 3', 1, 1610251858, 0); +INSERT INTO `acct_hotkey` (`acct_hotkey_id`, `acct_hotkey_acct`, `acct_hotkey_key`, `acct_hotkey_cmdstr`, `acct_hotkey_enabled`, `acct_hotkey_when_added`, `acct_hotkey_down`) VALUES + (75, 4, 52, 'i 4', 1, 1610251858, 0); +INSERT INTO `acct_hotkey` (`acct_hotkey_id`, `acct_hotkey_acct`, `acct_hotkey_key`, `acct_hotkey_cmdstr`, `acct_hotkey_enabled`, `acct_hotkey_when_added`, `acct_hotkey_down`) VALUES + (76, 4, 53, 'i 5', 1, 1610251858, 0); +INSERT INTO `acct_hotkey` (`acct_hotkey_id`, `acct_hotkey_acct`, `acct_hotkey_key`, `acct_hotkey_cmdstr`, `acct_hotkey_enabled`, `acct_hotkey_when_added`, `acct_hotkey_down`) VALUES + (77, 4, 54, 'i 6', 1, 1610251858, 0); +INSERT INTO `acct_hotkey` (`acct_hotkey_id`, `acct_hotkey_acct`, `acct_hotkey_key`, `acct_hotkey_cmdstr`, `acct_hotkey_enabled`, `acct_hotkey_when_added`, `acct_hotkey_down`) VALUES + (78, 4, 55, 'i 7', 1, 1610251858, 0); +INSERT INTO `acct_hotkey` (`acct_hotkey_id`, `acct_hotkey_acct`, `acct_hotkey_key`, `acct_hotkey_cmdstr`, `acct_hotkey_enabled`, `acct_hotkey_when_added`, `acct_hotkey_down`) VALUES + (79, 4, 56, 'i 8', 1, 1610251858, 0); +INSERT INTO `acct_hotkey` (`acct_hotkey_id`, `acct_hotkey_acct`, `acct_hotkey_key`, `acct_hotkey_cmdstr`, `acct_hotkey_enabled`, `acct_hotkey_when_added`, `acct_hotkey_down`) VALUES + (80, 4, 57, 'i 9', 1, 1610251858, 0); +INSERT INTO `acct_hotkey` (`acct_hotkey_id`, `acct_hotkey_acct`, `acct_hotkey_key`, `acct_hotkey_cmdstr`, `acct_hotkey_enabled`, `acct_hotkey_when_added`, `acct_hotkey_down`) VALUES + (161, 9, 107, 'engine', 1, 1613340581, 0); +INSERT INTO `acct_hotkey` (`acct_hotkey_id`, `acct_hotkey_acct`, `acct_hotkey_key`, `acct_hotkey_cmdstr`, `acct_hotkey_enabled`, `acct_hotkey_when_added`, `acct_hotkey_down`) VALUES + (162, 9, 108, 'lights', 1, 1613340581, 0); +INSERT INTO `acct_hotkey` (`acct_hotkey_id`, `acct_hotkey_acct`, `acct_hotkey_key`, `acct_hotkey_cmdstr`, `acct_hotkey_enabled`, `acct_hotkey_when_added`, `acct_hotkey_down`) VALUES + (163, 9, 106, 'lock', 1, 1613340581, 0); +INSERT INTO `acct_hotkey` (`acct_hotkey_id`, `acct_hotkey_acct`, `acct_hotkey_key`, `acct_hotkey_cmdstr`, `acct_hotkey_enabled`, `acct_hotkey_when_added`, `acct_hotkey_down`) VALUES + (164, 9, 102, 'enter', 1, 1613340581, 0); +INSERT INTO `acct_hotkey` (`acct_hotkey_id`, `acct_hotkey_acct`, `acct_hotkey_key`, `acct_hotkey_cmdstr`, `acct_hotkey_enabled`, `acct_hotkey_when_added`, `acct_hotkey_down`) VALUES + (165, 9, 103, 'passenger', 1, 1613340581, 0); +INSERT INTO `acct_hotkey` (`acct_hotkey_id`, `acct_hotkey_acct`, `acct_hotkey_key`, `acct_hotkey_cmdstr`, `acct_hotkey_enabled`, `acct_hotkey_when_added`, `acct_hotkey_down`) VALUES + (166, 9, 109, 'cursor', 1, 1613340581, 0); +INSERT INTO `acct_hotkey` (`acct_hotkey_id`, `acct_hotkey_acct`, `acct_hotkey_key`, `acct_hotkey_cmdstr`, `acct_hotkey_enabled`, `acct_hotkey_when_added`, `acct_hotkey_down`) VALUES + (167, 9, 111, 'drop', 1, 1613340581, 0); +INSERT INTO `acct_hotkey` (`acct_hotkey_id`, `acct_hotkey_acct`, `acct_hotkey_key`, `acct_hotkey_cmdstr`, `acct_hotkey_enabled`, `acct_hotkey_when_added`, `acct_hotkey_down`) VALUES + (168, 9, 112, 'pickup', 1, 1613340581, 0); +INSERT INTO `acct_hotkey` (`acct_hotkey_id`, `acct_hotkey_acct`, `acct_hotkey_key`, `acct_hotkey_cmdstr`, `acct_hotkey_enabled`, `acct_hotkey_when_added`, `acct_hotkey_down`) VALUES + (169, 9, 117, 'use', 1, 1613340581, 0); +INSERT INTO `acct_hotkey` (`acct_hotkey_id`, `acct_hotkey_acct`, `acct_hotkey_key`, `acct_hotkey_cmdstr`, `acct_hotkey_enabled`, `acct_hotkey_when_added`, `acct_hotkey_down`) VALUES + (170, 9, 105, 'inv', 1, 1613340581, 0); +INSERT INTO `acct_hotkey` (`acct_hotkey_id`, `acct_hotkey_acct`, `acct_hotkey_key`, `acct_hotkey_cmdstr`, `acct_hotkey_enabled`, `acct_hotkey_when_added`, `acct_hotkey_down`) VALUES + (171, 9, 48, 'i 0', 1, 1613340581, 0); +INSERT INTO `acct_hotkey` (`acct_hotkey_id`, `acct_hotkey_acct`, `acct_hotkey_key`, `acct_hotkey_cmdstr`, `acct_hotkey_enabled`, `acct_hotkey_when_added`, `acct_hotkey_down`) VALUES + (172, 9, 49, 'i 1', 1, 1613340581, 0); +INSERT INTO `acct_hotkey` (`acct_hotkey_id`, `acct_hotkey_acct`, `acct_hotkey_key`, `acct_hotkey_cmdstr`, `acct_hotkey_enabled`, `acct_hotkey_when_added`, `acct_hotkey_down`) VALUES + (173, 9, 50, 'i 2', 1, 1613340581, 0); +INSERT INTO `acct_hotkey` (`acct_hotkey_id`, `acct_hotkey_acct`, `acct_hotkey_key`, `acct_hotkey_cmdstr`, `acct_hotkey_enabled`, `acct_hotkey_when_added`, `acct_hotkey_down`) VALUES + (174, 9, 51, 'i 3', 1, 1613340581, 0); +INSERT INTO `acct_hotkey` (`acct_hotkey_id`, `acct_hotkey_acct`, `acct_hotkey_key`, `acct_hotkey_cmdstr`, `acct_hotkey_enabled`, `acct_hotkey_when_added`, `acct_hotkey_down`) VALUES + (175, 9, 52, 'i 4', 1, 1613340581, 0); +INSERT INTO `acct_hotkey` (`acct_hotkey_id`, `acct_hotkey_acct`, `acct_hotkey_key`, `acct_hotkey_cmdstr`, `acct_hotkey_enabled`, `acct_hotkey_when_added`, `acct_hotkey_down`) VALUES + (176, 9, 53, 'i 5', 1, 1613340581, 0); +INSERT INTO `acct_hotkey` (`acct_hotkey_id`, `acct_hotkey_acct`, `acct_hotkey_key`, `acct_hotkey_cmdstr`, `acct_hotkey_enabled`, `acct_hotkey_when_added`, `acct_hotkey_down`) VALUES + (177, 9, 54, 'i 6', 1, 1613340581, 0); +INSERT INTO `acct_hotkey` (`acct_hotkey_id`, `acct_hotkey_acct`, `acct_hotkey_key`, `acct_hotkey_cmdstr`, `acct_hotkey_enabled`, `acct_hotkey_when_added`, `acct_hotkey_down`) VALUES + (178, 9, 55, 'i 7', 1, 1613340581, 0); +INSERT INTO `acct_hotkey` (`acct_hotkey_id`, `acct_hotkey_acct`, `acct_hotkey_key`, `acct_hotkey_cmdstr`, `acct_hotkey_enabled`, `acct_hotkey_when_added`, `acct_hotkey_down`) VALUES + (179, 9, 56, 'i 8', 1, 1613340581, 0); +INSERT INTO `acct_hotkey` (`acct_hotkey_id`, `acct_hotkey_acct`, `acct_hotkey_key`, `acct_hotkey_cmdstr`, `acct_hotkey_enabled`, `acct_hotkey_when_added`, `acct_hotkey_down`) VALUES + (180, 9, 57, 'i 9', 1, 1613340581, 0); +/*!40000 ALTER TABLE `acct_hotkey` ENABLE KEYS */; + +-- Dumping structure for table gtac_main.acct_main +CREATE TABLE IF NOT EXISTS `acct_main` ( + `acct_id` int(11) NOT NULL AUTO_INCREMENT, + `acct_name` varchar(128) CHARACTER SET utf16 NOT NULL DEFAULT '', + `acct_pass` varchar(512) CHARACTER SET utf16 NOT NULL DEFAULT '', + `acct_email` varchar(128) CHARACTER SET utf16 NOT NULL DEFAULT '', + `acct_settings` int(32) NOT NULL DEFAULT '0', + `acct_staff_flags` int(32) NOT NULL DEFAULT '0', + `acct_staff_title` varchar(32) CHARACTER SET utf16 NOT NULL DEFAULT '', + `acct_mod_flags` int(32) NOT NULL DEFAULT '0', + `acct_irc` varchar(64) CHARACTER SET utf16 NOT NULL DEFAULT '', + `acct_discord` int(64) NOT NULL DEFAULT '0', + `acct_ip` int(11) NOT NULL DEFAULT '0', + `acct_timezone` int(11) NOT NULL DEFAULT '0', + `acct_code_2fa` varchar(50) CHARACTER SET utf16 NOT NULL DEFAULT '0', + `acct_code_resetpass` varchar(50) CHARACTER SET utf16 NOT NULL DEFAULT '0', + `acct_code_verifyemail` varchar(50) CHARACTER SET utf16 NOT NULL DEFAULT '0', + `acct_when_made` bigint(32) NOT NULL DEFAULT '0', + PRIMARY KEY (`acct_id`) +) ENGINE=InnoDB AUTO_INCREMENT=10 DEFAULT CHARSET=latin1 COMMENT='Accounts'; + +-- Dumping data for table gtac_main.acct_main: ~5 rows (approximately) +/*!40000 ALTER TABLE `acct_main` DISABLE KEYS */; +INSERT INTO `acct_main` (`acct_id`, `acct_name`, `acct_pass`, `acct_email`, `acct_settings`, `acct_staff_flags`, `acct_staff_title`, `acct_mod_flags`, `acct_irc`, `acct_discord`, `acct_ip`, `acct_timezone`, `acct_code_2fa`, `acct_code_resetpass`, `acct_code_verifyemail`, `acct_when_made`) VALUES + (1, 'Vortrex', '4271461D21D2A465D0FF2B7082A9136F1DACD78127C805E2B33292AAA200E5682F4B7D4AB426224222B24AA1183C4D02FEE983030996CF3963746AE1C46A375D', 'adrianbram@gmail.com', 64, -1, 'Scripter', 32768, '', 0, 840690839, 0, '0', '0', '', 0); +INSERT INTO `acct_main` (`acct_id`, `acct_name`, `acct_pass`, `acct_email`, `acct_settings`, `acct_staff_flags`, `acct_staff_title`, `acct_mod_flags`, `acct_irc`, `acct_discord`, `acct_ip`, `acct_timezone`, `acct_code_2fa`, `acct_code_resetpass`, `acct_code_verifyemail`, `acct_when_made`) VALUES + (2, 'maxaxle', '33A31BF6E32BD3BCCE1D2F2AB3B0D0768CEDAD30BC21A2EFA5F8A66BD7333A5545EFC773830E9F0B3C7AA285E3FDF60BADD1E93401AF9FC26CC25BB77238D750', 'axle008@hotmail.com', 64, -1, 'Server Manager', 0, '', 0, 1228971253, 0, '0', '0', '0', 0); +INSERT INTO `acct_main` (`acct_id`, `acct_name`, `acct_pass`, `acct_email`, `acct_settings`, `acct_staff_flags`, `acct_staff_title`, `acct_mod_flags`, `acct_irc`, `acct_discord`, `acct_ip`, `acct_timezone`, `acct_code_2fa`, `acct_code_resetpass`, `acct_code_verifyemail`, `acct_when_made`) VALUES + (3, 'PerikiyoXD', 'A86A40A4C0051CBBDD8BEFD92AE6C07FC81DE8357F9C83C2B9B1B1AB8237A1DF9097560DD0377AEC9193E3355C15432265F39A5385CA1BC60F84BDB04D0E98C9', 'perikiyoxd@gmail.com', 0, 0, '', 0, '', 0, 1411888738, 0, '0', '0', '0', 0); +INSERT INTO `acct_main` (`acct_id`, `acct_name`, `acct_pass`, `acct_email`, `acct_settings`, `acct_staff_flags`, `acct_staff_title`, `acct_mod_flags`, `acct_irc`, `acct_discord`, `acct_ip`, `acct_timezone`, `acct_code_2fa`, `acct_code_resetpass`, `acct_code_verifyemail`, `acct_when_made`) VALUES + (4, 'Vortrex2', 'BF5A9321DE2D7788153819FE85D7898B6873951129701ABA814403C649F16C37C5439757825178C2A4292DCF34446CB415F6340E6BB47539564514CCE65E5AC3', 'adrianbram@gmail.com', 0, 0, '', 0, '', 0, 0, 0, '0', '0', '0', 0); +INSERT INTO `acct_main` (`acct_id`, `acct_name`, `acct_pass`, `acct_email`, `acct_settings`, `acct_staff_flags`, `acct_staff_title`, `acct_mod_flags`, `acct_irc`, `acct_discord`, `acct_ip`, `acct_timezone`, `acct_code_2fa`, `acct_code_resetpass`, `acct_code_verifyemail`, `acct_when_made`) VALUES + (9, 'Jack', 'E10480C85DDBC6DEBD2D55038CE0AFAEEB88B00CFE76B0FCF5248BF93D19AF1EA7E4B73FDF9DA1862FF73E5190E9F41750ECE1B4E4276F9CD8604B1DC824A076', 'jack9267@me.com', 0, 0, '', 0, '', 0, 2147483647, 0, '0', '0', '0', 0); +/*!40000 ALTER TABLE `acct_main` ENABLE KEYS */; + +-- Dumping structure for table gtac_main.acct_msg +CREATE TABLE IF NOT EXISTS `acct_msg` ( + `acct_msg_id` int(11) NOT NULL AUTO_INCREMENT, + `acct_msg_acct` int(11) NOT NULL DEFAULT '0', + `acct_msg_who_sent` int(11) NOT NULL DEFAULT '0', + `acct_msg_when_sent` bigint(20) NOT NULL DEFAULT '0', + `acct_msg_when_read` bigint(20) NOT NULL DEFAULT '0', + `acct_msg_deleted` tinyint(1) NOT NULL DEFAULT '0', + `acct_msg_when_deleted` bigint(20) NOT NULL DEFAULT '0', + `acct_msg_folder` int(11) NOT NULL DEFAULT '0', + `acct_msg_message` text NOT NULL, + PRIMARY KEY (`acct_msg_id`), + KEY `acct_msg_acct` (`acct_msg_acct`), + KEY `acct_msg_who_sent` (`acct_msg_who_sent`), + CONSTRAINT `fk_acct_msg_recipient` FOREIGN KEY (`acct_msg_acct`) REFERENCES `acct_main` (`acct_id`) ON DELETE CASCADE ON UPDATE CASCADE, + CONSTRAINT `fk_acct_msg_sender` FOREIGN KEY (`acct_msg_who_sent`) REFERENCES `acct_main` (`acct_id`) ON DELETE CASCADE ON UPDATE CASCADE +) ENGINE=InnoDB DEFAULT CHARSET=latin1 COMMENT='Accounts - Private Messages (Mail)'; + +-- Dumping data for table gtac_main.acct_msg: ~0 rows (approximately) +/*!40000 ALTER TABLE `acct_msg` DISABLE KEYS */; +/*!40000 ALTER TABLE `acct_msg` ENABLE KEYS */; + +-- Dumping structure for table gtac_main.acct_note +CREATE TABLE IF NOT EXISTS `acct_note` ( + `acct_note_id` int(11) NOT NULL AUTO_INCREMENT, + `acct_note_acct` int(11) NOT NULL DEFAULT '0', + `acct_note_server` int(11) NOT NULL DEFAULT '0', + `acct_note_who_added` int(11) NOT NULL DEFAULT '0', + `acct_note_when_added` bigint(20) NOT NULL DEFAULT '0', + `acct_note_message` varchar(255) NOT NULL DEFAULT '', + `acct_note_deleted` tinyint(1) NOT NULL DEFAULT '0', + `acct_note_who_deleted` int(11) NOT NULL DEFAULT '0', + `acct_note_when_deleted` bigint(20) NOT NULL DEFAULT '0', + PRIMARY KEY (`acct_note_id`), + KEY `acct_note_acct` (`acct_note_acct`), + KEY `acct_note_server` (`acct_note_server`), + KEY `acct_note_who_added` (`acct_note_who_added`), + CONSTRAINT `fk_acct_note_acct` FOREIGN KEY (`acct_note_acct`) REFERENCES `acct_main` (`acct_id`) ON DELETE CASCADE ON UPDATE CASCADE, + CONSTRAINT `fk_acct_note_admin` FOREIGN KEY (`acct_note_who_added`) REFERENCES `acct_main` (`acct_id`) ON DELETE CASCADE ON UPDATE CASCADE, + CONSTRAINT `fk_acct_note_server` FOREIGN KEY (`acct_note_server`) REFERENCES `svr_main` (`svr_id`) ON DELETE CASCADE ON UPDATE CASCADE +) ENGINE=InnoDB DEFAULT CHARSET=latin1 COMMENT='Accounts - Staff Notes'; + +-- Dumping data for table gtac_main.acct_note: ~0 rows (approximately) +/*!40000 ALTER TABLE `acct_note` DISABLE KEYS */; +/*!40000 ALTER TABLE `acct_note` ENABLE KEYS */; + +-- Dumping structure for table gtac_main.acct_wl +CREATE TABLE IF NOT EXISTS `acct_wl` ( + `acct_wl_id` int(11) NOT NULL AUTO_INCREMENT, + `acct_wl_acct` int(11) NOT NULL DEFAULT '0', + `acct_wl_ip` int(24) NOT NULL DEFAULT '0', + `acct_wl_uid` varchar(128) NOT NULL DEFAULT '', + `acct_wl_when_added` int(32) NOT NULL DEFAULT '0', + `acct_wl_enabled` tinyint(1) NOT NULL DEFAULT '0', + PRIMARY KEY (`acct_wl_id`), + KEY `acct_wl_acct` (`acct_wl_acct`), + CONSTRAINT `fk_acct_wl_acct` FOREIGN KEY (`acct_wl_acct`) REFERENCES `acct_main` (`acct_id`) ON DELETE CASCADE ON UPDATE CASCADE +) ENGINE=InnoDB DEFAULT CHARSET=latin1 COMMENT='Accounts - Access Whitelist'; + +-- Dumping data for table gtac_main.acct_wl: ~0 rows (approximately) +/*!40000 ALTER TABLE `acct_wl` DISABLE KEYS */; +/*!40000 ALTER TABLE `acct_wl` ENABLE KEYS */; + +-- Dumping structure for table gtac_main.ac_script_bl +CREATE TABLE IF NOT EXISTS `ac_script_bl` ( + `ac_script_bl_id` int(11) NOT NULL AUTO_INCREMENT, + `ac_script_bl_server` int(11) NOT NULL DEFAULT '0', + `ac_script_bl_name` varchar(50) NOT NULL DEFAULT '', + `ac_script_bl_enabled` int(11) NOT NULL DEFAULT '0', + PRIMARY KEY (`ac_script_bl_id`), + KEY `ac_script_bl_server` (`ac_script_bl_server`), + CONSTRAINT `fk_ac_script_bl_server` FOREIGN KEY (`ac_script_bl_server`) REFERENCES `svr_main` (`svr_id`) ON DELETE CASCADE ON UPDATE CASCADE +) ENGINE=InnoDB AUTO_INCREMENT=4 DEFAULT CHARSET=utf8 COMMENT='Anticheat - Blacklisted Scripts'; + +-- Dumping data for table gtac_main.ac_script_bl: ~3 rows (approximately) +/*!40000 ALTER TABLE `ac_script_bl` DISABLE KEYS */; +INSERT INTO `ac_script_bl` (`ac_script_bl_id`, `ac_script_bl_server`, `ac_script_bl_name`, `ac_script_bl_enabled`) VALUES + (1, 4, 'load_modmanager', 1); +INSERT INTO `ac_script_bl` (`ac_script_bl_id`, `ac_script_bl_server`, `ac_script_bl_name`, `ac_script_bl_enabled`) VALUES + (2, 1, 'info', 1); +INSERT INTO `ac_script_bl` (`ac_script_bl_id`, `ac_script_bl_server`, `ac_script_bl_name`, `ac_script_bl_enabled`) VALUES + (3, 1, 'info2', 1); +/*!40000 ALTER TABLE `ac_script_bl` ENABLE KEYS */; + +-- Dumping structure for table gtac_main.ac_script_wl +CREATE TABLE IF NOT EXISTS `ac_script_wl` ( + `ac_script_wl_id` int(11) NOT NULL AUTO_INCREMENT, + `ac_script_wl_server` int(11) NOT NULL DEFAULT '0', + `ac_script_wl_name` varchar(50) NOT NULL DEFAULT '', + `ac_script_wl_enabled` int(11) NOT NULL DEFAULT '1', + PRIMARY KEY (`ac_script_wl_id`) USING BTREE, + KEY `ac_script_wl_server` (`ac_script_wl_server`), + CONSTRAINT `fk_ac_script_wl_server` FOREIGN KEY (`ac_script_wl_server`) REFERENCES `svr_main` (`svr_id`) ON DELETE CASCADE ON UPDATE CASCADE +) ENGINE=InnoDB AUTO_INCREMENT=6 DEFAULT CHARSET=utf8 COMMENT='Anticheat - Whitelisted Scripts'; + +-- Dumping data for table gtac_main.ac_script_wl: ~5 rows (approximately) +/*!40000 ALTER TABLE `ac_script_wl` DISABLE KEYS */; +INSERT INTO `ac_script_wl` (`ac_script_wl_id`, `ac_script_wl_server`, `ac_script_wl_name`, `ac_script_wl_enabled`) VALUES + (1, 4, 'sync', 1); +INSERT INTO `ac_script_wl` (`ac_script_wl_id`, `ac_script_wl_server`, `ac_script_wl_name`, `ac_script_wl_enabled`) VALUES + (2, 4, 'gtac', 1); +INSERT INTO `ac_script_wl` (`ac_script_wl_id`, `ac_script_wl_server`, `ac_script_wl_name`, `ac_script_wl_enabled`) VALUES + (3, 4, 'network_main', 1); +INSERT INTO `ac_script_wl` (`ac_script_wl_id`, `ac_script_wl_server`, `ac_script_wl_name`, `ac_script_wl_enabled`) VALUES + (4, 4, 'mpcellphone', 1); +INSERT INTO `ac_script_wl` (`ac_script_wl_id`, `ac_script_wl_server`, `ac_script_wl_name`, `ac_script_wl_enabled`) VALUES + (5, 4, 'speechcontrol_net', 1); +/*!40000 ALTER TABLE `ac_script_wl` ENABLE KEYS */; + +-- Dumping structure for table gtac_main.atm_main +CREATE TABLE IF NOT EXISTS `atm_main` ( + `atm_id` int(11) NOT NULL AUTO_INCREMENT, + `atm_server` int(11) NOT NULL DEFAULT '0', + `atm_pos_x` float NOT NULL DEFAULT '0', + `atm_pos_y` float NOT NULL DEFAULT '0', + `atm_pos_z` float NOT NULL DEFAULT '0', + `atm_fee` int(11) NOT NULL DEFAULT '0', + `atm_disabled` tinyint(1) NOT NULL DEFAULT '0', + PRIMARY KEY (`atm_id`) +) ENGINE=InnoDB DEFAULT CHARSET=latin1 COMMENT='ATMs'; + +-- Dumping data for table gtac_main.atm_main: ~0 rows (approximately) +/*!40000 ALTER TABLE `atm_main` DISABLE KEYS */; +/*!40000 ALTER TABLE `atm_main` ENABLE KEYS */; + +-- Dumping structure for table gtac_main.atm_use +CREATE TABLE IF NOT EXISTS `atm_use` ( + `atm_use_id` int(11) NOT NULL AUTO_INCREMENT, + `atm_use_atm` int(11) NOT NULL DEFAULT '0', + `atm_use_bankacct` int(11) NOT NULL DEFAULT '0', + `atm_use_amount` int(11) NOT NULL DEFAULT '0', + `atm_use_when` int(32) NOT NULL DEFAULT '0', + `atm_use_balance_before` int(11) NOT NULL DEFAULT '0', + `atm_use_balance_after` int(11) NOT NULL DEFAULT '0', + `atm_use_result` int(11) NOT NULL DEFAULT '0', + PRIMARY KEY (`atm_use_id`) +) ENGINE=InnoDB DEFAULT CHARSET=latin1 COMMENT='ATMs - Usage'; + +-- Dumping data for table gtac_main.atm_use: ~0 rows (approximately) +/*!40000 ALTER TABLE `atm_use` DISABLE KEYS */; +/*!40000 ALTER TABLE `atm_use` ENABLE KEYS */; + +-- Dumping structure for table gtac_main.bank_main +CREATE TABLE IF NOT EXISTS `bank_main` ( + `bank_id` int(11) NOT NULL AUTO_INCREMENT, + `bank_server` int(11) NOT NULL DEFAULT '0', + `bank_name` varchar(128) NOT NULL DEFAULT 'Unnamed', + `bank_enabled` tinyint(1) NOT NULL DEFAULT '1', + `bank_biz` int(11) NOT NULL DEFAULT '1', + PRIMARY KEY (`bank_id`) +) ENGINE=InnoDB DEFAULT CHARSET=latin1 COMMENT='Banks'; + +-- Dumping data for table gtac_main.bank_main: ~0 rows (approximately) +/*!40000 ALTER TABLE `bank_main` DISABLE KEYS */; +/*!40000 ALTER TABLE `bank_main` ENABLE KEYS */; + +-- Dumping structure for table gtac_main.ban_main +CREATE TABLE IF NOT EXISTS `ban_main` ( + `ban_id` int(11) NOT NULL AUTO_INCREMENT, + `ban_server` int(11) NOT NULL DEFAULT '0', + `ban_detail` int(11) NOT NULL DEFAULT '0', + `ban_type` tinyint(1) NOT NULL DEFAULT '0', + `ban_ip_start` int(24) NOT NULL DEFAULT '0', + `ban_ip_end` int(24) NOT NULL DEFAULT '0', + `ban_uid` varchar(256) NOT NULL DEFAULT '', + `ban_who_added` int(11) NOT NULL DEFAULT '0', + `ban_when_added` int(32) NOT NULL DEFAULT '0', + `ban_reason` varchar(255) NOT NULL DEFAULT '', + `ban_deleted` tinyint(1) NOT NULL DEFAULT '0', + PRIMARY KEY (`ban_id`), + KEY `ban_server` (`ban_server`), + KEY `ban_who_added` (`ban_who_added`), + CONSTRAINT `fk_ban_admin` FOREIGN KEY (`ban_who_added`) REFERENCES `acct_main` (`acct_id`) ON DELETE CASCADE ON UPDATE CASCADE, + CONSTRAINT `fk_ban_server` FOREIGN KEY (`ban_server`) REFERENCES `svr_main` (`svr_id`) ON DELETE CASCADE ON UPDATE CASCADE +) ENGINE=InnoDB DEFAULT CHARSET=latin1 COMMENT='Bans'; + +-- Dumping data for table gtac_main.ban_main: ~0 rows (approximately) +/*!40000 ALTER TABLE `ban_main` DISABLE KEYS */; +/*!40000 ALTER TABLE `ban_main` ENABLE KEYS */; + +-- Dumping structure for table gtac_main.ban_try +CREATE TABLE IF NOT EXISTS `ban_try` ( + `ban_try_id` int(11) NOT NULL AUTO_INCREMENT, + `ban_try_server` tinyint(2) NOT NULL DEFAULT '0', + `ban_try_ip` int(24) NOT NULL DEFAULT '0', + `ban_try_uid` varchar(128) NOT NULL DEFAULT '', + `ban_try_when_tried` int(32) NOT NULL DEFAULT '0', + `ban_try_ban_id` int(11) NOT NULL DEFAULT '0', + PRIMARY KEY (`ban_try_id`) +) ENGINE=InnoDB DEFAULT CHARSET=latin1 COMMENT='Bans - Connection Attempts'; + +-- Dumping data for table gtac_main.ban_try: ~0 rows (approximately) +/*!40000 ALTER TABLE `ban_try` DISABLE KEYS */; +/*!40000 ALTER TABLE `ban_try` ENABLE KEYS */; + +-- Dumping structure for table gtac_main.biz_buy +CREATE TABLE IF NOT EXISTS `biz_buy` ( + `biz_buy_id` int(11) NOT NULL AUTO_INCREMENT, + `biz_buy_biz` int(11) NOT NULL DEFAULT '0', + `biz_buy_sacct` int(11) NOT NULL DEFAULT '0', + `biz_buy_amount` int(11) NOT NULL DEFAULT '0', + `biz_buy_prod` int(11) NOT NULL DEFAULT '0', + `biz_buy_tip` int(11) NOT NULL DEFAULT '0', + `biz_buy_result` tinyint(4) NOT NULL DEFAULT '0', + PRIMARY KEY (`biz_buy_id`) +) ENGINE=InnoDB DEFAULT CHARSET=latin1 COMMENT='Businesses - Purchases'; + +-- Dumping data for table gtac_main.biz_buy: ~0 rows (approximately) +/*!40000 ALTER TABLE `biz_buy` DISABLE KEYS */; +/*!40000 ALTER TABLE `biz_buy` ENABLE KEYS */; + +-- Dumping structure for table gtac_main.biz_loc +CREATE TABLE IF NOT EXISTS `biz_loc` ( + `biz_loc_id` int(11) NOT NULL AUTO_INCREMENT, + `biz_loc_server` int(11) NOT NULL DEFAULT '0', + `biz_loc_name` varchar(128) NOT NULL DEFAULT '', + `biz_loc_type` int(11) NOT NULL DEFAULT '0', + `biz_loc_biz` int(11) NOT NULL DEFAULT '0', + `biz_loc_enabled` int(11) NOT NULL DEFAULT '0', + `biz_loc_pos_x` float NOT NULL DEFAULT '0', + `biz_loc_pos_y` float NOT NULL DEFAULT '0', + `biz_loc_pos_z` float NOT NULL DEFAULT '0', + `biz_loc_rot_z` float NOT NULL DEFAULT '0', + `biz_loc_int` int(11) NOT NULL DEFAULT '0', + `biz_loc_vw` int(11) NOT NULL DEFAULT '0', + PRIMARY KEY (`biz_loc_id`) USING BTREE +) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Businesses - Locations'; + +-- Dumping data for table gtac_main.biz_loc: ~0 rows (approximately) +/*!40000 ALTER TABLE `biz_loc` DISABLE KEYS */; +/*!40000 ALTER TABLE `biz_loc` ENABLE KEYS */; + +-- Dumping structure for table gtac_main.biz_main +CREATE TABLE IF NOT EXISTS `biz_main` ( + `biz_id` int(11) NOT NULL AUTO_INCREMENT, + `biz_server` int(11) NOT NULL DEFAULT '0', + `biz_name` varchar(40) NOT NULL DEFAULT 'Unnamed Business', + `biz_type` tinyint(4) NOT NULL DEFAULT '0', + `biz_buy_price` int(11) NOT NULL DEFAULT '0', + `biz_owner_type` int(11) NOT NULL DEFAULT '0', + `biz_owner_id` int(11) NOT NULL DEFAULT '0', + `biz_entrance_pos_x` float NOT NULL DEFAULT '0', + `biz_entrance_pos_y` float NOT NULL DEFAULT '0', + `biz_entrance_pos_z` float NOT NULL DEFAULT '0', + `biz_entrance_rot_z` float NOT NULL DEFAULT '0', + `biz_entrance_int` int(11) NOT NULL DEFAULT '0', + `biz_entrance_vw` int(11) NOT NULL DEFAULT '0', + `biz_entrance_pickup` int(11) NOT NULL DEFAULT '-1', + `biz_entrance_blip` int(11) NOT NULL DEFAULT '-1', + `biz_exit_pos_x` float NOT NULL DEFAULT '0', + `biz_exit_pos_y` float NOT NULL DEFAULT '0', + `biz_exit_pos_z` float NOT NULL DEFAULT '0', + `biz_exit_rot_z` float NOT NULL DEFAULT '0', + `biz_exit_int` int(11) NOT NULL DEFAULT '0', + `biz_exit_vw` int(11) NOT NULL DEFAULT '0', + `biz_exit_pickup` int(11) NOT NULL DEFAULT '-1', + `biz_exit_blip` int(11) NOT NULL DEFAULT '-1', + `biz_misc_customext` tinyint(4) NOT NULL DEFAULT '0', + `biz_misc_customint` tinyint(4) NOT NULL DEFAULT '0', + `biz_supply_pos_x` float NOT NULL DEFAULT '0', + `biz_supply_pos_y` float NOT NULL DEFAULT '0', + `biz_supply_pos_z` float NOT NULL DEFAULT '0', + `biz_buy_pos_x` float NOT NULL DEFAULT '0', + `biz_buy_pos_y` float NOT NULL DEFAULT '0', + `biz_buy_pos_z` float NOT NULL DEFAULT '0', + `biz_buy_rot_z` float NOT NULL DEFAULT '0', + `biz_misc_customvw` int(11) NOT NULL DEFAULT '0', + `biz_locked` tinyint(1) NOT NULL DEFAULT '0', + `biz_till` int(11) NOT NULL DEFAULT '0', + `biz_entrance_fee` int(11) NOT NULL DEFAULT '0', + `biz_deleted` tinyint(1) NOT NULL DEFAULT '0', + `biz_who_deleted` int(11) NOT NULL DEFAULT '0', + `biz_when_deleted` int(32) NOT NULL DEFAULT '0', + `biz_has_interior` tinyint(1) NOT NULL DEFAULT '0', + PRIMARY KEY (`biz_id`) USING BTREE, + KEY `biz_server` (`biz_server`), + KEY `biz_owner` (`biz_owner_type`,`biz_owner_id`), + CONSTRAINT `fk_biz_server` FOREIGN KEY (`biz_server`) REFERENCES `svr_main` (`svr_id`) ON DELETE CASCADE ON UPDATE CASCADE +) ENGINE=InnoDB AUTO_INCREMENT=342 DEFAULT CHARSET=latin1 COMMENT='Businesses'; + +-- Dumping data for table gtac_main.biz_main: ~253 rows (approximately) +/*!40000 ALTER TABLE `biz_main` DISABLE KEYS */; +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES + (1, 4, 'Unnamed Business', 5, 30000, 0, 0, -90.24, -1219.76, 2.71, 350.178, 0, 0, 0, -1, -2026.9, -104.128, 1035.17, 179.07, 3, 5001, 0, -1, 0, 0, -93.521, -1241.12, 1.92454, -104.326, -1213.02, 2.76131, 174.391, 0, 0, 0, 0, 0, 0, 0, 1); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES + (2, 4, 'Unnamed Business', 8, 30000, 0, 0, 2078.66, -1582.38, 13.49, 337.053, 0, 0, 0, -1, -25.8433, -187.446, 1003.55, 4.72576, 17, 5002, 0, -1, 0, 0, 1795.3, -1166.21, 23.8281, 2127.1, -1134.72, 25.5488, 351.147, 0, 0, 0, 0, 0, 0, 0, 1); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES + (4, 4, 'Pawn', 4, 30000, 0, 0, 984.18, -1336.44, 13.55, 199.037, 0, 0, 0, -1, 315.799, -143.53, 999.602, 1.01837, 7, 5004, 0, -1, 0, 1, 1872.19, -1621.2, 13.5469, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES + (5, 4, 'Unnamed Business', 1, 30000, 0, 0, 1653.2, 1470.7, 1152.43, 299.874, 0, 0, 0, -1, -25.9841, -187.986, 1003.55, 357.842, 17, 5005, 0, -1, 0, 0, 1837.36, -1434.91, 13.5625, 1704.68, -1587.22, 13.5383, 87.0352, 4, 0, 0, 0, 0, 0, 0, 1); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES + (6, 4, 'Unnamed Business', 3, 30000, 0, 0, 1333.37, -1864.21, 13.55, 154.702, 0, 0, 0, -1, 6.6435, -31.4626, 1003.55, 191.882, 10, 5006, 0, -1, 0, 1, 1565.82, -1167.49, 24.0781, 1647.94, -2483.22, 13.5547, 87.3502, 0, 0, 0, 0, 0, 0, 0, 1); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES + (7, 4, 'Unnamed Business', 5, 30000, 0, 0, 1026.38, -1927.19, 12.8, 154.459, 0, 0, 0, -1, 1226.77, -813.652, 1084.01, 353.088, 5, 5007, 0, -1, 0, 1, 1915.87, -1790.69, 13.3906, 1026.22, -1915.85, 12.8776, 266.223, 0, 0, 0, 0, 0, 0, 0, 1); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES + (8, 4, 'Unnamed Business', 3, 30000, 0, 0, -172.13, -1825.41, 55.41, 215.571, 0, 0, 0, -1, 1445.44, -1294.74, 13.5469, 100.653, 0, 5008, 0, -1, 1, 0, 1448.97, -1285.72, 13.5469, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES + (11, 4, 'Unnamed Business', 8, 30000, 0, 0, 1070.49, -1873.66, 13.55, 274.819, 0, 0, 0, -1, -31.0053, -91.6372, 1003.55, 0.680122, 18, 5011, 0, -1, 0, 0, -66.1294, -1169.59, 1.86967, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES + (12, 4, 'Unnamed Business', 4, 30000, 0, 0, 1368.98, -1279.67, 13.55, 262.027, 0, 0, 0, -1, 315.902, -143.025, 999.602, 5.53311, 7, 5012, 0, -1, 0, 0, 1365.63, -1285.08, 13.5469, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES + (13, 4, 'Unnamed Business', 2, 30000, 0, 0, 1709.03, 1443.96, 1145.78, 281.106, 0, 0, 0, -1, -2029.62, -119.618, 1035.17, 1.0423, 3, 5013, 0, -1, 0, 0, -1579.28, 2652.63, 55.8359, -1600.75, 2645.28, 57.6595, 120.282, 0, 0, 0, 0, 0, 0, 0, 1); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES + (14, 4, 'Unnamed Business', 8, 30000, 0, 0, 1343.73, -1506.56, 13.55, 234.154, 0, 0, 0, -1, -25.8373, -188.091, 1003.55, 355.897, 17, 5014, 0, -1, 0, 0, 2156.02, -1020.91, 62.7113, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES + (16, 4, 'Unnamed Business', 1, 30000, 0, 0, -1676.24, 432.1, 7.18, 33.0359, 0, 0, 0, -1, -27.3621, -57.8246, 1003.55, 179.037, 6, 5016, 0, -1, 1, 0, -1661.84, 442.168, 7.17969, -1591.62, 2657.25, 55.7501, 356.386, 0, 0, 0, 0, 0, 0, 0, 1); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES + (17, 4, 'Unnamed Business', 8, 30000, 0, 0, 667.21, -1770.07, 13.64, 164.522, 0, 0, 0, -1, -25.8373, -188.091, 1003.55, 355.897, 17, 5017, 0, -1, 0, 0, 1844.34, -1860.84, 13.3828, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES + (18, 4, 'Unnamed Business', 1, 30000, 0, 0, 1000.3, -920.2, 42.33, 96.2681, 0, 0, 0, -1, -31.1112, -91.8577, 1003.55, 0.052338, 18, 5018, 0, -1, 0, 0, 1022.79, -916.642, 42.1797, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES + (19, 4, 'Unnamed Business', 2, 30000, 0, 0, 1456.53, -1137.56, 23.95, 36.7288, 0, 0, 0, -1, 207.615, -111.163, 1005.13, 187.89, 15, 5019, 0, -1, 0, 0, 2015.15, -1304.98, 23.986, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES + (20, 4, 'Unnamed Business', 8, 30000, 0, 0, -1989.49, 884.84, 46.54, 98.2134, 0, 0, 0, -1, -31.0061, -91.5664, 1003.55, 0.680122, 18, 5020, 0, -1, 1, 0, -1981.44, 905.115, 45.7979, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES + (21, 4, 'Unnamed Business', 5, 30000, 0, 0, 1628.75, -1903.4, 13.55, 84.3039, 0, 0, 0, -1, 1494.8, 1305.13, 1093.29, 65.5664, 3, 5021, 0, -1, 0, 0, 904.141, -1333.77, 13.5469, 1636.17, -1893.07, 13.2619, 2.61639, 0, 0, 0, 0, 0, 0, 0, 1); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES + (22, 4, 'Unnamed Business', 5, 30000, 0, 0, 1606.29, -2431.95, 13.55, 1.14757, 0, 0, 0, -1, -30.86, -91.9062, 1003.55, 354.538, 18, 5022, 0, -1, 0, 0, 1933.08, -2067.76, 13.5469, 1602.48, -2488.26, 13.5547, 267.485, 0, 0, 0, 0, 0, 0, 0, 1); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES + (23, 4, 'Unnamed Business', 0, 30000, 0, 0, 1796.35, -1721.18, 13.54, 180, 0, 0, 0, -1, -795.014, 489.671, 1376.2, 358.859, 1, 5023, 0, -1, 1, 1, 1809.53, -1724.42, 13.5362, 1899.97, -2346.11, 13.5469, 263.56, 0, 0, 0, 0, 0, 0, 0, 1); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES + (24, 4, 'Unnamed Business', 1, 30000, 0, 0, 1654.2, 1467.87, 1152.79, 325.41, 0, 0, 0, -1, -30.9635, -91.1079, 1003.55, 4.80216, 18, 5024, 0, -1, 0, 0, 1668.04, -1583.68, 13.5469, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES + (25, 4, 'Unnamed Business', 3, 30000, 0, 0, 1877.85, -1627.79, 13.34, 359.503, 0, 0, 0, -1, 460.448, -88.5426, 999.555, 86.9106, 4, 5025, 0, -1, 0, 0, 1794.43, -1726.55, 13.5469, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES + (26, 4, 'Unnamed Business', 2, 30000, 0, 0, 1704.21, -1578.79, 13.89, 278.564, 0, 0, 0, -1, 227.075, -7.33794, 1002.21, 91.3542, 5, 5026, 0, -1, 0, 0, -1699.21, 954.874, 24.8906, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES + (27, 4, 'Unnamed Business', 3, 30000, 0, 0, 2419.8, -1509.08, 24, 268.67, 0, 0, 0, -1, 460.154, -88.5364, 999.555, 88.7906, 4, 5027, 0, -1, 0, 0, 2422.79, -1517.02, 24.0069, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES + (28, 4, 'Unnamed Business', 4, 30000, 0, 0, 1357.07, 308.06, 19.75, 338.103, 0, 0, 0, -1, 315.641, -142.827, 999.602, 6.35604, 7, 5028, 0, -1, 0, 0, 1365.69, -1283.99, 13.5469, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES + (30, 4, 'Unnamed Business', 8, 30000, 0, 0, 1044.57, -1308.84, 13.55, 99.115, 0, 0, 0, -1, -25.7453, -188.253, 1003.55, 171.504, 17, 5030, 0, -1, 0, 0, 1037.38, -1311.36, 13.5469, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES + (31, 4, 'Unnamed Business', 0, 30000, 0, 0, 2247.63, 2396.32, 10.82, 184.236, 0, 0, 0, -1, 204.462, -168.754, 1000.52, 353.473, 14, 5031, 0, -1, 0, 0, 567.646, -1291.5, 17.2422, 561.662, -1292.28, 17.2482, 232.669, 0, 0, 0, 0, 0, 0, 0, 1); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES + (33, 4, 'Unnamed Business', 4, 30000, 0, 0, 387.18, -1817.95, 7.84, 273.117, 0, 0, 0, -1, 315.715, -142.947, 999.602, 0.321425, 7, 5033, 0, -1, 0, 1, 2521.73, -1544.98, 24.01, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES + (34, 4, 'Unnamed Business', 8, 30000, 0, 0, 1073.21, -1384.87, 13.87, 144.937, 0, 0, 0, -1, 363.315, -74.8249, 1001.51, 315.517, 10, 5034, 0, -1, 0, 0, 1191.5, -891.539, 43.1784, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES + (35, 4, 'Unnamed Business', 2, 30000, 0, 0, 1109.27, -301.43, 74.54, 358.887, 0, 0, 0, -1, 203.856, -50.2081, 1001.8, 352.563, 1, 5035, 0, -1, 0, 0, -2493.67, -33.0023, 25.7656, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES + (36, 4, 'Unnamed Business', 1, 30000, 0, 0, 1799.79, -1696.08, 5.25, 3.04433, 0, 0, 0, -1, -31.4892, -91.506, 1003.55, 358.788, 18, 5036, 0, -1, 0, 0, -1948.43, 826.607, 41.5261, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES + (37, 4, 'Unnamed Business', 3, 30000, 0, 0, 1732.86, -1582.03, 14.16, 1.36931, 0, 0, 0, -1, 460.449, -88.6508, 999.555, 84.9172, 4, 5037, 0, -1, 0, 0, 1668.86, -1554.79, 13.5469, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES + (38, 4, 'Unnamed Business', 8, 30000, 0, 0, 1673.74, -1170.88, 23.97, 354.084, 0, 0, 0, -1, 501.926, -67.7462, 998.758, 175.187, 11, 5038, 0, -1, 0, 0, 2139.42, -1181.06, 23.9922, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES + (39, 4, 'Unnamed Business', 8, 30000, 0, 0, 1670.49, -1582.65, 13.55, 3.42811, 0, 0, 0, -1, -30.9218, -91.5736, 1003.55, 357.108, 18, 5039, 0, -1, 0, 0, 2006.9, -1759.92, 13.5391, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES + (40, 4, 'Unnamed Business', 8, 30000, 0, 0, 1833.78, -1842.7, 13.58, 276.736, 0, 0, 0, -1, -26.4404, -187.648, 1003.55, 1.27901, 17, 5040, 0, -1, 0, 0, 2864.77, -1428.47, 10.9952, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES + (41, 4, 'Unnamed Business', 1, 30000, 0, 0, 2261.93, 28.06, 26.5, 339.516, 0, 0, 0, -1, -26.4846, -57.8533, 1003.55, 350.759, 6, 5041, 0, -1, 0, 0, -1328.06, 2697.52, 50.0625, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES + (42, 4, 'Unnamed Business', 8, 30000, 0, 0, 1154.69, -1458.02, 15.8, 4.52589, 0, 0, 0, -1, -26.6782, -57.6615, 1003.55, 357.681, 6, 5042, 0, -1, 0, 0, 2349.25, -1538.52, 24.0033, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES + (43, 4, 'Unnamed Business', 8, 30000, 0, 0, 2318.99, -88.68, 26.48, 178.446, 0, 0, 0, -1, -26.1985, -187.472, 1003.55, 13.4461, 17, 5043, 0, -1, 0, 0, -2790.9, 774.258, 50.5078, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES + (44, 4, 'Unnamed Business', 1, 30000, 0, 0, 1739.95, 1440.97, 1145.67, 85.9053, 0, 0, 0, -1, -31.0512, -91.6771, 1003.55, 0.187671, 18, 5044, 0, -1, 0, 0, -2235.17, -2563.35, 31.9219, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES + (45, 4, 'Unnamed Business', 5, 30000, 0, 0, 2045.5, -1908.06, 13.55, 174.508, 0, 0, 0, -1, 1169.16, 1361.17, 10.9219, 217.478, 0, 5045, 0, -1, 0, 0, 1249.5, -1376.78, 13.3634, 2052.74, -1912.89, 13.252, 358.522, 0, 0, 0, 0, 0, 0, 0, 1); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES + (46, 4, 'Unnamed Business', 1, 30000, 0, 0, 1671.24, 1469.42, 1152.6, 286.719, 0, 0, 0, -1, 203.788, -50.2352, 1001.8, 1.30236, 1, 5046, 0, -1, 0, 0, 2106.4, -1213.94, 23.9665, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES + (48, 4, 'Unnamed Business', 4, 30000, 0, 0, 2333.4, 61.54, 26.71, 91.9637, 0, 0, 0, -1, 315.912, -143.315, 999.602, 358.938, 7, 5048, 0, -1, 0, 0, 2023.4, -1077.89, 24.6073, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES + (50, 4, 'Unnamed Business', 2, 30000, 0, 0, 2244.25, -1665.5, 15.48, 347.07, 0, 0, 0, -1, 203.675, -49.334, 1001.8, 186.433, 1, 5050, 0, -1, 0, 0, 492.869, -1359.27, 17.1788, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES + (51, 4, 'Unnamed Business', 1, 30000, 0, 0, 1636.1, -1848.45, 13.54, 0.564751, 0, 0, 0, -1, -30.871, -91.4408, 1003.55, 358.966, 18, 5051, 0, -1, 0, 0, -479.786, -566.494, 24.1158, 455.124, -1899.05, 0.78316, 202.97, 0, 0, 0, 0, 0, 0, 0, 1); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES + (52, 4, 'Unnamed Business', 12, 30000, 0, 0, 1703.45, 1442.91, 1145.78, 239.473, 0, 0, 0, -1, -2029.66, -119.435, 1035.17, 1.03609, 3, 5052, 0, -1, 0, 0, -1936.3, 276.5, 41.0469, -1958.21, 307.691, 35.4688, 6.40909, 0, 0, 0, 0, 0, 0, 0, 1); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES + (53, 4, 'Unnamed Business', 5, 30000, 0, 0, 1784.89, 1444.99, 1145.78, 340.115, 0, 0, 0, -1, -2029.56, -119.625, 1035.17, 357.304, 3, 5053, 0, -1, 0, 0, -1704.05, 1208.2, 25.1146, 1043.86, -1923.3, 12.9832, 0.44367, 0, 0, 0, 0, 0, 0, 0, 1); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES + (54, 4, 'Unnamed Business', 8, 30000, 0, 0, 1413.52, -1696.77, 13.54, 59.0001, 0, 0, 0, -1, 363.489, -74.6292, 1001.51, 134.772, 10, 5054, 0, -1, 0, 0, -1568.91, 674.891, 7.1875, 0, 0, 0, 0, 100053, 0, 0, 0, 0, 0, 0, 1); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES + (55, 4, 'Unnamed Business', 7, 30000, 0, 0, 1737.46, 1443.56, 1145.78, 276.704, 0, 0, 0, -1, 1711.71, 1461.59, 1145.78, 257.869, 0, 5055, 0, -1, 0, 0, 2087.73, 2077.92, 11.0579, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES + (56, 4, 'Unnamed Business', 1, 30000, 0, 0, 661.36, -573.29, 16.34, 272.013, 0, 0, 0, -1, -13.3403, -91.3059, 1008.03, 357.346, 18, 5056, 0, -1, 0, 1, 667.314, -546.236, 16.3359, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES + (57, 4, 'Unnamed Business', 0, 30000, 0, 0, 1047.21, -1418.63, 13.55, 144.195, 0, 0, 0, -1, -30.9934, -91.8355, 1003.55, 358.741, 18, 5057, 0, -1, 0, 0, 659.793, -1763.91, 13.5592, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES + (58, 4, 'Unnamed Business', 3, 30000, 0, 0, 2105.35, -1806.45, 13.55, 265.142, 0, 0, 0, -1, 460.507, -88.4769, 999.555, 84.5587, 4, 5058, 0, -1, 1, 1, 593.602, -1494.91, 15.2686, 615.481, -1501.39, 14.8747, 277.476, 0, 0, 0, 0, 0, 0, 0, 1); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES + (59, 4, 'Unnamed Business', 2, 30000, 0, 0, 1829.57, -1450.66, 13.59, 359.855, 0, 0, 0, -1, 203.78, -50.5481, 1001.8, 9.98745, 1, 5059, 0, -1, 0, 0, 1112.81, -1566.31, 13.5569, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES + (60, 4, 'Unnamed Business', 0, 30000, 0, 0, 1744.86, 1443.03, 1145.78, 265.737, 0, 0, 0, -1, -25.7722, -188.055, 1003.55, 356.072, 17, 5060, 0, -1, 0, 0, 1061.57, -1484.28, 13.5457, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES + (61, 4, 'Unnamed Business', 3, 30000, 0, 0, 1772.23, 1440.43, 1145.69, 81.6088, 0, 0, 0, -1, 372.46, -133.296, 1001.49, 330.82, 5, 5061, 0, -1, 0, 0, 2108.98, -1788.67, 13.5608, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES + (62, 4, 'Unnamed Business', 8, 30000, 0, 0, 461.2, -1500.79, 31.06, 279.205, 0, 0, 0, -1, -25.3976, -187.912, 1003.55, 355.95, 17, 5062, 0, -1, 0, 0, 712.834, -569.736, 16.3359, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES + (63, 4, 'Unnamed Business', 3, 30000, 0, 0, -1721.03, 1360.04, 7.19, 88.9988, 0, 0, 0, -1, 371.728, -133.508, 1001.49, 2.19321, 5, 5063, 0, -1, 0, 0, -1720.56, 1353.78, 7.17902, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES + (64, 4, 'Unnamed Business', 5, 30000, 0, 0, 1662.57, 1788.63, 10.82, 263.499, 0, 0, 0, -1, -221.166, 1411.45, 27.7734, 256.79, 18, 5064, 0, -1, 0, 0, 1698.29, 1786.89, 10.8203, 1654.53, 1795.69, 10.8203, 81.85, 0, 0, 0, 0, 0, 0, 0, 1); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES + (65, 4, 'Unnamed Business', 1, 30000, 0, 0, 1752.7, 1443.19, 1145.78, 272.004, 0, 0, 0, -1, -27.5021, -57.9044, 1003.55, 7.79304, 6, 5065, 0, -1, 0, 0, 1394.87, 457.122, 20.1368, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES + (66, 4, 'Unnamed Business', 8, 30000, 0, 0, 2251.11, -1666.85, 15.48, 347.064, 0, 0, 0, -1, -31.1119, -91.6484, 1003.55, 359.657, 18, 5066, 0, -1, 0, 1, 1285.09, -1272.42, 13.5366, 0, 0, 0, 0, 123051, 0, 0, 0, 0, 0, 0, 1); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES + (67, 4, 'Unnamed Business', 10, 30000, 0, 0, 1131.71, 1518.63, 5.82, 107.231, 0, 0, 0, -1, 1601.85, -1467.25, 13.5639, 95.3918, 0, 5067, 0, -1, 0, 0, 2341.7, -1314.47, 24.0671, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES + (68, 4, 'Unnamed Business', 4, 30000, 0, 0, 1587.5, -1862.96, 13.53, 349.866, 0, 0, 0, -1, 2134.53, 1599.41, 1008.36, 90.8534, 1, 5068, 0, -1, 0, 0, 1602.15, -2434.5, 13.5547, 1602.61, -2451.42, 13.5547, 172.886, 0, 0, 0, 0, 0, 0, 0, 1); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES + (69, 4, 'Unnamed Business', 1, 30000, 0, 0, 1929.22, -1776.25, 13.55, 90.3944, 0, 0, 0, -1, -26.172, -187.877, 1003.55, 355.973, 17, 5069, 0, -1, 0, 0, 2654.33, 1132.2, 10.8203, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES + (70, 4, 'Unnamed Business', 3, 30000, 0, 0, 1414.53, -1602.64, 13.55, 175.846, 0, 0, 0, -1, 362.819, -75.1166, 1001.51, 315.914, 10, 5070, 0, -1, 0, 1, 1414.03, -1599.29, 13.5469, 1646.94, 1305.67, 10.8203, 98.2638, 0, 0, 0, 0, 0, 0, 0, 1); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES + (71, 4, 'Unnamed Business', 2, 30000, 0, 0, -1882.67, 866.23, 35.17, 135.343, 0, 0, 0, -1, 227.262, -8.33084, 1002.21, 100.274, 5, 5071, 0, -1, 0, 0, 1103.75, -1411.33, 13.6187, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES + (72, 4, 'Unnamed Business', 5, 30000, 0, 0, -1666.21, 1203.53, 7.25, 159.664, 0, 0, 0, -1, 372.496, -133.417, 1001.49, 356.796, 5, 5072, 0, -1, 0, 0, 1381.51, 266.698, 19.5669, -1664.23, 1213, 7.25464, 1.79089, 0, 0, 0, 0, 0, 0, 0, 1); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES + (73, 4, 'Unnamed Business', 8, 30000, 0, 0, 1952.4, -2021.57, 13.55, 90.9127, 0, 0, 0, -1, -30.8758, -91.0564, 1003.55, 357.893, 18, 5073, 0, -1, 0, 0, 1672.83, -1583.28, 13.5469, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES + (74, 4, 'Unnamed Business', 3, 30000, 0, 0, 928.54, -1353.07, 13.34, 106.28, 0, 0, 0, -1, 372.501, -132.618, 1001.49, 0.750952, 5, 5074, 0, -1, 0, 0, 2428.59, -1940.92, 13.5469, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES + (75, 4, 'Unnamed Business', 4, 30000, 0, 0, 1665.3, 1452.63, 1152.58, 275.782, 0, 0, 0, -1, 316.063, -143.426, 999.602, 1.00112, 7, 5075, 0, -1, 0, 1, 2227.59, -1697.79, 13.7829, 0, 0, 0, 0, 10, 0, 0, 0, 0, 0, 0, 1); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES + (76, 4, 'Unnamed Business', 12, 30000, 0, 0, 1766.45, 1443.67, 1145.78, 272.004, 0, 0, 0, -1, 2916.15, -2275.72, 7.25419, 92.2792, 0, 5076, 0, -1, 0, 1, 0, 0, 0, 0, 0, 0, 0, 6, 0, 0, 0, 0, 0, 0, 1); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES + (77, 4, 'Unnamed Business', 12, 30000, 0, 0, 2229.9, -1721.26, 13.56, 149.746, 0, 0, 0, -1, 2916.03, -2276.33, 7.25419, 84.8808, 0, 5077, 0, -1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 7, 0, 0, 0, 0, 0, 0, 1); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES + (78, 4, 'Unnamed Business', 4, 30000, 0, 0, 1649.6, 1467.74, 1151.97, 3.67434, 0, 0, 0, -1, 315.902, -143.025, 999.602, 5.53311, 7, 5078, 0, -1, 0, 0, 1013.87, -372.41, 73.5505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES + (79, 4, 'Unnamed Business', 3, 30000, 0, 0, 1038.17, -1340.73, 13.74, 177.513, 0, 0, 0, -1, 376.894, -193.302, 1000.63, 357.573, 17, 5079, 0, -1, 0, 0, 1028.2, -1341.19, 13.7266, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES + (80, 4, 'Unnamed Business', 3, 30000, 0, 0, 2397.67, -1899.06, 13.55, 359.769, 0, 0, 0, -1, 364.899, -11.4455, 1001.85, 357.847, 9, 5080, 0, -1, 0, 0, 2378.92, -1903.45, 13.3828, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES + (81, 4, 'Unnamed Business', 3, 30000, 0, 0, 1774.54, 1440.21, 1145.69, 326.854, 0, 0, 0, -1, 364.92, -11.5076, 1001.85, 1.92061, 9, 5081, 0, -1, 0, 0, 2412.69, -1490.4, 24, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES + (82, 4, 'Unnamed Business', 3, 30000, 0, 0, 1445.11, -1353.1, 13.55, 76.8374, 0, 0, 0, -1, 364.786, -11.5863, 1001.85, 359.156, 9, 5082, 0, -1, 0, 0, -1810.85, 616.781, 35.1719, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES + (83, 4, 'Unnamed Business', 3, 30000, 0, 0, 810.49, -1616.33, 13.55, 274.543, 0, 0, 0, -1, 364.817, -11.7036, 1001.85, 356.202, 9, 5083, 0, -1, 0, 0, -2664.66, 260.562, 4.63281, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES + (84, 4, 'Unnamed Business', 2, 30000, 0, 0, 1102.44, -1458.3, 15.8, 265.057, 0, 0, 0, -1, 227.152, -8.34062, 1002.21, 82.5599, 5, 5084, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES + (85, 4, 'Unnamed Business', 2, 30000, 0, 0, 1445.12, -1419.06, 13.54, 65.0882, 0, 0, 0, -1, 227.551, -7.98705, 1002.21, 77.3083, 5, 5085, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES + (86, 4, 'Unnamed Business', 3, 30000, 0, 0, 2237.88, -1663.56, 15.48, 344.453, 0, 0, 0, -1, 363.168, -74.7778, 1001.51, 307.153, 10, 5086, 0, -1, 0, 0, 785.164, -1632.8, 13.3828, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES + (88, 4, 'Unnamed Business', 3, 30000, 0, 0, 1087.72, -295.96, 74.77, 358.173, 0, 0, 0, -1, 363.226, -75.0796, 1001.51, 311.442, 10, 5088, 0, -1, 0, 0, -2794.59, 775.22, 50.4725, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES + (89, 4, 'Unnamed Business', 3, 30000, 0, 0, -1912.4, 827.95, 35.23, 137.415, 0, 0, 0, -1, 362.862, -75.157, 1001.51, 317.474, 10, 5089, 0, -1, 0, 0, -2148.97, -2449.25, 30.6328, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES + (90, 4, 'Unnamed Business', 3, 30000, 0, 0, 1769.38, -1397.58, 15.76, 177.249, 0, 0, 0, -1, 460.243, -88.68, 999.555, 92.1094, 4, 5090, 0, -1, 0, 0, 711.452, -493.504, 16.3359, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES + (91, 4, 'Unnamed Business', 10, 30000, 0, 0, 2421.44, -1219.25, 25.56, 6.1916, 0, 0, 0, -1, -2158.43, 642.822, 1052.38, 29.1845, 1, 5091, 0, -1, 0, 0, 1968.24, -1284.42, 23.9844, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES + (92, 4, 'Unnamed Business', 2, 30000, 0, 0, 1405.22, -1881.5, 13.55, 264.017, 0, 0, 0, -1, 207.556, -111.244, 1005.13, 352.685, 15, 5092, 0, -1, 0, 0, 2230.46, -1674.3, 14.8285, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES + (93, 4, 'Unnamed Business', 3, 30000, 0, 0, 1200.42, -918.5, 43.11, 273.646, 0, 0, 0, -1, 372.061, -133.522, 1001.49, 359.863, 5, 5093, 0, -1, 0, 0, 1839.22, -1452.28, 13.564, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES + (94, 4, 'Unnamed Business', 10, 30000, 0, 0, 1836.65, -1682.52, 13.34, 95.7087, 0, 0, 0, -1, 1204.98, -13.8471, 1000.92, 7.8813, 2, 5094, 0, -1, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES + (95, 4, 'Unnamed Business', 8, 30000, 0, 0, 1775.47, 1437.65, 1145.69, 357.587, 0, 0, 0, -1, -25.6475, -188.232, 1003.55, 12.6659, 17, 5095, 0, -1, 0, 1, 2006.4, -1760.42, 13.5391, 1034.92, -1935.32, 13.0244, 266.609, 0, 0, 0, 0, 0, 0, 0, 1); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES + (96, 4, 'Unnamed Business', 3, 30000, 0, 0, 2332.08, 75.01, 26.62, 87.2637, 0, 0, 0, -1, 460.545, -88.3984, 999.555, 93.5276, 4, 5096, 0, -1, 0, 0, -294.906, 2687.78, 62.6665, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES + (97, 4, 'Unnamed Business', 1, 30000, 0, 0, 1574.85, -1637.35, 13.56, 11.6774, 0, 0, 0, -1, -25.5966, -187.034, 1003.55, 357.071, 17, 5097, 0, -1, 0, 0, 1541.46, -1634.66, 13.5469, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES + (98, 4, 'Unnamed Business', 3, 30000, 0, 0, 1098.59, -1473.58, 15.8, 69.6117, 0, 0, 0, -1, 460.244, -88.4067, 999.555, 87.9699, 4, 5098, 0, -1, 1, 0, -1741.37, -569.154, 16.4844, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES + (99, 4, 'Unnamed Business', 1, 30000, 0, 0, 1445.11, -1426.78, 13.54, 89.005, 0, 0, 0, -1, -27.4883, -57.4702, 1003.55, 0.398602, 6, 5099, 0, -1, 0, 0, 1428.99, -1427.96, 13.5547, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES + (100, 4, 'Unnamed Business', 1, 30000, 0, 0, 2157.89, -1733.42, 13.54, 356.464, 0, 0, 0, -1, -27.4883, -57.4702, 1003.55, 0.398602, 6, 5100, 0, -1, 0, 0, 1551.73, -1474.28, 13.5481, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES + (101, 4, 'Unnamed Business', 0, 30000, 0, 0, 1759.93, 1446.82, 1145.78, 84.942, 0, 0, 0, -1, 5.84083, -31.4701, 1003.55, 0.31898, 10, 5101, 0, -1, 0, 0, 637.356, 1678.13, 6.99219, -2395.1, 2222.04, 4.98437, 85.6145, 0, 0, 0, 0, 0, 0, 0, 1); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES + (102, 4, 'Unnamed Business', 3, 30000, 0, 0, 671.13, -519.45, 16.34, 210.161, 0, 0, 0, -1, 460.219, -89.0891, 999.555, 92.4067, 4, 5102, 0, -1, 0, 0, 674.514, -514.152, 16.3359, 1626.54, -1137.52, 23.9062, 184.156, 0, 0, 0, 0, 0, 0, 0, 1); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES + (103, 4, 'Unnamed Business', 1, 30000, 0, 0, 1757.29, 1446.53, 1145.78, 84.942, 0, 0, 0, -1, 6.22508, -31.3632, 1003.55, 355.899, 10, 5103, 0, -1, 0, 0, 2181.8, 2485.08, 10.8203, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES + (104, 4, 'Unnamed Business', 8, 30000, 0, 0, 1315.55, -897.92, 39.58, 355.767, 0, 0, 0, -1, -25.6988, -188.146, 1003.55, 2.25264, 17, 5104, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES + (105, 4, 'Unnamed Business', 1, 30000, 0, 0, 1753.5, 1446.45, 1145.78, 84.942, 0, 0, 0, -1, -25.8995, -188.249, 1003.55, 359.321, 17, 5105, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES + (106, 4, 'Unnamed Business', 8, 30000, 0, 0, 1752.19, 1446.37, 1145.78, 93.7154, 0, 0, 0, -1, -31.1422, -92.0064, 1003.55, 350.907, 18, 5106, 0, -1, 0, 0, 2007.48, -1759.44, 13.5391, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES + (107, 4, 'Unnamed Business', 3, 30000, 0, 0, 2521.18, -1411.62, 28.53, 80.3432, 0, 0, 0, -1, -228.827, 1400.92, 27.7656, 269.626, 18, 5107, 0, -1, 0, 0, -865.274, 1541.22, 22.6826, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES + (108, 4, 'Unnamed Business', 8, 30000, 0, 0, 1634.58, -1583.53, 13.65, 10.9946, 0, 0, 0, -1, 5.90418, -31.5585, 1003.55, 0.568551, 10, 5108, 0, -1, 0, 0, -744.555, 1583.71, 26.9609, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES + (109, 4, 'Unnamed Business', 1, 30000, 0, 0, 1748.68, 1446.17, 1145.78, 93.0887, 0, 0, 0, -1, 6.21169, -31.3557, 1003.55, 3.26752, 10, 5109, 0, -1, 0, 0, -1476.6, 1879.51, 32.6328, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES + (110, 4, 'Unnamed Business', 2, 30000, 0, 0, -91.1, -1592.47, 3, 294.395, 0, 0, 0, -1, 226.882, -8.1384, 1002.21, 269.642, 5, 5110, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES + (111, 4, 'Unnamed Business', 8, 30000, 0, 0, 1352.52, -1758.82, 13.51, 180.542, 0, 0, 0, -1, -31.1119, -91.6484, 1003.55, 359.657, 18, 5111, 0, -1, 0, 0, 2254.93, -1666.28, 15.469, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES + (112, 4, 'Unnamed Business', 3, 30000, 0, 0, 1158.28, -1473.41, 15.8, 286.459, 0, 0, 0, -1, 364.786, -11.5863, 1001.85, 359.156, 9, 5112, 0, -1, 0, 0, 0, 0, 0, 2263.74, 34.2681, 26.4844, 50.0339, 0, 0, 0, 0, 0, 0, 0, 1); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES + (113, 4, 'Unnamed Business', 1, 30000, 0, 0, 1743.82, 1445.89, 1145.78, 90.2687, 0, 0, 0, -1, 0, 0, 0, 0, 0, 5113, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES + (114, 4, 'Unnamed Business', 1, 30000, 0, 0, 1742.45, 1445.89, 1145.78, 90.2687, 0, 0, 0, -1, -25.6442, -188.041, 1003.55, 351.193, 17, 5114, 0, -1, 1, 1, 2130.87, 892.924, 10.8203, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES + (115, 4, 'Unnamed Business', 3, 30000, 0, 0, 1650.13, 1466.72, 1151.97, 167.935, 0, 0, 0, -1, -794.957, 490.111, 1376.2, 179.811, 1, 5115, 0, -1, 1, 1, 0, 0, 0, 1327.28, 1397.33, 10.7512, 93.0638, 0, 0, 0, 0, 0, 0, 0, 1); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES + (116, 4, 'Unnamed Business', 8, 30000, 0, 0, 1487.01, -1881.28, 13.55, 190.48, 0, 0, 0, -1, -25.6959, -187.781, 1003.55, 354.083, 17, 5116, 0, -1, 0, 0, 0, 0, 0, 1231.73, -1380.5, 13.3179, 182.887, 0, 0, 0, 0, 0, 0, 0, 1); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES + (117, 4, 'Unnamed Business', 10, 30000, 0, 0, 1736.52, 1445.86, 1145.78, 90.2687, 0, 0, 0, -1, 0, 0, 0, 0, 0, 5117, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES + (119, 4, 'Unnamed Business', 2, 30000, 0, 0, 712.17, -498.92, 16.34, 267.048, 0, 0, 0, -1, 203.747, -50.5602, 1001.8, 348.861, 1, 5119, 0, -1, 0, 0, 714.368, -505.379, 16.3359, 1229.06, -1378.47, 13.339, 256.786, 0, 0, 0, 0, 0, 0, 0, 1); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES + (120, 4, 'Unnamed Business', 8, 30000, 0, 0, 1721.42, 1424.01, 10.64, 320.626, 0, 0, 0, -1, 6.13156, -31.3422, 1003.55, 178.952, 10, 5120, 0, -1, 0, 0, 1014.04, -1563.83, 13.616, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES + (122, 4, 'Unnamed Business', 1, 30000, 0, 0, 1765.16, 1436.69, 1145.69, 93.1964, 0, 0, 0, -1, 0, 0, 0, 0, 0, 5122, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES + (123, 4, 'Unnamed Business', 4, 30000, 0, 0, 1836.51, -1443.03, 13.6, 100.976, 0, 0, 0, -1, 284.991, -86.1033, 1001.52, 350.153, 4, 5123, 0, -1, 0, 1, 1837.35, -1438.43, 13.563, 0, 0, 0, 0, 1234521, 0, 0, 0, 0, 0, 0, 1); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES + (124, 4, 'Unnamed Business', 8, 30000, 0, 0, 1648.6, -1562.17, 13.54, 98.856, 0, 0, 0, -1, -26.0882, -188.231, 1003.55, 0.687847, 17, 5124, 0, -1, 0, 0, 1028.47, -1585.7, 13.5469, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES + (125, 4, 'Unnamed Business', 8, 30000, 0, 0, 1565.93, -1171.4, 24.1, 194.504, 0, 0, 0, -1, -30.7929, -92.0083, 1003.55, 180.866, 18, 5125, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES + (128, 4, 'Unnamed Business', 0, 30000, 0, 0, 1733.91, 1448.76, 1145.78, 273.547, 0, 0, 0, -1, 0, 0, 0, 0, 0, 5128, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES + (129, 4, 'Unnamed Business', 0, 30000, 0, 0, 1735.4, 1448.85, 1145.78, 273.547, 0, 0, 0, -1, 0, 0, 0, 0, 0, 5129, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES + (145, 4, 'Unnamed Business', 4, 30000, 0, 0, 1655.19, 1451.97, 1152.5, 277.616, 0, 0, 0, -1, 0, 0, 0, 0, 0, 5145, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES + (157, 4, 'Unnamed Business', 5, 30000, 0, 0, 548.16, -1293.86, 17.25, 168.94, 0, 0, 0, -1, 1226.48, -813.56, 1084.01, 353.256, 5, 5157, 0, -1, 0, 0, 1811.5, -1659.69, 13.5465, 567.705, -1291.27, 17.2422, 70.9165, 0, 0, 0, 0, 0, 0, 0, 1); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES + (192, 4, 'Unnamed Business', 3, 30000, 0, 0, -222.75, -1747.06, 1.15, 331.273, 0, 0, 0, -1, 363.584, -75.38, 1001.51, 313.29, 10, 5192, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES + (200, 4, 'Unnamed Business', 8, 30000, 0, 0, 1748.23, -1460.31, 13.53, 182.135, 0, 0, 0, -1, -27.4627, -57.8572, 1003.55, 0.812528, 6, 5200, 0, -1, 0, 0, 1014.1, -1563.82, 13.6156, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES + (201, 2, 'Easy Credit Autos', 0, 30000, 1, 1, -1013.1, -861.9, 13.09, 0, 0, 0, 0, -1, 0, 0, 0, 0, 0, 5201, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES + (203, 1, 'Saint Marks Bistro', 0, 30000, 0, 0, 1318.98, -452.77, 54.53, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 5203, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES + (204, 1, 'Easy Credit Autos', 0, 30000, 0, 0, 1218.65, -123.14, 15.06, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 5204, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES + (205, 1, 'Strip Club', 0, 30000, 0, 0, 923.23, -470.66, 14.96, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 5205, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES + (206, 1, 'Strip Club', 0, 30000, 0, 0, 900.49, -416.83, 14.97, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 5206, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES + (207, 1, 'Sex Shop', 0, 30000, 0, 0, 927.04, -379.19, 15.25, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 5207, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES + (208, 1, 'Bar', 0, 30000, 0, 0, 899.09, -285.72, 5.15, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 5208, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES + (209, 1, 'Bar', 0, 30000, 0, 0, 845.42, -287.97, 4.93, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 5209, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES + (210, 1, 'Diner', 0, 30000, 0, 0, 1036.65, -653.01, 15.06, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 5210, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES + (211, 1, 'Bank', 0, 30000, 0, 0, 1036.1, -700.06, 14.97, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 5211, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES + (212, 1, 'Chinese Restaurant', 0, 30000, 0, 0, 909.53, -670.4, 14.97, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 5212, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES + (213, 1, 'Laundry', 0, 30000, 0, 0, 845.28, -663.75, 14.97, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 5213, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES + (214, 1, 'Chinese Restaurant', 0, 30000, 0, 0, 913.89, -805.83, 15.07, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 5214, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES + (215, 1, 'Bank', 0, 30000, 0, 0, 1065.18, -281.02, 8.69, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 5215, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES + (216, 1, 'Clothing Store', 0, 30000, 0, 0, 1117.18, -687.4, 14.97, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 5216, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 750, 0, 0, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES + (217, 2, 'Large Hotel', 0, 30000, 0, 0, -772.41, 548.74, 11.1, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 5217, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES + (218, 2, 'Drugstore', 0, 30000, 0, 0, -832.1, 741.92, 11.29, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 5218, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES + (219, 2, 'Pizza Stack', 0, 30000, 0, 0, -903.16, 798.37, 11.45, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 5219, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES + (220, 2, 'Taco Shop', 0, 30000, 0, 0, -753.17, 1343.16, 11.77, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 5220, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES + (221, 2, 'Cafe', 0, 30000, 0, 0, -774.48, 1304.82, 11.64, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 5221, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES + (222, 2, 'Drugstore', 0, 30000, 0, 0, 50.29, 1007.29, 10.95, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 5222, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES + (228, 4, 'Jefferson Dealership', 0, 30000, 0, 0, 2131.8, -1151.02, 24.09, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 5228, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES + (230, 4, 'Los Santos Police Department', 0, 0, 0, 0, 1554.77, -1675.65, 16.2, 0, 0, 0, 0, -1, 247.113, 62.929, 1003.64, 0, 6, 5230, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES + (231, 2, 'Unnamed Business', 0, 0, 0, 0, -833.55, -908.77, 12.13, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 5231, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES + (232, 1, 'Italian Restaurant', 0, 0, 0, 0, 1135.42, -457.31, 20.18, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 5232, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES + (233, 1, 'Clothes Store', 0, 0, 0, 0, 1065.42, -345.06, 14.97, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 5233, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES + (234, 1, 'Gun Store', 0, 0, 0, 0, 1065.1, -395.1, 14.97, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 5234, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES + (235, 1, 'Porn Shop', 0, 0, 0, 0, 989.05, -441.97, 15.12, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 5235, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES + (236, 1, 'Mechanic Shop', 0, 0, 0, 0, 1190.71, -869.33, 15.17, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 5236, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES + (237, 1, 'Offices', 0, 0, 0, 0, 1212.4, -904.73, 15.11, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 5237, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES + (238, 1, 'Offices', 0, 0, 0, 0, 1244.71, -862.86, 14.97, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 5238, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES + (239, 1, 'Warehouse', 0, 0, 0, 0, 1276.44, -928.52, 14.97, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 5239, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES + (240, 1, 'Warehouse', 0, 0, 0, 0, 1261.95, -943.02, 14.97, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 5240, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES + (241, 1, 'Warehouse', 0, 0, 0, 0, 1253.32, -950.5, 14.98, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 5241, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES + (242, 1, 'Warehouse', 0, 0, 0, 0, 1231.16, -964.6, 15.07, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 5242, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES + (243, 1, 'Warehouse', 0, 0, 0, 0, 1183.85, -961.46, 15.11, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 5243, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES + (244, 1, 'Warehouse', 0, 0, 0, 0, 1188.25, -957.06, 15.11, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 5244, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES + (245, 1, 'Warehouse', 0, 0, 0, 0, 1171.64, -963.65, 14.97, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 5245, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES + (246, 1, 'Warehouse', 0, 0, 0, 0, 1162.62, -952.35, 15.06, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 5246, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES + (247, 1, 'Warehouse', 0, 0, 0, 0, 1219.81, -973.64, 14.98, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 5247, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES + (248, 1, 'Docks Warehouse', 0, 0, 0, 0, 1435.66, -805.82, 11.83, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 5248, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES + (249, 1, 'Docks Warehouse', 0, 0, 0, 0, 1445.71, -806.21, 11.83, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 5249, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES + (250, 1, 'Docks Warehouse', 0, 0, 0, 0, 1455.57, -805.72, 11.83, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 5250, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES + (251, 1, 'Docks Warehouse', 0, 0, 0, 0, 1465.74, -805.72, 11.83, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 5251, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES + (252, 1, 'Docks Warehouse', 0, 0, 0, 0, 1475.63, -805.72, 11.83, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 5252, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES + (253, 1, 'Docks Warehouse', 0, 0, 0, 0, 1485.73, -805.72, 11.83, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 5253, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES + (254, 1, 'Docks Warehouse', 0, 0, 0, 0, 1495.69, -805.72, 11.83, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 5254, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES + (255, 1, 'Docks Warehouse', 0, 0, 0, 0, 1467.39, -688.64, 11.83, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 5255, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES + (256, 1, 'Docks Warehouse', 0, 0, 0, 0, 1495.89, -684.9, 12.14, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 5256, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES + (257, 1, 'Docks Warehouse', 0, 0, 0, 0, 1488.55, -650.17, 11.83, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 5257, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES + (258, 1, 'Docks Warehouse', 0, 0, 0, 0, 1465.85, -650.17, 11.83, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 5258, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES + (259, 1, 'Docks Warehouse', 0, 0, 0, 0, 1510.97, -650.17, 11.83, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 5259, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES + (260, 1, 'Docks Warehouse', 0, 0, 0, 0, 1533.95, -650.17, 11.83, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 5260, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES + (261, 1, 'Docks Warehouse', 0, 0, 0, 0, 1556.7, -650.17, 11.83, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 5261, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES + (262, 1, 'Docks Warehouse', 0, 0, 0, 0, 1579.22, -650.17, 11.83, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 5262, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES + (263, 1, 'Warehouse', 0, 0, 0, 0, 1305.18, -810.01, 15.03, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 5263, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES + (264, 1, 'Supermarket', 0, 0, 0, 0, 1272.41, -608.83, 12.46, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 5264, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES + (265, 1, 'Sweeney General Hospital', 0, 0, 0, 0, 1149.18, -585.3, 15.02, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 5265, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES + (266, 1, 'Portland Police Station', 0, 0, 0, 0, 1148.46, -675, 14.98, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 5266, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES + (267, 1, 'Clothes Store', 0, 0, 0, 0, 1104.57, -638.42, 14.97, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 5267, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES + (268, 1, 'City Hall', 0, 0, 0, 0, 98.21, -962.97, 29.19, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 5268, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES + (269, 1, 'Courthouse', 0, 0, 0, 0, 97.4, -1429.97, 31.67, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 5269, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES + (270, 1, 'Francis International Airport', 0, 0, 0, 0, -769.82, -600.32, 11.33, 0, 0, 0, 0, -1, -770.862, -600.281, 11.3161, 0, 0, 5270, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES + (271, 1, 'Shoreside Vale Police Station', 0, 0, 0, 0, -1255.33, -23.06, 59.04, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 5271, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES + (272, 1, 'Hope Medical College', 0, 0, 0, 0, -1246.78, -150.69, 59.07, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 5272, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES + (273, 1, 'Shoreside Vale Fire Station', 0, 0, 0, 0, -1214.27, -13.79, 53.27, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 5273, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES + (274, 1, 'Warehouse', 0, 0, 0, 0, -1235.35, 125.25, 68.57, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 5274, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES + (275, 1, 'Warehouse', 0, 0, 0, 0, -1137.91, 25.51, 58.82, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 5275, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES + (276, 1, 'Warehouse', 0, 0, 0, 0, -1114.45, 53.09, 58.67, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 5276, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES + (277, 1, 'Warehouse', 0, 0, 0, 0, -1090.84, 59.41, 58.59, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 5277, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES + (278, 1, 'Warehouse', 0, 0, 0, 0, -1020.35, -78.01, 38.89, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 5278, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES + (279, 1, 'Warehouse', 0, 0, 0, 0, -844.12, -160.47, 33.86, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 5279, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES + (280, 1, 'Warehouse', 0, 0, 0, 0, -844.13, -176.19, 33.86, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 5280, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES + (281, 1, 'Warehouse', 0, 0, 0, 0, -844.13, -184.38, 33.86, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 5281, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES + (282, 1, 'Warehouse', 0, 0, 0, 0, -844.13, -192.24, 33.86, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 5282, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES + (283, 1, 'Warehouse', 0, 0, 0, 0, -844.13, -200.03, 33.86, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 5283, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES + (284, 1, 'Warehouse', 0, 0, 0, 0, -844.13, -207.77, 33.86, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 5284, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES + (285, 1, 'Staunton Island Police Station', 0, 0, 0, 0, 340.4, -1118.42, 25.98, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 5285, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES + (286, 1, 'Carson General Hospital', 0, 0, 0, 0, 149.88, 63.39, 16.21, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 5286, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES + (287, 1, 'Liberty City Stadium', 0, 0, 0, 0, -18.77, -219.3, 29.82, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 5287, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES + (288, 1, 'Staunton Island Fire Station', 0, 0, 0, 0, -76.46, -435.7, 16.18, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 5288, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES + (289, 1, 'Church', 0, 0, 0, 0, -75.03, -1078.03, 26.19, 0, 0, 0, 0, -1, -72.5906, -1079.24, 26.205, 0, 0, 5289, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES + (290, 1, 'Clothes Store', 0, 0, 0, 0, 1116.62, -402.53, 19.97, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 5290, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES + (291, 2, 'Little Havana Police Station', 0, 0, 0, 0, -873.24, -684.97, 11.34, 0, 0, 0, 0, -1, 394.74, -475.02, 12.34, 0, 12, 5291, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES + (292, 2, 'Bar', 0, 0, 0, 0, -900.15, -646.11, 11.28, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 5292, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES + (293, 2, '24/7', 0, 0, 0, 0, -858.72, -634.62, 11.38, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 5293, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES + (294, 2, 'Hardware Store', 0, 0, 0, 0, -966.7, -693.4, 11.41, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 5294, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES + (295, 2, 'Bar', 0, 0, 0, 0, -995.87, -689.22, 11.77, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 5295, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES + (296, 2, 'Bar', 0, 0, 0, 0, -1114.92, -697.18, 11.79, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 5296, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES + (297, 2, 'Diner', 0, 0, 0, 0, -1168.71, -616.91, 11.83, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 5297, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES + (298, 2, 'Laundromat', 0, 0, 0, 0, -1195.37, -323.56, 10.94, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 5298, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES + (299, 2, 'Warehouse', 0, 0, 0, 0, -892.17, 119, 9.37, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 5299, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES + (300, 2, 'Warehouse', 0, 0, 0, 0, -920.02, 119, 9.37, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 5300, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES + (301, 2, 'Warehouse', 0, 0, 0, 0, -906.03, 145.94, 9.37, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 5301, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES + (302, 2, 'Storage', 0, 0, 0, 0, -874.2, 79.13, 9.37, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 5302, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES + (303, 2, 'Storage', 0, 0, 0, 0, -874.2, 90.42, 9.37, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 5303, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES + (304, 2, 'Storage', 0, 0, 0, 0, -874.2, 101.82, 9.37, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 5304, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES + (305, 2, 'Cafe', 0, 0, 0, 0, -913.75, 50.7, 10.5, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 5305, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES + (306, 2, 'Big Hotel', 0, 0, 0, 0, -775.59, 133.02, 10.93, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 5306, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES + (307, 2, 'Big Hotel', 0, 0, 0, 0, -752.06, 256.49, 16.32, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 5307, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES + (308, 2, 'Big Hotel', 0, 0, 0, 0, -729.96, 365.97, 11.1, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 5308, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES + (309, 2, 'Courthouse', 0, 0, 0, 0, -698.67, 703.53, 12.12, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 5309, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES + (310, 2, 'Downtown Fire Station', 0, 0, 0, 0, -698.71, 806.24, 11.08, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 5310, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES + (311, 2, 'Music Store', 0, 0, 0, 0, -872.93, 746.81, 11.08, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 5311, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES + (312, 2, 'Clothing Store', 0, 0, 0, 0, -918.64, 885.25, 11.06, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 5312, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES + (313, 2, 'Large Hotel', 0, 0, 0, 0, -826.86, 1038.41, 15.75, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 5313, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES + (314, 2, 'Concert Hall', 0, 0, 0, 0, -893.97, 1054.59, 15.67, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 5314, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES + (315, 2, 'Offices', 0, 0, 0, 0, -875.07, 1159.55, 11.2, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 5315, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES + (316, 2, 'Derby Arena', 0, 0, 0, 0, -1108.53, 1331.05, 20.12, 0, 0, 0, 0, -1, -1443.36, 932.982, 262.395, 0, 15, 5316, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES + (317, 2, 'Bowling Alley', 0, 0, 0, 0, -669.3, 1382.3, 12.09, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 5317, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES + (318, 2, 'The Greasy Chopper Bar', 0, 0, 0, 0, -597.35, 651.6, 11.38, 0, 0, 0, 0, -1, -597.312, 650.405, 11.6765, 0, 11, 5318, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES + (319, 2, 'North Point Mall', 0, 0, 0, 0, 379.66, 998.47, 18.76, 0, 0, 0, 0, -1, 379.62, 1007, 19.22, 0, 4, 5319, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES + (320, 2, 'North Point Mall', 0, 0, 0, 0, 448.95, 999.73, 18.79, 0, 0, 0, 0, -1, 448.24, 1007.2, 19.18, 0, 4, 5320, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES + (321, 2, 'North Point Mall', 0, 0, 0, 0, 352.85, 1124.52, 18.64, 0, 0, 0, 0, -1, 361.72, 1124.93, 18.93, 0, 15, 5321, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES + (322, 2, 'North Point Mall', 0, 0, 0, 0, 379.68, 1253.29, 18.85, 0, 0, 0, 0, -1, 379.79, 1246.83, 19.16, 0, 15, 5322, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES + (323, 2, 'North Point Mall', 0, 0, 0, 0, 448.17, 1253.27, 18.7, 0, 0, 0, 0, -1, 448.6, 1246.43, 19.06, 0, 15, 5323, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES + (324, 2, 'North Point Mall', 0, 0, 0, 0, 475.04, 1124.36, 17.95, 0, 0, 0, 0, -1, 468.24, 1123.66, 18.34, 0, 15, 5324, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES + (325, 2, 'Malibu Club', 0, 0, 0, 0, 489.83, -76.49, 11.48, 0, 0, 0, 0, -1, 489.83, -76.49, 11.48, 0, 17, 5325, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES + (326, 2, 'Washington Beach Police Station', 0, 0, 0, 0, 396.38, -472.96, 12.34, 0, 0, 0, 0, -1, 394.74, -475.02, 12.34, 0, 12, 5326, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES + (327, 2, 'Ocean View Hotel', 0, 0, 0, 0, 228.53, -1277.12, 12.07, 0, 0, 0, 0, -1, 228.53, -1277.12, 12.07, 0, 1, 5327, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES + (328, 2, 'Ammunation Range', 0, 0, 0, 0, -667.79, 1217.51, 11.1, 0, 0, 0, 0, -1, -667.79, 1217.51, 11.1, 0, 10, 5328, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES + (329, 2, 'Bank', 0, 0, 0, 0, -894.52, -341.16, 13.45, 0, 0, 0, 0, -1, -901.16, -341.15, 13.38, 0, 3, 5329, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES + (330, 2, 'Downtown Roof Building', 0, 0, 0, 0, -830.77, 1312.15, 11.54, 0, 0, 0, 0, -1, -811.81, 1354.21, 66.46, 0, 0, 5330, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES + (331, 2, 'Roof', 0, 0, 0, 0, 386.46, -473.03, 21.57, 0, 0, 0, 0, -1, 379.35, -493.53, 12.33, 0, 12, 5331, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES + (332, 2, 'Strip Club', 0, 0, 0, 0, 97.53, -1472.06, 10.43, 0, 0, 0, 0, -1, 95.68, -1469, 10.56, 0, 5, 5332, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES + (333, 2, 'Law Office', 0, 0, 0, 0, 120.82, -827.98, 10.62, 0, 0, 0, 0, -1, 137.12, -1370.16, 13.18, 0, 6, 5333, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES + (335, 2, 'Downtown Police Station', 0, 0, 0, 0, -657.19, 762.55, 11.6, 0, 0, 0, 0, -1, 0, 0, 0, 0, 12, -1, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES + (336, 1, 'Secret Asian Man\'s Threads', 0, 0, 0, 0, 958.31, -673.8, 14.97, 0, 0, 0, -1, -1, 0, 0, 0, 0, -1, 5000, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES + (337, 1, 'Simply Fo Yu\'s Asian Threads', 0, 0, 0, 0, 958.31, -673.8, 14.97, 0, 0, 0, -1, -1, 0, 0, 0, 0, -1, 5000, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES + (338, 1, 'Fu King Asian\'s Threads', 0, 0, 0, 0, 958.34, -673.8, 14.97, 0, 0, 0, -1, -1, 0, 0, 0, 0, -1, 5000, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES + (339, 4, 'Los Santos Police Department Garage', 0, 0, 0, 0, 1568.57, -1689.97, 6.22, 0, 0, 0, -1, -1, 246.48, 88.01, 1003.64, 0, 6, 5230, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES + (340, 4, 'Bike Dealership', 0, 0, 0, 0, 987.63, -1349.28, 13.58, 0, 0, 0, -1, -1, 0, 0, 0, 0, -1, 5000, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES + (341, 1, 'Fung Ku Tools', 0, 0, 0, 0, 867.122, -708.406, 15.2109, 0, 0, 0, -1, -1, 0, 0, 0, 0, -1, 5000, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +/*!40000 ALTER TABLE `biz_main` ENABLE KEYS */; + +-- Dumping structure for table gtac_main.bug_main +CREATE TABLE IF NOT EXISTS `bug_main` ( + `bug_id` int(11) NOT NULL AUTO_INCREMENT, + `bug_server` int(11) NOT NULL DEFAULT '0', + `bug_who_added` int(11) NOT NULL DEFAULT '0', + `bug_when_added` int(32) NOT NULL DEFAULT '0', + `bug_script_ver` varchar(16) NOT NULL DEFAULT '0.1', + `bug_pos_x` float NOT NULL DEFAULT '0', + `bug_pos_y` float NOT NULL DEFAULT '0', + `bug_pos_z` float NOT NULL DEFAULT '0', + `bug_rot_z` float NOT NULL DEFAULT '0', + `bug_message` varchar(128) NOT NULL DEFAULT '(No Message)', + `bug_svr_start` int(32) NOT NULL DEFAULT '0', + `bug_session` int(11) NOT NULL DEFAULT '0', + `bug_state` tinyint(1) NOT NULL DEFAULT '0', + PRIMARY KEY (`bug_id`), + KEY `bug_server` (`bug_server`), + KEY `fk_bug_who_added` (`bug_who_added`), + CONSTRAINT `fk_bug_server` FOREIGN KEY (`bug_server`) REFERENCES `svr_main` (`svr_id`) ON DELETE CASCADE ON UPDATE CASCADE, + CONSTRAINT `fk_bug_who_added` FOREIGN KEY (`bug_who_added`) REFERENCES `acct_main` (`acct_id`) ON DELETE CASCADE ON UPDATE CASCADE +) ENGINE=InnoDB AUTO_INCREMENT=89 DEFAULT CHARSET=latin1 COMMENT='User Submitted Bugs'; + +-- Dumping data for table gtac_main.bug_main: ~18 rows (approximately) +/*!40000 ALTER TABLE `bug_main` DISABLE KEYS */; +INSERT INTO `bug_main` (`bug_id`, `bug_server`, `bug_who_added`, `bug_when_added`, `bug_script_ver`, `bug_pos_x`, `bug_pos_y`, `bug_pos_z`, `bug_rot_z`, `bug_message`, `bug_svr_start`, `bug_session`, `bug_state`) VALUES + (4, 4, 2, 1609121880, '1.0', 0, 0, 0, 0, '"normal house at ls" marker overlaps with "Unnamed Business" marker in Verdant Bluffs.', 2147483647, 0, 0); +INSERT INTO `bug_main` (`bug_id`, `bug_server`, `bug_who_added`, `bug_when_added`, `bug_script_ver`, `bug_pos_x`, `bug_pos_y`, `bug_pos_z`, `bug_rot_z`, `bug_message`, `bug_svr_start`, `bug_session`, `bug_state`) VALUES + (25, 1, 1, 1610250358, '1.0', 310.491, -1191.51, 26.1453, 1.10632, 'Fix NaN on login attempts', 1610250260, 0, 0); +INSERT INTO `bug_main` (`bug_id`, `bug_server`, `bug_who_added`, `bug_when_added`, `bug_script_ver`, `bug_pos_x`, `bug_pos_y`, `bug_pos_z`, `bug_rot_z`, `bug_message`, `bug_svr_start`, `bug_session`, `bug_state`) VALUES + (51, 1, 1, 1610251403, '1.0', 1308.86, -1017.92, 14.8858, -0.685351, 'Job banned bitflag preventing players from joining', 1610250260, 0, 0); +INSERT INTO `bug_main` (`bug_id`, `bug_server`, `bug_who_added`, `bug_when_added`, `bug_script_ver`, `bug_pos_x`, `bug_pos_y`, `bug_pos_z`, `bug_rot_z`, `bug_message`, `bug_svr_start`, `bug_session`, `bug_state`) VALUES + (55, 1, 1, 1610352706, '1.0', 1353.1, -833.441, 14.6752, 3.11304, 'Disable item use key in vehicle', 1610322516, 0, 0); +INSERT INTO `bug_main` (`bug_id`, `bug_server`, `bug_who_added`, `bug_when_added`, `bug_script_ver`, `bug_pos_x`, `bug_pos_y`, `bug_pos_z`, `bug_rot_z`, `bug_message`, `bug_svr_start`, `bug_session`, `bug_state`) VALUES + (61, 4, 1, 1610587525, '1.0', 242.757, 62.7046, 1003.64, 2.82568, 'Fix autolastchar', 1610587512, 0, 0); +INSERT INTO `bug_main` (`bug_id`, `bug_server`, `bug_who_added`, `bug_when_added`, `bug_script_ver`, `bug_pos_x`, `bug_pos_y`, `bug_pos_z`, `bug_rot_z`, `bug_message`, `bug_svr_start`, `bug_session`, `bug_state`) VALUES + (72, 1, 1, 1610765394, '1.0', 912.086, -678.934, 14.9727, -2.70905, 'Fix client runcode', 1610763688, 0, 0); +INSERT INTO `bug_main` (`bug_id`, `bug_server`, `bug_who_added`, `bug_when_added`, `bug_script_ver`, `bug_pos_x`, `bug_pos_y`, `bug_pos_z`, `bug_rot_z`, `bug_message`, `bug_svr_start`, `bug_session`, `bug_state`) VALUES + (76, 1, 1, 1610765953, '1.0', 1110.76, -635.598, 14.9727, 1.57098, 'Prevent vehicle burning/exploding. Just disable it', 1610763688, 0, 0); +INSERT INTO `bug_main` (`bug_id`, `bug_server`, `bug_who_added`, `bug_when_added`, `bug_script_ver`, `bug_pos_x`, `bug_pos_y`, `bug_pos_z`, `bug_rot_z`, `bug_message`, `bug_svr_start`, `bug_session`, `bug_state`) VALUES + (78, 1, 1, 1610766019, '1.0', 916.733, -680.575, 14.9727, 1.16083, 'Using /put shows item trying to store is buged', 1610763688, 0, 0); +INSERT INTO `bug_main` (`bug_id`, `bug_server`, `bug_who_added`, `bug_when_added`, `bug_script_ver`, `bug_pos_x`, `bug_pos_y`, `bug_pos_z`, `bug_rot_z`, `bug_message`, `bug_svr_start`, `bug_session`, `bug_state`) VALUES + (79, 1, 1, 1610766071, '1.0', 911.069, -684.414, 14.9727, -0.0528247, 'Fixing spawning in VC/SA', 1610763688, 0, 0); +INSERT INTO `bug_main` (`bug_id`, `bug_server`, `bug_who_added`, `bug_when_added`, `bug_script_ver`, `bug_pos_x`, `bug_pos_y`, `bug_pos_z`, `bug_rot_z`, `bug_message`, `bug_svr_start`, `bug_session`, `bug_state`) VALUES + (80, 1, 1, 1610766109, '1.0', 908.798, -684.276, 14.9727, -0.0528247, 'Tazer has no effect. Damage seems to be prevented but no tazer func called', 1610763688, 0, 0); +INSERT INTO `bug_main` (`bug_id`, `bug_server`, `bug_who_added`, `bug_when_added`, `bug_script_ver`, `bug_pos_x`, `bug_pos_y`, `bug_pos_z`, `bug_rot_z`, `bug_message`, `bug_svr_start`, `bug_session`, `bug_state`) VALUES + (81, 1, 1, 1610766672, '1.0', 1142.9, -676.239, 14.9727, 0.646766, 'Player doesnt get kicked on 0 attempts left', 1610763688, 0, 0); +INSERT INTO `bug_main` (`bug_id`, `bug_server`, `bug_who_added`, `bug_when_added`, `bug_script_ver`, `bug_pos_x`, `bug_pos_y`, `bug_pos_z`, `bug_rot_z`, `bug_message`, `bug_svr_start`, `bug_session`, `bug_state`) VALUES + (82, 1, 1, 1610766678, '1.0', 1142.44, -679.479, 14.9727, -1.57861, 'Player doesnt get kicked on 0 login attempts left', 1610763688, 0, 0); +INSERT INTO `bug_main` (`bug_id`, `bug_server`, `bug_who_added`, `bug_when_added`, `bug_script_ver`, `bug_pos_x`, `bug_pos_y`, `bug_pos_z`, `bug_rot_z`, `bug_message`, `bug_svr_start`, `bug_session`, `bug_state`) VALUES + (83, 4, 1, 1613342160, '1.0', 2136.13, -1145.45, 24.5973, 0.785896, 'Fix job text showing already have job after quitjob', 1613341557, 0, 0); +INSERT INTO `bug_main` (`bug_id`, `bug_server`, `bug_who_added`, `bug_when_added`, `bug_script_ver`, `bug_pos_x`, `bug_pos_y`, `bug_pos_z`, `bug_rot_z`, `bug_message`, `bug_svr_start`, `bug_session`, `bug_state`) VALUES + (84, 4, 1, 1613342390, '1.0', 1542.94, -1676.64, 13.5555, 1.77156, 'Vehicle enter not being detected in SA', 1613342173, 0, 0); +INSERT INTO `bug_main` (`bug_id`, `bug_server`, `bug_who_added`, `bug_when_added`, `bug_script_ver`, `bug_pos_x`, `bug_pos_y`, `bug_pos_z`, `bug_rot_z`, `bug_message`, `bug_svr_start`, `bug_session`, `bug_state`) VALUES + (85, 4, 1, 1613342410, '1.0', 1542.94, -1676.64, 13.5555, 1.77156, 'Fix job text showing already have job after using quitjob', 1613342173, 0, 0); +INSERT INTO `bug_main` (`bug_id`, `bug_server`, `bug_who_added`, `bug_when_added`, `bug_script_ver`, `bug_pos_x`, `bug_pos_y`, `bug_pos_z`, `bug_rot_z`, `bug_message`, `bug_svr_start`, `bug_session`, `bug_state`) VALUES + (86, 4, 1, 1613342571, '1.0', 1004.83, -1303.6, 13.3828, 3.02172, 'Pickups dont disappear on biz delete', 1613342173, 0, 0); +INSERT INTO `bug_main` (`bug_id`, `bug_server`, `bug_who_added`, `bug_when_added`, `bug_script_ver`, `bug_pos_x`, `bug_pos_y`, `bug_pos_z`, `bug_rot_z`, `bug_message`, `bug_svr_start`, `bug_session`, `bug_state`) VALUES + (87, 4, 1, 1614002650, '1.0', 1546.78, -1675.38, 13.563, 1.52, 'Fix out of range issue in sacct_when_lastlogin when saving sacct data', 1614002529, 0, 0); +INSERT INTO `bug_main` (`bug_id`, `bug_server`, `bug_who_added`, `bug_when_added`, `bug_script_ver`, `bug_pos_x`, `bug_pos_y`, `bug_pos_z`, `bug_rot_z`, `bug_message`, `bug_svr_start`, `bug_session`, `bug_state`) VALUES + (88, 1, 1, 1614366383, '1.0', 1139.08, -682.326, 14.9727, -2.84652, '(AUTOMATED REPORT) Pickup Item: Getting item data for item undefined on ground returned false.', 1614365263, 0, 0); +/*!40000 ALTER TABLE `bug_main` ENABLE KEYS */; + +-- Dumping structure for table gtac_main.clan_main +CREATE TABLE IF NOT EXISTS `clan_main` ( + `clan_id` int(11) NOT NULL AUTO_INCREMENT, + `clan_server` int(11) NOT NULL DEFAULT '0', + `clan_name` varchar(64) NOT NULL DEFAULT '', + `clan_tag` varchar(16) NOT NULL DEFAULT '', + `clan_owner` int(11) NOT NULL DEFAULT '0', + `clan_created` int(32) NOT NULL DEFAULT '0', + `clan_deleted` int(11) NOT NULL DEFAULT '0', + PRIMARY KEY (`clan_id`), + KEY `clan_server` (`clan_server`), + KEY `clan_owner` (`clan_owner`), + CONSTRAINT `fk_clan_owner` FOREIGN KEY (`clan_owner`) REFERENCES `sacct_main` (`sacct_id`) ON DELETE CASCADE ON UPDATE CASCADE, + CONSTRAINT `fk_clan_server` FOREIGN KEY (`clan_server`) REFERENCES `svr_main` (`svr_id`) ON DELETE CASCADE ON UPDATE CASCADE +) ENGINE=InnoDB DEFAULT CHARSET=latin1 COMMENT='Clans'; + +-- Dumping data for table gtac_main.clan_main: ~0 rows (approximately) +/*!40000 ALTER TABLE `clan_main` DISABLE KEYS */; +/*!40000 ALTER TABLE `clan_main` ENABLE KEYS */; + +-- Dumping structure for table gtac_main.clan_members +CREATE TABLE IF NOT EXISTS `clan_members` ( + `clan_member_id` int(11) NOT NULL DEFAULT '0', + `clan_member_server` int(11) NOT NULL DEFAULT '0', + `clan_member_clan` int(11) NOT NULL DEFAULT '0', + `clan_member_acct` int(11) NOT NULL DEFAULT '0', + `clan_member_custom_title` varchar(64) NOT NULL DEFAULT '', + `clan_member_custom_tag` varchar(16) NOT NULL DEFAULT '', + `clan_member_flags` int(32) NOT NULL DEFAULT '0', + `clan_member_rank` int(11) NOT NULL DEFAULT '0', + PRIMARY KEY (`clan_member_id`), + KEY `clan_member_server` (`clan_member_server`), + KEY `clan_member_clan` (`clan_member_clan`), + KEY `clan_member_acct` (`clan_member_acct`), + CONSTRAINT `fk_clan_member_server` FOREIGN KEY (`clan_member_server`) REFERENCES `svr_main` (`svr_id`) ON DELETE CASCADE ON UPDATE CASCADE +) ENGINE=InnoDB DEFAULT CHARSET=latin1 COMMENT='Clans - Members'; + +-- Dumping data for table gtac_main.clan_members: ~0 rows (approximately) +/*!40000 ALTER TABLE `clan_members` DISABLE KEYS */; +/*!40000 ALTER TABLE `clan_members` ENABLE KEYS */; + +-- Dumping structure for table gtac_main.clan_ranks +CREATE TABLE IF NOT EXISTS `clan_ranks` ( + `clan_rank_id` int(11) NOT NULL AUTO_INCREMENT, + `clan_rank_clan` int(11) NOT NULL DEFAULT '0', + `clan_rank_name` varchar(64) NOT NULL DEFAULT '', + `clan_rank_custom_tag` varchar(16) NOT NULL DEFAULT '', + `clan_rank_after_rank_id` int(11) NOT NULL DEFAULT '0', + `clan_rank_flags` int(32) NOT NULL DEFAULT '0', + PRIMARY KEY (`clan_rank_id`), + KEY `clan_rank_clan` (`clan_rank_clan`) +) ENGINE=InnoDB DEFAULT CHARSET=latin1 COMMENT='Clans - Ranks'; + +-- Dumping data for table gtac_main.clan_ranks: ~0 rows (approximately) +/*!40000 ALTER TABLE `clan_ranks` DISABLE KEYS */; +/*!40000 ALTER TABLE `clan_ranks` ENABLE KEYS */; + +-- Dumping structure for table gtac_main.conn_main +CREATE TABLE IF NOT EXISTS `conn_main` ( + `conn_id` int(11) NOT NULL AUTO_INCREMENT, + `conn_server` int(11) NOT NULL DEFAULT '0', + `conn_auth` int(11) NOT NULL DEFAULT '0', + `conn_name` varchar(256) NOT NULL DEFAULT '', + `conn_ip` int(11) NOT NULL DEFAULT '0', + `conn_when_connect` bigint(20) NOT NULL DEFAULT '0', + `conn_when_disconnect` bigint(20) NOT NULL DEFAULT '0', + `conn_client_version` varchar(50) NOT NULL DEFAULT '0', + `conn_script_version` varchar(50) NOT NULL DEFAULT '0', + `conn_game_version` varchar(50) NOT NULL DEFAULT '0', + `conn_status` int(11) NOT NULL DEFAULT '0', + `conn_how_disconnect` int(11) NOT NULL DEFAULT '0', + PRIMARY KEY (`conn_id`), + KEY `conn_server` (`conn_server`), + CONSTRAINT `fk_conn_server` FOREIGN KEY (`conn_server`) REFERENCES `svr_main` (`svr_id`) ON DELETE CASCADE ON UPDATE CASCADE +) ENGINE=InnoDB AUTO_INCREMENT=294 DEFAULT CHARSET=utf8 COMMENT='Connections (Sessions)'; + +-- Dumping data for table gtac_main.conn_main: ~293 rows (approximately) +/*!40000 ALTER TABLE `conn_main` DISABLE KEYS */; +INSERT INTO `conn_main` (`conn_id`, `conn_server`, `conn_auth`, `conn_name`, `conn_ip`, `conn_when_connect`, `conn_when_disconnect`, `conn_client_version`, `conn_script_version`, `conn_game_version`, `conn_status`, `conn_how_disconnect`) VALUES + (1, 1, 0, '', 0, 1610503778, 0, '0.0.0', '1.0', '1', 0, 0); +INSERT INTO `conn_main` (`conn_id`, `conn_server`, `conn_auth`, `conn_name`, `conn_ip`, `conn_when_connect`, `conn_when_disconnect`, `conn_client_version`, `conn_script_version`, `conn_game_version`, `conn_status`, `conn_how_disconnect`) VALUES + (2, 1, 0, '', 0, 1610503857, 0, '0.0.0', '1.0', '1', 0, 0); +INSERT INTO `conn_main` (`conn_id`, `conn_server`, `conn_auth`, `conn_name`, `conn_ip`, `conn_when_connect`, `conn_when_disconnect`, `conn_client_version`, `conn_script_version`, `conn_game_version`, `conn_status`, `conn_how_disconnect`) VALUES + (3, 1, 0, '', 0, 1610504425, 0, '0.0.0', '1.0', '1', 0, 0); +INSERT INTO `conn_main` (`conn_id`, `conn_server`, `conn_auth`, `conn_name`, `conn_ip`, `conn_when_connect`, `conn_when_disconnect`, `conn_client_version`, `conn_script_version`, `conn_game_version`, `conn_status`, `conn_how_disconnect`) VALUES + (4, 1, 0, '', 0, 1610504480, 0, '0.0.0', '1.0', '1', 0, 0); +INSERT INTO `conn_main` (`conn_id`, `conn_server`, `conn_auth`, `conn_name`, `conn_ip`, `conn_when_connect`, `conn_when_disconnect`, `conn_client_version`, `conn_script_version`, `conn_game_version`, `conn_status`, `conn_how_disconnect`) VALUES + (5, 1, 0, '', 0, 1610504534, 0, '0.0.0', '1.0', '1', 0, 0); +INSERT INTO `conn_main` (`conn_id`, `conn_server`, `conn_auth`, `conn_name`, `conn_ip`, `conn_when_connect`, `conn_when_disconnect`, `conn_client_version`, `conn_script_version`, `conn_game_version`, `conn_status`, `conn_how_disconnect`) VALUES + (6, 1, 0, '', 0, 1610504688, 0, '0.0.0', '1.0', '1', 0, 0); +INSERT INTO `conn_main` (`conn_id`, `conn_server`, `conn_auth`, `conn_name`, `conn_ip`, `conn_when_connect`, `conn_when_disconnect`, `conn_client_version`, `conn_script_version`, `conn_game_version`, `conn_status`, `conn_how_disconnect`) VALUES + (7, 1, 0, '', 0, 1610508551, 0, '0.0.0', '1.0', '1', 0, 0); +INSERT INTO `conn_main` (`conn_id`, `conn_server`, `conn_auth`, `conn_name`, `conn_ip`, `conn_when_connect`, `conn_when_disconnect`, `conn_client_version`, `conn_script_version`, `conn_game_version`, `conn_status`, `conn_how_disconnect`) VALUES + (8, 1, 0, '', 0, 1610508624, 0, '0.0.0', '1.0', '1', 0, 0); +INSERT INTO `conn_main` (`conn_id`, `conn_server`, `conn_auth`, `conn_name`, `conn_ip`, `conn_when_connect`, `conn_when_disconnect`, `conn_client_version`, `conn_script_version`, `conn_game_version`, `conn_status`, `conn_how_disconnect`) VALUES + (9, 1, 0, '', 0, 1610508861, 0, '0.0.0', '1.0', '1', 0, 0); +INSERT INTO `conn_main` (`conn_id`, `conn_server`, `conn_auth`, `conn_name`, `conn_ip`, `conn_when_connect`, `conn_when_disconnect`, `conn_client_version`, `conn_script_version`, `conn_game_version`, `conn_status`, `conn_how_disconnect`) VALUES + (10, 1, 0, '', 0, 1610508901, 0, '0.0.0', '1.0', '1', 0, 0); +INSERT INTO `conn_main` (`conn_id`, `conn_server`, `conn_auth`, `conn_name`, `conn_ip`, `conn_when_connect`, `conn_when_disconnect`, `conn_client_version`, `conn_script_version`, `conn_game_version`, `conn_status`, `conn_how_disconnect`) VALUES + (11, 1, 0, '', 0, 1610509221, 0, '0.0.0', '1.0', '1', 0, 0); +INSERT INTO `conn_main` (`conn_id`, `conn_server`, `conn_auth`, `conn_name`, `conn_ip`, `conn_when_connect`, `conn_when_disconnect`, `conn_client_version`, `conn_script_version`, `conn_game_version`, `conn_status`, `conn_how_disconnect`) VALUES + (12, 1, 0, '', 0, 1610509345, 0, '0.0.0', '1.0', '1', 0, 0); +INSERT INTO `conn_main` (`conn_id`, `conn_server`, `conn_auth`, `conn_name`, `conn_ip`, `conn_when_connect`, `conn_when_disconnect`, `conn_client_version`, `conn_script_version`, `conn_game_version`, `conn_status`, `conn_how_disconnect`) VALUES + (13, 1, 0, '', 0, 1610510121, 0, '0.0.0', '1.0', '1', 0, 0); +INSERT INTO `conn_main` (`conn_id`, `conn_server`, `conn_auth`, `conn_name`, `conn_ip`, `conn_when_connect`, `conn_when_disconnect`, `conn_client_version`, `conn_script_version`, `conn_game_version`, `conn_status`, `conn_how_disconnect`) VALUES + (14, 1, 0, '', 0, 1610510274, 0, '0.0.0', '1.0', '1', 0, 0); +INSERT INTO `conn_main` (`conn_id`, `conn_server`, `conn_auth`, `conn_name`, `conn_ip`, `conn_when_connect`, `conn_when_disconnect`, `conn_client_version`, `conn_script_version`, `conn_game_version`, `conn_status`, `conn_how_disconnect`) VALUES + (15, 1, 0, '', 0, 1610510886, 0, '0.0.0', '1.0', '1', 0, 0); +INSERT INTO `conn_main` (`conn_id`, `conn_server`, `conn_auth`, `conn_name`, `conn_ip`, `conn_when_connect`, `conn_when_disconnect`, `conn_client_version`, `conn_script_version`, `conn_game_version`, `conn_status`, `conn_how_disconnect`) VALUES + (16, 1, 0, '', 0, 1610511695, 0, '0.0.0', '1.0', '1', 0, 0); +INSERT INTO `conn_main` (`conn_id`, `conn_server`, `conn_auth`, `conn_name`, `conn_ip`, `conn_when_connect`, `conn_when_disconnect`, `conn_client_version`, `conn_script_version`, `conn_game_version`, `conn_status`, `conn_how_disconnect`) VALUES + (17, 1, 0, '', 0, 1610512568, 0, '0.0.0', '1.0', '1', 0, 0); +INSERT INTO `conn_main` (`conn_id`, `conn_server`, `conn_auth`, `conn_name`, `conn_ip`, `conn_when_connect`, `conn_when_disconnect`, `conn_client_version`, `conn_script_version`, `conn_game_version`, `conn_status`, `conn_how_disconnect`) VALUES + (18, 1, 0, '', 0, 1610512769, 0, '0.0.0', '1.0', '1', 0, 0); +INSERT INTO `conn_main` (`conn_id`, `conn_server`, `conn_auth`, `conn_name`, `conn_ip`, `conn_when_connect`, `conn_when_disconnect`, `conn_client_version`, `conn_script_version`, `conn_game_version`, `conn_status`, `conn_how_disconnect`) VALUES + (19, 1, 0, '', 0, 1610512882, 0, '0.0.0', '1.0', '1', 0, 0); +INSERT INTO `conn_main` (`conn_id`, `conn_server`, `conn_auth`, `conn_name`, `conn_ip`, `conn_when_connect`, `conn_when_disconnect`, `conn_client_version`, `conn_script_version`, `conn_game_version`, `conn_status`, `conn_how_disconnect`) VALUES + (20, 1, 0, '', 0, 1610513047, 0, '0.0.0', '1.0', '1', 0, 0); +INSERT INTO `conn_main` (`conn_id`, `conn_server`, `conn_auth`, `conn_name`, `conn_ip`, `conn_when_connect`, `conn_when_disconnect`, `conn_client_version`, `conn_script_version`, `conn_game_version`, `conn_status`, `conn_how_disconnect`) VALUES + (21, 1, 0, '', 0, 1610513134, 0, '0.0.0', '1.0', '1', 0, 0); +INSERT INTO `conn_main` (`conn_id`, `conn_server`, `conn_auth`, `conn_name`, `conn_ip`, `conn_when_connect`, `conn_when_disconnect`, `conn_client_version`, `conn_script_version`, `conn_game_version`, `conn_status`, `conn_how_disconnect`) VALUES + (22, 1, 0, '', 0, 1610513285, 0, '0.0.0', '1.0', '1', 0, 0); +INSERT INTO `conn_main` (`conn_id`, `conn_server`, `conn_auth`, `conn_name`, `conn_ip`, `conn_when_connect`, `conn_when_disconnect`, `conn_client_version`, `conn_script_version`, `conn_game_version`, `conn_status`, `conn_how_disconnect`) VALUES + (23, 1, 0, '', 0, 1610513330, 0, '0.0.0', '1.0', '1', 0, 0); +INSERT INTO `conn_main` (`conn_id`, `conn_server`, `conn_auth`, `conn_name`, `conn_ip`, `conn_when_connect`, `conn_when_disconnect`, `conn_client_version`, `conn_script_version`, `conn_game_version`, `conn_status`, `conn_how_disconnect`) VALUES + (24, 1, 0, '', 0, 1610513493, 0, '0.0.0', '1.0', '1', 0, 0); +INSERT INTO `conn_main` (`conn_id`, `conn_server`, `conn_auth`, `conn_name`, `conn_ip`, `conn_when_connect`, `conn_when_disconnect`, `conn_client_version`, `conn_script_version`, `conn_game_version`, `conn_status`, `conn_how_disconnect`) VALUES + (25, 1, 0, '', 0, 1610513768, 0, '0.0.0', '1.0', '1', 0, 0); +INSERT INTO `conn_main` (`conn_id`, `conn_server`, `conn_auth`, `conn_name`, `conn_ip`, `conn_when_connect`, `conn_when_disconnect`, `conn_client_version`, `conn_script_version`, `conn_game_version`, `conn_status`, `conn_how_disconnect`) VALUES + (26, 1, 0, '', 0, 1610513939, 0, '0.0.0', '1.0', '1', 0, 0); +INSERT INTO `conn_main` (`conn_id`, `conn_server`, `conn_auth`, `conn_name`, `conn_ip`, `conn_when_connect`, `conn_when_disconnect`, `conn_client_version`, `conn_script_version`, `conn_game_version`, `conn_status`, `conn_how_disconnect`) VALUES + (27, 1, 0, '', 0, 1610514199, 0, '0.0.0', '1.0', '1', 0, 0); +INSERT INTO `conn_main` (`conn_id`, `conn_server`, `conn_auth`, `conn_name`, `conn_ip`, `conn_when_connect`, `conn_when_disconnect`, `conn_client_version`, `conn_script_version`, `conn_game_version`, `conn_status`, `conn_how_disconnect`) VALUES + (28, 1, 0, '', 0, 1610515759, 0, '0.0.0', '1.0', '1', 0, 0); +INSERT INTO `conn_main` (`conn_id`, `conn_server`, `conn_auth`, `conn_name`, `conn_ip`, `conn_when_connect`, `conn_when_disconnect`, `conn_client_version`, `conn_script_version`, `conn_game_version`, `conn_status`, `conn_how_disconnect`) VALUES + (29, 1, 0, '', 0, 1610517101, 0, '0.0.0', '1.0', '1', 0, 0); +INSERT INTO `conn_main` (`conn_id`, `conn_server`, `conn_auth`, `conn_name`, `conn_ip`, `conn_when_connect`, `conn_when_disconnect`, `conn_client_version`, `conn_script_version`, `conn_game_version`, `conn_status`, `conn_how_disconnect`) VALUES + (30, 4, 0, '', 0, 1610552373, 0, '0.0.0', '1.0', '4', 0, 0); +INSERT INTO `conn_main` (`conn_id`, `conn_server`, `conn_auth`, `conn_name`, `conn_ip`, `conn_when_connect`, `conn_when_disconnect`, `conn_client_version`, `conn_script_version`, `conn_game_version`, `conn_status`, `conn_how_disconnect`) VALUES + (31, 4, 0, '', 0, 1610557867, 0, '0.0.0', '1.0', '4', 0, 0); +INSERT INTO `conn_main` (`conn_id`, `conn_server`, `conn_auth`, `conn_name`, `conn_ip`, `conn_when_connect`, `conn_when_disconnect`, `conn_client_version`, `conn_script_version`, `conn_game_version`, `conn_status`, `conn_how_disconnect`) VALUES + (32, 4, 0, '', 0, 1610558535, 0, '0.0.0', '1.0', '4', 0, 0); +INSERT INTO `conn_main` (`conn_id`, `conn_server`, `conn_auth`, `conn_name`, `conn_ip`, `conn_when_connect`, `conn_when_disconnect`, `conn_client_version`, `conn_script_version`, `conn_game_version`, `conn_status`, `conn_how_disconnect`) VALUES + (33, 4, 0, '', 0, 1610559558, 0, '0.0.0', '1.0', '4', 0, 0); +INSERT INTO `conn_main` (`conn_id`, `conn_server`, `conn_auth`, `conn_name`, `conn_ip`, `conn_when_connect`, `conn_when_disconnect`, `conn_client_version`, `conn_script_version`, `conn_game_version`, `conn_status`, `conn_how_disconnect`) VALUES + (34, 4, 0, '', 0, 1610559578, 0, '0.0.0', '1.0', '4', 0, 0); +INSERT INTO `conn_main` (`conn_id`, `conn_server`, `conn_auth`, `conn_name`, `conn_ip`, `conn_when_connect`, `conn_when_disconnect`, `conn_client_version`, `conn_script_version`, `conn_game_version`, `conn_status`, `conn_how_disconnect`) VALUES + (35, 4, 0, '', 0, 1610559860, 0, '0.0.0', '1.0', '4', 0, 0); +INSERT INTO `conn_main` (`conn_id`, `conn_server`, `conn_auth`, `conn_name`, `conn_ip`, `conn_when_connect`, `conn_when_disconnect`, `conn_client_version`, `conn_script_version`, `conn_game_version`, `conn_status`, `conn_how_disconnect`) VALUES + (36, 4, 0, '', 0, 1610559921, 0, '0.0.0', '1.0', '4', 0, 0); +INSERT INTO `conn_main` (`conn_id`, `conn_server`, `conn_auth`, `conn_name`, `conn_ip`, `conn_when_connect`, `conn_when_disconnect`, `conn_client_version`, `conn_script_version`, `conn_game_version`, `conn_status`, `conn_how_disconnect`) VALUES + (37, 4, 0, '', 0, 1610560096, 0, '0.0.0', '1.0', '4', 0, 0); +INSERT INTO `conn_main` (`conn_id`, `conn_server`, `conn_auth`, `conn_name`, `conn_ip`, `conn_when_connect`, `conn_when_disconnect`, `conn_client_version`, `conn_script_version`, `conn_game_version`, `conn_status`, `conn_how_disconnect`) VALUES + (38, 4, 0, '', 0, 1610560218, 0, '0.0.0', '1.0', '4', 0, 0); +INSERT INTO `conn_main` (`conn_id`, `conn_server`, `conn_auth`, `conn_name`, `conn_ip`, `conn_when_connect`, `conn_when_disconnect`, `conn_client_version`, `conn_script_version`, `conn_game_version`, `conn_status`, `conn_how_disconnect`) VALUES + (39, 4, 0, '', 0, 1610560352, 0, '0.0.0', '1.0', '4', 0, 0); +INSERT INTO `conn_main` (`conn_id`, `conn_server`, `conn_auth`, `conn_name`, `conn_ip`, `conn_when_connect`, `conn_when_disconnect`, `conn_client_version`, `conn_script_version`, `conn_game_version`, `conn_status`, `conn_how_disconnect`) VALUES + (40, 4, 0, '', 0, 1610560446, 0, '0.0.0', '1.0', '4', 0, 0); +INSERT INTO `conn_main` (`conn_id`, `conn_server`, `conn_auth`, `conn_name`, `conn_ip`, `conn_when_connect`, `conn_when_disconnect`, `conn_client_version`, `conn_script_version`, `conn_game_version`, `conn_status`, `conn_how_disconnect`) VALUES + (41, 4, 0, '', 0, 1610560499, 0, '0.0.0', '1.0', '4', 0, 0); +INSERT INTO `conn_main` (`conn_id`, `conn_server`, `conn_auth`, `conn_name`, `conn_ip`, `conn_when_connect`, `conn_when_disconnect`, `conn_client_version`, `conn_script_version`, `conn_game_version`, `conn_status`, `conn_how_disconnect`) VALUES + (42, 4, 0, '', 0, 1610560716, 0, '0.0.0', '1.0', '4', 0, 0); +INSERT INTO `conn_main` (`conn_id`, `conn_server`, `conn_auth`, `conn_name`, `conn_ip`, `conn_when_connect`, `conn_when_disconnect`, `conn_client_version`, `conn_script_version`, `conn_game_version`, `conn_status`, `conn_how_disconnect`) VALUES + (43, 4, 0, '', 0, 1610560789, 0, '0.0.0', '1.0', '4', 0, 0); +INSERT INTO `conn_main` (`conn_id`, `conn_server`, `conn_auth`, `conn_name`, `conn_ip`, `conn_when_connect`, `conn_when_disconnect`, `conn_client_version`, `conn_script_version`, `conn_game_version`, `conn_status`, `conn_how_disconnect`) VALUES + (44, 4, 0, '', 0, 1610586179, 0, '0.0.0', '1.0', '4', 0, 0); +INSERT INTO `conn_main` (`conn_id`, `conn_server`, `conn_auth`, `conn_name`, `conn_ip`, `conn_when_connect`, `conn_when_disconnect`, `conn_client_version`, `conn_script_version`, `conn_game_version`, `conn_status`, `conn_how_disconnect`) VALUES + (45, 4, 0, '', 0, 1610586449, 0, '0.0.0', '1.0', '4', 0, 0); +INSERT INTO `conn_main` (`conn_id`, `conn_server`, `conn_auth`, `conn_name`, `conn_ip`, `conn_when_connect`, `conn_when_disconnect`, `conn_client_version`, `conn_script_version`, `conn_game_version`, `conn_status`, `conn_how_disconnect`) VALUES + (46, 4, 0, '', 0, 1610586718, 0, '0.0.0', '1.0', '4', 0, 0); +INSERT INTO `conn_main` (`conn_id`, `conn_server`, `conn_auth`, `conn_name`, `conn_ip`, `conn_when_connect`, `conn_when_disconnect`, `conn_client_version`, `conn_script_version`, `conn_game_version`, `conn_status`, `conn_how_disconnect`) VALUES + (47, 4, 0, '', 0, 1610587088, 0, '0.0.0', '1.0', '4', 0, 0); +INSERT INTO `conn_main` (`conn_id`, `conn_server`, `conn_auth`, `conn_name`, `conn_ip`, `conn_when_connect`, `conn_when_disconnect`, `conn_client_version`, `conn_script_version`, `conn_game_version`, `conn_status`, `conn_how_disconnect`) VALUES + (48, 4, 0, '', 0, 1610587206, 0, '0.0.0', '1.0', '4', 0, 0); +INSERT INTO `conn_main` (`conn_id`, `conn_server`, `conn_auth`, `conn_name`, `conn_ip`, `conn_when_connect`, `conn_when_disconnect`, `conn_client_version`, `conn_script_version`, `conn_game_version`, `conn_status`, `conn_how_disconnect`) VALUES + (49, 4, 0, '', 0, 1610587316, 0, '0.0.0', '1.0', '4', 0, 0); +INSERT INTO `conn_main` (`conn_id`, `conn_server`, `conn_auth`, `conn_name`, `conn_ip`, `conn_when_connect`, `conn_when_disconnect`, `conn_client_version`, `conn_script_version`, `conn_game_version`, `conn_status`, `conn_how_disconnect`) VALUES + (50, 4, 0, '', 0, 1610587423, 0, '0.0.0', '1.0', '4', 0, 0); +INSERT INTO `conn_main` (`conn_id`, `conn_server`, `conn_auth`, `conn_name`, `conn_ip`, `conn_when_connect`, `conn_when_disconnect`, `conn_client_version`, `conn_script_version`, `conn_game_version`, `conn_status`, `conn_how_disconnect`) VALUES + (51, 4, 0, '', 0, 1610587518, 0, '0.0.0', '1.0', '4', 0, 0); +INSERT INTO `conn_main` (`conn_id`, `conn_server`, `conn_auth`, `conn_name`, `conn_ip`, `conn_when_connect`, `conn_when_disconnect`, `conn_client_version`, `conn_script_version`, `conn_game_version`, `conn_status`, `conn_how_disconnect`) VALUES + (52, 4, 0, '', 0, 1610587819, 0, '0.0.0', '1.0', '4', 0, 0); +INSERT INTO `conn_main` (`conn_id`, `conn_server`, `conn_auth`, `conn_name`, `conn_ip`, `conn_when_connect`, `conn_when_disconnect`, `conn_client_version`, `conn_script_version`, `conn_game_version`, `conn_status`, `conn_how_disconnect`) VALUES + (53, 4, 0, '', 0, 1610588141, 0, '0.0.0', '1.0', '4', 0, 0); +INSERT INTO `conn_main` (`conn_id`, `conn_server`, `conn_auth`, `conn_name`, `conn_ip`, `conn_when_connect`, `conn_when_disconnect`, `conn_client_version`, `conn_script_version`, `conn_game_version`, `conn_status`, `conn_how_disconnect`) VALUES + (54, 4, 0, '', 0, 1610588705, 0, '0.0.0', '1.0', '4', 0, 0); +INSERT INTO `conn_main` (`conn_id`, `conn_server`, `conn_auth`, `conn_name`, `conn_ip`, `conn_when_connect`, `conn_when_disconnect`, `conn_client_version`, `conn_script_version`, `conn_game_version`, `conn_status`, `conn_how_disconnect`) VALUES + (55, 4, 0, '', 0, 1610588809, 0, '0.0.0', '1.0', '4', 0, 0); +INSERT INTO `conn_main` (`conn_id`, `conn_server`, `conn_auth`, `conn_name`, `conn_ip`, `conn_when_connect`, `conn_when_disconnect`, `conn_client_version`, `conn_script_version`, `conn_game_version`, `conn_status`, `conn_how_disconnect`) VALUES + (56, 4, 0, '', 0, 1610589373, 0, '0.0.0', '1.0', '4', 0, 0); +INSERT INTO `conn_main` (`conn_id`, `conn_server`, `conn_auth`, `conn_name`, `conn_ip`, `conn_when_connect`, `conn_when_disconnect`, `conn_client_version`, `conn_script_version`, `conn_game_version`, `conn_status`, `conn_how_disconnect`) VALUES + (57, 4, 0, '', 0, 1610590545, 0, '0.0.0', '1.0', '4', 0, 0); +INSERT INTO `conn_main` (`conn_id`, `conn_server`, `conn_auth`, `conn_name`, `conn_ip`, `conn_when_connect`, `conn_when_disconnect`, `conn_client_version`, `conn_script_version`, `conn_game_version`, `conn_status`, `conn_how_disconnect`) VALUES + (58, 4, 0, '', 0, 1610591749, 0, '0.0.0', '1.0', '4', 0, 0); +INSERT INTO `conn_main` (`conn_id`, `conn_server`, `conn_auth`, `conn_name`, `conn_ip`, `conn_when_connect`, `conn_when_disconnect`, `conn_client_version`, `conn_script_version`, `conn_game_version`, `conn_status`, `conn_how_disconnect`) VALUES + (59, 4, 0, '', 0, 1610591858, 0, '0.0.0', '1.0', '4', 0, 0); +INSERT INTO `conn_main` (`conn_id`, `conn_server`, `conn_auth`, `conn_name`, `conn_ip`, `conn_when_connect`, `conn_when_disconnect`, `conn_client_version`, `conn_script_version`, `conn_game_version`, `conn_status`, `conn_how_disconnect`) VALUES + (60, 4, 0, '', 0, 1610591973, 0, '0.0.0', '1.0', '4', 0, 0); +INSERT INTO `conn_main` (`conn_id`, `conn_server`, `conn_auth`, `conn_name`, `conn_ip`, `conn_when_connect`, `conn_when_disconnect`, `conn_client_version`, `conn_script_version`, `conn_game_version`, `conn_status`, `conn_how_disconnect`) VALUES + (61, 4, 0, '', 0, 1610592007, 0, '0.0.0', '1.0', '4', 0, 0); +INSERT INTO `conn_main` (`conn_id`, `conn_server`, `conn_auth`, `conn_name`, `conn_ip`, `conn_when_connect`, `conn_when_disconnect`, `conn_client_version`, `conn_script_version`, `conn_game_version`, `conn_status`, `conn_how_disconnect`) VALUES + (62, 4, 0, '', 0, 1610594821, 0, '0.0.0', '1.0', '4', 0, 0); +INSERT INTO `conn_main` (`conn_id`, `conn_server`, `conn_auth`, `conn_name`, `conn_ip`, `conn_when_connect`, `conn_when_disconnect`, `conn_client_version`, `conn_script_version`, `conn_game_version`, `conn_status`, `conn_how_disconnect`) VALUES + (63, 4, 0, '', 0, 1610595971, 0, '0.0.0', '1.0', '4', 0, 0); +INSERT INTO `conn_main` (`conn_id`, `conn_server`, `conn_auth`, `conn_name`, `conn_ip`, `conn_when_connect`, `conn_when_disconnect`, `conn_client_version`, `conn_script_version`, `conn_game_version`, `conn_status`, `conn_how_disconnect`) VALUES + (64, 4, 0, '', 0, 1610596043, 0, '0.0.0', '1.0', '4', 0, 0); +INSERT INTO `conn_main` (`conn_id`, `conn_server`, `conn_auth`, `conn_name`, `conn_ip`, `conn_when_connect`, `conn_when_disconnect`, `conn_client_version`, `conn_script_version`, `conn_game_version`, `conn_status`, `conn_how_disconnect`) VALUES + (65, 4, 0, '', 0, 1610596079, 0, '0.0.0', '1.0', '4', 0, 0); +INSERT INTO `conn_main` (`conn_id`, `conn_server`, `conn_auth`, `conn_name`, `conn_ip`, `conn_when_connect`, `conn_when_disconnect`, `conn_client_version`, `conn_script_version`, `conn_game_version`, `conn_status`, `conn_how_disconnect`) VALUES + (66, 4, 0, '', 0, 1610596095, 0, '0.0.0', '1.0', '4', 0, 0); +INSERT INTO `conn_main` (`conn_id`, `conn_server`, `conn_auth`, `conn_name`, `conn_ip`, `conn_when_connect`, `conn_when_disconnect`, `conn_client_version`, `conn_script_version`, `conn_game_version`, `conn_status`, `conn_how_disconnect`) VALUES + (67, 4, 0, '', 0, 1610596174, 0, '0.0.0', '1.0', '4', 0, 0); +INSERT INTO `conn_main` (`conn_id`, `conn_server`, `conn_auth`, `conn_name`, `conn_ip`, `conn_when_connect`, `conn_when_disconnect`, `conn_client_version`, `conn_script_version`, `conn_game_version`, `conn_status`, `conn_how_disconnect`) VALUES + (68, 4, 0, '', 0, 1610596215, 0, '0.0.0', '1.0', '4', 0, 0); +INSERT INTO `conn_main` (`conn_id`, `conn_server`, `conn_auth`, `conn_name`, `conn_ip`, `conn_when_connect`, `conn_when_disconnect`, `conn_client_version`, `conn_script_version`, `conn_game_version`, `conn_status`, `conn_how_disconnect`) VALUES + (69, 4, 0, '', 0, 1610596260, 0, '0.0.0', '1.0', '4', 0, 0); +INSERT INTO `conn_main` (`conn_id`, `conn_server`, `conn_auth`, `conn_name`, `conn_ip`, `conn_when_connect`, `conn_when_disconnect`, `conn_client_version`, `conn_script_version`, `conn_game_version`, `conn_status`, `conn_how_disconnect`) VALUES + (70, 4, 0, '', 0, 1610596614, 0, '0.0.0', '1.0', '4', 0, 0); +INSERT INTO `conn_main` (`conn_id`, `conn_server`, `conn_auth`, `conn_name`, `conn_ip`, `conn_when_connect`, `conn_when_disconnect`, `conn_client_version`, `conn_script_version`, `conn_game_version`, `conn_status`, `conn_how_disconnect`) VALUES + (71, 4, 0, '', 0, 1610596707, 0, '0.0.0', '1.0', '4', 0, 0); +INSERT INTO `conn_main` (`conn_id`, `conn_server`, `conn_auth`, `conn_name`, `conn_ip`, `conn_when_connect`, `conn_when_disconnect`, `conn_client_version`, `conn_script_version`, `conn_game_version`, `conn_status`, `conn_how_disconnect`) VALUES + (72, 4, 0, '', 0, 1610596784, 0, '0.0.0', '1.0', '4', 0, 0); +INSERT INTO `conn_main` (`conn_id`, `conn_server`, `conn_auth`, `conn_name`, `conn_ip`, `conn_when_connect`, `conn_when_disconnect`, `conn_client_version`, `conn_script_version`, `conn_game_version`, `conn_status`, `conn_how_disconnect`) VALUES + (73, 4, 0, '', 0, 1610596864, 0, '0.0.0', '1.0', '4', 0, 0); +INSERT INTO `conn_main` (`conn_id`, `conn_server`, `conn_auth`, `conn_name`, `conn_ip`, `conn_when_connect`, `conn_when_disconnect`, `conn_client_version`, `conn_script_version`, `conn_game_version`, `conn_status`, `conn_how_disconnect`) VALUES + (74, 4, 0, '', 0, 1610681204, 0, '0.0.0', '1.0', '4', 0, 0); +INSERT INTO `conn_main` (`conn_id`, `conn_server`, `conn_auth`, `conn_name`, `conn_ip`, `conn_when_connect`, `conn_when_disconnect`, `conn_client_version`, `conn_script_version`, `conn_game_version`, `conn_status`, `conn_how_disconnect`) VALUES + (75, 4, 0, '', 0, 1610681333, 0, '0.0.0', '1.0', '4', 0, 0); +INSERT INTO `conn_main` (`conn_id`, `conn_server`, `conn_auth`, `conn_name`, `conn_ip`, `conn_when_connect`, `conn_when_disconnect`, `conn_client_version`, `conn_script_version`, `conn_game_version`, `conn_status`, `conn_how_disconnect`) VALUES + (76, 4, 0, '', 0, 1610681619, 0, '0.0.0', '1.0', '4', 0, 0); +INSERT INTO `conn_main` (`conn_id`, `conn_server`, `conn_auth`, `conn_name`, `conn_ip`, `conn_when_connect`, `conn_when_disconnect`, `conn_client_version`, `conn_script_version`, `conn_game_version`, `conn_status`, `conn_how_disconnect`) VALUES + (77, 2, 0, '', 0, 1610681680, 0, '0.0.0', '1.0', '2', 0, 0); +INSERT INTO `conn_main` (`conn_id`, `conn_server`, `conn_auth`, `conn_name`, `conn_ip`, `conn_when_connect`, `conn_when_disconnect`, `conn_client_version`, `conn_script_version`, `conn_game_version`, `conn_status`, `conn_how_disconnect`) VALUES + (78, 2, 0, '', 0, 1610681827, 0, '0.0.0', '1.0', '2', 0, 0); +INSERT INTO `conn_main` (`conn_id`, `conn_server`, `conn_auth`, `conn_name`, `conn_ip`, `conn_when_connect`, `conn_when_disconnect`, `conn_client_version`, `conn_script_version`, `conn_game_version`, `conn_status`, `conn_how_disconnect`) VALUES + (79, 2, 0, '', 0, 1610681926, 0, '0.0.0', '1.0', '2', 0, 0); +INSERT INTO `conn_main` (`conn_id`, `conn_server`, `conn_auth`, `conn_name`, `conn_ip`, `conn_when_connect`, `conn_when_disconnect`, `conn_client_version`, `conn_script_version`, `conn_game_version`, `conn_status`, `conn_how_disconnect`) VALUES + (80, 2, 0, '', 0, 1610681975, 0, '0.0.0', '1.0', '2', 0, 0); +INSERT INTO `conn_main` (`conn_id`, `conn_server`, `conn_auth`, `conn_name`, `conn_ip`, `conn_when_connect`, `conn_when_disconnect`, `conn_client_version`, `conn_script_version`, `conn_game_version`, `conn_status`, `conn_how_disconnect`) VALUES + (81, 2, 0, '', 0, 1610682092, 0, '0.0.0', '1.0', '2', 0, 0); +INSERT INTO `conn_main` (`conn_id`, `conn_server`, `conn_auth`, `conn_name`, `conn_ip`, `conn_when_connect`, `conn_when_disconnect`, `conn_client_version`, `conn_script_version`, `conn_game_version`, `conn_status`, `conn_how_disconnect`) VALUES + (82, 2, 0, '', 0, 1610682202, 0, '0.0.0', '1.0', '2', 0, 0); +INSERT INTO `conn_main` (`conn_id`, `conn_server`, `conn_auth`, `conn_name`, `conn_ip`, `conn_when_connect`, `conn_when_disconnect`, `conn_client_version`, `conn_script_version`, `conn_game_version`, `conn_status`, `conn_how_disconnect`) VALUES + (83, 2, 0, '', 0, 1610682416, 0, '0.0.0', '1.0', '2', 0, 0); +INSERT INTO `conn_main` (`conn_id`, `conn_server`, `conn_auth`, `conn_name`, `conn_ip`, `conn_when_connect`, `conn_when_disconnect`, `conn_client_version`, `conn_script_version`, `conn_game_version`, `conn_status`, `conn_how_disconnect`) VALUES + (84, 2, 0, '', 0, 1610683636, 0, '0.0.0', '1.0', '2', 0, 0); +INSERT INTO `conn_main` (`conn_id`, `conn_server`, `conn_auth`, `conn_name`, `conn_ip`, `conn_when_connect`, `conn_when_disconnect`, `conn_client_version`, `conn_script_version`, `conn_game_version`, `conn_status`, `conn_how_disconnect`) VALUES + (85, 2, 0, '', 0, 1610684059, 0, '0.0.0', '1.0', '2', 0, 0); +INSERT INTO `conn_main` (`conn_id`, `conn_server`, `conn_auth`, `conn_name`, `conn_ip`, `conn_when_connect`, `conn_when_disconnect`, `conn_client_version`, `conn_script_version`, `conn_game_version`, `conn_status`, `conn_how_disconnect`) VALUES + (86, 2, 0, '', 0, 1610684118, 0, '0.0.0', '1.0', '2', 0, 0); +INSERT INTO `conn_main` (`conn_id`, `conn_server`, `conn_auth`, `conn_name`, `conn_ip`, `conn_when_connect`, `conn_when_disconnect`, `conn_client_version`, `conn_script_version`, `conn_game_version`, `conn_status`, `conn_how_disconnect`) VALUES + (87, 2, 0, '', 0, 1610684181, 0, '0.0.0', '1.0', '2', 0, 0); +INSERT INTO `conn_main` (`conn_id`, `conn_server`, `conn_auth`, `conn_name`, `conn_ip`, `conn_when_connect`, `conn_when_disconnect`, `conn_client_version`, `conn_script_version`, `conn_game_version`, `conn_status`, `conn_how_disconnect`) VALUES + (88, 2, 0, '', 0, 1610684395, 0, '0.0.0', '1.0', '2', 0, 0); +INSERT INTO `conn_main` (`conn_id`, `conn_server`, `conn_auth`, `conn_name`, `conn_ip`, `conn_when_connect`, `conn_when_disconnect`, `conn_client_version`, `conn_script_version`, `conn_game_version`, `conn_status`, `conn_how_disconnect`) VALUES + (89, 2, 0, '', 0, 1610684474, 0, '0.0.0', '1.0', '2', 0, 0); +INSERT INTO `conn_main` (`conn_id`, `conn_server`, `conn_auth`, `conn_name`, `conn_ip`, `conn_when_connect`, `conn_when_disconnect`, `conn_client_version`, `conn_script_version`, `conn_game_version`, `conn_status`, `conn_how_disconnect`) VALUES + (90, 2, 0, '', 0, 1610684735, 0, '0.0.0', '1.0', '2', 0, 0); +INSERT INTO `conn_main` (`conn_id`, `conn_server`, `conn_auth`, `conn_name`, `conn_ip`, `conn_when_connect`, `conn_when_disconnect`, `conn_client_version`, `conn_script_version`, `conn_game_version`, `conn_status`, `conn_how_disconnect`) VALUES + (91, 2, 0, '', 0, 1610684790, 0, '0.0.0', '1.0', '2', 0, 0); +INSERT INTO `conn_main` (`conn_id`, `conn_server`, `conn_auth`, `conn_name`, `conn_ip`, `conn_when_connect`, `conn_when_disconnect`, `conn_client_version`, `conn_script_version`, `conn_game_version`, `conn_status`, `conn_how_disconnect`) VALUES + (92, 2, 0, '', 0, 1610684974, 0, '0.0.0', '1.0', '2', 0, 0); +INSERT INTO `conn_main` (`conn_id`, `conn_server`, `conn_auth`, `conn_name`, `conn_ip`, `conn_when_connect`, `conn_when_disconnect`, `conn_client_version`, `conn_script_version`, `conn_game_version`, `conn_status`, `conn_how_disconnect`) VALUES + (93, 2, 0, '', 0, 1610685330, 0, '0.0.0', '1.0', '2', 0, 0); +INSERT INTO `conn_main` (`conn_id`, `conn_server`, `conn_auth`, `conn_name`, `conn_ip`, `conn_when_connect`, `conn_when_disconnect`, `conn_client_version`, `conn_script_version`, `conn_game_version`, `conn_status`, `conn_how_disconnect`) VALUES + (94, 2, 0, '', 0, 1610685483, 0, '0.0.0', '1.0', '2', 0, 0); +INSERT INTO `conn_main` (`conn_id`, `conn_server`, `conn_auth`, `conn_name`, `conn_ip`, `conn_when_connect`, `conn_when_disconnect`, `conn_client_version`, `conn_script_version`, `conn_game_version`, `conn_status`, `conn_how_disconnect`) VALUES + (95, 2, 0, '', 0, 1610685742, 0, '0.0.0', '1.0', '2', 0, 0); +INSERT INTO `conn_main` (`conn_id`, `conn_server`, `conn_auth`, `conn_name`, `conn_ip`, `conn_when_connect`, `conn_when_disconnect`, `conn_client_version`, `conn_script_version`, `conn_game_version`, `conn_status`, `conn_how_disconnect`) VALUES + (96, 2, 0, '', 0, 1610686211, 0, '0.0.0', '1.0', '2', 0, 0); +INSERT INTO `conn_main` (`conn_id`, `conn_server`, `conn_auth`, `conn_name`, `conn_ip`, `conn_when_connect`, `conn_when_disconnect`, `conn_client_version`, `conn_script_version`, `conn_game_version`, `conn_status`, `conn_how_disconnect`) VALUES + (97, 2, 0, '', 0, 1610686346, 0, '0.0.0', '1.0', '2', 0, 0); +INSERT INTO `conn_main` (`conn_id`, `conn_server`, `conn_auth`, `conn_name`, `conn_ip`, `conn_when_connect`, `conn_when_disconnect`, `conn_client_version`, `conn_script_version`, `conn_game_version`, `conn_status`, `conn_how_disconnect`) VALUES + (98, 2, 0, '', 0, 1610686731, 0, '0.0.0', '1.0', '2', 0, 0); +INSERT INTO `conn_main` (`conn_id`, `conn_server`, `conn_auth`, `conn_name`, `conn_ip`, `conn_when_connect`, `conn_when_disconnect`, `conn_client_version`, `conn_script_version`, `conn_game_version`, `conn_status`, `conn_how_disconnect`) VALUES + (99, 1, 0, '', 0, 1610686807, 0, '0.0.0', '1.0', '1', 0, 0); +INSERT INTO `conn_main` (`conn_id`, `conn_server`, `conn_auth`, `conn_name`, `conn_ip`, `conn_when_connect`, `conn_when_disconnect`, `conn_client_version`, `conn_script_version`, `conn_game_version`, `conn_status`, `conn_how_disconnect`) VALUES + (100, 1, 0, '', 0, 1610687640, 0, '0.0.0', '1.0', '1', 0, 0); +INSERT INTO `conn_main` (`conn_id`, `conn_server`, `conn_auth`, `conn_name`, `conn_ip`, `conn_when_connect`, `conn_when_disconnect`, `conn_client_version`, `conn_script_version`, `conn_game_version`, `conn_status`, `conn_how_disconnect`) VALUES + (101, 1, 0, '', 0, 1610687929, 0, '0.0.0', '1.0', '1', 0, 0); +INSERT INTO `conn_main` (`conn_id`, `conn_server`, `conn_auth`, `conn_name`, `conn_ip`, `conn_when_connect`, `conn_when_disconnect`, `conn_client_version`, `conn_script_version`, `conn_game_version`, `conn_status`, `conn_how_disconnect`) VALUES + (102, 1, 0, '', 0, 1610687982, 0, '0.0.0', '1.0', '1', 0, 0); +INSERT INTO `conn_main` (`conn_id`, `conn_server`, `conn_auth`, `conn_name`, `conn_ip`, `conn_when_connect`, `conn_when_disconnect`, `conn_client_version`, `conn_script_version`, `conn_game_version`, `conn_status`, `conn_how_disconnect`) VALUES + (103, 1, 0, '', 0, 1610688147, 0, '0.0.0', '1.0', '1', 0, 0); +INSERT INTO `conn_main` (`conn_id`, `conn_server`, `conn_auth`, `conn_name`, `conn_ip`, `conn_when_connect`, `conn_when_disconnect`, `conn_client_version`, `conn_script_version`, `conn_game_version`, `conn_status`, `conn_how_disconnect`) VALUES + (104, 1, 0, '', 0, 1610703295, 0, '0.0.0', '1.0', '1', 0, 0); +INSERT INTO `conn_main` (`conn_id`, `conn_server`, `conn_auth`, `conn_name`, `conn_ip`, `conn_when_connect`, `conn_when_disconnect`, `conn_client_version`, `conn_script_version`, `conn_game_version`, `conn_status`, `conn_how_disconnect`) VALUES + (105, 4, 0, '', 0, 1610763477, 0, '0.0.0', '1.0', '4', 0, 0); +INSERT INTO `conn_main` (`conn_id`, `conn_server`, `conn_auth`, `conn_name`, `conn_ip`, `conn_when_connect`, `conn_when_disconnect`, `conn_client_version`, `conn_script_version`, `conn_game_version`, `conn_status`, `conn_how_disconnect`) VALUES + (106, 1, 0, '', 0, 1610763529, 0, '0.0.0', '1.0', '1', 0, 0); +INSERT INTO `conn_main` (`conn_id`, `conn_server`, `conn_auth`, `conn_name`, `conn_ip`, `conn_when_connect`, `conn_when_disconnect`, `conn_client_version`, `conn_script_version`, `conn_game_version`, `conn_status`, `conn_how_disconnect`) VALUES + (107, 1, 0, '', 0, 1610763627, 0, '0.0.0', '1.0', '1', 0, 0); +INSERT INTO `conn_main` (`conn_id`, `conn_server`, `conn_auth`, `conn_name`, `conn_ip`, `conn_when_connect`, `conn_when_disconnect`, `conn_client_version`, `conn_script_version`, `conn_game_version`, `conn_status`, `conn_how_disconnect`) VALUES + (108, 1, 0, '', 0, 1610763658, 0, '0.0.0', '1.0', '1', 0, 0); +INSERT INTO `conn_main` (`conn_id`, `conn_server`, `conn_auth`, `conn_name`, `conn_ip`, `conn_when_connect`, `conn_when_disconnect`, `conn_client_version`, `conn_script_version`, `conn_game_version`, `conn_status`, `conn_how_disconnect`) VALUES + (109, 1, 0, '', 0, 1610763709, 0, '0.0.0', '1.0', '1', 0, 0); +INSERT INTO `conn_main` (`conn_id`, `conn_server`, `conn_auth`, `conn_name`, `conn_ip`, `conn_when_connect`, `conn_when_disconnect`, `conn_client_version`, `conn_script_version`, `conn_game_version`, `conn_status`, `conn_how_disconnect`) VALUES + (110, 1, 0, '', 0, 1610763717, 0, '0.0.0', '1.0', '1', 0, 0); +INSERT INTO `conn_main` (`conn_id`, `conn_server`, `conn_auth`, `conn_name`, `conn_ip`, `conn_when_connect`, `conn_when_disconnect`, `conn_client_version`, `conn_script_version`, `conn_game_version`, `conn_status`, `conn_how_disconnect`) VALUES + (111, 1, 0, '', 0, 1610763986, 0, '0.0.0', '1.0', '1', 0, 0); +INSERT INTO `conn_main` (`conn_id`, `conn_server`, `conn_auth`, `conn_name`, `conn_ip`, `conn_when_connect`, `conn_when_disconnect`, `conn_client_version`, `conn_script_version`, `conn_game_version`, `conn_status`, `conn_how_disconnect`) VALUES + (112, 1, 0, '', 0, 1610764130, 0, '0.0.0', '1.0', '1', 0, 0); +INSERT INTO `conn_main` (`conn_id`, `conn_server`, `conn_auth`, `conn_name`, `conn_ip`, `conn_when_connect`, `conn_when_disconnect`, `conn_client_version`, `conn_script_version`, `conn_game_version`, `conn_status`, `conn_how_disconnect`) VALUES + (113, 1, 0, '', 0, 1610764299, 0, '0.0.0', '1.0', '1', 0, 0); +INSERT INTO `conn_main` (`conn_id`, `conn_server`, `conn_auth`, `conn_name`, `conn_ip`, `conn_when_connect`, `conn_when_disconnect`, `conn_client_version`, `conn_script_version`, `conn_game_version`, `conn_status`, `conn_how_disconnect`) VALUES + (114, 1, 0, '', 0, 1610764300, 0, '0.0.0', '1.0', '1', 0, 0); +INSERT INTO `conn_main` (`conn_id`, `conn_server`, `conn_auth`, `conn_name`, `conn_ip`, `conn_when_connect`, `conn_when_disconnect`, `conn_client_version`, `conn_script_version`, `conn_game_version`, `conn_status`, `conn_how_disconnect`) VALUES + (115, 1, 0, '', 0, 1610764395, 0, '0.0.0', '1.0', '1', 0, 0); +INSERT INTO `conn_main` (`conn_id`, `conn_server`, `conn_auth`, `conn_name`, `conn_ip`, `conn_when_connect`, `conn_when_disconnect`, `conn_client_version`, `conn_script_version`, `conn_game_version`, `conn_status`, `conn_how_disconnect`) VALUES + (116, 1, 0, '', 0, 1610765928, 0, '0.0.0', '1.0', '1', 0, 0); +INSERT INTO `conn_main` (`conn_id`, `conn_server`, `conn_auth`, `conn_name`, `conn_ip`, `conn_when_connect`, `conn_when_disconnect`, `conn_client_version`, `conn_script_version`, `conn_game_version`, `conn_status`, `conn_how_disconnect`) VALUES + (117, 1, 0, '', 0, 1610766643, 0, '0.0.0', '1.0', '1', 0, 0); +INSERT INTO `conn_main` (`conn_id`, `conn_server`, `conn_auth`, `conn_name`, `conn_ip`, `conn_when_connect`, `conn_when_disconnect`, `conn_client_version`, `conn_script_version`, `conn_game_version`, `conn_status`, `conn_how_disconnect`) VALUES + (118, 1, 0, '', 0, 1610791623, 0, '0.0.0', '1.0', '1', 0, 0); +INSERT INTO `conn_main` (`conn_id`, `conn_server`, `conn_auth`, `conn_name`, `conn_ip`, `conn_when_connect`, `conn_when_disconnect`, `conn_client_version`, `conn_script_version`, `conn_game_version`, `conn_status`, `conn_how_disconnect`) VALUES + (119, 1, 0, '', 0, 1610793652, 0, '0.0.0', '1.0', '1', 0, 0); +INSERT INTO `conn_main` (`conn_id`, `conn_server`, `conn_auth`, `conn_name`, `conn_ip`, `conn_when_connect`, `conn_when_disconnect`, `conn_client_version`, `conn_script_version`, `conn_game_version`, `conn_status`, `conn_how_disconnect`) VALUES + (120, 1, 0, '', 0, 1610793895, 0, '0.0.0', '1.0', '1', 0, 0); +INSERT INTO `conn_main` (`conn_id`, `conn_server`, `conn_auth`, `conn_name`, `conn_ip`, `conn_when_connect`, `conn_when_disconnect`, `conn_client_version`, `conn_script_version`, `conn_game_version`, `conn_status`, `conn_how_disconnect`) VALUES + (121, 1, 0, '', 0, 1610794031, 0, '0.0.0', '1.0', '1', 0, 0); +INSERT INTO `conn_main` (`conn_id`, `conn_server`, `conn_auth`, `conn_name`, `conn_ip`, `conn_when_connect`, `conn_when_disconnect`, `conn_client_version`, `conn_script_version`, `conn_game_version`, `conn_status`, `conn_how_disconnect`) VALUES + (122, 1, 0, '', 0, 1610794276, 0, '0.0.0', '1.0', '1', 0, 0); +INSERT INTO `conn_main` (`conn_id`, `conn_server`, `conn_auth`, `conn_name`, `conn_ip`, `conn_when_connect`, `conn_when_disconnect`, `conn_client_version`, `conn_script_version`, `conn_game_version`, `conn_status`, `conn_how_disconnect`) VALUES + (123, 1, 0, '', 0, 1610795995, 0, '0.0.0', '1.0', '1', 0, 0); +INSERT INTO `conn_main` (`conn_id`, `conn_server`, `conn_auth`, `conn_name`, `conn_ip`, `conn_when_connect`, `conn_when_disconnect`, `conn_client_version`, `conn_script_version`, `conn_game_version`, `conn_status`, `conn_how_disconnect`) VALUES + (124, 1, 0, '', 0, 1610796192, 0, '0.0.0', '1.0', '1', 0, 0); +INSERT INTO `conn_main` (`conn_id`, `conn_server`, `conn_auth`, `conn_name`, `conn_ip`, `conn_when_connect`, `conn_when_disconnect`, `conn_client_version`, `conn_script_version`, `conn_game_version`, `conn_status`, `conn_how_disconnect`) VALUES + (125, 1, 0, '', 0, 1610796237, 0, '0.0.0', '1.0', '1', 0, 0); +INSERT INTO `conn_main` (`conn_id`, `conn_server`, `conn_auth`, `conn_name`, `conn_ip`, `conn_when_connect`, `conn_when_disconnect`, `conn_client_version`, `conn_script_version`, `conn_game_version`, `conn_status`, `conn_how_disconnect`) VALUES + (126, 1, 0, '', 0, 1610796266, 0, '0.0.0', '1.0', '1', 0, 0); +INSERT INTO `conn_main` (`conn_id`, `conn_server`, `conn_auth`, `conn_name`, `conn_ip`, `conn_when_connect`, `conn_when_disconnect`, `conn_client_version`, `conn_script_version`, `conn_game_version`, `conn_status`, `conn_how_disconnect`) VALUES + (127, 1, 0, '', 0, 1610796314, 0, '0.0.0', '1.0', '1', 0, 0); +INSERT INTO `conn_main` (`conn_id`, `conn_server`, `conn_auth`, `conn_name`, `conn_ip`, `conn_when_connect`, `conn_when_disconnect`, `conn_client_version`, `conn_script_version`, `conn_game_version`, `conn_status`, `conn_how_disconnect`) VALUES + (128, 1, 0, '', 0, 1610796432, 0, '0.0.0', '1.0', '1', 0, 0); +INSERT INTO `conn_main` (`conn_id`, `conn_server`, `conn_auth`, `conn_name`, `conn_ip`, `conn_when_connect`, `conn_when_disconnect`, `conn_client_version`, `conn_script_version`, `conn_game_version`, `conn_status`, `conn_how_disconnect`) VALUES + (129, 1, 0, '', 0, 1610797161, 0, '0.0.0', '1.0', '1', 0, 0); +INSERT INTO `conn_main` (`conn_id`, `conn_server`, `conn_auth`, `conn_name`, `conn_ip`, `conn_when_connect`, `conn_when_disconnect`, `conn_client_version`, `conn_script_version`, `conn_game_version`, `conn_status`, `conn_how_disconnect`) VALUES + (130, 1, 0, '', 0, 1610797486, 0, '0.0.0', '1.0', '1', 0, 0); +INSERT INTO `conn_main` (`conn_id`, `conn_server`, `conn_auth`, `conn_name`, `conn_ip`, `conn_when_connect`, `conn_when_disconnect`, `conn_client_version`, `conn_script_version`, `conn_game_version`, `conn_status`, `conn_how_disconnect`) VALUES + (131, 1, 0, '', 0, 1610797702, 0, '0.0.0', '1.0', '1', 0, 0); +INSERT INTO `conn_main` (`conn_id`, `conn_server`, `conn_auth`, `conn_name`, `conn_ip`, `conn_when_connect`, `conn_when_disconnect`, `conn_client_version`, `conn_script_version`, `conn_game_version`, `conn_status`, `conn_how_disconnect`) VALUES + (132, 1, 0, '', 0, 1610797799, 0, '0.0.0', '1.0', '1', 0, 0); +INSERT INTO `conn_main` (`conn_id`, `conn_server`, `conn_auth`, `conn_name`, `conn_ip`, `conn_when_connect`, `conn_when_disconnect`, `conn_client_version`, `conn_script_version`, `conn_game_version`, `conn_status`, `conn_how_disconnect`) VALUES + (133, 4, 0, '', 0, 1611087900, 0, '0.0.0', '1.0', '4', 0, 0); +INSERT INTO `conn_main` (`conn_id`, `conn_server`, `conn_auth`, `conn_name`, `conn_ip`, `conn_when_connect`, `conn_when_disconnect`, `conn_client_version`, `conn_script_version`, `conn_game_version`, `conn_status`, `conn_how_disconnect`) VALUES + (134, 4, 0, '', 0, 1611088089, 0, '0.0.0', '1.0', '4', 0, 0); +INSERT INTO `conn_main` (`conn_id`, `conn_server`, `conn_auth`, `conn_name`, `conn_ip`, `conn_when_connect`, `conn_when_disconnect`, `conn_client_version`, `conn_script_version`, `conn_game_version`, `conn_status`, `conn_how_disconnect`) VALUES + (135, 4, 0, '', 0, 1611088324, 0, '0.0.0', '1.0', '4', 0, 0); +INSERT INTO `conn_main` (`conn_id`, `conn_server`, `conn_auth`, `conn_name`, `conn_ip`, `conn_when_connect`, `conn_when_disconnect`, `conn_client_version`, `conn_script_version`, `conn_game_version`, `conn_status`, `conn_how_disconnect`) VALUES + (136, 1, 0, '', 0, 1611226672, 0, '0.0.0', '1.0', '1', 0, 0); +INSERT INTO `conn_main` (`conn_id`, `conn_server`, `conn_auth`, `conn_name`, `conn_ip`, `conn_when_connect`, `conn_when_disconnect`, `conn_client_version`, `conn_script_version`, `conn_game_version`, `conn_status`, `conn_how_disconnect`) VALUES + (137, 1, 0, '', 0, 1611228627, 0, '0.0.0', '1.0', '1', 0, 0); +INSERT INTO `conn_main` (`conn_id`, `conn_server`, `conn_auth`, `conn_name`, `conn_ip`, `conn_when_connect`, `conn_when_disconnect`, `conn_client_version`, `conn_script_version`, `conn_game_version`, `conn_status`, `conn_how_disconnect`) VALUES + (138, 1, 0, '', 0, 1611229218, 0, '0.0.0', '1.0', '1', 0, 0); +INSERT INTO `conn_main` (`conn_id`, `conn_server`, `conn_auth`, `conn_name`, `conn_ip`, `conn_when_connect`, `conn_when_disconnect`, `conn_client_version`, `conn_script_version`, `conn_game_version`, `conn_status`, `conn_how_disconnect`) VALUES + (139, 1, 0, '', 0, 1611229506, 0, '0.0.0', '1.0', '1', 0, 0); +INSERT INTO `conn_main` (`conn_id`, `conn_server`, `conn_auth`, `conn_name`, `conn_ip`, `conn_when_connect`, `conn_when_disconnect`, `conn_client_version`, `conn_script_version`, `conn_game_version`, `conn_status`, `conn_how_disconnect`) VALUES + (140, 1, 0, '', 0, 1611229678, 0, '0.0.0', '1.0', '1', 0, 0); +INSERT INTO `conn_main` (`conn_id`, `conn_server`, `conn_auth`, `conn_name`, `conn_ip`, `conn_when_connect`, `conn_when_disconnect`, `conn_client_version`, `conn_script_version`, `conn_game_version`, `conn_status`, `conn_how_disconnect`) VALUES + (141, 1, 0, '', 0, 1611229962, 0, '0.0.0', '1.0', '1', 0, 0); +INSERT INTO `conn_main` (`conn_id`, `conn_server`, `conn_auth`, `conn_name`, `conn_ip`, `conn_when_connect`, `conn_when_disconnect`, `conn_client_version`, `conn_script_version`, `conn_game_version`, `conn_status`, `conn_how_disconnect`) VALUES + (142, 1, 0, '', 0, 1611230135, 0, '0.0.0', '1.0', '1', 0, 0); +INSERT INTO `conn_main` (`conn_id`, `conn_server`, `conn_auth`, `conn_name`, `conn_ip`, `conn_when_connect`, `conn_when_disconnect`, `conn_client_version`, `conn_script_version`, `conn_game_version`, `conn_status`, `conn_how_disconnect`) VALUES + (143, 1, 0, '', 0, 1611230212, 0, '0.0.0', '1.0', '1', 0, 0); +INSERT INTO `conn_main` (`conn_id`, `conn_server`, `conn_auth`, `conn_name`, `conn_ip`, `conn_when_connect`, `conn_when_disconnect`, `conn_client_version`, `conn_script_version`, `conn_game_version`, `conn_status`, `conn_how_disconnect`) VALUES + (144, 1, 0, '', 0, 1611230354, 0, '0.0.0', '1.0', '1', 0, 0); +INSERT INTO `conn_main` (`conn_id`, `conn_server`, `conn_auth`, `conn_name`, `conn_ip`, `conn_when_connect`, `conn_when_disconnect`, `conn_client_version`, `conn_script_version`, `conn_game_version`, `conn_status`, `conn_how_disconnect`) VALUES + (145, 1, 0, '', 0, 1611232552, 0, '0.0.0', '1.0', '1', 0, 0); +INSERT INTO `conn_main` (`conn_id`, `conn_server`, `conn_auth`, `conn_name`, `conn_ip`, `conn_when_connect`, `conn_when_disconnect`, `conn_client_version`, `conn_script_version`, `conn_game_version`, `conn_status`, `conn_how_disconnect`) VALUES + (146, 1, 0, '', 0, 1611232576, 0, '0.0.0', '1.0', '1', 0, 0); +INSERT INTO `conn_main` (`conn_id`, `conn_server`, `conn_auth`, `conn_name`, `conn_ip`, `conn_when_connect`, `conn_when_disconnect`, `conn_client_version`, `conn_script_version`, `conn_game_version`, `conn_status`, `conn_how_disconnect`) VALUES + (147, 1, 0, '', 0, 1611232770, 0, '0.0.0', '1.0', '1', 0, 0); +INSERT INTO `conn_main` (`conn_id`, `conn_server`, `conn_auth`, `conn_name`, `conn_ip`, `conn_when_connect`, `conn_when_disconnect`, `conn_client_version`, `conn_script_version`, `conn_game_version`, `conn_status`, `conn_how_disconnect`) VALUES + (148, 1, 0, '', 0, 1611304158, 0, '0.0.0', '1.0', '1', 0, 0); +INSERT INTO `conn_main` (`conn_id`, `conn_server`, `conn_auth`, `conn_name`, `conn_ip`, `conn_when_connect`, `conn_when_disconnect`, `conn_client_version`, `conn_script_version`, `conn_game_version`, `conn_status`, `conn_how_disconnect`) VALUES + (149, 1, 0, '', 0, 1611304985, 0, '0.0.0', '1.0', '1', 0, 0); +INSERT INTO `conn_main` (`conn_id`, `conn_server`, `conn_auth`, `conn_name`, `conn_ip`, `conn_when_connect`, `conn_when_disconnect`, `conn_client_version`, `conn_script_version`, `conn_game_version`, `conn_status`, `conn_how_disconnect`) VALUES + (150, 1, 0, '', 0, 1611521732, 0, '0.0.0', '1.0', '1', 0, 0); +INSERT INTO `conn_main` (`conn_id`, `conn_server`, `conn_auth`, `conn_name`, `conn_ip`, `conn_when_connect`, `conn_when_disconnect`, `conn_client_version`, `conn_script_version`, `conn_game_version`, `conn_status`, `conn_how_disconnect`) VALUES + (151, 1, 0, '', 0, 1611522351, 0, '0.0.0', '1.0', '1', 0, 0); +INSERT INTO `conn_main` (`conn_id`, `conn_server`, `conn_auth`, `conn_name`, `conn_ip`, `conn_when_connect`, `conn_when_disconnect`, `conn_client_version`, `conn_script_version`, `conn_game_version`, `conn_status`, `conn_how_disconnect`) VALUES + (152, 1, 0, '', 0, 1611522434, 0, '0.0.0', '1.0', '1', 0, 0); +INSERT INTO `conn_main` (`conn_id`, `conn_server`, `conn_auth`, `conn_name`, `conn_ip`, `conn_when_connect`, `conn_when_disconnect`, `conn_client_version`, `conn_script_version`, `conn_game_version`, `conn_status`, `conn_how_disconnect`) VALUES + (153, 1, 0, '', 0, 1611522650, 0, '0.0.0', '1.0', '1', 0, 0); +INSERT INTO `conn_main` (`conn_id`, `conn_server`, `conn_auth`, `conn_name`, `conn_ip`, `conn_when_connect`, `conn_when_disconnect`, `conn_client_version`, `conn_script_version`, `conn_game_version`, `conn_status`, `conn_how_disconnect`) VALUES + (154, 1, 0, '', 0, 1611522695, 0, '0.0.0', '1.0', '1', 0, 0); +INSERT INTO `conn_main` (`conn_id`, `conn_server`, `conn_auth`, `conn_name`, `conn_ip`, `conn_when_connect`, `conn_when_disconnect`, `conn_client_version`, `conn_script_version`, `conn_game_version`, `conn_status`, `conn_how_disconnect`) VALUES + (155, 1, 0, '', 0, 1611522812, 0, '0.0.0', '1.0', '1', 0, 0); +INSERT INTO `conn_main` (`conn_id`, `conn_server`, `conn_auth`, `conn_name`, `conn_ip`, `conn_when_connect`, `conn_when_disconnect`, `conn_client_version`, `conn_script_version`, `conn_game_version`, `conn_status`, `conn_how_disconnect`) VALUES + (156, 2, 0, '', 0, 1611526452, 0, '0.0.0', '1.0', '2', 0, 0); +INSERT INTO `conn_main` (`conn_id`, `conn_server`, `conn_auth`, `conn_name`, `conn_ip`, `conn_when_connect`, `conn_when_disconnect`, `conn_client_version`, `conn_script_version`, `conn_game_version`, `conn_status`, `conn_how_disconnect`) VALUES + (157, 2, 0, '', 0, 1611526509, 0, '0.0.0', '1.0', '2', 0, 0); +INSERT INTO `conn_main` (`conn_id`, `conn_server`, `conn_auth`, `conn_name`, `conn_ip`, `conn_when_connect`, `conn_when_disconnect`, `conn_client_version`, `conn_script_version`, `conn_game_version`, `conn_status`, `conn_how_disconnect`) VALUES + (158, 2, 0, '', 0, 1611527171, 0, '0.0.0', '1.0', '2', 0, 0); +INSERT INTO `conn_main` (`conn_id`, `conn_server`, `conn_auth`, `conn_name`, `conn_ip`, `conn_when_connect`, `conn_when_disconnect`, `conn_client_version`, `conn_script_version`, `conn_game_version`, `conn_status`, `conn_how_disconnect`) VALUES + (159, 4, 0, '', 0, 1612851488, 0, '0.0.0', '1.0', '4', 0, 0); +INSERT INTO `conn_main` (`conn_id`, `conn_server`, `conn_auth`, `conn_name`, `conn_ip`, `conn_when_connect`, `conn_when_disconnect`, `conn_client_version`, `conn_script_version`, `conn_game_version`, `conn_status`, `conn_how_disconnect`) VALUES + (160, 4, 0, '', 0, 1612851865, 0, '0.0.0', '1.0', '4', 0, 0); +INSERT INTO `conn_main` (`conn_id`, `conn_server`, `conn_auth`, `conn_name`, `conn_ip`, `conn_when_connect`, `conn_when_disconnect`, `conn_client_version`, `conn_script_version`, `conn_game_version`, `conn_status`, `conn_how_disconnect`) VALUES + (161, 4, 0, '', 0, 1612851916, 0, '0.0.0', '1.0', '4', 0, 0); +INSERT INTO `conn_main` (`conn_id`, `conn_server`, `conn_auth`, `conn_name`, `conn_ip`, `conn_when_connect`, `conn_when_disconnect`, `conn_client_version`, `conn_script_version`, `conn_game_version`, `conn_status`, `conn_how_disconnect`) VALUES + (162, 4, 0, '', 0, 1612852054, 0, '0.0.0', '1.0', '4', 0, 0); +INSERT INTO `conn_main` (`conn_id`, `conn_server`, `conn_auth`, `conn_name`, `conn_ip`, `conn_when_connect`, `conn_when_disconnect`, `conn_client_version`, `conn_script_version`, `conn_game_version`, `conn_status`, `conn_how_disconnect`) VALUES + (163, 4, 0, '', 0, 1612852105, 0, '0.0.0', '1.0', '4', 0, 0); +INSERT INTO `conn_main` (`conn_id`, `conn_server`, `conn_auth`, `conn_name`, `conn_ip`, `conn_when_connect`, `conn_when_disconnect`, `conn_client_version`, `conn_script_version`, `conn_game_version`, `conn_status`, `conn_how_disconnect`) VALUES + (164, 4, 0, '', 0, 1612852187, 0, '0.0.0', '1.0', '4', 0, 0); +INSERT INTO `conn_main` (`conn_id`, `conn_server`, `conn_auth`, `conn_name`, `conn_ip`, `conn_when_connect`, `conn_when_disconnect`, `conn_client_version`, `conn_script_version`, `conn_game_version`, `conn_status`, `conn_how_disconnect`) VALUES + (165, 4, 0, '', 0, 1612852334, 0, '0.0.0', '1.0', '4', 0, 0); +INSERT INTO `conn_main` (`conn_id`, `conn_server`, `conn_auth`, `conn_name`, `conn_ip`, `conn_when_connect`, `conn_when_disconnect`, `conn_client_version`, `conn_script_version`, `conn_game_version`, `conn_status`, `conn_how_disconnect`) VALUES + (166, 4, 0, '', 0, 1612852497, 0, '0.0.0', '1.0', '4', 0, 0); +INSERT INTO `conn_main` (`conn_id`, `conn_server`, `conn_auth`, `conn_name`, `conn_ip`, `conn_when_connect`, `conn_when_disconnect`, `conn_client_version`, `conn_script_version`, `conn_game_version`, `conn_status`, `conn_how_disconnect`) VALUES + (167, 1, 0, '', 0, 1612855109, 0, '0.0.0', '1.0', '1', 0, 0); +INSERT INTO `conn_main` (`conn_id`, `conn_server`, `conn_auth`, `conn_name`, `conn_ip`, `conn_when_connect`, `conn_when_disconnect`, `conn_client_version`, `conn_script_version`, `conn_game_version`, `conn_status`, `conn_how_disconnect`) VALUES + (168, 1, 0, '', 0, 1612855288, 0, '0.0.0', '1.0', '1', 0, 0); +INSERT INTO `conn_main` (`conn_id`, `conn_server`, `conn_auth`, `conn_name`, `conn_ip`, `conn_when_connect`, `conn_when_disconnect`, `conn_client_version`, `conn_script_version`, `conn_game_version`, `conn_status`, `conn_how_disconnect`) VALUES + (169, 4, 0, '', 0, 1612863860, 0, '0.0.0', '1.0', '4', 0, 0); +INSERT INTO `conn_main` (`conn_id`, `conn_server`, `conn_auth`, `conn_name`, `conn_ip`, `conn_when_connect`, `conn_when_disconnect`, `conn_client_version`, `conn_script_version`, `conn_game_version`, `conn_status`, `conn_how_disconnect`) VALUES + (170, 4, 0, '', 0, 1612863933, 0, '0.0.0', '1.0', '4', 0, 0); +INSERT INTO `conn_main` (`conn_id`, `conn_server`, `conn_auth`, `conn_name`, `conn_ip`, `conn_when_connect`, `conn_when_disconnect`, `conn_client_version`, `conn_script_version`, `conn_game_version`, `conn_status`, `conn_how_disconnect`) VALUES + (171, 4, 0, '', 0, 1612864014, 0, '0.0.0', '1.0', '4', 0, 0); +INSERT INTO `conn_main` (`conn_id`, `conn_server`, `conn_auth`, `conn_name`, `conn_ip`, `conn_when_connect`, `conn_when_disconnect`, `conn_client_version`, `conn_script_version`, `conn_game_version`, `conn_status`, `conn_how_disconnect`) VALUES + (172, 4, 0, '', 0, 1612864536, 0, '0.0.0', '1.0', '4', 0, 0); +INSERT INTO `conn_main` (`conn_id`, `conn_server`, `conn_auth`, `conn_name`, `conn_ip`, `conn_when_connect`, `conn_when_disconnect`, `conn_client_version`, `conn_script_version`, `conn_game_version`, `conn_status`, `conn_how_disconnect`) VALUES + (173, 1, 0, '', 0, 1613340231, 0, '0.0.0', '1.0', '1', 0, 0); +INSERT INTO `conn_main` (`conn_id`, `conn_server`, `conn_auth`, `conn_name`, `conn_ip`, `conn_when_connect`, `conn_when_disconnect`, `conn_client_version`, `conn_script_version`, `conn_game_version`, `conn_status`, `conn_how_disconnect`) VALUES + (174, 1, 0, '', 0, 1613340369, 0, '0.0.0', '1.0', '1', 0, 0); +INSERT INTO `conn_main` (`conn_id`, `conn_server`, `conn_auth`, `conn_name`, `conn_ip`, `conn_when_connect`, `conn_when_disconnect`, `conn_client_version`, `conn_script_version`, `conn_game_version`, `conn_status`, `conn_how_disconnect`) VALUES + (175, 1, 0, '', 0, 1613340559, 0, '0.0.0', '1.0', '1', 0, 0); +INSERT INTO `conn_main` (`conn_id`, `conn_server`, `conn_auth`, `conn_name`, `conn_ip`, `conn_when_connect`, `conn_when_disconnect`, `conn_client_version`, `conn_script_version`, `conn_game_version`, `conn_status`, `conn_how_disconnect`) VALUES + (176, 1, 0, '', 0, 1613340704, 0, '0.0.0', '1.0', '1', 0, 0); +INSERT INTO `conn_main` (`conn_id`, `conn_server`, `conn_auth`, `conn_name`, `conn_ip`, `conn_when_connect`, `conn_when_disconnect`, `conn_client_version`, `conn_script_version`, `conn_game_version`, `conn_status`, `conn_how_disconnect`) VALUES + (177, 1, 0, '', 0, 1613340737, 0, '0.0.0', '1.0', '1', 0, 0); +INSERT INTO `conn_main` (`conn_id`, `conn_server`, `conn_auth`, `conn_name`, `conn_ip`, `conn_when_connect`, `conn_when_disconnect`, `conn_client_version`, `conn_script_version`, `conn_game_version`, `conn_status`, `conn_how_disconnect`) VALUES + (178, 1, 0, '', 0, 1613341349, 0, '0.0.0', '1.0', '1', 0, 0); +INSERT INTO `conn_main` (`conn_id`, `conn_server`, `conn_auth`, `conn_name`, `conn_ip`, `conn_when_connect`, `conn_when_disconnect`, `conn_client_version`, `conn_script_version`, `conn_game_version`, `conn_status`, `conn_how_disconnect`) VALUES + (179, 1, 0, '', 0, 1613341540, 0, '0.0.0', '1.0', '1', 0, 0); +INSERT INTO `conn_main` (`conn_id`, `conn_server`, `conn_auth`, `conn_name`, `conn_ip`, `conn_when_connect`, `conn_when_disconnect`, `conn_client_version`, `conn_script_version`, `conn_game_version`, `conn_status`, `conn_how_disconnect`) VALUES + (180, 4, 0, '', 0, 1613341619, 0, '0.0.0', '1.0', '4', 0, 0); +INSERT INTO `conn_main` (`conn_id`, `conn_server`, `conn_auth`, `conn_name`, `conn_ip`, `conn_when_connect`, `conn_when_disconnect`, `conn_client_version`, `conn_script_version`, `conn_game_version`, `conn_status`, `conn_how_disconnect`) VALUES + (181, 4, 0, '', 0, 1613341638, 0, '0.0.0', '1.0', '4', 0, 0); +INSERT INTO `conn_main` (`conn_id`, `conn_server`, `conn_auth`, `conn_name`, `conn_ip`, `conn_when_connect`, `conn_when_disconnect`, `conn_client_version`, `conn_script_version`, `conn_game_version`, `conn_status`, `conn_how_disconnect`) VALUES + (182, 4, 0, '', 0, 1613341683, 0, '0.0.0', '1.0', '4', 0, 0); +INSERT INTO `conn_main` (`conn_id`, `conn_server`, `conn_auth`, `conn_name`, `conn_ip`, `conn_when_connect`, `conn_when_disconnect`, `conn_client_version`, `conn_script_version`, `conn_game_version`, `conn_status`, `conn_how_disconnect`) VALUES + (183, 4, 0, '', 0, 1613341937, 0, '0.0.0', '1.0', '4', 0, 0); +INSERT INTO `conn_main` (`conn_id`, `conn_server`, `conn_auth`, `conn_name`, `conn_ip`, `conn_when_connect`, `conn_when_disconnect`, `conn_client_version`, `conn_script_version`, `conn_game_version`, `conn_status`, `conn_how_disconnect`) VALUES + (184, 4, 0, '', 0, 1613342240, 0, '0.0.0', '1.0', '4', 0, 0); +INSERT INTO `conn_main` (`conn_id`, `conn_server`, `conn_auth`, `conn_name`, `conn_ip`, `conn_when_connect`, `conn_when_disconnect`, `conn_client_version`, `conn_script_version`, `conn_game_version`, `conn_status`, `conn_how_disconnect`) VALUES + (185, 4, 0, '', 0, 1613342373, 0, '0.0.0', '1.0', '4', 0, 0); +INSERT INTO `conn_main` (`conn_id`, `conn_server`, `conn_auth`, `conn_name`, `conn_ip`, `conn_when_connect`, `conn_when_disconnect`, `conn_client_version`, `conn_script_version`, `conn_game_version`, `conn_status`, `conn_how_disconnect`) VALUES + (186, 4, 0, '', 0, 1613342856, 0, '0.0.0', '1.0', '4', 0, 0); +INSERT INTO `conn_main` (`conn_id`, `conn_server`, `conn_auth`, `conn_name`, `conn_ip`, `conn_when_connect`, `conn_when_disconnect`, `conn_client_version`, `conn_script_version`, `conn_game_version`, `conn_status`, `conn_how_disconnect`) VALUES + (187, 3, 0, '', 0, 1613343788, 0, '0.0.0', '1.0', '9', 0, 0); +INSERT INTO `conn_main` (`conn_id`, `conn_server`, `conn_auth`, `conn_name`, `conn_ip`, `conn_when_connect`, `conn_when_disconnect`, `conn_client_version`, `conn_script_version`, `conn_game_version`, `conn_status`, `conn_how_disconnect`) VALUES + (188, 3, 0, '', 0, 1613343830, 0, '0.0.0', '1.0', '9', 0, 0); +INSERT INTO `conn_main` (`conn_id`, `conn_server`, `conn_auth`, `conn_name`, `conn_ip`, `conn_when_connect`, `conn_when_disconnect`, `conn_client_version`, `conn_script_version`, `conn_game_version`, `conn_status`, `conn_how_disconnect`) VALUES + (189, 3, 0, '', 0, 1613343842, 0, '0.0.0', '1.0', '10', 0, 0); +INSERT INTO `conn_main` (`conn_id`, `conn_server`, `conn_auth`, `conn_name`, `conn_ip`, `conn_when_connect`, `conn_when_disconnect`, `conn_client_version`, `conn_script_version`, `conn_game_version`, `conn_status`, `conn_how_disconnect`) VALUES + (190, 3, 0, '', 0, 1613343933, 0, '0.0.0', '1.0', '10', 0, 0); +INSERT INTO `conn_main` (`conn_id`, `conn_server`, `conn_auth`, `conn_name`, `conn_ip`, `conn_when_connect`, `conn_when_disconnect`, `conn_client_version`, `conn_script_version`, `conn_game_version`, `conn_status`, `conn_how_disconnect`) VALUES + (191, 3, 0, '', 0, 1613343985, 0, '0.0.0', '1.0', '9', 0, 0); +INSERT INTO `conn_main` (`conn_id`, `conn_server`, `conn_auth`, `conn_name`, `conn_ip`, `conn_when_connect`, `conn_when_disconnect`, `conn_client_version`, `conn_script_version`, `conn_game_version`, `conn_status`, `conn_how_disconnect`) VALUES + (192, 3, 0, '', 0, 1613343986, 0, '0.0.0', '1.0', '10', 0, 0); +INSERT INTO `conn_main` (`conn_id`, `conn_server`, `conn_auth`, `conn_name`, `conn_ip`, `conn_when_connect`, `conn_when_disconnect`, `conn_client_version`, `conn_script_version`, `conn_game_version`, `conn_status`, `conn_how_disconnect`) VALUES + (193, 3, 0, '', 0, 1613344127, 0, '0.0.0', '1.0', '9', 0, 0); +INSERT INTO `conn_main` (`conn_id`, `conn_server`, `conn_auth`, `conn_name`, `conn_ip`, `conn_when_connect`, `conn_when_disconnect`, `conn_client_version`, `conn_script_version`, `conn_game_version`, `conn_status`, `conn_how_disconnect`) VALUES + (194, 3, 0, '', 0, 1613344140, 0, '0.0.0', '1.0', '10', 0, 0); +INSERT INTO `conn_main` (`conn_id`, `conn_server`, `conn_auth`, `conn_name`, `conn_ip`, `conn_when_connect`, `conn_when_disconnect`, `conn_client_version`, `conn_script_version`, `conn_game_version`, `conn_status`, `conn_how_disconnect`) VALUES + (195, 3, 0, '', 0, 1613344233, 0, '0.0.0', '1.0', '9', 0, 0); +INSERT INTO `conn_main` (`conn_id`, `conn_server`, `conn_auth`, `conn_name`, `conn_ip`, `conn_when_connect`, `conn_when_disconnect`, `conn_client_version`, `conn_script_version`, `conn_game_version`, `conn_status`, `conn_how_disconnect`) VALUES + (196, 3, 0, '', 0, 1613344577, 0, '0.0.0', '1.0', '9', 0, 0); +INSERT INTO `conn_main` (`conn_id`, `conn_server`, `conn_auth`, `conn_name`, `conn_ip`, `conn_when_connect`, `conn_when_disconnect`, `conn_client_version`, `conn_script_version`, `conn_game_version`, `conn_status`, `conn_how_disconnect`) VALUES + (197, 3, 0, '', 0, 1613344772, 0, '0.0.0', '1.0', '9', 0, 0); +INSERT INTO `conn_main` (`conn_id`, `conn_server`, `conn_auth`, `conn_name`, `conn_ip`, `conn_when_connect`, `conn_when_disconnect`, `conn_client_version`, `conn_script_version`, `conn_game_version`, `conn_status`, `conn_how_disconnect`) VALUES + (198, 3, 0, '', 0, 1613344802, 0, '0.0.0', '1.0', '10', 0, 0); +INSERT INTO `conn_main` (`conn_id`, `conn_server`, `conn_auth`, `conn_name`, `conn_ip`, `conn_when_connect`, `conn_when_disconnect`, `conn_client_version`, `conn_script_version`, `conn_game_version`, `conn_status`, `conn_how_disconnect`) VALUES + (199, 3, 0, '', 0, 1613345071, 0, '0.0.0', '1.0', '10', 0, 0); +INSERT INTO `conn_main` (`conn_id`, `conn_server`, `conn_auth`, `conn_name`, `conn_ip`, `conn_when_connect`, `conn_when_disconnect`, `conn_client_version`, `conn_script_version`, `conn_game_version`, `conn_status`, `conn_how_disconnect`) VALUES + (200, 3, 0, '', 0, 1613345153, 0, '0.0.0', '1.0', '10', 0, 0); +INSERT INTO `conn_main` (`conn_id`, `conn_server`, `conn_auth`, `conn_name`, `conn_ip`, `conn_when_connect`, `conn_when_disconnect`, `conn_client_version`, `conn_script_version`, `conn_game_version`, `conn_status`, `conn_how_disconnect`) VALUES + (201, 3, 0, '', 0, 1613345250, 0, '0.0.0', '1.0', '9', 0, 0); +INSERT INTO `conn_main` (`conn_id`, `conn_server`, `conn_auth`, `conn_name`, `conn_ip`, `conn_when_connect`, `conn_when_disconnect`, `conn_client_version`, `conn_script_version`, `conn_game_version`, `conn_status`, `conn_how_disconnect`) VALUES + (202, 3, 0, '', 0, 1613345372, 0, '0.0.0', '1.0', '10', 0, 0); +INSERT INTO `conn_main` (`conn_id`, `conn_server`, `conn_auth`, `conn_name`, `conn_ip`, `conn_when_connect`, `conn_when_disconnect`, `conn_client_version`, `conn_script_version`, `conn_game_version`, `conn_status`, `conn_how_disconnect`) VALUES + (203, 3, 0, '', 0, 1613345384, 0, '0.0.0', '1.0', '9', 0, 0); +INSERT INTO `conn_main` (`conn_id`, `conn_server`, `conn_auth`, `conn_name`, `conn_ip`, `conn_when_connect`, `conn_when_disconnect`, `conn_client_version`, `conn_script_version`, `conn_game_version`, `conn_status`, `conn_how_disconnect`) VALUES + (204, 3, 0, '', 0, 1613869515, 0, '0.0.0', '1.0', '9', 0, 0); +INSERT INTO `conn_main` (`conn_id`, `conn_server`, `conn_auth`, `conn_name`, `conn_ip`, `conn_when_connect`, `conn_when_disconnect`, `conn_client_version`, `conn_script_version`, `conn_game_version`, `conn_status`, `conn_how_disconnect`) VALUES + (205, 3, 0, '', 0, 1613869584, 0, '0.0.0', '1.0', '10', 0, 0); +INSERT INTO `conn_main` (`conn_id`, `conn_server`, `conn_auth`, `conn_name`, `conn_ip`, `conn_when_connect`, `conn_when_disconnect`, `conn_client_version`, `conn_script_version`, `conn_game_version`, `conn_status`, `conn_how_disconnect`) VALUES + (206, 3, 0, '', 0, 1613869754, 0, '0.0.0', '1.0', '9', 0, 0); +INSERT INTO `conn_main` (`conn_id`, `conn_server`, `conn_auth`, `conn_name`, `conn_ip`, `conn_when_connect`, `conn_when_disconnect`, `conn_client_version`, `conn_script_version`, `conn_game_version`, `conn_status`, `conn_how_disconnect`) VALUES + (207, 3, 0, '', 0, 1613869779, 0, '0.0.0', '1.0', '10', 0, 0); +INSERT INTO `conn_main` (`conn_id`, `conn_server`, `conn_auth`, `conn_name`, `conn_ip`, `conn_when_connect`, `conn_when_disconnect`, `conn_client_version`, `conn_script_version`, `conn_game_version`, `conn_status`, `conn_how_disconnect`) VALUES + (208, 3, 0, '', 0, 1613870062, 0, '0.0.0', '1.0', '10', 0, 0); +INSERT INTO `conn_main` (`conn_id`, `conn_server`, `conn_auth`, `conn_name`, `conn_ip`, `conn_when_connect`, `conn_when_disconnect`, `conn_client_version`, `conn_script_version`, `conn_game_version`, `conn_status`, `conn_how_disconnect`) VALUES + (209, 3, 0, '', 0, 1613870114, 0, '0.0.0', '1.0', '9', 0, 0); +INSERT INTO `conn_main` (`conn_id`, `conn_server`, `conn_auth`, `conn_name`, `conn_ip`, `conn_when_connect`, `conn_when_disconnect`, `conn_client_version`, `conn_script_version`, `conn_game_version`, `conn_status`, `conn_how_disconnect`) VALUES + (210, 3, 0, '', 0, 1613870223, 0, '0.0.0', '1.0', '10', 0, 0); +INSERT INTO `conn_main` (`conn_id`, `conn_server`, `conn_auth`, `conn_name`, `conn_ip`, `conn_when_connect`, `conn_when_disconnect`, `conn_client_version`, `conn_script_version`, `conn_game_version`, `conn_status`, `conn_how_disconnect`) VALUES + (211, 3, 0, '', 0, 1613870296, 0, '0.0.0', '1.0', '9', 0, 0); +INSERT INTO `conn_main` (`conn_id`, `conn_server`, `conn_auth`, `conn_name`, `conn_ip`, `conn_when_connect`, `conn_when_disconnect`, `conn_client_version`, `conn_script_version`, `conn_game_version`, `conn_status`, `conn_how_disconnect`) VALUES + (212, 3, 0, '', 0, 1613870327, 0, '0.0.0', '1.0', '10', 0, 0); +INSERT INTO `conn_main` (`conn_id`, `conn_server`, `conn_auth`, `conn_name`, `conn_ip`, `conn_when_connect`, `conn_when_disconnect`, `conn_client_version`, `conn_script_version`, `conn_game_version`, `conn_status`, `conn_how_disconnect`) VALUES + (213, 3, 0, '', 0, 1613870531, 0, '0.0.0', '1.0', '10', 0, 0); +INSERT INTO `conn_main` (`conn_id`, `conn_server`, `conn_auth`, `conn_name`, `conn_ip`, `conn_when_connect`, `conn_when_disconnect`, `conn_client_version`, `conn_script_version`, `conn_game_version`, `conn_status`, `conn_how_disconnect`) VALUES + (214, 3, 0, '', 0, 1613870887, 0, '0.0.0', '1.0', '10', 0, 0); +INSERT INTO `conn_main` (`conn_id`, `conn_server`, `conn_auth`, `conn_name`, `conn_ip`, `conn_when_connect`, `conn_when_disconnect`, `conn_client_version`, `conn_script_version`, `conn_game_version`, `conn_status`, `conn_how_disconnect`) VALUES + (215, 3, 0, '', 0, 1613871008, 0, '0.0.0', '1.0', '9', 0, 0); +INSERT INTO `conn_main` (`conn_id`, `conn_server`, `conn_auth`, `conn_name`, `conn_ip`, `conn_when_connect`, `conn_when_disconnect`, `conn_client_version`, `conn_script_version`, `conn_game_version`, `conn_status`, `conn_how_disconnect`) VALUES + (216, 3, 0, '', 0, 1613871097, 0, '0.0.0', '1.0', '10', 0, 0); +INSERT INTO `conn_main` (`conn_id`, `conn_server`, `conn_auth`, `conn_name`, `conn_ip`, `conn_when_connect`, `conn_when_disconnect`, `conn_client_version`, `conn_script_version`, `conn_game_version`, `conn_status`, `conn_how_disconnect`) VALUES + (217, 3, 0, '', 0, 1613871176, 0, '0.0.0', '1.0', '9', 0, 0); +INSERT INTO `conn_main` (`conn_id`, `conn_server`, `conn_auth`, `conn_name`, `conn_ip`, `conn_when_connect`, `conn_when_disconnect`, `conn_client_version`, `conn_script_version`, `conn_game_version`, `conn_status`, `conn_how_disconnect`) VALUES + (218, 3, 0, '', 0, 1613871357, 0, '0.0.0', '1.0', '10', 0, 0); +INSERT INTO `conn_main` (`conn_id`, `conn_server`, `conn_auth`, `conn_name`, `conn_ip`, `conn_when_connect`, `conn_when_disconnect`, `conn_client_version`, `conn_script_version`, `conn_game_version`, `conn_status`, `conn_how_disconnect`) VALUES + (219, 3, 0, '', 0, 1613871389, 0, '0.0.0', '1.0', '9', 0, 0); +INSERT INTO `conn_main` (`conn_id`, `conn_server`, `conn_auth`, `conn_name`, `conn_ip`, `conn_when_connect`, `conn_when_disconnect`, `conn_client_version`, `conn_script_version`, `conn_game_version`, `conn_status`, `conn_how_disconnect`) VALUES + (220, 3, 0, '', 0, 1613871456, 0, '0.0.0', '1.0', '10', 0, 0); +INSERT INTO `conn_main` (`conn_id`, `conn_server`, `conn_auth`, `conn_name`, `conn_ip`, `conn_when_connect`, `conn_when_disconnect`, `conn_client_version`, `conn_script_version`, `conn_game_version`, `conn_status`, `conn_how_disconnect`) VALUES + (221, 3, 0, '', 0, 1613871889, 0, '0.0.0', '1.0', '9', 0, 0); +INSERT INTO `conn_main` (`conn_id`, `conn_server`, `conn_auth`, `conn_name`, `conn_ip`, `conn_when_connect`, `conn_when_disconnect`, `conn_client_version`, `conn_script_version`, `conn_game_version`, `conn_status`, `conn_how_disconnect`) VALUES + (222, 3, 0, '', 0, 1613871937, 0, '0.0.0', '1.0', '10', 0, 0); +INSERT INTO `conn_main` (`conn_id`, `conn_server`, `conn_auth`, `conn_name`, `conn_ip`, `conn_when_connect`, `conn_when_disconnect`, `conn_client_version`, `conn_script_version`, `conn_game_version`, `conn_status`, `conn_how_disconnect`) VALUES + (223, 3, 0, '', 0, 1613872064, 0, '0.0.0', '1.0', '9', 0, 0); +INSERT INTO `conn_main` (`conn_id`, `conn_server`, `conn_auth`, `conn_name`, `conn_ip`, `conn_when_connect`, `conn_when_disconnect`, `conn_client_version`, `conn_script_version`, `conn_game_version`, `conn_status`, `conn_how_disconnect`) VALUES + (224, 3, 0, '', 0, 1613872612, 0, '0.0.0', '1.0', '9', 0, 0); +INSERT INTO `conn_main` (`conn_id`, `conn_server`, `conn_auth`, `conn_name`, `conn_ip`, `conn_when_connect`, `conn_when_disconnect`, `conn_client_version`, `conn_script_version`, `conn_game_version`, `conn_status`, `conn_how_disconnect`) VALUES + (225, 3, 0, '', 0, 1613872712, 0, '0.0.0', '1.0', '9', 0, 0); +INSERT INTO `conn_main` (`conn_id`, `conn_server`, `conn_auth`, `conn_name`, `conn_ip`, `conn_when_connect`, `conn_when_disconnect`, `conn_client_version`, `conn_script_version`, `conn_game_version`, `conn_status`, `conn_how_disconnect`) VALUES + (226, 3, 0, '', 0, 1613872777, 0, '0.0.0', '1.0', '9', 0, 0); +INSERT INTO `conn_main` (`conn_id`, `conn_server`, `conn_auth`, `conn_name`, `conn_ip`, `conn_when_connect`, `conn_when_disconnect`, `conn_client_version`, `conn_script_version`, `conn_game_version`, `conn_status`, `conn_how_disconnect`) VALUES + (227, 3, 0, '', 0, 1613882484, 0, '0.0.0', '1.0', '9', 0, 0); +INSERT INTO `conn_main` (`conn_id`, `conn_server`, `conn_auth`, `conn_name`, `conn_ip`, `conn_when_connect`, `conn_when_disconnect`, `conn_client_version`, `conn_script_version`, `conn_game_version`, `conn_status`, `conn_how_disconnect`) VALUES + (228, 3, 0, '', 0, 1613987977, 0, '0.0.0', '1.0', '9', 0, 0); +INSERT INTO `conn_main` (`conn_id`, `conn_server`, `conn_auth`, `conn_name`, `conn_ip`, `conn_when_connect`, `conn_when_disconnect`, `conn_client_version`, `conn_script_version`, `conn_game_version`, `conn_status`, `conn_how_disconnect`) VALUES + (229, 3, 0, '', 0, 1613988209, 0, '0.0.0', '1.0', '9', 0, 0); +INSERT INTO `conn_main` (`conn_id`, `conn_server`, `conn_auth`, `conn_name`, `conn_ip`, `conn_when_connect`, `conn_when_disconnect`, `conn_client_version`, `conn_script_version`, `conn_game_version`, `conn_status`, `conn_how_disconnect`) VALUES + (230, 3, 0, '', 0, 1613988209, 0, '0.0.0', '1.0', '9', 0, 0); +INSERT INTO `conn_main` (`conn_id`, `conn_server`, `conn_auth`, `conn_name`, `conn_ip`, `conn_when_connect`, `conn_when_disconnect`, `conn_client_version`, `conn_script_version`, `conn_game_version`, `conn_status`, `conn_how_disconnect`) VALUES + (231, 4, 0, '', 0, 1614002216, 0, '0.0.0', '1.0', '4', 0, 0); +INSERT INTO `conn_main` (`conn_id`, `conn_server`, `conn_auth`, `conn_name`, `conn_ip`, `conn_when_connect`, `conn_when_disconnect`, `conn_client_version`, `conn_script_version`, `conn_game_version`, `conn_status`, `conn_how_disconnect`) VALUES + (232, 4, 0, '', 0, 1614002275, 0, '0.0.0', '1.0', '4', 0, 0); +INSERT INTO `conn_main` (`conn_id`, `conn_server`, `conn_auth`, `conn_name`, `conn_ip`, `conn_when_connect`, `conn_when_disconnect`, `conn_client_version`, `conn_script_version`, `conn_game_version`, `conn_status`, `conn_how_disconnect`) VALUES + (233, 4, 0, '', 0, 1614002341, 0, '0.0.0', '1.0', '4', 0, 0); +INSERT INTO `conn_main` (`conn_id`, `conn_server`, `conn_auth`, `conn_name`, `conn_ip`, `conn_when_connect`, `conn_when_disconnect`, `conn_client_version`, `conn_script_version`, `conn_game_version`, `conn_status`, `conn_how_disconnect`) VALUES + (234, 4, 0, '', 0, 1614002410, 0, '0.0.0', '1.0', '4', 0, 0); +INSERT INTO `conn_main` (`conn_id`, `conn_server`, `conn_auth`, `conn_name`, `conn_ip`, `conn_when_connect`, `conn_when_disconnect`, `conn_client_version`, `conn_script_version`, `conn_game_version`, `conn_status`, `conn_how_disconnect`) VALUES + (235, 4, 0, '', 0, 1614002453, 0, '0.0.0', '1.0', '4', 0, 0); +INSERT INTO `conn_main` (`conn_id`, `conn_server`, `conn_auth`, `conn_name`, `conn_ip`, `conn_when_connect`, `conn_when_disconnect`, `conn_client_version`, `conn_script_version`, `conn_game_version`, `conn_status`, `conn_how_disconnect`) VALUES + (236, 4, 0, '', 0, 1614002512, 0, '0.0.0', '1.0', '4', 0, 0); +INSERT INTO `conn_main` (`conn_id`, `conn_server`, `conn_auth`, `conn_name`, `conn_ip`, `conn_when_connect`, `conn_when_disconnect`, `conn_client_version`, `conn_script_version`, `conn_game_version`, `conn_status`, `conn_how_disconnect`) VALUES + (237, 4, 0, '', 0, 1614002535, 0, '0.0.0', '1.0', '4', 0, 0); +INSERT INTO `conn_main` (`conn_id`, `conn_server`, `conn_auth`, `conn_name`, `conn_ip`, `conn_when_connect`, `conn_when_disconnect`, `conn_client_version`, `conn_script_version`, `conn_game_version`, `conn_status`, `conn_how_disconnect`) VALUES + (238, 4, 0, '', 0, 1614002665, 0, '0.0.0', '1.0', '4', 0, 0); +INSERT INTO `conn_main` (`conn_id`, `conn_server`, `conn_auth`, `conn_name`, `conn_ip`, `conn_when_connect`, `conn_when_disconnect`, `conn_client_version`, `conn_script_version`, `conn_game_version`, `conn_status`, `conn_how_disconnect`) VALUES + (239, 4, 0, '', 0, 1614002897, 0, '0.0.0', '1.0', '4', 0, 0); +INSERT INTO `conn_main` (`conn_id`, `conn_server`, `conn_auth`, `conn_name`, `conn_ip`, `conn_when_connect`, `conn_when_disconnect`, `conn_client_version`, `conn_script_version`, `conn_game_version`, `conn_status`, `conn_how_disconnect`) VALUES + (240, 4, 0, '', 0, 1614003009, 0, '0.0.0', '1.0', '4', 0, 0); +INSERT INTO `conn_main` (`conn_id`, `conn_server`, `conn_auth`, `conn_name`, `conn_ip`, `conn_when_connect`, `conn_when_disconnect`, `conn_client_version`, `conn_script_version`, `conn_game_version`, `conn_status`, `conn_how_disconnect`) VALUES + (241, 4, 0, '', 0, 1614003402, 0, '0.0.0', '1.0', '4', 0, 0); +INSERT INTO `conn_main` (`conn_id`, `conn_server`, `conn_auth`, `conn_name`, `conn_ip`, `conn_when_connect`, `conn_when_disconnect`, `conn_client_version`, `conn_script_version`, `conn_game_version`, `conn_status`, `conn_how_disconnect`) VALUES + (242, 4, 0, '', 0, 1614003451, 0, '0.0.0', '1.0', '4', 0, 0); +INSERT INTO `conn_main` (`conn_id`, `conn_server`, `conn_auth`, `conn_name`, `conn_ip`, `conn_when_connect`, `conn_when_disconnect`, `conn_client_version`, `conn_script_version`, `conn_game_version`, `conn_status`, `conn_how_disconnect`) VALUES + (243, 4, 0, '', 0, 1614003461, 0, '0.0.0', '1.0', '4', 0, 0); +INSERT INTO `conn_main` (`conn_id`, `conn_server`, `conn_auth`, `conn_name`, `conn_ip`, `conn_when_connect`, `conn_when_disconnect`, `conn_client_version`, `conn_script_version`, `conn_game_version`, `conn_status`, `conn_how_disconnect`) VALUES + (244, 4, 0, '', 0, 1614003484, 0, '0.0.0', '1.0', '4', 0, 0); +INSERT INTO `conn_main` (`conn_id`, `conn_server`, `conn_auth`, `conn_name`, `conn_ip`, `conn_when_connect`, `conn_when_disconnect`, `conn_client_version`, `conn_script_version`, `conn_game_version`, `conn_status`, `conn_how_disconnect`) VALUES + (245, 4, 0, '', 0, 1614004166, 0, '0.0.0', '1.0', '4', 0, 0); +INSERT INTO `conn_main` (`conn_id`, `conn_server`, `conn_auth`, `conn_name`, `conn_ip`, `conn_when_connect`, `conn_when_disconnect`, `conn_client_version`, `conn_script_version`, `conn_game_version`, `conn_status`, `conn_how_disconnect`) VALUES + (246, 4, 0, '', 0, 1614004169, 0, '0.0.0', '1.0', '4', 0, 0); +INSERT INTO `conn_main` (`conn_id`, `conn_server`, `conn_auth`, `conn_name`, `conn_ip`, `conn_when_connect`, `conn_when_disconnect`, `conn_client_version`, `conn_script_version`, `conn_game_version`, `conn_status`, `conn_how_disconnect`) VALUES + (247, 1, 0, '', 0, 1614041180, 0, '0.0.0', '1.0', '1', 0, 0); +INSERT INTO `conn_main` (`conn_id`, `conn_server`, `conn_auth`, `conn_name`, `conn_ip`, `conn_when_connect`, `conn_when_disconnect`, `conn_client_version`, `conn_script_version`, `conn_game_version`, `conn_status`, `conn_how_disconnect`) VALUES + (248, 4, 0, '', 0, 1614041208, 0, '0.0.0', '1.0', '4', 0, 0); +INSERT INTO `conn_main` (`conn_id`, `conn_server`, `conn_auth`, `conn_name`, `conn_ip`, `conn_when_connect`, `conn_when_disconnect`, `conn_client_version`, `conn_script_version`, `conn_game_version`, `conn_status`, `conn_how_disconnect`) VALUES + (249, 4, 0, '', 0, 1614041316, 0, '0.0.0', '1.0', '4', 0, 0); +INSERT INTO `conn_main` (`conn_id`, `conn_server`, `conn_auth`, `conn_name`, `conn_ip`, `conn_when_connect`, `conn_when_disconnect`, `conn_client_version`, `conn_script_version`, `conn_game_version`, `conn_status`, `conn_how_disconnect`) VALUES + (250, 4, 0, '', 0, 1614041829, 0, '0.0.0', '1.0', '4', 0, 0); +INSERT INTO `conn_main` (`conn_id`, `conn_server`, `conn_auth`, `conn_name`, `conn_ip`, `conn_when_connect`, `conn_when_disconnect`, `conn_client_version`, `conn_script_version`, `conn_game_version`, `conn_status`, `conn_how_disconnect`) VALUES + (251, 4, 0, '', 0, 1614041925, 0, '0.0.0', '1.0', '4', 0, 0); +INSERT INTO `conn_main` (`conn_id`, `conn_server`, `conn_auth`, `conn_name`, `conn_ip`, `conn_when_connect`, `conn_when_disconnect`, `conn_client_version`, `conn_script_version`, `conn_game_version`, `conn_status`, `conn_how_disconnect`) VALUES + (252, 4, 0, '', 0, 1614041970, 0, '0.0.0', '1.0', '4', 0, 0); +INSERT INTO `conn_main` (`conn_id`, `conn_server`, `conn_auth`, `conn_name`, `conn_ip`, `conn_when_connect`, `conn_when_disconnect`, `conn_client_version`, `conn_script_version`, `conn_game_version`, `conn_status`, `conn_how_disconnect`) VALUES + (253, 3, 0, '', 0, 1614050071, 0, '0.0.0', '1.0', '9', 0, 0); +INSERT INTO `conn_main` (`conn_id`, `conn_server`, `conn_auth`, `conn_name`, `conn_ip`, `conn_when_connect`, `conn_when_disconnect`, `conn_client_version`, `conn_script_version`, `conn_game_version`, `conn_status`, `conn_how_disconnect`) VALUES + (254, 3, 0, '', 0, 1614050222, 0, '0.0.0', '1.0', '9', 0, 0); +INSERT INTO `conn_main` (`conn_id`, `conn_server`, `conn_auth`, `conn_name`, `conn_ip`, `conn_when_connect`, `conn_when_disconnect`, `conn_client_version`, `conn_script_version`, `conn_game_version`, `conn_status`, `conn_how_disconnect`) VALUES + (255, 3, 0, '', 0, 1614050384, 0, '0.0.0', '1.0', '9', 0, 0); +INSERT INTO `conn_main` (`conn_id`, `conn_server`, `conn_auth`, `conn_name`, `conn_ip`, `conn_when_connect`, `conn_when_disconnect`, `conn_client_version`, `conn_script_version`, `conn_game_version`, `conn_status`, `conn_how_disconnect`) VALUES + (256, 3, 0, '', 0, 1614050384, 0, '0.0.0', '1.0', '9', 0, 0); +INSERT INTO `conn_main` (`conn_id`, `conn_server`, `conn_auth`, `conn_name`, `conn_ip`, `conn_when_connect`, `conn_when_disconnect`, `conn_client_version`, `conn_script_version`, `conn_game_version`, `conn_status`, `conn_how_disconnect`) VALUES + (257, 3, 0, '', 0, 1614050405, 0, '0.0.0', '1.0', '10', 0, 0); +INSERT INTO `conn_main` (`conn_id`, `conn_server`, `conn_auth`, `conn_name`, `conn_ip`, `conn_when_connect`, `conn_when_disconnect`, `conn_client_version`, `conn_script_version`, `conn_game_version`, `conn_status`, `conn_how_disconnect`) VALUES + (258, 3, 0, '', 0, 1614051208, 0, '0.0.0', '1.0', '10', 0, 0); +INSERT INTO `conn_main` (`conn_id`, `conn_server`, `conn_auth`, `conn_name`, `conn_ip`, `conn_when_connect`, `conn_when_disconnect`, `conn_client_version`, `conn_script_version`, `conn_game_version`, `conn_status`, `conn_how_disconnect`) VALUES + (259, 3, 0, '', 0, 1614051218, 0, '0.0.0', '1.0', '9', 0, 0); +INSERT INTO `conn_main` (`conn_id`, `conn_server`, `conn_auth`, `conn_name`, `conn_ip`, `conn_when_connect`, `conn_when_disconnect`, `conn_client_version`, `conn_script_version`, `conn_game_version`, `conn_status`, `conn_how_disconnect`) VALUES + (260, 3, 0, '', 0, 1614051348, 0, '0.0.0', '1.0', '10', 0, 0); +INSERT INTO `conn_main` (`conn_id`, `conn_server`, `conn_auth`, `conn_name`, `conn_ip`, `conn_when_connect`, `conn_when_disconnect`, `conn_client_version`, `conn_script_version`, `conn_game_version`, `conn_status`, `conn_how_disconnect`) VALUES + (261, 3, 0, '', 0, 1614051373, 0, '0.0.0', '1.0', '9', 0, 0); +INSERT INTO `conn_main` (`conn_id`, `conn_server`, `conn_auth`, `conn_name`, `conn_ip`, `conn_when_connect`, `conn_when_disconnect`, `conn_client_version`, `conn_script_version`, `conn_game_version`, `conn_status`, `conn_how_disconnect`) VALUES + (262, 3, 0, '', 0, 1614051463, 0, '0.0.0', '1.0', '9', 0, 0); +INSERT INTO `conn_main` (`conn_id`, `conn_server`, `conn_auth`, `conn_name`, `conn_ip`, `conn_when_connect`, `conn_when_disconnect`, `conn_client_version`, `conn_script_version`, `conn_game_version`, `conn_status`, `conn_how_disconnect`) VALUES + (263, 3, 0, '', 0, 1614051960, 0, '0.0.0', '1.0', '10', 0, 0); +INSERT INTO `conn_main` (`conn_id`, `conn_server`, `conn_auth`, `conn_name`, `conn_ip`, `conn_when_connect`, `conn_when_disconnect`, `conn_client_version`, `conn_script_version`, `conn_game_version`, `conn_status`, `conn_how_disconnect`) VALUES + (264, 3, 0, '', 0, 1614052027, 0, '0.0.0', '1.0', '10', 0, 0); +INSERT INTO `conn_main` (`conn_id`, `conn_server`, `conn_auth`, `conn_name`, `conn_ip`, `conn_when_connect`, `conn_when_disconnect`, `conn_client_version`, `conn_script_version`, `conn_game_version`, `conn_status`, `conn_how_disconnect`) VALUES + (265, 3, 0, '', 0, 1614052027, 0, '0.0.0', '1.0', '10', 0, 0); +INSERT INTO `conn_main` (`conn_id`, `conn_server`, `conn_auth`, `conn_name`, `conn_ip`, `conn_when_connect`, `conn_when_disconnect`, `conn_client_version`, `conn_script_version`, `conn_game_version`, `conn_status`, `conn_how_disconnect`) VALUES + (266, 1, 0, '', 0, 1614363829, 0, '0.0.0', '1.0', '1', 0, 0); +INSERT INTO `conn_main` (`conn_id`, `conn_server`, `conn_auth`, `conn_name`, `conn_ip`, `conn_when_connect`, `conn_when_disconnect`, `conn_client_version`, `conn_script_version`, `conn_game_version`, `conn_status`, `conn_how_disconnect`) VALUES + (267, 1, 0, '', 0, 1614363936, 0, '0.0.0', '1.0', '1', 0, 0); +INSERT INTO `conn_main` (`conn_id`, `conn_server`, `conn_auth`, `conn_name`, `conn_ip`, `conn_when_connect`, `conn_when_disconnect`, `conn_client_version`, `conn_script_version`, `conn_game_version`, `conn_status`, `conn_how_disconnect`) VALUES + (268, 1, 0, '', 0, 1614364033, 0, '0.0.0', '1.0', '1', 0, 0); +INSERT INTO `conn_main` (`conn_id`, `conn_server`, `conn_auth`, `conn_name`, `conn_ip`, `conn_when_connect`, `conn_when_disconnect`, `conn_client_version`, `conn_script_version`, `conn_game_version`, `conn_status`, `conn_how_disconnect`) VALUES + (269, 1, 0, '', 0, 1614364646, 0, '0.0.0', '1.0', '1', 0, 0); +INSERT INTO `conn_main` (`conn_id`, `conn_server`, `conn_auth`, `conn_name`, `conn_ip`, `conn_when_connect`, `conn_when_disconnect`, `conn_client_version`, `conn_script_version`, `conn_game_version`, `conn_status`, `conn_how_disconnect`) VALUES + (270, 1, 0, '', 0, 1614364767, 0, '0.0.0', '1.0', '1', 0, 0); +INSERT INTO `conn_main` (`conn_id`, `conn_server`, `conn_auth`, `conn_name`, `conn_ip`, `conn_when_connect`, `conn_when_disconnect`, `conn_client_version`, `conn_script_version`, `conn_game_version`, `conn_status`, `conn_how_disconnect`) VALUES + (271, 1, 0, '', 0, 1614365122, 0, '0.0.0', '1.0', '1', 0, 0); +INSERT INTO `conn_main` (`conn_id`, `conn_server`, `conn_auth`, `conn_name`, `conn_ip`, `conn_when_connect`, `conn_when_disconnect`, `conn_client_version`, `conn_script_version`, `conn_game_version`, `conn_status`, `conn_how_disconnect`) VALUES + (272, 1, 0, '', 0, 1614365161, 0, '0.0.0', '1.0', '1', 0, 0); +INSERT INTO `conn_main` (`conn_id`, `conn_server`, `conn_auth`, `conn_name`, `conn_ip`, `conn_when_connect`, `conn_when_disconnect`, `conn_client_version`, `conn_script_version`, `conn_game_version`, `conn_status`, `conn_how_disconnect`) VALUES + (273, 1, 0, '', 0, 1614365271, 0, '0.0.0', '1.0', '1', 0, 0); +INSERT INTO `conn_main` (`conn_id`, `conn_server`, `conn_auth`, `conn_name`, `conn_ip`, `conn_when_connect`, `conn_when_disconnect`, `conn_client_version`, `conn_script_version`, `conn_game_version`, `conn_status`, `conn_how_disconnect`) VALUES + (274, 1, 0, '', 0, 1614369177, 0, '0.0.0', '1.0', '1', 0, 0); +INSERT INTO `conn_main` (`conn_id`, `conn_server`, `conn_auth`, `conn_name`, `conn_ip`, `conn_when_connect`, `conn_when_disconnect`, `conn_client_version`, `conn_script_version`, `conn_game_version`, `conn_status`, `conn_how_disconnect`) VALUES + (275, 1, 0, '', 0, 1614369493, 0, '0.0.0', '1.0', '1', 0, 0); +INSERT INTO `conn_main` (`conn_id`, `conn_server`, `conn_auth`, `conn_name`, `conn_ip`, `conn_when_connect`, `conn_when_disconnect`, `conn_client_version`, `conn_script_version`, `conn_game_version`, `conn_status`, `conn_how_disconnect`) VALUES + (276, 1, 0, '', 0, 1615124526, 0, '0.0.0', '1.0', '1', 0, 0); +INSERT INTO `conn_main` (`conn_id`, `conn_server`, `conn_auth`, `conn_name`, `conn_ip`, `conn_when_connect`, `conn_when_disconnect`, `conn_client_version`, `conn_script_version`, `conn_game_version`, `conn_status`, `conn_how_disconnect`) VALUES + (277, 1, 0, '', 0, 1615124573, 0, '0.0.0', '1.0', '1', 0, 0); +INSERT INTO `conn_main` (`conn_id`, `conn_server`, `conn_auth`, `conn_name`, `conn_ip`, `conn_when_connect`, `conn_when_disconnect`, `conn_client_version`, `conn_script_version`, `conn_game_version`, `conn_status`, `conn_how_disconnect`) VALUES + (278, 1, 0, '', 0, 1615124910, 0, '0.0.0', '1.0', '1', 0, 0); +INSERT INTO `conn_main` (`conn_id`, `conn_server`, `conn_auth`, `conn_name`, `conn_ip`, `conn_when_connect`, `conn_when_disconnect`, `conn_client_version`, `conn_script_version`, `conn_game_version`, `conn_status`, `conn_how_disconnect`) VALUES + (279, 1, 0, '', 0, 1615125019, 0, '0.0.0', '1.0', '1', 0, 0); +INSERT INTO `conn_main` (`conn_id`, `conn_server`, `conn_auth`, `conn_name`, `conn_ip`, `conn_when_connect`, `conn_when_disconnect`, `conn_client_version`, `conn_script_version`, `conn_game_version`, `conn_status`, `conn_how_disconnect`) VALUES + (280, 1, 0, '', 0, 1615125140, 0, '0.0.0', '1.0', '1', 0, 0); +INSERT INTO `conn_main` (`conn_id`, `conn_server`, `conn_auth`, `conn_name`, `conn_ip`, `conn_when_connect`, `conn_when_disconnect`, `conn_client_version`, `conn_script_version`, `conn_game_version`, `conn_status`, `conn_how_disconnect`) VALUES + (281, 1, 0, '', 0, 1615127090, 0, '0.0.0', '1.0', '1', 0, 0); +INSERT INTO `conn_main` (`conn_id`, `conn_server`, `conn_auth`, `conn_name`, `conn_ip`, `conn_when_connect`, `conn_when_disconnect`, `conn_client_version`, `conn_script_version`, `conn_game_version`, `conn_status`, `conn_how_disconnect`) VALUES + (282, 1, 0, '', 0, 1615134125, 0, '0.0.0', '1.0', '1', 0, 0); +INSERT INTO `conn_main` (`conn_id`, `conn_server`, `conn_auth`, `conn_name`, `conn_ip`, `conn_when_connect`, `conn_when_disconnect`, `conn_client_version`, `conn_script_version`, `conn_game_version`, `conn_status`, `conn_how_disconnect`) VALUES + (283, 1, 0, '', 0, 1615134679, 0, '0.0.0', '1.0', '1', 0, 0); +INSERT INTO `conn_main` (`conn_id`, `conn_server`, `conn_auth`, `conn_name`, `conn_ip`, `conn_when_connect`, `conn_when_disconnect`, `conn_client_version`, `conn_script_version`, `conn_game_version`, `conn_status`, `conn_how_disconnect`) VALUES + (284, 1, 0, '', 0, 1615136696, 0, '0.0.0', '1.0', '1', 0, 0); +INSERT INTO `conn_main` (`conn_id`, `conn_server`, `conn_auth`, `conn_name`, `conn_ip`, `conn_when_connect`, `conn_when_disconnect`, `conn_client_version`, `conn_script_version`, `conn_game_version`, `conn_status`, `conn_how_disconnect`) VALUES + (285, 1, 0, '', 0, 1615147765, 0, '0.0.0', '1.0', '1', 0, 0); +INSERT INTO `conn_main` (`conn_id`, `conn_server`, `conn_auth`, `conn_name`, `conn_ip`, `conn_when_connect`, `conn_when_disconnect`, `conn_client_version`, `conn_script_version`, `conn_game_version`, `conn_status`, `conn_how_disconnect`) VALUES + (286, 1, 0, '', 0, 1615207053, 0, '0.0.0', '1.0', '1', 0, 0); +INSERT INTO `conn_main` (`conn_id`, `conn_server`, `conn_auth`, `conn_name`, `conn_ip`, `conn_when_connect`, `conn_when_disconnect`, `conn_client_version`, `conn_script_version`, `conn_game_version`, `conn_status`, `conn_how_disconnect`) VALUES + (287, 1, 0, '', 0, 1615208045, 0, '0.0.0', '1.0', '1', 0, 0); +INSERT INTO `conn_main` (`conn_id`, `conn_server`, `conn_auth`, `conn_name`, `conn_ip`, `conn_when_connect`, `conn_when_disconnect`, `conn_client_version`, `conn_script_version`, `conn_game_version`, `conn_status`, `conn_how_disconnect`) VALUES + (288, 1, 0, '', 0, 1615208149, 0, '0.0.0', '1.0', '1', 0, 0); +INSERT INTO `conn_main` (`conn_id`, `conn_server`, `conn_auth`, `conn_name`, `conn_ip`, `conn_when_connect`, `conn_when_disconnect`, `conn_client_version`, `conn_script_version`, `conn_game_version`, `conn_status`, `conn_how_disconnect`) VALUES + (289, 1, 0, '', 0, 1615208274, 0, '0.0.0', '1.0', '1', 0, 0); +INSERT INTO `conn_main` (`conn_id`, `conn_server`, `conn_auth`, `conn_name`, `conn_ip`, `conn_when_connect`, `conn_when_disconnect`, `conn_client_version`, `conn_script_version`, `conn_game_version`, `conn_status`, `conn_how_disconnect`) VALUES + (290, 1, 0, '', 0, 1615208373, 0, '0.0.0', '1.0', '1', 0, 0); +INSERT INTO `conn_main` (`conn_id`, `conn_server`, `conn_auth`, `conn_name`, `conn_ip`, `conn_when_connect`, `conn_when_disconnect`, `conn_client_version`, `conn_script_version`, `conn_game_version`, `conn_status`, `conn_how_disconnect`) VALUES + (291, 1, 0, '', 0, 1615208487, 0, '0.0.0', '1.0', '1', 0, 0); +INSERT INTO `conn_main` (`conn_id`, `conn_server`, `conn_auth`, `conn_name`, `conn_ip`, `conn_when_connect`, `conn_when_disconnect`, `conn_client_version`, `conn_script_version`, `conn_game_version`, `conn_status`, `conn_how_disconnect`) VALUES + (292, 1, 0, '', 0, 1615208839, 0, '0.0.0', '1.0', '1', 0, 0); +INSERT INTO `conn_main` (`conn_id`, `conn_server`, `conn_auth`, `conn_name`, `conn_ip`, `conn_when_connect`, `conn_when_disconnect`, `conn_client_version`, `conn_script_version`, `conn_game_version`, `conn_status`, `conn_how_disconnect`) VALUES + (293, 1, 0, '', 0, 1615209668, 0, '0.0.0', '1.0', '1', 0, 0); +/*!40000 ALTER TABLE `conn_main` ENABLE KEYS */; + +-- Dumping structure for table gtac_main.error_main +CREATE TABLE IF NOT EXISTS `error_main` ( + `error_id` int(11) NOT NULL AUTO_INCREMENT, + `error_server` int(11) NOT NULL DEFAULT '0', + `error_when_added` bigint(20) NOT NULL DEFAULT '0', + `error_script_ver` varchar(16) NOT NULL DEFAULT '0.0', + `error_module` int(11) NOT NULL DEFAULT '0', + `error_file` text NOT NULL, + `error_line` int(11) NOT NULL DEFAULT '0', + `error_locals` text NOT NULL, + `error_func` varchar(128) NOT NULL DEFAULT 'Unknown', + PRIMARY KEY (`error_id`) +) ENGINE=InnoDB DEFAULT CHARSET=latin1 COMMENT='Error Reports'; + +-- Dumping data for table gtac_main.error_main: ~0 rows (approximately) +/*!40000 ALTER TABLE `error_main` DISABLE KEYS */; +/*!40000 ALTER TABLE `error_main` ENABLE KEYS */; + +-- Dumping structure for table gtac_main.house_main +CREATE TABLE IF NOT EXISTS `house_main` ( + `house_id` int(11) NOT NULL AUTO_INCREMENT, + `house_server` int(11) NOT NULL DEFAULT '0', + `house_description` varchar(64) CHARACTER SET utf8 COLLATE utf8_unicode_ci NOT NULL DEFAULT 'Unnamed', + `house_owner_type` int(11) NOT NULL DEFAULT '0', + `house_owner_id` int(11) NOT NULL DEFAULT '0', + `house_locked` tinyint(1) NOT NULL DEFAULT '0', + `house_buy_price` int(11) NOT NULL DEFAULT '0', + `house_rent_price` int(11) NOT NULL DEFAULT '0', + `house_renter` int(11) NOT NULL DEFAULT '0', + `house_entrance_pos_x` float NOT NULL DEFAULT '0', + `house_entrance_pos_y` float NOT NULL DEFAULT '0', + `house_entrance_pos_z` float NOT NULL DEFAULT '0', + `house_entrance_rot_z` float NOT NULL DEFAULT '0', + `house_entrance_int` smallint(6) NOT NULL DEFAULT '0', + `house_entrance_vw` int(11) NOT NULL DEFAULT '0', + `house_entrance_pickup` int(11) NOT NULL DEFAULT '0', + `house_entrance_blip` int(11) NOT NULL DEFAULT '-1', + `house_exit_pos_x` float NOT NULL DEFAULT '0', + `house_exit_pos_y` float NOT NULL DEFAULT '0', + `house_exit_pos_z` float NOT NULL DEFAULT '0', + `house_exit_rot_z` float NOT NULL DEFAULT '0', + `house_exit_int` int(11) NOT NULL DEFAULT '0', + `house_exit_vw` int(11) NOT NULL DEFAULT '0', + `house_exit_pickup` int(11) NOT NULL DEFAULT '0', + `house_exit_blip` int(11) NOT NULL DEFAULT '0', + `house_has_interior` tinyint(1) NOT NULL DEFAULT '0', + PRIMARY KEY (`house_id`) USING BTREE, + KEY `house_server` (`house_server`), + KEY `house_owner` (`house_owner_type`,`house_owner_id`), + CONSTRAINT `fk_house_server` FOREIGN KEY (`house_server`) REFERENCES `svr_main` (`svr_id`) ON DELETE CASCADE ON UPDATE CASCADE +) ENGINE=InnoDB AUTO_INCREMENT=2235 DEFAULT CHARSET=latin1 COMMENT='Houses'; + +-- Dumping data for table gtac_main.house_main: ~2,231 rows (approximately) +/*!40000 ALTER TABLE `house_main` DISABLE KEYS */; +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1, 4, 'Madd Doggs House', 0, 0, 0, 5250000, 0, 0, 1298.55, -798.18, 84.14, 0, 0, 0, 0, -1, 1298.81, -796.66, 1084.01, 0, 5, 101, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (2, 4, 'Small Cottage', 0, 0, 0, 25000, 0, 0, -418.65, -1759.54, 6.21, 0, 0, 0, 0, -1, 244.41, 305.03, 999.15, 0, 1, 102, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (3, 4, 'Mexican Style House', 0, 0, 0, 350000, 0, 0, 657.22, -1652.65, 15.4, 0, 0, 0, 0, -1, 2365.27, -1135.59, 1050.88, 0, 8, 103, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (4, 4, 'Mexican Style House', 0, 0, 0, 350000, 0, 0, 693.76, -1645.79, 4.09, 0, 0, 0, 0, -1, 2365.27, -1135.59, 1050.88, 0, 8, 104, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (5, 4, 'Mexican Style House', 0, 0, 0, 350000, 0, 0, 693.57, -1705.87, 3.81, 0, 0, 0, 0, -1, 2365.27, -1135.59, 1050.88, 0, 8, 105, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (6, 4, 'Mexican Style House', 0, 0, 0, 350000, 0, 0, 766.9, -1606.18, 13.8, 0, 0, 0, 0, -1, 2365.27, -1135.59, 1050.88, 0, 8, 106, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (7, 4, 'Mexican Style House', 0, 0, 0, 350000, 0, 0, 768.07, -1655.99, 5.6, 0, 0, 0, 0, -1, 2365.27, -1135.59, 1050.88, 0, 8, 107, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (8, 4, 'Mexican Style House', 0, 0, 0, 350000, 0, 0, 769.22, -1696.74, 5.15, 0, 0, 0, 0, -1, 2365.27, -1135.59, 1050.88, 0, 8, 108, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (9, 4, 'Mexican Style House', 0, 0, 0, 350000, 0, 0, 769.2, -1745.85, 13.07, 0, 0, 0, 0, -1, 2365.27, -1135.59, 1050.88, 0, 8, 109, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (10, 4, 'Mexican Style House', 0, 0, 0, 350000, 0, 0, 653.58, -1714, 14.76, 0, 0, 0, 0, -1, 2365.27, -1135.59, 1050.88, 0, 8, 110, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (11, 4, 'Mexican Style House', 0, 0, 0, 350000, 0, 0, 1906.04, -1112.94, 26.66, 0, 0, 0, 0, -1, 2365.27, -1135.59, 1050.88, 0, 8, 111, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (12, 4, 'Mexican Style House', 0, 0, 0, 350000, 0, 0, 1939.23, -1114.51, 27.45, 0, 0, 0, 0, -1, 2365.27, -1135.59, 1050.88, 0, 8, 112, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (13, 4, 'Mexican Style House', 0, 0, 0, 350000, 0, 0, 1999.97, -1114.05, 27.12, 0, 0, 0, 0, -1, 2365.27, -1135.59, 1050.88, 0, 8, 113, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (14, 4, 'Mexican Style House', 0, 0, 0, 350000, 0, 0, 2022.92, -1120.26, 26.42, 0, 0, 0, 0, -1, 2365.27, -1135.59, 1050.88, 0, 8, 114, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (15, 4, 'Mexican Style House', 0, 0, 0, 350000, 0, 0, 2095.33, -1145.13, 26.59, 0, 0, 0, 0, -1, 2365.27, -1135.59, 1050.88, 0, 8, 115, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (16, 4, 'Mexican Style House', 0, 0, 0, 350000, 0, 0, 2092.24, -1166.36, 26.58, 0, 0, 0, 0, -1, 2365.27, -1135.59, 1050.88, 0, 8, 116, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (17, 4, 'Mexican Style House', 0, 0, 0, 350000, 0, 0, 793.99, -1707.45, 14.03, 0, 0, 0, 0, -1, 2365.27, -1135.59, 1050.88, 0, 8, 117, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (18, 4, 'Simple House', 0, 0, 0, 65000, 0, 0, 1886.26, -1113.66, 26.27, 0, 0, 0, 0, -1, 260.77, 1237.26, 1084.25, 0, 9, 118, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (19, 4, 'Simple House', 0, 0, 0, 65000, 100, 0, 1921.35, -1115.18, 27.08, 0, 0, 0, 0, -1, 260.77, 1237.26, 1084.25, 0, 9, 119, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (20, 4, 'Simple House', 0, 0, 0, 65000, 400, 0, 1955.4, -1115.35, 27.83, 0, 0, 0, 0, -1, 260.77, 1237.26, 1084.25, 0, 9, 120, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (21, 4, 'Simple House', 0, 0, 0, 65000, 0, 0, 2045.5, -1116.63, 26.36, 0, 0, 0, 0, -1, 260.77, 1237.26, 1084.25, 0, 9, 121, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (22, 4, 'Simple House', 0, 0, 0, 65000, 650, 0, 2093.99, -1122.78, 27.68, 0, 0, 0, 0, -1, 260.77, 1237.26, 1084.25, 0, 9, 122, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (23, 4, 'Simple House', 0, 0, 0, 65000, 0, 0, 2091.67, -1184.45, 27.05, 0, 0, 0, 0, -1, 260.77, 1237.26, 1084.25, 0, 9, 123, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (24, 4, 'Simple House', 0, 0, 0, 65000, 0, 0, 769.05, -1726.35, 13.43, 0, 0, 0, 0, -1, 260.77, 1237.26, 1084.25, 0, 9, 124, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (25, 4, 'Simple House', 0, 0, 0, 65000, 0, 0, 794.89, -1691.99, 14.46, 0, 0, 0, 0, -1, 260.77, 1237.26, 1084.25, 0, 9, 125, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (26, 4, 'Simple House', 0, 0, 0, 65000, 0, 0, 2495.41, -1690.94, 14.76, 0, 0, 0, 0, -1, 2495.97, -1692.08, 1014.74, 0, 3, 126, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (28, 4, 'Simple House', 0, 0, 0, 800000, 0, 0, 2126.68, -1320.68, 26.62, 0, 0, 0, 0, -1, 234.16, 1064.23, 1084.21, 0, 6, 128, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (29, 4, '2 Bedroom House', 0, 0, 0, 100000, 0, 0, 2091.05, -1278.14, 26.17, 0, 0, 0, 0, -1, 2196.53, -1204.18, 1049.02, 0, 6, 129, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (30, 4, '2 Bedroom House', 0, 0, 0, 100000, 0, 0, 2191.64, -1275.82, 25.15, 0, 0, 0, 0, -1, 2196.53, -1204.18, 1049.02, 0, 6, 130, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (31, 4, '2 Bedroom House', 0, 0, 0, 100000, 5, 0, 2229.66, -1241.52, 25.65, 0, 0, 0, 0, -1, 2196.53, -1204.18, 1049.02, 0, 6, 131, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (32, 4, 'Big Living Style', 0, 0, 0, 80000, 0, 0, 2100.94, -1321.8, 25.95, 0, 0, 0, 0, -1, 2269.92, -1210.37, 1047.56, 0, 10, 132, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (33, 4, 'Big Living Style', 0, 0, 0, 80000, 0, 0, 2132.32, -1280.12, 25.89, 0, 0, 0, 0, -1, 2269.92, -1210.37, 1047.56, 0, 10, 133, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (34, 4, 'Big Living Style', 0, 0, 0, 80000, 0, 0, 2250.2, -1280.32, 25.47, 0, 0, 0, 0, -1, 2269.92, -1210.37, 1047.56, 0, 10, 134, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (35, 4, 'Big Living Style', 0, 0, 0, 80000, 1, 0, 2249.92, -1238.89, 25.89, 0, 0, 0, 0, -1, 2269.92, -1210.37, 1047.56, 0, 10, 135, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (36, 4, 'Big Living Style', 0, 0, 0, 80000, 0, 0, 2153.82, -1243.53, 25.36, 0, 0, 0, 0, -1, 2269.92, -1210.37, 1047.56, 0, 10, 136, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (37, 4, 'Big Living Style', 0, 0, 0, 80000, 0, 0, 2110.99, -1244.32, 25.85, 0, 0, 0, 0, -1, 2269.92, -1210.37, 1047.56, 0, 10, 137, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (38, 4, 'Small House', 0, 0, 0, 45000, 5000, 0, 2148.55, -1319.82, 25.74, 0, 0, 0, 0, -1, 2282.9, -1139.99, 1050.89, 0, 11, 138, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (39, 4, 'Small House', 0, 0, 0, 45000, 0, 0, 2150.21, -1285.45, 24.19, 0, 0, 0, 0, -1, 2282.9, -1139.99, 1050.89, 0, 11, 139, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (40, 4, 'Small House', 0, 0, 0, 45000, 0, 0, 2230.1, -1280.56, 25.36, 0, 0, 0, 0, -1, 2282.9, -1139.99, 1050.89, 0, 11, 140, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (41, 4, 'Small House', 0, 0, 0, 45000, 0, 0, 2209.74, -1239.99, 24.14, 0, 0, 0, 0, -1, 2282.9, -1139.99, 1050.89, 0, 11, 141, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (42, 4, 'Minor Manor', 0, 0, 0, 50000, 0, 0, 2133.39, -1232.84, 24.42, 0, 0, 0, 0, -1, 2333.12, -1077.13, 1049.02, 0, 6, 142, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (43, 4, 'Minor Manor', 0, 0, 0, 800000, 0, 0, 2148.73, -1484.85, 26.62, 0, 0, 0, 0, -1, 234.16, 1064.23, 1084.21, 0, 6, 143, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (44, 4, 'Simple House', 0, 0, 0, 65000, 0, 0, 2023.31, -1053.15, 25.59, 0, 0, 0, 0, -1, 260.77, 1237.26, 1084.25, 0, 9, 144, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (45, 4, 'Simple House', 0, 0, 0, 65000, 0, 0, 2036.12, -1059.42, 25.65, 0, 0, 0, 0, -1, 260.77, 1237.26, 1084.25, 0, 9, 145, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (46, 4, 'Simple House', 0, 0, 0, 65000, 0, 0, 2050.9, -1065.83, 25.78, 0, 0, 0, 0, -1, 260.77, 1237.26, 1084.25, 0, 9, 146, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (47, 4, 'Small House', 0, 0, 0, 45000, 0, 0, 2150.76, -1400.63, 25.79, 0, 0, 0, 0, -1, 2282.9, -1139.99, 1050.89, 0, 11, 147, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (48, 4, 'Small House', 0, 0, 0, 45000, 0, 0, 2151.7, -1446.33, 25.77, 0, 0, 0, 0, -1, 2282.9, -1139.99, 1050.89, 0, 11, 148, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (49, 4, 'Small House', 0, 0, 0, 45000, 0, 0, 2190.69, -1487.68, 25.77, 0, 0, 0, 0, -1, 2282.9, -1139.99, 1050.89, 0, 11, 149, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (50, 4, 'Small House', 0, 0, 0, 45000, 100, 0, 2196.48, -1404.19, 25.61, 0, 0, 0, 0, -1, 2282.9, -1139.99, 1050.89, 0, 11, 150, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (51, 4, 'Small House', 0, 0, 0, 45000, 200, 0, 2147.69, -1366.65, 25.64, 0, 0, 0, 0, -1, 2282.9, -1139.99, 1050.89, 0, 11, 151, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (52, 4, '2 Bedroom House', 0, 0, 0, 100000, 200, 0, 2188.83, -1419.29, 26.15, 0, 0, 0, 0, -1, 2196.53, -1204.18, 1049.02, 0, 6, 152, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (53, 4, 'Big Living Style', 0, 0, 0, 80000, 1500, 0, 2150.8, -1419.01, 25.92, 0, 0, 0, 0, -1, 2269.92, -1210.37, 1047.56, 0, 10, 153, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (54, 4, 'Big Living Style', 0, 0, 0, 80000, 0, 0, 2190.55, -1470.42, 25.91, 0, 0, 0, 0, -1, 2269.92, -1210.37, 1047.56, 0, 10, 154, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (55, 4, 'Cheap Stuff', 0, 0, 0, 35000, 0, 0, 2149.5, -1433.73, 25.94, 0, 0, 0, 0, -1, 327.91, 1477.79, 1084.43, 0, 15, 155, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (56, 4, 'Cheap Stuff', 0, 0, 0, 25000, 0, 0, 2373.97, -1138.92, 29.05, 0, 0, 0, 0, -1, -68.85, 1351.31, 1080.21, 0, 6, 156, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (57, 4, 'Cheap Stuff', 0, 0, 0, 35000, 0, 0, 2488.07, -1135.61, 39.43, 0, 0, 0, 0, -1, 327.91, 1477.79, 1084.43, 0, 15, 157, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (58, 4, '2 Bedroom House', 0, 0, 0, 100000, 0, 0, 2394.96, -1133.67, 30.71, 0, 0, 0, 0, -1, 2196.53, -1204.18, 1049.02, 0, 6, 158, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (59, 4, 'Hallway House', 0, 0, 0, 70000, 0, 0, 2191.74, -1239.03, 24.15, 0, 0, 0, 0, -1, 260.99, 1284.29, 1080.25, 0, 4, 159, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (60, 4, 'Hallway House', 0, 0, 0, 70000, 0, 0, 2090.73, -1234.89, 25.68, 0, 0, 0, 0, -1, 260.99, 1284.29, 1080.25, 0, 4, 160, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (61, 4, 'Hallway House', 0, 0, 0, 70000, 100, 0, 2207.91, -1281.05, 24.79, 0, 0, 0, 0, -1, 260.99, 1284.29, 1080.25, 0, 4, 161, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (62, 4, 'Hallway House', 0, 0, 0, 70000, 0, 0, 2202.75, -1363.93, 25.86, 0, 0, 0, 0, -1, 260.99, 1284.29, 1080.25, 0, 4, 162, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (63, 4, 'Hallway House', 0, 0, 0, 70000, 0, 0, 2129.66, -1361.94, 25.8, 0, 0, 0, 0, -1, 260.99, 1284.29, 1080.25, 0, 4, 163, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (64, 4, 'Hallway House', 0, 0, 0, 70000, 0, 0, 2146.49, -1470.47, 25.71, 0, 0, 0, 0, -1, 260.99, 1284.29, 1080.25, 0, 4, 164, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (65, 4, 'Hallway House', 0, 0, 0, 70000, 100, 0, 2194.53, -1442.93, 25.74, 0, 0, 0, 0, -1, 260.99, 1284.29, 1080.25, 0, 4, 165, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (66, 4, 'Hallway House', 0, 0, 0, 70000, 0, 0, 2230.44, -1396.88, 24.24, 0, 0, 0, 0, -1, 260.99, 1284.29, 1080.25, 0, 4, 166, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (67, 4, 'Hallway House', 0, 0, 0, 70000, 0, 0, 2243.47, -1396.96, 24.24, 0, 0, 0, 0, -1, 260.99, 1284.29, 1080.25, 0, 4, 167, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (68, 4, 'Hallway House', 0, 0, 0, 70000, 0, 0, 2256.46, -1396.92, 24.24, 0, 0, 0, 0, -1, 260.99, 1284.29, 1080.25, 0, 4, 168, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (69, 4, 'Hallway House', 0, 0, 0, 70000, 0, 0, 2263.89, -1469.58, 24.04, 0, 0, 0, 0, -1, 260.99, 1284.29, 1080.25, 0, 4, 169, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (70, 4, 'Hallway House', 0, 0, 0, 70000, 0, 0, 2247.69, -1469.54, 24.14, 0, 0, 0, 0, -1, 260.99, 1284.29, 1080.25, 0, 4, 170, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (71, 4, 'Hallway House', 0, 0, 0, 70000, 100, 0, 2232.56, -1469.54, 24.25, 0, 0, 0, 0, -1, 260.99, 1284.29, 1080.25, 0, 4, 171, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (72, 4, 'Hallway House', 0, 0, 0, 70000, 0, 0, 2510.35, -1132.66, 41.29, 0, 0, 0, 0, -1, 260.99, 1284.29, 1080.25, 0, 4, 172, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (73, 4, 'Small House', 0, 0, 0, 45000, 0, 0, 2185.15, -1364, 25.82, 0, 0, 0, 0, -1, 2282.9, -1139.99, 1050.89, 0, 11, 173, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (74, 4, 'Light Living', 0, 0, 0, 48000, 0, 0, 2061.06, -1075.35, 25.68, 0, 0, 0, 0, -1, 2218.35, -1076.26, 1050.48, 0, 1, 174, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (75, 4, 'House', 0, 0, 0, 10500, 500, 0, 1959.58, -1070.07, 24.79, 0, 0, 0, 0, -1, 243.98, 304.98, 999.14, 0, 1, 175, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (76, 4, 'House', 0, 0, 0, 10500, 0, 0, 1954.38, -1074.93, 24.79, 0, 0, 0, 0, -1, 243.98, 304.98, 999.14, 0, 1, 176, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (77, 4, 'House', 0, 0, 0, 10500, 0, 0, 1934.04, -1071.51, 24.41, 0, 0, 0, 0, -1, 243.98, 304.98, 999.14, 0, 1, 177, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (78, 4, 'House', 0, 0, 0, 10500, 0, 0, 1939.27, -1066.39, 24.41, 0, 0, 0, 0, -1, 243.98, 304.98, 999.14, 0, 1, 178, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (79, 4, 'House', 0, 0, 0, 10500, 0, 0, 1916.88, -1064.77, 24.12, 0, 0, 0, 0, -1, 243.98, 304.98, 999.14, 0, 1, 179, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (80, 4, 'House', 0, 0, 0, 10500, 0, 0, 1912.61, -1070.55, 24.23, 0, 0, 0, 0, -1, 243.98, 304.98, 999.14, 0, 1, 180, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (81, 4, 'House', 0, 0, 0, 10500, 500, 0, 1896.04, -1064.84, 23.93, 0, 0, 0, 0, -1, 243.98, 304.98, 999.14, 0, 1, 181, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (82, 4, 'House', 0, 0, 0, 10500, 0, 0, 1891.77, -1070.53, 23.93, 0, 0, 0, 0, -1, 243.98, 304.98, 999.14, 0, 1, 182, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (83, 4, 'Light Living', 0, 0, 0, 48000, 5000, 0, 2077.3, -1056.98, 31.34, 0, 0, 0, 0, -1, 2218.35, -1076.26, 1050.48, 0, 1, 183, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (84, 4, 'House', 0, 0, 0, 80000, 0, 0, 2157.15, -1072.39, 40.49, 0, 0, 0, 0, -1, 2237.51, -1081.64, 1049.02, 0, 2, 184, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (85, 4, 'House', 0, 0, 0, 80000, 1000, 0, 2188.76, -1081.51, 43.83, 0, 0, 0, 0, -1, 2237.51, -1081.64, 1049.02, 0, 2, 185, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (86, 4, 'House', 0, 0, 0, 80000, 0, 0, 2207.5, -1100.43, 31.55, 0, 0, 0, 0, -1, 2237.51, -1081.64, 1049.02, 0, 2, 186, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (87, 4, 'House', 0, 0, 0, 1000, 0, 0, 2213.22, -1000.31, 68.23, 0, 0, 0, 0, -1, 140.23, 1366, 1083.85, 0, 5, 187, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (88, 4, 'Little Apartment', 0, 0, 0, 50000, 0, 0, 1283.54, -897.85, 42.87, 0, 0, 0, 0, -1, 328.49, 1480.59, 1084.45, 0, 15, 188, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (89, 4, 'Little Apartment', 0, 0, 0, 50000, 0, 0, 1291.02, -896.89, 42.88, 0, 0, 0, 0, -1, 328.49, 1480.59, 1084.45, 0, 15, 189, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (90, 4, 'Little Apartment', 0, 0, 0, 50000, 0, 0, 1291.02, -896.86, 46.62, 0, 0, 0, 0, -1, 328.49, 1480.59, 1084.45, 0, 15, 190, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (91, 4, 'Little Apartment', 0, 0, 0, 50000, 40, 0, 1283.53, -897.82, 46.62, 0, 0, 0, 0, -1, 328.49, 1480.59, 1084.45, 0, 15, 191, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (92, 4, 'Little Apartment', 0, 0, 0, 50000, 0, 0, 1291.82, -903.07, 46.63, 0, 0, 0, 0, -1, 328.49, 1480.59, 1084.45, 0, 15, 192, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (93, 4, 'Little Apartment', 0, 0, 0, 50000, 100, 0, 1284.36, -903.98, 46.63, 0, 0, 0, 0, -1, 328.49, 1480.59, 1084.45, 0, 15, 193, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (94, 4, 'Little Apartment', 0, 0, 0, 50000, 0, 0, 1284.34, -904.03, 42.88, 0, 0, 0, 0, -1, 328.49, 1480.59, 1084.45, 0, 15, 194, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (95, 4, 'Little Apartment', 0, 0, 0, 50000, 0, 0, 1291.83, -903.03, 42.88, 0, 0, 0, 0, -1, 328.49, 1480.59, 1084.45, 0, 15, 195, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (96, 4, 'Little Apartment', 0, 0, 0, 50000, 0, 0, 1288.34, -873.89, 43.06, 0, 0, 0, 0, -1, 328.49, 1480.59, 1084.45, 0, 15, 196, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (97, 4, 'Little Apartment', 0, 0, 0, 50000, 0, 0, 1280.86, -874.85, 42.93, 0, 0, 0, 0, -1, 328.49, 1480.59, 1084.45, 0, 15, 197, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (98, 4, 'Little Apartment', 0, 0, 0, 50000, 0, 0, 1287.53, -867.68, 43.14, 0, 0, 0, 0, -1, 328.49, 1480.59, 1084.45, 0, 15, 198, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (99, 4, 'Little Apartment', 0, 0, 0, 50000, 0, 0, 1280.08, -868.62, 42.92, 0, 0, 0, 0, -1, 328.49, 1480.59, 1084.45, 0, 15, 199, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (100, 4, 'Little Apartment', 0, 0, 0, 50000, 5000, 0, 1287.53, -867.74, 46.83, 0, 0, 0, 0, -1, 328.49, 1480.59, 1084.45, 0, 15, 200, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (101, 4, 'Little Apartment', 0, 0, 0, 50000, 250, 0, 1280.04, -868.61, 46.83, 0, 0, 0, 0, -1, 328.49, 1480.59, 1084.45, 0, 15, 201, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (102, 4, 'Little Apartment', 0, 0, 0, 50000, 0, 0, 1288.33, -873.82, 46.84, 0, 0, 0, 0, -1, 328.49, 1480.59, 1084.45, 0, 15, 202, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (103, 4, 'Little Apartment', 0, 0, 0, 50000, 0, 0, 1280.86, -874.86, 46.84, 0, 0, 0, 0, -1, 328.49, 1480.59, 1084.45, 0, 15, 203, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (104, 4, 'Little Apartment', 0, 0, 0, 50000, 0, 0, 1249.61, -877.3, 42.88, 0, 0, 0, 0, -1, 328.49, 1480.59, 1084.45, 0, 15, 204, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (105, 4, 'Little Apartment', 0, 0, 0, 50000, 0, 0, 1242.11, -878.23, 42.87, 0, 0, 0, 0, -1, 328.49, 1480.59, 1084.45, 0, 15, 205, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (106, 4, 'Little Apartment', 0, 0, 0, 50000, 0, 0, 1248.8, -871.14, 42.88, 0, 0, 0, 0, -1, 328.49, 1480.59, 1084.45, 0, 15, 206, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (107, 4, 'Little Apartment', 0, 0, 0, 50000, 0, 0, 1241.31, -872.09, 42.88, 0, 0, 0, 0, -1, 328.49, 1480.59, 1084.45, 0, 15, 207, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (108, 4, 'Little Apartment', 0, 0, 0, 50000, 0, 0, 1248.8, -871.15, 46.63, 0, 0, 0, 0, -1, 328.49, 1480.59, 1084.45, 0, 15, 208, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (109, 4, 'Little Apartment', 0, 0, 0, 50000, 0, 0, 1241.3, -872.06, 46.63, 0, 0, 0, 0, -1, 328.49, 1480.59, 1084.45, 0, 15, 209, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (110, 4, 'Little Apartment', 0, 0, 0, 50000, 0, 0, 1249.61, -877.28, 46.64, 0, 0, 0, 0, -1, 328.49, 1480.59, 1084.45, 0, 15, 210, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (111, 4, 'Little Apartment', 0, 0, 0, 50000, 0, 0, 1242.12, -878.22, 46.64, 0, 0, 0, 0, -1, 328.49, 1480.59, 1084.45, 0, 15, 211, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (112, 4, 'Little Apartment', 0, 0, 0, 50000, 0, 0, 1252.88, -901.87, 42.88, 0, 0, 0, 0, -1, 328.49, 1480.59, 1084.45, 0, 15, 212, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (113, 4, 'Little Apartment', 0, 0, 0, 50000, 0, 0, 1245.4, -902.83, 42.88, 0, 0, 0, 0, -1, 328.49, 1480.59, 1084.45, 0, 15, 213, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (114, 4, 'Little Apartment', 0, 0, 0, 50000, 0, 0, 1253.7, -908.06, 42.88, 0, 0, 0, 0, -1, 328.49, 1480.59, 1084.45, 0, 15, 214, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (115, 4, 'Little Apartment', 0, 0, 0, 50000, 0, 0, 1246.24, -909.03, 42.88, 0, 0, 0, 0, -1, 328.49, 1480.59, 1084.45, 0, 15, 215, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (116, 4, 'Little Apartment', 0, 0, 0, 50000, 0, 0, 1246.21, -908.98, 46.6, 0, 0, 0, 0, -1, 328.49, 1480.59, 1084.45, 0, 15, 216, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (117, 4, 'Little Apartment', 0, 0, 0, 50000, 0, 0, 1253.71, -908.1, 46.6, 0, 0, 0, 0, -1, 328.49, 1480.59, 1084.45, 0, 15, 217, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (118, 4, 'Little Apartment', 0, 0, 0, 50000, 0, 0, 1245.4, -902.8, 46.59, 0, 0, 0, 0, -1, 328.49, 1480.59, 1084.45, 0, 15, 218, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (119, 4, 'Little Apartment', 0, 0, 0, 50000, 0, 0, 1252.89, -901.88, 46.59, 0, 0, 0, 0, -1, 328.49, 1480.59, 1084.45, 0, 15, 219, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (120, 4, 'Major Manor', 0, 0, 0, 50000, 0, 0, 1111.5, -976.3, 42.76, 0, 0, 0, 0, -1, 2333.12, -1077.13, 1049.02, 0, 6, 220, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (121, 4, 'Major Manor', 0, 0, 0, 3000000, 0, 0, 1496.99, -687.89, 95.56, 0, 0, 0, 0, -1, 225.7, 1021.44, 1084.01, 0, 7, 221, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (122, 4, 'Major Manor', 0, 0, 0, 3000000, 0, 0, 980.47, -677.26, 121.97, 0, 0, 0, 0, -1, 225.7, 1021.44, 1084.01, 0, 7, 222, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (123, 4, 'Major Manor', 0, 0, 0, 3000000, 0, 0, 251.43, -1220.21, 76.1, 0, 0, 0, 0, -1, 225.7, 1021.44, 1084.01, 0, 7, 223, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (124, 4, 'Fancy Mansion', 0, 0, 0, 1800000, 0, 0, 253.18, -1270.01, 74.42, 0, 0, 0, 0, -1, 140.23, 1366, 1083.85, 0, 5, 224, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (125, 4, 'Major Manor', 0, 0, 0, 1800000, 0, 0, 300.25, -1154.46, 81.39, 0, 0, 0, 0, -1, 140.23, 1366, 1083.85, 0, 5, 225, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (126, 4, 'Major Manor', 0, 0, 0, 1800000, 0, 0, 189.63, -1308.16, 70.24, 0, 0, 0, 0, -1, 140.23, 1366, 1083.85, 0, 5, 226, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (127, 4, 'Major Manor', 0, 0, 0, 3000000, 0, 0, 1122.7, -2036.98, 69.89, 0, 0, 0, 0, -1, 1298.8, -796.9, 1084.01, 0, 5, 227, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (128, 4, 'Major Manor', 0, 0, 0, 800000, 5000, 0, 1981.07, -1682.85, 17.05, 0, 0, 0, 0, -1, 234.16, 1064.23, 1084.21, 0, 6, 228, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (129, 4, 'Minor Manor', 0, 0, 0, 800000, 0, 0, 1980.37, -1718.91, 17.03, 0, 0, 0, 0, -1, 234.16, 1064.23, 1084.21, 0, 6, 229, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (130, 4, 'Idlewood House', 0, 0, 0, 100000, 0, 0, 2015.34, -1732.57, 14.23, 0, 0, 0, 0, -1, 2196.53, -1204.18, 1049.02, 0, 6, 230, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (131, 4, '2 Bedroom House', 0, 0, 0, 100000, 0, 0, 2017.97, -1703.38, 14.23, 0, 0, 0, 0, -1, 2196.53, -1204.18, 1049.02, 0, 6, 231, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (132, 4, 'Small House', 0, 0, 0, 45000, 0, 0, 2067.42, -1731.62, 13.87, 0, 0, 0, 0, -1, 2282.9, -1139.99, 1050.89, 0, 11, 232, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (133, 4, 'Small House', 0, 0, 0, 45000, 0, 0, 2068.06, -1628.89, 13.87, 0, 0, 0, 0, -1, 2282.9, -1139.99, 1050.89, 0, 11, 233, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (134, 4, 'Small House', 0, 0, 0, 45000, 0, 0, 2016.21, -1641.67, 13.78, 0, 0, 0, 0, -1, 2282.9, -1139.99, 1050.89, 0, 11, 234, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (135, 4, 'Cheap Stuff', 0, 0, 0, 35000, 5000, 0, 2015.82, -1716.99, 13.97, 0, 0, 0, 0, -1, 327.91, 1477.79, 1084.43, 0, 15, 235, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (136, 4, 'Cheap Stuff', 0, 0, 0, 35000, 0, 0, 2066.97, -1656.47, 14.07, 0, 0, 0, 0, -1, 327.91, 1477.79, 1084.43, 0, 15, 236, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (137, 4, 'Cheap Stuff', 0, 0, 0, 35000, 0, 0, 2191.58, -1455.88, 25.79, 0, 0, 0, 0, -1, 327.91, 1477.79, 1084.43, 0, 15, 237, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (138, 4, 'Hallway House', 0, 0, 0, 70000, 0, 0, 2067.74, -1643.74, 13.8, 0, 0, 0, 0, -1, 260.99, 1284.29, 1080.25, 0, 4, 238, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (139, 4, 'Hallway House', 0, 0, 0, 70000, 0, 0, 2066.42, -1717.06, 13.8, 0, 0, 0, 0, -1, 260.99, 1284.29, 1080.25, 0, 4, 239, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (140, 4, 'Hallway House', 0, 0, 0, 70000, 0, 0, 2013.31, -1656.37, 13.8, 0, 0, 0, 0, -1, 260.99, 1284.29, 1080.25, 0, 4, 240, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (141, 4, 'Hallway House', 0, 0, 0, 70000, 0, 0, 2017.86, -1629.93, 13.71, 0, 0, 0, 0, -1, 260.99, 1284.29, 1080.25, 0, 4, 241, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (142, 4, 'Low Light Living', 0, 0, 0, 70000, 1, 0, 2065.24, -1703.52, 14.14, 0, 0, 0, 0, -1, -42.58, 1405.59, 1084.42, 0, 8, 242, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (143, 4, 'Fancy Apartment', 0, 0, 0, 20000, 1500, 0, 1969.35, -1705.42, 15.96, 0, 0, 0, 0, -1, 2218.04, -1076.24, 1050.48, 0, 1, 243, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (144, 4, 'Fancy Apartment', 0, 0, 0, 20000, 2000, 0, 1973.28, -1705.26, 15.96, 0, 0, 0, 0, -1, 2218.04, -1076.24, 1050.48, 0, 1, 244, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (145, 4, 'Fancy Apartment', 0, 0, 0, 20000, 100, 0, 1969.4, -1654.77, 15.96, 0, 0, 0, 0, -1, 2218.04, -1076.24, 1050.48, 0, 1, 245, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (146, 4, 'Fancy Apartment', 0, 0, 0, 20000, 0, 0, 1973.36, -1654.67, 15.96, 0, 0, 0, 0, -1, 2218.04, -1076.24, 1050.48, 0, 1, 246, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (147, 4, 'Light Apartment', 0, 0, 0, 20000, 0, 0, 1967.48, -1633.76, 15.96, 0, 0, 0, 0, -1, 2233.68, -1115.06, 1050.88, 0, 5, 247, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (148, 4, 'Light Apartment', 0, 0, 0, 20000, 0, 0, 1972.28, -1633.71, 15.96, 0, 0, 0, 0, -1, 2233.68, -1115.06, 1050.88, 0, 5, 248, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (149, 4, 'Light Apartment', 0, 0, 0, 20000, 50, 0, 1976.04, -1634.06, 16.21, 0, 0, 0, 0, -1, 2233.68, -1115.06, 1050.88, 0, 5, 249, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (150, 4, 'Light Apartment', 0, 0, 0, 20000, 1, 0, 1967.56, -1633.71, 18.56, 0, 0, 0, 0, -1, 2233.68, -1115.06, 1050.88, 0, 5, 250, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (151, 4, 'Light Apartment', 0, 0, 0, 20000, 0, 0, 1972.32, -1633.71, 18.56, 0, 0, 0, 0, -1, 2233.68, -1115.06, 1050.88, 0, 5, 251, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (152, 4, 'Light Apartment', 0, 0, 0, 20000, 50, 0, 1976.13, -1634.05, 18.56, 0, 0, 0, 0, -1, 2233.68, -1115.06, 1050.88, 0, 5, 252, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (153, 4, 'Light Apartment', 0, 0, 0, 20000, 0, 0, 1969.98, -1671.4, 15.96, 0, 0, 0, 0, -1, 2233.68, -1115.06, 1050.88, 0, 5, 253, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (154, 4, 'Light Apartment', 0, 0, 0, 20000, 100, 0, 1974.85, -1671.26, 15.96, 0, 0, 0, 0, -1, 2233.68, -1115.06, 1050.88, 0, 5, 254, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (155, 4, 'Light Apartment', 0, 0, 0, 20000, 5, 0, 1978.75, -1671.54, 16.18, 0, 0, 0, 0, -1, 2233.68, -1115.06, 1050.88, 0, 5, 255, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (156, 4, 'Light Apartment', 0, 0, 0, 20000, 0, 0, 1970.06, -1671.19, 18.54, 0, 0, 0, 0, -1, 2233.68, -1115.06, 1050.88, 0, 5, 256, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (157, 4, 'Light Apartment', 0, 0, 0, 20000, 0, 0, 1974.86, -1671.2, 18.54, 0, 0, 0, 0, -1, 2233.68, -1115.06, 1050.88, 0, 5, 257, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (158, 4, 'Light Apartment', 0, 0, 0, 20000, 0, 0, 1978.74, -1671.51, 18.54, 0, 0, 0, 0, -1, 2233.68, -1115.06, 1050.88, 0, 5, 258, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (159, 4, 'House Ghetto LS Small', 0, 0, 0, 10000, 0, 0, 2082.44, -1085.14, 25.69, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 259, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (160, 4, 'House Ghetto LS Small', 0, 0, 0, 10000, 10, 0, 2075.29, -1081.9, 25.68, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 260, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (161, 4, 'Apartment LS Small', 0, 0, 0, 20000, 500, 0, 2140.68, -1082.55, 25.03, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 261, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (162, 4, 'Apartment LS Small', 0, 0, 0, 20000, 1000, 0, 2145.24, -1084.66, 25.03, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 262, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (163, 4, 'Ghetto Project Apartment LS Small', 0, 0, 0, 2000, 1, 0, 2334.6, -1203.99, 27.98, 0, 0, 0, 0, -1, 243.72, 304.97, 999.14, 0, 1, 263, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (164, 4, 'Ghetto Project Apartment LS Small', 0, 0, 0, 2000, 0, 0, 2324.33, -1218.84, 27.98, 0, 0, 0, 0, -1, 243.72, 304.97, 999.14, 0, 1, 264, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (165, 4, 'Ghetto Project Apartment LS Small', 0, 0, 0, 2000, 0, 0, 2334.65, -1234.66, 27.98, 0, 0, 0, 0, -1, 243.72, 304.97, 999.14, 0, 1, 265, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (166, 4, 'Ghetto Project Apartment LS Small', 0, 0, 0, 2000, 0, 0, 2324.47, -1249.51, 27.98, 0, 0, 0, 0, -1, 243.72, 304.97, 999.14, 0, 1, 266, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (167, 4, 'Ghetto Project Apartment LS Small', 0, 0, 0, 2000, 0, 0, 2334.7, -1266.12, 27.97, 0, 0, 0, 0, -1, 243.72, 304.97, 999.14, 0, 1, 267, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (168, 4, 'Ghetto Project Apartment LS Small', 0, 0, 0, 2000, 0, 0, 2324.44, -1280.97, 27.98, 0, 0, 0, 0, -1, 243.72, 304.97, 999.14, 0, 1, 268, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (169, 4, 'House Ghetto LS Small', 0, 0, 0, 10000, 0, 0, 2427.38, -1135.77, 34.71, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 269, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (170, 4, 'House Ghetto LS Small', 0, 0, 0, 10000, 0, 0, 2467.56, -1200.41, 36.81, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 270, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (171, 4, 'House Ghetto LS Small', 0, 0, 0, 10000, 0, 0, 2492.17, -1239.01, 37.9, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 271, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (172, 4, 'House Ghetto LS Small', 0, 0, 0, 10000, 0, 0, 2494.1, -1224.25, 37.9, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 272, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (173, 4, 'House Ghetto LS Small', 0, 0, 0, 10000, 0, 0, 2472.9, -1238.12, 32.57, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 273, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (174, 4, 'House Ghetto LS Small', 0, 0, 0, 10000, 0, 0, 2474.9, -1223.36, 32.57, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 274, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (175, 4, 'House Ghetto LS Small', 0, 0, 0, 10000, 5000, 0, 2469.18, -1278.36, 30.36, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 275, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (176, 4, 'House Ghetto LS Small', 0, 0, 0, 10000, 0, 0, 2470.37, -1295.52, 30.23, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 276, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (177, 4, 'House Ghetto LS Small', 0, 0, 0, 10000, 5, 0, 2434.8, -1289.29, 25.35, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 277, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (178, 4, 'Medium House Ghetto LS', 0, 0, 0, 12000, 0, 0, 2433.94, -1303.35, 25.32, 0, 0, 0, 0, -1, 328.13, 1477.9, 1084.43, 0, 15, 278, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (179, 4, 'Medium House Ghetto LS', 0, 0, 0, 12000, 0, 0, 2433.93, -1320.68, 25.32, 0, 0, 0, 0, -1, 328.13, 1477.9, 1084.43, 0, 15, 279, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (180, 4, 'Medium House Ghetto LS', 0, 0, 0, 12000, 0, 0, 2439.59, -1338.72, 24.1, 0, 0, 0, 0, -1, 328.13, 1477.9, 1084.43, 0, 15, 280, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (181, 4, 'Medium House Ghetto LS', 0, 0, 0, 12000, 0, 0, 2439.59, -1357.14, 24.1, 0, 0, 0, 0, -1, 328.13, 1477.9, 1084.43, 0, 15, 281, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (182, 4, 'Normal Size House In SF', 0, 0, 0, 85000, 0, 0, -2789.59, -181.41, 10.06, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 282, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (183, 4, 'Medium House Ghetto LS', 0, 0, 0, 12000, 500, 0, 2421.23, -1277.2, 24.76, 0, 0, 0, 0, -1, 328.13, 1477.9, 1084.43, 0, 15, 283, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (184, 4, 'Medium House Ghetto LS', 0, 0, 0, 12000, 0, 0, 2420.02, -1287.25, 25.35, 0, 0, 0, 0, -1, 328.13, 1477.9, 1084.43, 0, 15, 284, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (185, 4, 'Medium House Ghetto LS', 0, 0, 0, 12000, 0, 0, 2419.23, -1301.95, 25.57, 0, 0, 0, 0, -1, 328.13, 1477.9, 1084.43, 0, 15, 285, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (186, 4, 'Medium House Ghetto LS', 0, 0, 0, 12000, 0, 0, 2419.23, -1319.22, 25.57, 0, 0, 0, 0, -1, 328.13, 1477.9, 1084.43, 0, 15, 286, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (187, 4, 'Medium House Ghetto LS', 0, 0, 0, 12000, 0, 0, 2424.89, -1336.86, 24.32, 0, 0, 0, 0, -1, 328.13, 1477.9, 1084.43, 0, 15, 287, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (188, 4, 'Medium House Ghetto LS', 0, 0, 0, 12000, 0, 0, 2424.89, -1355.15, 24.32, 0, 0, 0, 0, -1, 328.13, 1477.9, 1084.43, 0, 15, 288, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (189, 4, 'Apartment 2nd Floor In SF', 0, 0, 0, 80000, 0, 0, -2786.77, -175.21, 10.06, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 289, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (190, 4, 'Ghetto Project Apartment LS Small', 0, 0, 0, 2000, 2000, 0, 2487.35, -1398.81, 29.31, 0, 0, 0, 0, -1, 243.72, 304.97, 999.14, 0, 1, 290, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (191, 4, 'Ghetto Project Apartment LS Small', 0, 0, 0, 2000, 0, 0, 2487.3, -1410.34, 29.31, 0, 0, 0, 0, -1, 243.72, 304.97, 999.14, 0, 1, 291, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (192, 4, 'Ghetto Project Apartment LS Small', 0, 0, 0, 2000, 500, 0, 2492.25, -1398.81, 29.31, 0, 0, 0, 0, -1, 243.72, 304.97, 999.14, 0, 1, 292, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (193, 4, 'Ghetto Project Apartment LS Small', 0, 0, 0, 2000, 500, 0, 2495.38, -1398.81, 29.31, 0, 0, 0, 0, -1, 243.72, 304.97, 999.14, 0, 1, 293, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (194, 4, 'Appartment 1st Floor In SF', 0, 0, 0, 80000, 0, 0, -2790.4, -168.27, 7.2, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 294, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (195, 4, 'Ghetto Project Apartment LS Small', 0, 0, 0, 2000, 0, 0, 2495.29, -1410.34, 29.31, 0, 0, 0, 0, -1, 243.72, 304.97, 999.14, 0, 1, 295, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (196, 4, 'Ghetto Project Apartment LS Small', 0, 0, 0, 2000, 0, 0, 2492.18, -1410.34, 29.31, 0, 0, 0, 0, -1, 243.72, 304.97, 999.14, 0, 1, 296, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (197, 4, 'Ghetto Project Apartment LS Small', 0, 0, 0, 2000, 0, 0, 2476.27, -1410.34, 29.31, 0, 0, 0, 0, -1, 243.72, 304.97, 999.14, 0, 1, 297, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (198, 4, 'Ghetto Project Apartment LS Small', 0, 0, 0, 2000, 500, 0, 2473.14, -1410.34, 29.31, 0, 0, 0, 0, -1, 243.72, 304.97, 999.14, 0, 1, 298, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (199, 4, 'Ghetto Project Apartment LS Small', 0, 0, 0, 2000, 1000, 0, 2468.25, -1410.34, 29.31, 0, 0, 0, 0, -1, 243.72, 304.97, 999.14, 0, 1, 299, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (200, 4, 'Normal Size Pink House In SF', 0, 0, 0, 85000, 0, 0, -2791.99, -160.47, 10.05, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 300, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (201, 4, 'Ghetto Project Apartment LS Small', 0, 0, 0, 2000, 0, 0, 2476.4, -1398.81, 29.31, 0, 0, 0, 0, -1, 243.72, 304.97, 999.14, 0, 1, 301, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (202, 4, 'Ghetto Project Apartment LS Small', 0, 0, 0, 2000, 500, 0, 2476.25, -1391.71, 29.31, 0, 0, 0, 0, -1, 243.72, 304.97, 999.14, 0, 1, 302, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (203, 4, 'Ghetto Project Apartment LS Small', 0, 0, 0, 2000, 200, 0, 2473.12, -1391.71, 29.31, 0, 0, 0, 0, -1, 243.72, 304.97, 999.14, 0, 1, 303, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (204, 4, 'Ghetto Project Apartment LS Small', 0, 0, 0, 2000, 0, 0, 2468.3, -1391.71, 29.31, 0, 0, 0, 0, -1, 243.72, 304.97, 999.14, 0, 1, 304, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (205, 4, 'Ghetto Project Apartment LS Small', 0, 0, 0, 2000, 200, 0, 2468.3, -1383.37, 29.31, 0, 0, 0, 0, -1, 243.72, 304.97, 999.14, 0, 1, 305, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (206, 4, 'Ghetto Project Apartment LS Small', 0, 0, 0, 2000, 0, 0, 2473.17, -1383.37, 29.31, 0, 0, 0, 0, -1, 243.72, 304.97, 999.14, 0, 1, 306, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (207, 4, 'Ghetto Project Apartment LS Small', 0, 0, 0, 2000, 1, 0, 2476.42, -1383.37, 29.31, 0, 0, 0, 0, -1, 243.72, 304.97, 999.14, 0, 1, 307, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (208, 4, 'Normal Size Very Light Green House In SF', 0, 0, 0, 55000, 3000, 0, -2792.89, -153.15, 7.6, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 308, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (209, 4, 'Ghetto Project Apartment LS Small', 0, 0, 0, 2000, 200, 0, 2487.38, -1383.38, 29.31, 0, 0, 0, 0, -1, 243.72, 304.97, 999.14, 0, 1, 309, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (210, 4, 'Ghetto Project Apartment LS Small', 0, 0, 0, 2000, 0, 0, 2492.22, -1383.37, 29.31, 0, 0, 0, 0, -1, 243.72, 304.97, 999.14, 0, 1, 310, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (211, 4, 'Ghetto Project Apartment LS Small', 0, 0, 0, 2000, 5000, 0, 2495.4, -1383.37, 29.31, 0, 0, 0, 0, -1, 243.72, 304.97, 999.14, 0, 1, 311, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (212, 4, 'Ghetto Project Apartment LS Small', 0, 0, 0, 2000, 0, 0, 2487.29, -1391.71, 29.31, 0, 0, 0, 0, -1, 243.72, 304.97, 999.14, 0, 1, 312, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (213, 4, 'Ghetto Project Apartment LS Small', 0, 0, 0, 2000, 250, 0, 2492.12, -1391.71, 29.31, 0, 0, 0, 0, -1, 243.72, 304.97, 999.14, 0, 1, 313, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (214, 4, 'Normal Size Blue House In SF', 0, 0, 0, 85000, 0, 0, -2791.86, -145.98, 7.86, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 314, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (215, 4, 'Ghetto Project Apartment LS Small', 0, 0, 0, 2000, 0, 0, 2495.35, -1391.71, 29.31, 0, 0, 0, 0, -1, 243.72, 304.97, 999.14, 0, 1, 315, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (216, 4, 'Ghetto Project Apartment LS Small', 0, 0, 0, 2000, 0, 0, 2495.41, -1417.44, 29.31, 0, 0, 0, 0, -1, 243.72, 304.97, 999.14, 0, 1, 316, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (217, 4, 'Normal Size House In SF', 0, 0, 0, 85000, 0, 0, -2791.99, -134.46, 10.05, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 317, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (218, 4, 'Ghetto Project Apartment LS Small', 0, 0, 0, 2000, 0, 0, 2495.3, -1424.58, 29.02, 0, 0, 0, 0, -1, 243.72, 304.97, 999.14, 0, 1, 318, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (219, 4, 'Ghetto Project Apartment LS Small', 0, 0, 0, 2000, 500, 0, 2492.09, -1424.58, 29.02, 0, 0, 0, 0, -1, 243.72, 304.97, 999.14, 0, 1, 319, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (220, 4, 'Ghetto Project Apartment LS Small', 0, 0, 0, 2000, 0, 0, 2492.27, -1417.44, 29.31, 0, 0, 0, 0, -1, 243.72, 304.97, 999.14, 0, 1, 320, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (221, 4, 'Ghetto Project Apartment LS Small', 0, 0, 0, 2000, 200, 0, 2487.35, -1424.58, 29.02, 0, 0, 0, 0, -1, 243.72, 304.97, 999.14, 0, 1, 321, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (222, 4, 'Ghetto Project Apartment LS Small', 0, 0, 0, 2000, 200, 0, 2487.34, -1417.44, 29.31, 0, 0, 0, 0, -1, 243.72, 304.97, 999.14, 0, 1, 322, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (223, 4, 'Ghetto Project Apartment LS Small', 0, 0, 0, 2000, 50, 0, 2476.25, -1424.58, 29.31, 0, 0, 0, 0, -1, 243.72, 304.97, 999.14, 0, 1, 323, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (224, 4, 'Ghetto Project Apartment LS Small', 0, 0, 0, 2000, 0, 0, 2476.39, -1417.44, 29.31, 0, 0, 0, 0, -1, 243.72, 304.97, 999.14, 0, 1, 324, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (225, 4, 'Ghetto Project Apartment LS Small', 0, 0, 0, 2000, 0, 0, 2473.12, -1417.44, 29.31, 0, 0, 0, 0, -1, 243.72, 304.97, 999.14, 0, 1, 325, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (226, 4, 'Ghetto Project Apartment LS Small', 0, 0, 0, 2000, 0, 0, 2473.09, -1424.57, 29.31, 0, 0, 0, 0, -1, 243.72, 304.97, 999.14, 0, 1, 326, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (227, 4, 'Ghetto Project Apartment LS Small', 0, 0, 0, 2000, 5000, 0, 2468.3, -1424.58, 29.31, 0, 0, 0, 0, -1, 243.72, 304.97, 999.14, 0, 1, 327, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (228, 4, 'Ghetto Project Apartment LS Small', 0, 0, 0, 2000, 200, 0, 2468.34, -1417.45, 29.31, 0, 0, 0, 0, -1, 243.72, 304.97, 999.14, 0, 1, 328, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (229, 4, 'Ghetto Project Apartment LS Small', 0, 0, 0, 2000, 500, 0, 2495.35, -1431.68, 29.02, 0, 0, 0, 0, -1, 243.72, 304.97, 999.14, 0, 1, 329, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (230, 4, 'Ghetto Project Apartment LS Small', 0, 0, 0, 2000, 0, 0, 2492.26, -1431.68, 29.02, 0, 0, 0, 0, -1, 243.72, 304.97, 999.14, 0, 1, 330, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (231, 4, 'Ghetto Project Apartment LS Small', 0, 0, 0, 2000, 100, 0, 2487.3, -1431.68, 29.02, 0, 0, 0, 0, -1, 243.72, 304.97, 999.14, 0, 1, 331, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (232, 4, 'Ghetto Project Apartment LS Small', 0, 0, 0, 2000, 200, 0, 2476.45, -1431.68, 29.31, 0, 0, 0, 0, -1, 243.72, 304.97, 999.14, 0, 1, 332, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (233, 4, 'Normal Size Light Green House In SF', 0, 0, 0, 55000, 500, 0, -2793.14, -126.99, 7.18, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 333, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (234, 4, 'Ghetto Project Apartment LS Small', 0, 0, 0, 2000, 999, 0, 2473.24, -1431.68, 29.31, 0, 0, 0, 0, -1, 243.72, 304.97, 999.14, 0, 1, 334, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (235, 4, 'Ghetto Project Apartment LS Small', 0, 0, 0, 2000, 5000, 0, 2468.35, -1431.68, 29.31, 0, 0, 0, 0, -1, 243.72, 304.97, 999.14, 0, 1, 335, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (236, 4, 'Ghetto Project Apartment LS Small', 0, 0, 0, 2000, 20, 0, 2473.14, -1398.81, 29.31, 0, 0, 0, 0, -1, 243.72, 304.97, 999.14, 0, 1, 336, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (237, 4, 'Ghetto Project Apartment LS Small', 0, 0, 0, 2000, 0, 0, 2468.39, -1398.81, 29.31, 0, 0, 0, 0, -1, 243.72, 304.97, 999.14, 0, 1, 337, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (238, 4, 'Ghetto Project Apartment LS Small', 0, 0, 0, 2000, 0, 0, 2468.32, -1376.27, 29.31, 0, 0, 0, 0, -1, 243.72, 304.97, 999.14, 0, 1, 338, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (239, 4, 'Ghetto Project Apartment LS Small', 0, 0, 0, 2000, 0, 0, 2473.15, -1376.27, 29.31, 0, 0, 0, 0, -1, 243.72, 304.97, 999.14, 0, 1, 339, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (240, 4, 'Ghetto Project Apartment LS Small', 0, 0, 0, 2000, 200, 0, 2476.3, -1376.27, 29.31, 0, 0, 0, 0, -1, 243.72, 304.97, 999.14, 0, 1, 340, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (241, 4, 'Appartment 2nd Floor In SF', 0, 0, 0, 80000, 0, 0, -2786.77, -118.26, 10.06, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 341, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (242, 4, 'Ghetto Project Apartment LS Small', 0, 0, 0, 2000, 0, 0, 2473.17, -1366.2, 29.31, 0, 0, 0, 0, -1, 243.72, 304.97, 999.14, 0, 1, 342, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (243, 4, 'Ghetto Project Apartment LS Small', 0, 0, 0, 2000, 5000, 0, 2468.38, -1366.2, 29.31, 0, 0, 0, 0, -1, 243.72, 304.97, 999.14, 0, 1, 343, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (244, 4, 'Ghetto Project Apartment LS Small', 0, 0, 0, 2000, 0, 0, 2476.37, -1366.2, 29.31, 0, 0, 0, 0, -1, 243.72, 304.97, 999.14, 0, 1, 344, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (245, 4, 'Ghetto Project Apartment LS Small', 0, 0, 0, 2000, 0, 0, 2487.39, -1366.2, 29.31, 0, 0, 0, 0, -1, 243.72, 304.97, 999.14, 0, 1, 345, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (246, 4, 'Appartment 1st Floor In SF', 0, 0, 0, 80000, 0, 0, -2790.34, -111.14, 7.2, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 346, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (247, 4, 'Ghetto Project Apartment LS Small', 0, 0, 0, 2000, 200, 0, 2487.3, -1376.27, 29.31, 0, 0, 0, 0, -1, 243.72, 304.97, 999.14, 0, 1, 347, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (248, 4, 'Ghetto Project Apartment LS Small', 0, 0, 0, 2000, 200, 0, 2492.3, -1366.2, 29.31, 0, 0, 0, 0, -1, 243.72, 304.97, 999.14, 0, 1, 348, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (249, 4, 'Ghetto Project Apartment LS Small', 0, 0, 0, 2000, 1, 0, 2492.08, -1376.27, 29.31, 0, 0, 0, 0, -1, 243.72, 304.97, 999.14, 0, 1, 349, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (250, 4, 'Ghetto Project Apartment LS Small', 0, 0, 0, 2000, 0, 0, 2495.31, -1376.27, 29.31, 0, 0, 0, 0, -1, 243.72, 304.97, 999.14, 0, 1, 350, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (251, 4, 'Ghetto Project Apartment LS Small', 0, 0, 0, 2000, 200, 0, 2495.47, -1366.21, 29.31, 0, 0, 0, 0, -1, 243.72, 304.97, 999.14, 0, 1, 351, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (252, 4, 'Normal Size Green/Brick House In SF', 0, 0, 0, 120000, 0, 0, -2791.85, -107.45, 7.86, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 352, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (253, 4, 'Normal Size Pink House In SF', 0, 0, 0, 85000, 0, 0, -2791.99, -94.98, 10.05, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 353, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (254, 4, 'Appartment 2nd Floor In SF', 0, 0, 0, 80000, 0, 0, -2786.77, -89.71, 10.06, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 354, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (255, 4, 'Appartment 1st Floor In SF', 0, 0, 0, 80000, 0, 0, -2790.42, -82.53, 7.2, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 355, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (256, 4, 'Ghetto Project Apartment LS Small', 0, 0, 0, 2000, 0, 0, 2495.33, -1359.1, 29.31, 0, 0, 0, 0, -1, 243.72, 304.97, 999.14, 0, 1, 356, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (257, 4, 'Ghetto Project Apartment LS Small', 0, 0, 0, 2000, 0, 0, 2492.1, -1359.1, 29.31, 0, 0, 0, 0, -1, 243.72, 304.97, 999.14, 0, 1, 357, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (258, 4, 'Ghetto Project Apartment LS Small', 0, 0, 0, 2000, 0, 0, 2487.26, -1359.1, 29.31, 0, 0, 0, 0, -1, 243.72, 304.97, 999.14, 0, 1, 358, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (259, 4, 'Ghetto Project Apartment LS Small', 0, 0, 0, 2000, 0, 0, 2476.28, -1359.1, 29.31, 0, 0, 0, 0, -1, 243.72, 304.97, 999.14, 0, 1, 359, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (260, 4, 'Ghetto Project Apartment LS Small', 0, 0, 0, 2000, 0, 0, 2473.07, -1359.1, 29.31, 0, 0, 0, 0, -1, 243.72, 304.97, 999.14, 0, 1, 360, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (261, 4, 'Ghetto Project Apartment LS Small', 0, 0, 0, 2000, 0, 0, 2468.24, -1359.1, 29.31, 0, 0, 0, 0, -1, 243.72, 304.97, 999.14, 0, 1, 361, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (262, 4, 'Normal Size House In SF', 0, 0, 0, 85000, 0, 0, -2789.24, -52.58, 10.06, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 362, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (263, 4, 'Normal Size Pink House In SF', 0, 0, 0, 85000, 0, 0, -2791.91, -41.82, 10.05, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 363, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (264, 4, 'House Ghetto LS Small', 0, 0, 0, 10000, 150, 0, 2483.95, -1280.35, 30.47, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 364, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (265, 4, 'House Ghetto LS Small', 0, 0, 0, 10000, 0, 0, 2482.75, -1293.35, 30.23, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 365, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (266, 4, 'Normal Size Blue House In SF', 0, 0, 0, 85000, 0, 0, -2791.83, -35.9, 7.86, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 366, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (267, 4, 'House Ghetto LS Small', 0, 0, 0, 10000, 0, 0, 2529.65, -1243.31, 43.97, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 367, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (268, 4, 'House Ghetto LS Small', 0, 0, 0, 10000, 0, 0, 2531.05, -1228.61, 43.72, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 368, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (269, 4, 'Normal Size Blue House In SF', 0, 0, 0, 85000, 0, 0, -2791.84, -24.28, 10.05, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 369, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (270, 4, 'House Ghetto LS Small', 0, 0, 0, 10000, 600, 0, 2551.05, -1233.79, 49.33, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 370, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (271, 4, 'Normal Size Green/Brick House In SF', 0, 0, 0, 120000, 0, 0, -2791.59, -17.64, 7.86, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 371, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (272, 4, 'House Ghetto LS Small', 0, 0, 0, 10000, 0, 0, 2514.62, -1240.45, 39.34, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 372, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (273, 4, 'House Ghetto LS Small', 0, 0, 0, 10000, 0, 0, 2516.52, -1225.75, 39.09, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 373, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (274, 4, 'Appartment 2nd Floor In SF', 0, 0, 0, 80000, 0, 0, -2786.76, 0.27, 10.06, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 374, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (275, 4, 'Appartment 1st Floor In SF', 0, 0, 0, 80000, 0, 0, -2790.48, 7.37, 7.2, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 375, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (276, 4, 'Light Pink/Brick House In SF', 0, 0, 0, 120000, 0, 0, -2793.14, 11.19, 7.43, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 376, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (277, 4, 'Medium House Ghetto LS', 0, 0, 0, 12000, 0, 0, 2550.3, -1209.05, 54.54, 0, 0, 0, 0, -1, 328.13, 1477.9, 1084.43, 0, 15, 377, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (278, 4, 'Green Normal Size House In SF', 0, 0, 0, 120000, 0, 0, -2793.15, 21.32, 7.18, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 378, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (279, 4, 'Medium House Ghetto LS', 0, 0, 0, 12000, 0, 0, 2550.19, -1197.53, 60.84, 0, 0, 0, 0, -1, 328.13, 1477.9, 1084.43, 0, 15, 379, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (280, 4, 'Medium House Ghetto LS', 0, 0, 0, 12000, 5000, 0, 2520.65, -1209.48, 50.29, 0, 0, 0, 0, -1, 328.13, 1477.9, 1084.43, 0, 15, 380, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (281, 4, 'Medium House Ghetto LS', 0, 0, 0, 12000, 0, 0, 2520.61, -1198, 56.6, 0, 0, 0, 0, -1, 328.13, 1477.9, 1084.43, 0, 15, 381, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (282, 4, 'Appartment 2nd Floor In SF', 0, 0, 0, 80000, 0, 0, -2787, 62.87, 10.06, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 382, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (283, 4, 'Appartment 1st Floor In SF', 0, 0, 0, 80000, 0, 0, -2790.53, 69.66, 7.2, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 383, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (284, 4, 'Normal Size Pink House In SF', 0, 0, 0, 85000, 0, 0, -2791.79, 77.58, 10.05, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 384, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (285, 4, 'House Ghetto LS Small', 0, 0, 0, 10000, 500, 0, 2601.05, -1200.15, 59.5, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 385, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (286, 4, 'House Ghetto LS Small', 0, 0, 0, 10000, 0, 0, 2601.05, -1203.08, 58.73, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 386, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (287, 4, 'House Ghetto LS Small', 0, 0, 0, 10000, 0, 0, 2601.05, -1207.58, 57.79, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 387, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (288, 4, 'Normal Size Very Light Green House In SF', 0, 0, 0, 55000, 0, 0, -2792.85, 84.94, 7.62, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 388, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (289, 4, 'House Ghetto LS Small', 0, 0, 0, 10000, 500, 0, 2594.5, -1207.54, 57.65, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 389, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (290, 4, 'House Ghetto LS Small', 0, 0, 0, 10000, 500, 0, 2594.5, -1203, 58.58, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 390, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (291, 4, 'House Ghetto LS Small', 0, 0, 0, 10000, 500, 0, 2594.5, -1200.09, 59.35, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 391, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (292, 4, 'Normal Size Blue House In SF', 0, 0, 0, 85000, 5000, 0, -2791.59, 92.18, 7.86, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 392, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (293, 4, 'House Ghetto LS Small', 0, 0, 0, 10000, 500, 0, 2601.05, -1211.81, 56.66, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 393, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (294, 4, 'House Ghetto LS Small', 0, 0, 0, 10000, 500, 0, 2594.5, -1211.8, 56.51, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 394, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (295, 4, 'House Ghetto LS Small', 0, 0, 0, 10000, 0, 0, 2601.05, -1216.41, 55.27, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 395, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (296, 4, 'House Ghetto LS Small', 0, 0, 0, 10000, 500, 0, 2594.5, -1216.38, 55.11, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 396, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (297, 4, 'Normal Size House In SF', 0, 0, 0, 85000, 0, 0, -2791.82, 103.6, 10.05, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 397, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (298, 4, 'House Ghetto LS Small', 0, 0, 0, 10000, 120, 0, 2601.05, -1220.59, 53.92, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 398, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (299, 4, 'House Ghetto LS Small', 0, 0, 0, 10000, 449, 0, 2594.5, -1220.49, 53.76, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 399, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (300, 4, 'House Ghetto LS Small', 0, 0, 0, 10000, 500, 0, 2601.05, -1224.74, 52.63, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 400, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (301, 4, 'House Ghetto LS Small', 0, 0, 0, 10000, 500, 0, 2594.5, -1224.71, 52.48, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 401, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (302, 4, 'House Ghetto LS Small', 0, 0, 0, 10000, 500, 0, 2601.05, -1229.29, 51.34, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 402, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (303, 4, 'Normal Size Light Green House In SF', 0, 0, 0, 55000, 0, 0, -2793.14, 110.99, 7.18, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 403, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (304, 4, 'House Ghetto LS Small', 0, 0, 0, 10000, 5000, 0, 2594.5, -1229.26, 51.19, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 404, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (305, 4, 'House Ghetto LS Small', 0, 0, 0, 10000, 0, 0, 2601.05, -1233.56, 50.11, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 405, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (306, 4, 'House Ghetto LS Small', 0, 0, 0, 10000, 5000, 0, 2594.5, -1233.55, 49.96, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 406, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (307, 4, 'House Ghetto LS Small', 0, 0, 0, 10000, 10, 0, 2601.05, -1238.12, 48.72, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 407, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (308, 4, 'House Ghetto LS Small', 0, 0, 0, 10000, 0, 0, 2594.5, -1238.05, 48.56, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 408, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (309, 4, 'Appartment 2nd Floor In SF', 0, 0, 0, 80000, 0, 0, -2786.98, 119.9, 10.06, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 409, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (310, 4, 'House Ghetto LS Small', 0, 0, 0, 10000, 500, 0, 2608.15, -1200.07, 60.99, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 410, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (311, 4, 'House Ghetto LS Small', 0, 0, 0, 10000, 500, 0, 2615.11, -1200.1, 60.78, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 411, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (312, 4, 'Appartment 1st Floor In SF', 0, 0, 0, 80000, 0, 0, -2790.59, 126.9, 7.2, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 412, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (313, 4, 'House Ghetto LS Small', 0, 0, 0, 10000, 500, 0, 2608.15, -1203, 60.22, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 413, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (314, 4, 'House Ghetto LS Small', 0, 0, 0, 10000, 500, 0, 2615.11, -1203.1, 60, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 414, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (315, 4, 'House Ghetto LS Small', 0, 0, 0, 10000, 90, 0, 2608.15, -1207.57, 59.28, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 415, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (316, 4, 'House Ghetto LS Small', 0, 0, 0, 10000, 500, 0, 2615.11, -1207.64, 59.07, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 416, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (317, 4, 'House Ghetto LS Small', 0, 0, 0, 10000, 500, 0, 2608.15, -1211.73, 58.15, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 417, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (318, 4, 'House Ghetto LS Small', 0, 0, 0, 10000, 500, 0, 2615.11, -1211.84, 57.94, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 418, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (319, 4, 'House Ghetto LS Small', 0, 0, 0, 10000, 1000, 0, 2608.15, -1216.28, 56.76, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 419, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (320, 4, 'House Ghetto LS Small', 0, 0, 0, 10000, 100, 0, 2615.11, -1216.3, 56.54, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 420, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (321, 4, 'House Ghetto LS Small', 0, 0, 0, 10000, 1000, 0, 2608.15, -1220.51, 55.41, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 421, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (322, 4, 'House Ghetto LS Small', 0, 0, 0, 10000, 500, 0, 2615.11, -1220.58, 55.19, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 422, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (323, 4, 'House Ghetto LS Small', 0, 0, 0, 10000, 500, 0, 2608.15, -1224.64, 54.12, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 423, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (324, 4, 'Normal Size Green/Brick House In SF', 0, 0, 0, 120000, 0, 0, -2791.68, 130.62, 7.86, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 424, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (325, 4, 'House Ghetto LS Small', 0, 0, 0, 10000, 500, 0, 2615.11, -1224.75, 53.9, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 425, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (326, 4, 'House Ghetto LS Small', 0, 0, 0, 10000, 500, 0, 2608.15, -1229.19, 52.83, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 426, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (327, 4, 'House Ghetto LS Small', 0, 0, 0, 10000, 500, 0, 2615.11, -1229.28, 52.61, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 427, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (328, 4, 'House Ghetto LS Small', 0, 0, 0, 10000, 5000, 0, 2608.15, -1233.42, 51.6, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 428, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (329, 4, 'House Ghetto LS Small', 0, 0, 0, 10000, 500, 0, 2615.11, -1233.57, 51.38, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 429, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (330, 4, 'House', 0, 0, 0, 10000, 0, 0, 2608.15, -1238.01, 50.2, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 430, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (331, 4, 'House Ghetto LS Small', 0, 0, 0, 10000, 0, 0, 2615.11, -1238.09, 49.98, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 431, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (332, 4, 'Normal Size Pink House In SF', 0, 0, 0, 85000, 0, 0, -2791.81, 143.25, 10.05, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 432, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (333, 4, 'House Ghetto LS Small', 0, 0, 0, 10000, 0, 0, 2587.4, -1238.14, 48.56, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 433, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (334, 4, 'House Ghetto LS Small', 0, 0, 0, 10000, 0, 0, 2587.4, -1233.59, 49.96, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 434, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (335, 4, 'House Ghetto LS Small', 0, 0, 0, 10000, 500, 0, 2587.4, -1229.28, 51.19, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 435, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (336, 4, 'House Ghetto LS Small', 0, 0, 0, 10000, 0, 0, 2587.4, -1224.72, 52.48, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 436, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (337, 4, 'House Ghetto LS Small', 0, 0, 0, 10000, 500, 0, 2587.39, -1220.59, 53.76, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 437, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (338, 4, 'House Ghetto LS Small', 0, 0, 0, 10000, 500, 0, 2587.4, -1216.4, 55.11, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 438, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (339, 4, 'House Ghetto LS Small', 0, 0, 0, 10000, 1, 0, 2587.4, -1211.86, 56.51, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 439, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (340, 4, 'House Ghetto LS Small', 0, 0, 0, 10000, 400, 0, 2587.4, -1207.67, 57.65, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 440, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (341, 4, 'House Ghetto LS Small', 0, 0, 0, 10000, 500, 0, 2587.4, -1203.17, 58.58, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 441, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (342, 4, 'House Ghetto LS Small', 0, 0, 0, 10000, 500, 0, 2587.4, -1200.11, 59.35, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 442, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (343, 4, 'Normal Size House In SF', 0, 0, 0, 85000, 0, 0, -2789.34, 183.69, 10.06, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 443, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (344, 4, 'House Ghetto LS Small', 0, 0, 0, 10000, 0, 0, 2622.21, -1237.97, 51.27, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 444, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (345, 4, 'House Ghetto LS Small', 0, 0, 0, 10000, 0, 0, 2622.21, -1233.49, 52.66, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 445, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (346, 4, 'House Ghetto LS Small', 0, 0, 0, 10000, 1, 0, 2622.21, -1229.17, 53.89, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 446, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (347, 4, 'House Ghetto LS Small', 0, 0, 0, 10000, 0, 0, 2622.21, -1224.62, 55.18, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 447, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (348, 4, 'House Ghetto LS Small', 0, 0, 0, 10000, 0, 0, 2622.21, -1220.51, 56.47, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 448, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (349, 4, 'House Ghetto LS Small', 0, 0, 0, 10000, 0, 0, 2622.22, -1216.29, 57.82, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 449, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (350, 4, 'House Ghetto LS Small', 0, 0, 0, 10000, 0, 0, 2622.21, -1211.76, 59.21, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 450, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (351, 4, 'Normal Size Pink House In SF', 0, 0, 0, 85000, 0, 0, -2791.81, 194.57, 10.05, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 451, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (352, 4, 'House Ghetto LS Small', 0, 0, 0, 10000, 0, 0, 2622.22, -1207.58, 60.35, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 452, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (353, 4, 'House Ghetto LS Small', 0, 0, 0, 10000, 0, 0, 2622.22, -1203.05, 61.28, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 453, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (354, 4, 'House Ghetto LS Small', 0, 0, 0, 10000, 0, 0, 2622.22, -1199.95, 62.05, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 454, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (355, 4, 'Normal Size Blue House In SF', 0, 0, 0, 85000, 0, 0, -2791.65, 200.58, 7.86, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 455, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (356, 4, 'Normal Size Blue House In SF', 0, 0, 0, 85000, 0, 0, -2791.81, 212, 10.05, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 456, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (357, 4, 'Normal Size Green/Brick House In SF', 0, 0, 0, 120000, 0, 0, -2791.6, 218.57, 7.86, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 457, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (358, 4, 'House Ghetto LS Small', 0, 0, 0, 10000, 0, 0, 2663.18, -1238.14, 55.67, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 458, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (359, 4, 'House Ghetto LS Small', 0, 0, 0, 10000, 0, 0, 2663.18, -1233.56, 57.07, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 459, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (360, 4, 'House Ghetto LS Small', 0, 0, 0, 10000, 10, 0, 2663.18, -1229.27, 58.3, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 460, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (361, 4, 'House Ghetto LS Small', 0, 0, 0, 10000, 0, 0, 2663.18, -1224.83, 59.58, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 461, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (362, 4, 'House Ghetto LS Small', 0, 0, 0, 10000, 0, 0, 2663.18, -1220.59, 60.87, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 462, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (363, 4, 'House Ghetto LS Small', 0, 0, 0, 10000, 0, 0, 2663.18, -1216.33, 62.22, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 463, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (364, 4, 'House Ghetto LS Small', 0, 0, 0, 10000, 0, 0, 2663.18, -1211.8, 63.62, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 464, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (365, 4, 'House Ghetto LS Small', 0, 0, 0, 10000, 0, 0, 2663.18, -1207.64, 64.76, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 465, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (366, 4, 'House Ghetto LS Small', 0, 0, 0, 10000, 0, 0, 2663.18, -1203.19, 65.68, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 466, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (367, 4, 'House Ghetto LS Small', 0, 0, 0, 10000, 1000, 0, 2663.18, -1200.14, 66.47, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 467, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (368, 4, 'House Ghetto LS Small', 0, 0, 0, 10000, 0, 0, 2670.28, -1200.04, 66.5, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 468, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (369, 4, 'House Ghetto LS Small', 0, 0, 0, 10000, 0, 0, 2670.28, -1203.03, 65.73, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 469, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (370, 4, 'House Ghetto LS Small', 0, 0, 0, 10000, 0, 0, 2670.28, -1207.56, 64.8, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 470, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (371, 4, 'House Ghetto LS Small', 0, 0, 0, 10000, 0, 0, 2670.28, -1211.74, 63.67, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 471, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (372, 4, 'House Ghetto LS Small', 0, 0, 0, 10000, 0, 0, 2670.28, -1216.36, 62.26, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 472, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (373, 4, 'House Ghetto LS Small', 0, 0, 0, 10000, 100, 0, 2670.28, -1220.46, 60.92, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 473, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (374, 4, 'House Ghetto LS Small', 0, 0, 0, 10000, 0, 0, 2670.28, -1224.74, 59.63, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 474, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (375, 4, 'House Ghetto LS Small', 0, 0, 0, 10000, 0, 0, 2670.28, -1229.17, 58.36, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 475, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (376, 4, 'House Ghetto LS Small', 0, 0, 0, 10000, 0, 0, 2670.28, -1233.48, 57.12, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 476, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (377, 4, 'House Ghetto LS Small', 0, 0, 0, 10000, 0, 0, 2670.28, -1238.05, 55.73, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 477, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (378, 4, 'House Ghetto LS Small', 0, 0, 0, 10000, 5000, 0, 2683.44, -1238.05, 56.02, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 478, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (379, 4, 'House Ghetto LS Small', 0, 0, 0, 10000, 0, 0, 2683.44, -1233.54, 57.42, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 479, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (380, 4, 'House Ghetto LS Small', 0, 0, 0, 10000, 0, 0, 2683.44, -1229.32, 58.65, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 480, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (381, 4, 'House Ghetto LS Small', 0, 0, 0, 10000, 0, 0, 2683.44, -1224.74, 59.93, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 481, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (382, 4, 'House Ghetto LS Small', 0, 0, 0, 10000, 0, 0, 2683.44, -1220.6, 61.22, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 482, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (383, 4, 'House Ghetto LS Small', 0, 0, 0, 10000, 0, 0, 2683.44, -1216.35, 62.57, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 483, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (384, 4, 'House Ghetto LS Small', 0, 0, 0, 10000, 0, 0, 2683.44, -1211.88, 63.96, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 484, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (385, 4, 'House Ghetto LS Small', 0, 0, 0, 10000, 0, 0, 2683.44, -1207.64, 65.1, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 485, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (386, 4, 'House Ghetto LS Small', 0, 0, 0, 10000, 500, 0, 2683.44, -1203.14, 66.03, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 486, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (387, 4, 'House Ghetto LS Small', 0, 0, 0, 10000, 0, 0, 2683.44, -1200.19, 66.81, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 487, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (388, 4, 'House Ghetto LS Small', 0, 0, 0, 10000, 0, 0, 2690.54, -1200.05, 68.29, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 488, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (389, 4, 'House Ghetto LS Small', 0, 0, 0, 10000, 0, 0, 2700.21, -1200.19, 68.97, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 489, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (390, 4, 'House Ghetto LS Small', 0, 0, 0, 10000, 0, 0, 2690.54, -1202.95, 67.52, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 490, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (391, 4, 'House Ghetto LS Small', 0, 0, 0, 10000, 0, 0, 2700.21, -1203.11, 68.19, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 491, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (392, 4, 'House Ghetto LS Small', 0, 0, 0, 10000, 0, 0, 2690.54, -1207.56, 66.58, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 492, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (393, 4, 'House Ghetto LS Small', 0, 0, 0, 10000, 0, 0, 2700.2, -1207.66, 67.26, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 493, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (394, 4, 'House Ghetto LS Small', 0, 0, 0, 10000, 0, 0, 2700.2, -1211.84, 66.13, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 494, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (395, 4, 'House Ghetto LS Small', 0, 0, 0, 10000, 5000, 0, 2690.54, -1211.79, 65.45, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 495, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (396, 4, 'House Ghetto LS Small', 0, 0, 0, 10000, 0, 0, 2700.2, -1216.36, 64.74, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 496, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (397, 4, 'House Ghetto LS Small', 0, 0, 0, 10000, 0, 0, 2690.54, -1216.25, 64.06, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 497, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (398, 4, 'House Ghetto LS Small', 0, 0, 0, 10000, 0, 0, 2700.21, -1220.59, 63.39, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 498, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (399, 4, 'Appartment 1st Floor In SF', 0, 0, 0, 80000, 0, 0, -2724.67, -191.32, 4.33, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 499, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (400, 4, 'House Ghetto LS Small', 0, 0, 0, 10000, 0, 0, 2690.54, -1220.48, 62.72, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 500, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (401, 4, 'House Ghetto LS Small', 0, 0, 0, 10000, 0, 0, 2700.2, -1224.74, 62.09, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 501, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (402, 4, 'House Ghetto LS Small', 0, 0, 0, 10000, 0, 0, 2690.55, -1224.79, 61.42, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 502, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (403, 4, 'House Ghetto LS Small', 0, 0, 0, 10000, 500, 0, 2700.21, -1229.31, 60.81, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 503, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (404, 4, 'House Ghetto LS Small', 0, 0, 0, 10000, 0, 0, 2690.54, -1229.15, 60.14, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 504, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (405, 4, 'Appartment In SF 2nd Floor', 0, 0, 0, 80000, 0, 0, -2728.16, -184.18, 7.2, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 505, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (406, 4, 'House Ghetto LS Small', 0, 0, 0, 10000, 5000, 0, 2700.21, -1233.57, 59.58, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 506, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (407, 4, 'House Ghetto LS Small', 0, 0, 0, 10000, 0, 0, 2690.54, -1233.41, 58.91, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 507, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (408, 4, 'House Ghetto LS Small', 0, 0, 0, 10000, 0, 0, 2700.2, -1238.05, 58.18, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 508, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (409, 4, 'House Ghetto LS Small', 0, 0, 0, 10000, 1, 0, 2690.54, -1238.06, 57.51, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 509, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (410, 4, 'Normal Size Pink House In SF', 0, 0, 0, 85000, 0, 0, -2723.15, -179.07, 7.2, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 510, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (411, 4, 'House Ghetto LS Small', 0, 0, 0, 10000, 1, 0, 2707.3, -1237.91, 59.67, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 511, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (412, 4, 'House Ghetto LS Small', 0, 0, 0, 10000, 500, 0, 2707.31, -1233.54, 61.07, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 512, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (413, 4, 'House Ghetto LS Small', 0, 0, 0, 10000, 0, 0, 2707.3, -1229.25, 62.3, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 513, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (414, 4, 'House Ghetto LS Small', 0, 0, 0, 10000, 0, 0, 2707.31, -1224.67, 63.58, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 514, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (415, 4, 'House Ghetto LS Small', 0, 0, 0, 10000, 500, 0, 2707.3, -1220.59, 64.88, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 515, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (416, 4, 'House Ghetto LS Small', 0, 0, 0, 10000, 5000, 0, 2707.3, -1216.32, 66.22, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 516, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (417, 4, 'House Ghetto LS Small', 0, 0, 0, 10000, 1000, 0, 2707.3, -1211.75, 67.61, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 517, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (418, 4, 'Normal Size Green/Brick House In SF', 0, 0, 0, 120000, 0, 0, -2723.32, -166.46, 5, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 518, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (419, 4, 'House Ghetto LS Small', 0, 0, 0, 10000, 0, 0, 2707.31, -1207.58, 68.75, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 519, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (420, 4, 'House Ghetto LS Small', 0, 0, 0, 10000, 0, 0, 2707.31, -1203.04, 69.68, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 520, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (421, 4, 'House Ghetto LS Small', 0, 0, 0, 10000, 0, 0, 2707.31, -1200.06, 70.46, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 521, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (422, 4, 'Appartment 1st Floor In SF', 0, 0, 0, 80000, 0, 0, -2724.67, -162.74, 4.34, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 522, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (423, 4, 'Appartment 2nd Floor In SF', 0, 0, 0, 80000, 0, 0, -2728.16, -155.7, 7.2, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 523, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (424, 4, 'Normal Size Green House In SF', 0, 0, 0, 85000, 0, 0, -2721.77, -146.75, 4.33, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 524, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (425, 4, 'Normal Size House In SF', 0, 0, 0, 85000, 0, 0, -2723.03, -139.4, 7.2, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 525, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (426, 4, 'Normal Size Blue House In SF', 0, 0, 0, 85000, 0, 0, -2723.33, -127.87, 5, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 526, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (427, 4, 'Apartment LS Medium', 0, 0, 0, 25000, 0, 0, 2781.94, -1358.42, 26.37, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 527, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (428, 4, 'Normal Size Very Light Green House In SF', 0, 0, 0, 55000, 0, 0, -2722.05, -120.75, 4.76, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 528, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (429, 4, 'Apartment LS Medium', 0, 0, 0, 25000, 0, 0, 2781.94, -1333.42, 32.4, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 529, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (430, 4, 'Apartment LS Medium', 0, 0, 0, 25000, 0, 0, 2782.15, -1306.33, 38.89, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 530, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (431, 4, 'Apartment LS Medium', 0, 0, 0, 25000, 0, 0, 2782.15, -1281.21, 44.37, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 531, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (432, 4, 'Apartment LS Medium', 0, 0, 0, 25000, 0, 0, 2809.53, -1324.86, 33.87, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 532, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (433, 4, 'Apartment LS Medium', 0, 0, 0, 25000, 0, 0, 2809.53, -1302.93, 38.93, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 533, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (434, 4, 'Apartment LS Medium', 0, 0, 0, 25000, 1, 0, 2809.53, -1281.04, 43.9, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 534, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (435, 4, 'Normal Size Pink House In SF', 0, 0, 0, 85000, 0, 0, -2723.02, -113.39, 7.2, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 535, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (436, 4, 'Apartment LS Medium', 0, 0, 0, 25000, 0, 0, 2807.98, -1353.99, 27.22, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 536, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (437, 4, 'Apartment LS Medium', 0, 0, 0, 25000, 0, 0, 2807.98, -1369.6, 23.58, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 537, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (438, 4, 'Appartment 1st Floor In SF', 0, 0, 0, 80000, 0, 0, -2724.65, -105.62, 4.34, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 538, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (439, 4, 'Appartment 2nd Floor In SF', 0, 0, 0, 80000, 0, 0, -2728.17, -98.41, 7.2, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 539, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (440, 4, 'Ls House Near Beach Medium', 0, 0, 0, 30000, 0, 0, 2846.99, -1309.7, 14.7, 0, 0, 0, 0, -1, 261.06, 1284.29, 1080.25, 0, 4, 540, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (441, 4, 'Normal Size House In SF', 0, 0, 0, 85000, 0, 0, -2725.75, -92.38, 7.2, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 541, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (442, 4, 'Appartment 1st Floor In SF', 0, 0, 0, 80000, 0, 0, -2724.7, -58.02, 4.34, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 542, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (443, 4, 'Appartment 2nd Floor In SF', 0, 0, 0, 80000, 0, 0, -2728.19, -51.06, 7.2, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 543, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (444, 4, 'Apartment Near the beach LS big', 0, 0, 0, 25000, 0, 0, 2851.85, -1365.97, 14.17, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 544, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (445, 4, 'Normal Size Very Light Green House In SF', 0, 0, 0, 55000, 0, 0, -2722.11, -44.71, 4.77, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 545, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (446, 4, 'Normal Size House In SF', 0, 0, 0, 85000, 0, 0, -2725.64, -36.6, 7.2, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 546, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (447, 4, 'Normal Size Pink/Brick House In SF', 0, 0, 0, 55000, 0, 0, -2721.8, -23.27, 4.57, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 547, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (448, 4, 'LS Apartment Near Beach Medium', 0, 0, 0, 40000, 0, 0, 2808.05, -1190.89, 25.34, 0, 0, 0, 0, -1, 225.75, 1240, 1082.15, 0, 2, 548, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (449, 4, 'LS Apartment Near Beach Medium', 0, 0, 0, 40000, 0, 0, 2808.01, -1175.92, 25.38, 0, 0, 0, 0, -1, 225.75, 1240, 1082.15, 0, 2, 549, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (450, 4, 'Normal Size Pink House In SF', 0, 0, 0, 85000, 0, 0, -2723.17, -17.31, 7.2, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 550, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (451, 4, 'Normal Size House In SF', 0, 0, 0, 85000, 0, 0, -2723.05, 4.47, 7.2, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 551, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (452, 4, 'Normal Size Very Light Green House In SF', 0, 0, 0, 55000, 0, 0, -2722.1, 14.48, 4.77, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 552, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (453, 4, 'LS Apartment Near Beach Medium', 0, 0, 0, 40000, 0, 0, 2842.19, -1334.78, 14.74, 0, 0, 0, 0, -1, 225.75, 1240, 1082.15, 0, 2, 553, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (454, 4, 'Normal Size Pink House In SF', 0, 0, 0, 85000, 0, 0, -2723.12, 21.93, 7.2, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 554, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (455, 4, 'Normal Size House In SF', 0, 0, 0, 85000, 0, 0, -2686.82, -188.19, 7.2, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 555, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (456, 4, 'Appartment 2nd Floor In SF', 0, 0, 0, 80000, 0, 0, -2684.41, -182.15, 7.2, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 556, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (457, 4, 'Appartment 1st Floor In SF', 0, 0, 0, 80000, 0, 0, -2687.89, -175.08, 4.34, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 557, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (458, 4, 'Normal Size Pink House In SF', 0, 0, 0, 85000, 0, 0, -2689.4, -167.3, 7.2, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 558, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (459, 4, 'Normal Size Light Green House In SF', 0, 0, 0, 55000, 0, 0, -2690.5, -159.76, 4.76, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 559, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (460, 4, 'Apartment Near the beach LS big', 0, 0, 0, 25000, 0, 0, 2755.71, -1400.45, 39.38, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 560, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (461, 4, 'Normal Size Blue House In SF', 0, 0, 0, 85000, 0, 0, -2689.24, -152.92, 5, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 561, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (462, 4, 'Normal Size House In SF', 0, 0, 0, 85000, 0, 0, -2689.38, -141.27, 7.2, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 562, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (463, 4, 'Apartment Near the beach LS big', 0, 0, 0, 25000, 0, 0, 2756.29, -1302.54, 53.09, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 563, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (464, 4, 'Apartment Near the beach LS big', 0, 0, 0, 25000, 0, 0, 2755.85, -1276.47, 56.59, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 564, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (465, 4, 'Normal Size Green House In SF', 0, 0, 0, 85000, 0, 0, -2690.79, -134.05, 4.33, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 565, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (466, 4, 'Appartment 2nd Floor In SF', 0, 0, 0, 80000, 0, 0, -2684.42, -125.07, 7.2, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 566, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (467, 4, 'Appartment 1st Floor In SF', 0, 0, 0, 80000, 0, 0, -2687.9, -118.16, 4.34, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 567, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (468, 4, 'LS Apartment Near Beach Medium', 0, 0, 0, 40000, 1000, 0, 2776.06, -1245.37, 49.58, 0, 0, 0, 0, -1, 225.75, 1240, 1082.15, 0, 2, 568, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (469, 4, 'LS Apartment Near Beach Medium', 0, 0, 0, 40000, 500, 0, 2797.81, -1245.37, 47.38, 0, 0, 0, 0, -1, 225.75, 1240, 1082.15, 0, 2, 569, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (470, 4, 'Normal Size Green/Brick House In SF', 0, 0, 0, 120000, 0, 0, -2689.25, -114.14, 5, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 570, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (471, 4, 'Normal Size Pink House In SF', 0, 0, 0, 85000, 0, 0, -2689.35, -101.62, 7.2, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 571, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (472, 4, 'Appartment 2nd Floor In SF', 0, 0, 0, 80000, 0, 0, -2684.55, -96.44, 7.2, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 572, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (473, 4, 'Appartment 1st Floor In SF', 0, 0, 0, 80000, 0, 0, -2688.06, -89.44, 4.33, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 573, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (474, 4, 'LS Apartment Near Beach Medium', 0, 0, 0, 40000, 0, 0, 2750.39, -1238.8, 61.52, 0, 0, 0, 0, -1, 225.75, 1240, 1082.15, 0, 2, 574, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (475, 4, 'LS Apartment Near Beach Medium', 0, 0, 0, 40000, 0, 0, 2750.39, -1222.23, 64.6, 0, 0, 0, 0, -1, 225.75, 1240, 1082.15, 0, 2, 575, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (476, 4, 'LS Apartment Near Beach Medium', 0, 0, 0, 40000, 0, 0, 2750.39, -1205.76, 67.48, 0, 0, 0, 0, -1, 225.75, 1240, 1082.15, 0, 2, 576, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (477, 4, 'Apartment Near the beach LS big', 0, 0, 0, 25000, 0, 0, 2756.27, -1182.81, 69.4, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 577, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (478, 4, 'Normal Size Pink House In SF', 0, 0, 0, 85000, 0, 0, -2689.38, 57.09, 7.2, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 578, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (479, 4, 'Normal Size Light Green House In SF', 0, 0, 0, 55000, 1, 0, -2690.49, 64.59, 4.76, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 579, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (480, 4, 'Normal Size House In SF', 0, 0, 0, 85000, 0, 0, -2689.49, 74.56, 7.2, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 580, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (481, 4, 'Ghetto Project Apartment LS Small', 0, 0, 0, 2000, 0, 0, 2628.09, -1067.86, 69.71, 0, 0, 0, 0, -1, 243.72, 304.97, 999.14, 0, 1, 581, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (482, 4, 'Ghetto Project Apartment LS Small', 0, 0, 0, 2000, 0, 0, 2627.64, -1085.13, 69.71, 0, 0, 0, 0, -1, 243.72, 304.97, 999.14, 0, 1, 582, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (483, 4, 'Normal Size Pink House In SF', 0, 0, 0, 85000, 0, 0, -2689.33, 96.31, 7.2, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 583, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (484, 4, 'Ghetto Project Apartment LS Small', 0, 0, 0, 2000, 0, 0, 2625.93, -1098.64, 69.36, 0, 0, 0, 0, -1, 243.72, 304.97, 999.14, 0, 1, 584, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (485, 4, 'Ghetto Project Apartment LS Small', 0, 0, 0, 2000, 0, 0, 2625.94, -1112.61, 68, 0, 0, 0, 0, -1, 243.72, 304.97, 999.14, 0, 1, 585, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (486, 4, 'Normal Size Pink/Brick House In SF', 0, 0, 0, 55000, 1500, 0, -2690.78, 102.29, 4.57, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 586, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (487, 4, 'Ghetto Project Apartment LS Small', 0, 0, 0, 2000, 0, 0, 2611.24, -1111.19, 68.25, 0, 0, 0, 0, -1, 243.72, 304.97, 999.14, 0, 1, 587, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (488, 4, 'Ghetto Project Apartment LS Small', 0, 0, 0, 2000, 0, 0, 2611.23, -1097.24, 69.6, 0, 0, 0, 0, -1, 243.72, 304.97, 999.14, 0, 1, 588, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (489, 4, 'Ghetto Project Apartment LS Small', 0, 0, 0, 2000, 0, 0, 2612.94, -1083.18, 69.96, 0, 0, 0, 0, -1, 243.72, 304.97, 999.14, 0, 1, 589, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (490, 4, 'Normal Size House In SF', 0, 0, 0, 85000, 0, 0, -2687.1, 115.56, 7.2, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 590, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (491, 4, 'Ghetto Project Apartment LS Small', 0, 0, 0, 2000, 0, 0, 2613.39, -1065.9, 69.96, 0, 0, 0, 0, -1, 243.72, 304.97, 999.14, 0, 1, 591, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (492, 4, 'Ghetto Project Apartment LS Small', 0, 0, 0, 2000, 0, 0, 2618.94, -1118.48, 68, 0, 0, 0, 0, -1, 243.72, 304.97, 999.14, 0, 1, 592, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (493, 4, 'Normal Size Very Light Green House In SF', 0, 0, 0, 55000, 0, 0, -2690.51, 123.6, 4.75, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 593, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (494, 4, 'Appartment 2nd Floor In SF', 0, 0, 0, 80000, 0, 0, -2684.4, 129.99, 7.2, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 594, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (495, 4, 'Appartment 1st Floor In SF', 0, 0, 0, 80000, 0, 0, -2687.88, 137.03, 4.34, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 595, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (496, 4, 'House Ghetto LS Small', 0, 0, 0, 10000, 0, 0, 2572.3, -1091.85, 67.22, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 596, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (497, 4, 'House Ghetto LS Small', 0, 0, 0, 10000, 0, 0, 2519.02, -1112.99, 56.59, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 597, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (498, 4, 'House Ghetto LS Small', 0, 0, 0, 10000, 0, 0, 2576.68, -1070.67, 69.83, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 598, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (499, 4, 'House Ghetto LS Small', 0, 0, 0, 10000, 0, 0, 2579.61, -1033.2, 69.58, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 599, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (500, 4, 'House Ghetto LS Small', 0, 0, 0, 10000, 0, 0, 2562.11, -1034.28, 69.87, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 600, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (501, 4, 'Normal Size House In SF', 0, 0, 0, 85000, 5000, 0, -2692.95, 189.45, 7.2, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 601, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (502, 4, 'House Ghetto LS Small', 0, 0, 0, 10000, 0, 0, 2549.2, -1032.15, 69.58, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 602, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (503, 4, '3 Story Condo In SF', 0, 0, 0, 120000, 0, 0, -2358.3, 820.03, 38.53, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 603, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (504, 4, '3 Story Condo In SF', 0, 0, 0, 120000, 0, 0, -2340.18, 819.85, 41.97, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 604, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (505, 4, '3 Story Condo In SF', 0, 0, 0, 120000, 0, 0, -2321.9, 820, 45.34, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 605, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (506, 4, '3 Story Condo In SF', 0, 0, 0, 120000, 0, 0, -2303.4, 819.97, 48.7, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 606, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (507, 4, '3 Story Condo In SF', 0, 0, 0, 120000, 0, 0, -2282.42, 873.14, 66.92, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 607, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (508, 4, '3 Story Condo In SF', 0, 0, 0, 120000, 0, 0, -2285.08, 849.13, 65.64, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 608, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (509, 4, '3 Story Condo In SF', 0, 0, 0, 120000, 0, 0, -2285.3, 828.92, 57.17, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 609, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (510, 4, '3 Story Condo In SF', 0, 0, 0, 120000, 0, 0, -2294.99, 969.98, 65.33, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 610, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (511, 4, '3 Story Condo In SF', 0, 0, 0, 120000, 0, 0, -2307.55, 944.26, 61.61, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 611, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (512, 4, '3 Story Condo In SF', 0, 0, 0, 120000, 0, 0, -2325.89, 944.26, 55.32, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 612, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (513, 4, '5 Story Condo In SF', 0, 0, 0, 500000, 0, 0, -2238.8, 943.84, 66.65, 0, 0, 0, 0, -1, 226.3, 1114.37, 1080.99, 0, 5, 613, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (514, 4, '5 Story Condo In SF', 0, 0, 0, 500000, 0, 0, -2238.89, 962.11, 66.65, 0, 0, 0, 0, -1, 226.3, 1114.37, 1080.99, 0, 5, 614, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (515, 4, '5 Story Condo In SF', 0, 0, 0, 500000, 0, 0, -2238.82, 980.75, 71.52, 0, 0, 0, 0, -1, 226.3, 1114.37, 1080.99, 0, 5, 615, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (516, 4, '4 Story Condo In SF', 0, 0, 0, 400000, 0, 0, -2238.79, 998.81, 78.98, 0, 0, 0, 0, -1, 234.22, 1063.89, 358.5, 0, 6, 616, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (517, 4, '5 Story Condo In SF', 0, 0, 0, 500000, 0, 0, -2229.28, 934.38, 66.65, 0, 0, 0, 0, -1, 226.3, 1114.37, 1080.99, 0, 5, 617, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (518, 4, '5 Story Condo In SF', 0, 0, 0, 500000, 0, 0, -2210.94, 934.38, 68.97, 0, 0, 0, 0, -1, 226.3, 1114.37, 1080.99, 0, 5, 618, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (519, 4, '4 Story Condo In SF', 0, 0, 0, 400000, 0, 0, -2192.54, 934.38, 75.02, 0, 0, 0, 0, -1, 234.22, 1063.89, 358.5, 0, 6, 619, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (520, 4, '3 Story Condo In SF', 0, 0, 0, 120000, 0, 0, -2174.13, 934.36, 80, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 620, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (521, 4, '3 Story Condo In SF', 0, 0, 0, 120000, 0, 0, -2160.15, 947.01, 80, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 621, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (522, 4, '3 Story Condo In SF', 0, 0, 0, 120000, 0, 0, -2160.14, 965.32, 80, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 622, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (523, 4, '3 Story Condo In SF', 0, 0, 0, 120000, 0, 0, -2160.15, 983.75, 80, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 623, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (524, 4, '3 Story Condo In SF', 0, 0, 0, 120000, 0, 0, -2160.11, 1002.05, 80, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 624, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (525, 4, 'House Ghetto LS Small', 0, 0, 0, 10000, 0, 0, 2440.48, -1057.34, 54.74, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 625, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (526, 4, '5 Story Condo In SF', 0, 0, 0, 500000, 0, 0, -2233.82, 888.8, 66.65, 0, 0, 0, 0, -1, 226.3, 1114.37, 1080.99, 0, 5, 626, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (527, 4, '3 Story Condo In SF', 0, 0, 0, 120000, 0, 0, -2233.83, 870.58, 66.64, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 627, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (528, 4, '3 Story Condo In SF', 0, 0, 0, 120000, 0, 0, -2233.27, 848.86, 61.89, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 628, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (529, 4, '3 Story Condo In SF', 0, 0, 0, 120000, 0, 0, -2233.27, 830.7, 54.3, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 629, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (530, 4, '4 Story Condo In SF', 0, 0, 0, 400000, 0, 0, -2223.85, 821.13, 49.44, 0, 0, 0, 0, -1, 234.22, 1063.89, 358.5, 0, 6, 630, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (531, 4, '3 Story Condo In SF', 0, 0, 0, 120000, 0, 0, -2205.37, 821.13, 50.49, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 631, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (532, 4, '3 Story Condo In SF', 0, 0, 0, 120000, 0, 0, -2187.07, 821.13, 57.55, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 632, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (533, 4, '3 Story Condo In SF', 0, 0, 0, 120000, 0, 0, -2168.71, 821.13, 64.97, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 633, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (534, 4, 'Huge house at Vinewood LS', 0, 0, 0, 450000, 1000, 0, 646.06, -1117.35, 44.21, 0, 0, 0, 0, -1, 491.06, 1400.39, 1080.26, 0, 2, 634, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (535, 4, '3 Story Condo In SF', 0, 0, 0, 120000, 0, 0, -2159.21, 830.74, 69.52, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 635, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (536, 4, 'Huge house at Vinewood LS', 0, 0, 0, 450000, 550, 0, 398.17, -1271.36, 50.02, 0, 0, 0, 0, -1, 491.06, 1400.39, 1080.26, 0, 2, 636, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (537, 4, '3 Story Condo In SF', 0, 0, 0, 120000, 0, 0, -2159.22, 866.53, 75.35, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 637, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (538, 4, '3 Story Condo In SF', 0, 0, 0, 120000, 0, 0, -2158.67, 889.11, 80.01, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 638, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (539, 4, '3 Story Condo In SF', 0, 0, 0, 120000, 0, 0, -2174.37, 902.73, 80.01, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 639, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (540, 4, 'Mansion', 0, 0, 0, 450000, 0, 0, 298.84, -1338.5, 53.44, 0, 0, 0, 0, -1, 491.06, 1400.39, 1080.26, 0, 2, 640, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (541, 4, '4 Story Condo In SF', 0, 0, 0, 400000, 0, 0, -2192.49, 902.68, 75.04, 0, 0, 0, 0, -1, 234.22, 1063.89, 358.5, 0, 6, 641, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (542, 4, 'Mansion', 0, 0, 0, 450000, 0, 0, 254.38, -1367.12, 53.11, 0, 0, 0, 0, -1, 491.06, 1400.39, 1080.26, 0, 2, 642, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (543, 4, '5 Story Condo In SF', 0, 0, 0, 500000, 0, 0, -2211.06, 902.68, 68.93, 0, 0, 0, 0, -1, 226.3, 1114.37, 1080.99, 0, 5, 643, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (544, 4, '5 Story Condo In SF', 0, 0, 0, 500000, 0, 0, -2224.88, 902.67, 66.65, 0, 0, 0, 0, -1, 226.3, 1114.37, 1080.99, 0, 5, 644, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (545, 4, '4 Story Condo In SF', 0, 0, 0, 400000, 0, 0, -2282.4, 979.39, 70.89, 0, 0, 0, 0, -1, 234.22, 1063.89, 358.5, 0, 6, 645, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (546, 4, '4 Story Condo In SF', 0, 0, 0, 400000, 0, 0, -2282.14, 999.63, 79.3, 0, 0, 0, 0, -1, 234.22, 1063.89, 358.5, 0, 6, 646, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (547, 4, '3 Story Condo In SF', 0, 0, 0, 120000, 0, 0, -2282.39, 1023.13, 84.11, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 647, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (548, 4, '3 Story Condo In SF', 0, 0, 0, 120000, 0, 0, -2282.42, 1046.67, 84.12, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 648, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (549, 4, '3 Story Condo In SF', 0, 0, 0, 120000, 0, 0, -2282.4, 1070.26, 81.7, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 649, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (550, 4, '3 Story Condo In SF', 0, 0, 0, 120000, 0, 0, -2282.42, 1088.93, 80.41, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 650, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (551, 4, '5 Story Condo In SF', 0, 0, 0, 500000, 0, 0, -2280.84, 1112.55, 76.98, 0, 0, 0, 0, -1, 226.3, 1114.37, 1080.99, 0, 5, 651, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (552, 4, '5 Story Condo In SF', 0, 0, 0, 500000, 0, 0, -2280.83, 1130.83, 69.23, 0, 0, 0, 0, -1, 226.3, 1114.37, 1080.99, 0, 5, 652, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (553, 4, 'Huge house at Vinewood', 0, 0, 0, 600000, 0, 0, 219.26, -1249.79, 78.33, 0, 0, 0, 0, -1, 226.3, 1114.37, 1080.99, 0, 5, 653, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (554, 4, '5 Story Condo In SF', 0, 0, 0, 500000, 0, 0, -2280.83, 1149.17, 61.61, 0, 0, 0, 0, -1, 226.3, 1114.37, 1080.99, 0, 5, 654, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (555, 4, 'Very Small House In SF', 0, 0, 0, 25000, 0, 0, -2358.98, 1118.09, 55.73, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 655, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (556, 4, 'Small Very Nice House In SF', 0, 0, 0, 55000, 0, 0, -2369.4, 1122.32, 55.73, 0, 0, 0, 0, -1, 295.21, 1472.26, 1080.25, 0, 15, 656, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (557, 4, 'LS Apartment Near Beach Medium', 0, 0, 0, 40000, 0, 0, 662.43, -1466.81, 14.85, 0, 0, 0, 0, -1, 225.75, 1240, 1082.15, 0, 2, 657, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (558, 4, 'LS Apartment Near Beach Medium', 0, 0, 0, 40000, 500, 0, 657.39, -1481.28, 14.85, 0, 0, 0, 0, -1, 225.75, 1240, 1082.15, 0, 2, 658, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (559, 4, 'LS Apartment Near Beach Medium', 0, 0, 0, 40000, 499, 0, 662.43, -1487.5, 14.85, 0, 0, 0, 0, -1, 225.75, 1240, 1082.15, 0, 2, 659, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (560, 4, 'LS Apartment Near Beach Medium', 0, 0, 0, 40000, 0, 0, 648.85, -1489.52, 14.84, 0, 0, 0, 0, -1, 225.75, 1240, 1082.15, 0, 2, 660, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (561, 4, 'LS Apartment Near Beach Medium', 0, 0, 0, 40000, 5000, 0, 648.86, -1442.35, 14.73, 0, 0, 0, 0, -1, 225.75, 1240, 1082.15, 0, 2, 661, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (562, 4, 'LS Apartment Near Beach Medium', 0, 0, 0, 40000, 500, 0, 657.35, -1434.11, 14.85, 0, 0, 0, 0, -1, 225.75, 1240, 1082.15, 0, 2, 662, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (563, 4, 'LS Apartment Near Beach Medium', 0, 0, 0, 40000, 0, 0, 662.43, -1440.42, 14.85, 0, 0, 0, 0, -1, 225.75, 1240, 1082.15, 0, 2, 663, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (564, 4, 'LS Apartment Near Beach Medium', 0, 0, 0, 40000, 0, 0, 685.53, -1421.91, 14.77, 0, 0, 0, 0, -1, 225.75, 1240, 1082.15, 0, 2, 664, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (565, 4, 'LS Apartment Near Beach Medium', 0, 0, 0, 40000, 0, 0, 739.09, -1418.51, 13.52, 0, 0, 0, 0, -1, 225.75, 1240, 1082.15, 0, 2, 665, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (566, 4, 'LS Apartment Near Beach Medium', 0, 0, 0, 40000, 0, 0, 738.98, -1428.77, 13.9, 0, 0, 0, 0, -1, 225.75, 1240, 1082.15, 0, 2, 666, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (567, 4, 'LS Apartment Near Beach Medium', 0, 0, 0, 40000, 0, 0, 725.6, -1440.45, 13.53, 0, 0, 0, 0, -1, 225.75, 1240, 1082.15, 0, 2, 667, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (568, 4, 'LS Apartment Near Beach Medium', 0, 0, 0, 40000, 500, 0, 662.43, -1514.03, 14.85, 0, 0, 0, 0, -1, 225.75, 1240, 1082.15, 0, 2, 668, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (569, 4, 'LS Apartment Near Beach Medium', 0, 0, 0, 40000, 0, 0, 657.43, -1528.46, 14.85, 0, 0, 0, 0, -1, 225.75, 1240, 1082.15, 0, 2, 669, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (570, 4, 'LS Apartment Near Beach Medium', 0, 0, 0, 40000, 3000, 0, 662.43, -1534.8, 14.85, 0, 0, 0, 0, -1, 225.75, 1240, 1082.15, 0, 2, 670, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (571, 4, 'LS Apartment Near Beach Medium', 0, 0, 0, 40000, 0, 0, 648.85, -1536.7, 14.93, 0, 0, 0, 0, -1, 225.75, 1240, 1082.15, 0, 2, 671, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (572, 4, 'LS Apartment Near Beach Medium', 0, 0, 0, 40000, 0, 0, 653.24, -1619.92, 15, 0, 0, 0, 0, -1, 225.75, 1240, 1082.15, 0, 2, 672, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (573, 4, 'LS Apartment Near Beach Medium', 0, 0, 0, 40000, 0, 0, 692.86, -1602.77, 15.04, 0, 0, 0, 0, -1, 225.75, 1240, 1082.15, 0, 2, 673, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (574, 4, 'LS Apartment Near Beach Medium', 0, 0, 0, 40000, 0, 0, 697.28, -1627, 3.75, 0, 0, 0, 0, -1, 225.75, 1240, 1082.15, 0, 2, 674, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (575, 4, 'LS Apartment Near Beach Medium', 0, 0, 0, 40000, 0, 0, 813.69, -1456.63, 14.22, 0, 0, 0, 0, -1, 225.75, 1240, 1082.15, 0, 2, 675, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (576, 4, 'Small House In SF', 0, 0, 0, 30000, 0, 0, -2383.75, 1128.1, 55.73, 0, 0, 0, 0, -1, 261.06, 1284.29, 1080.25, 0, 4, 676, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (577, 4, 'Apartment Near the beach LS big', 0, 0, 0, 25000, 100, 0, 822.38, -1505.51, 14.4, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 677, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (578, 4, 'Small Nice House In SF', 0, 0, 0, 60000, 0, 0, -2396.81, 1132.76, 55.73, 0, 0, 0, 0, -1, 22.93, 1403.32, 1084.43, 0, 5, 678, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (579, 4, 'Apartment Near the beach LS big', 0, 0, 0, 25000, 0, 0, 849.59, -1519.96, 14.35, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 679, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (580, 4, 'Small House In SF', 0, 0, 0, 30000, 0, 0, -2407.02, 1135.82, 55.73, 0, 0, 0, 0, -1, 261.06, 1284.29, 1080.25, 0, 4, 680, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (581, 4, 'LS Apartment Near Beach Medium', 0, 0, 0, 40000, 5000, 0, 771.12, -1510.72, 13.54, 0, 0, 0, 0, -1, 225.75, 1240, 1082.15, 0, 2, 681, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (582, 4, 'LS Apartment Near Beach Medium', 0, 0, 0, 40000, 0, 0, 761.07, -1564.08, 13.93, 0, 0, 0, 0, -1, 225.75, 1240, 1082.15, 0, 2, 682, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (583, 4, 'LS Apartment Near Beach Medium', 0, 0, 0, 25000, 0, 0, 841.34, -1471.36, 14.31, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 683, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (584, 4, 'Apartment Near the beach LS big', 0, 0, 0, 25000, 0, 0, 782.79, -1464.49, 13.54, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 684, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (585, 4, 'Apartment Near the beach LS big', 0, 0, 0, 25000, 0, 0, 824.5, -1424.2, 14.5, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 685, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (586, 4, 'Apartment Near the beach LS big', 0, 0, 0, 25000, 0, 0, 852.2, -1423.27, 14.13, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 686, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (587, 4, 'Small House In SF', 0, 0, 0, 30000, 0, 0, -2413.67, 1137.49, 55.73, 0, 0, 0, 0, -1, 261.06, 1284.29, 1080.25, 0, 4, 687, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (588, 4, 'Apartment Near the beach LS big', 0, 0, 0, 25000, 0, 0, 880.12, -1424.82, 14.48, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 688, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (589, 4, 'Small Very Nice House In SF', 0, 0, 0, 55000, 0, 0, -2424.02, 1139.41, 55.73, 0, 0, 0, 0, -1, 295.21, 1472.26, 1080.25, 0, 15, 689, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (590, 4, 'Apartment Near the beach LS big', 0, 0, 0, 25000, 0, 0, 900.22, -1447.41, 14.37, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 690, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (591, 4, 'Apartment Near the beach LS big', 0, 0, 0, 25000, 0, 0, 898.28, -1445.64, 14.36, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 691, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (592, 4, 'Small House In SF', 0, 0, 0, 30000, 0, 0, -2438.17, 1141, 55.73, 0, 0, 0, 0, -1, 261.06, 1284.29, 1080.25, 0, 4, 692, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (593, 4, 'Apartment Near the beach LS big', 0, 0, 0, 25000, 4999, 0, 900.2, -1471.03, 14.34, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 693, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (594, 4, 'Apartment Near the beach LS big', 0, 0, 0, 25000, 5000, 0, 898.36, -1472.83, 14.34, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 694, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (595, 4, 'Apartment Near the beach LS big', 0, 0, 0, 25000, 0, 0, 852.51, -1436.23, 15.04, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 695, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (596, 4, 'Small Very Nice House In SF', 0, 0, 0, 55000, 0, 0, -2451.11, 1141.75, 55.73, 0, 0, 0, 0, -1, 295.21, 1472.26, 1080.25, 0, 15, 696, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (597, 4, 'Apartment Near the beach LS big', 0, 0, 0, 25000, 0, 0, 784.39, -1436.11, 13.54, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 697, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (598, 4, 'Small House In SF', 0, 0, 0, 30000, 0, 0, -2461.57, 1141.9, 55.73, 0, 0, 0, 0, -1, 261.06, 1284.29, 1080.25, 0, 4, 698, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (599, 4, 'Apartment Near the beach LS big', 0, 0, 0, 25000, 1, 0, 987.5, -1624.49, 14.93, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 699, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (600, 4, 'Small House In SF', 0, 0, 0, 30000, 0, 0, -2468.52, 1141.91, 55.73, 0, 0, 0, 0, -1, 261.06, 1284.29, 1080.25, 0, 4, 700, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (601, 4, 'Small Nice House In SF', 0, 0, 0, 60000, 0, 0, -2478.92, 1141.96, 55.73, 0, 0, 0, 0, -1, 22.93, 1403.32, 1084.43, 0, 5, 701, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (602, 4, 'Apartment Near the beach LS big', 0, 0, 0, 25000, 1, 0, 987.52, -1704.34, 14.93, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 702, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (603, 4, 'Small House In SF', 0, 0, 0, 30000, 0, 0, -2493.18, 1141.98, 55.73, 0, 0, 0, 0, -1, 261.06, 1284.29, 1080.25, 0, 4, 703, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (604, 4, 'Small Nice House In SF', 0, 0, 0, 60000, 0, 0, -2506.44, 1142.08, 55.73, 0, 0, 0, 0, -1, 22.93, 1403.32, 1084.43, 0, 5, 704, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (605, 4, 'Small House In SF', 0, 0, 0, 30000, 0, 0, -2517, 1142.41, 55.73, 0, 0, 0, 0, -1, 261.06, 1284.29, 1080.25, 0, 4, 705, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (606, 4, 'Small House In SF', 0, 0, 0, 30000, 0, 0, -2523.88, 1142.67, 55.73, 0, 0, 0, 0, -1, 261.06, 1284.29, 1080.25, 0, 4, 706, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (607, 4, 'Small Nice House In SF', 0, 0, 0, 60000, 0, 0, -2534.53, 1143.77, 55.73, 0, 0, 0, 0, -1, 22.93, 1403.32, 1084.43, 0, 5, 707, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (608, 4, 'Small House In SF', 0, 0, 0, 30000, 0, 0, -2549.06, 1145.72, 55.73, 0, 0, 0, 0, -1, 261.06, 1284.29, 1080.25, 0, 4, 708, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (609, 4, 'Small Nice House In SF', 0, 0, 0, 60000, 0, 0, -2563.2, 1149.12, 55.73, 0, 0, 0, 0, -1, 22.93, 1403.32, 1084.43, 0, 5, 709, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (610, 4, 'LS Apartment Near Beach Medium', 0, 0, 0, 40000, 0, 0, 675.14, -1430.51, 14.85, 0, 0, 0, 0, -1, 225.75, 1240, 1082.15, 0, 2, 710, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (611, 4, 'LS Apartment Near Beach Medium', 0, 0, 0, 40000, 1, 0, 683.4, -1435.48, 14.85, 0, 0, 0, 0, -1, 225.75, 1240, 1082.15, 0, 2, 711, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (612, 4, 'LS Apartment Near Beach Medium', 0, 0, 0, 40000, 0, 0, 725.69, -1451.04, 17.69, 0, 0, 0, 0, -1, 225.75, 1240, 1082.15, 0, 2, 712, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (613, 4, 'LS Apartment Near Beach Medium', 0, 0, 0, 40000, 0, 0, 877.97, -1514.64, 14.35, 0, 0, 0, 0, -1, 225.75, 1240, 1082.15, 0, 2, 713, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (614, 4, 'LS Apartment Near Beach Medium', 0, 0, 0, 40000, 300, 0, 876.21, -1512.7, 14.35, 0, 0, 0, 0, -1, 225.75, 1240, 1082.15, 0, 2, 714, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (615, 4, 'LS Apartment Near Beach Medium', 0, 0, 0, 40000, 500, 0, 901.71, -1514.66, 14.36, 0, 0, 0, 0, -1, 225.75, 1240, 1082.15, 0, 2, 715, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (616, 4, 'LS Apartment Near Beach Medium', 0, 0, 0, 40000, 0, 0, 903.4, -1512.85, 14.36, 0, 0, 0, 0, -1, 225.75, 1240, 1082.15, 0, 2, 716, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (617, 4, 'LS Apartment Near Beach Medium', 0, 0, 0, 40000, 2000, 0, 797.24, -1729.38, 13.54, 0, 0, 0, 0, -1, 225.75, 1240, 1082.15, 0, 2, 717, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (618, 4, 'Medium Size House In SF', 0, 0, 0, 120000, 0, 0, -2711.23, 967.59, 54.46, 0, 0, 0, 0, -1, 447, 1397.09, 1084.3, 0, 2, 718, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (619, 4, 'Medium Size House In SF', 0, 0, 0, 120000, 0, 0, -2656.6, 985.82, 64.99, 0, 0, 0, 0, -1, 447, 1397.09, 1084.3, 0, 2, 719, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (620, 4, 'Small Nice House In SF', 0, 0, 0, 60000, 0, 0, -2584.18, 992.25, 78.27, 0, 0, 0, 0, -1, 22.93, 1403.32, 1084.43, 0, 5, 720, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (621, 4, 'LS Apartment Near Beach Medium', 0, 0, 0, 40000, 0, 0, 791.38, -1753.22, 13.46, 0, 0, 0, 0, -1, 225.75, 1240, 1082.15, 0, 2, 721, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (622, 4, 'Small House In SF', 0, 0, 0, 30000, 0, 0, -2573.6, 992.26, 78.27, 0, 0, 0, 0, -1, 261.06, 1284.29, 1080.25, 0, 4, 722, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (623, 4, 'LS Apartment Near Beach Medium', 0, 0, 0, 40000, 0, 0, 893.64, -1635.7, 14.93, 0, 0, 0, 0, -1, 225.75, 1240, 1082.15, 0, 2, 723, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (624, 4, 'Small House In SF', 0, 0, 0, 30000, 0, 0, -2564.32, 992.25, 78.27, 0, 0, 0, 0, -1, 261.06, 1284.29, 1080.25, 0, 4, 724, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (625, 4, 'LS Apartment Near Beach Medium', 0, 0, 0, 40000, 0, 0, 846.72, -1717.4, 14.93, 0, 0, 0, 0, -1, 225.75, 1240, 1082.15, 0, 2, 725, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (626, 4, 'Small Nice House In SF', 0, 0, 0, 60000, 0, 0, -2553.66, 992.25, 78.27, 0, 0, 0, 0, -1, 22.93, 1403.32, 1084.43, 0, 5, 726, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (627, 4, 'LS Apartment Near Beach Medium', 0, 0, 0, 40000, 0, 0, 865.22, -1633.84, 14.93, 0, 0, 0, 0, -1, 225.75, 1240, 1082.15, 0, 2, 727, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (628, 4, 'Appartment 2nd Floor In SF', 0, 0, 0, 80000, 0, 0, -2543.56, 922.38, 67.09, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 728, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (629, 4, 'Appartment 1st Floor In SF', 0, 0, 0, 80000, 0, 0, -2545.33, 920.34, 64.98, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 729, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (630, 4, 'Small Nice House In SF', 0, 0, 0, 60000, 0, 0, -2551.82, 920.38, 64.98, 0, 0, 0, 0, -1, 22.93, 1403.32, 1084.43, 0, 5, 730, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (631, 4, 'Small House In SF', 0, 0, 0, 30000, 0, 0, -2562.42, 920.37, 64.98, 0, 0, 0, 0, -1, 261.06, 1284.29, 1080.25, 0, 4, 731, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (632, 4, 'Small House In SF', 0, 0, 0, 30000, 0, 0, -2569.98, 920.36, 64.98, 0, 0, 0, 0, -1, 261.06, 1284.29, 1080.25, 0, 4, 732, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (633, 4, 'Small Nice House In SF', 0, 0, 0, 60000, 0, 0, -2580.92, 920.38, 64.98, 0, 0, 0, 0, -1, 22.93, 1403.32, 1084.43, 0, 5, 733, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (634, 4, 'Medium house at LV', 0, 0, 0, 150000, 0, 0, 1364.51, 1896.76, 11.47, 0, 0, 0, 0, -1, 447, 1397.09, 1084.3, 0, 2, 734, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (635, 4, 'Medium house at LV', 0, 0, 0, 150000, 5, 0, 1363.96, 1931.62, 11.47, 0, 0, 0, 0, -1, 447, 1397.09, 1084.3, 0, 2, 735, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (636, 4, '3 Floor House In SF', 0, 0, 0, 600000, 0, 0, -2641.24, 935.72, 71.95, 0, 0, 0, 0, -1, 226.3, 1114.37, 1080.99, 0, 5, 736, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (637, 4, 'Medium house at LV', 0, 0, 0, 150000, 0, 0, 1412.63, 1951.25, 11.45, 0, 0, 0, 0, -1, 447, 1397.09, 1084.3, 0, 2, 737, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (638, 4, 'Medium house at LV', 0, 0, 0, 150000, 0, 0, 1439.76, 1951.25, 11.46, 0, 0, 0, 0, -1, 447, 1397.09, 1084.3, 0, 2, 738, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (639, 4, 'Medium house at LV', 0, 0, 0, 150000, 0, 0, 1462.3, 1949.81, 11.47, 0, 0, 0, 0, -1, 447, 1397.09, 1084.3, 0, 2, 739, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (640, 4, 'Medium house at LV', 0, 0, 0, 150000, 0, 0, 1464.5, 1919.98, 11.46, 0, 0, 0, 0, -1, 447, 1397.09, 1084.3, 0, 2, 740, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (641, 4, 'Medium house at LV', 0, 0, 0, 150000, 0, 0, 1464.49, 1895.12, 11.46, 0, 0, 0, 0, -1, 447, 1397.09, 1084.3, 0, 2, 741, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (642, 4, 'Medium house at LV', 0, 0, 0, 150000, 0, 0, 1409.36, 1920.01, 11.47, 0, 0, 0, 0, -1, 447, 1397.09, 1084.3, 0, 2, 742, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (643, 4, 'Medium house at LV', 0, 0, 0, 150000, 0, 0, 1365.41, 1974.17, 11.46, 0, 0, 0, 0, -1, 447, 1397.09, 1084.3, 0, 2, 743, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (644, 4, 'Medium house at LV', 0, 0, 0, 150000, 0, 0, 1364.39, 2003.71, 11.46, 0, 0, 0, 0, -1, 447, 1397.09, 1084.3, 0, 2, 744, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (645, 4, 'Large House In SF', 0, 0, 0, 470000, 2500, 0, -2661.96, 876.34, 79.77, 0, 0, 0, 0, -1, 234.22, 1063.89, 1084.21, 0, 6, 745, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (646, 4, 'small project lv', 0, 0, 0, 30000, 0, 0, 1422.26, 2026.93, 14.74, 0, 0, 0, 0, -1, 266.5, 304.99, 999.14, 0, 2, 746, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (647, 4, 'Small Nice House In SF', 0, 0, 0, 60000, 0, 0, -2583.77, 896.25, 64.98, 0, 0, 0, 0, -1, 22.93, 1403.32, 1084.43, 0, 5, 747, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (648, 4, 'small project lv', 0, 0, 0, 30000, 0, 0, 1414.7, 2026.87, 10.82, 0, 0, 0, 0, -1, 266.5, 304.99, 999.14, 0, 2, 748, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (649, 4, 'small project lv', 0, 0, 0, 30000, 0, 0, 1422.25, 2026.95, 10.82, 0, 0, 0, 0, -1, 266.5, 304.99, 999.14, 0, 2, 749, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (650, 4, 'small project lv', 0, 0, 0, 30000, 0, 0, 1414.7, 2033.17, 10.82, 0, 0, 0, 0, -1, 266.5, 304.99, 999.14, 0, 2, 750, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (651, 4, 'small project lv', 0, 0, 0, 30000, 0, 0, 1422.25, 2033.18, 10.82, 0, 0, 0, 0, -1, 266.5, 304.99, 999.14, 0, 2, 751, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (652, 4, 'small project lv', 0, 0, 0, 30000, 0, 0, 1414.7, 2033.13, 14.74, 0, 0, 0, 0, -1, 266.5, 304.99, 999.14, 0, 2, 752, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (653, 4, 'small project lv', 0, 0, 0, 30000, 0, 0, 1422.25, 2033.18, 14.74, 0, 0, 0, 0, -1, 266.5, 304.99, 999.14, 0, 2, 753, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (654, 4, 'small project lv', 0, 0, 0, 30000, 0, 0, 1414.7, 2026.97, 14.74, 0, 0, 0, 0, -1, 266.5, 304.99, 999.14, 0, 2, 754, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (655, 4, 'small project lv', 0, 0, 0, 30000, 0, 0, 1453.72, 2026.92, 10.82, 0, 0, 0, 0, -1, 266.5, 304.99, 999.14, 0, 2, 755, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (656, 4, 'small project lv', 0, 0, 0, 30000, 0, 0, 1461.28, 2026.95, 10.82, 0, 0, 0, 0, -1, 266.5, 304.99, 999.14, 0, 2, 756, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (657, 4, 'small project lv', 0, 0, 0, 30000, 0, 0, 1453.72, 2033.22, 10.82, 0, 0, 0, 0, -1, 266.5, 304.99, 999.14, 0, 2, 757, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (658, 4, 'small project lv', 0, 0, 0, 30000, 0, 0, 1461.28, 2033.19, 10.82, 0, 0, 0, 0, -1, 266.5, 304.99, 999.14, 0, 2, 758, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (659, 4, 'small project lv', 0, 0, 0, 30000, 0, 0, 1453.72, 2033.21, 14.74, 0, 0, 0, 0, -1, 266.5, 304.99, 999.14, 0, 2, 759, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (660, 4, 'small project lv', 0, 0, 0, 30000, 0, 0, 1461.28, 2033.11, 14.74, 0, 0, 0, 0, -1, 266.5, 304.99, 999.14, 0, 2, 760, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (661, 4, 'small project lv', 0, 0, 0, 30000, 0, 0, 1453.72, 2026.95, 14.74, 0, 0, 0, 0, -1, 266.5, 304.99, 999.14, 0, 2, 761, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (662, 4, 'small project lv', 0, 0, 0, 30000, 0, 0, 1461.28, 2026.91, 14.74, 0, 0, 0, 0, -1, 266.5, 304.99, 999.14, 0, 2, 762, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (663, 4, 'Small House In SF', 0, 0, 0, 30000, 0, 0, -2573.13, 896.26, 64.98, 0, 0, 0, 0, -1, 261.06, 1284.29, 1080.25, 0, 4, 763, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (664, 4, 'small project lv', 0, 0, 0, 30000, 0, 0, 1414.53, 2003.91, 10.82, 0, 0, 0, 0, -1, 266.5, 304.99, 999.14, 0, 2, 764, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (665, 4, 'small project lv', 0, 0, 0, 30000, 0, 0, 1414.48, 1996.36, 10.82, 0, 0, 0, 0, -1, 266.5, 304.99, 999.14, 0, 2, 765, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (666, 4, 'Small House In SF', 0, 0, 0, 30000, 0, 0, -2566.5, 896.65, 64.98, 0, 0, 0, 0, -1, 261.06, 1284.29, 1080.25, 0, 4, 766, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (667, 4, 'small project lv', 0, 0, 0, 30000, 0, 0, 1408.26, 2003.91, 10.82, 0, 0, 0, 0, -1, 266.5, 304.99, 999.14, 0, 2, 767, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (668, 4, 'small project lv', 0, 0, 0, 30000, 0, 0, 1408.18, 1996.36, 10.82, 0, 0, 0, 0, -1, 266.5, 304.99, 999.14, 0, 2, 768, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (669, 4, 'small project lv', 0, 0, 0, 30000, 0, 0, 1408.31, 1996.36, 14.74, 0, 0, 0, 0, -1, 266.5, 304.99, 999.14, 0, 2, 769, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (670, 4, 'small project lv', 0, 0, 0, 30000, 0, 0, 1408.35, 2003.91, 14.74, 0, 0, 0, 0, -1, 266.5, 304.99, 999.14, 0, 2, 770, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (671, 4, 'small project lv', 0, 0, 0, 30000, 0, 0, 1414.51, 1996.36, 14.74, 0, 0, 0, 0, -1, 266.5, 304.99, 999.14, 0, 2, 771, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (672, 4, 'small project lv', 0, 0, 0, 30000, 0, 0, 1414.52, 2003.91, 14.74, 0, 0, 0, 0, -1, 266.5, 304.99, 999.14, 0, 2, 772, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (673, 4, 'Small Nice House In SF', 0, 0, 0, 60000, 0, 0, -2556.02, 896.64, 64.98, 0, 0, 0, 0, -1, 22.93, 1403.32, 1084.43, 0, 5, 773, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (674, 4, 'small project lv', 0, 0, 0, 30000, 0, 0, 1495.69, 2026.97, 10.82, 0, 0, 0, 0, -1, 266.5, 304.99, 999.14, 0, 2, 774, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (675, 4, 'small project lv', 0, 0, 0, 30000, 0, 0, 1503.24, 2027.01, 10.82, 0, 0, 0, 0, -1, 266.5, 304.99, 999.14, 0, 2, 775, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (676, 4, 'small project lv', 0, 0, 0, 30000, 0, 0, 1495.69, 2033.25, 10.82, 0, 0, 0, 0, -1, 266.5, 304.99, 999.14, 0, 2, 776, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (677, 4, 'small project lv', 0, 0, 0, 30000, 0, 0, 1503.24, 2033.15, 10.82, 0, 0, 0, 0, -1, 266.5, 304.99, 999.14, 0, 2, 777, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (678, 4, 'small project lv', 0, 0, 0, 30000, 0, 0, 1495.69, 2033.16, 14.74, 0, 0, 0, 0, -1, 266.5, 304.99, 999.14, 0, 2, 778, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (679, 4, 'small project lv', 0, 0, 0, 30000, 0, 0, 1503.25, 2033.2, 14.74, 0, 0, 0, 0, -1, 266.5, 304.99, 999.14, 0, 2, 779, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (680, 4, 'small project lv', 0, 0, 0, 30000, 0, 0, 1495.69, 2027.01, 14.74, 0, 0, 0, 0, -1, 266.5, 304.99, 999.14, 0, 2, 780, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (681, 4, 'small project lv', 0, 0, 0, 30000, 0, 0, 1503.24, 2026.85, 14.74, 0, 0, 0, 0, -1, 266.5, 304.99, 999.14, 0, 2, 781, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (682, 4, 'small project lv', 0, 0, 0, 30000, 0, 0, 1534.72, 2026.98, 10.82, 0, 0, 0, 0, -1, 266.5, 304.99, 999.14, 0, 2, 782, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (683, 4, 'small project lv', 0, 0, 0, 30000, 0, 0, 1542.26, 2026.88, 10.82, 0, 0, 0, 0, -1, 266.5, 304.99, 999.14, 0, 2, 783, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (684, 4, 'small project lv', 0, 0, 0, 30000, 0, 0, 1534.72, 2033.18, 10.82, 0, 0, 0, 0, -1, 266.5, 304.99, 999.14, 0, 2, 784, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (685, 4, 'small project lv', 0, 0, 0, 30000, 0, 0, 1542.27, 2033.22, 10.82, 0, 0, 0, 0, -1, 266.5, 304.99, 999.14, 0, 2, 785, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (686, 4, 'Small House In SF', 0, 0, 0, 30000, 0, 0, -2541.55, 896.64, 64.98, 0, 0, 0, 0, -1, 261.06, 1284.29, 1080.25, 0, 4, 786, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (687, 4, 'small project lv', 0, 0, 0, 30000, 0, 0, 1534.72, 2033.23, 14.74, 0, 0, 0, 0, -1, 266.5, 304.99, 999.14, 0, 2, 787, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (688, 4, 'small project lv', 0, 0, 0, 30000, 0, 0, 1542.27, 2033.12, 14.74, 0, 0, 0, 0, -1, 266.5, 304.99, 999.14, 0, 2, 788, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (689, 4, 'small project lv', 0, 0, 0, 30000, 0, 0, 1534.71, 2027, 14.74, 0, 0, 0, 0, -1, 266.5, 304.99, 999.14, 0, 2, 789, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (690, 4, 'small project lv', 0, 0, 0, 30000, 0, 0, 1542.27, 2026.88, 14.74, 0, 0, 0, 0, -1, 266.5, 304.99, 999.14, 0, 2, 790, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (691, 4, 'small project lv', 0, 0, 0, 30000, 0, 0, 1542.45, 2003.91, 10.82, 0, 0, 0, 0, -1, 266.5, 304.99, 999.14, 0, 2, 791, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (692, 4, 'small project lv', 0, 0, 0, 30000, 0, 0, 1542.49, 1996.36, 10.82, 0, 0, 0, 0, -1, 266.5, 304.99, 999.14, 0, 2, 792, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (693, 4, 'small project lv', 0, 0, 0, 30000, 0, 0, 1548.75, 2003.91, 10.82, 0, 0, 0, 0, -1, 266.5, 304.99, 999.14, 0, 2, 793, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (694, 4, 'small project lv', 0, 0, 0, 30000, 0, 0, 1548.68, 1996.35, 10.82, 0, 0, 0, 0, -1, 266.5, 304.99, 999.14, 0, 2, 794, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (695, 4, 'small project lv', 0, 0, 0, 30000, 0, 0, 1548.7, 2003.91, 14.74, 0, 0, 0, 0, -1, 266.5, 304.99, 999.14, 0, 2, 795, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (696, 4, 'small project lv', 0, 0, 0, 30000, 0, 0, 1548.64, 1996.35, 14.74, 0, 0, 0, 0, -1, 266.5, 304.99, 999.14, 0, 2, 796, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (697, 4, 'small project lv', 0, 0, 0, 30000, 0, 0, 1542.55, 2003.89, 14.74, 0, 0, 0, 0, -1, 266.5, 304.99, 999.14, 0, 2, 797, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (698, 4, 'small project lv', 0, 0, 0, 30000, 0, 0, 1542.41, 1996.35, 14.74, 0, 0, 0, 0, -1, 266.5, 304.99, 999.14, 0, 2, 798, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (699, 4, 'Medium house at LV', 0, 0, 0, 150000, 0, 0, 1595.5, 2038.34, 11.47, 0, 0, 0, 0, -1, 447, 1397.09, 1084.3, 0, 2, 799, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (700, 4, '3 Story Condo In SF', 0, 0, 0, 120000, 0, 0, -2502.88, 921.37, 65.24, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 800, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (701, 4, 'Medium house at LV', 0, 0, 0, 150000, 0, 0, 1641.79, 2044.95, 11.32, 0, 0, 0, 0, -1, 447, 1397.09, 1084.3, 0, 2, 801, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (702, 4, 'Medium house at LV', 0, 0, 0, 150000, 0, 0, 1594.96, 2071.07, 11.32, 0, 0, 0, 0, -1, 447, 1397.09, 1084.3, 0, 2, 802, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (703, 4, '3 Story Condo In SF', 0, 0, 0, 120000, 0, 0, -2471.77, 921.42, 63.16, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 803, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (704, 4, 'Medium house at LV', 0, 0, 0, 150000, 0, 0, 1596.41, 2093.74, 11.31, 0, 0, 0, 0, -1, 447, 1397.09, 1084.3, 0, 2, 804, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (705, 4, 'Medium house at LV', 0, 0, 0, 150000, 0, 0, 1640.35, 2075.67, 11.31, 0, 0, 0, 0, -1, 447, 1397.09, 1084.3, 0, 2, 805, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (706, 4, 'Medium house at LV', 0, 0, 0, 150000, 0, 0, 1640.35, 2102.86, 11.31, 0, 0, 0, 0, -1, 447, 1397.09, 1084.3, 0, 2, 806, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (707, 4, '3 Story Condo In SF', 0, 0, 0, 120000, 0, 0, -2449.79, 921.4, 58.14, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 807, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (708, 4, 'Medium house at LV', 0, 0, 0, 150000, 0, 0, 1645.45, 2127.38, 11.2, 0, 0, 0, 0, -1, 447, 1397.09, 1084.3, 0, 2, 808, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (709, 4, 'Medium house at LV', 0, 0, 0, 150000, 0, 0, 1641.26, 2149.74, 11.31, 0, 0, 0, 0, -1, 447, 1397.09, 1084.3, 0, 2, 809, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (710, 4, '3 Story Condo In SF', 0, 0, 0, 120000, 0, 0, -2431.38, 921.41, 50.58, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 810, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (711, 4, '5 Story Condo In SF', 0, 0, 0, 500000, 0, 0, -2413.09, 921.43, 45.47, 0, 0, 0, 0, -1, 226.3, 1114.37, 1080.99, 0, 5, 811, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (712, 4, 'Medium house at LV', 0, 0, 0, 150000, 0, 0, 1595.5, 2123.37, 11.46, 0, 0, 0, 0, -1, 447, 1397.09, 1084.3, 0, 2, 812, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (713, 4, 'Medium house at LV', 0, 0, 0, 150000, 0, 0, 1596.41, 2147.43, 11.46, 0, 0, 0, 0, -1, 447, 1397.09, 1084.3, 0, 2, 813, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (714, 4, '5 Story Condo In SF', 0, 0, 0, 500000, 0, 0, -2412.98, 895.23, 45.47, 0, 0, 0, 0, -1, 226.3, 1114.37, 1080.99, 0, 5, 814, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (715, 4, 'Medium house at LV', 0, 0, 0, 150000, 0, 0, 1684.51, 2123.46, 11.46, 0, 0, 0, 0, -1, 447, 1397.09, 1084.3, 0, 2, 815, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (716, 4, '3 Story Condo In SF', 0, 0, 0, 120000, 0, 0, -2431.45, 895.25, 50.54, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 816, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (717, 4, 'Medium house at LV', 0, 0, 0, 150000, 0, 0, 1685.42, 2093.88, 11.46, 0, 0, 0, 0, -1, 447, 1397.09, 1084.3, 0, 2, 817, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (718, 4, '3 Story Condo In SF', 0, 0, 0, 120000, 0, 0, -2449.8, 895.24, 58.15, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 818, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (719, 4, 'Medium house at LV', 0, 0, 0, 150000, 0, 0, 1680.26, 2069.24, 11.36, 0, 0, 0, 0, -1, 447, 1397.09, 1084.3, 0, 2, 819, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (720, 4, 'Medium house at LV', 0, 0, 0, 150000, 0, 0, 1684.51, 2046.69, 11.47, 0, 0, 0, 0, -1, 447, 1397.09, 1084.3, 0, 2, 820, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (721, 4, '3 Story Condo In SF', 0, 0, 0, 120000, 0, 0, -2471.93, 895.26, 63.17, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 821, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (722, 4, '3 Story Condo In SF', 0, 0, 0, 120000, 0, 0, -2503.02, 895.26, 65.25, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 822, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (723, 4, '3 Story Condo In SF', 0, 0, 0, 120000, 0, 0, -2585.97, 794.18, 49.42, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 823, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (724, 4, '3 Story Condo In SF', 0, 0, 0, 120000, 0, 0, -2569.11, 794.17, 49.42, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 824, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (725, 4, '3 Story Condo In SF', 0, 0, 0, 120000, 0, 0, -2550.83, 794.17, 49.42, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 825, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (726, 4, 'Nice looking house at lv', 0, 0, 0, 300000, 0, 0, 2056.5, 2665.19, 10.82, 0, 0, 0, 0, -1, 234.22, 1063.89, 1084.21, 0, 6, 826, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (727, 4, 'Nice looking house at lv', 0, 0, 0, 300000, 0, 0, 2037.04, 2664.5, 10.82, 0, 0, 0, 0, -1, 234.22, 1063.89, 1084.21, 0, 6, 827, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (728, 4, 'Nice looking house at lv', 0, 0, 0, 300000, 0, 0, 2018.03, 2664.67, 11.3, 0, 0, 0, 0, -1, 234.22, 1063.89, 1084.21, 0, 6, 828, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (729, 4, 'Small Nice House In SF', 0, 0, 0, 60000, 0, 0, -2548.68, 819.79, 49.98, 0, 0, 0, 0, -1, 22.93, 1403.32, 1084.43, 0, 5, 829, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (730, 4, 'Nice looking house at lv', 0, 0, 0, 300000, 0, 0, 1989.24, 2665.19, 10.82, 0, 0, 0, 0, -1, 234.22, 1063.89, 1084.21, 0, 6, 830, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (731, 4, 'Small House In SF', 0, 0, 0, 30000, 0, 0, -2559.22, 819.79, 49.98, 0, 0, 0, 0, -1, 261.06, 1284.29, 1080.25, 0, 4, 831, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (732, 4, 'Nice looking house at lv', 0, 0, 0, 300000, 0, 0, 1969.62, 2664.5, 10.82, 0, 0, 0, 0, -1, 234.22, 1063.89, 1084.21, 0, 6, 832, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (733, 4, 'Nice looking house at lv', 0, 0, 0, 300000, 0, 0, 1950.53, 2664.67, 11.3, 0, 0, 0, 0, -1, 234.22, 1063.89, 1084.21, 0, 6, 833, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (734, 4, 'Nice looking house at lv', 0, 0, 0, 300000, 0, 0, 1921.7, 2665.19, 10.82, 0, 0, 0, 0, -1, 234.22, 1063.89, 1084.21, 0, 6, 834, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (735, 4, 'Small House In SF', 0, 0, 0, 30000, 0, 0, -2565.91, 819.8, 49.99, 0, 0, 0, 0, -1, 261.06, 1284.29, 1080.25, 0, 4, 835, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (736, 4, 'Small Nice House In SF', 0, 0, 0, 60000, 0, 0, -2576.42, 819.79, 49.98, 0, 0, 0, 0, -1, 22.93, 1403.32, 1084.43, 0, 5, 836, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (737, 4, 'Small House In SF', 0, 0, 0, 30000, 0, 0, -2590.88, 819.8, 49.99, 0, 0, 0, 0, -1, 261.06, 1284.29, 1080.25, 0, 4, 837, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (738, 4, 'Nice looking house at lv', 0, 0, 0, 300000, 5000, 0, 1929.85, 2774.3, 10.82, 0, 0, 0, 0, -1, 234.22, 1063.89, 1084.21, 0, 6, 838, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (739, 4, 'Small House In SF', 0, 0, 0, 30000, 0, 0, -2642.14, 820.32, 49.99, 0, 0, 0, 0, -1, 261.06, 1284.29, 1080.25, 0, 4, 839, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (740, 4, 'Nice looking house at lv', 0, 0, 0, 300000, 0, 0, 1931.29, 2721.26, 10.82, 0, 0, 0, 0, -1, 234.22, 1063.89, 1084.21, 0, 6, 840, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (741, 4, 'Small Nice House In SF', 0, 0, 0, 60000, 0, 0, -2652.47, 820.32, 49.98, 0, 0, 0, 0, -1, 22.93, 1403.32, 1084.43, 0, 5, 841, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (742, 4, 'Nice looking house at lv', 0, 0, 0, 300000, 0, 0, 1950.69, 2721.95, 10.82, 0, 0, 0, 0, -1, 234.22, 1063.89, 1084.21, 0, 6, 842, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (743, 4, 'Small House In SF', 0, 0, 0, 30000, 0, 0, -2666.91, 820.32, 49.98, 0, 0, 0, 0, -1, 261.06, 1284.29, 1080.25, 0, 4, 843, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (744, 4, 'Nice looking house at lv', 0, 0, 0, 300000, 0, 0, 1967.32, 2766.54, 10.83, 0, 0, 0, 0, -1, 234.22, 1063.89, 1084.21, 0, 6, 844, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (745, 4, 'Small House In SF', 0, 0, 0, 30000, 5000, 0, -2645.52, 803.08, 49.98, 0, 0, 0, 0, -1, 261.06, 1284.29, 1080.25, 0, 4, 845, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (746, 4, 'Nice looking house at lv', 0, 0, 0, 300000, 0, 0, 1992.54, 2764.64, 10.82, 0, 0, 0, 0, -1, 234.22, 1063.89, 1084.21, 0, 6, 846, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (747, 4, 'Small Nice House In SF', 0, 0, 0, 60000, 0, 0, -2659.84, 803.09, 49.98, 0, 0, 0, 0, -1, 22.93, 1403.32, 1084.43, 0, 5, 847, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (748, 4, 'Nice looking house at lv', 0, 0, 0, 300000, 0, 0, 1969.78, 2721.78, 11.3, 0, 0, 0, 0, -1, 234.22, 1063.89, 1084.21, 0, 6, 848, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (749, 4, 'Nice looking house at lv', 0, 0, 0, 300000, 0, 0, 1998.72, 2721.26, 10.82, 0, 0, 0, 0, -1, 234.22, 1063.89, 1084.21, 0, 6, 849, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (750, 4, 'Small House In SF', 0, 0, 0, 30000, 0, 0, -2670.57, 803.08, 49.98, 0, 0, 0, 0, -1, 261.06, 1284.29, 1080.25, 0, 4, 850, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (751, 4, 'Nice looking house at lv', 0, 0, 0, 300000, 0, 0, 2018.15, 2721.95, 10.82, 0, 0, 0, 0, -1, 234.22, 1063.89, 1084.21, 0, 6, 851, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (752, 4, 'Small House In SF', 0, 0, 0, 30000, 1000, 0, -2677.16, 803.09, 49.98, 0, 0, 0, 0, -1, 261.06, 1284.29, 1080.25, 0, 4, 852, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (753, 4, 'Nice looking house at lv', 0, 0, 0, 300000, 0, 0, 2018.49, 2766.54, 10.83, 0, 0, 0, 0, -1, 234.22, 1063.89, 1084.21, 0, 6, 853, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (754, 4, 'Nice looking house at lv', 0, 0, 0, 300000, 0, 0, 2039.63, 2766.55, 10.83, 0, 0, 0, 0, -1, 234.22, 1063.89, 1084.21, 0, 6, 854, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (755, 4, 'Small Nice House In SF', 0, 0, 0, 60000, 0, 0, -2687.88, 803.09, 49.98, 0, 0, 0, 0, -1, 22.93, 1403.32, 1084.43, 0, 5, 855, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (756, 4, 'Small Nice House In SF', 0, 0, 0, 60000, 0, 0, -2698.92, 803.1, 49.97, 0, 0, 0, 0, -1, 22.93, 1403.32, 1084.43, 0, 5, 856, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (757, 4, 'Nice looking house at lv', 0, 0, 0, 300000, 0, 0, 2049.62, 2764.29, 10.82, 0, 0, 0, 0, -1, 234.22, 1063.89, 1084.21, 0, 6, 857, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (758, 4, 'Nice looking house at lv', 0, 0, 0, 300000, 0, 0, 2066.01, 2721.26, 10.82, 0, 0, 0, 0, -1, 234.22, 1063.89, 1084.21, 0, 6, 858, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (759, 4, 'Small House In SF', 0, 0, 0, 30000, 0, 0, -2709.85, 803.09, 49.98, 0, 0, 0, 0, -1, 261.06, 1284.29, 1080.25, 0, 4, 859, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (760, 4, '4 Story Condo In SF', 0, 0, 0, 400000, 0, 0, -2685.1, 820.49, 49.98, 0, 0, 0, 0, -1, 234.22, 1063.89, 358.5, 0, 6, 860, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (761, 4, '4 Story Condo In SF', 0, 0, 0, 400000, 0, 0, -2700.38, 820.84, 49.98, 0, 0, 0, 0, -1, 234.22, 1063.89, 358.5, 0, 6, 861, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (762, 4, 'Small Nice House In SF', 0, 0, 0, 60000, 0, 0, -2726.68, 822.98, 53.73, 0, 0, 0, 0, -1, 22.93, 1403.32, 1084.43, 0, 5, 862, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (763, 4, 'Small House In SF', 0, 0, 0, 30000, 0, 0, -2737.25, 822.99, 53.73, 0, 0, 0, 0, -1, 261.06, 1284.29, 1080.25, 0, 4, 863, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (764, 4, '4 Story Condo In SF', 0, 0, 0, 400000, 0, 0, -2409.05, 819.96, 35.18, 0, 0, 0, 0, -1, 234.22, 1063.89, 358.5, 0, 6, 864, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (765, 4, '3 Story Condo In SF', 0, 0, 0, 120000, 0, 0, -2487.47, 821.3, 38.38, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 865, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (766, 4, 'huge 2 floor nice looking house at LV', 0, 0, 0, 500000, 0, 0, 1451.36, 2565.43, 10.83, 0, 0, 0, 0, -1, 226.3, 1114.37, 1080.99, 0, 5, 866, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (767, 4, '3 Story Condo In SF', 0, 0, 0, 120000, 0, 0, -2504.61, 821.31, 45.99, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 867, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (768, 4, 'huge 2 floor nice looking house at LV', 0, 0, 0, 500000, 0, 0, 1441.72, 2567.69, 10.82, 0, 0, 0, 0, -1, 226.3, 1114.37, 1080.99, 0, 5, 868, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (769, 4, 'huge 2 floor nice looking house at LV', 0, 0, 0, 500000, 0, 0, 1417.87, 2567.48, 10.82, 0, 0, 0, 0, -1, 226.3, 1114.37, 1080.99, 0, 5, 869, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (770, 4, 'huge 2 floor nice looking house at LV', 0, 0, 0, 500000, 0, 0, 1359.74, 2565.43, 10.83, 0, 0, 0, 0, -1, 226.3, 1114.37, 1080.99, 0, 5, 870, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (771, 4, 'Nice looking house at lv', 0, 0, 0, 300000, 0, 0, 1344.72, 2610.19, 11.3, 0, 0, 0, 0, -1, 234.22, 1063.89, 1084.21, 0, 6, 871, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (772, 4, 'Normal Size House In SF', 0, 0, 0, 85000, 0, 0, -2731.47, 723.69, 41.27, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 872, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (773, 4, 'huge 2 floor nice looking house at LV', 0, 0, 0, 500000, 0, 0, 1349.6, 2567.69, 10.82, 0, 0, 0, 0, -1, 226.3, 1114.37, 1080.99, 0, 5, 873, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (774, 4, 'Nice looking house at lv', 0, 0, 0, 300000, 0, 0, 1313.84, 2610.19, 11.3, 0, 0, 0, 0, -1, 234.22, 1063.89, 1084.21, 0, 6, 874, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (775, 4, 'huge 2 floor nice looking house at LV', 0, 0, 0, 500000, 0, 0, 1325.61, 2567.34, 10.82, 0, 0, 0, 0, -1, 226.3, 1114.37, 1080.99, 0, 5, 875, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (776, 4, 'Small Nice House In SF', 0, 0, 0, 60000, 0, 0, -2723.45, 722.82, 41.27, 0, 0, 0, 0, -1, 22.93, 1403.32, 1084.43, 0, 5, 876, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (777, 4, 'Small House In SF', 0, 0, 0, 30000, 0, 0, -2710.89, 722.82, 39.72, 0, 0, 0, 0, -1, 261.06, 1284.29, 1080.25, 0, 4, 877, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (778, 4, 'Nice looking house at lv', 0, 0, 0, 300000, 0, 0, 1284.86, 2610.72, 10.82, 0, 0, 0, 0, -1, 234.22, 1063.89, 1084.21, 0, 6, 878, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (779, 4, 'Small House In SF', 0, 0, 0, 30000, 0, 0, -2706.75, 722.85, 37.54, 0, 0, 0, 0, -1, 261.06, 1284.29, 1080.25, 0, 4, 879, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (780, 4, 'Small Nice House In SF', 0, 0, 0, 500000, 0, 0, 1271.88, 2564.57, 10.82, 0, 0, 0, 0, -1, 226.3, 1114.37, 1080.99, 0, 5, 880, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (781, 4, 'Small Nice House In SF', 0, 0, 0, 500000, 0, 0, 1269.62, 2554.43, 10.83, 0, 0, 0, 0, -1, 226.3, 1114.37, 1080.99, 0, 5, 881, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (782, 4, 'Normal Size House In SF', 0, 0, 0, 85000, 0, 0, -2686.04, 722.86, 32.23, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 882, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (783, 4, 'Small Nice House In SF', 0, 0, 0, 500000, 0, 0, 1273.95, 2522.51, 10.82, 0, 0, 0, 0, -1, 226.3, 1114.37, 1080.99, 0, 5, 883, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (784, 4, 'Small Nice House In SF', 0, 0, 0, 500000, 0, 0, 1316.47, 2524.65, 10.82, 0, 0, 0, 0, -1, 226.3, 1114.37, 1080.99, 0, 5, 884, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (785, 4, 'Small Nice House In SF', 0, 0, 0, 60000, 0, 0, -2678.14, 722.25, 28.6, 0, 0, 0, 0, -1, 22.93, 1403.32, 1084.43, 0, 5, 885, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (786, 4, 'Small House In SF', 0, 0, 0, 30000, 0, 0, -2665.49, 722.24, 27.96, 0, 0, 0, 0, -1, 261.06, 1284.29, 1080.25, 0, 4, 886, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (787, 4, 'Small House In SF', 0, 0, 0, 30000, 0, 0, -2661.59, 722.23, 27.96, 0, 0, 0, 0, -1, 261.06, 1284.29, 1080.25, 0, 4, 887, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (788, 4, 'huge 2 floor nice looking house at LV', 0, 0, 0, 500000, 0, 0, 1503.24, 2567.69, 10.82, 0, 0, 0, 0, -1, 226.3, 1114.37, 1080.99, 0, 5, 888, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (789, 4, 'Apartment 1st Floor In SF', 0, 0, 0, 80000, 0, 0, -2642.08, 728.03, 27.96, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 889, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (790, 4, 'Nice looking house at lv', 0, 0, 0, 300000, 0, 0, 1515.71, 2610.19, 11.3, 0, 0, 0, 0, -1, 234.22, 1063.89, 1084.21, 0, 6, 890, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (791, 4, 'Appartment 2nd Floor In SF', 0, 0, 0, 80000, 0, 0, -2640.3, 730.54, 30.07, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 891, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (792, 4, 'huge 2 floor nice looking house at LV', 0, 0, 0, 500000, 0, 0, 1513.38, 2565.43, 10.83, 0, 0, 0, 0, -1, 226.3, 1114.37, 1080.99, 0, 5, 892, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (793, 4, 'huge 2 floor nice looking house at LV', 0, 0, 0, 500000, 0, 0, 1551.49, 2567.34, 10.82, 0, 0, 0, 0, -1, 226.3, 1114.37, 1080.99, 0, 5, 893, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (794, 4, 'Nice looking house at lv', 0, 0, 0, 300000, 0, 0, 1554.45, 2610.72, 10.82, 0, 0, 0, 0, -1, 234.22, 1063.89, 1084.21, 0, 6, 894, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (795, 4, 'huge 2 floor nice looking house at LV', 0, 0, 0, 500000, 3500, 0, 1564.61, 2565.43, 10.83, 0, 0, 0, 0, -1, 226.3, 1114.37, 1080.99, 0, 5, 895, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (796, 4, 'huge 2 floor nice looking house at LV', 0, 0, 0, 500000, 0, 0, 1596.39, 2567.69, 10.82, 0, 0, 0, 0, -1, 226.3, 1114.37, 1080.99, 0, 5, 896, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (797, 4, 'Nice looking house at lv', 0, 0, 0, 300000, 0, 0, 1600.59, 2610.03, 10.82, 0, 0, 0, 0, -1, 234.22, 1063.89, 1084.21, 0, 6, 897, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (798, 4, '3 Story Condo In SF', 0, 0, 0, 120000, 0, 0, -2581.51, 719.02, 27.94, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 898, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (799, 4, 'Nice looking house at lv', 0, 0, 0, 300000, 0, 0, 1618.8, 2610.03, 10.82, 0, 0, 0, 0, -1, 234.22, 1063.89, 1084.21, 0, 6, 899, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (800, 4, 'Nice looking house at lv', 0, 0, 0, 300000, 0, 0, 1638.13, 2610.72, 10.82, 0, 0, 0, 0, -1, 234.22, 1063.89, 1084.21, 0, 6, 900, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (801, 4, 'huge 2 floor nice looking house at LV', 0, 0, 0, 500000, 0, 0, 1623.47, 2567.34, 10.82, 0, 0, 0, 0, -1, 226.3, 1114.37, 1080.99, 0, 5, 901, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (802, 4, '3 Story Condo In SF', 0, 0, 0, 120000, 0, 0, -2553.97, 719.02, 27.95, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 902, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (803, 4, 'Nice looking house at lv', 0, 0, 0, 300000, 0, 0, 1646.59, 2569.58, 10.82, 0, 0, 0, 0, -1, 234.22, 1063.89, 1084.21, 0, 6, 903, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (804, 4, 'Nice looking house at lv', 0, 0, 0, 300000, 0, 0, 1665.56, 2569.42, 11.3, 0, 0, 0, 0, -1, 234.22, 1063.89, 1084.21, 0, 6, 904, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (805, 4, 'Nice looking house at lv', 0, 0, 0, 300000, 0, 0, 1666.95, 2610.19, 11.3, 0, 0, 0, 0, -1, 234.22, 1063.89, 1084.21, 0, 6, 905, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (806, 4, '3 Story Condo In SF', 0, 0, 0, 120000, 0, 0, -2541.27, 733.1, 28.06, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 906, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (807, 4, '3 Story Condo In SF', 0, 0, 0, 120000, 0, 0, -2541.24, 750.92, 33.7, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 907, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (808, 4, 'huge 2 floor nice looking house at LV', 0, 0, 0, 500000, 0, 0, 1678.4, 2690.76, 10.82, 0, 0, 0, 0, -1, 226.3, 1114.37, 1080.99, 0, 5, 908, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (809, 4, '3 Story Condo In SF', 0, 0, 0, 120000, 0, 0, -2541.24, 768.14, 40.02, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 909, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (810, 4, 'huge 2 floor nice looking house at LV', 0, 0, 0, 500000, 0, 0, 1703.71, 2688.86, 10.83, 0, 0, 0, 0, -1, 226.3, 1114.37, 1080.99, 0, 5, 910, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (811, 4, '3 Story Condo In SF', 0, 0, 0, 120000, 0, 0, -2541.24, 785.26, 46.23, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 911, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (812, 4, 'huge 2 floor nice looking house at LV', 0, 0, 0, 500000, 0, 0, 1735.65, 2691.11, 10.82, 0, 0, 0, 0, -1, 226.3, 1114.37, 1080.99, 0, 5, 912, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (813, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 0, 1754.52, 2736.02, 14.27, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 913, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (814, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 0, 1752.26, 2744.57, 14.27, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 914, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (815, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 0, 1751.45, 2747.35, 14.27, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 915, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (816, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 0, 1749.2, 2755.91, 14.27, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 916, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (817, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 0, 1748.42, 2758.69, 14.27, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 917, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (818, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 0, 1745.39, 2770.03, 14.27, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 918, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (819, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 0, 1746.17, 2767.25, 14.27, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 919, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (820, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 0, 1743.04, 2778.56, 14.27, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 920, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (821, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 0, 1746.04, 2767.21, 11.34, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 921, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (822, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 0, 1745.41, 2770.03, 11.34, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 922, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (823, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 0, 1748.48, 2758.71, 11.34, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 923, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (824, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 0, 1749.19, 2755.9, 11.34, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 924, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (825, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 0, 1751.46, 2747.35, 11.34, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 925, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (826, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 0, 1752.22, 2744.56, 11.34, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 926, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (827, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 0, 1780.81, 2744.57, 11.34, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 927, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (828, 4, '6 Story Condo In SF', 0, 0, 0, 450000, 0, 0, -2513.52, 830.84, 50, 0, 0, 0, 0, -1, 226.3, 1114.37, 1080.99, 0, 5, 928, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (829, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 0, 1781.51, 2747.37, 11.34, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 929, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (830, 4, 'lv project apartment small', 0, 0, 0, 40000, 500, 0, 1778.54, 2736.01, 14.27, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 930, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (831, 4, '6 Story Condo In SF', 0, 0, 0, 450000, 0, 0, -2513.5, 849.08, 52.7, 0, 0, 0, 0, -1, 226.3, 1114.37, 1080.99, 0, 5, 931, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (832, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 0, 1781.55, 2747.36, 14.27, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 932, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (833, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 0, 1780.82, 2744.56, 14.27, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 933, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (834, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 0, 1784.62, 2758.69, 14.27, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 934, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (835, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 0, 1783.78, 2755.92, 14.27, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 935, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (836, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 0, 1787.64, 2770.04, 14.27, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 936, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (837, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 0, 1786.83, 2767.26, 14.27, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 937, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (838, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 0, 1789.83, 2778.61, 14.27, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 938, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (839, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 0, 1787.57, 2770.06, 11.34, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 939, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (840, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 0, 1786.89, 2767.25, 11.34, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 940, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (841, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 0, 1784.6, 2758.7, 11.34, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 941, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (842, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 0, 1783.84, 2755.91, 11.34, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 942, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (843, 4, '6 Story Condo In SF', 0, 0, 0, 450000, 0, 0, -2513.53, 867.49, 57.74, 0, 0, 0, 0, -1, 226.3, 1114.37, 1080.99, 0, 5, 943, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (844, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 0, 1789.89, 2778.6, 11.35, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 944, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (845, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 0, 1800.78, 2775.68, 11.34, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 945, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (846, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 0, 1797.69, 2764.35, 14.27, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 946, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (847, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 0, 1798.47, 2767.14, 14.27, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 947, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (848, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 0, 1794.71, 2753, 14.27, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 948, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (849, 4, '6 Story Condo In SF', 0, 0, 0, 450000, 0, 0, -2513.51, 885.73, 62.78, 0, 0, 0, 0, -1, 226.3, 1114.37, 1080.99, 0, 5, 949, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (850, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 0, 1795.38, 2755.81, 14.27, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 950, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (851, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 0, 1791.66, 2741.66, 14.27, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 951, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (852, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 0, 1792.42, 2744.45, 14.27, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 952, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (853, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 0, 1789.49, 2733.08, 14.27, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 953, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (854, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 0, 1792.54, 2744.42, 11.34, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 954, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (855, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 0, 1791.73, 2741.64, 11.34, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 955, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (856, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 0, 1795.42, 2755.8, 11.34, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 956, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (857, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 0, 1794.75, 2752.99, 11.34, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 957, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (858, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 0, 1798.54, 2767.12, 11.34, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 958, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (859, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 0, 1797.78, 2764.33, 11.34, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 959, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (860, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 0, 1800.77, 2775.68, 14.27, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 960, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (861, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 0, 1736.36, 2803.59, 11.34, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 961, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (862, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 0, 1737.11, 2800.79, 11.34, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 962, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (863, 4, 'Appartment 1st Floor In SF', 0, 0, 0, 80000, 0, 0, -2538.73, 830.01, 49.98, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 963, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (864, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 0, 1739.42, 2792.25, 14.27, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 964, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (865, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 0, 1737.08, 2800.78, 14.27, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 965, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (866, 4, 'Appartment 2nd Floor In SF', 0, 0, 0, 80000, 0, 0, -2540.51, 831.95, 52.09, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 966, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (867, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 0, 1736.35, 2803.58, 14.27, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 967, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (868, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 0, 1734.17, 2812.16, 11.34, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 968, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (869, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 0, 1733.35, 2814.93, 11.34, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 969, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (870, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 0, 1734.05, 2812.13, 14.27, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 970, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (871, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 0, 1733.39, 2814.94, 14.27, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 971, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (872, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 0, 1730.34, 2826.28, 14.27, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 972, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (873, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 0, 1731, 2823.47, 14.27, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 973, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (874, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 0, 1728.09, 2834.84, 14.27, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 974, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (875, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 0, 1730.45, 2826.31, 11.34, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 975, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (876, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 0, 1731.09, 2823.49, 11.34, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 976, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (877, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 0, 1727.94, 2834.8, 11.34, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 977, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (878, 4, 'Small House In SF', 0, 0, 0, 30000, 0, 0, -2539.71, 845.18, 50.6, 0, 0, 0, 0, -1, 261.06, 1284.29, 1080.25, 0, 4, 978, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (879, 4, 'Small House In SF', 0, 0, 0, 30000, 0, 0, -2540.67, 855.14, 53.18, 0, 0, 0, 0, -1, 261.06, 1284.29, 1080.25, 0, 4, 979, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (880, 4, 'Small House In SF', 0, 0, 0, 30000, 0, 0, -2540, 874.76, 58.92, 0, 0, 0, 0, -1, 261.06, 1284.29, 1080.25, 0, 4, 980, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (881, 4, 'Normal Size House In SF', 0, 0, 0, 85000, 0, 0, -2540.18, 883.14, 63.25, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 981, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (882, 4, 'Small Nice House In SF', 0, 0, 0, 60000, 0, 0, -2537.09, 929.45, 65.02, 0, 0, 0, 0, -1, 22.93, 1403.32, 1084.43, 0, 5, 982, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (883, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 0, 1717.18, 2831.92, 11.35, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 983, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (884, 4, 'Small House In SF', 0, 0, 0, 30000, 0, 0, -2542.47, 942.63, 64, 0, 0, 0, 0, -1, 261.06, 1284.29, 1080.25, 0, 4, 984, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (885, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 0, 1717.01, 2831.87, 14.27, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 985, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (886, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 0, 1720.19, 2820.57, 14.27, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 986, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (887, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 0, 1719.41, 2823.35, 14.27, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 987, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (888, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 0, 1723.14, 2809.21, 14.27, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 988, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (889, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 0, 1722.45, 2812.01, 14.27, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 989, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (890, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 500, 0, 2514.28, -1691.66, 14.04, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 990, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (891, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 5000, 0, 2523.27, -1679.38, 15.5, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 991, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (892, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 5000, 0, 2524.71, -1658.59, 15.82, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 992, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (893, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 1, 0, 2513.72, -1650.24, 14.35, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 993, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (894, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 0, 0, 2498.47, -1642.25, 14.11, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 994, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (895, 4, 'Ghetto Home LS Medium', 0, 0, 0, 40000, 0, 0, 2486.46, -1644.53, 14.08, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 995, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (896, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 0, 0, 2469.45, -1646.35, 13.78, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 996, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (897, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 0, 0, 2451.91, -1641.41, 14.06, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 997, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (898, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 0, 0, 2413.86, -1646.79, 14.01, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 998, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (899, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 1000, 0, 2409.04, -1674.94, 14.38, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 999, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (900, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 0, 0, 2393.13, -1646.04, 13.9, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 1000, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (901, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 1, 0, 2384.7, -1675.83, 15.24, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 1001, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (902, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 0, 0, 2362.8, -1643.14, 14.35, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 1002, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (903, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 0, 0, 2368.29, -1675.34, 14.17, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 1003, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (904, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 0, 0, 2326.89, -1681.94, 14.93, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 1004, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (905, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 20, 0, 2385.39, -1711.66, 14.24, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 1005, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (906, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 0, 0, 2326.75, -1716.7, 14.24, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 1006, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (907, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 0, 0, 2308.89, -1714.34, 14.98, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 1007, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (908, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 0, 0, 2244.54, -1637.64, 16.24, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 1008, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (909, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 100, 0, 2257.11, -1643.94, 15.81, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 1009, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (910, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 0, 0, 2282.29, -1641.21, 15.89, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 1010, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (911, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 0, 0, 2307, -1679.19, 14.33, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 1011, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (912, 4, 'normal house at ls', 0, 0, 0, 150000, 0, 0, 1928.69, -1915.91, 15.26, 0, 0, 0, 0, -1, 447, 1397.09, 1084.3, 0, 2, 1012, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (913, 4, 'normal house at ls', 0, 0, 0, 150000, 0, 0, 1938.54, -1911.32, 15.26, 0, 0, 0, 0, -1, 447, 1397.09, 1084.3, 0, 2, 1013, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (914, 4, 'normal house at ls', 0, 0, 0, 150000, 0, 0, 1913.47, -1911.9, 15.26, 0, 0, 0, 0, -1, 447, 1397.09, 1084.3, 0, 2, 1014, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (915, 4, 'normal house at ls', 0, 0, 0, 150000, 0, 0, 1891.92, -1914.4, 15.26, 0, 0, 0, 0, -1, 447, 1397.09, 1084.3, 0, 2, 1015, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (916, 4, 'normal house at ls', 0, 0, 0, 150000, 0, 0, 1872.21, -1911.79, 15.26, 0, 0, 0, 0, -1, 447, 1397.09, 1084.3, 0, 2, 1016, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (917, 4, 'normal house at ls', 0, 0, 0, 150000, 0, 0, 1854.06, -1914.26, 15.26, 0, 0, 0, 0, -1, 447, 1397.09, 1084.3, 0, 2, 1017, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (918, 4, 'LS Project', 0, 0, 0, 4000, 0, 0, 1848.15, -1593.75, 19.12, 0, 0, 0, 0, -1, 244.41, 305.03, 999.15, 0, 1, 1018, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (919, 4, 'LS Project', 0, 0, 0, 4000, 0, 0, 1848.15, -1593.6, 23.88, 0, 0, 0, 0, -1, 244.41, 305.03, 999.15, 0, 1, 1019, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (920, 4, 'LS Project', 0, 0, 0, 4000, 0, 0, 1986.75, -1604.9, 13.53, 0, 0, 0, 0, -1, 244.41, 305.03, 999.15, 0, 1, 1020, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (921, 4, 'LS Project', 0, 0, 0, 4000, 0, 0, 1972.98, -1559.83, 13.64, 0, 0, 0, 0, -1, 244.41, 305.03, 999.15, 0, 1, 1021, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (922, 4, 'LS Project', 0, 0, 0, 4000, 0, 0, 1958.67, -1560.35, 13.59, 0, 0, 0, 0, -1, 244.41, 305.03, 999.15, 0, 1, 1022, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (923, 4, 'Ghetto Home LS Medium', 0, 0, 0, 40000, 0, 0, 2139.09, -1697.51, 15.09, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1023, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (924, 4, 'Ghetto Home LS Medium', 0, 0, 0, 40000, 0, 0, 2155.62, -1698.51, 15.09, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1024, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (925, 4, 'Ghetto Home LS Medium', 0, 0, 0, 30000, 0, 0, 2157.15, -1709.21, 15.09, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 1025, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (926, 4, 'Ghetto Home LS Medium', 0, 0, 0, 30000, 0, 0, 2140.57, -1708.3, 15.09, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 1026, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (927, 4, 'Ghetto Home LS Medium', 0, 0, 0, 40000, 0, 0, 2151.71, -1717.83, 15.09, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1027, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (928, 4, 'Ghetto Home LS Medium', 0, 0, 0, 40000, 0, 0, 2168.08, -1718.82, 15.17, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1028, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (929, 4, 'Ghetto Home LS Medium', 0, 0, 0, 30000, 1, 0, 2151.41, -1672.26, 15.09, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 1029, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (930, 4, 'Ghetto Home LS Medium', 0, 0, 0, 40000, 5000, 0, 2143.65, -1662.86, 15.09, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1030, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (932, 4, 'Ghetto Home LS Medium', 0, 0, 0, 60000, 0, 0, 2163.74, -1661.21, 15.09, 0, 0, 0, 0, -1, 22.93, 1403.32, 1084.43, 0, 5, 1032, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (933, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 0, 1793.6, 2792.25, 11.35, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1033, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (934, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 0, 1796.65, 2803.58, 11.34, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1034, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (935, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 0, 1795.83, 2800.81, 11.34, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1035, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (936, 4, 'Small House In SF', 0, 0, 0, 30000, 0, 0, -2510.96, 967.65, 73.53, 0, 0, 0, 0, -1, 261.06, 1284.29, 1080.25, 0, 4, 1036, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (937, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 0, 1799.57, 2814.95, 11.34, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1037, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (938, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 0, 1798.92, 2812.14, 11.34, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1038, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (939, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 0, 1802.77, 2826.25, 11.34, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1039, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (940, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 0, 1801.9, 2823.49, 11.34, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1040, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (941, 4, 'Small House In SF', 0, 0, 0, 30000, 0, 0, -2510.91, 951.26, 65.61, 0, 0, 0, 0, -1, 261.06, 1284.29, 1080.25, 0, 4, 1041, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (942, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 0, 1804.86, 2834.85, 11.35, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1042, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (943, 4, 'Small House In SF', 0, 0, 0, 30000, 0, 0, -2510.93, 942.7, 65.29, 0, 0, 0, 0, -1, 261.06, 1284.29, 1080.25, 0, 4, 1043, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (944, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 0, 1804.96, 2834.82, 14.27, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1044, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (945, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 0, 1802.59, 2826.3, 14.27, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1045, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (946, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 0, 1802.05, 2823.45, 14.27, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1046, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (947, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 0, 1798.8, 2812.17, 14.27, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1047, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (948, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 0, 1799.65, 2814.93, 14.27, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1048, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (949, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 0, 1795.85, 2800.8, 14.27, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1049, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (950, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 0, 1796.69, 2803.57, 14.27, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1050, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (951, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 0, 1793.61, 2792.24, 14.27, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1051, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (952, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 0, 1815.83, 2831.92, 11.34, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1052, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (953, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 0, 1813.61, 2823.34, 11.34, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1053, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (954, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 0, 1812.9, 2820.54, 11.34, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1054, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (955, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 0, 1815.91, 2831.89, 14.27, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1055, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (956, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 0, 1812.82, 2820.57, 14.27, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1056, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (957, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 0, 1813.61, 2823.35, 14.27, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1057, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (958, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 0, 1809.83, 2809.21, 14.27, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1058, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (959, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 0, 1810.53, 2812.02, 14.27, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1059, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (960, 4, 'Small House In SF', 0, 0, 0, 30000, 0, 0, -2596.65, 986.27, 78.27, 0, 0, 0, 0, -1, 261.06, 1284.29, 1080.25, 0, 4, 1060, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (961, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 0, 1806.77, 2797.88, 14.27, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1061, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (962, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 0, 1807.6, 2800.65, 14.27, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1062, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (963, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 0, 1804.57, 2789.3, 14.27, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1063, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (964, 4, 'Small Nice House In SF', 0, 0, 0, 60000, 0, 0, -2597.34, 979.74, 78.27, 0, 0, 0, 0, -1, 22.93, 1403.32, 1084.43, 0, 5, 1064, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (965, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 0, 1806.71, 2797.89, 11.34, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1065, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (966, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 0, 1807.36, 2800.71, 11.34, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1066, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (967, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 0, 1810.61, 2812, 11.34, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1067, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (968, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 0, 1809.62, 2809.27, 11.34, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1068, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (969, 4, 'Small House In SF', 0, 0, 0, 30000, 0, 0, -2597.33, 968.95, 78.28, 0, 0, 0, 0, -1, 261.06, 1284.29, 1080.25, 0, 4, 1069, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (970, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 0, 1832.49, 2742.93, 11.34, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1070, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (971, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 0, 1830.47, 2740.87, 11.34, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1071, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (972, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 0, 1840.84, 2751.18, 11.34, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1072, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (973, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 0, 1838.67, 2749.27, 11.35, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1073, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (974, 4, 'Normal Size House In SF', 0, 0, 0, 85000, 0, 0, -2591.17, 960.76, 78.45, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 1074, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (975, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 0, 1847.08, 2757.45, 11.34, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1075, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (976, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 0, 1849.23, 2759.39, 11.34, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1076, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (977, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 0, 1855.38, 2765.76, 14.27, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1077, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (978, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 0, 1849.09, 2759.53, 14.27, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1078, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (979, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 0, 1847.1, 2757.43, 14.27, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1079, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (980, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 0, 1838.73, 2749.2, 14.27, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1080, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (981, 4, 'Small House In SF', 0, 0, 0, 30000, 0, 0, -2591.19, 944.33, 70.43, 0, 0, 0, 0, -1, 261.06, 1284.29, 1080.25, 0, 4, 1081, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (982, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 0, 1840.84, 2751.19, 14.27, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1082, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (983, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 0, 1830.4, 2740.94, 14.27, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1083, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (984, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 0, 1832.55, 2742.88, 14.27, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1084, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (985, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 0, 1824.22, 2734.61, 14.27, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1085, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (986, 4, 'Small House In SF', 0, 0, 0, 30000, 0, 0, -2591.19, 935.9, 68.93, 0, 0, 0, 0, -1, 261.06, 1284.29, 1080.25, 0, 4, 1086, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (987, 4, 'Small House In SF', 0, 0, 0, 30000, 0, 0, -2591.19, 927.88, 65.02, 0, 0, 0, 0, -1, 261.06, 1284.29, 1080.25, 0, 4, 1087, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (988, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 0, 1855.32, 2765.81, 11.35, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1088, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (989, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 0, 1865.45, 2775.7, 11.34, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1089, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (990, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 0, 1873.69, 2784.06, 11.34, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1090, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (991, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 0, 1871.57, 2782.08, 11.34, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1091, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (992, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 0, 1881.95, 2792.39, 11.34, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1092, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (993, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 0, 1879.89, 2790.37, 11.34, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1093, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (994, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 0, 1890.23, 2800.7, 11.34, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1094, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (995, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 0, 1888.22, 2798.63, 11.34, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1095, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (996, 4, 'Normal Size House In SF', 0, 0, 0, 85000, 0, 0, -2593.26, 883.22, 63.25, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 1096, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (997, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 0, 1896.51, 2806.95, 14.27, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1097, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (998, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 0, 1888.25, 2798.6, 14.27, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1098, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (999, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 0, 1890.32, 2800.62, 14.27, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1099, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1000, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 0, 1879.96, 2790.31, 14.27, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1100, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1001, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 0, 1882.05, 2792.29, 14.27, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1101, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1002, 4, 'Small House In SF', 0, 0, 0, 30000, 0, 0, -2593.42, 874.77, 58.92, 0, 0, 0, 0, -1, 261.06, 1284.29, 1080.25, 0, 4, 1102, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1003, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 0, 1871.62, 2782.03, 14.27, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1103, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1004, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 0, 1873.72, 2784.03, 14.27, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1104, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1005, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 0, 1865.34, 2775.81, 14.27, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1105, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1006, 4, 'Normal Size House In SF', 0, 0, 0, 85000, 0, 0, -2620.21, 883.01, 63.25, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 1106, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1007, 4, 'Small House In SF', 0, 0, 0, 30000, 0, 0, -2620.02, 874.73, 58.92, 0, 0, 0, 0, -1, 261.06, 1284.29, 1080.25, 0, 4, 1107, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1008, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 0, 1896.56, 2806.91, 11.35, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1108, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1009, 4, 'Small House In SF', 0, 0, 0, 30000, 0, 0, -2592.74, 854.98, 53.59, 0, 0, 0, 0, -1, 261.06, 1284.29, 1080.25, 0, 4, 1109, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1010, 4, 'Small House In SF', 0, 0, 0, 30000, 0, 0, -2620.7, 855.15, 53.57, 0, 0, 0, 0, -1, 261.06, 1284.29, 1080.25, 0, 4, 1110, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1011, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 0, 1740.86, 2863.24, 11.34, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1111, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1012, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 0, 1738.45, 2861.53, 11.34, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1112, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1013, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 0, 1751.45, 2868.71, 11.34, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1113, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1014, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 0, 1748.67, 2867.7, 11.34, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1114, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1015, 4, 'Small House In SF', 0, 0, 0, 30000, 0, 0, -2593.7, 845.08, 50.59, 0, 0, 0, 0, -1, 261.06, 1284.29, 1080.25, 0, 4, 1115, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1016, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 0, 1763.1, 2871.36, 11.34, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1116, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1017, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 0, 1760.16, 2870.95, 11.34, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1117, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1018, 4, 'Small House In SF', 0, 0, 0, 30000, 0, 0, -2619.74, 845.31, 50.6, 0, 0, 0, 0, -1, 261.06, 1284.29, 1080.25, 0, 4, 1118, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1019, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 0, 1775, 2870.83, 11.34, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1119, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1020, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 0, 1772.1, 2871.36, 11.34, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1120, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1021, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 0, 1786.52, 2867.69, 11.34, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1121, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1022, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 0, 1783.74, 2868.71, 11.34, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1122, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1023, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 0, 1796.8, 2861.61, 11.34, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1123, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1024, 4, 'Appartment 2nd Floor In SF', 0, 0, 0, 80000, 0, 0, -2592.75, 832.84, 52.09, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1124, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1025, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 0, 1794.42, 2863.38, 11.34, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1125, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1026, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 0, 1731.81, 2855.49, 14.27, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1126, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1027, 4, 'Appartment 1st Floor In SF', 0, 0, 0, 80000, 0, 0, -2594.69, 830.98, 49.98, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1127, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1028, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 0, 1740.84, 2863.27, 14.26, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1128, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1029, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 0, 1738.33, 2861.68, 14.27, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1129, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1030, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 0, 1751.44, 2868.75, 14.27, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1130, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1031, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 0, 1748.65, 2867.74, 14.27, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1131, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1032, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 0, 1763.12, 2871.13, 14.27, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1132, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1033, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 0, 1760.17, 2870.92, 14.27, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1133, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1034, 4, 'Appartment 2nd Floor In SF', 0, 0, 0, 80000, 0, 0, -2620.37, 832.86, 52.09, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1134, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1035, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 0, 1775.01, 2870.88, 14.27, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1135, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1036, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 0, 1772.09, 2871.32, 14.27, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1136, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1037, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 0, 1786.45, 2867.55, 14.27, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1137, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1038, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 0, 1783.76, 2868.77, 14.27, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1138, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1039, 4, 'Appartment 1st Floor In SF', 0, 0, 0, 80000, 0, 0, -2618.75, 831, 49.98, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1139, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1040, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 0, 1796.79, 2861.59, 14.27, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1140, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1041, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 0, 1794.38, 2863.32, 14.27, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1141, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1042, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 0, 1803.38, 2855.49, 14.27, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1142, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1043, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 0, 1789.43, 2733.1, 11.34, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1143, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1044, 4, 'Small House In SF', 0, 0, 0, 30000, 0, 0, -2621.68, 802.98, 49.98, 0, 0, 0, 0, -1, 261.06, 1284.29, 1080.25, 0, 4, 1144, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1045, 4, 'Small Nice House In SF', 0, 0, 0, 60000, 0, 0, -2621.67, 790.74, 48.58, 0, 0, 0, 0, -1, 22.93, 1403.32, 1084.43, 0, 5, 1145, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1046, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 0, 1803.48, 2855.57, 11.34, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1146, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1047, 4, 'Small House In SF', 0, 0, 0, 30000, 0, 0, -2622.51, 782.55, 44.86, 0, 0, 0, 0, -1, 261.06, 1284.29, 1080.25, 0, 4, 1147, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1048, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 0, 1824.3, 2734.53, 11.34, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1148, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1049, 4, 'Small House In SF', 0, 0, 0, 30000, 0, 0, -2622.49, 766.35, 36.84, 0, 0, 0, 0, -1, 261.06, 1284.29, 1080.25, 0, 4, 1149, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1050, 4, 'Small House In SF', 0, 0, 0, 30000, 0, 0, -2622.51, 758.04, 35.33, 0, 0, 0, 0, -1, 261.06, 1284.29, 1080.25, 0, 4, 1150, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1051, 4, 'Small House In SF', 0, 0, 0, 30000, 0, 0, -2622.52, 749.84, 31.42, 0, 0, 0, 0, -1, 261.06, 1284.29, 1080.25, 0, 4, 1151, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1052, 4, 'Nice looking house at lv', 0, 0, 0, 300000, 0, 0, 1663.17, 2754.14, 10.82, 0, 0, 0, 0, -1, 234.22, 1063.89, 1084.21, 0, 6, 1152, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1053, 4, 'huge 2 floor nice looking house at LV', 0, 0, 0, 500000, 0, 0, 1652.51, 2708.85, 10.83, 0, 0, 0, 0, -1, 226.3, 1114.37, 1080.99, 0, 5, 1153, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1054, 4, 'Appartment 2nd Floor In SF', 0, 0, 0, 80000, 0, 0, -2627.54, 735.33, 30.59, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1154, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1055, 4, 'Nice looking house at lv', 0, 0, 0, 300000, 0, 0, 1643.83, 2753.45, 10.82, 0, 0, 0, 0, -1, 234.22, 1063.89, 1084.21, 0, 6, 1155, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1056, 4, 'huge 2 floor nice looking house at LV', 0, 0, 0, 500000, 0, 0, 1627.15, 2710.76, 10.82, 0, 0, 0, 0, -1, 226.3, 1114.37, 1080.99, 0, 5, 1156, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1057, 4, 'Appartment 1st Floor In SF', 0, 0, 0, 80000, 0, 0, -2625.47, 733.21, 28.01, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1157, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1058, 4, 'huge 2 floor nice looking house at LV', 0, 0, 0, 500000, 0, 0, 1626.81, 2754.14, 10.82, 0, 0, 0, 0, -1, 226.3, 1114.37, 1080.99, 0, 5, 1158, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1059, 4, 'Nice looking house at lv', 0, 0, 0, 300000, 0, 0, 1608.72, 2754.14, 10.82, 0, 0, 0, 0, -1, 234.22, 1063.89, 1084.21, 0, 6, 1159, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1060, 4, 'huge 2 floor nice looking house at LV', 0, 0, 0, 500000, 0, 0, 1601.25, 2708.85, 10.83, 0, 0, 0, 0, -1, 226.3, 1114.37, 1080.99, 0, 5, 1160, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1061, 4, 'huge 2 floor nice looking house at LV', 0, 0, 0, 500000, 0, 0, 1599.56, 2757.6, 10.83, 0, 0, 0, 0, -1, 226.3, 1114.37, 1080.99, 0, 5, 1161, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1062, 4, 'huge 2 floor nice looking house at LV', 0, 0, 0, 500000, 0, 0, 1580.26, 2708.85, 10.83, 0, 0, 0, 0, -1, 226.3, 1114.37, 1080.99, 0, 5, 1162, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1063, 4, '3 Story Condo In SF', 0, 0, 0, 120000, 0, 0, -2594.19, 733.11, 28.14, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 1163, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1064, 4, 'huge 2 floor nice looking house at LV', 0, 0, 0, 500000, 0, 0, 1570.28, 2711.11, 10.82, 0, 0, 0, 0, -1, 226.3, 1114.37, 1080.99, 0, 5, 1164, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1065, 4, '3 Story Condo In SF', 0, 0, 0, 120000, 0, 0, -2594.21, 750.87, 33.7, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 1165, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1066, 4, 'Nice looking house at lv', 0, 0, 0, 300000, 0, 0, 1565.47, 2757.04, 10.82, 0, 0, 0, 0, -1, 234.22, 1063.89, 1084.21, 0, 6, 1166, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1067, 4, '3 Story Condo In SF', 0, 0, 0, 120000, 0, 0, -2594.2, 768.05, 40.02, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 1167, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1068, 4, 'Nice looking house at lv', 0, 0, 0, 300000, 0, 0, 1564.78, 2776.51, 10.82, 0, 0, 0, 0, -1, 234.22, 1063.89, 1084.21, 0, 6, 1168, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1069, 4, '3 Story Condo In SF', 0, 0, 0, 120000, 0, 0, -2594.19, 785.26, 46.24, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 1169, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1070, 4, 'Nice looking house at lv', 0, 0, 0, 300000, 0, 0, 1565.47, 2793.43, 10.82, 0, 0, 0, 0, -1, 234.22, 1063.89, 1084.21, 0, 6, 1170, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1071, 4, 'huge 2 floor nice looking house at LV', 0, 0, 0, 500000, 0, 0, 1550.64, 2846.08, 10.83, 0, 0, 0, 0, -1, 226.3, 1114.37, 1080.99, 0, 5, 1171, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1072, 4, 'huge 2 floor nice looking house at LV', 0, 0, 0, 500000, 0, 0, 1575.89, 2844.17, 10.82, 0, 0, 0, 0, -1, 226.3, 1114.37, 1080.99, 0, 5, 1172, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1073, 4, 'huge 2 floor nice looking house at LV', 0, 0, 0, 500000, 0, 0, 1601.78, 2846.08, 10.83, 0, 0, 0, 0, -1, 226.3, 1114.37, 1080.99, 0, 5, 1173, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1074, 4, 'huge 2 floor nice looking house at LV', 0, 0, 0, 500000, 0, 0, 1618.36, 2800.79, 10.82, 0, 0, 0, 0, -1, 226.3, 1114.37, 1080.99, 0, 5, 1174, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1075, 4, 'huge 2 floor nice looking house at LV', 0, 0, 0, 500000, 0, 0, 1622.73, 2846.07, 10.83, 0, 0, 0, 0, -1, 226.3, 1114.37, 1080.99, 0, 5, 1175, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1076, 4, 'huge 2 floor nice looking house at LV', 0, 0, 0, 500000, 0, 0, 1637.79, 2801.48, 10.82, 0, 0, 0, 0, -1, 226.3, 1114.37, 1080.99, 0, 5, 1176, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1077, 4, 'huge 2 floor nice looking house at LV', 0, 0, 0, 500000, 0, 0, 1632.76, 2843.65, 10.82, 0, 0, 0, 0, -1, 226.3, 1114.37, 1080.99, 0, 5, 1177, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1078, 4, 'Nice looking house at lv', 0, 0, 0, 300000, 0, 0, 1654.7, 2800.79, 10.82, 0, 0, 0, 0, -1, 234.22, 1063.89, 1084.21, 0, 6, 1178, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1079, 4, '3 Story Condo In SF', 0, 0, 0, 120000, 0, 0, -2240.52, 753.48, 49.38, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 1179, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1080, 4, 'huge 2 floor nice looking house at LV', 0, 0, 0, 500000, 0, 0, 1664.77, 2846.08, 10.83, 0, 0, 0, 0, -1, 226.3, 1114.37, 1080.99, 0, 5, 1180, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1081, 4, 'Nice looking house at lv', 0, 0, 0, 300000, 0, 0, 1672.95, 2800.79, 10.82, 0, 0, 0, 0, -1, 234.22, 1063.89, 1084.21, 0, 6, 1181, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1082, 4, '3 Story Condo In SF', 0, 0, 0, 120000, 0, 0, -2240.53, 786.16, 49.38, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 1182, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1083, 4, '3 Story Condo In SF', 0, 0, 0, 120000, 0, 0, -2223.7, 795.72, 49.43, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 1183, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1084, 4, 'Nice looking house at lv', 0, 0, 0, 300000, 0, 0, 1555.97, 2658.52, 10.82, 0, 0, 0, 0, -1, 234.22, 1063.89, 1084.21, 0, 6, 1184, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1085, 4, '3 Story Condo In SF', 0, 0, 0, 120000, 0, 0, -2205.42, 795.73, 50.48, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 1185, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1086, 4, 'Nice looking house at lv', 0, 0, 0, 300000, 0, 0, 1573, 2657.83, 10.82, 0, 0, 0, 0, -1, 234.22, 1063.89, 1084.21, 0, 6, 1186, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1087, 4, 'Nice looking house at lv', 0, 0, 0, 300000, 0, 0, 1607.61, 2679.27, 10.82, 0, 0, 0, 0, -1, 234.22, 1063.89, 1084.21, 0, 6, 1187, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1088, 4, '3 Story Condo In SF', 0, 0, 0, 120000, 0, 0, -2187.03, 795.7, 57.56, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 1188, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1089, 4, 'huge 2 floor nice looking house at LV', 0, 0, 0, 500000, 0, 0, 1611.76, 2648.22, 10.83, 0, 0, 0, 0, -1, 226.3, 1114.37, 1080.99, 0, 5, 1189, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1090, 4, '3 Story Condo In SF', 0, 0, 0, 120000, 0, 0, -2168.82, 795.76, 64.97, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 1190, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1091, 4, '3 Story Condo In SF', 0, 0, 0, 120000, 0, 0, -2159.21, 786.09, 69.52, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 1191, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1092, 4, '3 Story Condo In SF', 0, 0, 0, 120000, 0, 0, -2159.18, 770, 69.52, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 1192, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1093, 4, 'Nice looking house at lv', 0, 0, 0, 300000, 0, 0, 1265.47, 2610.03, 10.82, 0, 0, 0, 0, -1, 234.22, 1063.89, 1084.21, 0, 6, 1193, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1094, 4, '3 Story Condo In SF', 0, 0, 0, 120000, 0, 0, -2159.23, 753.49, 69.51, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 1194, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1095, 4, 'huge 2 floor nice looking house at LV', 0, 0, 0, 500000, 0, 0, 1225.27, 2584.94, 10.82, 0, 0, 0, 0, -1, 226.3, 1114.37, 1080.99, 0, 5, 1195, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1096, 4, 'huge 2 floor nice looking house at LV', 0, 0, 0, 500000, 0, 0, 1223.02, 2616.85, 10.83, 0, 0, 0, 0, -1, 226.3, 1114.37, 1080.99, 0, 5, 1196, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1097, 4, '3 Story Condo In SF', 0, 0, 0, 120000, 0, 0, -2168.52, 744.01, 64.98, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 1197, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1098, 4, '3 Story Condo In SF', 0, 0, 0, 120000, 0, 0, -2186.9, 744, 57.55, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 1198, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1099, 4, '3 Story Condo In SF', 0, 0, 0, 120000, 0, 0, -2205.46, 744, 50.48, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 1199, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1100, 4, 'lv project apartment small', 0, 0, 0, 40000, 1, 0, 1731.8, 2855.49, 11.34, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1200, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1101, 4, '3 Story Condo In SF', 0, 0, 0, 120000, 0, 0, -2223.71, 743.99, 49.43, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 1201, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1102, 4, '6 Story Condo In SF', 0, 0, 0, 450000, 0, 0, -2238.31, 1154.14, 59.69, 0, 0, 0, 0, -1, 226.3, 1114.37, 1080.99, 0, 5, 1202, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1103, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 0, 2651.65, 1978.84, 10.82, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1203, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1104, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 0, 2649.77, 1978.84, 10.82, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1204, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1105, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 0, 2642.47, 1978.84, 10.82, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1205, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1106, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 0, 2640.47, 1978.84, 10.82, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1206, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1107, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 0, 2633.06, 1978.84, 10.82, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1207, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1108, 4, '5 Story Condo In SF', 0, 0, 0, 500000, 0, 0, -2238.36, 1135.89, 67.26, 0, 0, 0, 0, -1, 226.3, 1114.37, 1080.99, 0, 5, 1208, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1109, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 0, 2631.15, 1978.84, 10.82, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1209, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1110, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 0, 2623.89, 1978.84, 10.82, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1210, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1111, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 0, 2623.87, 1978.84, 14.12, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1211, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1112, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 0, 2631.33, 1978.84, 14.12, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1212, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1113, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 0, 2633.24, 1978.84, 14.12, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1213, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1114, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 0, 2640.46, 1978.84, 14.12, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1214, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1115, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 0, 2642.55, 1978.84, 14.12, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1215, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1116, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 0, 2649.89, 1978.84, 14.12, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1216, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1117, 4, '3 Story Condo In SF', 0, 0, 0, 120000, 0, 0, -2238.36, 1117.54, 74.82, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 1217, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1118, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 0, 2651.66, 1978.84, 14.12, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1218, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1119, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 0, 2659.23, 1978.84, 14.12, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1219, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1120, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 0, 2656.5, 1968.82, 14.12, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1220, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1121, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 0, 2654.39, 1968.82, 14.12, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1221, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1122, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 0, 2647.14, 1968.82, 14.12, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1222, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1123, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 0, 2645.16, 1968.82, 14.12, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1223, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1124, 4, '3 Story Condo In SF', 0, 0, 0, 120000, 0, 0, -2239.76, 1070.74, 81.02, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 1224, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1125, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 0, 2637.68, 1968.82, 14.12, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1225, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1126, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 0, 2635.83, 1968.82, 14.12, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1226, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1127, 4, '3 Story Condo In SF', 0, 0, 0, 120000, 0, 0, -2239.75, 1054.09, 82.84, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 1227, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1128, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 0, 2628.55, 1968.82, 14.12, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1228, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1129, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 0, 2626.6, 1968.82, 14.12, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1229, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1130, 4, '3 Story Condo In SF', 0, 0, 0, 120000, 0, 0, -2239.75, 1037.69, 83.85, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 1230, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1131, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 0, 2645.48, 2019.21, 10.82, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1231, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1132, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 0, 2643.76, 2019.21, 10.81, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1232, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1133, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 0, 2636.22, 2019.21, 10.82, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1233, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1134, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 0, 2634.43, 2019.21, 10.82, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1234, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1135, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 0, 2626.93, 2019.21, 10.82, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1235, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1136, 4, '3 Story Condo In SF', 0, 0, 0, 120000, 0, 0, -2230.58, 1028, 83.84, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 1236, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1137, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 0, 2625.15, 2019.21, 10.82, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1237, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1138, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 0, 2617.69, 2019.21, 14.12, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1238, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1139, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 0, 2625.16, 2019.21, 14.12, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1239, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1140, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 0, 2627.05, 2019.21, 14.12, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1240, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1141, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 0, 2634.48, 2019.21, 14.12, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1241, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1142, 4, '3 Story Condo In SF', 0, 0, 0, 120000, 0, 0, -2169.63, 1028.01, 80.01, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 1242, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1143, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 0, 2636.22, 2019.21, 14.12, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1243, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1144, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 0, 2643.66, 2019.21, 14.12, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1244, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1145, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 0, 2645.58, 2019.21, 14.12, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1245, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1146, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 0, 2653.25, 2019.21, 14.12, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1246, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1147, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 0, 2650.33, 2029.23, 14.12, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1247, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1148, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 0, 2648.34, 2029.23, 14.12, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1248, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1149, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 0, 2640.71, 2029.23, 14.12, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1249, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1150, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 0, 2638.92, 2029.23, 14.12, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1250, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1151, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 0, 2631.54, 2029.23, 14.12, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1251, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1152, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 0, 2629.68, 2029.23, 14.12, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1252, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1153, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 0, 2622.22, 2029.23, 14.12, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1253, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1154, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 0, 2620.37, 2029.23, 14.12, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1254, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1155, 4, '3 Story Condo In SF', 0, 0, 0, 120000, 0, 0, -2160.15, 1030.61, 80.01, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 1255, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1156, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 0, 2652.92, 2019.21, 10.82, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1256, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1157, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 0, 2617.54, 2019.21, 10.81, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1257, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1158, 4, '3 Story Condo In SF', 0, 0, 0, 120000, 0, 0, -2160.15, 1048.61, 80.01, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 1258, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1159, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 0, 2620.54, 2029.23, 10.82, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1259, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1160, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 0, 2622.34, 2029.23, 10.82, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1260, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1161, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 0, 2629.8, 2029.23, 10.82, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1261, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1162, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 0, 2631.65, 2029.23, 10.82, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1262, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1163, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 0, 2639.07, 2029.23, 10.82, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1263, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1164, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 0, 2641.14, 2029.23, 10.82, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1264, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1165, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 0, 2648.34, 2029.23, 10.82, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1265, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1166, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 0, 2650.35, 2029.23, 10.81, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1266, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1167, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 0, 2623.65, 2039.4, 10.82, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1267, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1168, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 0, 2623.65, 2046.99, 10.81, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1268, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1169, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 0, 2623.65, 2048.81, 10.81, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1269, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1170, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 0, 2623.65, 2056.16, 10.81, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1270, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1171, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 0, 2623.65, 2058.1, 10.81, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1271, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1172, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 0, 2623.65, 2065.44, 10.82, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1272, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1173, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 0, 2623.65, 2067.4, 10.82, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1273, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1174, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 0, 2623.65, 2074.85, 10.81, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1274, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1175, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 0, 2623.65, 2074.93, 14.12, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1275, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1176, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 0, 2623.65, 2067.53, 14.12, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1276, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1177, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 0, 2623.65, 2065.52, 14.12, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1277, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1178, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 0, 2623.65, 2058.19, 14.12, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1278, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1179, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 0, 2623.65, 2056.03, 14.12, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1279, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1180, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 0, 2623.65, 2048.66, 14.12, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1280, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1181, 4, 'Medium house at LV', 0, 0, 0, 150000, 0, 0, 2206.32, 691.25, 11.46, 0, 0, 0, 0, -1, 447, 1397.09, 1084.3, 0, 2, 1281, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1182, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 0, 2623.65, 2046.85, 14.12, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1282, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1183, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 0, 2623.65, 2039.52, 14.12, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1283, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1184, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 0, 2613.64, 2042.23, 14.12, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1284, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1185, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 0, 2613.64, 2044.19, 14.12, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1285, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1186, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 0, 2613.64, 2051.56, 14.12, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1286, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1187, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 0, 2613.64, 2053.43, 14.12, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1287, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1188, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 0, 2613.64, 2060.92, 14.12, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1288, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1189, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 0, 2613.64, 2062.75, 14.12, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1289, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1190, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 0, 2613.64, 2070.18, 14.12, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1290, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1191, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 0, 2613.64, 2072.07, 14.12, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1291, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1192, 4, '3 Story Condo In SF', 0, 0, 0, 120000, 0, 0, -2160.15, 1066.91, 80.01, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 1292, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1193, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 0, 2626.63, 1968.82, 10.82, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1293, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1194, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 0, 2628.41, 1968.82, 10.82, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1294, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1195, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 0, 2635.94, 1968.82, 10.82, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1295, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1196, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 0, 2637.82, 1968.82, 10.82, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1296, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1197, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 0, 2645.3, 1968.82, 10.82, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1297, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1198, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 0, 2647.13, 1968.82, 10.82, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1298, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1199, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 0, 2654.56, 1968.82, 10.82, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1299, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1200, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 0, 2656.5, 1968.82, 10.82, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1300, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1201, 4, '3 Story Condo In SF', 0, 0, 0, 120000, 0, 0, -2158.36, 1117.61, 74.49, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 1301, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1202, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 0, 2659.19, 1978.84, 10.82, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1302, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1203, 4, '5 Story Condo In SF', 0, 0, 0, 500000, 0, 0, -2158.36, 1148.65, 61.85, 0, 0, 0, 0, -1, 226.3, 1114.37, 1080.99, 0, 5, 1303, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1204, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 0, 2613.64, 2071.98, 10.82, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1304, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1205, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 0, 2613.64, 2070.12, 10.82, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1305, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1206, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 0, 2613.64, 2062.79, 10.81, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1306, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1207, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 0, 2613.63, 2060.82, 10.81, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1307, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1208, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 0, 2613.64, 2053.51, 10.81, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1308, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1209, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 0, 2613.64, 2051.58, 10.82, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1309, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1210, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 0, 2613.64, 2044.13, 10.82, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1310, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1211, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 0, 2613.64, 2042.09, 10.82, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1311, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1212, 4, '6 Story Condo In SF', 0, 0, 0, 450000, 0, 0, -2172.59, 1163.75, 55.73, 0, 0, 0, 0, -1, 226.3, 1114.37, 1080.99, 0, 5, 1312, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1213, 4, '6 Story Condo In SF', 0, 0, 0, 450000, 0, 0, -2189.18, 1163.76, 55.73, 0, 0, 0, 0, -1, 226.3, 1114.37, 1080.99, 0, 5, 1313, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1214, 4, '6 Story Condo In SF', 0, 0, 0, 450000, 0, 0, -2205.8, 1163.76, 55.73, 0, 0, 0, 0, -1, 226.3, 1114.37, 1080.99, 0, 5, 1314, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1215, 4, '6 Story Condo In SF', 0, 0, 0, 450000, 0, 0, -2222.19, 1163.75, 55.73, 0, 0, 0, 0, -1, 226.3, 1114.37, 1080.99, 0, 5, 1315, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1216, 4, '3 Story Condo In SF', 0, 0, 0, 120000, 0, 0, -2102.54, 1159.83, 53.27, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 1316, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1217, 4, '3 Story Condo In SF', 0, 0, 0, 120000, 0, 0, -2084.2, 1159.83, 49.95, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 1317, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1218, 4, '3 Story Condo In SF', 0, 0, 0, 120000, 0, 0, -2065.95, 1159.84, 46.65, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 1318, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1219, 4, 'Nice looking house at lv', 0, 0, 0, 300000, 0, 0, 2013.25, 730.36, 11.45, 0, 0, 0, 0, -1, 234.22, 1063.89, 1084.21, 0, 6, 1319, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1220, 4, 'Medium house at LV', 0, 0, 0, 150000, 0, 0, 2014.13, 775.2, 11.46, 0, 0, 0, 0, -1, 447, 1397.09, 1084.3, 0, 2, 1320, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1221, 4, 'Medium house at LV', 0, 0, 0, 150000, 950, 0, 2042.44, 731.26, 11.46, 0, 0, 0, 0, -1, 447, 1397.09, 1084.3, 0, 2, 1321, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1222, 4, 'Medium house at LV', 0, 0, 0, 150000, 0, 0, 2043.24, 776.1, 11.45, 0, 0, 0, 0, -1, 447, 1397.09, 1084.3, 0, 2, 1322, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1223, 4, '5 Story Condo In SF', 0, 0, 0, 500000, 0, 0, -1761.05, 1174.03, 25.13, 0, 0, 0, 0, -1, 226.3, 1114.37, 1080.99, 0, 5, 1323, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1224, 4, 'Medium house at LV', 0, 0, 0, 150000, 0, 0, 2065.13, 729.82, 11.47, 0, 0, 0, 0, -1, 447, 1397.09, 1084.3, 0, 2, 1324, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1225, 4, '6 Story Condo In SF', 0, 0, 0, 450000, 0, 0, -1742.62, 1174.05, 25.13, 0, 0, 0, 0, -1, 226.3, 1114.37, 1080.99, 0, 5, 1325, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1226, 4, 'Medium house at LV', 0, 0, 0, 150000, 0, 0, 2071.62, 776.64, 11.46, 0, 0, 0, 0, -1, 447, 1397.09, 1084.3, 0, 2, 1326, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1227, 4, 'Medium house at LV', 0, 0, 0, 150000, 1500, 0, 2093.41, 730.36, 11.45, 0, 0, 0, 0, -1, 447, 1397.09, 1084.3, 0, 2, 1327, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1228, 4, 'Medium house at LV', 0, 0, 0, 150000, 0, 0, 2094, 775.2, 11.45, 0, 0, 0, 0, -1, 447, 1397.09, 1084.3, 0, 2, 1328, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1229, 4, '5 Story Condo In SF', 0, 0, 0, 500000, 0, 0, -1728.32, 1158.79, 30.45, 0, 0, 0, 0, -1, 226.3, 1114.37, 1080.99, 0, 5, 1329, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1230, 4, 'Medium house at LV', 0, 0, 0, 150000, 500, 0, 2122.3, 731.26, 11.46, 0, 0, 0, 0, -1, 447, 1397.09, 1084.3, 0, 2, 1330, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1231, 4, 'Medium house at LV', 0, 0, 0, 150000, 0, 0, 2123.41, 776.1, 11.44, 0, 0, 0, 0, -1, 447, 1397.09, 1084.3, 0, 2, 1331, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1232, 4, '5 Story Condo In SF', 0, 0, 0, 500000, 0, 0, -1728.31, 1138.95, 38.57, 0, 0, 0, 0, -1, 226.3, 1114.37, 1080.99, 0, 5, 1332, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1233, 4, 'Medium house at LV', 0, 0, 0, 150000, 0, 0, 2169.36, 772.38, 11.46, 0, 0, 0, 0, -1, 447, 1397.09, 1084.3, 0, 2, 1333, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1234, 4, 'Medium house at LV', 0, 0, 0, 150000, 0, 0, 2177.18, 690.35, 11.46, 0, 0, 0, 0, -1, 447, 1397.09, 1084.3, 0, 2, 1334, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1235, 4, 'Medium house at LV', 0, 0, 0, 150000, 5000, 0, 2228.68, 689.81, 11.46, 0, 0, 0, 0, -1, 447, 1397.09, 1084.3, 0, 2, 1335, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1236, 4, 'Medium house at LV', 0, 0, 0, 150000, 0, 0, 2206, 736.63, 11.47, 0, 0, 0, 0, -1, 447, 1397.09, 1084.3, 0, 2, 1336, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1237, 4, 'Medium house at LV', 0, 0, 0, 150000, 0, 0, 2177.61, 736.1, 11.46, 0, 0, 0, 0, -1, 447, 1397.09, 1084.3, 0, 2, 1337, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1238, 4, 'Medium house at LV', 0, 0, 0, 150000, 0, 0, 2228.25, 735.2, 11.46, 0, 0, 0, 0, -1, 447, 1397.09, 1084.3, 0, 2, 1338, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1239, 4, '4 Story Condo In SF', 0, 0, 0, 400000, 0, 0, -1929.89, 1190.53, 45.45, 0, 0, 0, 0, -1, 234.22, 1063.89, 358.5, 0, 6, 1339, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1240, 4, 'Medium house at LV', 0, 0, 0, 150000, 0, 0, 2256.98, 690.34, 11.45, 0, 0, 0, 0, -1, 447, 1397.09, 1084.3, 0, 2, 1340, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1241, 4, '4 Story Condo In SF', 0, 0, 0, 400000, 0, 0, -1915.56, 1190.54, 45.45, 0, 0, 0, 0, -1, 234.22, 1063.89, 358.5, 0, 6, 1341, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1242, 4, 'Medium house at LV', 0, 0, 0, 150000, 0, 0, 2257.52, 736.11, 11.46, 0, 0, 0, 0, -1, 447, 1397.09, 1084.3, 0, 2, 1342, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1243, 4, '4 Story Condo In SF', 0, 0, 0, 400000, 0, 0, -1872.07, 1146.71, 45.45, 0, 0, 0, 0, -1, 234.22, 1063.89, 358.5, 0, 6, 1343, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1244, 4, 'Medium house at LV', 0, 0, 0, 150000, 0, 0, 2317.15, 690.35, 11.46, 0, 0, 0, 0, -1, 447, 1397.09, 1084.3, 0, 2, 1344, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1245, 4, '4 Story Condo In SF', 0, 0, 0, 400000, 0, 0, -1872.08, 1125.38, 45.45, 0, 0, 0, 0, -1, 234.22, 1063.89, 358.5, 0, 6, 1345, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1246, 4, 'Medium house at LV', 0, 0, 0, 150000, 0, 0, 2346.6, 736.63, 11.47, 0, 0, 0, 0, -1, 447, 1397.09, 1084.3, 0, 2, 1346, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1247, 4, 'Medium house at LV', 0, 0, 0, 150000, 0, 0, 2346.35, 691.25, 11.46, 0, 0, 0, 0, -1, 447, 1397.09, 1084.3, 0, 2, 1347, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1248, 4, 'Medium house at LV', 0, 0, 0, 150000, 0, 0, 2369.11, 735.2, 11.46, 0, 0, 0, 0, -1, 447, 1397.09, 1084.3, 0, 2, 1348, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1249, 4, '5 Story Condo In SF', 0, 0, 0, 500000, 0, 0, -1901.41, 1203.19, 42.38, 0, 0, 0, 0, -1, 226.3, 1114.37, 1080.99, 0, 5, 1349, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1250, 4, 'Medium house at LV', 0, 0, 0, 150000, 0, 0, 2368.45, 689.8, 11.46, 0, 0, 0, 0, -1, 447, 1397.09, 1084.3, 0, 2, 1350, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1251, 4, 'Medium house at LV', 0, 0, 0, 150000, 0, 0, 2398.36, 736.1, 11.46, 0, 0, 0, 0, -1, 447, 1397.09, 1084.3, 0, 2, 1351, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1252, 4, 'Medium house at LV', 0, 0, 0, 150000, 0, 0, 2396.96, 690.34, 11.45, 0, 0, 0, 0, -1, 447, 1397.09, 1084.3, 0, 2, 1352, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1253, 4, 'Medium house at LV', 0, 0, 0, 150000, 0, 0, 2450.27, 742.54, 11.46, 0, 0, 0, 0, -1, 447, 1397.09, 1084.3, 0, 2, 1353, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1254, 4, '5 Story Condo In SF', 0, 0, 0, 500000, 0, 0, -1852.62, 1162.22, 40.94, 0, 0, 0, 0, -1, 226.3, 1114.37, 1080.99, 0, 5, 1354, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1255, 4, 'Medium house at LV', 0, 0, 0, 150000, 0, 0, 2450.81, 714.31, 11.47, 0, 0, 0, 0, -1, 447, 1397.09, 1084.3, 0, 2, 1355, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1256, 4, 'Medium house at LV', 0, 0, 0, 150000, 1, 0, 2449.23, 689.74, 11.46, 0, 0, 0, 0, -1, 447, 1397.09, 1084.3, 0, 2, 1356, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1257, 4, 'Medium house at LV', 0, 0, 0, 150000, 0, 0, 2450.27, 662.64, 11.46, 0, 0, 0, 0, -1, 447, 1397.09, 1084.3, 0, 2, 1357, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1258, 4, 'Medium house at LV', 0, 0, 0, 150000, 0, 0, 2397.68, 656.11, 11.46, 0, 0, 0, 0, -1, 447, 1397.09, 1084.3, 0, 2, 1358, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1259, 4, 'Medium house at LV', 0, 0, 0, 150000, 0, 0, 2368.38, 655.21, 11.46, 0, 0, 0, 0, -1, 447, 1397.09, 1084.3, 0, 2, 1359, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1260, 4, 'Medium house at LV', 0, 0, 0, 150000, 0, 0, 2346.09, 656.64, 11.46, 0, 0, 0, 0, -1, 447, 1397.09, 1084.3, 0, 2, 1360, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1261, 4, 'Medium house at LV', 0, 0, 0, 150000, 100, 0, 2317.81, 656.1, 11.45, 0, 0, 0, 0, -1, 447, 1397.09, 1084.3, 0, 2, 1361, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1262, 4, '4 Story Condo In SF', 0, 0, 0, 400000, 0, 0, -1831.8, 1165.88, 33.68, 0, 0, 0, 0, -1, 234.22, 1063.89, 358.5, 0, 6, 1362, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1263, 4, 'Medium house at LV', 0, 0, 0, 150000, 0, 0, 2258.11, 655.98, 11.45, 0, 0, 0, 0, -1, 447, 1397.09, 1084.3, 0, 2, 1363, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1264, 4, 'Medium house at LV', 0, 0, 0, 150000, 0, 0, 2229.04, 655.18, 11.46, 0, 0, 0, 0, -1, 447, 1397.09, 1084.3, 0, 2, 1364, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1265, 4, 'Medium house at LV', 0, 0, 0, 150000, 0, 0, 2206.41, 656.63, 11.47, 0, 0, 0, 0, -1, 447, 1397.09, 1084.3, 0, 2, 1365, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1266, 4, 'Medium house at LV', 0, 0, 0, 150000, 0, 0, 2178.16, 655.99, 11.46, 0, 0, 0, 0, -1, 447, 1397.09, 1084.3, 0, 2, 1366, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1267, 4, '6 Story Condo In SF', 0, 0, 0, 450000, 0, 0, -1732.27, 1115.52, 45.45, 0, 0, 0, 0, -1, 226.3, 1114.37, 1080.99, 0, 5, 1367, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1268, 4, 'Medium house at LV', 0, 0, 0, 150000, 0, 0, 2123.27, 651.31, 11.46, 0, 0, 0, 0, -1, 447, 1397.09, 1084.3, 0, 2, 1368, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1269, 4, 'Medium house at LV', 0, 0, 0, 150000, 0, 0, 2120.44, 696.09, 11.45, 0, 0, 0, 0, -1, 447, 1397.09, 1084.3, 0, 2, 1369, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1270, 4, '6 Story Condo In SF', 0, 0, 0, 450000, 0, 0, -1776.18, 1115.52, 45.45, 0, 0, 0, 0, -1, 226.3, 1114.37, 1080.99, 0, 5, 1370, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1271, 4, 'Medium house at LV', 0, 0, 0, 150000, 0, 0, 2091.24, 695.19, 11.46, 0, 0, 0, 0, -1, 447, 1397.09, 1084.3, 0, 2, 1371, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1272, 4, 'Medium house at LV', 0, 0, 0, 150000, 0, 0, 2094.12, 650.4, 11.46, 0, 0, 0, 0, -1, 447, 1397.09, 1084.3, 0, 2, 1372, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1273, 4, '4 Story Condo In SF', 0, 0, 0, 400000, 0, 0, -1780.11, 1138.79, 38.59, 0, 0, 0, 0, -1, 234.22, 1063.89, 358.5, 0, 6, 1373, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1274, 4, 'Medium house at LV', 0, 0, 0, 150000, 0, 0, 2068.96, 696.63, 11.47, 0, 0, 0, 0, -1, 447, 1397.09, 1084.3, 0, 2, 1374, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1275, 4, '4 Story Condo In SF', 0, 0, 0, 400000, 0, 0, -1780.12, 1158.76, 30.45, 0, 0, 0, 0, -1, 234.22, 1063.89, 358.5, 0, 6, 1375, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1276, 4, 'Medium house at LV', 0, 0, 0, 150000, 0, 0, 2065.82, 649.86, 11.47, 0, 0, 0, 0, -1, 447, 1397.09, 1084.3, 0, 2, 1376, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1277, 4, 'Medium house at LV', 0, 0, 0, 150000, 0, 0, 2040.71, 696.09, 11.45, 0, 0, 0, 0, -1, 447, 1397.09, 1084.3, 0, 2, 1377, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1278, 4, 'Medium house at LV', 0, 0, 0, 150000, 150, 0, 2043.26, 651.31, 11.46, 0, 0, 0, 0, -1, 447, 1397.09, 1084.3, 0, 2, 1378, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1279, 4, 'Medium house at LV', 0, 0, 0, 150000, 400, 0, 2011.61, 695.19, 11.46, 0, 0, 0, 0, -1, 447, 1397.09, 1084.3, 0, 2, 1379, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1280, 4, 'Medium house at LV', 0, 0, 0, 150000, 150, 0, 2013.96, 650.4, 11.46, 0, 0, 0, 0, -1, 447, 1397.09, 1084.3, 0, 2, 1380, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1281, 4, '4 Story Condo In SF', 0, 0, 0, 400000, 0, 0, -1820.68, 1117.26, 46.45, 0, 0, 0, 0, -1, 234.22, 1063.89, 358.5, 0, 6, 1381, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1282, 4, '4 Story Condo In SF', 0, 0, 0, 400000, 0, 0, -1842.59, 1115.52, 45.45, 0, 0, 0, 0, -1, 234.22, 1063.89, 358.5, 0, 6, 1382, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1283, 4, '4 Story Condo In SF', 0, 0, 0, 400000, 0, 0, -1860.83, 1115.51, 45.45, 0, 0, 0, 0, -1, 234.22, 1063.89, 358.5, 0, 6, 1383, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1284, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 0, 2571.53, 719.4, 14.74, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1384, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1285, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 0, 2579.08, 719.48, 14.74, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1385, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1286, 4, '4 Story Condo In SF', 0, 0, 0, 400000, 0, 0, -2024.5, 1275.93, 7.19, 0, 0, 0, 0, -1, 234.22, 1063.89, 358.5, 0, 6, 1386, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1287, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 0, 2571.53, 713.24, 14.74, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1387, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1288, 4, '4 Story Condo In SF', 0, 0, 0, 400000, 0, 0, -2029, 1275.91, 7.19, 0, 0, 0, 0, -1, 234.22, 1063.89, 358.5, 0, 6, 1388, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1289, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 0, 2579.08, 713.23, 14.74, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1389, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1290, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 0, 2579.08, 719.54, 10.82, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1390, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1291, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 0, 2571.7, 719.52, 10.82, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1391, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1292, 4, '3 Story Condo In SF', 0, 0, 0, 120000, 0, 0, -2043.83, 1261.38, 9.2, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 1392, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1293, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 0, 2621.06, 719.54, 10.82, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1393, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1294, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 0, 2613.51, 719.58, 10.82, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1394, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1295, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 0, 2613.51, 719.47, 14.74, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1395, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1296, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 0, 2621.06, 719.4, 14.74, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1396, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1297, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 0, 2613.5, 713.38, 14.74, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1397, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1298, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 0, 2621.06, 713.23, 14.74, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1398, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1299, 4, '3 Story Condo In SF', 0, 0, 0, 120000, 0, 0, -2383.11, 1336.27, 12.8, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 1399, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1300, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 0, 2540.06, 719.54, 10.82, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1400, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1301, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 0, 2532.51, 719.58, 10.82, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1401, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1302, 4, '3 Story Condo In SF', 0, 0, 0, 120000, 0, 0, -2351.14, 1336.15, 12.79, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 1402, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1303, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 0, 2532.5, 719.58, 14.74, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1403, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1304, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 0, 2540.06, 719.53, 14.74, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1404, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1305, 4, 'lv project apartment small', 0, 0, 0, 40000, 1, 0, 2532.51, 713.23, 14.74, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1405, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1306, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 0, 2540.06, 713.2, 14.74, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1406, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1307, 4, '3 Story Condo In SF', 0, 0, 0, 120000, 0, 0, -2351.15, 1318.02, 16.22, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 1407, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1308, 4, '3 Story Condo In SF', 0, 0, 0, 120000, 0, 0, -2351.16, 1299.56, 19.58, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 1408, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1309, 4, '3 Story Condo In SF', 0, 0, 0, 120000, 0, 0, -2351.14, 1281.29, 22.94, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 1409, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1310, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 0, 2660.08, 719.42, 10.82, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1410, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1311, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 0, 2652.53, 719.49, 10.82, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1411, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1312, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 0, 2652.53, 719.52, 14.74, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1412, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1313, 4, '3 Story Condo In SF', 0, 0, 0, 120000, 0, 0, -2351.15, 1262.93, 26.32, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 1413, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1314, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 0, 2660.08, 719.58, 14.74, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1414, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1315, 4, '3 Story Condo In SF', 0, 0, 0, 120000, 0, 0, -2351.15, 1244.69, 29.68, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 1415, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1316, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 0, 2652.53, 713.16, 10.82, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1416, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1317, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 0, 2660.08, 713.32, 10.82, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1417, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1318, 4, '3 Story Condo In SF', 0, 0, 0, 120000, 0, 0, -2351.15, 1226.37, 33.03, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 1418, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1319, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 0, 2652.53, 713.27, 14.74, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1419, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1320, 4, '3 Story Condo In SF', 0, 0, 0, 120000, 0, 0, -2383.13, 1226.35, 33.04, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 1420, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1321, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 0, 2660.08, 713.33, 14.74, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1421, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1322, 4, '3 Story Condo In SF', 0, 0, 0, 120000, 0, 0, -2383.09, 1244.63, 29.69, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 1422, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1323, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 0, 2613.51, 713.39, 10.82, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1423, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1324, 4, '3 Story Condo In SF', 0, 0, 0, 120000, 0, 0, -2383.14, 1262.96, 26.33, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 1424, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1325, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 0, 2621.06, 713.22, 10.82, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1425, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1326, 4, '3 Story Condo In SF', 0, 0, 0, 120000, 0, 0, -2383.12, 1281.31, 22.96, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 1426, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1327, 4, '3 Story Condo In SF', 0, 0, 0, 120000, 0, 0, -2383.14, 1299.71, 19.6, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 1427, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1328, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 0, 2579.08, 713.21, 10.82, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1428, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1329, 4, '3 Story Condo In SF', 0, 0, 0, 120000, 0, 0, -2383.12, 1317.95, 16.24, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 1429, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1330, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 0, 2571.53, 713.25, 10.82, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1430, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1331, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 0, 2540.06, 713.25, 10.82, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1431, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1332, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 0, 2532.51, 713.37, 10.82, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1432, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1333, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 0, 2526.21, 750.1, 10.82, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1433, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1334, 4, 'Normal Size House In SF', 0, 0, 0, 85000, 0, 0, -2433.08, 1338.17, 8.51, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 1434, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1335, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 0, 2526.13, 742.54, 10.82, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1435, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1336, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 0, 2525.97, 742.54, 14.74, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1436, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1337, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 0, 2526.04, 750.09, 14.74, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1437, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1338, 4, 'Small House In SF', 0, 0, 0, 30000, 0, 0, -2433.76, 1318.71, 13.87, 0, 0, 0, 0, -1, 261.06, 1284.29, 1080.25, 0, 4, 1438, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1339, 4, 'Small House In SF', 0, 0, 0, 30000, 0, 0, -2434.02, 1311.06, 15.42, 0, 0, 0, 0, -1, 261.06, 1284.29, 1080.25, 0, 4, 1439, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1340, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 0, 2532.3, 742.54, 10.82, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1440, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1341, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 0, 2532.36, 750.09, 10.82, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1441, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1342, 4, 'Small House In SF', 0, 0, 0, 30000, 0, 0, -2433.07, 1301.14, 18.38, 0, 0, 0, 0, -1, 261.06, 1284.29, 1080.25, 0, 4, 1442, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1343, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 0, 2532.43, 750.09, 14.74, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1443, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1344, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 0, 2532.36, 742.54, 14.74, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1444, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1345, 4, 'Small House In SF', 0, 0, 0, 30000, 0, 0, -2433.77, 1281.61, 23.74, 0, 0, 0, 0, -1, 261.06, 1284.29, 1080.25, 0, 4, 1445, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1346, 4, 'Small House In SF', 0, 0, 0, 30000, 0, 0, -2434, 1274.07, 25.31, 0, 0, 0, 0, -1, 261.06, 1284.29, 1080.25, 0, 4, 1446, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1347, 4, 'Normal Size House In SF', 0, 0, 0, 85000, 0, 0, -2433.06, 1264.12, 28.26, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 1447, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1348, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 0, 2660.31, 750.1, 10.82, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1448, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1349, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 0, 2660.28, 742.54, 10.82, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1449, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1350, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 0, 2666.5, 750.1, 10.82, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1450, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1351, 4, 'Small House In SF', 0, 0, 0, 30000, 0, 0, -2433.72, 1244.43, 33.62, 0, 0, 0, 0, -1, 261.06, 1284.29, 1080.25, 0, 4, 1451, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1352, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 0, 2666.5, 742.54, 10.82, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1452, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1353, 4, 'Small House In SF', 0, 0, 0, 30000, 0, 0, -2477.24, 1244.31, 33.61, 0, 0, 0, 0, -1, 261.06, 1284.29, 1080.25, 0, 4, 1453, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1354, 4, 'Normal Size House In SF', 0, 0, 0, 85000, 0, 0, -2477.93, 1264.22, 28.25, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 1454, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1355, 4, 'Small House In SF', 0, 0, 0, 30000, 0, 0, -2476.93, 1274.28, 25.31, 0, 0, 0, 0, -1, 261.06, 1284.29, 1080.25, 0, 4, 1455, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1356, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 0, 2660.21, 742.55, 14.74, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1456, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1357, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 0, 2660.38, 750.1, 14.74, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1457, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1358, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 0, 2666.43, 742.54, 14.74, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1458, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1359, 4, 'Small House In SF', 0, 0, 0, 30000, 0, 0, -2477.19, 1281.51, 23.73, 0, 0, 0, 0, -1, 261.06, 1284.29, 1080.25, 0, 4, 1459, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1360, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 0, 2666.53, 750.1, 14.74, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1460, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1361, 4, 'Normal Size House In SF', 0, 0, 0, 85000, 0, 0, -2477.88, 1301.24, 18.38, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 1461, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1362, 4, 'Small House In SF', 0, 0, 0, 30000, 0, 0, -2476.93, 1311.23, 15.41, 0, 0, 0, 0, -1, 261.06, 1284.29, 1080.25, 0, 4, 1462, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1363, 4, 'Small House In SF', 0, 0, 0, 30000, 0, 0, -2477.2, 1318.62, 13.85, 0, 0, 0, 0, -1, 261.06, 1284.29, 1080.25, 0, 4, 1463, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1364, 4, 'Normal Size House In SF', 0, 0, 0, 85000, 0, 0, -2477.87, 1338.25, 8.5, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 1464, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1365, 4, 'Medium house at LV', 0, 0, 0, 150000, 5000, 0, 1845.44, 661.13, 11.46, 0, 0, 0, 0, -1, 447, 1397.09, 1084.3, 0, 2, 1465, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1366, 4, 'Medium house at LV', 0, 0, 0, 150000, 200, 0, 1844.53, 690.45, 11.45, 0, 0, 0, 0, -1, 447, 1397.09, 1084.3, 0, 2, 1466, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1367, 4, 'Medium house at LV', 0, 0, 0, 150000, 0, 0, 1843.99, 718.83, 11.47, 0, 0, 0, 0, -1, 447, 1397.09, 1084.3, 0, 2, 1467, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1368, 4, 'Medium house at LV', 0, 0, 0, 150000, 0, 0, 1845.44, 741.39, 11.46, 0, 0, 0, 0, -1, 447, 1397.09, 1084.3, 0, 2, 1468, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1369, 4, '3 Story Condo In SF', 0, 0, 0, 120000, 0, 0, -2126.45, 1087.64, 80.01, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 1469, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1370, 4, '3 Story Condo In SF', 0, 0, 0, 120000, 0, 0, -2126.5, 1069.28, 80.01, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 1470, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1371, 4, '5 Story Condo In SF', 0, 0, 0, 500000, 0, 0, -2126.44, 1050.91, 80.01, 0, 0, 0, 0, -1, 226.3, 1114.37, 1080.99, 0, 5, 1471, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1372, 4, '5 Story Condo In SF', 0, 0, 0, 500000, 0, 0, -2126.47, 1032.53, 80.01, 0, 0, 0, 0, -1, 226.3, 1114.37, 1080.99, 0, 5, 1472, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1373, 4, '3 Story Condo In SF', 0, 0, 0, 120000, 0, 0, -2126.44, 1014.24, 80.01, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 1473, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1374, 4, '3 Story Condo In SF', 0, 0, 0, 120000, 0, 0, -2126.47, 996.32, 80.01, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 1474, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1375, 4, '3 Story Condo In SF', 0, 0, 0, 120000, 0, 0, -2126.44, 978.49, 80.01, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 1475, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1376, 4, '3 Story Condo In SF', 0, 0, 0, 120000, 0, 0, -2129.63, 942.58, 80, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 1476, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1377, 4, '2 Story Condo In SF', 0, 0, 0, 120000, 0, 0, -2116.77, 927.83, 86.08, 0, 0, 0, 0, -1, 447, 1397.09, 1084.3, 0, 2, 1477, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1378, 4, '3 Story Condo In SF', 0, 0, 0, 120000, 0, 0, -2129.25, 895.04, 80, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 1478, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1379, 4, '3 Story Condo In SF', 0, 0, 0, 120000, 0, 0, -2126.4, 832.82, 69.56, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 1479, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1380, 4, '3 Story Condo In SF', 0, 0, 0, 120000, 0, 0, -2126.04, 774.13, 69.56, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 1480, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1381, 4, '3 Story Condo In SF', 0, 0, 0, 120000, 0, 0, -2126.08, 755.7, 69.56, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 1481, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1382, 4, '3 Story Condo In SF', 0, 0, 0, 120000, 0, 0, -2112.56, 746.41, 69.56, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 1482, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1383, 4, '3 Story Condo In SF', 0, 0, 0, 120000, 0, 0, -2094.2, 746.42, 69.56, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 1483, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1384, 4, '3 Story Condo In SF', 0, 0, 0, 120000, 0, 0, -2066.57, 746.06, 64.89, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 1484, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1385, 4, '3 Story Condo In SF', 0, 0, 0, 120000, 0, 0, -2048.12, 746.08, 57.04, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 1485, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1386, 4, '3 Story Condo In SF', 0, 0, 0, 120000, 0, 0, -2029.84, 746.08, 49.46, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 1486, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1387, 4, '3 Story Condo In SF', 0, 0, 0, 120000, 0, 0, -2018.55, 748.04, 45.45, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 1487, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1388, 4, '3 Story Condo In SF', 0, 0, 0, 120000, 0, 0, -2018.54, 766.22, 45.45, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 1488, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1389, 4, '3 Story Condo In SF', 0, 0, 0, 120000, 0, 0, -2018.53, 784.82, 45.45, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 1489, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1390, 4, '3 Story Condo In SF', 0, 0, 0, 120000, 0, 0, -2029.85, 796.12, 49.47, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 1490, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1391, 4, '3 Story Condo In SF', 0, 0, 0, 120000, 0, 0, -2048.22, 796.1, 57.04, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 1491, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1392, 4, '3 Story Condo In SF', 0, 0, 0, 120000, 0, 0, -2066.44, 796.12, 64.92, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 1492, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1393, 4, '3 Story Condo In SF', 0, 0, 0, 120000, 0, 0, -2094.25, 795.75, 69.56, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 1493, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1394, 4, '3 Story Condo In SF', 0, 0, 0, 120000, 0, 0, -2112.67, 795.75, 69.56, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 1494, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1395, 4, '3 Story Condo In SF', 0, 0, 0, 120000, 0, 0, -2112.63, 823.53, 69.56, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 1495, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1396, 4, '3 Story Condo In SF', 0, 0, 0, 120000, 0, 0, -2094.18, 823.55, 69.56, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 1496, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1397, 4, '3 Story Condo In SF', 0, 0, 0, 120000, 0, 0, -2066.48, 820.69, 64.92, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 1497, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1398, 4, '3 Story Condo In SF', 0, 0, 0, 120000, 0, 0, -2048.12, 820.69, 57.03, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 1498, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1399, 4, '3 Story Condo In SF', 0, 0, 0, 120000, 0, 0, -2029.81, 820.68, 49.46, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 1499, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1400, 4, '3 Story Condo In SF', 0, 0, 0, 120000, 0, 0, -2018.54, 832.17, 45.45, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 1500, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1401, 4, '6 Story Condo In SF', 0, 0, 0, 450000, 0, 0, -2018.54, 849.28, 45.45, 0, 0, 0, 0, -1, 226.3, 1114.37, 1080.99, 0, 5, 1501, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1402, 4, '6 Story Condo In SF', 0, 0, 0, 450000, 0, 0, -2018.53, 865.8, 45.44, 0, 0, 0, 0, -1, 226.3, 1114.37, 1080.99, 0, 5, 1502, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1403, 4, '4 Story Condo In SF', 0, 0, 0, 400000, 0, 0, -2016.35, 897.46, 45.45, 0, 0, 0, 0, -1, 234.22, 1063.89, 358.5, 0, 6, 1503, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1404, 4, '3 Story Condo In SF', 0, 0, 0, 120000, 0, 0, -2034.17, 901.47, 50.46, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 1504, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1405, 4, 'Large Condo In SF', 0, 0, 0, 420000, 0, 0, -2075.25, 898.65, 64.13, 0, 0, 0, 0, -1, 234.22, 1063.89, 1084.21, 0, 6, 1505, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1406, 4, 'Large Condo In SF', 0, 0, 0, 420000, 0, 0, -2084.75, 898.65, 64.13, 0, 0, 0, 0, -1, 234.22, 1063.89, 1084.21, 0, 6, 1506, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1407, 4, '3 Story Condo In SF', 0, 0, 0, 120000, 0, 0, -2099.46, 897.38, 76.71, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 1507, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1408, 4, '5 Story Condo In SF', 0, 0, 0, 500000, 0, 0, -2018.29, 970.07, 45.44, 0, 0, 0, 0, -1, 226.3, 1114.37, 1080.99, 0, 5, 1508, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1409, 4, '3 Story Condo In SF', 0, 0, 0, 120000, 0, 0, -2018.3, 982.71, 47.69, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 1509, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1410, 4, '3 Story Condo In SF', 0, 0, 0, 120000, 0, 0, -2018.29, 1000.03, 50.78, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 1510, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1411, 4, '3 Story Condo In SF', 0, 0, 0, 120000, 0, 0, -2018.3, 1016.93, 53.87, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 1511, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1412, 4, 'Medium house at LV', 0, 0, 0, 150000, 0, 0, 984.47, 2343.69, 11.47, 0, 0, 0, 0, -1, 447, 1397.09, 1084.3, 0, 2, 1512, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1413, 4, 'Medium house at LV', 0, 0, 0, 150000, 0, 0, 985.48, 2314.3, 11.46, 0, 0, 0, 0, -1, 447, 1397.09, 1084.3, 0, 2, 1513, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1414, 4, 'Medium house at LV', 0, 0, 0, 150000, 0, 0, 986.49, 2271.25, 11.46, 0, 0, 0, 0, -1, 447, 1397.09, 1084.3, 0, 2, 1514, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1415, 4, 'Medium house at LV', 0, 0, 0, 150000, 1, 0, 956.9, 2270.27, 11.47, 0, 0, 0, 0, -1, 447, 1397.09, 1084.3, 0, 2, 1515, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1416, 4, 'Medium house at LV', 0, 0, 0, 150000, 0, 0, 1030.81, 2028.11, 11.47, 0, 0, 0, 0, -1, 447, 1397.09, 1084.3, 0, 2, 1516, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1417, 4, 'Medium house at LV', 0, 0, 0, 150000, 0, 0, 1029.36, 2005.64, 11.46, 0, 0, 0, 0, -1, 447, 1397.09, 1084.3, 0, 2, 1517, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1418, 4, 'Medium house at LV', 0, 0, 0, 150000, 0, 0, 985.41, 2000.59, 11.46, 0, 0, 0, 0, -1, 447, 1397.09, 1084.3, 0, 2, 1518, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1419, 4, 'Medium house at LV', 0, 0, 0, 150000, 0, 0, 984.51, 2030.18, 11.47, 0, 0, 0, 0, -1, 447, 1397.09, 1084.3, 0, 2, 1519, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1420, 4, 'Small House In SF', 0, 0, 0, 30000, 0, 0, -2905.21, 1154.89, 13.66, 0, 0, 0, 0, -1, 261.06, 1284.29, 1080.25, 0, 4, 1520, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1421, 4, 'Small House In SF', 0, 0, 0, 30000, 0, 0, -2905.16, 1165.04, 13.66, 0, 0, 0, 0, -1, 261.06, 1284.29, 1080.25, 0, 4, 1521, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1422, 4, 'Medium house at LV', 0, 0, 0, 150000, 0, 0, 1030.27, 1976.01, 11.47, 0, 0, 0, 0, -1, 447, 1397.09, 1084.3, 0, 2, 1522, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1423, 4, 'Small House In SF', 0, 0, 0, 30000, 0, 0, -2905.25, 1171.55, 13.66, 0, 0, 0, 0, -1, 261.06, 1284.29, 1080.25, 0, 4, 1523, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1424, 4, 'Small House In SF', 0, 0, 0, 30000, 0, 0, -2905.09, 1178.76, 13.66, 0, 0, 0, 0, -1, 261.06, 1284.29, 1080.25, 0, 4, 1524, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1425, 4, 'Medium house at LV', 0, 0, 0, 150000, 0, 0, 983.97, 1978.2, 11.47, 0, 0, 0, 0, -1, 447, 1397.09, 1084.3, 0, 2, 1525, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1426, 4, 'Medium house at LV', 0, 0, 0, 150000, 0, 0, 984.7, 1930.83, 11.47, 0, 0, 0, 0, -1, 447, 1397.09, 1084.3, 0, 2, 1526, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1427, 4, 'Medium house at LV', 0, 0, 0, 150000, 0, 0, 1030.81, 1928.11, 11.47, 0, 0, 0, 0, -1, 447, 1397.09, 1084.3, 0, 2, 1527, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1428, 4, 'Small Nice House In SF', 0, 0, 0, 60000, 0, 0, -2904.7, 1118.82, 27.07, 0, 0, 0, 0, -1, 22.93, 1403.32, 1084.43, 0, 5, 1528, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1429, 4, 'Medium house at LV', 0, 0, 0, 150000, 500, 0, 1029.36, 1905.92, 11.46, 0, 0, 0, 0, -1, 447, 1397.09, 1084.3, 0, 2, 1529, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1430, 4, 'Small House In SF', 0, 0, 0, 30000, 0, 0, -2904.8, 1111.52, 27.07, 0, 0, 0, 0, -1, 261.06, 1284.29, 1080.25, 0, 4, 1530, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1431, 4, 'Medium house at LV', 0, 0, 0, 150000, 0, 0, 985.41, 1901.04, 11.46, 0, 0, 0, 0, -1, 447, 1397.09, 1084.3, 0, 2, 1531, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1432, 4, 'Small House In SF', 0, 0, 0, 30000, 0, 0, -2904.47, 1101.11, 27.07, 0, 0, 0, 0, -1, 261.06, 1284.29, 1080.25, 0, 4, 1532, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1433, 4, 'Medium house at LV', 0, 0, 0, 150000, 0, 0, 983.97, 1878.94, 11.47, 0, 0, 0, 0, -1, 447, 1397.09, 1084.3, 0, 2, 1533, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1434, 4, 'Medium house at LV', 0, 0, 0, 150000, 0, 0, 1030.37, 1876.35, 11.47, 0, 0, 0, 0, -1, 447, 1397.09, 1084.3, 0, 2, 1534, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1435, 4, 'Medium house at LV', 0, 0, 0, 150000, 0, 0, 1030.81, 1847.93, 11.47, 0, 0, 0, 0, -1, 447, 1397.09, 1084.3, 0, 2, 1535, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1436, 4, 'LS Project', 0, 0, 0, 4000, 1500, 0, 2158.34, -1611.31, 14.35, 0, 0, 0, 0, -1, 244.41, 305.03, 999.15, 0, 1, 1536, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1437, 4, 'LS Project', 0, 0, 0, 4000, 1000, 0, 2129.11, -1663.94, 15.09, 0, 0, 0, 0, -1, 244.41, 305.03, 999.15, 0, 1, 1537, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1438, 4, 'LS Project', 0, 0, 0, 4000, 100, 0, 2141.49, -1652.85, 15.09, 0, 0, 0, 0, -1, 244.41, 305.03, 999.15, 0, 1, 1538, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1439, 4, '*LS Project', 0, 0, 0, 4000, 95, 0, 2172.59, -1615.28, 14.28, 0, 0, 0, 0, -1, 244.41, 305.03, 999.15, 0, 1, 1539, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1440, 4, 'LS Project', 0, 0, 0, 4000, 0, 0, 2179.08, -1600.11, 14.35, 0, 0, 0, 0, -1, 244.41, 305.03, 999.15, 0, 1, 1540, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1441, 4, 'LS Project', 0, 0, 0, 4000, 0, 0, 2165.56, -1590.49, 14.35, 0, 0, 0, 0, -1, 244.41, 305.03, 999.15, 0, 1, 1541, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1442, 4, 'LS Project', 0, 0, 0, 4000, 0, 0, 2151.2, -1598.49, 14.35, 0, 0, 0, 0, -1, 244.41, 305.03, 999.15, 0, 1, 1542, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1443, 4, 'LS Project', 0, 0, 0, 4000, 0, 0, 2150.4, -1583.96, 14.34, 0, 0, 0, 0, -1, 244.41, 305.03, 999.15, 0, 1, 1543, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1444, 4, 'LS Project', 0, 0, 0, 4000, 0, 0, 2136, -1591.98, 14.35, 0, 0, 0, 0, -1, 244.41, 305.03, 999.15, 0, 1, 1544, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1445, 4, 'LS Project', 0, 0, 0, 4000, 0, 0, 2143.29, -1571.2, 14.19, 0, 0, 0, 0, -1, 244.41, 305.03, 999.15, 0, 1, 1545, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1446, 4, 'LS Project', 0, 0, 0, 4000, 0, 0, 2158.51, -1577.71, 14.28, 0, 0, 0, 0, -1, 244.41, 305.03, 999.15, 0, 1, 1546, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1447, 4, 'LS Project', 0, 0, 0, 4000, 0, 0, 2191.91, -1592.97, 14.35, 0, 0, 0, 0, -1, 244.41, 305.03, 999.15, 0, 1, 1547, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1448, 4, 'LS Project', 0, 0, 0, 4000, 0, 0, 2185.31, -1608.14, 14.36, 0, 0, 0, 0, -1, 244.41, 305.03, 999.15, 0, 1, 1548, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1449, 4, 'LS Project', 0, 0, 0, 4000, 0, 0, 2143.12, -1604.72, 14.35, 0, 0, 0, 0, -1, 244.41, 305.03, 999.15, 0, 1, 1549, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1450, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 0, 0, 2068.14, -1588.86, 13.49, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 1550, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1451, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 0, 0, 2073.36, -1583.05, 13.47, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 1551, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1452, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 0, 0, 2065.33, -1583.36, 13.48, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 1552, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1453, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 0, 0, 2076.11, -1588.67, 13.49, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 1553, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1454, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 0, 0, 2072.5, -1559.31, 13.41, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 1554, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1455, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 0, 0, 2066.81, -1554.09, 13.43, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 1555, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1456, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 0, 0, 2066.96, -1562.17, 13.43, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 1556, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1457, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 0, 0, 2072.27, -1551.3, 13.42, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 1557, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1458, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 250, 0, 1852.3, -2019.63, 13.54, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 1558, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1459, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 2000, 0, 1852.33, -2021.36, 13.54, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 1559, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1460, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 0, 0, 1857.1, -2035.08, 13.54, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 1560, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1461, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 0, 0, 1858.71, -2035.04, 13.54, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 1561, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1462, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 0, 0, 1867.87, -2028.42, 13.54, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 1562, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1463, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 500, 0, 1864.98, -2021.37, 13.54, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 1563, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1464, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 0, 0, 1864.95, -2019.64, 13.54, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 1564, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1465, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 50, 0, 1865.96, -2003.88, 13.54, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 1565, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1466, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 500, 0, 1867.77, -2003.87, 13.54, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 1566, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1467, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 0, 0, 1867.88, -2010.06, 13.54, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 1567, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1468, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 0, 0, 1888.93, -2000.94, 13.54, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 1568, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1469, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 0, 0, 1877.32, -2001.01, 13.54, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 1569, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1470, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 0, 0, 1867.75, -1998.07, 13.54, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 1570, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1471, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 0, 0, 1866.01, -1998.09, 13.54, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 1571, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1472, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 200, 0, 1867.79, -1985.4, 13.54, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 1572, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1473, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 0, 0, 1866, -1985.45, 13.54, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 1573, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1474, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 0, 0, 1852.28, -1990.19, 13.54, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 1574, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1475, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 449, 0, 1852.33, -1991.81, 13.54, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 1575, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1476, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 0, 0, 1858.96, -2001, 13.54, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 1576, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1477, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 500, 0, 1849.4, -2010.06, 13.54, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 1577, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1478, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 0, 0, 1895.53, -2019.67, 13.54, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 1578, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1479, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 0, 0, 1895.53, -2021.36, 13.54, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 1579, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1480, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 0, 0, 1898.99, -2037.96, 13.54, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 1580, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1481, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 0, 0, 1898.37, -2028.42, 13.54, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 1581, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1482, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 0, 0, 1905.98, -2035.08, 13.54, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 1582, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1483, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 0, 0, 1907.71, -2035.05, 13.54, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 1583, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1484, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 0, 0, 1913.96, -2021.43, 13.54, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 1584, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1485, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 450, 0, 1913.95, -2019.65, 13.54, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 1585, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1486, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 0, 0, 1901.33, -2019.64, 13.54, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 1586, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1487, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 0, 0, 1901.34, -2021.43, 13.54, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 1587, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1488, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 0, 0, 1916.9, -2028.42, 13.54, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 1588, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1489, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 0, 0, 1919.76, -2021.34, 13.54, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 1589, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1490, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 0, 0, 1919.76, -2019.62, 13.54, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 1590, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1491, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 0, 0, 1916.9, -2000.38, 13.54, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 1591, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1492, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 0, 0, 1916.89, -2010.06, 13.54, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 1592, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1493, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 0, 0, 1907.28, -2001.01, 13.54, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 1593, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1494, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 730, 0, 1913.95, -1993.45, 13.54, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 1594, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1495, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 0, 0, 1913.92, -1991.56, 13.54, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 1595, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1496, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 0, 0, 1907.29, -1982.51, 13.54, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 1596, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1497, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 5000, 0, 1900.31, -1979.61, 13.54, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 1597, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1498, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 0, 0, 1898.66, -1979.62, 13.54, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 1598, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1499, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 0, 0, 1916.76, -1982.03, 13.54, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 1599, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1500, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 0, 0, 1919.72, -1993.24, 13.54, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 1600, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1501, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 0, 0, 1919.72, -1991.62, 13.54, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 1601, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1502, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 0, 0, 1900.21, -1985.39, 13.54, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 1602, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1503, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 145, 0, 1898.54, -1985.42, 13.54, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 1603, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1504, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 0, 0, 1900.25, -1998.04, 13.54, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 1604, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1505, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 0, 0, 1898.49, -1998.06, 13.54, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 1605, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1506, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 0, 0, 1870.76, -2019.59, 13.54, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 1606, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1507, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 0, 0, 1870.76, -2021.39, 13.54, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 1607, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1508, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 100, 0, 1868.35, -2037.97, 13.54, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 1608, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1509, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 0, 0, 1858.79, -2040.85, 13.54, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 1609, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1510, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 0, 0, 1857.02, -2040.85, 13.54, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 1610, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1511, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 0, 0, 1906.17, -2040.85, 13.54, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 1611, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1512, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 0, 0, 1907.74, -2040.85, 13.54, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 1612, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1513, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 0, 0, 1849.99, -2037.92, 13.54, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 1613, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1514, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 0, 0, 1849.42, -2028.42, 13.54, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 1614, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1515, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 0, 0, 1846.53, -2021.35, 13.54, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 1615, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1516, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 0, 0, 1846.53, -2019.77, 13.54, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 1616, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1517, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 0, 0, 1849.45, -2001.46, 13.54, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 1617, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1518, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 0, 0, 1838.7, -1995.85, 13.54, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 1618, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1519, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 0, 0, 1838.7, -1994.18, 13.54, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 1619, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1520, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 500, 0, 1846.53, -1991.87, 13.54, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 1620, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1521, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 500, 0, 1846.53, -1990.15, 13.54, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 1621, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1522, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 0, 0, 1849.35, -1983.11, 13.54, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 1622, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1523, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 0, 0, 1858.96, -1982.62, 13.54, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 1623, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1524, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 0, 0, 1888.93, -1982.5, 13.54, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 1624, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1525, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 0, 0, 1917.35, -2037.98, 13.54, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 1625, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1526, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 0, 0, 1835.86, -2005.48, 13.54, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 1626, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1527, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 0, 0, 1835.93, -1987.13, 13.54, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 1627, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1528, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 0, 0, 1835.24, -1977.53, 13.54, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 1628, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1529, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 1000, 0, 1828.37, -1980.44, 13.54, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 1629, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1530, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 0, 0, 1826.53, -1980.51, 13.54, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 1630, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1531, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 1, 0, 1817.51, -1987.13, 13.55, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 1631, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1532, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 0, 0, 1816.89, -1977.5, 13.54, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 1632, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1533, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 1, 0, 1826.53, -1974.69, 13.54, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 1633, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1534, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 1, 0, 1828.07, -1974.69, 13.54, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 1634, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1535, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 0, 0, 1832.9, -1994.11, 13.54, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 1635, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1536, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 0, 0, 1820.28, -1995.94, 13.55, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 1636, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1537, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 200, 0, 1820.24, -1994.23, 13.55, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 1637, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1538, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 0, 0, 1817.43, -2005.49, 13.55, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 1638, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1539, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 0, 0, 1814.47, -1995.92, 13.55, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 1639, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1540, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 100, 0, 1814.48, -1994.15, 13.55, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 1640, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1541, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 0, 0, 1867.74, -1979.65, 13.54, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 1641, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1542, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 1000, 0, 1865.92, -1979.65, 13.54, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 1642, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1543, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 0, 0, 1877.32, -1982.49, 13.54, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 1643, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1544, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 0, 0, 1801.99, -2098.94, 14.02, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 1644, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1545, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 0, 0, 1804.19, -2124.9, 13.94, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 1645, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1546, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 0, 0, 1781.45, -2101.27, 14.05, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 1646, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1547, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 0, 0, 1782.09, -2126.37, 14.07, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 1647, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1548, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 0, 0, 1761.17, -2125.45, 14.05, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 1648, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1549, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 0, 0, 1762.39, -2101.98, 13.85, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 1649, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1550, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 0, 0, 1734.15, -2097.98, 14.04, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 1650, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1551, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 0, 0, 1734.62, -2130.35, 14.02, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 1651, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1552, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 1000, 0, 1715.06, -2125.45, 14.05, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 1652, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1553, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 1000, 0, 1711.67, -2101.24, 14.02, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 1653, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1554, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 250, 0, 1695.52, -2125.83, 13.81, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 1654, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1555, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 0, 0, 1684.72, -2098.16, 13.83, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 1655, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1556, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 0, 0, 1673.68, -2122.46, 14.14, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 1656, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1557, 4, 'normal house at ls', 0, 0, 0, 150000, 0, 0, 1616.15, -1897.58, 13.55, 0, 0, 0, 0, -1, 447, 1397.09, 1084.3, 0, 2, 1657, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1558, 4, 'normal house at ls', 0, 0, 0, 150000, 0, 0, 1610.88, -1893.88, 13.54, 0, 0, 0, 0, -1, 447, 1397.09, 1084.3, 0, 2, 1658, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1559, 4, 'normal house at ls', 0, 0, 0, 150000, 0, 0, 1628.69, -1903.36, 13.55, 0, 0, 0, 0, -1, 447, 1397.09, 1084.3, 0, 2, 1659, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1560, 4, 'House Near Vinewood', 0, 0, 0, 150000, 100, 0, 1325.95, -1067.65, 31.55, 0, 0, 0, 0, -1, 447, 1397.09, 1084.3, 0, 2, 1660, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1561, 4, 'House Near Vinewood', 0, 0, 0, 150000, 0, 0, 1326.26, -1090.61, 27.98, 0, 0, 0, 0, -1, 447, 1397.09, 1084.3, 0, 2, 1661, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1562, 4, 'House Near Vinewood', 0, 0, 0, 150000, 0, 0, 1285.27, -1090.28, 28.26, 0, 0, 0, 0, -1, 447, 1397.09, 1084.3, 0, 2, 1662, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1563, 4, 'House Near Vinewood', 0, 0, 0, 150000, 0, 0, 1242.26, -1099.51, 27.98, 0, 0, 0, 0, -1, 447, 1397.09, 1084.3, 0, 2, 1663, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1564, 4, 'House Near Vinewood', 0, 0, 0, 150000, 0, 0, 1241.94, -1076.43, 31.55, 0, 0, 0, 0, -1, 447, 1397.09, 1084.3, 0, 2, 1664, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1565, 4, 'House Near Vinewood', 0, 0, 0, 150000, 0, 0, 1285.26, -1067.31, 31.68, 0, 0, 0, 0, -1, 447, 1397.09, 1084.3, 0, 2, 1665, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1566, 4, 'House near vinewood small LS', 0, 0, 0, 100000, 0, 0, 1189.01, -1018.12, 36.23, 0, 0, 0, 0, -1, 447, 1397.09, 1084.3, 0, 2, 1666, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1567, 4, 'House near vinewood small LS', 0, 0, 0, 100000, 5000, 0, 1196.48, -1016.99, 36.23, 0, 0, 0, 0, -1, 447, 1397.09, 1084.3, 0, 2, 1667, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1568, 4, 'House near vinewood small LS', 0, 0, 0, 100000, 0, 0, 1188.19, -1011.88, 36.23, 0, 0, 0, 0, -1, 447, 1397.09, 1084.3, 0, 2, 1668, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1569, 4, 'House near vinewood small LS', 0, 0, 0, 100000, 0, 0, 1195.68, -1010.91, 36.23, 0, 0, 0, 0, -1, 447, 1397.09, 1084.3, 0, 2, 1669, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1570, 4, 'House near vinewood small LS', 0, 0, 0, 100000, 100, 0, 1188.19, -1011.89, 32.55, 0, 0, 0, 0, -1, 447, 1397.09, 1084.3, 0, 2, 1670, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1571, 4, 'House near vinewood small LS', 0, 0, 0, 100000, 0, 0, 1195.69, -1010.93, 32.55, 0, 0, 0, 0, -1, 447, 1397.09, 1084.3, 0, 2, 1671, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1572, 4, 'House near vinewood small LS', 0, 0, 0, 100000, 100, 0, 1189.01, -1018.09, 32.55, 0, 0, 0, 0, -1, 447, 1397.09, 1084.3, 0, 2, 1672, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1573, 4, 'House near vinewood small LS', 0, 0, 0, 100000, 0, 0, 1196.5, -1017.15, 32.55, 0, 0, 0, 0, -1, 447, 1397.09, 1084.3, 0, 2, 1673, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1574, 4, 'House near vinewood small LS', 0, 0, 0, 100000, 500, 0, 1234.73, -1016.13, 32.6, 0, 0, 0, 0, -1, 447, 1397.09, 1084.3, 0, 2, 1674, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1575, 4, 'House near vinewood small LS', 0, 0, 0, 100000, 50, 0, 1227.25, -1017.18, 32.6, 0, 0, 0, 0, -1, 447, 1397.09, 1084.3, 0, 2, 1675, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1576, 4, 'House near vinewood small LS', 0, 0, 0, 100000, 0, 0, 1233.93, -1010.05, 32.6, 0, 0, 0, 0, -1, 447, 1397.09, 1084.3, 0, 2, 1676, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1577, 4, 'House near vinewood small LS', 0, 0, 0, 100000, 0, 0, 1226.44, -1011.03, 32.6, 0, 0, 0, 0, -1, 447, 1397.09, 1084.3, 0, 2, 1677, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1578, 4, 'House near vinewood small LS', 0, 0, 0, 100000, 1500, 0, 1234.73, -1016.15, 36.34, 0, 0, 0, 0, -1, 447, 1397.09, 1084.3, 0, 2, 1678, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1579, 4, 'House near vinewood small LS', 0, 0, 0, 100000, 0, 0, 1227.25, -1017.18, 36.33, 0, 0, 0, 0, -1, 447, 1397.09, 1084.3, 0, 2, 1679, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1580, 4, 'House near vinewood small LS', 0, 0, 0, 100000, 0, 0, 1233.92, -1009.97, 36.33, 0, 0, 0, 0, -1, 447, 1397.09, 1084.3, 0, 2, 1680, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1581, 4, 'House near vinewood small LS', 0, 0, 0, 100000, 0, 0, 1226.44, -1011.01, 36.33, 0, 0, 0, 0, -1, 447, 1397.09, 1084.3, 0, 2, 1681, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1582, 4, 'House Near Vinewood', 0, 0, 0, 150000, 1, 0, 1127.97, -1021.17, 34.99, 0, 0, 0, 0, -1, 447, 1397.09, 1084.3, 0, 2, 1682, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1583, 4, 'House Near Vinewood', 0, 0, 0, 150000, 0, 0, 1118.05, -1021.17, 34.99, 0, 0, 0, 0, -1, 447, 1397.09, 1084.3, 0, 2, 1683, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1584, 4, 'House Near Vinewood', 0, 0, 0, 150000, 500, 0, 1051.03, -1059.3, 34.8, 0, 0, 0, 0, -1, 447, 1397.09, 1084.3, 0, 2, 1684, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1585, 4, 'House Near Vinewood', 0, 0, 0, 150000, 0, 0, 993.76, -1059.03, 33.7, 0, 0, 0, 0, -1, 447, 1397.09, 1084.3, 0, 2, 1685, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1586, 4, 'Mansion', 0, 0, 0, 5250000, 0, 0, 952.61, -909.1, 45.76, 0, 0, 0, 0, -1, 1298.81, -796.66, 1084.01, 0, 5, 1686, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1587, 4, 'House Near Vinewood', 0, 0, 0, 150000, 100, 0, 1411.1, -920.86, 38.42, 0, 0, 0, 0, -1, 447, 1397.09, 1084.3, 0, 2, 1687, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1588, 4, 'House Near Vinewood', 0, 0, 0, 150000, 0, 0, 1440.67, -926.13, 39.65, 0, 0, 0, 0, -1, 447, 1397.09, 1084.3, 0, 2, 1688, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1589, 4, 'small house at vinewood', 0, 0, 0, 150000, 0, 0, 1421.78, -886.23, 50.69, 0, 0, 0, 0, -1, 295.21, 1472.26, 1080.25, 0, 15, 1689, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1590, 4, 'small house at vinewood', 0, 0, 0, 150000, 0, 0, 1468.54, -906.18, 54.83, 0, 0, 0, 0, -1, 295.21, 1472.26, 1080.25, 0, 15, 1690, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1591, 4, 'house at vinewood', 0, 0, 0, 250000, 0, 0, 1535.72, -885.25, 57.66, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 1691, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1592, 4, 'Small House at Vinewood', 0, 0, 0, 400000, 100, 0, 1540.47, -851.44, 64.33, 0, 0, 0, 0, -1, 234.22, 1063.89, 1084.21, 0, 6, 1692, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1593, 4, 'small house at vinewood', 0, 0, 0, 150000, 0, 0, 1535.03, -800.17, 72.85, 0, 0, 0, 0, -1, 295.21, 1472.26, 1080.25, 0, 15, 1693, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1594, 4, 'House', 0, 0, 0, 150000, 0, 0, 1527.88, -772.64, 80.58, 0, 0, 0, 0, -1, 295.21, 1472.26, 1080.25, 0, 15, 1694, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1595, 4, 'House At Vinewood With Swimming Pool', 0, 0, 0, 550000, 0, 0, 1442.68, -628.83, 95.72, 0, 0, 0, 0, -1, 226.3, 1114.37, 1080.99, 0, 5, 1695, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1596, 4, 'Fancy Mansion with swimming pool', 0, 0, 0, 550000, 1500, 0, 1331.99, -633.55, 109.13, 0, 0, 0, 0, -1, 226.3, 1114.37, 1080.99, 0, 5, 1696, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1597, 4, 'House at Vinewood', 0, 0, 0, 400000, 0, 0, 1094.99, -647.91, 113.65, 0, 0, 0, 0, -1, 234.22, 1063.89, 1084.21, 0, 6, 1697, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1598, 4, 'House At Vinewood without swimming pool', 0, 0, 0, 400000, 0, 0, 1045.16, -642.94, 120.11, 0, 0, 0, 0, -1, 234.22, 1063.89, 1084.21, 0, 6, 1698, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1599, 4, 'House At Vinewood With Swimming Pool', 0, 0, 0, 550000, 0, 0, 897.93, -677.11, 116.89, 0, 0, 0, 0, -1, 226.3, 1114.37, 1080.99, 0, 5, 1699, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1600, 4, 'small house at vinewood', 0, 0, 0, 150000, 0, 0, 946.3, -710.69, 122.62, 0, 0, 0, 0, -1, 295.21, 1472.26, 1080.25, 0, 15, 1700, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1601, 4, 'house at vinewood', 0, 0, 0, 250000, 0, 0, 867.49, -717.58, 105.68, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 1701, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1602, 4, 'house at vinewood', 0, 0, 0, 250000, 0, 0, 847.99, -745.51, 94.97, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 1702, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1603, 4, 'House At Vinewood without swimming pool', 0, 0, 0, 400000, 500, 0, 891.14, -783.17, 101.31, 0, 0, 0, 0, -1, 234.22, 1063.89, 1084.21, 0, 6, 1703, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1604, 4, 'House At Vinewood without swimming pool', 0, 0, 0, 400000, 1, 0, 808.26, -759.38, 76.53, 0, 0, 0, 0, -1, 234.22, 1063.89, 1084.21, 0, 6, 1704, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1605, 4, 'house at vinewood', 0, 0, 0, 250000, 0, 0, 785.96, -828.58, 70.29, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 1705, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1606, 4, 'House At Vinewood With Swimming Pool', 0, 0, 0, 550000, 0, 0, 497.37, -1095.07, 82.36, 0, 0, 0, 0, -1, 226.3, 1114.37, 1080.99, 0, 5, 1706, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1607, 4, 'House at Vinewood', 0, 0, 0, 550000, 0, 0, 416.77, -1154.12, 76.68, 0, 0, 0, 0, -1, 226.3, 1114.37, 1080.99, 0, 5, 1707, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1608, 4, 'House At Vinewood without swimming pool', 0, 0, 0, 400000, 1000, 0, 352.32, -1198, 76.51, 0, 0, 0, 0, -1, 234.22, 1063.89, 1084.21, 0, 6, 1708, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1609, 4, 'house at vinewood', 0, 0, 0, 250000, 0, 0, 355.07, -1281.19, 53.7, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 1709, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1610, 4, 'small house at vinewood', 0, 0, 0, 150000, 0, 0, 228.05, -1405.49, 51.61, 0, 0, 0, 0, -1, 295.21, 1472.26, 1080.25, 0, 15, 1710, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1611, 4, 'House At Vinewood without swimming pool', 0, 0, 0, 400000, 0, 0, 470.76, -1163.56, 67.22, 0, 0, 0, 0, -1, 234.22, 1063.89, 1084.21, 0, 6, 1711, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1612, 4, 'small house at vinewood', 0, 0, 0, 150000, 0, 0, 558.76, -1161.09, 54.43, 0, 0, 0, 0, -1, 295.21, 1472.26, 1080.25, 0, 15, 1712, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1613, 4, 'house at vinewood', 0, 0, 0, 250000, 0, 0, 552.94, -1200.28, 44.83, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 1713, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1614, 4, 'small house at vinewood', 0, 0, 0, 150000, 0, 0, 432.03, -1253.96, 51.58, 0, 0, 0, 0, -1, 295.21, 1472.26, 1080.25, 0, 15, 1714, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1615, 4, 'House At Vinewood With Swimming Pool', 0, 0, 0, 550000, 0, 0, 612.17, -1085.92, 58.83, 0, 0, 0, 0, -1, 226.3, 1114.37, 1080.99, 0, 5, 1715, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1616, 4, 'House At Vinewood without swimming pool', 0, 0, 0, 400000, 0, 0, 559.13, -1076.41, 72.92, 0, 0, 0, 0, -1, 234.22, 1063.89, 1084.21, 0, 6, 1716, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1617, 4, 'small house at vinewood', 0, 0, 0, 150000, 5000, 0, 648.31, -1058.72, 52.58, 0, 0, 0, 0, -1, 295.21, 1472.26, 1080.25, 0, 15, 1717, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1618, 4, 'small house at vinewood', 0, 0, 0, 150000, 0, 0, 673.11, -1020.17, 55.76, 0, 0, 0, 0, -1, 295.21, 1472.26, 1080.25, 0, 15, 1718, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1619, 4, 'House At Vinewood With Swimming Pool', 0, 0, 0, 550000, 0, 0, 700.26, -1060.32, 49.42, 0, 0, 0, 0, -1, 226.3, 1114.37, 1080.99, 0, 5, 1719, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1620, 4, 'House At Vinewood without swimming pool', 0, 0, 0, 400000, 0, 0, 724.66, -999.36, 52.73, 0, 0, 0, 0, -1, 234.22, 1063.89, 1084.21, 0, 6, 1720, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1621, 4, 'small house at vinewood', 0, 0, 0, 150000, 0, 0, 923.9, -853.41, 93.46, 0, 0, 0, 0, -1, 295.21, 1472.26, 1080.25, 0, 15, 1721, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1622, 4, 'small house at vinewood', 0, 0, 0, 150000, 100, 0, 937.8, -848.74, 93.58, 0, 0, 0, 0, -1, 295.21, 1472.26, 1080.25, 0, 15, 1722, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1623, 4, 'House At Vinewood without swimming pool', 0, 0, 0, 400000, 0, 0, 910.39, -817.55, 103.13, 0, 0, 0, 0, -1, 234.22, 1063.89, 1084.21, 0, 6, 1723, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1624, 4, 'House At Vinewood without swimming pool', 0, 0, 0, 400000, 0, 0, 977.38, -771.71, 112.2, 0, 0, 0, 0, -1, 234.22, 1063.89, 1084.21, 0, 6, 1724, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1625, 4, 'small house at vinewood', 0, 0, 0, 150000, 0, 0, 1017.02, -763.36, 112.56, 0, 0, 0, 0, -1, 295.21, 1472.26, 1080.25, 0, 15, 1725, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1626, 4, 'small house at vinewood', 0, 0, 0, 150000, 0, 0, 1034.81, -813.18, 101.85, 0, 0, 0, 0, -1, 295.21, 1472.26, 1080.25, 0, 15, 1726, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1627, 4, 'House At Vinewood without swimming Pool', 0, 0, 0, 400000, 1500, 0, 989.74, -828.69, 95.47, 0, 0, 0, 0, -1, 234.22, 1063.89, 1084.21, 0, 6, 1727, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1628, 4, 'UFO House at vinewood', 0, 0, 0, 1000000, 0, 0, 1093.97, -807.13, 107.42, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 1728, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1629, 4, 'House At Vinewood without swimming pool', 0, 0, 0, 400000, 0, 0, 835.97, -894.86, 68.76, 0, 0, 0, 0, -1, 234.22, 1063.89, 1084.21, 0, 6, 1729, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1630, 4, 'small house at vinewood', 0, 0, 0, 150000, 0, 0, 827.82, -857.98, 70.33, 0, 0, 0, 0, -1, 295.21, 1472.26, 1080.25, 0, 15, 1730, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1631, 4, 'House At Vinewood without swimming Pool', 0, 0, 0, 400000, 0, 0, 1112.64, -742.11, 100.13, 0, 0, 0, 0, -1, 234.22, 1063.89, 1084.21, 0, 6, 1731, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1632, 4, 'apartment at the beach ls', 0, 0, 0, 100000, 0, 0, 168.14, -1768.4, 4.49, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1732, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1633, 4, 'Beach House', 0, 0, 0, 100000, 0, 0, 192.81, -1769.39, 4.33, 0, 0, 0, 0, -1, 261.06, 1284.29, 1080.25, 0, 4, 1733, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1634, 4, 'house at the beach', 0, 0, 0, 100000, 0, 0, 206.88, -1768.88, 4.37, 0, 0, 0, 0, -1, 261.06, 1284.29, 1080.25, 0, 4, 1734, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1635, 4, 'house at the beach', 0, 0, 0, 100000, 0, 0, 280.89, -1767.07, 4.55, 0, 0, 0, 0, -1, 261.06, 1284.29, 1080.25, 0, 4, 1735, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1636, 4, 'house at the beach', 0, 0, 0, 100000, 500, 0, 295.24, -1764.12, 4.87, 0, 0, 0, 0, -1, 261.06, 1284.29, 1080.25, 0, 4, 1736, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1637, 4, 'house at the beach', 0, 0, 0, 100000, 0, 0, 305.37, -1770.22, 4.54, 0, 0, 0, 0, -1, 261.06, 1284.29, 1080.25, 0, 4, 1737, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1638, 4, 'Beach House with Garage', 0, 0, 0, 400000, 0, 0, 315.88, -1769.43, 4.62, 0, 0, 0, 0, -1, 226.3, 1114.37, 1080.99, 0, 5, 1738, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1639, 4, 'apartment at the beach ls', 0, 0, 0, 100000, 0, 0, 902.92, -1815.45, 13.3, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1739, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1640, 4, 'apartment at the beach ls', 0, 0, 0, 100000, 1, 0, 905.04, -1815.69, 13.3, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1740, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1641, 4, 'apartment at the beach ls', 0, 0, 0, 100000, 500, 0, 908.59, -1816.07, 13.3, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1741, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1642, 4, 'apartment at the beach ls', 0, 0, 0, 100000, 0, 0, 910.78, -1816.31, 13.3, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1742, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1643, 4, 'apartment at the beach ls', 0, 0, 0, 100000, 0, 0, 914.56, -1816.73, 13.31, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1743, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1644, 4, 'apartment at the beach ls', 0, 0, 0, 100000, 0, 0, 916.72, -1816.97, 13.31, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1744, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1645, 4, 'apartment at the beach ls', 0, 0, 0, 100000, 0, 0, 920.34, -1817.37, 13.31, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1745, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1646, 4, 'apartment at the beach ls', 0, 0, 0, 100000, 0, 0, 922.53, -1817.62, 13.31, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1746, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1647, 4, 'apartment at the beach ls', 0, 0, 0, 100000, 0, 0, 926.28, -1818.04, 13.32, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1747, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1648, 4, 'apartment at the beach ls', 0, 0, 0, 100000, 0, 0, 928.38, -1818.28, 13.32, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1748, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1649, 4, 'apartment at the beach ls', 0, 0, 0, 100000, 0, 0, 931.92, -1818.69, 13.32, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1749, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1650, 4, 'apartment at the beach ls', 0, 0, 0, 100000, 0, 0, 934.05, -1818.93, 13.32, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1750, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1651, 4, 'apartment at the beach ls', 0, 0, 0, 100000, 0, 0, 961.13, -1823.96, 13.33, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1751, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1652, 4, 'apartment at the beach ls', 0, 0, 0, 100000, 0, 0, 963.25, -1824.51, 13.32, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1752, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1653, 4, 'apartment at the beach ls', 0, 0, 0, 100000, 0, 0, 966.74, -1825.36, 13.32, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1753, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1654, 4, 'apartment at the beach ls', 0, 0, 0, 100000, 0, 0, 968.93, -1825.9, 13.32, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1754, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1655, 4, 'apartment at the beach ls', 0, 0, 0, 100000, 0, 0, 972.5, -1826.77, 13.33, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1755, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1656, 4, 'apartment at the beach ls', 0, 0, 0, 100000, 0, 0, 974.56, -1827.28, 13.33, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1756, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1657, 4, 'apartment at the beach ls', 0, 0, 0, 100000, 0, 0, 978.14, -1828.16, 13.33, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1757, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1658, 4, 'apartment at the beach ls', 0, 0, 0, 100000, 0, 0, 980.19, -1828.67, 13.33, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1758, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1659, 4, 'apartment at the beach ls', 0, 0, 0, 100000, 20, 0, 983.92, -1829.58, 13.33, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1759, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1660, 4, 'apartment at the beach ls', 0, 0, 0, 100000, 1000, 0, 985.97, -1830.08, 13.33, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1760, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1661, 4, 'apartment at the beach ls', 0, 0, 0, 100000, 0, 0, 989.48, -1830.95, 13.34, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1761, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1662, 4, 'apartment at the beach ls', 0, 0, 0, 100000, 0, 0, 991.72, -1831.49, 13.34, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1762, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1663, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 1, 0, 2581.51, -969.3, 81.36, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 1763, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1664, 4, 'house near the beach', 0, 0, 0, 55000, 0, 0, 655.95, -1635.87, 15.86, 0, 0, 0, 0, -1, 261.06, 1284.29, 1080.25, 0, 4, 1764, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1665, 4, 'house near the beach', 0, 0, 0, 55000, 0, 0, 660.41, -1599.85, 15, 0, 0, 0, 0, -1, 261.06, 1284.29, 1080.25, 0, 4, 1765, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1666, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 0, 0, 2388.42, -1279.65, 25.13, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 1766, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1667, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 0, 0, 2387.85, -1328.54, 25.12, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 1767, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1668, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 0, 0, 2389.73, -1346.29, 25.08, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 1768, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1669, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 1, 0, 2383.53, -1366.2, 24.49, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 1769, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1670, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 5000, 0, 2288.22, -1104.66, 38.59, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 1770, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1671, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 0, 0, 2249.32, -1060.31, 55.97, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 1771, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1672, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 0, 0, 2259.52, -1019, 59.3, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 1772, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1673, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 0, 0, 2218.78, -1031.73, 60.26, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 1773, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1674, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 0, 0, 2208.02, -1026.56, 61.35, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 1774, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1675, 4, 'trailer LS', 0, 0, 0, 2000, 200, 0, 2154.11, -979.9, 63.29, 0, 0, 0, 0, -1, 244.41, 305.03, 999.15, 0, 1, 1775, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1676, 4, 'trailer LS', 0, 0, 0, 2000, 100, 0, 2142.69, -978.15, 61.38, 0, 0, 0, 0, -1, 244.41, 305.03, 999.15, 0, 1, 1776, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1677, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 0, 0, 2139.79, -1008.43, 61.99, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 1777, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1678, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 1000, 0, 2108.87, -1000.77, 60.51, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 1778, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1679, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 0, 0, 2089.52, -996.24, 53.06, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 1779, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1680, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 0, 0, 2073.48, -965.18, 49.39, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 1780, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1681, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 0, 0, 2045.18, -965.92, 44.55, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 1781, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1682, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 800, 0, 2049.21, -987.28, 44.98, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 1782, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1683, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 0, 0, 2044.66, -991.32, 43.23, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 1783, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1684, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 1, 0, 2015.59, -977.56, 36.95, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 1784, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1685, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 100, 0, 2007.36, -984.58, 34.46, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 1785, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1686, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 150, 0, 2000.2, -991.65, 32.13, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 1786, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1687, 4, 'trailer LS', 0, 0, 0, 2000, 200, 0, 2131.94, -974, 59.78, 0, 0, 0, 0, -1, 244.41, 305.03, 999.15, 0, 1, 1787, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1688, 4, 'trailer LS', 0, 0, 0, 2000, 0, 0, 2122.04, -970.34, 58.21, 0, 0, 0, 0, -1, 244.41, 305.03, 999.15, 0, 1, 1788, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1689, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 0, 0, 2051.26, -954.76, 48.03, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 1789, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1690, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 1, 0, 2278.66, -1077.38, 48.24, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 1790, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1691, 4, 'trailer LS', 0, 0, 0, 2000, 0, 0, 2355.77, -1058.81, 54.08, 0, 0, 0, 0, -1, 244.41, 305.03, 999.15, 0, 1, 1791, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1692, 4, 'trailer LS', 0, 0, 0, 2000, 0, 0, 2348.01, -1047.59, 53.85, 0, 0, 0, 0, -1, 244.41, 305.03, 999.15, 0, 1, 1792, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1693, 4, 'trailer LS', 0, 0, 0, 2000, 100, 0, 2350.99, -1039.79, 54.33, 0, 0, 0, 0, -1, 244.41, 305.03, 999.15, 0, 1, 1793, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1694, 4, 'trailer LS', 0, 0, 0, 2000, 0, 0, 2355.53, -1038.58, 54.33, 0, 0, 0, 0, -1, 244.41, 305.03, 999.15, 0, 1, 1794, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1695, 4, 'trailer LS', 0, 0, 0, 2000, 250, 0, 2370.25, -1034.55, 54.41, 0, 0, 0, 0, -1, 244.41, 305.03, 999.15, 0, 1, 1795, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1696, 4, 'trailer LS', 0, 0, 0, 2000, 5000, 0, 2362.67, -1046.43, 54.27, 0, 0, 0, 0, -1, 244.41, 305.03, 999.15, 0, 1, 1796, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1697, 4, 'trailer LS', 0, 0, 0, 2000, 0, 0, 2335.19, -1046.01, 52.55, 0, 0, 0, 0, -1, 244.41, 305.03, 999.15, 0, 1, 1797, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1698, 4, 'trailer LS', 0, 0, 0, 2000, 0, 0, 2325.48, -1060.97, 52.47, 0, 0, 0, 0, -1, 244.41, 305.03, 999.15, 0, 1, 1798, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1699, 4, 'trailer LS', 0, 0, 0, 2000, 0, 0, 2330.22, -1060.9, 52.47, 0, 0, 0, 0, -1, 244.41, 305.03, 999.15, 0, 1, 1799, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1700, 4, 'trailer LS', 0, 0, 0, 2000, 0, 0, 2297.73, -1053.08, 49.93, 0, 0, 0, 0, -1, 244.41, 305.03, 999.15, 0, 1, 1800, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1701, 4, 'trailer LS', 0, 0, 0, 2000, 0, 0, 2284.19, -1046.09, 49.89, 0, 0, 0, 0, -1, 244.41, 305.03, 999.15, 0, 1, 1801, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1702, 4, 'trailer LS', 0, 0, 0, 2000, 15, 0, 2319.77, -1053.31, 52.46, 0, 0, 0, 0, -1, 244.41, 305.03, 999.15, 0, 1, 1802, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1703, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 0, 0, 2462.41, -1011.12, 60.11, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 1803, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1704, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 350, 0, 2457.77, -1054.54, 59.96, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 1804, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1705, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 0, 0, 2491.37, -1012.27, 65.4, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 1805, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1706, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 0, 0, 2479.67, -1064.01, 67, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 1806, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1707, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 0, 0, 2512.8, -1027.16, 70.08, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 1807, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1708, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 0, 0, 2526.09, -1060.67, 69.97, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 1808, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1709, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 0, 0, 2534.48, -1063.48, 69.56, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 1809, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1710, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 0, 0, 2526.9, -1033.52, 69.58, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 1810, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1711, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 0, 0, 2470.59, -1105.32, 44.49, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 1811, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1712, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 1000, 0, 2457.08, -1102.5, 43.87, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 1812, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1713, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 0, 0, 2438.62, -1105.78, 43.08, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 1813, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1714, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 0, 0, 2407.91, -1106.97, 40.29, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 1814, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1715, 4, 'LS Project', 0, 0, 0, 4000, 0, 0, 2751.49, -1962.88, 13.54, 0, 0, 0, 0, -1, 244.41, 305.03, 999.15, 0, 1, 1815, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1716, 4, 'LS Project', 0, 0, 0, 4000, 0, 0, 2787.07, -1952.57, 13.54, 0, 0, 0, 0, -1, 244.41, 305.03, 999.15, 0, 1, 1816, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1717, 4, 'LS Project', 0, 0, 0, 4000, 0, 0, 2751.5, -1936.56, 13.54, 0, 0, 0, 0, -1, 244.41, 305.03, 999.15, 0, 1, 1817, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1718, 4, 'LS Project', 0, 0, 0, 4000, 0, 0, 2787.07, -1926.17, 13.54, 0, 0, 0, 0, -1, 244.41, 305.03, 999.15, 0, 1, 1818, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1719, 4, 'LS Project', 0, 0, 0, 4000, 0, 0, 2736.65, -1926.18, 13.54, 0, 0, 0, 0, -1, 244.41, 305.03, 999.15, 0, 1, 1819, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1720, 4, 'LS Project', 0, 0, 0, 4000, 0, 0, 2736.65, -1952.58, 13.54, 0, 0, 0, 0, -1, 244.41, 305.03, 999.15, 0, 1, 1820, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1721, 4, 'LS Project', 0, 0, 0, 4000, 0, 0, 2801.92, -1936.32, 13.54, 0, 0, 0, 0, -1, 244.41, 305.03, 999.15, 0, 1, 1821, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1722, 4, 'LS Project', 0, 0, 0, 4000, 0, 0, 2801.92, -1962.9, 13.54, 0, 0, 0, 0, -1, 244.41, 305.03, 999.15, 0, 1, 1822, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1723, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 0, 0, 2696.39, -1990.36, 14.22, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 1823, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1724, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 0, 0, 2672.71, -1989.47, 14.32, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 1824, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1725, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 0, 0, 2695.24, -2020.55, 14.02, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 1825, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1726, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 0, 0, 2673.27, -2020.29, 14.17, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 1826, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1727, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 0, 0, 2650.7, -2021.8, 14.18, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 1827, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1728, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 100, 0, 2635.61, -2012.93, 14.14, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 1828, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1729, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 1000, 0, 2637.01, -1991.77, 14.32, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 1829, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1730, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 0, 0, 2652.78, -1989.43, 14, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 1830, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1731, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 0, 0, 2486.36, -2021.55, 14, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 1831, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1732, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 0, 0, 2483.52, -1995.34, 13.83, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 1832, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1733, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 0, 0, 2465.22, -2020.79, 14.12, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 1833, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1734, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 0, 0, 2465.1, -1995.75, 14.02, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 1834, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1736, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 0, 0, 2508.32, -1998.36, 13.9, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 1836, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1737, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 4000, 0, 2507.84, -2021.05, 14.21, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 1837, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1738, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 0, 0, 2522.75, -2019, 14.07, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 1838, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1739, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 0, 0, 2524.44, -1998.39, 14.11, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 1839, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1740, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 0, 0, 1667.53, -2106.94, 14.07, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 1840, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1741, 4, 'house at the beach', 0, 0, 0, 100000, 0, 0, 192.78, -1747.76, 4.3, 0, 0, 0, 0, -1, 261.06, 1284.29, 1080.25, 0, 4, 1841, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1742, 4, 'small house at vinewood', 0, 0, 0, 150000, 2000, 0, 142.5, -1470.27, 25.21, 0, 0, 0, 0, -1, 295.21, 1472.26, 1080.25, 0, 15, 1842, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1743, 4, 'House At Vinewood without swimming pool', 0, 0, 0, 400000, 0, 0, 161.45, -1455.95, 32.84, 0, 0, 0, 0, -1, 234.22, 1063.89, 1084.21, 0, 6, 1843, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1744, 4, 'House Near Vinewood', 0, 0, 0, 150000, 0, 0, 1059.16, -1105.14, 28.05, 0, 0, 0, 0, -1, 447, 1397.09, 1084.3, 0, 2, 1844, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1745, 4, 'House Near Vinewood', 0, 0, 0, 150000, 0, 0, 1103.41, -1092.54, 28.47, 0, 0, 0, 0, -1, 447, 1397.09, 1084.3, 0, 2, 1845, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1746, 4, 'House Near Vinewood', 0, 0, 0, 150000, 0, 0, 1103.4, -1069.59, 31.89, 0, 0, 0, 0, -1, 447, 1397.09, 1084.3, 0, 2, 1846, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1747, 4, 'House Near Vinewood', 0, 0, 0, 150000, 5000, 0, 1142.12, -1092.77, 28.19, 0, 0, 0, 0, -1, 447, 1397.09, 1084.3, 0, 2, 1847, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1748, 4, 'House Near Vinewood', 0, 0, 0, 150000, 0, 0, 1183.47, -1098.93, 28.26, 0, 0, 0, 0, -1, 447, 1397.09, 1084.3, 0, 2, 1848, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1749, 4, 'House Near Vinewood', 0, 0, 0, 150000, 0, 0, 1183.47, -1076.04, 31.68, 0, 0, 0, 0, -1, 447, 1397.09, 1084.3, 0, 2, 1849, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1750, 4, 'House Near Vinewood', 0, 0, 0, 150000, 5000, 0, 1141.81, -1069.99, 31.76, 0, 0, 0, 0, -1, 447, 1397.09, 1084.3, 0, 2, 1850, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1751, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 0, 0, 2582.89, -952.93, 81.39, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 1851, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1752, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 0, 0, 2552.05, -958.43, 82.61, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 1852, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1753, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 0, 0, 2517.86, -965.39, 82.33, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 1853, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1754, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 0, 0, 2499.51, -947, 82.47, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 1854, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1755, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 0, 0, 2492.1, -965.64, 82.54, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 1855, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1756, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 0, 0, 2472.35, -962.04, 80.53, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 1856, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1757, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 0, 0, 2454.18, -964.96, 80.07, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 1857, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1758, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 0, 0, 2459.37, -947.7, 80.08, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 1858, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1759, 4, 'house at the beach', 0, 0, 0, 100000, 500, 0, 992.68, -1817.65, 13.89, 0, 0, 0, 0, -1, 261.06, 1284.29, 1080.25, 0, 4, 1859, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1760, 4, 'house at the beach', 0, 0, 0, 100000, 5000, 0, 980.88, -1814.81, 13.89, 0, 0, 0, 0, -1, 261.06, 1284.29, 1080.25, 0, 4, 1860, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1761, 4, 'house at the beach', 0, 0, 0, 100000, 500, 0, 969.6, -1812.02, 13.88, 0, 0, 0, 0, -1, 261.06, 1284.29, 1080.25, 0, 4, 1861, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1762, 4, 'house at the beach', 0, 0, 0, 100000, 0, 0, 958.07, -1809.17, 13.88, 0, 0, 0, 0, -1, 261.06, 1284.29, 1080.25, 0, 4, 1862, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1763, 4, 'house at the beach', 0, 0, 0, 100000, 1000, 0, 933.65, -1805.2, 13.84, 0, 0, 0, 0, -1, 261.06, 1284.29, 1080.25, 0, 4, 1863, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1764, 4, 'house at the beach', 0, 0, 0, 100000, 900, 0, 921.97, -1803.89, 13.84, 0, 0, 0, 0, -1, 261.06, 1284.29, 1080.25, 0, 4, 1864, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1765, 4, 'house at the beach', 0, 0, 0, 100000, 0, 0, 910.27, -1802.69, 13.8, 0, 0, 0, 0, -1, 261.06, 1284.29, 1080.25, 0, 4, 1865, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1766, 4, 'house at the beach', 0, 0, 0, 100000, 0, 0, 883.24, -1800.39, 13.8, 0, 0, 0, 0, -1, 261.06, 1284.29, 1080.25, 0, 4, 1866, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1767, 4, 'house at the beach', 0, 0, 0, 100000, 0, 0, 866.66, -1798.94, 13.81, 0, 0, 0, 0, -1, 261.06, 1284.29, 1080.25, 0, 4, 1867, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1768, 4, 'Little House at Dillimore', 0, 0, 0, 60000, 0, 0, 795.25, -506.15, 18.01, 0, 0, 0, 0, -1, 2282.9, -1139.99, 1050.89, 0, 11, 1868, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1769, 4, 'Little House at Dillimore', 0, 0, 0, 50000, 0, 0, 818.26, -509.32, 18.01, 0, 0, 0, 0, -1, 261.06, 1284.29, 1080.25, 0, 4, 1869, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1770, 4, 'House at Dillimore', 0, 0, 0, 85000, 0, 0, 768.34, -503.48, 18.01, 0, 0, 0, 0, -1, 327.91, 1477.79, 1084.43, 0, 15, 1870, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1771, 4, 'House at Dillimore', 0, 0, 0, 100000, 0, 0, 743.24, -509.32, 18.01, 0, 0, 0, 0, -1, 327.91, 1477.79, 1084.43, 0, 15, 1871, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1772, 4, 'House at Dillimore', 0, 0, 0, 100000, 150, 0, 745.13, -556.78, 18.01, 0, 0, 0, 0, -1, 327.91, 1477.79, 1084.43, 0, 15, 1872, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1773, 4, 'House at Dillimore', 0, 0, 0, 100000, 0, 0, 766.59, -556.78, 18.01, 0, 0, 0, 0, -1, 327.91, 1477.79, 1084.43, 0, 15, 1873, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1774, 4, 'Little House at Dillimore', 0, 0, 0, 70000, 0, 0, 759.29, -592.03, 18.01, 0, 0, 0, 0, -1, 261.06, 1284.29, 1080.25, 0, 4, 1874, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1775, 4, 'Little House at Dillimore', 0, 0, 0, 70000, 0, 0, 745.67, -591.14, 18.01, 0, 0, 0, 0, -1, 261.06, 1284.29, 1080.25, 0, 4, 1875, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1776, 4, 'Trailer at Blue Berry', 0, 0, 0, 20000, 0, 0, 261.96, -269.98, 1.64, 0, 0, 0, 0, -1, 244.41, 305.03, 999.15, 0, 1, 1876, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1777, 4, 'Trailer at Blue Berry', 0, 0, 0, 20000, 0, 0, 264.51, -288.42, 1.73, 0, 0, 0, 0, -1, 244.41, 305.03, 999.15, 0, 1, 1877, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1778, 4, 'Trailer at Blue Berry', 0, 0, 0, 20000, 0, 0, 260.6, -302.99, 1.92, 0, 0, 0, 0, -1, 244.41, 305.03, 999.15, 0, 1, 1878, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1779, 4, 'Trailer at Blue Berry', 0, 0, 0, 20000, 0, 0, 253.25, -289.94, 1.7, 0, 0, 0, 0, -1, 244.41, 305.03, 999.15, 0, 1, 1879, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1780, 4, 'Trailer at Blue Berry', 0, 0, 0, 20000, 0, 0, 255.91, -278.5, 1.66, 0, 0, 0, 0, -1, 244.41, 305.03, 999.15, 0, 1, 1880, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1781, 4, 'Trailer at Blue Berry', 0, 0, 0, 20000, 0, 0, 238.92, -286.29, 1.63, 0, 0, 0, 0, -1, 244.41, 305.03, 999.15, 0, 1, 1881, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1782, 4, 'Trailer at Blue Berry', 0, 0, 0, 20000, 0, 0, 235.13, -309.46, 1.71, 0, 0, 0, 0, -1, 244.41, 305.03, 999.15, 0, 1, 1882, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1783, 4, 'Trailer at Blue Berry', 0, 0, 0, 20000, 0, 0, 226.55, -302.81, 1.93, 0, 0, 0, 0, -1, 244.41, 305.03, 999.15, 0, 1, 1883, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1784, 4, 'Trailer at Blue Berry', 0, 0, 0, 20000, 0, 0, 264.51, -283.67, 1.73, 0, 0, 0, 0, -1, 244.41, 305.03, 999.15, 0, 1, 1884, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1785, 4, 'Trailer at Blue Berry', 0, 0, 0, 20000, 0, 0, 253.53, -274.55, 1.66, 0, 0, 0, 0, -1, 244.41, 305.03, 999.15, 0, 1, 1885, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1786, 4, 'Trailer at Blue Berry', 0, 0, 0, 20000, 0, 0, 242.01, -298.6, 1.69, 0, 0, 0, 0, -1, 244.41, 305.03, 999.15, 0, 1, 1886, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1787, 4, 'Apartment at Blue Berry', 0, 0, 0, 80000, 0, 0, 178.28, -120.23, 1.55, 0, 0, 0, 0, -1, 261.06, 1284.29, 1080.25, 0, 4, 1887, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1788, 4, 'Apartment at Blue Berry', 0, 0, 0, 80000, 0, 0, 189.31, -120.23, 1.55, 0, 0, 0, 0, -1, 261.06, 1284.29, 1080.25, 0, 4, 1888, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1789, 4, 'Apartment at Blue Berry', 0, 0, 0, 80000, 0, 0, 166.3, -120.23, 1.55, 0, 0, 0, 0, -1, 261.06, 1284.29, 1080.25, 0, 4, 1889, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1790, 4, 'Apartment at Blue Berry', 0, 0, 0, 80000, 0, 0, 201.46, -94.97, 1.55, 0, 0, 0, 0, -1, 261.06, 1284.29, 1080.25, 0, 4, 1890, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1791, 4, 'Apartment at Blue Berry', 0, 0, 0, 80000, 0, 0, 160.63, -102.57, 4.9, 0, 0, 0, 0, -1, 261.06, 1284.29, 1080.25, 0, 4, 1891, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1792, 4, 'Apartment at Blue Berry', 0, 0, 0, 80000, 0, 0, 160.63, -112.59, 4.9, 0, 0, 0, 0, -1, 261.06, 1284.29, 1080.25, 0, 4, 1892, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1793, 4, 'Apartment at Blue Berry', 0, 0, 0, 80000, 0, 0, 166.19, -118.23, 4.9, 0, 0, 0, 0, -1, 261.06, 1284.29, 1080.25, 0, 4, 1893, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1794, 4, 'Apartment at Blue Berry', 0, 0, 0, 80000, 0, 0, 178.26, -118.23, 4.9, 0, 0, 0, 0, -1, 261.06, 1284.29, 1080.25, 0, 4, 1894, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1795, 4, 'Apartment at Blue Berry', 0, 0, 0, 80000, 0, 0, 166.25, -96.97, 4.9, 0, 0, 0, 0, -1, 261.06, 1284.29, 1080.25, 0, 4, 1895, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1796, 4, 'Apartment at Blue Berry', 0, 0, 0, 80000, 0, 0, 178.37, -96.97, 4.9, 0, 0, 0, 0, -1, 261.06, 1284.29, 1080.25, 0, 4, 1896, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1797, 4, 'Apartment at Blue Berry', 0, 0, 0, 80000, 0, 0, 166.39, -94.97, 1.55, 0, 0, 0, 0, -1, 261.06, 1284.29, 1080.25, 0, 4, 1897, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1798, 4, 'Apartment at Blue Berry', 0, 0, 0, 80000, 0, 0, 207.07, -112.39, 4.9, 0, 0, 0, 0, -1, 261.06, 1284.29, 1080.25, 0, 4, 1898, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1799, 4, 'Apartment at Blue Berry', 0, 0, 0, 80000, 0, 0, 201.41, -96.97, 4.9, 0, 0, 0, 0, -1, 261.06, 1284.29, 1080.25, 0, 4, 1899, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1800, 4, 'Apartment at Blue Berry', 0, 0, 0, 80000, 0, 0, 189.41, -96.97, 4.9, 0, 0, 0, 0, -1, 261.06, 1284.29, 1080.25, 0, 4, 1900, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1801, 4, 'Apartment at Blue Berry', 0, 0, 0, 80000, 0, 0, 201.37, -118.23, 4.9, 0, 0, 0, 0, -1, 261.06, 1284.29, 1080.25, 0, 4, 1901, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1802, 4, 'Apartment at Blue Berry', 0, 0, 0, 80000, 0, 0, 201.45, -120.23, 1.55, 0, 0, 0, 0, -1, 261.06, 1284.29, 1080.25, 0, 4, 1902, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1803, 4, 'Apartment at Blue Berry', 0, 0, 0, 80000, 0, 0, 158.64, -112.62, 1.56, 0, 0, 0, 0, -1, 261.06, 1284.29, 1080.25, 0, 4, 1903, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1804, 4, 'Apartment at Blue Berry', 0, 0, 0, 80000, 0, 0, 209.08, -112.6, 1.55, 0, 0, 0, 0, -1, 261.06, 1284.29, 1080.25, 0, 4, 1904, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1805, 4, 'House at Blue Berry', 0, 0, 0, 110000, 0, 0, 252.88, -92.42, 3.54, 0, 0, 0, 0, -1, 2282.9, -1139.99, 1050.89, 0, 11, 1905, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1806, 4, 'House at Blue Berry', 0, 0, 0, 110000, 500, 0, 252.89, -121.31, 3.54, 0, 0, 0, 0, -1, 2282.9, -1139.99, 1050.89, 0, 11, 1906, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1807, 4, 'House at Blue Berry', 0, 0, 0, 130000, 0, 0, 267.69, -54.54, 2.78, 0, 0, 0, 0, -1, 2282.9, -1139.99, 1050.89, 0, 11, 1907, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1808, 4, 'House at Blue Berry', 0, 0, 0, 100000, 0, 0, 295.07, -54.55, 2.78, 0, 0, 0, 0, -1, 2282.9, -1139.99, 1050.89, 0, 11, 1908, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1809, 4, 'House at Blue Berry', 0, 0, 0, 100000, 0, 0, 312.72, -92.34, 3.54, 0, 0, 0, 0, -1, 2282.9, -1139.99, 1050.89, 0, 11, 1909, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1810, 4, 'House at Blue Berry', 0, 0, 0, 100000, 0, 0, 312.72, -121.25, 3.54, 0, 0, 0, 0, -1, 2282.9, -1139.99, 1050.89, 0, 11, 1910, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1811, 4, 'Small House near Blue Berry', 0, 0, 0, 40000, 0, 0, 342.63, 62.72, 3.86, 0, 0, 0, 0, -1, 260.77, 1237.26, 1084.25, 0, 9, 1911, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1812, 4, 'Small House near Blue Berry', 0, 0, 0, 60000, 0, 0, 317.74, 54.61, 3.38, 0, 0, 0, 0, -1, 260.77, 1237.26, 1084.25, 0, 9, 1912, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1813, 4, 'Small House near Blue Berry', 0, 0, 0, 60000, 0, 0, 309.11, 44.42, 3.09, 0, 0, 0, 0, -1, 260.77, 1237.26, 1084.25, 0, 9, 1913, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1814, 4, 'Small House near Blue Berry', 0, 0, 0, 60000, 0, 0, 286.06, 41.15, 2.55, 0, 0, 0, 0, -1, 260.77, 1237.26, 1084.25, 0, 9, 1914, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1815, 4, 'Small House near Blue Berry', 0, 0, 0, 60000, 0, 0, 316.56, 18.27, 4.52, 0, 0, 0, 0, -1, 260.77, 1237.26, 1084.25, 0, 9, 1915, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1816, 4, 'Small House near Blue Berry', 0, 0, 0, 60000, 0, 0, 340.2, 33.45, 6.41, 0, 0, 0, 0, -1, 260.77, 1237.26, 1084.25, 0, 9, 1916, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1817, 4, 'House At Palomino Creek', 0, 0, 0, 60000, 0, 0, 2323.84, 162.27, 28.44, 0, 0, 0, 0, -1, 2282.9, -1139.99, 1050.89, 0, 11, 1917, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1818, 4, 'House At Palomino Creek', 0, 0, 0, 100000, 0, 0, 2364, 187.28, 28.44, 0, 0, 0, 0, -1, 327.91, 1477.79, 1084.43, 0, 15, 1918, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1819, 4, 'House At Palomino Creek', 0, 0, 0, 100000, 0, 0, 2364, 166.09, 28.44, 0, 0, 0, 0, -1, 327.91, 1477.79, 1084.43, 0, 15, 1919, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1820, 4, 'House At Palomino Creek', 0, 0, 0, 100000, 1, 0, 2323.84, 191.22, 28.44, 0, 0, 0, 0, -1, 327.91, 1477.79, 1084.43, 0, 15, 1920, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1821, 4, 'House At Palomino Creek', 0, 0, 0, 100000, 1000, 0, 2323.84, 136.42, 28.44, 0, 0, 0, 0, -1, 327.91, 1477.79, 1084.43, 0, 15, 1921, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1822, 4, 'House At Palomino Creek', 0, 0, 0, 60000, 1, 0, 2323.84, 116.14, 28.44, 0, 0, 0, 0, -1, 261.06, 1284.29, 1080.25, 0, 4, 1922, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1823, 4, 'House At Palomino Creek', 0, 0, 0, 60000, 0, 0, 2364, 116.13, 28.44, 0, 0, 0, 0, -1, 261.06, 1284.29, 1080.25, 0, 4, 1923, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1824, 4, 'House At Palomino Creek', 0, 0, 0, 60000, 0, 0, 2373.84, 71.08, 28.44, 0, 0, 0, 0, -1, 261.06, 1284.29, 1080.25, 0, 4, 1924, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1825, 4, 'House At Palomino Creek', 0, 0, 0, 60000, 0, 0, 2373.84, 42.28, 28.44, 0, 0, 0, 0, -1, 261.06, 1284.29, 1080.25, 0, 4, 1925, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1826, 4, 'House At Palomino Creek', 0, 0, 0, 60000, 0, 0, 2373.84, 21.98, 28.44, 0, 0, 0, 0, -1, 261.06, 1284.29, 1080.25, 0, 4, 1926, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1827, 4, 'House At Palomino Creek', 0, 0, 0, 60000, 0, 0, 2373.84, -8.65, 28.44, 0, 0, 0, 0, -1, 261.06, 1284.29, 1080.25, 0, 4, 1927, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1828, 4, 'House At Palomino Creek', 0, 0, 0, 60000, 0, 0, 2367.38, -49.13, 28.15, 0, 0, 0, 0, -1, 261.06, 1284.29, 1080.25, 0, 4, 1928, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1829, 4, 'House At Palomino Creek', 0, 0, 0, 100000, 0, 0, 2392.29, -54.96, 28.15, 0, 0, 0, 0, -1, 327.91, 1477.79, 1084.43, 0, 15, 1929, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1830, 4, 'House At Palomino Creek', 0, 0, 0, 100000, 0, 0, 2415.57, -5.7, 27.68, 0, 0, 0, 0, -1, 327.91, 1477.79, 1084.43, 0, 15, 1930, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1831, 4, 'House At Palomino Creek', 0, 0, 0, 60000, 0, 0, 2438.78, -54.96, 28.15, 0, 0, 0, 0, -1, 260.77, 1237.26, 1084.25, 0, 9, 1931, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1832, 4, 'House At Palomino Creek', 0, 0, 0, 60000, 0, 0, 2442.86, -4.04, 27.68, 0, 0, 0, 0, -1, 260.77, 1237.26, 1084.25, 0, 9, 1932, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1833, 4, 'House At Palomino Creek', 0, 0, 0, 60000, 0, 0, 2488.38, 11.76, 28.44, 0, 0, 0, 0, -1, 260.77, 1237.26, 1084.25, 0, 9, 1933, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1834, 4, 'House At Palomino Creek', 0, 0, 0, 60000, 0, 0, 2484.49, -28.39, 28.44, 0, 0, 0, 0, -1, 260.77, 1237.26, 1084.25, 0, 9, 1934, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1835, 4, 'House At Palomino Creek', 0, 0, 0, 85000, 1000, 0, 2513.28, -28.4, 28.44, 0, 0, 0, 0, -1, 260.77, 1237.26, 1084.25, 0, 9, 1935, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1836, 4, 'House At Palomino Creek', 0, 0, 0, 85000, 1000, 0, 2417.01, 17.88, 27.68, 0, 0, 0, 0, -1, 260.77, 1237.26, 1084.25, 0, 9, 1936, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1837, 4, 'House At Palomino Creek', 0, 0, 0, 150000, 0, 0, 2549.23, 25.14, 27.67, 0, 0, 0, 0, -1, 327.91, 1477.79, 1084.43, 0, 15, 1937, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1838, 4, 'House At Palomino Creek', 0, 0, 0, 150000, 0, 0, 2551.22, -5.51, 27.67, 0, 0, 0, 0, -1, 327.91, 1477.79, 1084.43, 0, 15, 1938, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1839, 4, 'House At Palomino Creek', 0, 0, 0, 110000, 0, 0, 2551.22, 57.14, 27.67, 0, 0, 0, 0, -1, 327.91, 1477.79, 1084.43, 0, 15, 1939, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1840, 4, 'House At Palomino Creek', 0, 0, 0, 110000, 0, 0, 2557.01, 87.89, 27.67, 0, 0, 0, 0, -1, 327.91, 1477.79, 1084.43, 0, 15, 1940, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1841, 4, 'House At Palomino Creek', 0, 0, 0, 110000, 5000, 0, 2536.24, 128.99, 27.68, 0, 0, 0, 0, -1, 327.91, 1477.79, 1084.43, 0, 15, 1941, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1842, 4, 'House At Palomino Creek', 0, 0, 0, 110000, 0, 0, 2518.44, 128.99, 27.68, 0, 0, 0, 0, -1, 327.91, 1477.79, 1084.43, 0, 15, 1942, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1843, 4, 'House At Palomino Creek', 0, 0, 0, 90000, 0, 0, 2514.05, 94.39, 27.68, 0, 0, 0, 0, -1, 260.77, 1237.26, 1084.25, 0, 9, 1943, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1844, 4, 'House At Palomino Creek', 0, 0, 0, 150000, 0, 0, 2480.62, 126.99, 27.67, 0, 0, 0, 0, -1, 327.91, 1477.79, 1084.43, 0, 15, 1944, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1845, 4, 'House At Palomino Creek', 0, 0, 0, 150000, 500, 0, 2462.76, 134.78, 27.68, 0, 0, 0, 0, -1, 327.91, 1477.79, 1084.43, 0, 15, 1945, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1846, 4, 'House At Palomino Creek', 0, 0, 0, 150000, 0, 0, 2443.84, 92.26, 28.44, 0, 0, 0, 0, -1, 327.91, 1477.79, 1084.43, 0, 15, 1946, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1847, 4, 'House At Palomino Creek', 0, 0, 0, 80000, 5000, 0, 2481.22, 64.37, 27.68, 0, 0, 0, 0, -1, 260.77, 1237.26, 1084.25, 0, 9, 1947, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1848, 4, 'House At Palomino Creek', 0, 0, 0, 70000, 0, 0, 2479.34, 94.39, 27.68, 0, 0, 0, 0, -1, 260.77, 1237.26, 1084.25, 0, 9, 1948, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1849, 4, 'House At Palomino Creek', 0, 0, 0, 125000, 0, 0, 2439.56, 24.5, 27.68, 0, 0, 0, 0, -1, 327.91, 1477.79, 1084.43, 0, 15, 1949, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1850, 4, 'House At Palomino Creek', 0, 0, 0, 90000, 1, 0, 2448.42, -11.02, 27.68, 0, 0, 0, 0, -1, 260.77, 1237.26, 1084.25, 0, 9, 1950, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1851, 4, 'House At Palomino Creek', 0, 0, 0, 250000, 0, 0, 2415.44, -52.28, 28.15, 0, 0, 0, 0, -1, 261.06, 1284.29, 1080.25, 0, 4, 1951, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1852, 4, 'House At Palomino Creek', 0, 0, 0, 60000, 0, 0, 2398.34, 111.76, 28.44, 0, 0, 0, 0, -1, 261.06, 1284.29, 1080.25, 0, 4, 1952, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1853, 4, 'House At Palomino Creek', 0, 0, 0, 60000, 0, 0, 2269.5, 111.76, 28.44, 0, 0, 0, 0, -1, 261.06, 1284.29, 1080.25, 0, 4, 1953, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1854, 4, 'House At Palomino Creek', 0, 0, 0, 60000, 0, 0, 2249.3, 111.76, 28.44, 0, 0, 0, 0, -1, 261.06, 1284.29, 1080.25, 0, 4, 1954, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1855, 4, 'House At Palomino Creek', 0, 0, 0, 95000, 0, 0, 2203.84, 106.15, 28.44, 0, 0, 0, 0, -1, 260.77, 1237.26, 1084.25, 0, 9, 1955, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1856, 4, 'House At Palomino Creek', 0, 0, 0, 120000, 0, 0, 2203.84, 62.28, 28.44, 0, 0, 0, 0, -1, 327.91, 1477.79, 1084.43, 0, 15, 1956, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1857, 4, 'House At Palomino Creek', 0, 0, 0, 120000, 0, 0, 2270.49, -7.5, 28.15, 0, 0, 0, 0, -1, 327.91, 1477.79, 1084.43, 0, 15, 1957, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1858, 4, 'House At Palomino Creek', 0, 0, 0, 190000, 0, 0, 2245.52, -1.66, 28.15, 0, 0, 0, 0, -1, 327.91, 1477.79, 1084.43, 0, 15, 1958, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1859, 4, 'House At Palomino Creek', 0, 0, 0, 250000, 0, 0, 2199.95, -37.35, 28.15, 0, 0, 0, 0, -1, 327.91, 1477.79, 1084.43, 0, 15, 1959, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1860, 4, 'House At Palomino Creek', 0, 0, 0, 220000, 0, 0, 2197.27, -60.67, 28.15, 0, 0, 0, 0, -1, 327.91, 1477.79, 1084.43, 0, 15, 1960, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1861, 4, 'House At Palomino Creek', 0, 0, 0, 250000, 0, 0, 2203.1, -89.22, 28.15, 0, 0, 0, 0, -1, 327.91, 1477.79, 1084.43, 0, 15, 1961, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1862, 4, 'House At Palomino Creek', 0, 0, 0, 220000, 0, 0, 2245.53, -122.29, 28.15, 0, 0, 0, 0, -1, 327.91, 1477.79, 1084.43, 0, 15, 1962, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1863, 4, 'House At Palomino Creek', 0, 0, 0, 220000, 0, 0, 2272.45, -119.14, 28.15, 0, 0, 0, 0, -1, 327.91, 1477.79, 1084.43, 0, 15, 1963, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1864, 4, 'House At Palomino Creek', 0, 0, 0, 110000, 0, 0, 2293.74, -124.96, 28.15, 0, 0, 0, 0, -1, 260.77, 1237.26, 1084.25, 0, 9, 1964, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1865, 4, 'House At Palomino Creek', 0, 0, 0, 110000, 0, 0, 2322.25, -124.96, 28.15, 0, 0, 0, 0, -1, 260.77, 1237.26, 1084.25, 0, 9, 1965, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1866, 4, 'House At Palomino Creek', 0, 0, 0, 110000, 0, 0, 2285.84, 161.77, 28.44, 0, 0, 0, 0, -1, 260.77, 1237.26, 1084.25, 0, 9, 1966, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1867, 4, 'House At Palomino Creek', 0, 0, 0, 110000, 0, 0, 2266.49, 168.34, 28.15, 0, 0, 0, 0, -1, 260.77, 1237.26, 1084.25, 0, 9, 1967, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1868, 4, 'House At Palomino Creek', 0, 0, 0, 110000, 0, 0, 2236.53, 168.3, 28.15, 0, 0, 0, 0, -1, 260.77, 1237.26, 1084.25, 0, 9, 1968, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1869, 4, 'House At Palomino Creek', 0, 0, 0, 110000, 0, 0, 2413.54, 61.76, 28.44, 0, 0, 0, 0, -1, 260.77, 1237.26, 1084.25, 0, 9, 1969, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1870, 4, 'House At Palomino Creek', 0, 0, 0, 120000, 0, 0, 2443.41, 61.76, 28.44, 0, 0, 0, 0, -1, 260.77, 1237.26, 1084.25, 0, 9, 1970, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1871, 4, 'House At Palomino Creek', 0, 0, 0, 90000, 1, 0, 2509.5, 11.76, 28.44, 0, 0, 0, 0, -1, 260.77, 1237.26, 1084.25, 0, 9, 1971, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1872, 4, 'House At Palomino Creek', 0, 0, 0, 125000, 0, 0, 2511.69, 57.22, 27.68, 0, 0, 0, 0, -1, 2282.9, -1139.99, 1050.89, 0, 11, 1972, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1873, 4, 'Trailer at Montgomery', 0, 0, 0, 40000, 0, 0, 1283.31, 158.37, 20.79, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 1973, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1874, 4, 'Trailer at Montgomery', 0, 0, 0, 40000, 0, 0, 1295.41, 174.55, 20.91, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 1974, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1875, 4, 'Trailer at Montgomery', 0, 0, 0, 40000, 5000, 0, 1294.51, 157.65, 20.58, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 1975, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1876, 4, 'Trailer at Montgomery', 0, 0, 0, 30000, 0, 0, 1299.14, 140.34, 20.54, 0, 0, 0, 0, -1, 244.41, 305.03, 999.15, 0, 1, 1976, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1877, 4, 'Trailer at Montgomery', 0, 0, 0, 40000, 0, 0, 1303.61, 186.1, 20.54, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 1977, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1878, 4, 'Trailer at Montgomery', 0, 0, 0, 40000, 0, 0, 1300.44, 193.27, 20.52, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 1978, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1879, 4, 'Trailer at Montgomery', 0, 0, 0, 40000, 0, 0, 1315.63, 180.16, 20.55, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 1979, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1880, 4, 'Trailer at Montgomery', 0, 0, 0, 40000, 0, 0, 1311.76, 169.57, 20.63, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 1980, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1881, 4, 'Trailer at Montgomery', 0, 0, 0, 40000, 0, 0, 1307.29, 153.32, 20.49, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 1981, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1882, 4, 'House at Montgomery', 0, 0, 0, 60000, 0, 0, 1409.27, 346.89, 19.25, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 1982, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1883, 4, 'House at Montgomery', 0, 0, 0, 60000, 0, 0, 1403.22, 333.85, 18.91, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 1983, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1884, 4, 'House at Montgomery', 0, 0, 0, 60000, 0, 0, 1415.88, 324.62, 18.84, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 1984, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1885, 4, 'House at Montgomery', 0, 0, 0, 60000, 0, 0, 1428.64, 356.43, 18.88, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 1985, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1886, 4, 'House at Montgomery', 0, 0, 0, 60000, 0, 0, 1413.14, 363.12, 19.2, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 1986, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1887, 4, 'House at Montgomery', 0, 0, 0, 60000, 0, 0, 1419.53, 389.47, 19.33, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 1987, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1888, 4, 'House at Montgomery', 0, 0, 0, 60000, 0, 0, 1475.32, 372.75, 19.66, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 1988, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1889, 4, 'House at Montgomery', 0, 0, 0, 60000, 0, 0, 1465.74, 364.2, 19.26, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 1989, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1890, 4, 'House at Montgomery', 0, 0, 0, 60000, 0, 0, 1469.66, 351.45, 18.92, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 1990, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1891, 4, 'House at Montgomery', 0, 0, 0, 60000, 0, 0, 1451.58, 375.79, 19.4, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 1991, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1892, 4, 'House at Montgomery', 0, 0, 0, 60000, 0, 0, 1447.45, 361.74, 18.91, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 1992, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1893, 4, 'House at Montgomery', 0, 0, 0, 60000, 0, 0, 1461.13, 342.47, 18.95, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 1993, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1894, 4, 'House at Montgomery', 0, 0, 0, 60000, 0, 0, 1434.89, 334.77, 18.95, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 1994, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1895, 4, 'House at Montgomery', 0, 0, 0, 60000, 0, 0, 1488.61, 360.9, 19.41, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 1995, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1896, 4, 'House near Blueberry', 0, 0, 0, 60000, 0, 0, 723.71, 269.67, 22.45, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 1996, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1897, 4, 'House near Blueberry', 0, 0, 0, 60000, 0, 0, 705.47, 292.1, 20.42, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 1997, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1898, 4, 'House near Blueberry', 0, 0, 0, 60000, 0, 0, 719.07, 300.58, 20.38, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 1998, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1899, 4, 'House near Blueberry', 0, 0, 0, 60000, 0, 0, 746.4, 305, 20.23, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 1999, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1900, 4, 'House near Blueberry', 0, 0, 0, 60000, 0, 0, 747.13, 278.17, 27.22, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 2000, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1901, 4, 'House near Blueberry', 0, 0, 0, 60000, 0, 0, 748.16, 257.11, 27.09, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 2001, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1902, 4, 'Trailer near Blueberry', 0, 0, 0, 15000, 1, 0, 748.43, 350.9, 20.59, 0, 0, 0, 0, -1, 244.41, 305.03, 999.15, 0, 1, 2002, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1903, 4, 'Trailer near Blueberry', 0, 0, 0, 15000, 0, 0, 808.07, 372.29, 19.45, 0, 0, 0, 0, -1, 244.41, 305.03, 999.15, 0, 1, 2003, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1904, 4, 'Trailer near Blueberry', 0, 0, 0, 15000, 500, 0, 783.17, 377.56, 21.3, 0, 0, 0, 0, -1, 244.41, 305.03, 999.15, 0, 1, 2004, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1905, 4, 'Trailer near Blueberry', 0, 0, 0, 15000, 5000, 0, 751.72, 375.22, 23.37, 0, 0, 0, 0, -1, 244.41, 305.03, 999.15, 0, 1, 2005, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1906, 4, 'House near Blueberry', 0, 0, 0, 60000, 0, 0, 783.88, 352.59, 19.59, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 2006, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1907, 4, 'House near Blueberry', 0, 0, 0, 60000, 0, 0, 805.33, 358.37, 19.76, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 2007, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1908, 4, 'House near Blueberry', 0, 0, 0, 60000, 0, 0, 758.92, 375.02, 23.39, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 2008, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1909, 4, 'House near Blueberry', 0, 0, 0, 60000, 0, 0, 772.92, 348.27, 20.15, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 2009, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1910, 4, 'Farm', 0, 0, 0, 75000, 0, 0, -1061.35, -1205.56, 129.76, 0, 0, 0, 0, -1, 2317.82, -1024.75, 1050.21, 0, 9, 2010, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1911, 4, 'Shack', 0, 0, 0, 75000, 0, 0, 1566.6, 23.26, 24.16, 0, 0, 0, 0, -1, 422.57, 2536.12, 10, 0, 10, 2011, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1912, 4, 'Ranch', 0, 0, 0, 25000, 0, 0, 870.4, -24.92, 63.99, 0, 0, 0, 0, -1, 422.29, 2536.68, 10, 0, 10, 2012, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1913, 4, 'Shack', 0, 0, 0, 1000000, 0, 0, -1051.73, 1549.97, 33.44, 0, 0, 0, 0, -1, 422.29, 2536.68, 10, 0, 10, 2013, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1914, 1, 'Apartments', 0, 0, 0, 0, 5000, 0, 1108.48, -606.32, 16.53, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2014, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1915, 1, 'Apartments', 0, 0, 0, 0, 5000, 0, 1098.4, -606.33, 16.53, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2015, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1916, 1, 'Apartments', 0, 0, 0, 0, 5000, 0, 1088.51, -606.33, 16.53, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2016, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1917, 1, 'Apartments', 0, 0, 0, 0, 5000, 0, 1078.4, -606.33, 16.53, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2017, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1918, 1, 'Apartments', 0, 0, 0, 0, 5000, 0, 1068.39, -606.33, 16.53, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2018, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1919, 1, 'Apartments', 0, 0, 0, 0, 5000, 0, 1113.51, -556.32, 17.19, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2019, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1920, 1, 'Apartments', 0, 0, 0, 0, 5000, 0, 1113.51, -546.2, 18.19, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2020, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1921, 1, 'Apartments', 0, 0, 0, 0, 5000, 0, 1113.51, -536.26, 19.18, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2021, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1922, 1, 'Apartments', 0, 0, 0, 0, 5000, 0, 1108.68, -516.08, 20.73, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2022, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1923, 1, 'Apartments', 0, 0, 0, 0, 5000, 0, 1098.55, -516.09, 19.74, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2023, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1924, 1, 'Apartments', 0, 0, 0, 0, 5000, 0, 1088.67, -516.08, 18.74, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2024, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1925, 1, 'Apartments', 0, 0, 0, 0, 5000, 0, 1078.69, -516.09, 17.74, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2025, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1926, 1, 'Apartments', 0, 0, 0, 0, 5000, 0, 1068.6, -516.09, 16.74, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2026, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1927, 1, 'Apartments', 0, 0, 0, 0, 5000, 0, 1113.45, -481.08, 21.58, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2027, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1928, 1, 'Apartments', 0, 0, 0, 0, 5000, 0, 1113.45, -466.16, 21.56, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2028, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1929, 1, 'Apartments', 0, 0, 0, 0, 5000, 0, 1113.45, -461.01, 21.56, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2029, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1930, 1, 'Apartments', 0, 0, 0, 0, 5000, 0, 1113.45, -446.14, 21.56, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2030, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1931, 1, 'Apartments', 0, 0, 0, 0, 5000, 0, 1113.45, -441.12, 21.57, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2031, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1932, 1, 'Apartments', 0, 0, 0, 0, 5000, 0, 1140.85, -485.21, 20.48, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2032, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1933, 1, 'Apartments', 0, 0, 0, 0, 5000, 0, 1150.99, -485.21, 21.49, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2033, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1934, 1, 'Apartments', 0, 0, 0, 0, 5000, 0, 1160.85, -485.21, 22.48, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2034, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1935, 1, 'Apartments', 0, 0, 0, 0, 5000, 0, 1170.93, -485.21, 23.49, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2035, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1936, 1, 'Apartments', 0, 0, 0, 0, 5000, 0, 1181.01, -485.21, 24.5, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2036, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1937, 1, 'Apartments', 0, 0, 0, 0, 5000, 0, 1207.81, -556.04, 22.27, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2037, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1938, 1, 'Apartments', 0, 0, 0, 0, 5000, 0, 1207.81, -546.03, 23.27, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2038, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1939, 1, 'Apartments', 0, 0, 0, 0, 5000, 0, 1207.8, -536.01, 24.25, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2039, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1940, 1, 'Apartments', 0, 0, 0, 0, 5000, 0, 1208.62, -515.88, 26.84, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2040, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1941, 1, 'Apartments', 0, 0, 0, 0, 5000, 0, 1218.7, -515.88, 27.84, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2041, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1942, 1, 'Apartments', 0, 0, 0, 0, 5000, 0, 1228.62, -515.88, 28.84, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2042, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1943, 1, 'Apartments', 0, 0, 0, 0, 5000, 0, 1238.57, -515.88, 29.83, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2043, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1944, 1, 'Apartments', 0, 0, 0, 0, 5000, 0, 1248.61, -515.88, 30.82, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2044, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1945, 1, 'Apartments', 0, 0, 0, 0, 5000, 0, 1210.81, -485.21, 25.52, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2045, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1946, 1, 'Apartments', 0, 0, 0, 0, 5000, 0, 1220.87, -485.21, 26.58, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2046, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1947, 1, 'Apartments', 0, 0, 0, 0, 5000, 0, 1230.72, -485.21, 27.57, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2047, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1948, 1, 'Apartments', 0, 0, 0, 0, 5000, 0, 1240.87, -485.21, 28.58, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2048, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1949, 1, 'Apartments', 0, 0, 0, 0, 5000, 0, 1250.85, -485.21, 29.58, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2049, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1950, 1, 'Apartments', 0, 0, 0, 0, 5000, 0, 1260.8, -484.17, 31.06, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2050, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1951, 1, 'Apartments', 0, 0, 0, 0, 5000, 0, 1270.66, -484.16, 33, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2051, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1952, 1, 'Apartments', 0, 0, 0, 0, 5000, 0, 1280.93, -484.16, 35.03, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2052, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1953, 1, 'Apartments', 0, 0, 0, 0, 5000, 0, 1290.9, -484.17, 36.99, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2053, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1954, 1, 'Apartments', 0, 0, 0, 0, 5000, 0, 1300.93, -484.16, 38.97, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2054, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1955, 1, 'Apartments', 0, 0, 0, 0, 5000, 0, 1388.03, -436.17, 51.43, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2055, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1956, 1, 'Apartments', 0, 0, 0, 0, 5000, 0, 1388.03, -426.17, 51.43, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2056, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1957, 1, 'Apartments', 0, 0, 0, 0, 5000, 0, 1388.03, -416.24, 51.43, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2057, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1958, 1, 'Apartments', 0, 0, 0, 0, 5000, 0, 1388.09, -408.74, 51.58, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2058, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1959, 1, 'Apartments', 0, 0, 0, 0, 5000, 0, 1388.09, -398.62, 51.58, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2059, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1960, 1, 'Apartments', 0, 0, 0, 0, 5000, 0, 1388.01, -386.14, 51.17, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2060, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1961, 1, 'Apartments', 0, 0, 0, 0, 5000, 0, 1388.02, -376.26, 51.17, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2061, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1962, 1, 'Apartments', 0, 0, 0, 0, 5000, 0, 1388.02, -366.29, 51.17, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2062, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1963, 1, 'Apartments', 0, 0, 0, 0, 5000, 0, 1388.1, -358.71, 51.61, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2063, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1964, 1, 'Apartments', 0, 0, 0, 0, 5000, 0, 1388.03, -346.21, 51.2, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2064, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1965, 1, 'Apartments', 0, 0, 0, 0, 5000, 0, 1388.03, -336.23, 51.2, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2065, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1966, 1, 'Apartments', 0, 0, 0, 0, 5000, 0, 1388.03, -326.23, 51.2, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2066, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1967, 1, 'Apartments', 0, 0, 0, 0, 5000, 0, 1388.11, -318.79, 51.55, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2067, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1968, 1, 'Apartments', 0, 0, 0, 0, 5000, 0, 1388.11, -308.72, 51.55, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2068, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1969, 1, 'Apartments', 0, 0, 0, 0, 5000, 0, 1388.1, -298.72, 51.55, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2069, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1970, 1, 'Apartments', 0, 0, 0, 0, 5000, 0, 1347.55, -293.39, 48.7, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2070, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1971, 1, 'Apartments', 0, 0, 0, 0, 5000, 0, 1337.53, -293.39, 46.64, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2071, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1972, 1, 'Apartments', 0, 0, 0, 0, 5000, 0, 1327.53, -293.39, 44.59, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2072, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1973, 1, 'Apartments', 0, 0, 0, 0, 5000, 0, 1317.63, -293.39, 42.56, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2073, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1974, 1, 'Apartments', 0, 0, 0, 0, 5000, 0, 1351.08, -274.15, 49.43, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2074, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1975, 1, 'Apartments', 0, 0, 0, 0, 5000, 0, 1340.99, -274.15, 47.36, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2075, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1976, 1, 'Apartments', 0, 0, 0, 0, 5000, 0, 1330.87, -274.16, 45.28, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2076, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1977, 1, 'Apartments', 0, 0, 0, 0, 5000, 0, 1320.77, -274.16, 43.2, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2077, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1978, 1, 'Apartments', 0, 0, 0, 0, 5000, 0, 1310.89, -274.16, 41.17, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2078, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1979, 1, 'Apartments', 0, 0, 0, 0, 5000, 0, 1300.94, -274.17, 39.16, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2079, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1980, 1, 'Apartments', 0, 0, 0, 0, 5000, 0, 1290.84, -274.17, 37.14, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2080, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1981, 1, 'Apartments', 0, 0, 0, 0, 5000, 0, 1280.85, -274.18, 35.14, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2081, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1982, 1, 'Apartments', 0, 0, 0, 0, 5000, 0, 1270.73, -274.17, 33.12, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2082, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1983, 1, 'Apartments', 0, 0, 0, 0, 5000, 0, 1260.86, -274.19, 31.14, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2083, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1984, 1, 'Apartments', 0, 0, 0, 0, 5000, 0, 1250.9, -274.2, 29.64, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2084, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1985, 1, 'Apartments', 0, 0, 0, 0, 5000, 0, 1240.84, -274.2, 28.63, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2085, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1986, 1, 'Apartments', 0, 0, 0, 0, 5000, 0, 1230.75, -274.2, 27.62, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2086, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1987, 1, 'Apartments', 0, 0, 0, 0, 5000, 0, 1220.83, -274.2, 26.63, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2087, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1988, 1, 'Apartments', 0, 0, 0, 0, 5000, 0, 1210.83, -274.21, 25.54, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2088, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1989, 1, 'Apartments', 0, 0, 0, 0, 5000, 0, 1210.82, -293.45, 25.54, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2089, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1990, 1, 'Apartments', 0, 0, 0, 0, 5000, 0, 1220.79, -293.45, 26.63, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2090, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1991, 1, 'Apartments', 0, 0, 0, 0, 5000, 0, 1230.84, -293.45, 27.63, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2091, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1992, 1, 'Apartments', 0, 0, 0, 0, 5000, 0, 1240.67, -293.43, 28.61, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2092, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1993, 1, 'Apartments', 0, 0, 0, 0, 5000, 0, 1250.84, -293.45, 29.63, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2093, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1994, 1, 'Apartments', 0, 0, 0, 0, 5000, 0, 1180.91, -293.45, 24.49, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2094, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1995, 1, 'Apartments', 0, 0, 0, 0, 5000, 0, 1170.65, -293.45, 23.46, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2095, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1996, 1, 'Apartments', 0, 0, 0, 0, 5000, 0, 1160.82, -293.45, 22.48, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2096, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1997, 1, 'Apartments', 0, 0, 0, 0, 5000, 0, 1150.77, -293.45, 21.47, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2097, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1998, 1, 'Apartments', 0, 0, 0, 0, 5000, 0, 1140.81, -293.45, 20.48, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2098, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1999, 1, 'Apartments', 0, 0, 0, 0, 5000, 0, 1111.69, -281.12, 21.74, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2099, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (2000, 1, 'Apartments', 0, 0, 0, 0, 5000, 0, 1111.69, -291.18, 21.74, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2100, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (2001, 1, 'Apartments', 0, 0, 0, 0, 5000, 0, 1111.69, -301.08, 21.74, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2101, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (2002, 1, 'Apartments', 0, 0, 0, 0, 5000, 0, 1113.44, -311.09, 21.55, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2102, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (2003, 1, 'Apartments', 0, 0, 0, 0, 5000, 0, 1113.44, -321.12, 21.55, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2103, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (2004, 1, 'Apartments', 0, 0, 0, 0, 5000, 0, 1113.44, -331.2, 21.55, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2104, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (2005, 1, 'Apartments', 0, 0, 0, 0, 5000, 0, 1113.44, -341.18, 21.55, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2105, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (2006, 1, 'Apartments', 0, 0, 0, 0, 5000, 0, 1113.44, -351.11, 21.55, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2106, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (2007, 1, 'Apartments', 0, 0, 0, 0, 5000, 0, 1138.68, -366.12, 21.75, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2107, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (2008, 1, 'Apartments', 0, 0, 0, 0, 5000, 0, 1148.57, -366.12, 22.75, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2108, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (2009, 1, 'Apartments', 0, 0, 0, 0, 5000, 0, 1158.71, -366.12, 23.75, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2109, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (2010, 1, 'Apartments', 0, 0, 0, 0, 5000, 0, 1168.57, -366.12, 24.75, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2110, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (2011, 1, 'Apartments', 0, 0, 0, 0, 5000, 0, 1178.72, -366.12, 25.74, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2111, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (2012, 1, 'Apartments', 0, 0, 0, 0, 5000, 0, 1180.97, -334.19, 24.49, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2112, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (2013, 1, 'Apartments', 0, 0, 0, 0, 5000, 0, 1170.78, -334.19, 23.47, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2113, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (2014, 1, 'Apartments', 0, 0, 0, 0, 5000, 0, 1160.74, -334.19, 22.47, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2114, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (2015, 1, 'Apartments', 0, 0, 0, 0, 5000, 0, 1150.78, -334.19, 21.47, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2115, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (2016, 1, 'Apartments', 0, 0, 0, 0, 5000, 0, 1140.75, -334.19, 20.47, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2116, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (2017, 1, 'Apartments', 0, 0, 0, 0, 5000, 0, 1116.16, -268.95, 19.5, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2117, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (2018, 1, 'Apartments', 0, 0, 0, 0, 5000, 0, 1116.16, -258.65, 18.5, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2118, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (2019, 1, 'Apartments', 0, 0, 0, 0, 5000, 0, 1116.16, -248.91, 17.56, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2119, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (2020, 1, 'Apartments', 0, 0, 0, 0, 5000, 0, 1116.16, -238.83, 16.58, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2120, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (2021, 1, 'Apartments', 0, 0, 0, 0, 5000, 0, 1116.16, -228.77, 15.51, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2121, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (2022, 1, 'Apartments', 0, 0, 0, 0, 5000, 0, 1116.16, -188.85, 14.48, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2122, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (2023, 1, 'Apartments', 0, 0, 0, 0, 5000, 0, 1116.16, -178.76, 13.47, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2123, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (2024, 1, 'Apartments', 0, 0, 0, 0, 5000, 0, 1116.16, -168.88, 12.48, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2124, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (2025, 1, 'Apartments', 0, 0, 0, 0, 5000, 0, 1116.16, -158.82, 11.47, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2125, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (2026, 1, 'Apartments', 0, 0, 0, 0, 5000, 0, 1116.17, -148.87, 10.48, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2126, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (2027, 1, 'Apartments', 0, 0, 0, 0, 5000, 0, 1138.03, -146.68, 11.71, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2127, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (2028, 1, 'Apartments', 0, 0, 0, 0, 5000, 0, 1138.03, -156.64, 12.71, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2128, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (2029, 1, 'Apartments', 0, 0, 0, 0, 5000, 0, 1138.03, -166.69, 13.71, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2129, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (2030, 1, 'Apartments', 0, 0, 0, 0, 5000, 0, 1138.02, -176.73, 14.71, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2130, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (2031, 1, 'Apartments', 0, 0, 0, 0, 5000, 0, 1138.02, -186.72, 15.7, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2131, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (2032, 1, 'Apartments', 0, 0, 0, 0, 5000, 0, 1068.09, -186.55, 6.56, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2132, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (2033, 1, 'Apartments', 0, 0, 0, 0, 5000, 0, 1068.1, -176.41, 6.56, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2133, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (2034, 1, 'Apartments', 0, 0, 0, 0, 5000, 0, 1068.1, -166.48, 6.56, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2134, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (2035, 1, 'Apartments', 0, 0, 0, 0, 5000, 0, 1068.1, -156.65, 6.56, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2135, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (2036, 1, 'Apartments', 0, 0, 0, 0, 5000, 0, 1068.1, -146.44, 6.56, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2136, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (2037, 1, 'Apartments', 0, 0, 0, 0, 5000, 0, 1068.07, -246.55, 6.69, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2137, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (2038, 1, 'Apartments', 0, 0, 0, 0, 5000, 0, 1068.07, -256.65, 7.68, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2138, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (2039, 1, 'Apartments', 0, 0, 0, 0, 5000, 0, 1068.03, -296.67, 11.72, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2139, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (2040, 1, 'Apartments', 0, 0, 0, 0, 5000, 0, 1068.03, -306.61, 12.72, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2140, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (2041, 1, 'Apartments', 0, 0, 0, 0, 5000, 0, 1068.03, -316.62, 13.72, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2141, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (2042, 1, 'Apartments', 0, 0, 0, 0, 5000, 0, 1068.02, -326.75, 14.72, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2142, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (2043, 1, 'Apartments', 0, 0, 0, 0, 5000, 0, 1068.02, -336.54, 15.71, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2143, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (2044, 1, 'Apartments', 0, 0, 0, 0, 5000, 0, 894.07, -464.94, 14.97, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2144, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (2045, 1, 'Apartments', 0, 0, 0, 0, 5000, 0, 860.88, -463.47, 14.97, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2145, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (2046, 1, 'Apartments', 0, 0, 0, 0, 5000, 0, 845.35, -400.24, 14.97, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2146, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (2047, 1, 'Apartments', 0, 0, 0, 0, 5000, 0, 845.29, -368.99, 12.6, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2147, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (2048, 1, 'Apartments', 0, 0, 0, 0, 5000, 0, 845.29, -350.17, 10.86, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2148, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (2049, 1, 'Apartments', 0, 0, 0, 0, 5000, 0, 845.28, -325.24, 8.37, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2149, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (2050, 1, 'Safehouse', 0, 0, 0, 0, 0, 0, 890.41, -308.33, 8.72, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2150, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (2051, 1, 'Projects', 0, 0, 0, 0, 0, 0, 944.05, -272.57, 4.94, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2151, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (2052, 1, 'Apartments', 0, 0, 0, 0, 5000, 0, 942.95, -348.47, 9.97, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2152, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (2053, 1, 'Apartments', 0, 0, 0, 0, 5000, 0, 867.21, -671.82, 14.97, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2153, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (2054, 1, 'Apartments', 0, 0, 0, 0, 5000, 0, 875.12, -671.3, 14.97, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2154, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (2055, 1, 'Apartments', 0, 0, 0, 0, 5000, 0, 872.96, -659.17, 14.97, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2155, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (2056, 1, 'Apartments', 0, 0, 0, 0, 5000, 0, 882.49, -708.41, 14.97, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2156, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (2057, 1, 'Apartments', 0, 0, 0, 0, 5000, 0, 854.34, -689.18, 14.97, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2157, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (2058, 1, 'Apartments', 0, 0, 0, 0, 5000, 0, 854.23, -759.09, 14.97, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2158, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (2059, 1, 'Apartments', 0, 0, 0, 0, 5000, 0, -119.92, -1379.99, 26.17, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2159, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (2060, 1, 'Apartments', 0, 0, 0, 0, 5000, 0, -129.3, -1380, 26.17, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2160, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (2061, 1, 'Apartments', 0, 0, 0, 0, 5000, 0, -134.95, -1389.72, 26.33, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2161, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (2062, 1, 'Apartments', 0, 0, 0, 0, 5000, 0, -149.13, -1382.05, 26.17, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2162, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (2063, 1, 'Apartments', 0, 0, 0, 0, 5000, 0, -140.61, -1385.4, 26.36, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2163, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (2064, 1, 'Apartments', 0, 0, 0, 0, 5000, 0, -163.41, -1386.55, 26.34, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2164, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (2065, 1, 'Apartments', 0, 0, 0, 0, 5000, 0, -153.9, -1382.77, 26.17, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2165, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (2066, 1, 'Apartments', 0, 0, 0, 0, 5000, 0, -168.32, -1382.13, 26.17, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2166, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (2067, 1, 'Apartments', 0, 0, 0, 0, 5000, 0, -176.51, -1384.51, 26.36, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2167, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (2068, 1, 'Apartments', 0, 0, 0, 0, 5000, 0, -185.88, -1380.46, 26.17, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2168, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (2069, 1, 'Apartments', 0, 0, 0, 0, 5000, 0, -157.18, -1476.82, 26.19, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2169, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (2070, 1, 'Apartments', 0, 0, 0, 0, 5000, 0, -163.18, -1462.64, 26.19, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2170, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (2071, 1, 'Apartments', 0, 0, 0, 0, 5000, 0, -168.42, -1449.97, 26.19, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2171, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (2072, 1, 'Apartments', 0, 0, 0, 0, 5000, 0, -149.72, -1489.55, 26.19, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2172, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (2073, 1, 'Apartments', 0, 0, 0, 0, 5000, 0, -124.5, -1519.6, 26.19, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2173, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (2074, 1, 'Apartments', 0, 0, 0, 0, 5000, 0, -103.41, -1540.97, 26.19, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2174, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (2075, 1, 'Apartments', 0, 0, 0, 0, 5000, 0, -73.55, -1564.37, 26.02, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2175, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (2076, 1, 'Apartments', 0, 0, 0, 0, 5000, 0, -50.96, -1575.5, 26.02, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2176, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (2077, 1, 'Apartments', 0, 0, 0, 0, 5000, 0, -15.36, -1587.86, 26.21, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2177, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (2078, 1, 'Apartments', 0, 0, 0, 0, 5000, 0, 15.51, -1590.52, 26.19, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2178, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (2079, 1, 'Apartments', 0, 0, 0, 0, 5000, 0, 125.07, -1489.57, 26.17, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2179, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (2080, 1, 'Large House', 0, 0, 0, 100000, 0, 0, -742.4, 286.64, 55.29, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2180, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (2081, 1, 'Large House', 0, 0, 0, 100000, 0, 0, -677.95, 307.89, 59.85, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2181, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (2082, 1, 'Large House', 0, 0, 0, 100000, 0, 0, -554.83, 309.9, 70.8, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2182, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (2083, 1, 'Large House', 0, 0, 0, 100000, 0, 0, -491.27, 286.25, 74.15, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2183, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (2084, 1, 'Mansion', 0, 0, 0, 250000, 0, 0, -380.6, 299.86, 63.92, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2184, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (2085, 1, 'Large House', 0, 0, 0, 100000, 0, 0, -832.62, 294.62, 41.48, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2185, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (2086, 1, 'Projects', 0, 0, 0, 0, 0, 0, -458.33, -46.19, 3.93, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2186, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (2087, 1, 'Projects', 0, 0, 0, 0, 0, 0, -501.08, -64.36, 3.93, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2187, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (2088, 1, 'Projects', 0, 0, 0, 0, 0, 0, -521.21, -65.17, 3.93, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2188, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (2089, 1, 'Projects', 0, 0, 0, 0, 0, 0, -459.48, -25.3, 3.93, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2189, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (2090, 1, 'Projects', 0, 0, 0, 0, 0, 0, -468.29, 52.11, 3.93, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2190, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (2091, 1, 'Projects', 0, 0, 0, 0, 0, 0, -488.71, 51.2, 3.93, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2191, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (2092, 1, 'Projects', 0, 0, 0, 0, 0, 0, -546.12, 31.71, 3.93, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2192, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (2093, 1, 'Projects', 0, 0, 0, 0, 0, 0, -545.19, 11.49, 3.93, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2193, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (2094, 2, 'Apartments', 0, 0, 0, 0, 0, 0, -789.69, -1212.64, 11.1, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2194, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (2095, 2, 'Apartments', 0, 0, 0, 0, 0, 0, -797.15, -1213.46, 11.1, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2195, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (2096, 2, 'Apartments', 0, 0, 0, 0, 0, 0, -797.43, -1217.4, 11.1, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2196, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (2097, 2, 'Apartments', 0, 0, 0, 0, 0, 0, -803.89, -1202.53, 11.1, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2197, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (2098, 2, 'Apartments', 0, 0, 0, 0, 0, 0, -805.51, -1197.92, 11.1, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2198, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (2099, 2, 'Apartments', 0, 0, 0, 0, 0, 0, -811.25, -1181.36, 11.1, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2199, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (2100, 2, 'Apartments', 0, 0, 0, 0, 0, 0, -810.78, -1177.46, 11.1, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2200, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (2101, 2, 'Apartments', 0, 0, 0, 0, 0, 0, -803.38, -1176.86, 11.1, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2201, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (2102, 2, 'Apartments', 0, 0, 0, 0, 0, 0, -801.07, -1182.84, 11.1, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2202, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (2103, 2, 'Apartments', 0, 0, 0, 0, 0, 0, -807.4, -1187.39, 11.11, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2203, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (2104, 2, 'Apartments', 0, 0, 0, 0, 0, 0, -817.18, -1166.56, 11.1, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2204, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (2105, 2, 'Apartments', 0, 0, 0, 0, 0, 0, -818.59, -1161.96, 11.1, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2205, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (2106, 2, 'Apartments', 0, 0, 0, 0, 0, 0, -813.84, -1147.13, 11.1, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2206, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (2107, 2, 'Apartments', 0, 0, 0, 0, 0, 0, -819.99, -1151.34, 11.11, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2207, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (2108, 2, 'Apartments', 0, 0, 0, 0, 0, 0, -823.63, -1145.27, 11.11, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2208, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (2109, 2, 'Apartments', 0, 0, 0, 0, 0, 0, -823.28, -1141.7, 11.11, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2209, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (2110, 2, 'Apartments', 0, 0, 0, 0, 0, 0, -815.79, -1141.42, 11.1, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2210, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (2111, 2, 'Apartments', 0, 0, 0, 0, 0, 0, -828.82, -1131.07, 11.11, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2211, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (2112, 2, 'Apartments', 0, 0, 0, 0, 0, 0, -830.02, -1126.36, 11.11, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2212, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (2113, 2, 'Apartments', 0, 0, 0, 0, 0, 0, -834.29, -1109.49, 11.11, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2213, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (2114, 2, 'Apartments', 0, 0, 0, 0, 0, 0, -833.38, -1106.25, 11.11, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2214, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (2115, 2, 'Apartments', 0, 0, 0, 0, 0, 0, -831, -1115.65, 11.11, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2215, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (2116, 2, 'Apartments', 0, 0, 0, 0, 0, 0, -824.42, -1111.64, 11.1, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2216, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (2117, 2, 'Apartments', 0, 0, 0, 0, 0, 0, -825.86, -1106.34, 11.11, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2217, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (2118, 2, 'Apartments', 0, 0, 0, 0, 0, 0, -838.46, -1095.65, 11.11, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2218, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (2119, 2, 'Apartments', 0, 0, 0, 0, 0, 0, -839.43, -1090.78, 11.11, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2219, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (2120, 2, 'Apartments', 0, 0, 0, 0, 0, 0, -832.84, -1077.57, 11.1, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2220, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (2121, 2, 'Apartments', 0, 0, 0, 0, 0, 0, -839.62, -1080.14, 11.11, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2221, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (2122, 2, 'Apartments', 0, 0, 0, 0, 0, 0, -842.75, -1074.18, 11.1, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2222, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (2123, 2, 'Apartments', 0, 0, 0, 0, 0, 0, -841.66, -1071.16, 11.1, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2223, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (2124, 2, 'Apartments', 0, 0, 0, 0, 0, 0, -834.22, -1071.72, 11.1, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2224, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (2125, 2, 'Apartments', 0, 0, 0, 0, 0, 0, -846.31, -1034.93, 12.48, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2225, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (2126, 2, 'Apartments', 0, 0, 0, 0, 0, 0, -847.9, -1018, 12.48, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2226, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (2127, 2, 'Apartments', 0, 0, 0, 0, 0, 0, -848.65, -1001.6, 12.48, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2227, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (2128, 2, 'Apartments', 0, 0, 0, 0, 0, 0, -839.55, -988.95, 11.1, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2228, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (2129, 2, 'Apartments', 0, 0, 0, 0, 0, 0, -839.31, -981.23, 11.1, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2229, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (2130, 2, 'Apartments', 0, 0, 0, 0, 0, 0, -850.77, -968.19, 11.1, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2230, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (2131, 2, 'Apartments', 0, 0, 0, 0, 0, 0, -849.29, -951.89, 11.1, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2231, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (2132, 2, 'Apartments', 0, 0, 0, 0, 0, 0, -833.4, -934.17, 11.1, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2232, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (2133, 2, 'Apartments', 0, 0, 0, 0, 0, 0, -834.59, -940.38, 11.1, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2233, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (2134, 2, 'Apartments', 0, 0, 0, 0, 0, 0, -844.7, -769.72, 12.66, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2234, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (2135, 2, 'Apartments', 0, 0, 0, 0, 0, 0, -845.79, -764.26, 12.66, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2235, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (2136, 2, 'Apartment', 0, 0, 0, 0, 0, 0, -1192.55, -504.65, 10.8, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2236, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (2137, 2, 'Apartment', 0, 0, 0, 0, 0, 0, -1193.41, -505.95, 13.8, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2237, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (2138, 2, 'Apartment', 0, 0, 0, 0, 0, 0, -1190.01, -508.94, 10.9, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2238, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (2139, 2, 'Apartment', 0, 0, 0, 0, 0, 0, -1178.3, -475.48, 10.81, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2239, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (2140, 2, 'Apartment', 0, 0, 0, 0, 0, 0, -1177.23, -470.62, 10.76, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2240, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (2141, 2, 'Apartment', 0, 0, 0, 0, 0, 0, -1176.77, -475.23, 13.8, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2241, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (2142, 2, 'Medium House', 0, 0, 0, 0, 0, 0, -1182.65, -447.05, 11.71, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2242, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (2143, 2, 'Medium House', 0, 0, 0, 0, 0, 0, -1207.93, -477.02, 11.71, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2243, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (2144, 2, 'Apartment', 0, 0, 0, 0, 0, 0, -1215.94, -463.12, 10.74, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2244, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (2145, 2, 'Apartment', 0, 0, 0, 0, 0, 0, -1214.25, -459.01, 10.75, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2245, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (2146, 2, 'Apartment', 0, 0, 0, 0, 0, 0, -1215.79, -458.66, 13.8, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2246, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (2147, 2, 'Medium House', 0, 0, 0, 0, 0, 0, -1214.81, -434.73, 11.71, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2247, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (2148, 2, 'Medium House', 0, 0, 0, 0, 0, 0, -1216.02, -414.29, 11.71, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2248, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (2149, 2, 'Apartment', 0, 0, 0, 0, 0, 0, -1220.18, -394.39, 10.82, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2249, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (2150, 2, 'Apartment', 0, 0, 0, 0, 0, 0, -1221.87, -398.81, 10.76, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2250, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (2151, 2, 'Apartment', 0, 0, 0, 0, 0, 0, -1221.73, -394.22, 13.8, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2251, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (2152, 2, 'Medium House', 0, 0, 0, 0, 0, 0, -1190.03, -392.43, 10.7, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2252, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (2153, 2, 'Apartment', 0, 0, 0, 0, 0, 0, -1195.05, -371.74, 10.92, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2253, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (2154, 2, 'Apartment', 0, 0, 0, 0, 0, 0, -1193.68, -367.1, 10.9, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2254, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (2155, 2, 'Apartment', 0, 0, 0, 0, 0, 0, -1193.5, -371.72, 14, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2255, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (2156, 2, 'Medium House', 0, 0, 0, 0, 0, 0, -1186.01, -420.01, 11.71, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2256, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (2157, 2, 'Apartment', 0, 0, 0, 0, 0, 0, -1164.05, -360.16, 13.8, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2257, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (2158, 2, 'Apartment', 0, 0, 0, 0, 0, 0, -1164.28, -358.39, 10.88, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2258, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (2159, 2, 'Apartment', 0, 0, 0, 0, 0, 0, -1159.66, -359.92, 10.81, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2259, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (2160, 2, 'Large House', 0, 0, 0, 0, 0, 0, -1131.96, -356.51, 15.04, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2260, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (2161, 2, 'Medium House', 0, 0, 0, 0, 0, 0, -1118.77, -424.2, 11.52, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2261, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (2162, 2, 'Apartment', 0, 0, 0, 0, 0, 0, -1120.06, -394.38, 10.71, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2262, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (2163, 2, 'Apartment', 0, 0, 0, 0, 0, 0, -1120.34, -389.87, 13.8, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2263, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (2164, 2, 'Apartment', 0, 0, 0, 0, 0, 0, -1118.81, -389.63, 10.74, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2264, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (2165, 2, 'Small House', 0, 0, 0, 0, 0, 0, -1050.45, -55.8, 11.31, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2265, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (2166, 2, 'Small House', 0, 0, 0, 0, 0, 0, -1048.94, -63.38, 11.01, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2266, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (2167, 2, 'Small House', 0, 0, 0, 0, 0, 0, -1052.15, -76.78, 10.98, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2267, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (2168, 2, 'Small House', 0, 0, 0, 0, 0, 0, -1052.41, -92.23, 11.03, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2268, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (2169, 2, 'Small House', 0, 0, 0, 0, 0, 0, -1038.58, -110.44, 10.96, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2269, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (2170, 2, 'Small House', 0, 0, 0, 0, 0, 0, -1025.35, -109.01, 10.96, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2270, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (2171, 2, 'Small House', 0, 0, 0, 0, 0, 0, -1011.3, -108.9, 10.96, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2271, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (2172, 2, 'Small House', 0, 0, 0, 0, 0, 0, -969.03, -125.16, 11.59, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2272, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (2173, 2, 'Small House', 0, 0, 0, 0, 0, 0, -968.42, -141.69, 10.96, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2273, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (2174, 2, 'Small House', 0, 0, 0, 0, 0, 0, -968.32, -159.96, 10.94, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2274, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (2175, 2, 'Small House', 0, 0, 0, 0, 0, 0, -968.98, -175.81, 11.59, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2275, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (2176, 2, 'Small House', 0, 0, 0, 0, 0, 0, -968.93, -194.17, 11.59, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2276, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (2177, 2, 'Small House', 0, 0, 0, 0, 0, 0, -971.47, -208.9, 11.01, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2277, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (2178, 2, 'Small House', 0, 0, 0, 0, 0, 0, -970.67, -225.57, 10.94, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2278, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (2179, 2, 'Small House', 0, 0, 0, 0, 0, 0, -970.98, -243.26, 10.94, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2279, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (2180, 2, 'Apartment', 0, 0, 0, 0, 0, 0, -998.03, -237.5, 10.95, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2280, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (2181, 2, 'Apartment', 0, 0, 0, 0, 0, 0, -999.61, -241.49, 10.87, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2281, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (2182, 2, 'Apartment', 0, 0, 0, 0, 0, 0, -1000.23, -237.58, 13.56, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2282, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (2183, 2, 'Small House', 0, 0, 0, 0, 0, 0, -1001.8, -220.75, 10.93, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2283, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (2184, 2, 'Small House', 0, 0, 0, 0, 0, 0, -1002.15, -209.04, 11.31, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2284, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (2185, 2, 'Small House', 0, 0, 0, 0, 0, 0, -1003.66, -200.93, 11.01, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2285, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (2186, 2, 'Small House', 0, 0, 0, 0, 0, 0, -1000.5, -187.95, 10.96, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2286, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (2187, 2, 'Small House', 0, 0, 0, 0, 0, 0, -1000.19, -171.7, 11.01, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2287, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (2188, 2, 'Small House', 0, 0, 0, 0, 0, 0, -1002.35, -151.92, 11.01, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2288, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (2189, 2, 'Small House', 0, 0, 0, 0, 0, 0, -968.98, -106.02, 11.59, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2289, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (2190, 2, 'Small House', 0, 0, 0, 0, 0, 0, -968.32, -90.14, 10.92, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2290, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (2191, 2, 'Small House', 0, 0, 0, 0, 0, 0, -998.54, -92.43, 11.01, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2291, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (2192, 2, 'Small House', 0, 0, 0, 0, 0, 0, -996.84, -77.86, 10.74, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2292, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (2193, 2, 'Small House', 0, 0, 0, 0, 0, 0, -996.71, -65.69, 10.93, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2293, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (2194, 2, 'Small House', 0, 0, 0, 0, 0, 0, -968.42, -72, 10.94, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2294, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (2195, 2, 'Small House', 0, 0, 0, 0, 0, 0, -969.9, -56.3, 10.94, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2295, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (2196, 2, 'Apartment', 0, 0, 0, 0, 0, 0, -997.37, -21.25, 10.75, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2296, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (2197, 2, 'Apartment', 0, 0, 0, 0, 0, 0, -995.38, -17.39, 10.73, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2297, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (2198, 2, 'Apartment', 0, 0, 0, 0, 0, 0, -997.56, -17.12, 13.56, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2298, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (2199, 2, 'Small House', 0, 0, 0, 0, 0, 0, -969.12, -40, 10.98, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2299, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (2200, 2, 'Small House', 0, 0, 0, 0, 0, 0, -968.81, -22.63, 10.91, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2300, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (2201, 2, 'Small House', 0, 0, 0, 0, 0, 0, -965.65, -6.91, 11.01, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2301, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (2202, 2, 'Small House', 0, 0, 0, 0, 0, 0, -967.16, 4.17, 11.31, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2302, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (2203, 2, 'Ghetto Shack', 0, 0, 0, 0, 0, 0, -979.66, 86.99, 10.12, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2303, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (2204, 2, 'Ghetto Shack', 0, 0, 0, 0, 0, 0, -985.78, 87.18, 10.15, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2304, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (2205, 2, 'Ghetto Shack', 0, 0, 0, 0, 0, 0, -993.11, 86.94, 10.17, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2305, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (2206, 2, 'Ghetto Shack', 0, 0, 0, 0, 0, 0, -1006.07, 87.25, 10.19, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2306, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (2207, 2, 'Ghetto Shack', 0, 0, 0, 0, 0, 0, -994, 105.07, 9.33, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2307, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (2208, 2, 'Ghetto Shack', 0, 0, 0, 0, 0, 0, -981.44, 105.09, 9.27, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2308, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (2209, 2, 'Ghetto Shack', 0, 0, 0, 0, 0, 0, -966.15, 104.86, 9.25, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2309, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (2210, 2, 'Ghetto Shack', 0, 0, 0, 0, 0, 0, -966.15, 111.28, 9.23, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2310, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (2211, 2, 'Ghetto Shack', 0, 0, 0, 0, 0, 0, -966.11, 120.72, 9.24, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2311, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (2212, 2, 'Ghetto Shack', 0, 0, 0, 0, 0, 0, -966.29, 127.41, 9.24, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2312, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (2213, 2, 'Ghetto Shack', 0, 0, 0, 0, 0, 0, -960.85, 87.13, 10.25, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2313, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (2214, 2, 'Ghetto Shack', 0, 0, 0, 0, 0, 0, -967.22, 87.06, 10.22, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2314, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (2215, 2, 'Ghetto Shack', 0, 0, 0, 0, 0, 0, -954.9, 87.18, 10.26, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2315, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (2216, 2, 'Ghetto Shack', 0, 0, 0, 0, 0, 0, -949.21, 86.33, 10.29, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2316, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (2217, 2, 'Ghetto Shack', 0, 0, 0, 0, 0, 0, -951.57, 136.68, 9.3, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2317, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (2218, 2, 'Ghetto Shack', 0, 0, 0, 0, 0, 0, -962.8, 146.1, 9.4, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2318, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (2219, 2, 'Ghetto Shack', 0, 0, 0, 0, 0, 0, -979.32, 143.39, 9.2, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2319, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (2220, 2, 'Ghetto Shack', 0, 0, 0, 0, 0, 0, -985.23, 143.57, 9.22, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2320, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (2221, 2, 'Ghetto Shack', 0, 0, 0, 0, 0, 0, -992.6, 143.34, 9.24, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2321, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (2222, 2, 'Ghetto Shack', 0, 0, 0, 0, 0, 0, -998.35, 143.68, 9.27, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2322, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (2223, 2, 'Ghetto Shack', 0, 0, 0, 0, 0, 0, -981.63, 131.18, 9.27, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2323, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (2224, 2, 'Ghetto Shack', 0, 0, 0, 0, 0, 0, -993.96, 123.36, 9.28, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2324, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (2225, 2, 'Apartment', 0, 0, 0, 0, 0, 0, -940.06, 201.21, 9.19, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2325, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (2226, 2, 'Apartment', 0, 0, 0, 0, 0, 0, -948.04, 201.21, 12.57, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2326, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (2227, 2, 'Apartment', 0, 0, 0, 0, 0, 0, -940.2, 201.22, 12.57, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2327, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (2228, 2, 'Apartment', 0, 0, 0, 0, 0, 0, -933.92, 209.09, 9.19, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2328, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (2229, 2, 'Apartment', 0, 0, 0, 0, 0, 0, -931.27, 233.34, 9.19, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2329, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (2230, 2, 'Apartment', 0, 0, 0, 0, 0, 0, -931.27, 233.3, 12.57, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2330, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (2231, 2, 'Apartment', 0, 0, 0, 0, 0, 0, -931.27, 247.23, 12.55, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2331, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (2232, 2, 'Apartment', 0, 0, 0, 0, 0, 0, -931.27, 240.95, 12.57, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2332, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (2233, 2, 'Apartment', 0, 0, 0, 0, 0, 0, -923.37, 227.09, 9.18, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2333, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_renter`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (2234, 2, 'Mansion', 0, 0, 0, 0, 0, 0, -378.55, -556.1, 19.57, 0, 0, 0, 0, -1, -379.14, -551.65, 19.32, 0, 2, 100, 0, 0, 1); +/*!40000 ALTER TABLE `house_main` ENABLE KEYS */; + +-- Dumping structure for table gtac_main.idea_main +CREATE TABLE IF NOT EXISTS `idea_main` ( + `idea_id` int(11) NOT NULL AUTO_INCREMENT, + `idea_server` int(11) NOT NULL DEFAULT '0', + `idea_who_added` int(11) NOT NULL DEFAULT '0', + `idea_when_added` bigint(20) NOT NULL DEFAULT '0', + `idea_script_ver` varchar(16) NOT NULL DEFAULT '0.0', + `idea_pos_x` float NOT NULL DEFAULT '0', + `idea_pos_y` float NOT NULL DEFAULT '0', + `idea_pos_z` float NOT NULL DEFAULT '0', + `idea_rot_z` float NOT NULL DEFAULT '0', + `idea_message` varchar(256) NOT NULL DEFAULT '(No Message)', + `idea_svr_start` int(32) NOT NULL DEFAULT '0', + `idea_session` int(11) NOT NULL DEFAULT '0', + PRIMARY KEY (`idea_id`), + KEY `idea_server` (`idea_server`), + KEY `idea_who_added` (`idea_who_added`), + CONSTRAINT `fk_idea_server` FOREIGN KEY (`idea_server`) REFERENCES `svr_main` (`svr_id`) ON DELETE CASCADE ON UPDATE CASCADE, + CONSTRAINT `fk_idea_who_added` FOREIGN KEY (`idea_who_added`) REFERENCES `acct_main` (`acct_id`) ON DELETE CASCADE ON UPDATE CASCADE +) ENGINE=InnoDB AUTO_INCREMENT=278 DEFAULT CHARSET=latin1 COMMENT='User Submitted Ideas'; + +-- Dumping data for table gtac_main.idea_main: ~69 rows (approximately) +/*!40000 ALTER TABLE `idea_main` DISABLE KEYS */; +INSERT INTO `idea_main` (`idea_id`, `idea_server`, `idea_who_added`, `idea_when_added`, `idea_script_ver`, `idea_pos_x`, `idea_pos_y`, `idea_pos_z`, `idea_rot_z`, `idea_message`, `idea_svr_start`, `idea_session`) VALUES + (1, 2, 1, 1609756308, '1.0', 159.124, -437.974, 10.6419, 1.63332, 'loop to set wanted level to 0', 1609756265, 0); +INSERT INTO `idea_main` (`idea_id`, `idea_server`, `idea_who_added`, `idea_when_added`, `idea_script_ver`, `idea_pos_x`, `idea_pos_y`, `idea_pos_z`, `idea_rot_z`, `idea_message`, `idea_svr_start`, `idea_session`) VALUES + (4, 4, 1, 1608262318, '1.0', 2258.62, 2463.1, 10.8203, -0.5, 'Exclude LVPD garage from snow', 2147483647, 0); +INSERT INTO `idea_main` (`idea_id`, `idea_server`, `idea_who_added`, `idea_when_added`, `idea_script_ver`, `idea_pos_x`, `idea_pos_y`, `idea_pos_z`, `idea_rot_z`, `idea_message`, `idea_svr_start`, `idea_session`) VALUES + (5, 4, 1, 1608262432, '1.0', 2179.19, 1766.52, 56.5364, 1.3, 'Exclude LV parking garages from snow', 2147483647, 0); +INSERT INTO `idea_main` (`idea_id`, `idea_server`, `idea_who_added`, `idea_when_added`, `idea_script_ver`, `idea_pos_x`, `idea_pos_y`, `idea_pos_z`, `idea_rot_z`, `idea_message`, `idea_svr_start`, `idea_session`) VALUES + (6, 4, 1, 1608262457, '1.0', 1858.49, 1800.93, 36.5273, 0.5, 'Exclude LV parking garage ramp from snow', 2147483647, 0); +INSERT INTO `idea_main` (`idea_id`, `idea_server`, `idea_who_added`, `idea_when_added`, `idea_script_ver`, `idea_pos_x`, `idea_pos_y`, `idea_pos_z`, `idea_rot_z`, `idea_message`, `idea_svr_start`, `idea_session`) VALUES + (7, 4, 1, 1608262813, '1.0', 1192.94, -1321.7, 13.3984, -0.2, 'Add hospital fees', 2147483647, 0); +INSERT INTO `idea_main` (`idea_id`, `idea_server`, `idea_who_added`, `idea_when_added`, `idea_script_ver`, `idea_pos_x`, `idea_pos_y`, `idea_pos_z`, `idea_rot_z`, `idea_message`, `idea_svr_start`, `idea_session`) VALUES + (10, 4, 1, 1608264374, '1.0', -1983.54, 163.581, 27.6875, 1.02, 'Admin report system', 2147483647, 0); +INSERT INTO `idea_main` (`idea_id`, `idea_server`, `idea_who_added`, `idea_when_added`, `idea_script_ver`, `idea_pos_x`, `idea_pos_y`, `idea_pos_z`, `idea_rot_z`, `idea_message`, `idea_svr_start`, `idea_session`) VALUES + (21, 1, 2, 1608871415, '1.0', 1336.09, -758.642, 14.5972, -2.84, 'Import/Export between different cities, with each city demanding different cars.', 2147483647, 0); +INSERT INTO `idea_main` (`idea_id`, `idea_server`, `idea_who_added`, `idea_when_added`, `idea_script_ver`, `idea_pos_x`, `idea_pos_y`, `idea_pos_z`, `idea_rot_z`, `idea_message`, `idea_svr_start`, `idea_session`) VALUES + (23, 1, 1, 1608871808, '1.0', -597.479, 353.699, 78.4167, -1.8, 'Remove real estate flag on house in cedar grove', 2147483647, 0); +INSERT INTO `idea_main` (`idea_id`, `idea_server`, `idea_who_added`, `idea_when_added`, `idea_script_ver`, `idea_pos_x`, `idea_pos_y`, `idea_pos_z`, `idea_rot_z`, `idea_message`, `idea_svr_start`, `idea_session`) VALUES + (128, 1, 1, 1609102480, '1.0', 1299.98, -993.433, 14.8793, 0.840862, 'Respawn single vehicle command', 2147483647, 0); +INSERT INTO `idea_main` (`idea_id`, `idea_server`, `idea_who_added`, `idea_when_added`, `idea_script_ver`, `idea_pos_x`, `idea_pos_y`, `idea_pos_z`, `idea_rot_z`, `idea_message`, `idea_svr_start`, `idea_session`) VALUES + (129, 1, 1, 1609103197, '1.0', 1057.91, -398.217, 14.6232, -0.0146413, 'Hail a cab', 2147483647, 0); +INSERT INTO `idea_main` (`idea_id`, `idea_server`, `idea_who_added`, `idea_when_added`, `idea_script_ver`, `idea_pos_x`, `idea_pos_y`, `idea_pos_z`, `idea_rot_z`, `idea_message`, `idea_svr_start`, `idea_session`) VALUES + (133, 4, 2, 1609122166, '1.0', 1859.69, -2665.98, 5.75974, 1.57027, 'Airplane services?', 2147483647, 0); +INSERT INTO `idea_main` (`idea_id`, `idea_server`, `idea_who_added`, `idea_when_added`, `idea_script_ver`, `idea_pos_x`, `idea_pos_y`, `idea_pos_z`, `idea_rot_z`, `idea_message`, `idea_svr_start`, `idea_session`) VALUES + (134, 4, 2, 1609122329, '1.0', 1805.22, -2325.19, 13.3369, -0.342691, 'Should tuning shops be usable?', 2147483647, 0); +INSERT INTO `idea_main` (`idea_id`, `idea_server`, `idea_who_added`, `idea_when_added`, `idea_script_ver`, `idea_pos_x`, `idea_pos_y`, `idea_pos_z`, `idea_rot_z`, `idea_message`, `idea_svr_start`, `idea_session`) VALUES + (135, 4, 1, 1609142767, '1.0', 1552.72, -1674.83, 16.1953, 1.76176, 'Block use of usechar cmd while not in switchchar mode', 2147483647, 0); +INSERT INTO `idea_main` (`idea_id`, `idea_server`, `idea_who_added`, `idea_when_added`, `idea_script_ver`, `idea_pos_x`, `idea_pos_y`, `idea_pos_z`, `idea_rot_z`, `idea_message`, `idea_svr_start`, `idea_session`) VALUES + (202, 4, 1, 1609213965, '1.0', 237.392, 75.8236, 1005.04, 0.129586, 'Add helpful info on specific events. Approaching veh or job icon, etc', 2147483647, 0); +INSERT INTO `idea_main` (`idea_id`, `idea_server`, `idea_who_added`, `idea_when_added`, `idea_script_ver`, `idea_pos_x`, `idea_pos_y`, `idea_pos_z`, `idea_rot_z`, `idea_message`, `idea_svr_start`, `idea_session`) VALUES + (203, 2, 1, 1609224894, '1.0', -377.152, -337.399, 11.2356, -3.09393, 'Remove gates at starfish island houses', 2147483647, 0); +INSERT INTO `idea_main` (`idea_id`, `idea_server`, `idea_who_added`, `idea_when_added`, `idea_script_ver`, `idea_pos_x`, `idea_pos_y`, `idea_pos_z`, `idea_rot_z`, `idea_message`, `idea_svr_start`, `idea_session`) VALUES + (204, 1, 1, 1609233851, '1.0', 125.646, -922.827, 25.8177, 1.60839, 'Fix colon being too close to msg in admin chat', 2147483647, 0); +INSERT INTO `idea_main` (`idea_id`, `idea_server`, `idea_who_added`, `idea_when_added`, `idea_script_ver`, `idea_pos_x`, `idea_pos_y`, `idea_pos_z`, `idea_rot_z`, `idea_message`, `idea_svr_start`, `idea_session`) VALUES + (205, 1, 1, 1609233955, '1.0', -149.499, -1378.3, 26.1682, 1.54235, 'Add line of sight check to labels', 2147483647, 0); +INSERT INTO `idea_main` (`idea_id`, `idea_server`, `idea_who_added`, `idea_when_added`, `idea_script_ver`, `idea_pos_x`, `idea_pos_y`, `idea_pos_z`, `idea_rot_z`, `idea_message`, `idea_svr_start`, `idea_session`) VALUES + (206, 1, 1, 1609234666, '1.0', -365.363, 244.853, 60.8601, -0.181428, 'Remove cartel mansion gates in SSV', 2147483647, 0); +INSERT INTO `idea_main` (`idea_id`, `idea_server`, `idea_who_added`, `idea_when_added`, `idea_script_ver`, `idea_pos_x`, `idea_pos_y`, `idea_pos_z`, `idea_rot_z`, `idea_message`, `idea_svr_start`, `idea_session`) VALUES + (207, 1, 1, 1609235429, '1.0', 360.992, -1134.22, 22.9809, 0.125214, 'Delete gates at LCPD staunton station', 2147483647, 0); +INSERT INTO `idea_main` (`idea_id`, `idea_server`, `idea_who_added`, `idea_when_added`, `idea_script_ver`, `idea_pos_x`, `idea_pos_y`, `idea_pos_z`, `idea_rot_z`, `idea_message`, `idea_svr_start`, `idea_session`) VALUES + (208, 1, 1, 1609235439, '1.0', 346.371, -1157.53, 22.9809, 2.41115, 'Lock all job vehicles', 2147483647, 0); +INSERT INTO `idea_main` (`idea_id`, `idea_server`, `idea_who_added`, `idea_when_added`, `idea_script_ver`, `idea_pos_x`, `idea_pos_y`, `idea_pos_z`, `idea_rot_z`, `idea_message`, `idea_svr_start`, `idea_session`) VALUES + (209, 1, 1, 1609235450, '1.0', 334.967, -1187.78, 26.1682, -2.8111, 'Always respawn job vehicles as locked', 2147483647, 0); +INSERT INTO `idea_main` (`idea_id`, `idea_server`, `idea_who_added`, `idea_when_added`, `idea_script_ver`, `idea_pos_x`, `idea_pos_y`, `idea_pos_z`, `idea_rot_z`, `idea_message`, `idea_svr_start`, `idea_session`) VALUES + (210, 2, 1, 1609320596, '1.0', -807.673, -1186.79, 11.1053, -2.71469, 'Use pickup.isOnScreen check for label rendering', 2147483647, 0); +INSERT INTO `idea_main` (`idea_id`, `idea_server`, `idea_who_added`, `idea_when_added`, `idea_script_ver`, `idea_pos_x`, `idea_pos_y`, `idea_pos_z`, `idea_rot_z`, `idea_message`, `idea_svr_start`, `idea_session`) VALUES + (212, 2, 1, 1609322731, '1.0', -757.587, 558.332, 11.0974, -1.12629, 'Add cmds for biz buy/rent price', 2147483647, 0); +INSERT INTO `idea_main` (`idea_id`, `idea_server`, `idea_who_added`, `idea_when_added`, `idea_script_ver`, `idea_pos_x`, `idea_pos_y`, `idea_pos_z`, `idea_rot_z`, `idea_message`, `idea_svr_start`, `idea_session`) VALUES + (213, 2, 1, 1609322736, '1.0', -757.587, 558.332, 11.0974, -1.12629, 'Add cmds for house buy/rent price', 2147483647, 0); +INSERT INTO `idea_main` (`idea_id`, `idea_server`, `idea_who_added`, `idea_when_added`, `idea_script_ver`, `idea_pos_x`, `idea_pos_y`, `idea_pos_z`, `idea_rot_z`, `idea_message`, `idea_svr_start`, `idea_session`) VALUES + (214, 2, 1, 1609322861, '1.0', -877.584, 772.635, 11.0846, 0.274123, '(VC) Music records, record player, 8 track tapes', 2147483647, 0); +INSERT INTO `idea_main` (`idea_id`, `idea_server`, `idea_who_added`, `idea_when_added`, `idea_script_ver`, `idea_pos_x`, `idea_pos_y`, `idea_pos_z`, `idea_rot_z`, `idea_message`, `idea_svr_start`, `idea_session`) VALUES + (215, 1, 1, 1610089522, '1.0', 404.5, -1209.73, 25.8024, 3.13906, 'Staunton Patrol Sector 1', 1610089379, 0); +INSERT INTO `idea_main` (`idea_id`, `idea_server`, `idea_who_added`, `idea_when_added`, `idea_script_ver`, `idea_pos_x`, `idea_pos_y`, `idea_pos_z`, `idea_rot_z`, `idea_message`, `idea_svr_start`, `idea_session`) VALUES + (216, 1, 1, 1610089537, '1.0', 334.831, -1388.93, 25.8005, 1.56349, 'Staunton Patrol Sector 1', 1610089379, 0); +INSERT INTO `idea_main` (`idea_id`, `idea_server`, `idea_who_added`, `idea_when_added`, `idea_script_ver`, `idea_pos_x`, `idea_pos_y`, `idea_pos_z`, `idea_rot_z`, `idea_message`, `idea_svr_start`, `idea_session`) VALUES + (217, 1, 1, 1610089558, '1.0', 143.949, -1433.8, 25.802, -3.13242, 'Staunton Patrol Sector 1', 1610089379, 0); +INSERT INTO `idea_main` (`idea_id`, `idea_server`, `idea_who_added`, `idea_when_added`, `idea_script_ver`, `idea_pos_x`, `idea_pos_y`, `idea_pos_z`, `idea_rot_z`, `idea_message`, `idea_svr_start`, `idea_session`) VALUES + (218, 1, 1, 1610089570, '1.0', 144.79, -1592.07, 25.8019, 3.13841, 'Staunton Patrol Sector 1', 1610089379, 0); +INSERT INTO `idea_main` (`idea_id`, `idea_server`, `idea_who_added`, `idea_when_added`, `idea_script_ver`, `idea_pos_x`, `idea_pos_y`, `idea_pos_z`, `idea_rot_z`, `idea_message`, `idea_svr_start`, `idea_session`) VALUES + (219, 1, 1, 1610089581, '1.0', 49.9422, -1566.3, 25.8021, 0.0172569, 'Staunton Patrol Sector 1', 1610089379, 0); +INSERT INTO `idea_main` (`idea_id`, `idea_server`, `idea_who_added`, `idea_when_added`, `idea_script_ver`, `idea_pos_x`, `idea_pos_y`, `idea_pos_z`, `idea_rot_z`, `idea_message`, `idea_svr_start`, `idea_session`) VALUES + (220, 1, 1, 1610089596, '1.0', 48.9107, -1324.22, 25.8026, 0.00158491, 'Staunton Patrol Sector 1', 1610089379, 0); +INSERT INTO `idea_main` (`idea_id`, `idea_server`, `idea_who_added`, `idea_when_added`, `idea_script_ver`, `idea_pos_x`, `idea_pos_y`, `idea_pos_z`, `idea_rot_z`, `idea_message`, `idea_svr_start`, `idea_session`) VALUES + (221, 1, 1, 1610089611, '1.0', 50.0236, -1101.78, 25.8023, -0.00503862, 'Staunton Patrol Sector 1', 1610089379, 0); +INSERT INTO `idea_main` (`idea_id`, `idea_server`, `idea_who_added`, `idea_when_added`, `idea_script_ver`, `idea_pos_x`, `idea_pos_y`, `idea_pos_z`, `idea_rot_z`, `idea_message`, `idea_svr_start`, `idea_session`) VALUES + (222, 1, 1, 1610089621, '1.0', 131.694, -1111.31, 25.7952, -2.04836, 'Staunton Patrol Sector 1', 1610089379, 0); +INSERT INTO `idea_main` (`idea_id`, `idea_server`, `idea_who_added`, `idea_when_added`, `idea_script_ver`, `idea_pos_x`, `idea_pos_y`, `idea_pos_z`, `idea_rot_z`, `idea_message`, `idea_svr_start`, `idea_session`) VALUES + (223, 1, 1, 1610089630, '1.0', 189.424, -1063.86, 25.7998, -0.0182241, 'Staunton Patrol Sector 1', 1610089379, 0); +INSERT INTO `idea_main` (`idea_id`, `idea_server`, `idea_who_added`, `idea_when_added`, `idea_script_ver`, `idea_pos_x`, `idea_pos_y`, `idea_pos_z`, `idea_rot_z`, `idea_message`, `idea_svr_start`, `idea_session`) VALUES + (224, 1, 1, 1610089639, '1.0', 272.875, -1044.04, 25.8019, -1.59621, 'Staunton Patrol Sector 1', 1610089379, 0); +INSERT INTO `idea_main` (`idea_id`, `idea_server`, `idea_who_added`, `idea_when_added`, `idea_script_ver`, `idea_pos_x`, `idea_pos_y`, `idea_pos_z`, `idea_rot_z`, `idea_message`, `idea_svr_start`, `idea_session`) VALUES + (225, 1, 1, 1610089650, '1.0', 355.409, -847.512, 25.1725, -0.481276, 'Staunton Patrol Sector 1', 1610089379, 0); +INSERT INTO `idea_main` (`idea_id`, `idea_server`, `idea_who_added`, `idea_when_added`, `idea_script_ver`, `idea_pos_x`, `idea_pos_y`, `idea_pos_z`, `idea_rot_z`, `idea_message`, `idea_svr_start`, `idea_session`) VALUES + (226, 1, 1, 1610089671, '1.0', 521.08, -399.068, 20.9302, 1.57934, 'Staunton Patrol Sector 1', 1610089379, 0); +INSERT INTO `idea_main` (`idea_id`, `idea_server`, `idea_who_added`, `idea_when_added`, `idea_script_ver`, `idea_pos_x`, `idea_pos_y`, `idea_pos_z`, `idea_rot_z`, `idea_message`, `idea_svr_start`, `idea_session`) VALUES + (227, 1, 1, 1610089682, '1.0', 403.586, -471.898, 25.8008, -3.13068, 'Staunton Patrol Sector 1', 1610089379, 0); +INSERT INTO `idea_main` (`idea_id`, `idea_server`, `idea_who_added`, `idea_when_added`, `idea_script_ver`, `idea_pos_x`, `idea_pos_y`, `idea_pos_z`, `idea_rot_z`, `idea_message`, `idea_svr_start`, `idea_session`) VALUES + (228, 1, 1, 1610089689, '1.0', 403.915, -608.12, 25.7963, 3.13306, 'Staunton Patrol Sector 1', 1610089379, 0); +INSERT INTO `idea_main` (`idea_id`, `idea_server`, `idea_who_added`, `idea_when_added`, `idea_script_ver`, `idea_pos_x`, `idea_pos_y`, `idea_pos_z`, `idea_rot_z`, `idea_message`, `idea_svr_start`, `idea_session`) VALUES + (229, 1, 1, 1610089699, '1.0', 324.298, -687.727, 25.7945, 1.57342, 'Staunton Patrol Sector 1', 1610089379, 0); +INSERT INTO `idea_main` (`idea_id`, `idea_server`, `idea_who_added`, `idea_when_added`, `idea_script_ver`, `idea_pos_x`, `idea_pos_y`, `idea_pos_z`, `idea_rot_z`, `idea_message`, `idea_svr_start`, `idea_session`) VALUES + (230, 1, 1, 1610089708, '1.0', 230.278, -738.004, 25.8017, 2.5272, 'Staunton Patrol Sector 1', 1610089379, 0); +INSERT INTO `idea_main` (`idea_id`, `idea_server`, `idea_who_added`, `idea_when_added`, `idea_script_ver`, `idea_pos_x`, `idea_pos_y`, `idea_pos_z`, `idea_rot_z`, `idea_message`, `idea_svr_start`, `idea_session`) VALUES + (231, 1, 1, 1610089718, '1.0', 145.977, -907.481, 25.8045, 2.75241, 'Staunton Patrol Sector 1', 1610089379, 0); +INSERT INTO `idea_main` (`idea_id`, `idea_server`, `idea_who_added`, `idea_when_added`, `idea_script_ver`, `idea_pos_x`, `idea_pos_y`, `idea_pos_z`, `idea_rot_z`, `idea_message`, `idea_svr_start`, `idea_session`) VALUES + (232, 1, 1, 1610089735, '1.0', 81.1892, -924.272, 25.8088, 1.64597, 'Staunton Patrol Sector 1', 1610089379, 0); +INSERT INTO `idea_main` (`idea_id`, `idea_server`, `idea_who_added`, `idea_when_added`, `idea_script_ver`, `idea_pos_x`, `idea_pos_y`, `idea_pos_z`, `idea_rot_z`, `idea_message`, `idea_svr_start`, `idea_session`) VALUES + (233, 1, 1, 1610089752, '1.0', 35.0571, -1023.52, 25.7989, -3.13901, 'Staunton Patrol Sector 1', 1610089379, 0); +INSERT INTO `idea_main` (`idea_id`, `idea_server`, `idea_who_added`, `idea_when_added`, `idea_script_ver`, `idea_pos_x`, `idea_pos_y`, `idea_pos_z`, `idea_rot_z`, `idea_message`, `idea_svr_start`, `idea_session`) VALUES + (234, 1, 1, 1610089762, '1.0', 40.047, -1224.51, 25.801, 3.13417, 'Staunton Patrol Sector 1', 1610089379, 0); +INSERT INTO `idea_main` (`idea_id`, `idea_server`, `idea_who_added`, `idea_when_added`, `idea_script_ver`, `idea_pos_x`, `idea_pos_y`, `idea_pos_z`, `idea_rot_z`, `idea_message`, `idea_svr_start`, `idea_session`) VALUES + (235, 1, 1, 1610089771, '1.0', 105.924, -1313.85, 25.7972, -2.03191, 'Staunton Patrol Sector 1', 1610089379, 0); +INSERT INTO `idea_main` (`idea_id`, `idea_server`, `idea_who_added`, `idea_when_added`, `idea_script_ver`, `idea_pos_x`, `idea_pos_y`, `idea_pos_z`, `idea_rot_z`, `idea_message`, `idea_svr_start`, `idea_session`) VALUES + (236, 1, 1, 1610089783, '1.0', 149.367, -1377.78, 25.8016, 3.13387, 'Staunton Patrol Sector 1', 1610089379, 0); +INSERT INTO `idea_main` (`idea_id`, `idea_server`, `idea_who_added`, `idea_when_added`, `idea_script_ver`, `idea_pos_x`, `idea_pos_y`, `idea_pos_z`, `idea_rot_z`, `idea_message`, `idea_svr_start`, `idea_session`) VALUES + (237, 1, 1, 1610089793, '1.0', 271.09, -1399.14, 25.8019, -1.58546, 'Staunton Patrol Sector 1', 1610089379, 0); +INSERT INTO `idea_main` (`idea_id`, `idea_server`, `idea_who_added`, `idea_when_added`, `idea_script_ver`, `idea_pos_x`, `idea_pos_y`, `idea_pos_z`, `idea_rot_z`, `idea_message`, `idea_svr_start`, `idea_session`) VALUES + (238, 1, 1, 1610089820, '1.0', 303.644, -1079.71, 25.8029, -0.0351653, 'Staunton Patrol Sector 1', 1610089379, 0); +INSERT INTO `idea_main` (`idea_id`, `idea_server`, `idea_who_added`, `idea_when_added`, `idea_script_ver`, `idea_pos_x`, `idea_pos_y`, `idea_pos_z`, `idea_rot_z`, `idea_message`, `idea_svr_start`, `idea_session`) VALUES + (239, 1, 1, 1610089829, '1.0', 342.905, -873.693, 22.5513, -0.435446, 'Staunton Patrol Sector 1', 1610089379, 0); +INSERT INTO `idea_main` (`idea_id`, `idea_server`, `idea_who_added`, `idea_when_added`, `idea_script_ver`, `idea_pos_x`, `idea_pos_y`, `idea_pos_z`, `idea_rot_z`, `idea_message`, `idea_svr_start`, `idea_session`) VALUES + (240, 1, 1, 1610089849, '1.0', 542.573, -466.857, 23.3019, -0.472751, 'Staunton Patrol Sector 1', 1610089379, 0); +INSERT INTO `idea_main` (`idea_id`, `idea_server`, `idea_who_added`, `idea_when_added`, `idea_script_ver`, `idea_pos_x`, `idea_pos_y`, `idea_pos_z`, `idea_rot_z`, `idea_message`, `idea_svr_start`, `idea_session`) VALUES + (241, 1, 1, 1610089858, '1.0', 516.223, -398.79, 20.9548, 1.61617, 'Staunton Patrol Sector 1', 1610089379, 0); +INSERT INTO `idea_main` (`idea_id`, `idea_server`, `idea_who_added`, `idea_when_added`, `idea_script_ver`, `idea_pos_x`, `idea_pos_y`, `idea_pos_z`, `idea_rot_z`, `idea_message`, `idea_svr_start`, `idea_session`) VALUES + (242, 1, 1, 1610089867, '1.0', 404.847, -480.079, 25.7463, 3.12883, 'Staunton Patrol Sector 1', 1610089379, 0); +INSERT INTO `idea_main` (`idea_id`, `idea_server`, `idea_who_added`, `idea_when_added`, `idea_script_ver`, `idea_pos_x`, `idea_pos_y`, `idea_pos_z`, `idea_rot_z`, `idea_message`, `idea_svr_start`, `idea_session`) VALUES + (243, 1, 1, 1610089879, '1.0', 404.132, -908.893, 25.7912, 3.13617, 'Staunton Patrol Sector 1', 1610089379, 0); +INSERT INTO `idea_main` (`idea_id`, `idea_server`, `idea_who_added`, `idea_when_added`, `idea_script_ver`, `idea_pos_x`, `idea_pos_y`, `idea_pos_z`, `idea_rot_z`, `idea_message`, `idea_svr_start`, `idea_session`) VALUES + (244, 1, 1, 1610089888, '1.0', 403.389, -1098.75, 25.8034, 3.12562, 'Staunton Patrol Sector 1', 1610089379, 0); +INSERT INTO `idea_main` (`idea_id`, `idea_server`, `idea_who_added`, `idea_when_added`, `idea_script_ver`, `idea_pos_x`, `idea_pos_y`, `idea_pos_z`, `idea_rot_z`, `idea_message`, `idea_svr_start`, `idea_session`) VALUES + (256, 1, 1, 1610251067, '1.0', 928.993, -346.394, 9.86887, 1.77244, 'Add rgba colour picker', 1610250260, 0); +INSERT INTO `idea_main` (`idea_id`, `idea_server`, `idea_who_added`, `idea_when_added`, `idea_script_ver`, `idea_pos_x`, `idea_pos_y`, `idea_pos_z`, `idea_rot_z`, `idea_message`, `idea_svr_start`, `idea_session`) VALUES + (257, 1, 1, 1610251411, '1.0', 1308.86, -1017.92, 14.8858, -0.685351, 'Add RGBA colour saving to vehicle', 1610250260, 0); +INSERT INTO `idea_main` (`idea_id`, `idea_server`, `idea_who_added`, `idea_when_added`, `idea_script_ver`, `idea_pos_x`, `idea_pos_y`, `idea_pos_z`, `idea_rot_z`, `idea_message`, `idea_svr_start`, `idea_session`) VALUES + (258, 1, 4, 1610252071, '1.0', 1046.38, -666.92, 14.8227, 0.180096, 'Add character scale slider to new character window', 1610251764, 0); +INSERT INTO `idea_main` (`idea_id`, `idea_server`, `idea_who_added`, `idea_when_added`, `idea_script_ver`, `idea_pos_x`, `idea_pos_y`, `idea_pos_z`, `idea_rot_z`, `idea_message`, `idea_svr_start`, `idea_session`) VALUES + (259, 1, 4, 1610252083, '1.0', 1046.38, -666.92, 14.8227, 0.180096, 'Show character next to new character window', 1610251764, 0); +INSERT INTO `idea_main` (`idea_id`, `idea_server`, `idea_who_added`, `idea_when_added`, `idea_script_ver`, `idea_pos_x`, `idea_pos_y`, `idea_pos_z`, `idea_rot_z`, `idea_message`, `idea_svr_start`, `idea_session`) VALUES + (262, 1, 1, 1610352865, '1.0', 1166.35, -1106.47, 11.8602, -1.58256, 'Add biz hasGarage with enter/exit pos/int/vw', 1610322516, 0); +INSERT INTO `idea_main` (`idea_id`, `idea_server`, `idea_who_added`, `idea_when_added`, `idea_script_ver`, `idea_pos_x`, `idea_pos_y`, `idea_pos_z`, `idea_rot_z`, `idea_message`, `idea_svr_start`, `idea_session`) VALUES + (263, 1, 1, 1610764681, '1.0', 1132.85, -678.996, 14.9727, -3.12585, 'Command to revert account hotkeys back to default', 1610763688, 0); +INSERT INTO `idea_main` (`idea_id`, `idea_server`, `idea_who_added`, `idea_when_added`, `idea_script_ver`, `idea_pos_x`, `idea_pos_y`, `idea_pos_z`, `idea_rot_z`, `idea_message`, `idea_svr_start`, `idea_session`) VALUES + (264, 1, 2, 1610764796, '1.0', 1134.92, -685.119, 14.9727, 1.70852, 'List of vehicle names (to be used with /addveh, /tempveh).', 1610763688, 0); +INSERT INTO `idea_main` (`idea_id`, `idea_server`, `idea_who_added`, `idea_when_added`, `idea_script_ver`, `idea_pos_x`, `idea_pos_y`, `idea_pos_z`, `idea_rot_z`, `idea_message`, `idea_svr_start`, `idea_session`) VALUES + (265, 1, 1, 1610765130, '1.0', 958.348, -673.949, 14.9727, -0.0243053, 'Add emoji replace', 1610763688, 0); +INSERT INTO `idea_main` (`idea_id`, `idea_server`, `idea_who_added`, `idea_when_added`, `idea_script_ver`, `idea_pos_x`, `idea_pos_y`, `idea_pos_z`, `idea_rot_z`, `idea_message`, `idea_svr_start`, `idea_session`) VALUES + (266, 1, 2, 1610765274, '1.0', 953.956, -685.45, 14.9727, -0.525081, 'Command to open/close a vehicle trunk?', 1610763688, 0); +INSERT INTO `idea_main` (`idea_id`, `idea_server`, `idea_who_added`, `idea_when_added`, `idea_script_ver`, `idea_pos_x`, `idea_pos_y`, `idea_pos_z`, `idea_rot_z`, `idea_message`, `idea_svr_start`, `idea_session`) VALUES + (267, 1, 1, 1610765958, '1.0', 1092.34, -635.6, 14.9727, 1.57098, 'Prevent vehicle burning/exploding. Just disable it', 1610763688, 0); +INSERT INTO `idea_main` (`idea_id`, `idea_server`, `idea_who_added`, `idea_when_added`, `idea_script_ver`, `idea_pos_x`, `idea_pos_y`, `idea_pos_z`, `idea_rot_z`, `idea_message`, `idea_svr_start`, `idea_session`) VALUES + (271, 1, 1, 1610794424, '1.0', 1128.3, -631.851, 14.8227, -3.12625, 'GUI to show list of items and current market info (multipliers and such)', 1610794269, 0); +INSERT INTO `idea_main` (`idea_id`, `idea_server`, `idea_who_added`, `idea_when_added`, `idea_script_ver`, `idea_pos_x`, `idea_pos_y`, `idea_pos_z`, `idea_rot_z`, `idea_message`, `idea_svr_start`, `idea_session`) VALUES + (273, 3, 1, 1613882621, '1.0', 2364.28, 387.27, 6.08, 2.43, 'Reset password command for admins', 1613882251, 0); +INSERT INTO `idea_main` (`idea_id`, `idea_server`, `idea_who_added`, `idea_when_added`, `idea_script_ver`, `idea_pos_x`, `idea_pos_y`, `idea_pos_z`, `idea_rot_z`, `idea_message`, `idea_svr_start`, `idea_session`) VALUES + (276, 3, 1, 1613988102, '1.0', 2364.28, 387.27, 6.08, 2.43, 'Ped skin select with arrow keys', 1613987966, 0); +INSERT INTO `idea_main` (`idea_id`, `idea_server`, `idea_who_added`, `idea_when_added`, `idea_script_ver`, `idea_pos_x`, `idea_pos_y`, `idea_pos_z`, `idea_rot_z`, `idea_message`, `idea_svr_start`, `idea_session`) VALUES + (277, 3, 1, 1613988111, '1.0', 2364.28, 387.27, 6.08, 2.43, 'Select ped head, upper, and lower for IV', 1613987966, 0); +/*!40000 ALTER TABLE `idea_main` ENABLE KEYS */; + +-- Dumping structure for table gtac_main.ins_acct +CREATE TABLE IF NOT EXISTS `ins_acct` ( + `ins_acct_id` int(11) NOT NULL AUTO_INCREMENT, + `ins_acct_server` tinyint(2) NOT NULL DEFAULT '0', + `ins_acct_provider` int(11) NOT NULL DEFAULT '0', + `ins_acct_type` tinyint(2) NOT NULL DEFAULT '0', + `ins_acct_plan` int(11) NOT NULL DEFAULT '0', + `ins_acct_owner_type` int(11) NOT NULL DEFAULT '0', + `ins_acct_owner_id` int(11) NOT NULL DEFAULT '0', + `ins_acct_active` tinyint(1) NOT NULL DEFAULT '0', + `ins_acct_entity_type` int(11) NOT NULL DEFAULT '0', + `ins_acct_entity_id` int(11) NOT NULL DEFAULT '0', + PRIMARY KEY (`ins_acct_id`) USING BTREE +) ENGINE=InnoDB DEFAULT CHARSET=latin1 COMMENT='Insurance - Accounts'; + +-- Dumping data for table gtac_main.ins_acct: ~0 rows (approximately) +/*!40000 ALTER TABLE `ins_acct` DISABLE KEYS */; +/*!40000 ALTER TABLE `ins_acct` ENABLE KEYS */; + +-- Dumping structure for table gtac_main.ins_acct_history +CREATE TABLE IF NOT EXISTS `ins_acct_history` ( + `ins_acct_history_id` int(11) NOT NULL AUTO_INCREMENT, + `ins_acct_history_acct` int(11) NOT NULL DEFAULT '0', + `ins_acct_history_type` int(11) NOT NULL DEFAULT '0', + `ins_acct_history_paid` int(11) NOT NULL DEFAULT '0', + `ins_acct_history_total` int(11) NOT NULL DEFAULT '0', + `ins_acct_history_deleted` tinyint(1) NOT NULL DEFAULT '0', + `ins_acct_history_comment` varchar(256) NOT NULL DEFAULT '0', + PRIMARY KEY (`ins_acct_history_id`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Insurance - Account History'; + +-- Dumping data for table gtac_main.ins_acct_history: ~0 rows (approximately) +/*!40000 ALTER TABLE `ins_acct_history` DISABLE KEYS */; +/*!40000 ALTER TABLE `ins_acct_history` ENABLE KEYS */; + +-- Dumping structure for table gtac_main.ins_plan +CREATE TABLE IF NOT EXISTS `ins_plan` ( + `ins_plan_id` int(11) NOT NULL AUTO_INCREMENT, + `ins_plan_name` varchar(64) NOT NULL DEFAULT 'Unnamed', + `ins_plan_provider` int(11) NOT NULL DEFAULT '0', + `ins_plan_entity_type` int(11) NOT NULL DEFAULT '0', + `ins_plan_enabled` int(11) NOT NULL DEFAULT '0', + `ins_plan_setup_fee` int(11) NOT NULL DEFAULT '0', + `ins_plan_max_coverage` int(11) NOT NULL DEFAULT '0', + `ins_plan_min_coverage` int(11) NOT NULL DEFAULT '0', + `ins_plan_max_payout` int(11) NOT NULL DEFAULT '0', + `ins_plan_rate` int(11) NOT NULL DEFAULT '0', + `ins_plan_rate_multiplier` int(11) NOT NULL DEFAULT '0', + `ins_plan_minscore` int(11) NOT NULL DEFAULT '0', + PRIMARY KEY (`ins_plan_id`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Insurance - Plans'; + +-- Dumping data for table gtac_main.ins_plan: ~0 rows (approximately) +/*!40000 ALTER TABLE `ins_plan` DISABLE KEYS */; +/*!40000 ALTER TABLE `ins_plan` ENABLE KEYS */; + +-- Dumping structure for table gtac_main.ins_provider +CREATE TABLE IF NOT EXISTS `ins_provider` ( + `insurance_provider_id` mediumint(9) NOT NULL DEFAULT '0', + `insurance_provider_server` tinyint(2) NOT NULL DEFAULT '0', + `insurance_provider_name` varchar(64) NOT NULL DEFAULT '0', + `insurance_provider_type_flags` int(32) NOT NULL DEFAULT '0', + `insurance_provider_active` tinyint(1) NOT NULL DEFAULT '1', + `insurance_provider_owner_type` tinyint(1) NOT NULL DEFAULT '0', + `insurance_provider_owner_id` mediumint(9) NOT NULL DEFAULT '0', + PRIMARY KEY (`insurance_provider_id`) +) ENGINE=InnoDB DEFAULT CHARSET=latin1 COMMENT='Insurance - Providers'; + +-- Dumping data for table gtac_main.ins_provider: ~0 rows (approximately) +/*!40000 ALTER TABLE `ins_provider` DISABLE KEYS */; +/*!40000 ALTER TABLE `ins_provider` ENABLE KEYS */; + +-- Dumping structure for table gtac_main.int_main +CREATE TABLE IF NOT EXISTS `int_main` ( + `int_id` int(11) NOT NULL AUTO_INCREMENT, + `int_server` int(11) NOT NULL DEFAULT '0', + `int_name` varchar(50) NOT NULL DEFAULT 'Unnamed', + `int_type` int(11) NOT NULL DEFAULT '0', + `int_entrance_pos_x` float NOT NULL DEFAULT '0', + `int_entrance_pos_y` float NOT NULL DEFAULT '0', + `int_entrance_pos_z` float NOT NULL DEFAULT '0', + `int_entrance_rot_z` float NOT NULL DEFAULT '0', + `int_entrance_int` int(11) NOT NULL DEFAULT '0', + `int_entrance_vw` int(11) NOT NULL DEFAULT '0', + `int_exit_pos_x` float NOT NULL DEFAULT '0', + `int_exit_pos_y` float NOT NULL DEFAULT '0', + `int_exit_pos_z` float NOT NULL DEFAULT '0', + `int_exit_rot_z` float NOT NULL DEFAULT '0', + `int_exit_int` int(11) NOT NULL DEFAULT '0', + `int_exit_vw` int(11) NOT NULL DEFAULT '0', + PRIMARY KEY (`int_id`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Interiors'; + +-- Dumping data for table gtac_main.int_main: ~0 rows (approximately) +/*!40000 ALTER TABLE `int_main` DISABLE KEYS */; +/*!40000 ALTER TABLE `int_main` ENABLE KEYS */; + +-- Dumping structure for table gtac_main.item_main +CREATE TABLE IF NOT EXISTS `item_main` ( + `item_id` int(11) NOT NULL AUTO_INCREMENT, + `item_server` int(11) NOT NULL DEFAULT '0', + `item_type` int(11) NOT NULL DEFAULT '0', + `item_buy_price` int(11) NOT NULL DEFAULT '0', + `item_owner_type` int(11) NOT NULL DEFAULT '0', + `item_owner_id` int(11) NOT NULL DEFAULT '0', + `item_amount` int(11) NOT NULL DEFAULT '0', + `item_pos_x` float NOT NULL DEFAULT '0', + `item_pos_y` float NOT NULL DEFAULT '0', + `item_pos_z` float NOT NULL DEFAULT '0', + `item_int` int(11) NOT NULL DEFAULT '0', + `item_vw` int(11) NOT NULL DEFAULT '0', + `item_value` int(11) NOT NULL DEFAULT '0', + PRIMARY KEY (`item_id`) +) ENGINE=InnoDB AUTO_INCREMENT=3 DEFAULT CHARSET=utf8 COMMENT='Items'; + +-- Dumping data for table gtac_main.item_main: ~1 rows (approximately) +/*!40000 ALTER TABLE `item_main` DISABLE KEYS */; +INSERT INTO `item_main` (`item_id`, `item_server`, `item_type`, `item_buy_price`, `item_owner_type`, `item_owner_id`, `item_amount`, `item_pos_x`, `item_pos_y`, `item_pos_z`, `item_int`, `item_vw`, `item_value`) VALUES + (2, 4, 208, 0, 1, 8, 1, 0, 0, 0, 0, 0, 788500); +/*!40000 ALTER TABLE `item_main` ENABLE KEYS */; + +-- Dumping structure for table gtac_main.item_type +CREATE TABLE IF NOT EXISTS `item_type` ( + `item_type_id` int(11) NOT NULL AUTO_INCREMENT, + `item_type_server` int(11) NOT NULL DEFAULT '0', + `item_type_name` varchar(64) NOT NULL DEFAULT '', + `item_type_use_type` int(11) NOT NULL DEFAULT '0', + `item_type_use_id` int(11) NOT NULL DEFAULT '0', + `item_type_use_value` int(11) NOT NULL DEFAULT '0', + `item_type_order_price` int(11) NOT NULL DEFAULT '0', + `item_type_drop_type` int(11) NOT NULL DEFAULT '0', + `item_type_drop_model` int(11) NOT NULL DEFAULT '0', + `item_type_drop_pos_x` float NOT NULL DEFAULT '0', + `item_type_drop_pos_y` float NOT NULL DEFAULT '0', + `item_type_drop_pos_z` float NOT NULL DEFAULT '0', + `item_type_drop_rot_x` float NOT NULL DEFAULT '0', + `item_type_drop_rot_y` float NOT NULL DEFAULT '0', + `item_type_drop_rot_z` float NOT NULL DEFAULT '0', + `item_type_drop_scale_x` float NOT NULL DEFAULT '0', + `item_type_drop_scale_y` float NOT NULL DEFAULT '0', + `item_type_drop_scale_z` float NOT NULL DEFAULT '0', + `item_type_image_small` varchar(50) NOT NULL DEFAULT 'no-image.png', + `item_type_image_large` varchar(50) NOT NULL DEFAULT 'no-image.png', + `item_type_image_hotbar` varchar(50) NOT NULL DEFAULT 'no-image.png', + `item_type_size` int(11) NOT NULL DEFAULT '0', + `item_type_capacity` int(11) NOT NULL DEFAULT '0', + `item_type_demand_multiplier` float NOT NULL DEFAULT '1', + `item_type_supply_multiplier` float NOT NULL DEFAULT '1', + `item_type_risk_multiplier` float NOT NULL DEFAULT '1', + `item_type_enabled` tinyint(4) NOT NULL DEFAULT '1', + `item_type_delay_switch` int(11) NOT NULL DEFAULT '0', + `item_type_delay_use` int(11) NOT NULL DEFAULT '0', + `item_type_delay_pickup` int(11) NOT NULL DEFAULT '0', + `item_type_delay_put` int(11) NOT NULL DEFAULT '0', + `item_type_delay_take` int(11) NOT NULL DEFAULT '0', + `item_type_delay_give` int(11) NOT NULL DEFAULT '0', + `item_type_delay_drop` int(11) NOT NULL DEFAULT '0', + PRIMARY KEY (`item_type_id`), + KEY `item_type_server` (`item_type_server`), + CONSTRAINT `fk_item_type_server` FOREIGN KEY (`item_type_server`) REFERENCES `svr_main` (`svr_id`) ON DELETE CASCADE ON UPDATE CASCADE +) ENGINE=InnoDB AUTO_INCREMENT=212 DEFAULT CHARSET=utf8 COMMENT='Item Types'; + +-- Dumping data for table gtac_main.item_type: ~194 rows (approximately) +/*!40000 ALTER TABLE `item_type` DISABLE KEYS */; +INSERT INTO `item_type` (`item_type_id`, `item_type_server`, `item_type_name`, `item_type_use_type`, `item_type_use_id`, `item_type_use_value`, `item_type_order_price`, `item_type_drop_type`, `item_type_drop_model`, `item_type_drop_pos_x`, `item_type_drop_pos_y`, `item_type_drop_pos_z`, `item_type_drop_rot_x`, `item_type_drop_rot_y`, `item_type_drop_rot_z`, `item_type_drop_scale_x`, `item_type_drop_scale_y`, `item_type_drop_scale_z`, `item_type_image_small`, `item_type_image_large`, `item_type_image_hotbar`, `item_type_size`, `item_type_capacity`, `item_type_demand_multiplier`, `item_type_supply_multiplier`, `item_type_risk_multiplier`, `item_type_enabled`, `item_type_delay_switch`, `item_type_delay_use`, `item_type_delay_pickup`, `item_type_delay_put`, `item_type_delay_take`, `item_type_delay_give`, `item_type_delay_drop`) VALUES + (1, 1, 'Baseball Bat', 1, 1, 0, 25, 1, 172, 0, 0, -1, 1.6, 0, 0, 0, 0, 0, 'no-image.png', 'no-image.png', 'no-image.png', 0, 0, 1, 1, 1, 1, 500, 1500, 750, 750, 750, 500, 500); +INSERT INTO `item_type` (`item_type_id`, `item_type_server`, `item_type_name`, `item_type_use_type`, `item_type_use_id`, `item_type_use_value`, `item_type_order_price`, `item_type_drop_type`, `item_type_drop_model`, `item_type_drop_pos_x`, `item_type_drop_pos_y`, `item_type_drop_pos_z`, `item_type_drop_rot_x`, `item_type_drop_rot_y`, `item_type_drop_rot_z`, `item_type_drop_scale_x`, `item_type_drop_scale_y`, `item_type_drop_scale_z`, `item_type_image_small`, `item_type_image_large`, `item_type_image_hotbar`, `item_type_size`, `item_type_capacity`, `item_type_demand_multiplier`, `item_type_supply_multiplier`, `item_type_risk_multiplier`, `item_type_enabled`, `item_type_delay_switch`, `item_type_delay_use`, `item_type_delay_pickup`, `item_type_delay_put`, `item_type_delay_take`, `item_type_delay_give`, `item_type_delay_drop`) VALUES + (5, 1, 'Colt 45', 1, 2, 0, 350, 1, 173, 0, 0, -1, 1.6, 0, 0, 0, 0, 0, 'no-image.png', 'no-image.png', 'no-image.png', 0, 0, 1, 1, 2, 1, 500, 1500, 750, 750, 750, 500, 500); +INSERT INTO `item_type` (`item_type_id`, `item_type_server`, `item_type_name`, `item_type_use_type`, `item_type_use_id`, `item_type_use_value`, `item_type_order_price`, `item_type_drop_type`, `item_type_drop_model`, `item_type_drop_pos_x`, `item_type_drop_pos_y`, `item_type_drop_pos_z`, `item_type_drop_rot_x`, `item_type_drop_rot_y`, `item_type_drop_rot_z`, `item_type_drop_scale_x`, `item_type_drop_scale_y`, `item_type_drop_scale_z`, `item_type_image_small`, `item_type_image_large`, `item_type_image_hotbar`, `item_type_size`, `item_type_capacity`, `item_type_demand_multiplier`, `item_type_supply_multiplier`, `item_type_risk_multiplier`, `item_type_enabled`, `item_type_delay_switch`, `item_type_delay_use`, `item_type_delay_pickup`, `item_type_delay_put`, `item_type_delay_take`, `item_type_delay_give`, `item_type_delay_drop`) VALUES + (6, 1, 'Uzi', 1, 3, 0, 500, 1, 178, 0, 0, -1, 1.6, 0, 0, 0, 0, 0, 'no-image.png', 'no-image.png', 'no-image.png', 0, 0, 1, 1, 3, 1, 500, 1500, 750, 750, 750, 500, 500); +INSERT INTO `item_type` (`item_type_id`, `item_type_server`, `item_type_name`, `item_type_use_type`, `item_type_use_id`, `item_type_use_value`, `item_type_order_price`, `item_type_drop_type`, `item_type_drop_model`, `item_type_drop_pos_x`, `item_type_drop_pos_y`, `item_type_drop_pos_z`, `item_type_drop_rot_x`, `item_type_drop_rot_y`, `item_type_drop_rot_z`, `item_type_drop_scale_x`, `item_type_drop_scale_y`, `item_type_drop_scale_z`, `item_type_image_small`, `item_type_image_large`, `item_type_image_hotbar`, `item_type_size`, `item_type_capacity`, `item_type_demand_multiplier`, `item_type_supply_multiplier`, `item_type_risk_multiplier`, `item_type_enabled`, `item_type_delay_switch`, `item_type_delay_use`, `item_type_delay_pickup`, `item_type_delay_put`, `item_type_delay_take`, `item_type_delay_give`, `item_type_delay_drop`) VALUES + (7, 1, 'Shotgun', 1, 4, 0, 450, 1, 176, 0, 0, -1, 1.6, 0, 0, 0, 0, 0, 'no-image.png', 'no-image.png', 'no-image.png', 0, 0, 1, 1, 3, 1, 500, 1500, 750, 750, 750, 500, 500); +INSERT INTO `item_type` (`item_type_id`, `item_type_server`, `item_type_name`, `item_type_use_type`, `item_type_use_id`, `item_type_use_value`, `item_type_order_price`, `item_type_drop_type`, `item_type_drop_model`, `item_type_drop_pos_x`, `item_type_drop_pos_y`, `item_type_drop_pos_z`, `item_type_drop_rot_x`, `item_type_drop_rot_y`, `item_type_drop_rot_z`, `item_type_drop_scale_x`, `item_type_drop_scale_y`, `item_type_drop_scale_z`, `item_type_image_small`, `item_type_image_large`, `item_type_image_hotbar`, `item_type_size`, `item_type_capacity`, `item_type_demand_multiplier`, `item_type_supply_multiplier`, `item_type_risk_multiplier`, `item_type_enabled`, `item_type_delay_switch`, `item_type_delay_use`, `item_type_delay_pickup`, `item_type_delay_put`, `item_type_delay_take`, `item_type_delay_give`, `item_type_delay_drop`) VALUES + (8, 1, 'AK-47', 1, 5, 0, 1000, 1, 171, 0, 0, -1, 1.6, 0, 0, 0, 0, 0, 'no-image.png', 'no-image.png', 'no-image.png', 0, 0, 1, 1, 5, 1, 500, 1500, 750, 750, 750, 500, 500); +INSERT INTO `item_type` (`item_type_id`, `item_type_server`, `item_type_name`, `item_type_use_type`, `item_type_use_id`, `item_type_use_value`, `item_type_order_price`, `item_type_drop_type`, `item_type_drop_model`, `item_type_drop_pos_x`, `item_type_drop_pos_y`, `item_type_drop_pos_z`, `item_type_drop_rot_x`, `item_type_drop_rot_y`, `item_type_drop_rot_z`, `item_type_drop_scale_x`, `item_type_drop_scale_y`, `item_type_drop_scale_z`, `item_type_image_small`, `item_type_image_large`, `item_type_image_hotbar`, `item_type_size`, `item_type_capacity`, `item_type_demand_multiplier`, `item_type_supply_multiplier`, `item_type_risk_multiplier`, `item_type_enabled`, `item_type_delay_switch`, `item_type_delay_use`, `item_type_delay_pickup`, `item_type_delay_put`, `item_type_delay_take`, `item_type_delay_give`, `item_type_delay_drop`) VALUES + (9, 1, 'M16', 1, 6, 0, 2000, 1, 180, 0, 0, -1, 1.6, 0, 0, 0, 0, 0, 'no-image.png', 'no-image.png', 'no-image.png', 0, 0, 1, 1, 5, 1, 500, 1500, 750, 750, 750, 500, 500); +INSERT INTO `item_type` (`item_type_id`, `item_type_server`, `item_type_name`, `item_type_use_type`, `item_type_use_id`, `item_type_use_value`, `item_type_order_price`, `item_type_drop_type`, `item_type_drop_model`, `item_type_drop_pos_x`, `item_type_drop_pos_y`, `item_type_drop_pos_z`, `item_type_drop_rot_x`, `item_type_drop_rot_y`, `item_type_drop_rot_z`, `item_type_drop_scale_x`, `item_type_drop_scale_y`, `item_type_drop_scale_z`, `item_type_image_small`, `item_type_image_large`, `item_type_image_hotbar`, `item_type_size`, `item_type_capacity`, `item_type_demand_multiplier`, `item_type_supply_multiplier`, `item_type_risk_multiplier`, `item_type_enabled`, `item_type_delay_switch`, `item_type_delay_use`, `item_type_delay_pickup`, `item_type_delay_put`, `item_type_delay_take`, `item_type_delay_give`, `item_type_delay_drop`) VALUES + (10, 1, 'Sniper Rifle', 1, 7, 0, 2500, 1, 177, 0, 0, -1, 1.6, 0, 0, 0, 0, 0, 'no-image.png', 'no-image.png', 'no-image.png', 0, 0, 1, 1, 5, 1, 500, 1500, 750, 750, 750, 500, 500); +INSERT INTO `item_type` (`item_type_id`, `item_type_server`, `item_type_name`, `item_type_use_type`, `item_type_use_id`, `item_type_use_value`, `item_type_order_price`, `item_type_drop_type`, `item_type_drop_model`, `item_type_drop_pos_x`, `item_type_drop_pos_y`, `item_type_drop_pos_z`, `item_type_drop_rot_x`, `item_type_drop_rot_y`, `item_type_drop_rot_z`, `item_type_drop_scale_x`, `item_type_drop_scale_y`, `item_type_drop_scale_z`, `item_type_image_small`, `item_type_image_large`, `item_type_image_hotbar`, `item_type_size`, `item_type_capacity`, `item_type_demand_multiplier`, `item_type_supply_multiplier`, `item_type_risk_multiplier`, `item_type_enabled`, `item_type_delay_switch`, `item_type_delay_use`, `item_type_delay_pickup`, `item_type_delay_put`, `item_type_delay_take`, `item_type_delay_give`, `item_type_delay_drop`) VALUES + (11, 1, 'RPG', 1, 8, 0, 10000, 1, 175, 0, 0, -1, 1.6, 0, 0, 0, 0, 0, 'no-image.png', 'no-image.png', 'no-image.png', 0, 0, 1, 1, 8, 1, 500, 1500, 750, 750, 750, 500, 500); +INSERT INTO `item_type` (`item_type_id`, `item_type_server`, `item_type_name`, `item_type_use_type`, `item_type_use_id`, `item_type_use_value`, `item_type_order_price`, `item_type_drop_type`, `item_type_drop_model`, `item_type_drop_pos_x`, `item_type_drop_pos_y`, `item_type_drop_pos_z`, `item_type_drop_rot_x`, `item_type_drop_rot_y`, `item_type_drop_rot_z`, `item_type_drop_scale_x`, `item_type_drop_scale_y`, `item_type_drop_scale_z`, `item_type_image_small`, `item_type_image_large`, `item_type_image_hotbar`, `item_type_size`, `item_type_capacity`, `item_type_demand_multiplier`, `item_type_supply_multiplier`, `item_type_risk_multiplier`, `item_type_enabled`, `item_type_delay_switch`, `item_type_delay_use`, `item_type_delay_pickup`, `item_type_delay_put`, `item_type_delay_take`, `item_type_delay_give`, `item_type_delay_drop`) VALUES + (12, 1, 'Flamethrower', 1, 9, 0, 7500, 1, 181, 0, 0, -1, 1.6, 0, 0, 0, 0, 0, 'no-image.png', 'no-image.png', 'no-image.png', 0, 0, 1, 1, 6, 1, 500, 1500, 750, 750, 750, 500, 500); +INSERT INTO `item_type` (`item_type_id`, `item_type_server`, `item_type_name`, `item_type_use_type`, `item_type_use_id`, `item_type_use_value`, `item_type_order_price`, `item_type_drop_type`, `item_type_drop_model`, `item_type_drop_pos_x`, `item_type_drop_pos_y`, `item_type_drop_pos_z`, `item_type_drop_rot_x`, `item_type_drop_rot_y`, `item_type_drop_rot_z`, `item_type_drop_scale_x`, `item_type_drop_scale_y`, `item_type_drop_scale_z`, `item_type_image_small`, `item_type_image_large`, `item_type_image_hotbar`, `item_type_size`, `item_type_capacity`, `item_type_demand_multiplier`, `item_type_supply_multiplier`, `item_type_risk_multiplier`, `item_type_enabled`, `item_type_delay_switch`, `item_type_delay_use`, `item_type_delay_pickup`, `item_type_delay_put`, `item_type_delay_take`, `item_type_delay_give`, `item_type_delay_drop`) VALUES + (13, 1, 'Molotov', 1, 10, 0, 150, 1, 174, 0, 0, -1, 1.6, 0, 0, 0, 0, 0, 'no-image.png', 'no-image.png', 'no-image.png', 0, 0, 1, 1, 3, 1, 500, 1500, 750, 750, 750, 500, 500); +INSERT INTO `item_type` (`item_type_id`, `item_type_server`, `item_type_name`, `item_type_use_type`, `item_type_use_id`, `item_type_use_value`, `item_type_order_price`, `item_type_drop_type`, `item_type_drop_model`, `item_type_drop_pos_x`, `item_type_drop_pos_y`, `item_type_drop_pos_z`, `item_type_drop_rot_x`, `item_type_drop_rot_y`, `item_type_drop_rot_z`, `item_type_drop_scale_x`, `item_type_drop_scale_y`, `item_type_drop_scale_z`, `item_type_image_small`, `item_type_image_large`, `item_type_image_hotbar`, `item_type_size`, `item_type_capacity`, `item_type_demand_multiplier`, `item_type_supply_multiplier`, `item_type_risk_multiplier`, `item_type_enabled`, `item_type_delay_switch`, `item_type_delay_use`, `item_type_delay_pickup`, `item_type_delay_put`, `item_type_delay_take`, `item_type_delay_give`, `item_type_delay_drop`) VALUES + (14, 1, 'Grenade', 1, 11, 0, 500, 1, 170, 0, 0, -1, 1.6, 0, 0, 0, 0, 0, 'no-image.png', 'no-image.png', 'no-image.png', 0, 0, 1, 1, 5, 1, 500, 1500, 750, 750, 750, 500, 500); +INSERT INTO `item_type` (`item_type_id`, `item_type_server`, `item_type_name`, `item_type_use_type`, `item_type_use_id`, `item_type_use_value`, `item_type_order_price`, `item_type_drop_type`, `item_type_drop_model`, `item_type_drop_pos_x`, `item_type_drop_pos_y`, `item_type_drop_pos_z`, `item_type_drop_rot_x`, `item_type_drop_rot_y`, `item_type_drop_rot_z`, `item_type_drop_scale_x`, `item_type_drop_scale_y`, `item_type_drop_scale_z`, `item_type_image_small`, `item_type_image_large`, `item_type_image_hotbar`, `item_type_size`, `item_type_capacity`, `item_type_demand_multiplier`, `item_type_supply_multiplier`, `item_type_risk_multiplier`, `item_type_enabled`, `item_type_delay_switch`, `item_type_delay_use`, `item_type_delay_pickup`, `item_type_delay_put`, `item_type_delay_take`, `item_type_delay_give`, `item_type_delay_drop`) VALUES + (15, 1, 'Remote', 1, 0, 0, 0, 1, 182, 0, 0, -1, 1.6, 0, 0, 0, 0, 0, 'no-image.png', 'no-image.png', 'no-image.png', 0, 0, 1, 1, 1, 1, 500, 1500, 750, 750, 750, 500, 500); +INSERT INTO `item_type` (`item_type_id`, `item_type_server`, `item_type_name`, `item_type_use_type`, `item_type_use_id`, `item_type_use_value`, `item_type_order_price`, `item_type_drop_type`, `item_type_drop_model`, `item_type_drop_pos_x`, `item_type_drop_pos_y`, `item_type_drop_pos_z`, `item_type_drop_rot_x`, `item_type_drop_rot_y`, `item_type_drop_rot_z`, `item_type_drop_scale_x`, `item_type_drop_scale_y`, `item_type_drop_scale_z`, `item_type_image_small`, `item_type_image_large`, `item_type_image_hotbar`, `item_type_size`, `item_type_capacity`, `item_type_demand_multiplier`, `item_type_supply_multiplier`, `item_type_risk_multiplier`, `item_type_enabled`, `item_type_delay_switch`, `item_type_delay_use`, `item_type_delay_pickup`, `item_type_delay_put`, `item_type_delay_take`, `item_type_delay_give`, `item_type_delay_drop`) VALUES + (16, 1, 'Phone', 3, 0, 0, 250, 1, 182, 0, 0, -1, 1.6, 0, 0, 0, 0.5, 1.3, 'no-image.png', 'no-image.png', 'no-image.png', 0, 0, 1, 1, 1, 1, 500, 1500, 750, 750, 750, 500, 500); +INSERT INTO `item_type` (`item_type_id`, `item_type_server`, `item_type_name`, `item_type_use_type`, `item_type_use_id`, `item_type_use_value`, `item_type_order_price`, `item_type_drop_type`, `item_type_drop_model`, `item_type_drop_pos_x`, `item_type_drop_pos_y`, `item_type_drop_pos_z`, `item_type_drop_rot_x`, `item_type_drop_rot_y`, `item_type_drop_rot_z`, `item_type_drop_scale_x`, `item_type_drop_scale_y`, `item_type_drop_scale_z`, `item_type_image_small`, `item_type_image_large`, `item_type_image_hotbar`, `item_type_size`, `item_type_capacity`, `item_type_demand_multiplier`, `item_type_supply_multiplier`, `item_type_risk_multiplier`, `item_type_enabled`, `item_type_delay_switch`, `item_type_delay_use`, `item_type_delay_pickup`, `item_type_delay_put`, `item_type_delay_take`, `item_type_delay_give`, `item_type_delay_drop`) VALUES + (25, 1, 'Radio', 32, 0, 0, 0, 1, 182, 0, 0, -1, 1.6, 0, 0, 0, 0, 0, 'no-image.png', 'no-image.png', 'no-image.png', 0, 0, 1, 1, 1, 1, 500, 1500, 750, 750, 750, 500, 500); +INSERT INTO `item_type` (`item_type_id`, `item_type_server`, `item_type_name`, `item_type_use_type`, `item_type_use_id`, `item_type_use_value`, `item_type_order_price`, `item_type_drop_type`, `item_type_drop_model`, `item_type_drop_pos_x`, `item_type_drop_pos_y`, `item_type_drop_pos_z`, `item_type_drop_rot_x`, `item_type_drop_rot_y`, `item_type_drop_rot_z`, `item_type_drop_scale_x`, `item_type_drop_scale_y`, `item_type_drop_scale_z`, `item_type_image_small`, `item_type_image_large`, `item_type_image_hotbar`, `item_type_size`, `item_type_capacity`, `item_type_demand_multiplier`, `item_type_supply_multiplier`, `item_type_risk_multiplier`, `item_type_enabled`, `item_type_delay_switch`, `item_type_delay_use`, `item_type_delay_pickup`, `item_type_delay_put`, `item_type_delay_take`, `item_type_delay_give`, `item_type_delay_drop`) VALUES + (29, 1, 'Pot Seed', 13, 0, 0, 2, 1, 1319, 0, 0, -1, 1.6, 0, 0, 0, 0, 0, 'no-image.png', 'no-image.png', 'no-image.png', 0, 0, 1, 1, 1, 1, 500, 1500, 750, 750, 750, 500, 500); +INSERT INTO `item_type` (`item_type_id`, `item_type_server`, `item_type_name`, `item_type_use_type`, `item_type_use_id`, `item_type_use_value`, `item_type_order_price`, `item_type_drop_type`, `item_type_drop_model`, `item_type_drop_pos_x`, `item_type_drop_pos_y`, `item_type_drop_pos_z`, `item_type_drop_rot_x`, `item_type_drop_rot_y`, `item_type_drop_rot_z`, `item_type_drop_scale_x`, `item_type_drop_scale_y`, `item_type_drop_scale_z`, `item_type_image_small`, `item_type_image_large`, `item_type_image_hotbar`, `item_type_size`, `item_type_capacity`, `item_type_demand_multiplier`, `item_type_supply_multiplier`, `item_type_risk_multiplier`, `item_type_enabled`, `item_type_delay_switch`, `item_type_delay_use`, `item_type_delay_pickup`, `item_type_delay_put`, `item_type_delay_take`, `item_type_delay_give`, `item_type_delay_drop`) VALUES + (30, 1, 'Weed', 14, 0, 0, 20, 1, 1319, 0, 0, -1, 1.6, 0, 0, 0.3, 0.3, 0.3, 'no-image.png', 'no-image.png', 'no-image.png', 0, 0, 1, 1, 1, 1, 500, 1500, 750, 750, 750, 500, 500); +INSERT INTO `item_type` (`item_type_id`, `item_type_server`, `item_type_name`, `item_type_use_type`, `item_type_use_id`, `item_type_use_value`, `item_type_order_price`, `item_type_drop_type`, `item_type_drop_model`, `item_type_drop_pos_x`, `item_type_drop_pos_y`, `item_type_drop_pos_z`, `item_type_drop_rot_x`, `item_type_drop_rot_y`, `item_type_drop_rot_z`, `item_type_drop_scale_x`, `item_type_drop_scale_y`, `item_type_drop_scale_z`, `item_type_image_small`, `item_type_image_large`, `item_type_image_hotbar`, `item_type_size`, `item_type_capacity`, `item_type_demand_multiplier`, `item_type_supply_multiplier`, `item_type_risk_multiplier`, `item_type_enabled`, `item_type_delay_switch`, `item_type_delay_use`, `item_type_delay_pickup`, `item_type_delay_put`, `item_type_delay_take`, `item_type_delay_give`, `item_type_delay_drop`) VALUES + (31, 1, 'Meth', 16, 0, 0, 100, 1, 1319, 0, 0, -1, 1.6, 0, 0, 0.3, 0.3, 0.3, 'no-image.png', 'no-image.png', 'no-image.png', 0, 100, 1, 1, 3, 1, 500, 1500, 750, 750, 750, 500, 500); +INSERT INTO `item_type` (`item_type_id`, `item_type_server`, `item_type_name`, `item_type_use_type`, `item_type_use_id`, `item_type_use_value`, `item_type_order_price`, `item_type_drop_type`, `item_type_drop_model`, `item_type_drop_pos_x`, `item_type_drop_pos_y`, `item_type_drop_pos_z`, `item_type_drop_rot_x`, `item_type_drop_rot_y`, `item_type_drop_rot_z`, `item_type_drop_scale_x`, `item_type_drop_scale_y`, `item_type_drop_scale_z`, `item_type_image_small`, `item_type_image_large`, `item_type_image_hotbar`, `item_type_size`, `item_type_capacity`, `item_type_demand_multiplier`, `item_type_supply_multiplier`, `item_type_risk_multiplier`, `item_type_enabled`, `item_type_delay_switch`, `item_type_delay_use`, `item_type_delay_pickup`, `item_type_delay_put`, `item_type_delay_take`, `item_type_delay_give`, `item_type_delay_drop`) VALUES + (32, 1, 'Coke', 15, 0, 0, 250, 1, 1319, 0, 0, -1, 1.6, 0, 0, 0.3, 0.3, 0.3, 'no-image.png', 'no-image.png', 'no-image.png', 0, 100, 1, 1, 4, 1, 500, 1500, 750, 750, 750, 500, 500); +INSERT INTO `item_type` (`item_type_id`, `item_type_server`, `item_type_name`, `item_type_use_type`, `item_type_use_id`, `item_type_use_value`, `item_type_order_price`, `item_type_drop_type`, `item_type_drop_model`, `item_type_drop_pos_x`, `item_type_drop_pos_y`, `item_type_drop_pos_z`, `item_type_drop_rot_x`, `item_type_drop_rot_y`, `item_type_drop_rot_z`, `item_type_drop_scale_x`, `item_type_drop_scale_y`, `item_type_drop_scale_z`, `item_type_image_small`, `item_type_image_large`, `item_type_image_hotbar`, `item_type_size`, `item_type_capacity`, `item_type_demand_multiplier`, `item_type_supply_multiplier`, `item_type_risk_multiplier`, `item_type_enabled`, `item_type_delay_switch`, `item_type_delay_use`, `item_type_delay_pickup`, `item_type_delay_put`, `item_type_delay_take`, `item_type_delay_give`, `item_type_delay_drop`) VALUES + (33, 1, 'Wallet', 9, 0, 0, 10, 1, 1319, 0, 0, -1, 1.6, 0, 0, 0.3, 0.3, 0.2, 'no-image.png', 'no-image.png', 'no-image.png', 0, 0, 1, 1, 1, 1, 500, 1500, 750, 750, 750, 500, 500); +INSERT INTO `item_type` (`item_type_id`, `item_type_server`, `item_type_name`, `item_type_use_type`, `item_type_use_id`, `item_type_use_value`, `item_type_order_price`, `item_type_drop_type`, `item_type_drop_model`, `item_type_drop_pos_x`, `item_type_drop_pos_y`, `item_type_drop_pos_z`, `item_type_drop_rot_x`, `item_type_drop_rot_y`, `item_type_drop_rot_z`, `item_type_drop_scale_x`, `item_type_drop_scale_y`, `item_type_drop_scale_z`, `item_type_image_small`, `item_type_image_large`, `item_type_image_hotbar`, `item_type_size`, `item_type_capacity`, `item_type_demand_multiplier`, `item_type_supply_multiplier`, `item_type_risk_multiplier`, `item_type_enabled`, `item_type_delay_switch`, `item_type_delay_use`, `item_type_delay_pickup`, `item_type_delay_put`, `item_type_delay_take`, `item_type_delay_give`, `item_type_delay_drop`) VALUES + (34, 1, 'Crate', 9, 0, 0, 25, 1, 1343, 0, 0, -1, 1.6, 0, 0, 0, 0, 0, 'no-image.png', 'no-image.png', 'no-image.png', 0, 0, 1, 1, 1, 1, 500, 1500, 750, 750, 750, 500, 500); +INSERT INTO `item_type` (`item_type_id`, `item_type_server`, `item_type_name`, `item_type_use_type`, `item_type_use_id`, `item_type_use_value`, `item_type_order_price`, `item_type_drop_type`, `item_type_drop_model`, `item_type_drop_pos_x`, `item_type_drop_pos_y`, `item_type_drop_pos_z`, `item_type_drop_rot_x`, `item_type_drop_rot_y`, `item_type_drop_rot_z`, `item_type_drop_scale_x`, `item_type_drop_scale_y`, `item_type_drop_scale_z`, `item_type_image_small`, `item_type_image_large`, `item_type_image_hotbar`, `item_type_size`, `item_type_capacity`, `item_type_demand_multiplier`, `item_type_supply_multiplier`, `item_type_risk_multiplier`, `item_type_enabled`, `item_type_delay_switch`, `item_type_delay_use`, `item_type_delay_pickup`, `item_type_delay_put`, `item_type_delay_take`, `item_type_delay_give`, `item_type_delay_drop`) VALUES + (35, 1, 'Outfit', 6, 0, 0, 50, 1, 1319, 0, 0, -1, 1.6, 0, 0, 0, 0, 0, 'no-image.png', 'no-image.png', 'no-image.png', 0, 0, 1, 1, 1, 1, 500, 1500, 750, 750, 750, 500, 500); +INSERT INTO `item_type` (`item_type_id`, `item_type_server`, `item_type_name`, `item_type_use_type`, `item_type_use_id`, `item_type_use_value`, `item_type_order_price`, `item_type_drop_type`, `item_type_drop_model`, `item_type_drop_pos_x`, `item_type_drop_pos_y`, `item_type_drop_pos_z`, `item_type_drop_rot_x`, `item_type_drop_rot_y`, `item_type_drop_rot_z`, `item_type_drop_scale_x`, `item_type_drop_scale_y`, `item_type_drop_scale_z`, `item_type_image_small`, `item_type_image_large`, `item_type_image_hotbar`, `item_type_size`, `item_type_capacity`, `item_type_demand_multiplier`, `item_type_supply_multiplier`, `item_type_risk_multiplier`, `item_type_enabled`, `item_type_delay_switch`, `item_type_delay_use`, `item_type_delay_pickup`, `item_type_delay_put`, `item_type_delay_take`, `item_type_delay_give`, `item_type_delay_drop`) VALUES + (36, 1, 'Megaphone', 15, 0, 0, 35, 1, 1319, 0, 0, -1, 1.6, 0, 0, 0, 0, 0, 'no-image.png', 'no-image.png', 'no-image.png', 0, 100, 1, 1, 1, 1, 500, 1500, 750, 750, 750, 500, 500); +INSERT INTO `item_type` (`item_type_id`, `item_type_server`, `item_type_name`, `item_type_use_type`, `item_type_use_id`, `item_type_use_value`, `item_type_order_price`, `item_type_drop_type`, `item_type_drop_model`, `item_type_drop_pos_x`, `item_type_drop_pos_y`, `item_type_drop_pos_z`, `item_type_drop_rot_x`, `item_type_drop_rot_y`, `item_type_drop_rot_z`, `item_type_drop_scale_x`, `item_type_drop_scale_y`, `item_type_drop_scale_z`, `item_type_image_small`, `item_type_image_large`, `item_type_image_hotbar`, `item_type_size`, `item_type_capacity`, `item_type_demand_multiplier`, `item_type_supply_multiplier`, `item_type_risk_multiplier`, `item_type_enabled`, `item_type_delay_switch`, `item_type_delay_use`, `item_type_delay_pickup`, `item_type_delay_put`, `item_type_delay_take`, `item_type_delay_give`, `item_type_delay_drop`) VALUES + (37, 1, 'Bottle of Water', 18, 1, 10, 3, 1, 1319, 0, 0, -1, 1.6, 0, 0, 0, 0, 0, 'no-image.png', 'no-image.png', 'no-image.png', 0, 100, 1, 1, 1, 1, 500, 1500, 750, 750, 750, 500, 500); +INSERT INTO `item_type` (`item_type_id`, `item_type_server`, `item_type_name`, `item_type_use_type`, `item_type_use_id`, `item_type_use_value`, `item_type_order_price`, `item_type_drop_type`, `item_type_drop_model`, `item_type_drop_pos_x`, `item_type_drop_pos_y`, `item_type_drop_pos_z`, `item_type_drop_rot_x`, `item_type_drop_rot_y`, `item_type_drop_rot_z`, `item_type_drop_scale_x`, `item_type_drop_scale_y`, `item_type_drop_scale_z`, `item_type_image_small`, `item_type_image_large`, `item_type_image_hotbar`, `item_type_size`, `item_type_capacity`, `item_type_demand_multiplier`, `item_type_supply_multiplier`, `item_type_risk_multiplier`, `item_type_enabled`, `item_type_delay_switch`, `item_type_delay_use`, `item_type_delay_pickup`, `item_type_delay_put`, `item_type_delay_take`, `item_type_delay_give`, `item_type_delay_drop`) VALUES + (38, 1, 'Can of Beer', 35, 3, 5, 5, 1, 1319, 0, 0, -1, 1.6, 0, 0, 0, 0, 0, 'no-image.png', 'no-image.png', 'no-image.png', 0, 100, 1, 1, 1, 1, 500, 1500, 750, 750, 750, 500, 500); +INSERT INTO `item_type` (`item_type_id`, `item_type_server`, `item_type_name`, `item_type_use_type`, `item_type_use_id`, `item_type_use_value`, `item_type_order_price`, `item_type_drop_type`, `item_type_drop_model`, `item_type_drop_pos_x`, `item_type_drop_pos_y`, `item_type_drop_pos_z`, `item_type_drop_rot_x`, `item_type_drop_rot_y`, `item_type_drop_rot_z`, `item_type_drop_scale_x`, `item_type_drop_scale_y`, `item_type_drop_scale_z`, `item_type_image_small`, `item_type_image_large`, `item_type_image_hotbar`, `item_type_size`, `item_type_capacity`, `item_type_demand_multiplier`, `item_type_supply_multiplier`, `item_type_risk_multiplier`, `item_type_enabled`, `item_type_delay_switch`, `item_type_delay_use`, `item_type_delay_pickup`, `item_type_delay_put`, `item_type_delay_take`, `item_type_delay_give`, `item_type_delay_drop`) VALUES + (39, 1, 'Bottle of Vodka', 35, 3, 5, 10, 1, 1319, 0, 0, -1, 1.6, 0, 0, 0, 0, 0, 'no-image.png', 'no-image.png', 'no-image.png', 0, 100, 1, 1, 1, 1, 500, 1500, 750, 750, 750, 500, 500); +INSERT INTO `item_type` (`item_type_id`, `item_type_server`, `item_type_name`, `item_type_use_type`, `item_type_use_id`, `item_type_use_value`, `item_type_order_price`, `item_type_drop_type`, `item_type_drop_model`, `item_type_drop_pos_x`, `item_type_drop_pos_y`, `item_type_drop_pos_z`, `item_type_drop_rot_x`, `item_type_drop_rot_y`, `item_type_drop_rot_z`, `item_type_drop_scale_x`, `item_type_drop_scale_y`, `item_type_drop_scale_z`, `item_type_image_small`, `item_type_image_large`, `item_type_image_hotbar`, `item_type_size`, `item_type_capacity`, `item_type_demand_multiplier`, `item_type_supply_multiplier`, `item_type_risk_multiplier`, `item_type_enabled`, `item_type_delay_switch`, `item_type_delay_use`, `item_type_delay_pickup`, `item_type_delay_put`, `item_type_delay_take`, `item_type_delay_give`, `item_type_delay_drop`) VALUES + (40, 1, 'Bottle of Whiskey', 35, 3, 5, 12, 1, 1319, 0, 0, -1, 1.6, 0, 0, 0, 0, 0, 'no-image.png', 'no-image.png', 'no-image.png', 0, 100, 1, 1, 1, 1, 500, 1500, 750, 750, 750, 500, 500); +INSERT INTO `item_type` (`item_type_id`, `item_type_server`, `item_type_name`, `item_type_use_type`, `item_type_use_id`, `item_type_use_value`, `item_type_order_price`, `item_type_drop_type`, `item_type_drop_model`, `item_type_drop_pos_x`, `item_type_drop_pos_y`, `item_type_drop_pos_z`, `item_type_drop_rot_x`, `item_type_drop_rot_y`, `item_type_drop_rot_z`, `item_type_drop_scale_x`, `item_type_drop_scale_y`, `item_type_drop_scale_z`, `item_type_image_small`, `item_type_image_large`, `item_type_image_hotbar`, `item_type_size`, `item_type_capacity`, `item_type_demand_multiplier`, `item_type_supply_multiplier`, `item_type_risk_multiplier`, `item_type_enabled`, `item_type_delay_switch`, `item_type_delay_use`, `item_type_delay_pickup`, `item_type_delay_put`, `item_type_delay_take`, `item_type_delay_give`, `item_type_delay_drop`) VALUES + (41, 1, 'Handcuffs', 24, 0, 0, 100, 0, 1319, 0, 0, -1, 1.6, 0, 0, 0.3, 0.3, 0.2, 'no-image.png', 'no-image.png', 'no-image.png', 0, 0, 1, 1, 1, 1, 500, 1500, 750, 750, 750, 500, 500); +INSERT INTO `item_type` (`item_type_id`, `item_type_server`, `item_type_name`, `item_type_use_type`, `item_type_use_id`, `item_type_use_value`, `item_type_order_price`, `item_type_drop_type`, `item_type_drop_model`, `item_type_drop_pos_x`, `item_type_drop_pos_y`, `item_type_drop_pos_z`, `item_type_drop_rot_x`, `item_type_drop_rot_y`, `item_type_drop_rot_z`, `item_type_drop_scale_x`, `item_type_drop_scale_y`, `item_type_drop_scale_z`, `item_type_image_small`, `item_type_image_large`, `item_type_image_hotbar`, `item_type_size`, `item_type_capacity`, `item_type_demand_multiplier`, `item_type_supply_multiplier`, `item_type_risk_multiplier`, `item_type_enabled`, `item_type_delay_switch`, `item_type_delay_use`, `item_type_delay_pickup`, `item_type_delay_put`, `item_type_delay_take`, `item_type_delay_give`, `item_type_delay_drop`) VALUES + (42, 1, 'Rope', 25, 0, 0, 20, 0, 1319, 0, 0, -1, 1.6, 0, 0, 0, 0, 0, 'no-image.png', 'no-image.png', 'no-image.png', 0, 0, 1, 1, 1, 1, 500, 1500, 750, 750, 750, 500, 500); +INSERT INTO `item_type` (`item_type_id`, `item_type_server`, `item_type_name`, `item_type_use_type`, `item_type_use_id`, `item_type_use_value`, `item_type_order_price`, `item_type_drop_type`, `item_type_drop_model`, `item_type_drop_pos_x`, `item_type_drop_pos_y`, `item_type_drop_pos_z`, `item_type_drop_rot_x`, `item_type_drop_rot_y`, `item_type_drop_rot_z`, `item_type_drop_scale_x`, `item_type_drop_scale_y`, `item_type_drop_scale_z`, `item_type_image_small`, `item_type_image_large`, `item_type_image_hotbar`, `item_type_size`, `item_type_capacity`, `item_type_demand_multiplier`, `item_type_supply_multiplier`, `item_type_risk_multiplier`, `item_type_enabled`, `item_type_delay_switch`, `item_type_delay_use`, `item_type_delay_pickup`, `item_type_delay_put`, `item_type_delay_take`, `item_type_delay_give`, `item_type_delay_drop`) VALUES + (43, 1, 'Blindfold', 26, 0, 0, 20, 0, 1319, 0, 0, -1, 1.6, 0, 0, 0, 0, 0, 'no-image.png', 'no-image.png', 'no-image.png', 0, 0, 1, 1, 1, 1, 500, 1500, 750, 750, 750, 500, 500); +INSERT INTO `item_type` (`item_type_id`, `item_type_server`, `item_type_name`, `item_type_use_type`, `item_type_use_id`, `item_type_use_value`, `item_type_order_price`, `item_type_drop_type`, `item_type_drop_model`, `item_type_drop_pos_x`, `item_type_drop_pos_y`, `item_type_drop_pos_z`, `item_type_drop_rot_x`, `item_type_drop_rot_y`, `item_type_drop_rot_z`, `item_type_drop_scale_x`, `item_type_drop_scale_y`, `item_type_drop_scale_z`, `item_type_image_small`, `item_type_image_large`, `item_type_image_hotbar`, `item_type_size`, `item_type_capacity`, `item_type_demand_multiplier`, `item_type_supply_multiplier`, `item_type_risk_multiplier`, `item_type_enabled`, `item_type_delay_switch`, `item_type_delay_use`, `item_type_delay_pickup`, `item_type_delay_put`, `item_type_delay_take`, `item_type_delay_give`, `item_type_delay_drop`) VALUES + (44, 1, 'Bulletproof Vest', 28, 0, 0, 500, 0, 1319, 0, 0, -1, 1.6, 0, 0, 0, 0, 0, 'no-image.png', 'no-image.png', 'no-image.png', 0, 100, 1, 1, 1, 2, 500, 1500, 750, 750, 750, 500, 500); +INSERT INTO `item_type` (`item_type_id`, `item_type_server`, `item_type_name`, `item_type_use_type`, `item_type_use_id`, `item_type_use_value`, `item_type_order_price`, `item_type_drop_type`, `item_type_drop_model`, `item_type_drop_pos_x`, `item_type_drop_pos_y`, `item_type_drop_pos_z`, `item_type_drop_rot_x`, `item_type_drop_rot_y`, `item_type_drop_rot_z`, `item_type_drop_scale_x`, `item_type_drop_scale_y`, `item_type_drop_scale_z`, `item_type_image_small`, `item_type_image_large`, `item_type_image_hotbar`, `item_type_size`, `item_type_capacity`, `item_type_demand_multiplier`, `item_type_supply_multiplier`, `item_type_risk_multiplier`, `item_type_enabled`, `item_type_delay_switch`, `item_type_delay_use`, `item_type_delay_pickup`, `item_type_delay_put`, `item_type_delay_take`, `item_type_delay_give`, `item_type_delay_drop`) VALUES + (45, 1, 'Uniform', 6, 0, 0, 0, 1, 1319, 0, 0, -1, 1.6, 0, 0, 0, 0, 0, 'no-image.png', 'no-image.png', 'no-image.png', 0, 0, 1, 1, 1, 1, 500, 1500, 750, 750, 750, 500, 500); +INSERT INTO `item_type` (`item_type_id`, `item_type_server`, `item_type_name`, `item_type_use_type`, `item_type_use_id`, `item_type_use_value`, `item_type_order_price`, `item_type_drop_type`, `item_type_drop_model`, `item_type_drop_pos_x`, `item_type_drop_pos_y`, `item_type_drop_pos_z`, `item_type_drop_rot_x`, `item_type_drop_rot_y`, `item_type_drop_rot_z`, `item_type_drop_scale_x`, `item_type_drop_scale_y`, `item_type_drop_scale_z`, `item_type_image_small`, `item_type_image_large`, `item_type_image_hotbar`, `item_type_size`, `item_type_capacity`, `item_type_demand_multiplier`, `item_type_supply_multiplier`, `item_type_risk_multiplier`, `item_type_enabled`, `item_type_delay_switch`, `item_type_delay_use`, `item_type_delay_pickup`, `item_type_delay_put`, `item_type_delay_take`, `item_type_delay_give`, `item_type_delay_drop`) VALUES + (46, 1, 'Fire Extinguisher', 36, 0, 0, 0, 0, 1319, 0, 0, -1, 1.6, 0, 0, 0, 0, 0, 'no-image.png', 'no-image.png', 'no-image.png', 0, 1000, 1, 1, 1, 1, 500, 1500, 750, 750, 750, 500, 500); +INSERT INTO `item_type` (`item_type_id`, `item_type_server`, `item_type_name`, `item_type_use_type`, `item_type_use_id`, `item_type_use_value`, `item_type_order_price`, `item_type_drop_type`, `item_type_drop_model`, `item_type_drop_pos_x`, `item_type_drop_pos_y`, `item_type_drop_pos_z`, `item_type_drop_rot_x`, `item_type_drop_rot_y`, `item_type_drop_rot_z`, `item_type_drop_scale_x`, `item_type_drop_scale_y`, `item_type_drop_scale_z`, `item_type_image_small`, `item_type_image_large`, `item_type_image_hotbar`, `item_type_size`, `item_type_capacity`, `item_type_demand_multiplier`, `item_type_supply_multiplier`, `item_type_risk_multiplier`, `item_type_enabled`, `item_type_delay_switch`, `item_type_delay_use`, `item_type_delay_pickup`, `item_type_delay_put`, `item_type_delay_take`, `item_type_delay_give`, `item_type_delay_drop`) VALUES + (47, 1, 'Tazer', 27, 2, 0, 350, 0, 1319, 0, 0, -1, 1.6, 0, 0, 0, 0, 0, 'no-image.png', 'no-image.png', 'no-image.png', 0, 0, 1, 1, 1, 1, 500, 1500, 750, 750, 750, 500, 500); +INSERT INTO `item_type` (`item_type_id`, `item_type_server`, `item_type_name`, `item_type_use_type`, `item_type_use_id`, `item_type_use_value`, `item_type_order_price`, `item_type_drop_type`, `item_type_drop_model`, `item_type_drop_pos_x`, `item_type_drop_pos_y`, `item_type_drop_pos_z`, `item_type_drop_rot_x`, `item_type_drop_rot_y`, `item_type_drop_rot_z`, `item_type_drop_scale_x`, `item_type_drop_scale_y`, `item_type_drop_scale_z`, `item_type_image_small`, `item_type_image_large`, `item_type_image_hotbar`, `item_type_size`, `item_type_capacity`, `item_type_demand_multiplier`, `item_type_supply_multiplier`, `item_type_risk_multiplier`, `item_type_enabled`, `item_type_delay_switch`, `item_type_delay_use`, `item_type_delay_pickup`, `item_type_delay_put`, `item_type_delay_take`, `item_type_delay_give`, `item_type_delay_drop`) VALUES + (48, 1, 'Pepper Spray', 38, 0, 0, 150, 0, 1319, 0, 0, -1, 1.6, 0, 0, 0, 0, 0, 'no-image.png', 'no-image.png', 'no-image.png', 0, 1000, 1, 1, 1, 1, 500, 1500, 750, 750, 750, 500, 500); +INSERT INTO `item_type` (`item_type_id`, `item_type_server`, `item_type_name`, `item_type_use_type`, `item_type_use_id`, `item_type_use_value`, `item_type_order_price`, `item_type_drop_type`, `item_type_drop_model`, `item_type_drop_pos_x`, `item_type_drop_pos_y`, `item_type_drop_pos_z`, `item_type_drop_rot_x`, `item_type_drop_rot_y`, `item_type_drop_rot_z`, `item_type_drop_scale_x`, `item_type_drop_scale_y`, `item_type_drop_scale_z`, `item_type_image_small`, `item_type_image_large`, `item_type_image_hotbar`, `item_type_size`, `item_type_capacity`, `item_type_demand_multiplier`, `item_type_supply_multiplier`, `item_type_risk_multiplier`, `item_type_enabled`, `item_type_delay_switch`, `item_type_delay_use`, `item_type_delay_pickup`, `item_type_delay_put`, `item_type_delay_take`, `item_type_delay_give`, `item_type_delay_drop`) VALUES + (49, 1, 'Flashlight', 39, 0, 0, 35, 0, 1319, 0, 0, -1, 1.6, 0, 0, 0, 0, 0, 'no-image.png', 'no-image.png', 'no-image.png', 0, 0, 1, 1, 1, 1, 500, 1500, 750, 750, 750, 500, 500); +INSERT INTO `item_type` (`item_type_id`, `item_type_server`, `item_type_name`, `item_type_use_type`, `item_type_use_id`, `item_type_use_value`, `item_type_order_price`, `item_type_drop_type`, `item_type_drop_model`, `item_type_drop_pos_x`, `item_type_drop_pos_y`, `item_type_drop_pos_z`, `item_type_drop_rot_x`, `item_type_drop_rot_y`, `item_type_drop_rot_z`, `item_type_drop_scale_x`, `item_type_drop_scale_y`, `item_type_drop_scale_z`, `item_type_image_small`, `item_type_image_large`, `item_type_image_hotbar`, `item_type_size`, `item_type_capacity`, `item_type_demand_multiplier`, `item_type_supply_multiplier`, `item_type_risk_multiplier`, `item_type_enabled`, `item_type_delay_switch`, `item_type_delay_use`, `item_type_delay_pickup`, `item_type_delay_put`, `item_type_delay_take`, `item_type_delay_give`, `item_type_delay_drop`) VALUES + (50, 1, 'First Aid Kit', 29, 0, 50, 75, 0, 1319, 0, 0, -1, 1.6, 0, 0, 0, 0, 0, 'no-image.png', 'no-image.png', 'no-image.png', 0, 100, 1, 1, 1, 1, 500, 1500, 750, 750, 750, 500, 500); +INSERT INTO `item_type` (`item_type_id`, `item_type_server`, `item_type_name`, `item_type_use_type`, `item_type_use_id`, `item_type_use_value`, `item_type_order_price`, `item_type_drop_type`, `item_type_drop_model`, `item_type_drop_pos_x`, `item_type_drop_pos_y`, `item_type_drop_pos_z`, `item_type_drop_rot_x`, `item_type_drop_rot_y`, `item_type_drop_rot_z`, `item_type_drop_scale_x`, `item_type_drop_scale_y`, `item_type_drop_scale_z`, `item_type_image_small`, `item_type_image_large`, `item_type_image_hotbar`, `item_type_size`, `item_type_capacity`, `item_type_demand_multiplier`, `item_type_supply_multiplier`, `item_type_risk_multiplier`, `item_type_enabled`, `item_type_delay_switch`, `item_type_delay_use`, `item_type_delay_pickup`, `item_type_delay_put`, `item_type_delay_take`, `item_type_delay_give`, `item_type_delay_drop`) VALUES + (51, 1, 'AED', 29, 0, 100, 3000, 0, 1319, 0, 0, -1, 1.6, 0, 0, 0, 0, 0, 'no-image.png', 'no-image.png', 'no-image.png', 0, 100, 1, 1, 1, 1, 500, 1500, 750, 750, 750, 500, 500); +INSERT INTO `item_type` (`item_type_id`, `item_type_server`, `item_type_name`, `item_type_use_type`, `item_type_use_id`, `item_type_use_value`, `item_type_order_price`, `item_type_drop_type`, `item_type_drop_model`, `item_type_drop_pos_x`, `item_type_drop_pos_y`, `item_type_drop_pos_z`, `item_type_drop_rot_x`, `item_type_drop_rot_y`, `item_type_drop_rot_z`, `item_type_drop_scale_x`, `item_type_drop_scale_y`, `item_type_drop_scale_z`, `item_type_image_small`, `item_type_image_large`, `item_type_image_hotbar`, `item_type_size`, `item_type_capacity`, `item_type_demand_multiplier`, `item_type_supply_multiplier`, `item_type_risk_multiplier`, `item_type_enabled`, `item_type_delay_switch`, `item_type_delay_use`, `item_type_delay_pickup`, `item_type_delay_put`, `item_type_delay_take`, `item_type_delay_give`, `item_type_delay_drop`) VALUES + (52, 1, 'Morphine Syringe', 29, 0, 100, 650, 0, 1319, 0, 0, -1, 1.6, 0, 0, 0, 0, 0, 'no-image.png', 'no-image.png', 'no-image.png', 0, 100, 1, 1, 1, 1, 500, 1500, 750, 750, 750, 500, 500); +INSERT INTO `item_type` (`item_type_id`, `item_type_server`, `item_type_name`, `item_type_use_type`, `item_type_use_id`, `item_type_use_value`, `item_type_order_price`, `item_type_drop_type`, `item_type_drop_model`, `item_type_drop_pos_x`, `item_type_drop_pos_y`, `item_type_drop_pos_z`, `item_type_drop_rot_x`, `item_type_drop_rot_y`, `item_type_drop_rot_z`, `item_type_drop_scale_x`, `item_type_drop_scale_y`, `item_type_drop_scale_z`, `item_type_image_small`, `item_type_image_large`, `item_type_image_hotbar`, `item_type_size`, `item_type_capacity`, `item_type_demand_multiplier`, `item_type_supply_multiplier`, `item_type_risk_multiplier`, `item_type_enabled`, `item_type_delay_switch`, `item_type_delay_use`, `item_type_delay_pickup`, `item_type_delay_put`, `item_type_delay_take`, `item_type_delay_give`, `item_type_delay_drop`) VALUES + (54, 1, 'Cheeseburger', 19, 0, 10, 5, 0, 1319, 0, 0, -1, 1.6, 0, 0, 0, 0, 0, 'no-image.png', 'no-image.png', 'no-image.png', 0, 100, 1, 1, 1, 1, 500, 1500, 750, 750, 750, 500, 500); +INSERT INTO `item_type` (`item_type_id`, `item_type_server`, `item_type_name`, `item_type_use_type`, `item_type_use_id`, `item_type_use_value`, `item_type_order_price`, `item_type_drop_type`, `item_type_drop_model`, `item_type_drop_pos_x`, `item_type_drop_pos_y`, `item_type_drop_pos_z`, `item_type_drop_rot_x`, `item_type_drop_rot_y`, `item_type_drop_rot_z`, `item_type_drop_scale_x`, `item_type_drop_scale_y`, `item_type_drop_scale_z`, `item_type_image_small`, `item_type_image_large`, `item_type_image_hotbar`, `item_type_size`, `item_type_capacity`, `item_type_demand_multiplier`, `item_type_supply_multiplier`, `item_type_risk_multiplier`, `item_type_enabled`, `item_type_delay_switch`, `item_type_delay_use`, `item_type_delay_pickup`, `item_type_delay_put`, `item_type_delay_take`, `item_type_delay_give`, `item_type_delay_drop`) VALUES + (55, 1, 'Slice of Pizza', 19, 0, 10, 5, 0, 1319, 0, 0, -1, 1.6, 0, 0, 0, 0, 0, 'no-image.png', 'no-image.png', 'no-image.png', 0, 100, 1, 1, 1, 1, 500, 1500, 750, 750, 750, 500, 500); +INSERT INTO `item_type` (`item_type_id`, `item_type_server`, `item_type_name`, `item_type_use_type`, `item_type_use_id`, `item_type_use_value`, `item_type_order_price`, `item_type_drop_type`, `item_type_drop_model`, `item_type_drop_pos_x`, `item_type_drop_pos_y`, `item_type_drop_pos_z`, `item_type_drop_rot_x`, `item_type_drop_rot_y`, `item_type_drop_rot_z`, `item_type_drop_scale_x`, `item_type_drop_scale_y`, `item_type_drop_scale_z`, `item_type_image_small`, `item_type_image_large`, `item_type_image_hotbar`, `item_type_size`, `item_type_capacity`, `item_type_demand_multiplier`, `item_type_supply_multiplier`, `item_type_risk_multiplier`, `item_type_enabled`, `item_type_delay_switch`, `item_type_delay_use`, `item_type_delay_pickup`, `item_type_delay_put`, `item_type_delay_take`, `item_type_delay_give`, `item_type_delay_drop`) VALUES + (56, 1, 'Chicken Wing', 19, 0, 10, 5, 0, 1319, 0, 0, -1, 1.6, 0, 0, 0.1, 0.1, 0.1, 'no-image.png', 'no-image.png', 'no-image.png', 0, 100, 1, 1, 1, 1, 500, 1500, 750, 750, 750, 500, 500); +INSERT INTO `item_type` (`item_type_id`, `item_type_server`, `item_type_name`, `item_type_use_type`, `item_type_use_id`, `item_type_use_value`, `item_type_order_price`, `item_type_drop_type`, `item_type_drop_model`, `item_type_drop_pos_x`, `item_type_drop_pos_y`, `item_type_drop_pos_z`, `item_type_drop_rot_x`, `item_type_drop_rot_y`, `item_type_drop_rot_z`, `item_type_drop_scale_x`, `item_type_drop_scale_y`, `item_type_drop_scale_z`, `item_type_image_small`, `item_type_image_large`, `item_type_image_hotbar`, `item_type_size`, `item_type_capacity`, `item_type_demand_multiplier`, `item_type_supply_multiplier`, `item_type_risk_multiplier`, `item_type_enabled`, `item_type_delay_switch`, `item_type_delay_use`, `item_type_delay_pickup`, `item_type_delay_put`, `item_type_delay_take`, `item_type_delay_give`, `item_type_delay_drop`) VALUES + (57, 1, 'Pizza', 19, 0, 10, 15, 0, 1319, 0, 0, -1, 1.6, 0, 0, 0.1, 0.1, 0.1, 'no-image.png', 'no-image.png', 'no-image.png', 0, 100, 1, 1, 1, 1, 500, 0, 750, 750, 750, 500, 500); +INSERT INTO `item_type` (`item_type_id`, `item_type_server`, `item_type_name`, `item_type_use_type`, `item_type_use_id`, `item_type_use_value`, `item_type_order_price`, `item_type_drop_type`, `item_type_drop_model`, `item_type_drop_pos_x`, `item_type_drop_pos_y`, `item_type_drop_pos_z`, `item_type_drop_rot_x`, `item_type_drop_rot_y`, `item_type_drop_rot_z`, `item_type_drop_scale_x`, `item_type_drop_scale_y`, `item_type_drop_scale_z`, `item_type_image_small`, `item_type_image_large`, `item_type_image_hotbar`, `item_type_size`, `item_type_capacity`, `item_type_demand_multiplier`, `item_type_supply_multiplier`, `item_type_risk_multiplier`, `item_type_enabled`, `item_type_delay_switch`, `item_type_delay_use`, `item_type_delay_pickup`, `item_type_delay_put`, `item_type_delay_take`, `item_type_delay_give`, `item_type_delay_drop`) VALUES + (58, 1, 'Walkie Talkie', 31, 0, 0, 50, 0, 182, 0, 0, -1, 1.6, 0, 0, 0, 0, 0, 'no-image.png', 'no-image.png', 'no-image.png', 0, 0, 1, 1, 1, 1, 500, 0, 750, 750, 750, 750, 750); +INSERT INTO `item_type` (`item_type_id`, `item_type_server`, `item_type_name`, `item_type_use_type`, `item_type_use_id`, `item_type_use_value`, `item_type_order_price`, `item_type_drop_type`, `item_type_drop_model`, `item_type_drop_pos_x`, `item_type_drop_pos_y`, `item_type_drop_pos_z`, `item_type_drop_rot_x`, `item_type_drop_rot_y`, `item_type_drop_rot_z`, `item_type_drop_scale_x`, `item_type_drop_scale_y`, `item_type_drop_scale_z`, `item_type_image_small`, `item_type_image_large`, `item_type_image_hotbar`, `item_type_size`, `item_type_capacity`, `item_type_demand_multiplier`, `item_type_supply_multiplier`, `item_type_risk_multiplier`, `item_type_enabled`, `item_type_delay_switch`, `item_type_delay_use`, `item_type_delay_pickup`, `item_type_delay_put`, `item_type_delay_take`, `item_type_delay_give`, `item_type_delay_drop`) VALUES + (61, 1, 'Bottle of Soda', 35, 2, 0, 0, 0, 0, 0, 0, -1, 1.6, 0, 0, 0, 0, 0, 'no-image.png', 'no-image.png', 'no-image.png', 0, 100, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `item_type` (`item_type_id`, `item_type_server`, `item_type_name`, `item_type_use_type`, `item_type_use_id`, `item_type_use_value`, `item_type_order_price`, `item_type_drop_type`, `item_type_drop_model`, `item_type_drop_pos_x`, `item_type_drop_pos_y`, `item_type_drop_pos_z`, `item_type_drop_rot_x`, `item_type_drop_rot_y`, `item_type_drop_rot_z`, `item_type_drop_scale_x`, `item_type_drop_scale_y`, `item_type_drop_scale_z`, `item_type_image_small`, `item_type_image_large`, `item_type_image_hotbar`, `item_type_size`, `item_type_capacity`, `item_type_demand_multiplier`, `item_type_supply_multiplier`, `item_type_risk_multiplier`, `item_type_enabled`, `item_type_delay_switch`, `item_type_delay_use`, `item_type_delay_pickup`, `item_type_delay_put`, `item_type_delay_take`, `item_type_delay_give`, `item_type_delay_drop`) VALUES + (62, 1, 'Can of Soda', 35, 2, 0, 0, 0, 0, 0, 0, -1, 1.6, 0, 0, 0, 0, 0, 'no-image.png', 'no-image.png', 'no-image.png', 0, 100, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `item_type` (`item_type_id`, `item_type_server`, `item_type_name`, `item_type_use_type`, `item_type_use_id`, `item_type_use_value`, `item_type_order_price`, `item_type_drop_type`, `item_type_drop_model`, `item_type_drop_pos_x`, `item_type_drop_pos_y`, `item_type_drop_pos_z`, `item_type_drop_rot_x`, `item_type_drop_rot_y`, `item_type_drop_rot_z`, `item_type_drop_scale_x`, `item_type_drop_scale_y`, `item_type_drop_scale_z`, `item_type_image_small`, `item_type_image_large`, `item_type_image_hotbar`, `item_type_size`, `item_type_capacity`, `item_type_demand_multiplier`, `item_type_supply_multiplier`, `item_type_risk_multiplier`, `item_type_enabled`, `item_type_delay_switch`, `item_type_delay_use`, `item_type_delay_pickup`, `item_type_delay_put`, `item_type_delay_take`, `item_type_delay_give`, `item_type_delay_drop`) VALUES + (63, 1, 'Badge', 34, 0, 0, 0, 0, 0, 0, 0, -1, 1.6, 0, 0, 0, 0, 0, 'no-image.png', 'no-image.png', 'no-image.png', 0, 0, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `item_type` (`item_type_id`, `item_type_server`, `item_type_name`, `item_type_use_type`, `item_type_use_id`, `item_type_use_value`, `item_type_order_price`, `item_type_drop_type`, `item_type_drop_model`, `item_type_drop_pos_x`, `item_type_drop_pos_y`, `item_type_drop_pos_z`, `item_type_drop_rot_x`, `item_type_drop_rot_y`, `item_type_drop_rot_z`, `item_type_drop_scale_x`, `item_type_drop_scale_y`, `item_type_drop_scale_z`, `item_type_image_small`, `item_type_image_large`, `item_type_image_hotbar`, `item_type_size`, `item_type_capacity`, `item_type_demand_multiplier`, `item_type_supply_multiplier`, `item_type_risk_multiplier`, `item_type_enabled`, `item_type_delay_switch`, `item_type_delay_use`, `item_type_delay_pickup`, `item_type_delay_put`, `item_type_delay_take`, `item_type_delay_give`, `item_type_delay_drop`) VALUES + (64, 2, 'Brass Knuckles', 1, 1, 0, 25, 0, 259, 0, 0, -1, 1.6, 0, 0, 0, 0, 0, 'no-image.png', 'no-image.png', 'no-image.png', 0, 0, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `item_type` (`item_type_id`, `item_type_server`, `item_type_name`, `item_type_use_type`, `item_type_use_id`, `item_type_use_value`, `item_type_order_price`, `item_type_drop_type`, `item_type_drop_model`, `item_type_drop_pos_x`, `item_type_drop_pos_y`, `item_type_drop_pos_z`, `item_type_drop_rot_x`, `item_type_drop_rot_y`, `item_type_drop_rot_z`, `item_type_drop_scale_x`, `item_type_drop_scale_y`, `item_type_drop_scale_z`, `item_type_image_small`, `item_type_image_large`, `item_type_image_hotbar`, `item_type_size`, `item_type_capacity`, `item_type_demand_multiplier`, `item_type_supply_multiplier`, `item_type_risk_multiplier`, `item_type_enabled`, `item_type_delay_switch`, `item_type_delay_use`, `item_type_delay_pickup`, `item_type_delay_put`, `item_type_delay_take`, `item_type_delay_give`, `item_type_delay_drop`) VALUES + (65, 2, 'Screwdriver', 1, 2, 0, 10, 0, 260, 0, 0, -1, 1.6, 0, 0, 0, 0, 0, 'no-image.png', 'no-image.png', 'no-image.png', 0, 0, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `item_type` (`item_type_id`, `item_type_server`, `item_type_name`, `item_type_use_type`, `item_type_use_id`, `item_type_use_value`, `item_type_order_price`, `item_type_drop_type`, `item_type_drop_model`, `item_type_drop_pos_x`, `item_type_drop_pos_y`, `item_type_drop_pos_z`, `item_type_drop_rot_x`, `item_type_drop_rot_y`, `item_type_drop_rot_z`, `item_type_drop_scale_x`, `item_type_drop_scale_y`, `item_type_drop_scale_z`, `item_type_image_small`, `item_type_image_large`, `item_type_image_hotbar`, `item_type_size`, `item_type_capacity`, `item_type_demand_multiplier`, `item_type_supply_multiplier`, `item_type_risk_multiplier`, `item_type_enabled`, `item_type_delay_switch`, `item_type_delay_use`, `item_type_delay_pickup`, `item_type_delay_put`, `item_type_delay_take`, `item_type_delay_give`, `item_type_delay_drop`) VALUES + (66, 2, 'Golf Club', 1, 3, 0, 40, 0, 261, 0, 0, -1, 1.6, 0, 0, 0, 0, 0, 'no-image.png', 'no-image.png', 'no-image.png', 0, 0, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `item_type` (`item_type_id`, `item_type_server`, `item_type_name`, `item_type_use_type`, `item_type_use_id`, `item_type_use_value`, `item_type_order_price`, `item_type_drop_type`, `item_type_drop_model`, `item_type_drop_pos_x`, `item_type_drop_pos_y`, `item_type_drop_pos_z`, `item_type_drop_rot_x`, `item_type_drop_rot_y`, `item_type_drop_rot_z`, `item_type_drop_scale_x`, `item_type_drop_scale_y`, `item_type_drop_scale_z`, `item_type_image_small`, `item_type_image_large`, `item_type_image_hotbar`, `item_type_size`, `item_type_capacity`, `item_type_demand_multiplier`, `item_type_supply_multiplier`, `item_type_risk_multiplier`, `item_type_enabled`, `item_type_delay_switch`, `item_type_delay_use`, `item_type_delay_pickup`, `item_type_delay_put`, `item_type_delay_take`, `item_type_delay_give`, `item_type_delay_drop`) VALUES + (67, 2, 'Nitestick', 1, 4, 0, 40, 0, 262, 0, 0, -1, 1.6, 0, 0, 0, 0, 0, 'no-image.png', 'no-image.png', 'no-image.png', 0, 0, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `item_type` (`item_type_id`, `item_type_server`, `item_type_name`, `item_type_use_type`, `item_type_use_id`, `item_type_use_value`, `item_type_order_price`, `item_type_drop_type`, `item_type_drop_model`, `item_type_drop_pos_x`, `item_type_drop_pos_y`, `item_type_drop_pos_z`, `item_type_drop_rot_x`, `item_type_drop_rot_y`, `item_type_drop_rot_z`, `item_type_drop_scale_x`, `item_type_drop_scale_y`, `item_type_drop_scale_z`, `item_type_image_small`, `item_type_image_large`, `item_type_image_hotbar`, `item_type_size`, `item_type_capacity`, `item_type_demand_multiplier`, `item_type_supply_multiplier`, `item_type_risk_multiplier`, `item_type_enabled`, `item_type_delay_switch`, `item_type_delay_use`, `item_type_delay_pickup`, `item_type_delay_put`, `item_type_delay_take`, `item_type_delay_give`, `item_type_delay_drop`) VALUES + (68, 2, 'Knife', 1, 5, 0, 35, 0, 263, 0, 0, -1, 1.6, 0, 0, 0, 0, 0, 'no-image.png', 'no-image.png', 'no-image.png', 0, 0, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `item_type` (`item_type_id`, `item_type_server`, `item_type_name`, `item_type_use_type`, `item_type_use_id`, `item_type_use_value`, `item_type_order_price`, `item_type_drop_type`, `item_type_drop_model`, `item_type_drop_pos_x`, `item_type_drop_pos_y`, `item_type_drop_pos_z`, `item_type_drop_rot_x`, `item_type_drop_rot_y`, `item_type_drop_rot_z`, `item_type_drop_scale_x`, `item_type_drop_scale_y`, `item_type_drop_scale_z`, `item_type_image_small`, `item_type_image_large`, `item_type_image_hotbar`, `item_type_size`, `item_type_capacity`, `item_type_demand_multiplier`, `item_type_supply_multiplier`, `item_type_risk_multiplier`, `item_type_enabled`, `item_type_delay_switch`, `item_type_delay_use`, `item_type_delay_pickup`, `item_type_delay_put`, `item_type_delay_take`, `item_type_delay_give`, `item_type_delay_drop`) VALUES + (69, 2, 'Baseball Bat', 1, 6, 0, 25, 0, 264, 0, 0, -1, 1.6, 0, 0, 0, 0, 0, 'no-image.png', 'no-image.png', 'no-image.png', 0, 0, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `item_type` (`item_type_id`, `item_type_server`, `item_type_name`, `item_type_use_type`, `item_type_use_id`, `item_type_use_value`, `item_type_order_price`, `item_type_drop_type`, `item_type_drop_model`, `item_type_drop_pos_x`, `item_type_drop_pos_y`, `item_type_drop_pos_z`, `item_type_drop_rot_x`, `item_type_drop_rot_y`, `item_type_drop_rot_z`, `item_type_drop_scale_x`, `item_type_drop_scale_y`, `item_type_drop_scale_z`, `item_type_image_small`, `item_type_image_large`, `item_type_image_hotbar`, `item_type_size`, `item_type_capacity`, `item_type_demand_multiplier`, `item_type_supply_multiplier`, `item_type_risk_multiplier`, `item_type_enabled`, `item_type_delay_switch`, `item_type_delay_use`, `item_type_delay_pickup`, `item_type_delay_put`, `item_type_delay_take`, `item_type_delay_give`, `item_type_delay_drop`) VALUES + (70, 2, 'Hammer', 1, 7, 0, 12, 0, 265, 0, 0, -1, 1.6, 0, 0, 0, 0, 0, 'no-image.png', 'no-image.png', 'no-image.png', 0, 0, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `item_type` (`item_type_id`, `item_type_server`, `item_type_name`, `item_type_use_type`, `item_type_use_id`, `item_type_use_value`, `item_type_order_price`, `item_type_drop_type`, `item_type_drop_model`, `item_type_drop_pos_x`, `item_type_drop_pos_y`, `item_type_drop_pos_z`, `item_type_drop_rot_x`, `item_type_drop_rot_y`, `item_type_drop_rot_z`, `item_type_drop_scale_x`, `item_type_drop_scale_y`, `item_type_drop_scale_z`, `item_type_image_small`, `item_type_image_large`, `item_type_image_hotbar`, `item_type_size`, `item_type_capacity`, `item_type_demand_multiplier`, `item_type_supply_multiplier`, `item_type_risk_multiplier`, `item_type_enabled`, `item_type_delay_switch`, `item_type_delay_use`, `item_type_delay_pickup`, `item_type_delay_put`, `item_type_delay_take`, `item_type_delay_give`, `item_type_delay_drop`) VALUES + (71, 2, 'Meat Cleaver', 1, 8, 0, 12, 0, 266, 0, 0, -1, 1.6, 0, 0, 0, 0, 0, 'no-image.png', 'no-image.png', 'no-image.png', 0, 0, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `item_type` (`item_type_id`, `item_type_server`, `item_type_name`, `item_type_use_type`, `item_type_use_id`, `item_type_use_value`, `item_type_order_price`, `item_type_drop_type`, `item_type_drop_model`, `item_type_drop_pos_x`, `item_type_drop_pos_y`, `item_type_drop_pos_z`, `item_type_drop_rot_x`, `item_type_drop_rot_y`, `item_type_drop_rot_z`, `item_type_drop_scale_x`, `item_type_drop_scale_y`, `item_type_drop_scale_z`, `item_type_image_small`, `item_type_image_large`, `item_type_image_hotbar`, `item_type_size`, `item_type_capacity`, `item_type_demand_multiplier`, `item_type_supply_multiplier`, `item_type_risk_multiplier`, `item_type_enabled`, `item_type_delay_switch`, `item_type_delay_use`, `item_type_delay_pickup`, `item_type_delay_put`, `item_type_delay_take`, `item_type_delay_give`, `item_type_delay_drop`) VALUES + (72, 2, 'Machete', 1, 9, 0, 100, 0, 267, 0, 0, -1, 1.6, 0, 0, 0, 0, 0, 'no-image.png', 'no-image.png', 'no-image.png', 0, 0, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `item_type` (`item_type_id`, `item_type_server`, `item_type_name`, `item_type_use_type`, `item_type_use_id`, `item_type_use_value`, `item_type_order_price`, `item_type_drop_type`, `item_type_drop_model`, `item_type_drop_pos_x`, `item_type_drop_pos_y`, `item_type_drop_pos_z`, `item_type_drop_rot_x`, `item_type_drop_rot_y`, `item_type_drop_rot_z`, `item_type_drop_scale_x`, `item_type_drop_scale_y`, `item_type_drop_scale_z`, `item_type_image_small`, `item_type_image_large`, `item_type_image_hotbar`, `item_type_size`, `item_type_capacity`, `item_type_demand_multiplier`, `item_type_supply_multiplier`, `item_type_risk_multiplier`, `item_type_enabled`, `item_type_delay_switch`, `item_type_delay_use`, `item_type_delay_pickup`, `item_type_delay_put`, `item_type_delay_take`, `item_type_delay_give`, `item_type_delay_drop`) VALUES + (73, 2, 'Katana', 1, 10, 0, 250, 0, 268, 0, 0, -1, 1.6, 0, 0, 0, 0, 0, 'no-image.png', 'no-image.png', 'no-image.png', 0, 0, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `item_type` (`item_type_id`, `item_type_server`, `item_type_name`, `item_type_use_type`, `item_type_use_id`, `item_type_use_value`, `item_type_order_price`, `item_type_drop_type`, `item_type_drop_model`, `item_type_drop_pos_x`, `item_type_drop_pos_y`, `item_type_drop_pos_z`, `item_type_drop_rot_x`, `item_type_drop_rot_y`, `item_type_drop_rot_z`, `item_type_drop_scale_x`, `item_type_drop_scale_y`, `item_type_drop_scale_z`, `item_type_image_small`, `item_type_image_large`, `item_type_image_hotbar`, `item_type_size`, `item_type_capacity`, `item_type_demand_multiplier`, `item_type_supply_multiplier`, `item_type_risk_multiplier`, `item_type_enabled`, `item_type_delay_switch`, `item_type_delay_use`, `item_type_delay_pickup`, `item_type_delay_put`, `item_type_delay_take`, `item_type_delay_give`, `item_type_delay_drop`) VALUES + (74, 2, 'Chainsaw', 1, 11, 0, 350, 0, 269, 0, 0, -1, 1.6, 0, 0, 0, 0, 0, 'no-image.png', 'no-image.png', 'no-image.png', 0, 0, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `item_type` (`item_type_id`, `item_type_server`, `item_type_name`, `item_type_use_type`, `item_type_use_id`, `item_type_use_value`, `item_type_order_price`, `item_type_drop_type`, `item_type_drop_model`, `item_type_drop_pos_x`, `item_type_drop_pos_y`, `item_type_drop_pos_z`, `item_type_drop_rot_x`, `item_type_drop_rot_y`, `item_type_drop_rot_z`, `item_type_drop_scale_x`, `item_type_drop_scale_y`, `item_type_drop_scale_z`, `item_type_image_small`, `item_type_image_large`, `item_type_image_hotbar`, `item_type_size`, `item_type_capacity`, `item_type_demand_multiplier`, `item_type_supply_multiplier`, `item_type_risk_multiplier`, `item_type_enabled`, `item_type_delay_switch`, `item_type_delay_use`, `item_type_delay_pickup`, `item_type_delay_put`, `item_type_delay_take`, `item_type_delay_give`, `item_type_delay_drop`) VALUES + (75, 2, 'Grenade', 1, 12, 0, 500, 0, 270, 0, 0, -1, 1.6, 0, 0, 0, 0, 0, 'no-image.png', 'no-image.png', 'no-image.png', 0, 0, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `item_type` (`item_type_id`, `item_type_server`, `item_type_name`, `item_type_use_type`, `item_type_use_id`, `item_type_use_value`, `item_type_order_price`, `item_type_drop_type`, `item_type_drop_model`, `item_type_drop_pos_x`, `item_type_drop_pos_y`, `item_type_drop_pos_z`, `item_type_drop_rot_x`, `item_type_drop_rot_y`, `item_type_drop_rot_z`, `item_type_drop_scale_x`, `item_type_drop_scale_y`, `item_type_drop_scale_z`, `item_type_image_small`, `item_type_image_large`, `item_type_image_hotbar`, `item_type_size`, `item_type_capacity`, `item_type_demand_multiplier`, `item_type_supply_multiplier`, `item_type_risk_multiplier`, `item_type_enabled`, `item_type_delay_switch`, `item_type_delay_use`, `item_type_delay_pickup`, `item_type_delay_put`, `item_type_delay_take`, `item_type_delay_give`, `item_type_delay_drop`) VALUES + (76, 2, 'Remote Grenade', 1, 13, 0, 1000, 0, 270, 0, 0, -1, 1.6, 0, 0, 0, 0, 0, 'no-image.png', 'no-image.png', 'no-image.png', 0, 0, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `item_type` (`item_type_id`, `item_type_server`, `item_type_name`, `item_type_use_type`, `item_type_use_id`, `item_type_use_value`, `item_type_order_price`, `item_type_drop_type`, `item_type_drop_model`, `item_type_drop_pos_x`, `item_type_drop_pos_y`, `item_type_drop_pos_z`, `item_type_drop_rot_x`, `item_type_drop_rot_y`, `item_type_drop_rot_z`, `item_type_drop_scale_x`, `item_type_drop_scale_y`, `item_type_drop_scale_z`, `item_type_image_small`, `item_type_image_large`, `item_type_image_hotbar`, `item_type_size`, `item_type_capacity`, `item_type_demand_multiplier`, `item_type_supply_multiplier`, `item_type_risk_multiplier`, `item_type_enabled`, `item_type_delay_switch`, `item_type_delay_use`, `item_type_delay_pickup`, `item_type_delay_put`, `item_type_delay_take`, `item_type_delay_give`, `item_type_delay_drop`) VALUES + (77, 2, 'Teargas', 1, 14, 0, 150, 0, 271, 0, 0, -1, 1.6, 0, 0, 0, 0, 0, 'no-image.png', 'no-image.png', 'no-image.png', 0, 0, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `item_type` (`item_type_id`, `item_type_server`, `item_type_name`, `item_type_use_type`, `item_type_use_id`, `item_type_use_value`, `item_type_order_price`, `item_type_drop_type`, `item_type_drop_model`, `item_type_drop_pos_x`, `item_type_drop_pos_y`, `item_type_drop_pos_z`, `item_type_drop_rot_x`, `item_type_drop_rot_y`, `item_type_drop_rot_z`, `item_type_drop_scale_x`, `item_type_drop_scale_y`, `item_type_drop_scale_z`, `item_type_image_small`, `item_type_image_large`, `item_type_image_hotbar`, `item_type_size`, `item_type_capacity`, `item_type_demand_multiplier`, `item_type_supply_multiplier`, `item_type_risk_multiplier`, `item_type_enabled`, `item_type_delay_switch`, `item_type_delay_use`, `item_type_delay_pickup`, `item_type_delay_put`, `item_type_delay_take`, `item_type_delay_give`, `item_type_delay_drop`) VALUES + (78, 2, 'Molotov Cocktail', 1, 15, 0, 150, 0, 272, 0, 0, -1, 1.6, 0, 0, 0, 0, 0, 'no-image.png', 'no-image.png', 'no-image.png', 0, 0, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `item_type` (`item_type_id`, `item_type_server`, `item_type_name`, `item_type_use_type`, `item_type_use_id`, `item_type_use_value`, `item_type_order_price`, `item_type_drop_type`, `item_type_drop_model`, `item_type_drop_pos_x`, `item_type_drop_pos_y`, `item_type_drop_pos_z`, `item_type_drop_rot_x`, `item_type_drop_rot_y`, `item_type_drop_rot_z`, `item_type_drop_scale_x`, `item_type_drop_scale_y`, `item_type_drop_scale_z`, `item_type_image_small`, `item_type_image_large`, `item_type_image_hotbar`, `item_type_size`, `item_type_capacity`, `item_type_demand_multiplier`, `item_type_supply_multiplier`, `item_type_risk_multiplier`, `item_type_enabled`, `item_type_delay_switch`, `item_type_delay_use`, `item_type_delay_pickup`, `item_type_delay_put`, `item_type_delay_take`, `item_type_delay_give`, `item_type_delay_drop`) VALUES + (79, 2, 'Rocket (Unfirable)', 1, 16, 0, 0, 0, 273, 0, 0, -1, 1.6, 0, 0, 0, 0, 0, 'no-image.png', 'no-image.png', 'no-image.png', 0, 0, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `item_type` (`item_type_id`, `item_type_server`, `item_type_name`, `item_type_use_type`, `item_type_use_id`, `item_type_use_value`, `item_type_order_price`, `item_type_drop_type`, `item_type_drop_model`, `item_type_drop_pos_x`, `item_type_drop_pos_y`, `item_type_drop_pos_z`, `item_type_drop_rot_x`, `item_type_drop_rot_y`, `item_type_drop_rot_z`, `item_type_drop_scale_x`, `item_type_drop_scale_y`, `item_type_drop_scale_z`, `item_type_image_small`, `item_type_image_large`, `item_type_image_hotbar`, `item_type_size`, `item_type_capacity`, `item_type_demand_multiplier`, `item_type_supply_multiplier`, `item_type_risk_multiplier`, `item_type_enabled`, `item_type_delay_switch`, `item_type_delay_use`, `item_type_delay_pickup`, `item_type_delay_put`, `item_type_delay_take`, `item_type_delay_give`, `item_type_delay_drop`) VALUES + (80, 2, 'Colt .45', 1, 17, 0, 350, 0, 274, 0, 0, -1, 1.6, 0, 0, 0, 0, 0, 'no-image.png', 'no-image.png', 'no-image.png', 0, 0, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `item_type` (`item_type_id`, `item_type_server`, `item_type_name`, `item_type_use_type`, `item_type_use_id`, `item_type_use_value`, `item_type_order_price`, `item_type_drop_type`, `item_type_drop_model`, `item_type_drop_pos_x`, `item_type_drop_pos_y`, `item_type_drop_pos_z`, `item_type_drop_rot_x`, `item_type_drop_rot_y`, `item_type_drop_rot_z`, `item_type_drop_scale_x`, `item_type_drop_scale_y`, `item_type_drop_scale_z`, `item_type_image_small`, `item_type_image_large`, `item_type_image_hotbar`, `item_type_size`, `item_type_capacity`, `item_type_demand_multiplier`, `item_type_supply_multiplier`, `item_type_risk_multiplier`, `item_type_enabled`, `item_type_delay_switch`, `item_type_delay_use`, `item_type_delay_pickup`, `item_type_delay_put`, `item_type_delay_take`, `item_type_delay_give`, `item_type_delay_drop`) VALUES + (81, 2, 'Python', 1, 18, 0, 450, 0, 275, 0, 0, -1, 1.6, 0, 0, 0, 0, 0, 'no-image.png', 'no-image.png', 'no-image.png', 0, 0, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `item_type` (`item_type_id`, `item_type_server`, `item_type_name`, `item_type_use_type`, `item_type_use_id`, `item_type_use_value`, `item_type_order_price`, `item_type_drop_type`, `item_type_drop_model`, `item_type_drop_pos_x`, `item_type_drop_pos_y`, `item_type_drop_pos_z`, `item_type_drop_rot_x`, `item_type_drop_rot_y`, `item_type_drop_rot_z`, `item_type_drop_scale_x`, `item_type_drop_scale_y`, `item_type_drop_scale_z`, `item_type_image_small`, `item_type_image_large`, `item_type_image_hotbar`, `item_type_size`, `item_type_capacity`, `item_type_demand_multiplier`, `item_type_supply_multiplier`, `item_type_risk_multiplier`, `item_type_enabled`, `item_type_delay_switch`, `item_type_delay_use`, `item_type_delay_pickup`, `item_type_delay_put`, `item_type_delay_take`, `item_type_delay_give`, `item_type_delay_drop`) VALUES + (82, 2, 'Shotgun', 1, 19, 0, 450, 0, 277, 0, 0, -1, 1.6, 0, 0, 0, 0, 0, 'no-image.png', 'no-image.png', 'no-image.png', 0, 0, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `item_type` (`item_type_id`, `item_type_server`, `item_type_name`, `item_type_use_type`, `item_type_use_id`, `item_type_use_value`, `item_type_order_price`, `item_type_drop_type`, `item_type_drop_model`, `item_type_drop_pos_x`, `item_type_drop_pos_y`, `item_type_drop_pos_z`, `item_type_drop_rot_x`, `item_type_drop_rot_y`, `item_type_drop_rot_z`, `item_type_drop_scale_x`, `item_type_drop_scale_y`, `item_type_drop_scale_z`, `item_type_image_small`, `item_type_image_large`, `item_type_image_hotbar`, `item_type_size`, `item_type_capacity`, `item_type_demand_multiplier`, `item_type_supply_multiplier`, `item_type_risk_multiplier`, `item_type_enabled`, `item_type_delay_switch`, `item_type_delay_use`, `item_type_delay_pickup`, `item_type_delay_put`, `item_type_delay_take`, `item_type_delay_give`, `item_type_delay_drop`) VALUES + (83, 2, 'Spaz Shotgun', 1, 20, 0, 1250, 0, 278, 0, 0, -1, 1.6, 0, 0, 0, 0, 0, 'no-image.png', 'no-image.png', 'no-image.png', 0, 0, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `item_type` (`item_type_id`, `item_type_server`, `item_type_name`, `item_type_use_type`, `item_type_use_id`, `item_type_use_value`, `item_type_order_price`, `item_type_drop_type`, `item_type_drop_model`, `item_type_drop_pos_x`, `item_type_drop_pos_y`, `item_type_drop_pos_z`, `item_type_drop_rot_x`, `item_type_drop_rot_y`, `item_type_drop_rot_z`, `item_type_drop_scale_x`, `item_type_drop_scale_y`, `item_type_drop_scale_z`, `item_type_image_small`, `item_type_image_large`, `item_type_image_hotbar`, `item_type_size`, `item_type_capacity`, `item_type_demand_multiplier`, `item_type_supply_multiplier`, `item_type_risk_multiplier`, `item_type_enabled`, `item_type_delay_switch`, `item_type_delay_use`, `item_type_delay_pickup`, `item_type_delay_put`, `item_type_delay_take`, `item_type_delay_give`, `item_type_delay_drop`) VALUES + (84, 2, 'Stubby Shotgun', 1, 21, 0, 350, 0, 279, 0, 0, -1, 1.6, 0, 0, 0, 0, 0, 'no-image.png', 'no-image.png', 'no-image.png', 0, 0, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `item_type` (`item_type_id`, `item_type_server`, `item_type_name`, `item_type_use_type`, `item_type_use_id`, `item_type_use_value`, `item_type_order_price`, `item_type_drop_type`, `item_type_drop_model`, `item_type_drop_pos_x`, `item_type_drop_pos_y`, `item_type_drop_pos_z`, `item_type_drop_rot_x`, `item_type_drop_rot_y`, `item_type_drop_rot_z`, `item_type_drop_scale_x`, `item_type_drop_scale_y`, `item_type_drop_scale_z`, `item_type_image_small`, `item_type_image_large`, `item_type_image_hotbar`, `item_type_size`, `item_type_capacity`, `item_type_demand_multiplier`, `item_type_supply_multiplier`, `item_type_risk_multiplier`, `item_type_enabled`, `item_type_delay_switch`, `item_type_delay_use`, `item_type_delay_pickup`, `item_type_delay_put`, `item_type_delay_take`, `item_type_delay_give`, `item_type_delay_drop`) VALUES + (85, 2, 'Tec-9', 1, 22, 0, 500, 0, 281, 0, 0, -1, 1.6, 0, 0, 0, 0, 0, 'no-image.png', 'no-image.png', 'no-image.png', 0, 0, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `item_type` (`item_type_id`, `item_type_server`, `item_type_name`, `item_type_use_type`, `item_type_use_id`, `item_type_use_value`, `item_type_order_price`, `item_type_drop_type`, `item_type_drop_model`, `item_type_drop_pos_x`, `item_type_drop_pos_y`, `item_type_drop_pos_z`, `item_type_drop_rot_x`, `item_type_drop_rot_y`, `item_type_drop_rot_z`, `item_type_drop_scale_x`, `item_type_drop_scale_y`, `item_type_drop_scale_z`, `item_type_image_small`, `item_type_image_large`, `item_type_image_hotbar`, `item_type_size`, `item_type_capacity`, `item_type_demand_multiplier`, `item_type_supply_multiplier`, `item_type_risk_multiplier`, `item_type_enabled`, `item_type_delay_switch`, `item_type_delay_use`, `item_type_delay_pickup`, `item_type_delay_put`, `item_type_delay_take`, `item_type_delay_give`, `item_type_delay_drop`) VALUES + (86, 2, 'Uzi', 1, 23, 0, 550, 0, 282, 0, 0, -1, 1.6, 0, 0, 0, 0, 0, 'no-image.png', 'no-image.png', 'no-image.png', 0, 0, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `item_type` (`item_type_id`, `item_type_server`, `item_type_name`, `item_type_use_type`, `item_type_use_id`, `item_type_use_value`, `item_type_order_price`, `item_type_drop_type`, `item_type_drop_model`, `item_type_drop_pos_x`, `item_type_drop_pos_y`, `item_type_drop_pos_z`, `item_type_drop_rot_x`, `item_type_drop_rot_y`, `item_type_drop_rot_z`, `item_type_drop_scale_x`, `item_type_drop_scale_y`, `item_type_drop_scale_z`, `item_type_image_small`, `item_type_image_large`, `item_type_image_hotbar`, `item_type_size`, `item_type_capacity`, `item_type_demand_multiplier`, `item_type_supply_multiplier`, `item_type_risk_multiplier`, `item_type_enabled`, `item_type_delay_switch`, `item_type_delay_use`, `item_type_delay_pickup`, `item_type_delay_put`, `item_type_delay_take`, `item_type_delay_give`, `item_type_delay_drop`) VALUES + (87, 2, 'Ingram', 1, 24, 0, 575, 0, 283, 0, 0, -1, 1.6, 0, 0, 0, 0, 0, 'no-image.png', 'no-image.png', 'no-image.png', 0, 0, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `item_type` (`item_type_id`, `item_type_server`, `item_type_name`, `item_type_use_type`, `item_type_use_id`, `item_type_use_value`, `item_type_order_price`, `item_type_drop_type`, `item_type_drop_model`, `item_type_drop_pos_x`, `item_type_drop_pos_y`, `item_type_drop_pos_z`, `item_type_drop_rot_x`, `item_type_drop_rot_y`, `item_type_drop_rot_z`, `item_type_drop_scale_x`, `item_type_drop_scale_y`, `item_type_drop_scale_z`, `item_type_image_small`, `item_type_image_large`, `item_type_image_hotbar`, `item_type_size`, `item_type_capacity`, `item_type_demand_multiplier`, `item_type_supply_multiplier`, `item_type_risk_multiplier`, `item_type_enabled`, `item_type_delay_switch`, `item_type_delay_use`, `item_type_delay_pickup`, `item_type_delay_put`, `item_type_delay_take`, `item_type_delay_give`, `item_type_delay_drop`) VALUES + (88, 2, 'MP5', 1, 25, 0, 800, 0, 284, 0, 0, -1, 1.6, 0, 0, 0, 0, 0, 'no-image.png', 'no-image.png', 'no-image.png', 0, 0, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `item_type` (`item_type_id`, `item_type_server`, `item_type_name`, `item_type_use_type`, `item_type_use_id`, `item_type_use_value`, `item_type_order_price`, `item_type_drop_type`, `item_type_drop_model`, `item_type_drop_pos_x`, `item_type_drop_pos_y`, `item_type_drop_pos_z`, `item_type_drop_rot_x`, `item_type_drop_rot_y`, `item_type_drop_rot_z`, `item_type_drop_scale_x`, `item_type_drop_scale_y`, `item_type_drop_scale_z`, `item_type_image_small`, `item_type_image_large`, `item_type_image_hotbar`, `item_type_size`, `item_type_capacity`, `item_type_demand_multiplier`, `item_type_supply_multiplier`, `item_type_risk_multiplier`, `item_type_enabled`, `item_type_delay_switch`, `item_type_delay_use`, `item_type_delay_pickup`, `item_type_delay_put`, `item_type_delay_take`, `item_type_delay_give`, `item_type_delay_drop`) VALUES + (89, 2, 'M4', 1, 26, 0, 1500, 0, 280, 0, 0, -1, 1.6, 0, 0, 0, 0, 0, 'no-image.png', 'no-image.png', 'no-image.png', 0, 0, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `item_type` (`item_type_id`, `item_type_server`, `item_type_name`, `item_type_use_type`, `item_type_use_id`, `item_type_use_value`, `item_type_order_price`, `item_type_drop_type`, `item_type_drop_model`, `item_type_drop_pos_x`, `item_type_drop_pos_y`, `item_type_drop_pos_z`, `item_type_drop_rot_x`, `item_type_drop_rot_y`, `item_type_drop_rot_z`, `item_type_drop_scale_x`, `item_type_drop_scale_y`, `item_type_drop_scale_z`, `item_type_image_small`, `item_type_image_large`, `item_type_image_hotbar`, `item_type_size`, `item_type_capacity`, `item_type_demand_multiplier`, `item_type_supply_multiplier`, `item_type_risk_multiplier`, `item_type_enabled`, `item_type_delay_switch`, `item_type_delay_use`, `item_type_delay_pickup`, `item_type_delay_put`, `item_type_delay_take`, `item_type_delay_give`, `item_type_delay_drop`) VALUES + (90, 2, 'Ruger', 1, 27, 0, 1250, 0, 276, 0, 0, -1, 1.6, 0, 0, 0, 0, 0, 'no-image.png', 'no-image.png', 'no-image.png', 0, 0, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `item_type` (`item_type_id`, `item_type_server`, `item_type_name`, `item_type_use_type`, `item_type_use_id`, `item_type_use_value`, `item_type_order_price`, `item_type_drop_type`, `item_type_drop_model`, `item_type_drop_pos_x`, `item_type_drop_pos_y`, `item_type_drop_pos_z`, `item_type_drop_rot_x`, `item_type_drop_rot_y`, `item_type_drop_rot_z`, `item_type_drop_scale_x`, `item_type_drop_scale_y`, `item_type_drop_scale_z`, `item_type_image_small`, `item_type_image_large`, `item_type_image_hotbar`, `item_type_size`, `item_type_capacity`, `item_type_demand_multiplier`, `item_type_supply_multiplier`, `item_type_risk_multiplier`, `item_type_enabled`, `item_type_delay_switch`, `item_type_delay_use`, `item_type_delay_pickup`, `item_type_delay_put`, `item_type_delay_take`, `item_type_delay_give`, `item_type_delay_drop`) VALUES + (91, 2, 'Sniper Rifle', 1, 28, 0, 1500, 0, 285, 0, 0, -1, 1.6, 0, 0, 0, 0, 0, 'no-image.png', 'no-image.png', 'no-image.png', 0, 0, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `item_type` (`item_type_id`, `item_type_server`, `item_type_name`, `item_type_use_type`, `item_type_use_id`, `item_type_use_value`, `item_type_order_price`, `item_type_drop_type`, `item_type_drop_model`, `item_type_drop_pos_x`, `item_type_drop_pos_y`, `item_type_drop_pos_z`, `item_type_drop_rot_x`, `item_type_drop_rot_y`, `item_type_drop_rot_z`, `item_type_drop_scale_x`, `item_type_drop_scale_y`, `item_type_drop_scale_z`, `item_type_image_small`, `item_type_image_large`, `item_type_image_hotbar`, `item_type_size`, `item_type_capacity`, `item_type_demand_multiplier`, `item_type_supply_multiplier`, `item_type_risk_multiplier`, `item_type_enabled`, `item_type_delay_switch`, `item_type_delay_use`, `item_type_delay_pickup`, `item_type_delay_put`, `item_type_delay_take`, `item_type_delay_give`, `item_type_delay_drop`) VALUES + (92, 2, 'Laser Sniper', 1, 29, 0, 2000, 0, 286, 0, 0, -1, 1.6, 0, 0, 0, 0, 0, 'no-image.png', 'no-image.png', 'no-image.png', 0, 0, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `item_type` (`item_type_id`, `item_type_server`, `item_type_name`, `item_type_use_type`, `item_type_use_id`, `item_type_use_value`, `item_type_order_price`, `item_type_drop_type`, `item_type_drop_model`, `item_type_drop_pos_x`, `item_type_drop_pos_y`, `item_type_drop_pos_z`, `item_type_drop_rot_x`, `item_type_drop_rot_y`, `item_type_drop_rot_z`, `item_type_drop_scale_x`, `item_type_drop_scale_y`, `item_type_drop_scale_z`, `item_type_image_small`, `item_type_image_large`, `item_type_image_hotbar`, `item_type_size`, `item_type_capacity`, `item_type_demand_multiplier`, `item_type_supply_multiplier`, `item_type_risk_multiplier`, `item_type_enabled`, `item_type_delay_switch`, `item_type_delay_use`, `item_type_delay_pickup`, `item_type_delay_put`, `item_type_delay_take`, `item_type_delay_give`, `item_type_delay_drop`) VALUES + (93, 2, 'RPG', 1, 30, 0, 5000, 0, 287, 0, 0, -1, 1.6, 0, 0, 0, 0, 0, 'no-image.png', 'no-image.png', 'no-image.png', 0, 0, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `item_type` (`item_type_id`, `item_type_server`, `item_type_name`, `item_type_use_type`, `item_type_use_id`, `item_type_use_value`, `item_type_order_price`, `item_type_drop_type`, `item_type_drop_model`, `item_type_drop_pos_x`, `item_type_drop_pos_y`, `item_type_drop_pos_z`, `item_type_drop_rot_x`, `item_type_drop_rot_y`, `item_type_drop_rot_z`, `item_type_drop_scale_x`, `item_type_drop_scale_y`, `item_type_drop_scale_z`, `item_type_image_small`, `item_type_image_large`, `item_type_image_hotbar`, `item_type_size`, `item_type_capacity`, `item_type_demand_multiplier`, `item_type_supply_multiplier`, `item_type_risk_multiplier`, `item_type_enabled`, `item_type_delay_switch`, `item_type_delay_use`, `item_type_delay_pickup`, `item_type_delay_put`, `item_type_delay_take`, `item_type_delay_give`, `item_type_delay_drop`) VALUES + (94, 2, 'Flame Thrower', 1, 31, 0, 3000, 0, 288, 0, 0, -1, 1.6, 0, 0, 0, 0, 0, 'no-image.png', 'no-image.png', 'no-image.png', 0, 0, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `item_type` (`item_type_id`, `item_type_server`, `item_type_name`, `item_type_use_type`, `item_type_use_id`, `item_type_use_value`, `item_type_order_price`, `item_type_drop_type`, `item_type_drop_model`, `item_type_drop_pos_x`, `item_type_drop_pos_y`, `item_type_drop_pos_z`, `item_type_drop_rot_x`, `item_type_drop_rot_y`, `item_type_drop_rot_z`, `item_type_drop_scale_x`, `item_type_drop_scale_y`, `item_type_drop_scale_z`, `item_type_image_small`, `item_type_image_large`, `item_type_image_hotbar`, `item_type_size`, `item_type_capacity`, `item_type_demand_multiplier`, `item_type_supply_multiplier`, `item_type_risk_multiplier`, `item_type_enabled`, `item_type_delay_switch`, `item_type_delay_use`, `item_type_delay_pickup`, `item_type_delay_put`, `item_type_delay_take`, `item_type_delay_give`, `item_type_delay_drop`) VALUES + (95, 2, 'M60', 1, 32, 0, 10000, 0, 289, 0, 0, -1, 1.6, 0, 0, 0, 0, 0, 'no-image.png', 'no-image.png', 'no-image.png', 0, 0, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `item_type` (`item_type_id`, `item_type_server`, `item_type_name`, `item_type_use_type`, `item_type_use_id`, `item_type_use_value`, `item_type_order_price`, `item_type_drop_type`, `item_type_drop_model`, `item_type_drop_pos_x`, `item_type_drop_pos_y`, `item_type_drop_pos_z`, `item_type_drop_rot_x`, `item_type_drop_rot_y`, `item_type_drop_rot_z`, `item_type_drop_scale_x`, `item_type_drop_scale_y`, `item_type_drop_scale_z`, `item_type_image_small`, `item_type_image_large`, `item_type_image_hotbar`, `item_type_size`, `item_type_capacity`, `item_type_demand_multiplier`, `item_type_supply_multiplier`, `item_type_risk_multiplier`, `item_type_enabled`, `item_type_delay_switch`, `item_type_delay_use`, `item_type_delay_pickup`, `item_type_delay_put`, `item_type_delay_take`, `item_type_delay_give`, `item_type_delay_drop`) VALUES + (96, 2, 'Minigun', 1, 33, 0, 25000, 0, 290, 0, 0, -1, 1.6, 0, 0, 0, 0, 0, 'no-image.png', 'no-image.png', 'no-image.png', 0, 0, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `item_type` (`item_type_id`, `item_type_server`, `item_type_name`, `item_type_use_type`, `item_type_use_id`, `item_type_use_value`, `item_type_order_price`, `item_type_drop_type`, `item_type_drop_model`, `item_type_drop_pos_x`, `item_type_drop_pos_y`, `item_type_drop_pos_z`, `item_type_drop_rot_x`, `item_type_drop_rot_y`, `item_type_drop_rot_z`, `item_type_drop_scale_x`, `item_type_drop_scale_y`, `item_type_drop_scale_z`, `item_type_image_small`, `item_type_image_large`, `item_type_image_hotbar`, `item_type_size`, `item_type_capacity`, `item_type_demand_multiplier`, `item_type_supply_multiplier`, `item_type_risk_multiplier`, `item_type_enabled`, `item_type_delay_switch`, `item_type_delay_use`, `item_type_delay_pickup`, `item_type_delay_put`, `item_type_delay_take`, `item_type_delay_give`, `item_type_delay_drop`) VALUES + (97, 2, 'Camera', 1, 34, 0, 25, 0, 292, 0, 0, -1, 1.6, 0, 0, 0, 0, 0, 'no-image.png', 'no-image.png', 'no-image.png', 0, 0, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `item_type` (`item_type_id`, `item_type_server`, `item_type_name`, `item_type_use_type`, `item_type_use_id`, `item_type_use_value`, `item_type_order_price`, `item_type_drop_type`, `item_type_drop_model`, `item_type_drop_pos_x`, `item_type_drop_pos_y`, `item_type_drop_pos_z`, `item_type_drop_rot_x`, `item_type_drop_rot_y`, `item_type_drop_rot_z`, `item_type_drop_scale_x`, `item_type_drop_scale_y`, `item_type_drop_scale_z`, `item_type_image_small`, `item_type_image_large`, `item_type_image_hotbar`, `item_type_size`, `item_type_capacity`, `item_type_demand_multiplier`, `item_type_supply_multiplier`, `item_type_risk_multiplier`, `item_type_enabled`, `item_type_delay_switch`, `item_type_delay_use`, `item_type_delay_pickup`, `item_type_delay_put`, `item_type_delay_take`, `item_type_delay_give`, `item_type_delay_drop`) VALUES + (98, 2, 'Detonator', 1, 36, 0, 0, 0, 291, 0, 0, -1, 1.6, 0, 0, 0, 0, 0, 'no-image.png', 'no-image.png', 'no-image.png', 0, 0, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `item_type` (`item_type_id`, `item_type_server`, `item_type_name`, `item_type_use_type`, `item_type_use_id`, `item_type_use_value`, `item_type_order_price`, `item_type_drop_type`, `item_type_drop_model`, `item_type_drop_pos_x`, `item_type_drop_pos_y`, `item_type_drop_pos_z`, `item_type_drop_rot_x`, `item_type_drop_rot_y`, `item_type_drop_rot_z`, `item_type_drop_scale_x`, `item_type_drop_scale_y`, `item_type_drop_scale_z`, `item_type_image_small`, `item_type_image_large`, `item_type_image_hotbar`, `item_type_size`, `item_type_capacity`, `item_type_demand_multiplier`, `item_type_supply_multiplier`, `item_type_risk_multiplier`, `item_type_enabled`, `item_type_delay_switch`, `item_type_delay_use`, `item_type_delay_pickup`, `item_type_delay_put`, `item_type_delay_take`, `item_type_delay_give`, `item_type_delay_drop`) VALUES + (99, 2, 'Phone', 3, 0, 0, 250, 1, 258, 0, 0, -1, 1.6, 0, 0, 0, 0, 0, 'no-image.png', 'no-image.png', 'no-image.png', 0, 0, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `item_type` (`item_type_id`, `item_type_server`, `item_type_name`, `item_type_use_type`, `item_type_use_id`, `item_type_use_value`, `item_type_order_price`, `item_type_drop_type`, `item_type_drop_model`, `item_type_drop_pos_x`, `item_type_drop_pos_y`, `item_type_drop_pos_z`, `item_type_drop_rot_x`, `item_type_drop_rot_y`, `item_type_drop_rot_z`, `item_type_drop_scale_x`, `item_type_drop_scale_y`, `item_type_drop_scale_z`, `item_type_image_small`, `item_type_image_large`, `item_type_image_hotbar`, `item_type_size`, `item_type_capacity`, `item_type_demand_multiplier`, `item_type_supply_multiplier`, `item_type_risk_multiplier`, `item_type_enabled`, `item_type_delay_switch`, `item_type_delay_use`, `item_type_delay_pickup`, `item_type_delay_put`, `item_type_delay_take`, `item_type_delay_give`, `item_type_delay_drop`) VALUES + (100, 2, 'Radio', 32, 0, 0, 0, 1, 291, 0, 0, -1, 1.6, 0, 0, 0, 0, 0, 'no-image.png', 'no-image.png', 'no-image.png', 0, 0, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `item_type` (`item_type_id`, `item_type_server`, `item_type_name`, `item_type_use_type`, `item_type_use_id`, `item_type_use_value`, `item_type_order_price`, `item_type_drop_type`, `item_type_drop_model`, `item_type_drop_pos_x`, `item_type_drop_pos_y`, `item_type_drop_pos_z`, `item_type_drop_rot_x`, `item_type_drop_rot_y`, `item_type_drop_rot_z`, `item_type_drop_scale_x`, `item_type_drop_scale_y`, `item_type_drop_scale_z`, `item_type_image_small`, `item_type_image_large`, `item_type_image_hotbar`, `item_type_size`, `item_type_capacity`, `item_type_demand_multiplier`, `item_type_supply_multiplier`, `item_type_risk_multiplier`, `item_type_enabled`, `item_type_delay_switch`, `item_type_delay_use`, `item_type_delay_pickup`, `item_type_delay_put`, `item_type_delay_take`, `item_type_delay_give`, `item_type_delay_drop`) VALUES + (101, 2, 'Pot Seed', 13, 0, 0, 2, 1, 0, 0, 0, -1, 1.6, 0, 0, 0, 0, 0, 'no-image.png', 'no-image.png', 'no-image.png', 0, 0, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `item_type` (`item_type_id`, `item_type_server`, `item_type_name`, `item_type_use_type`, `item_type_use_id`, `item_type_use_value`, `item_type_order_price`, `item_type_drop_type`, `item_type_drop_model`, `item_type_drop_pos_x`, `item_type_drop_pos_y`, `item_type_drop_pos_z`, `item_type_drop_rot_x`, `item_type_drop_rot_y`, `item_type_drop_rot_z`, `item_type_drop_scale_x`, `item_type_drop_scale_y`, `item_type_drop_scale_z`, `item_type_image_small`, `item_type_image_large`, `item_type_image_hotbar`, `item_type_size`, `item_type_capacity`, `item_type_demand_multiplier`, `item_type_supply_multiplier`, `item_type_risk_multiplier`, `item_type_enabled`, `item_type_delay_switch`, `item_type_delay_use`, `item_type_delay_pickup`, `item_type_delay_put`, `item_type_delay_take`, `item_type_delay_give`, `item_type_delay_drop`) VALUES + (102, 2, 'Weed', 14, 0, 0, 20, 1, 0, 0, 0, -1, 1.6, 0, 0, 0.3, 0.3, 0.3, 'no-image.png', 'no-image.png', 'no-image.png', 0, 0, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `item_type` (`item_type_id`, `item_type_server`, `item_type_name`, `item_type_use_type`, `item_type_use_id`, `item_type_use_value`, `item_type_order_price`, `item_type_drop_type`, `item_type_drop_model`, `item_type_drop_pos_x`, `item_type_drop_pos_y`, `item_type_drop_pos_z`, `item_type_drop_rot_x`, `item_type_drop_rot_y`, `item_type_drop_rot_z`, `item_type_drop_scale_x`, `item_type_drop_scale_y`, `item_type_drop_scale_z`, `item_type_image_small`, `item_type_image_large`, `item_type_image_hotbar`, `item_type_size`, `item_type_capacity`, `item_type_demand_multiplier`, `item_type_supply_multiplier`, `item_type_risk_multiplier`, `item_type_enabled`, `item_type_delay_switch`, `item_type_delay_use`, `item_type_delay_pickup`, `item_type_delay_put`, `item_type_delay_take`, `item_type_delay_give`, `item_type_delay_drop`) VALUES + (103, 2, 'Meth', 16, 0, 0, 100, 1, 0, 0, 0, -1, 1.6, 0, 0, 0.3, 0.3, 0.3, 'no-image.png', 'no-image.png', 'no-image.png', 0, 100, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `item_type` (`item_type_id`, `item_type_server`, `item_type_name`, `item_type_use_type`, `item_type_use_id`, `item_type_use_value`, `item_type_order_price`, `item_type_drop_type`, `item_type_drop_model`, `item_type_drop_pos_x`, `item_type_drop_pos_y`, `item_type_drop_pos_z`, `item_type_drop_rot_x`, `item_type_drop_rot_y`, `item_type_drop_rot_z`, `item_type_drop_scale_x`, `item_type_drop_scale_y`, `item_type_drop_scale_z`, `item_type_image_small`, `item_type_image_large`, `item_type_image_hotbar`, `item_type_size`, `item_type_capacity`, `item_type_demand_multiplier`, `item_type_supply_multiplier`, `item_type_risk_multiplier`, `item_type_enabled`, `item_type_delay_switch`, `item_type_delay_use`, `item_type_delay_pickup`, `item_type_delay_put`, `item_type_delay_take`, `item_type_delay_give`, `item_type_delay_drop`) VALUES + (104, 2, 'Coke', 15, 0, 0, 250, 1, 0, 0, 0, -1, 1.6, 0, 0, 0.3, 0.3, 0.3, 'no-image.png', 'no-image.png', 'no-image.png', 0, 100, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `item_type` (`item_type_id`, `item_type_server`, `item_type_name`, `item_type_use_type`, `item_type_use_id`, `item_type_use_value`, `item_type_order_price`, `item_type_drop_type`, `item_type_drop_model`, `item_type_drop_pos_x`, `item_type_drop_pos_y`, `item_type_drop_pos_z`, `item_type_drop_rot_x`, `item_type_drop_rot_y`, `item_type_drop_rot_z`, `item_type_drop_scale_x`, `item_type_drop_scale_y`, `item_type_drop_scale_z`, `item_type_image_small`, `item_type_image_large`, `item_type_image_hotbar`, `item_type_size`, `item_type_capacity`, `item_type_demand_multiplier`, `item_type_supply_multiplier`, `item_type_risk_multiplier`, `item_type_enabled`, `item_type_delay_switch`, `item_type_delay_use`, `item_type_delay_pickup`, `item_type_delay_put`, `item_type_delay_take`, `item_type_delay_give`, `item_type_delay_drop`) VALUES + (105, 2, 'Wallet', 9, 0, 0, 10, 1, 0, 0, 0, -1, 1.6, 0, 0, 0.3, 0.3, 0.2, 'no-image.png', 'no-image.png', 'no-image.png', 0, 0, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `item_type` (`item_type_id`, `item_type_server`, `item_type_name`, `item_type_use_type`, `item_type_use_id`, `item_type_use_value`, `item_type_order_price`, `item_type_drop_type`, `item_type_drop_model`, `item_type_drop_pos_x`, `item_type_drop_pos_y`, `item_type_drop_pos_z`, `item_type_drop_rot_x`, `item_type_drop_rot_y`, `item_type_drop_rot_z`, `item_type_drop_scale_x`, `item_type_drop_scale_y`, `item_type_drop_scale_z`, `item_type_image_small`, `item_type_image_large`, `item_type_image_hotbar`, `item_type_size`, `item_type_capacity`, `item_type_demand_multiplier`, `item_type_supply_multiplier`, `item_type_risk_multiplier`, `item_type_enabled`, `item_type_delay_switch`, `item_type_delay_use`, `item_type_delay_pickup`, `item_type_delay_put`, `item_type_delay_take`, `item_type_delay_give`, `item_type_delay_drop`) VALUES + (106, 2, 'Crate', 9, 0, 0, 25, 1, 349, 0, 0, -1, 1.6, 0, 0, 0, 0, 0, 'no-image.png', 'no-image.png', 'no-image.png', 0, 0, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `item_type` (`item_type_id`, `item_type_server`, `item_type_name`, `item_type_use_type`, `item_type_use_id`, `item_type_use_value`, `item_type_order_price`, `item_type_drop_type`, `item_type_drop_model`, `item_type_drop_pos_x`, `item_type_drop_pos_y`, `item_type_drop_pos_z`, `item_type_drop_rot_x`, `item_type_drop_rot_y`, `item_type_drop_rot_z`, `item_type_drop_scale_x`, `item_type_drop_scale_y`, `item_type_drop_scale_z`, `item_type_image_small`, `item_type_image_large`, `item_type_image_hotbar`, `item_type_size`, `item_type_capacity`, `item_type_demand_multiplier`, `item_type_supply_multiplier`, `item_type_risk_multiplier`, `item_type_enabled`, `item_type_delay_switch`, `item_type_delay_use`, `item_type_delay_pickup`, `item_type_delay_put`, `item_type_delay_take`, `item_type_delay_give`, `item_type_delay_drop`) VALUES + (107, 2, 'Cardboard Box', 9, 0, 0, 25, 1, 346, 0, 0, -1, 1.6, 0, 0, 0, 0, 0, 'no-image.png', 'no-image.png', 'no-image.png', 0, 0, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `item_type` (`item_type_id`, `item_type_server`, `item_type_name`, `item_type_use_type`, `item_type_use_id`, `item_type_use_value`, `item_type_order_price`, `item_type_drop_type`, `item_type_drop_model`, `item_type_drop_pos_x`, `item_type_drop_pos_y`, `item_type_drop_pos_z`, `item_type_drop_rot_x`, `item_type_drop_rot_y`, `item_type_drop_rot_z`, `item_type_drop_scale_x`, `item_type_drop_scale_y`, `item_type_drop_scale_z`, `item_type_image_small`, `item_type_image_large`, `item_type_image_hotbar`, `item_type_size`, `item_type_capacity`, `item_type_demand_multiplier`, `item_type_supply_multiplier`, `item_type_risk_multiplier`, `item_type_enabled`, `item_type_delay_switch`, `item_type_delay_use`, `item_type_delay_pickup`, `item_type_delay_put`, `item_type_delay_take`, `item_type_delay_give`, `item_type_delay_drop`) VALUES + (108, 2, 'Barrel', 9, 0, 0, 25, 1, 342, 0, 0, -1, 1.6, 0, 0, 0, 0, 0, 'no-image.png', 'no-image.png', 'no-image.png', 0, 0, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `item_type` (`item_type_id`, `item_type_server`, `item_type_name`, `item_type_use_type`, `item_type_use_id`, `item_type_use_value`, `item_type_order_price`, `item_type_drop_type`, `item_type_drop_model`, `item_type_drop_pos_x`, `item_type_drop_pos_y`, `item_type_drop_pos_z`, `item_type_drop_rot_x`, `item_type_drop_rot_y`, `item_type_drop_rot_z`, `item_type_drop_scale_x`, `item_type_drop_scale_y`, `item_type_drop_scale_z`, `item_type_image_small`, `item_type_image_large`, `item_type_image_hotbar`, `item_type_size`, `item_type_capacity`, `item_type_demand_multiplier`, `item_type_supply_multiplier`, `item_type_risk_multiplier`, `item_type_enabled`, `item_type_delay_switch`, `item_type_delay_use`, `item_type_delay_pickup`, `item_type_delay_put`, `item_type_delay_take`, `item_type_delay_give`, `item_type_delay_drop`) VALUES + (109, 2, 'Outfit', 6, 0, 0, 50, 1, 502, 0, 0, -1, 1.6, 0, 0, 0, 0, 0, 'no-image.png', 'no-image.png', 'no-image.png', 0, 0, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `item_type` (`item_type_id`, `item_type_server`, `item_type_name`, `item_type_use_type`, `item_type_use_id`, `item_type_use_value`, `item_type_order_price`, `item_type_drop_type`, `item_type_drop_model`, `item_type_drop_pos_x`, `item_type_drop_pos_y`, `item_type_drop_pos_z`, `item_type_drop_rot_x`, `item_type_drop_rot_y`, `item_type_drop_rot_z`, `item_type_drop_scale_x`, `item_type_drop_scale_y`, `item_type_drop_scale_z`, `item_type_image_small`, `item_type_image_large`, `item_type_image_hotbar`, `item_type_size`, `item_type_capacity`, `item_type_demand_multiplier`, `item_type_supply_multiplier`, `item_type_risk_multiplier`, `item_type_enabled`, `item_type_delay_switch`, `item_type_delay_use`, `item_type_delay_pickup`, `item_type_delay_put`, `item_type_delay_take`, `item_type_delay_give`, `item_type_delay_drop`) VALUES + (110, 2, 'Megaphone', 15, 0, 0, 35, 1, 502, 0, 0, -1, 1.6, 0, 0, 0, 0, 0, 'no-image.png', 'no-image.png', 'no-image.png', 0, 100, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `item_type` (`item_type_id`, `item_type_server`, `item_type_name`, `item_type_use_type`, `item_type_use_id`, `item_type_use_value`, `item_type_order_price`, `item_type_drop_type`, `item_type_drop_model`, `item_type_drop_pos_x`, `item_type_drop_pos_y`, `item_type_drop_pos_z`, `item_type_drop_rot_x`, `item_type_drop_rot_y`, `item_type_drop_rot_z`, `item_type_drop_scale_x`, `item_type_drop_scale_y`, `item_type_drop_scale_z`, `item_type_image_small`, `item_type_image_large`, `item_type_image_hotbar`, `item_type_size`, `item_type_capacity`, `item_type_demand_multiplier`, `item_type_supply_multiplier`, `item_type_risk_multiplier`, `item_type_enabled`, `item_type_delay_switch`, `item_type_delay_use`, `item_type_delay_pickup`, `item_type_delay_put`, `item_type_delay_take`, `item_type_delay_give`, `item_type_delay_drop`) VALUES + (111, 2, 'Bottle of Water', 18, 1, 10, 3, 1, 596, 0, 0, -1, 1.6, 0, 0, 0, 0, 0, 'no-image.png', 'no-image.png', 'no-image.png', 0, 100, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `item_type` (`item_type_id`, `item_type_server`, `item_type_name`, `item_type_use_type`, `item_type_use_id`, `item_type_use_value`, `item_type_order_price`, `item_type_drop_type`, `item_type_drop_model`, `item_type_drop_pos_x`, `item_type_drop_pos_y`, `item_type_drop_pos_z`, `item_type_drop_rot_x`, `item_type_drop_rot_y`, `item_type_drop_rot_z`, `item_type_drop_scale_x`, `item_type_drop_scale_y`, `item_type_drop_scale_z`, `item_type_image_small`, `item_type_image_large`, `item_type_image_hotbar`, `item_type_size`, `item_type_capacity`, `item_type_demand_multiplier`, `item_type_supply_multiplier`, `item_type_risk_multiplier`, `item_type_enabled`, `item_type_delay_switch`, `item_type_delay_use`, `item_type_delay_pickup`, `item_type_delay_put`, `item_type_delay_take`, `item_type_delay_give`, `item_type_delay_drop`) VALUES + (112, 2, 'Can of Beer', 35, 3, 5, 5, 1, 594, 0, 0, -1, 1.6, 0, 0, 0, 0, 0, 'no-image.png', 'no-image.png', 'no-image.png', 0, 100, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `item_type` (`item_type_id`, `item_type_server`, `item_type_name`, `item_type_use_type`, `item_type_use_id`, `item_type_use_value`, `item_type_order_price`, `item_type_drop_type`, `item_type_drop_model`, `item_type_drop_pos_x`, `item_type_drop_pos_y`, `item_type_drop_pos_z`, `item_type_drop_rot_x`, `item_type_drop_rot_y`, `item_type_drop_rot_z`, `item_type_drop_scale_x`, `item_type_drop_scale_y`, `item_type_drop_scale_z`, `item_type_image_small`, `item_type_image_large`, `item_type_image_hotbar`, `item_type_size`, `item_type_capacity`, `item_type_demand_multiplier`, `item_type_supply_multiplier`, `item_type_risk_multiplier`, `item_type_enabled`, `item_type_delay_switch`, `item_type_delay_use`, `item_type_delay_pickup`, `item_type_delay_put`, `item_type_delay_take`, `item_type_delay_give`, `item_type_delay_drop`) VALUES + (113, 2, 'Bottle of Vodka', 35, 3, 5, 10, 1, 596, 0, 0, -1, 1.6, 0, 0, 0, 0, 0, 'no-image.png', 'no-image.png', 'no-image.png', 0, 100, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `item_type` (`item_type_id`, `item_type_server`, `item_type_name`, `item_type_use_type`, `item_type_use_id`, `item_type_use_value`, `item_type_order_price`, `item_type_drop_type`, `item_type_drop_model`, `item_type_drop_pos_x`, `item_type_drop_pos_y`, `item_type_drop_pos_z`, `item_type_drop_rot_x`, `item_type_drop_rot_y`, `item_type_drop_rot_z`, `item_type_drop_scale_x`, `item_type_drop_scale_y`, `item_type_drop_scale_z`, `item_type_image_small`, `item_type_image_large`, `item_type_image_hotbar`, `item_type_size`, `item_type_capacity`, `item_type_demand_multiplier`, `item_type_supply_multiplier`, `item_type_risk_multiplier`, `item_type_enabled`, `item_type_delay_switch`, `item_type_delay_use`, `item_type_delay_pickup`, `item_type_delay_put`, `item_type_delay_take`, `item_type_delay_give`, `item_type_delay_drop`) VALUES + (114, 2, 'Bottle of Whiskey', 35, 3, 5, 12, 1, 592, 0, 0, -1, 1.6, 0, 0, 0, 0, 0, 'no-image.png', 'no-image.png', 'no-image.png', 0, 100, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `item_type` (`item_type_id`, `item_type_server`, `item_type_name`, `item_type_use_type`, `item_type_use_id`, `item_type_use_value`, `item_type_order_price`, `item_type_drop_type`, `item_type_drop_model`, `item_type_drop_pos_x`, `item_type_drop_pos_y`, `item_type_drop_pos_z`, `item_type_drop_rot_x`, `item_type_drop_rot_y`, `item_type_drop_rot_z`, `item_type_drop_scale_x`, `item_type_drop_scale_y`, `item_type_drop_scale_z`, `item_type_image_small`, `item_type_image_large`, `item_type_image_hotbar`, `item_type_size`, `item_type_capacity`, `item_type_demand_multiplier`, `item_type_supply_multiplier`, `item_type_risk_multiplier`, `item_type_enabled`, `item_type_delay_switch`, `item_type_delay_use`, `item_type_delay_pickup`, `item_type_delay_put`, `item_type_delay_take`, `item_type_delay_give`, `item_type_delay_drop`) VALUES + (115, 2, 'Handcuffs', 24, 0, 0, 100, 0, 502, 0, 0, -1, 1.6, 0, 0, 0.3, 0.3, 0.2, 'no-image.png', 'no-image.png', 'no-image.png', 0, 0, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `item_type` (`item_type_id`, `item_type_server`, `item_type_name`, `item_type_use_type`, `item_type_use_id`, `item_type_use_value`, `item_type_order_price`, `item_type_drop_type`, `item_type_drop_model`, `item_type_drop_pos_x`, `item_type_drop_pos_y`, `item_type_drop_pos_z`, `item_type_drop_rot_x`, `item_type_drop_rot_y`, `item_type_drop_rot_z`, `item_type_drop_scale_x`, `item_type_drop_scale_y`, `item_type_drop_scale_z`, `item_type_image_small`, `item_type_image_large`, `item_type_image_hotbar`, `item_type_size`, `item_type_capacity`, `item_type_demand_multiplier`, `item_type_supply_multiplier`, `item_type_risk_multiplier`, `item_type_enabled`, `item_type_delay_switch`, `item_type_delay_use`, `item_type_delay_pickup`, `item_type_delay_put`, `item_type_delay_take`, `item_type_delay_give`, `item_type_delay_drop`) VALUES + (116, 2, 'Rope', 25, 0, 0, 20, 0, 502, 0, 0, -1, 1.6, 0, 0, 0, 0, 0, 'no-image.png', 'no-image.png', 'no-image.png', 0, 0, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `item_type` (`item_type_id`, `item_type_server`, `item_type_name`, `item_type_use_type`, `item_type_use_id`, `item_type_use_value`, `item_type_order_price`, `item_type_drop_type`, `item_type_drop_model`, `item_type_drop_pos_x`, `item_type_drop_pos_y`, `item_type_drop_pos_z`, `item_type_drop_rot_x`, `item_type_drop_rot_y`, `item_type_drop_rot_z`, `item_type_drop_scale_x`, `item_type_drop_scale_y`, `item_type_drop_scale_z`, `item_type_image_small`, `item_type_image_large`, `item_type_image_hotbar`, `item_type_size`, `item_type_capacity`, `item_type_demand_multiplier`, `item_type_supply_multiplier`, `item_type_risk_multiplier`, `item_type_enabled`, `item_type_delay_switch`, `item_type_delay_use`, `item_type_delay_pickup`, `item_type_delay_put`, `item_type_delay_take`, `item_type_delay_give`, `item_type_delay_drop`) VALUES + (117, 2, 'Blindfold', 26, 0, 0, 20, 0, 502, 0, 0, -1, 1.6, 0, 0, 0, 0, 0, 'no-image.png', 'no-image.png', 'no-image.png', 0, 0, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `item_type` (`item_type_id`, `item_type_server`, `item_type_name`, `item_type_use_type`, `item_type_use_id`, `item_type_use_value`, `item_type_order_price`, `item_type_drop_type`, `item_type_drop_model`, `item_type_drop_pos_x`, `item_type_drop_pos_y`, `item_type_drop_pos_z`, `item_type_drop_rot_x`, `item_type_drop_rot_y`, `item_type_drop_rot_z`, `item_type_drop_scale_x`, `item_type_drop_scale_y`, `item_type_drop_scale_z`, `item_type_image_small`, `item_type_image_large`, `item_type_image_hotbar`, `item_type_size`, `item_type_capacity`, `item_type_demand_multiplier`, `item_type_supply_multiplier`, `item_type_risk_multiplier`, `item_type_enabled`, `item_type_delay_switch`, `item_type_delay_use`, `item_type_delay_pickup`, `item_type_delay_put`, `item_type_delay_take`, `item_type_delay_give`, `item_type_delay_drop`) VALUES + (118, 2, 'Bulletproof Vest', 28, 0, 0, 0, 1, 500, 0, 0, -1, 1.6, 0, 0, 0, 0, 0, 'no-image.png', 'no-image.png', 'no-image.png', 0, 100, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `item_type` (`item_type_id`, `item_type_server`, `item_type_name`, `item_type_use_type`, `item_type_use_id`, `item_type_use_value`, `item_type_order_price`, `item_type_drop_type`, `item_type_drop_model`, `item_type_drop_pos_x`, `item_type_drop_pos_y`, `item_type_drop_pos_z`, `item_type_drop_rot_x`, `item_type_drop_rot_y`, `item_type_drop_rot_z`, `item_type_drop_scale_x`, `item_type_drop_scale_y`, `item_type_drop_scale_z`, `item_type_image_small`, `item_type_image_large`, `item_type_image_hotbar`, `item_type_size`, `item_type_capacity`, `item_type_demand_multiplier`, `item_type_supply_multiplier`, `item_type_risk_multiplier`, `item_type_enabled`, `item_type_delay_switch`, `item_type_delay_use`, `item_type_delay_pickup`, `item_type_delay_put`, `item_type_delay_take`, `item_type_delay_give`, `item_type_delay_drop`) VALUES + (119, 2, 'Uniform', 6, 0, 0, 0, 1, 502, 0, 0, -1, 1.6, 0, 0, 0, 0, 0, 'no-image.png', 'no-image.png', 'no-image.png', 0, 0, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `item_type` (`item_type_id`, `item_type_server`, `item_type_name`, `item_type_use_type`, `item_type_use_id`, `item_type_use_value`, `item_type_order_price`, `item_type_drop_type`, `item_type_drop_model`, `item_type_drop_pos_x`, `item_type_drop_pos_y`, `item_type_drop_pos_z`, `item_type_drop_rot_x`, `item_type_drop_rot_y`, `item_type_drop_rot_z`, `item_type_drop_scale_x`, `item_type_drop_scale_y`, `item_type_drop_scale_z`, `item_type_image_small`, `item_type_image_large`, `item_type_image_hotbar`, `item_type_size`, `item_type_capacity`, `item_type_demand_multiplier`, `item_type_supply_multiplier`, `item_type_risk_multiplier`, `item_type_enabled`, `item_type_delay_switch`, `item_type_delay_use`, `item_type_delay_pickup`, `item_type_delay_put`, `item_type_delay_take`, `item_type_delay_give`, `item_type_delay_drop`) VALUES + (120, 2, 'Fire Extinguisher', 36, 0, 0, 0, 0, 502, 0, 0, -1, 1.6, 0, 0, 0, 0, 0, 'no-image.png', 'no-image.png', 'no-image.png', 0, 1000, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `item_type` (`item_type_id`, `item_type_server`, `item_type_name`, `item_type_use_type`, `item_type_use_id`, `item_type_use_value`, `item_type_order_price`, `item_type_drop_type`, `item_type_drop_model`, `item_type_drop_pos_x`, `item_type_drop_pos_y`, `item_type_drop_pos_z`, `item_type_drop_rot_x`, `item_type_drop_rot_y`, `item_type_drop_rot_z`, `item_type_drop_scale_x`, `item_type_drop_scale_y`, `item_type_drop_scale_z`, `item_type_image_small`, `item_type_image_large`, `item_type_image_hotbar`, `item_type_size`, `item_type_capacity`, `item_type_demand_multiplier`, `item_type_supply_multiplier`, `item_type_risk_multiplier`, `item_type_enabled`, `item_type_delay_switch`, `item_type_delay_use`, `item_type_delay_pickup`, `item_type_delay_put`, `item_type_delay_take`, `item_type_delay_give`, `item_type_delay_drop`) VALUES + (121, 2, 'Tazer', 27, 17, 0, 350, 0, 502, 0, 0, -1, 1.6, 0, 0, 0, 0, 0, 'no-image.png', 'no-image.png', 'no-image.png', 0, 0, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `item_type` (`item_type_id`, `item_type_server`, `item_type_name`, `item_type_use_type`, `item_type_use_id`, `item_type_use_value`, `item_type_order_price`, `item_type_drop_type`, `item_type_drop_model`, `item_type_drop_pos_x`, `item_type_drop_pos_y`, `item_type_drop_pos_z`, `item_type_drop_rot_x`, `item_type_drop_rot_y`, `item_type_drop_rot_z`, `item_type_drop_scale_x`, `item_type_drop_scale_y`, `item_type_drop_scale_z`, `item_type_image_small`, `item_type_image_large`, `item_type_image_hotbar`, `item_type_size`, `item_type_capacity`, `item_type_demand_multiplier`, `item_type_supply_multiplier`, `item_type_risk_multiplier`, `item_type_enabled`, `item_type_delay_switch`, `item_type_delay_use`, `item_type_delay_pickup`, `item_type_delay_put`, `item_type_delay_take`, `item_type_delay_give`, `item_type_delay_drop`) VALUES + (122, 2, 'Pepper Spray', 38, 0, 0, 150, 0, 502, 0, 0, -1, 1.6, 0, 0, 0, 0, 0, 'no-image.png', 'no-image.png', 'no-image.png', 0, 1000, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `item_type` (`item_type_id`, `item_type_server`, `item_type_name`, `item_type_use_type`, `item_type_use_id`, `item_type_use_value`, `item_type_order_price`, `item_type_drop_type`, `item_type_drop_model`, `item_type_drop_pos_x`, `item_type_drop_pos_y`, `item_type_drop_pos_z`, `item_type_drop_rot_x`, `item_type_drop_rot_y`, `item_type_drop_rot_z`, `item_type_drop_scale_x`, `item_type_drop_scale_y`, `item_type_drop_scale_z`, `item_type_image_small`, `item_type_image_large`, `item_type_image_hotbar`, `item_type_size`, `item_type_capacity`, `item_type_demand_multiplier`, `item_type_supply_multiplier`, `item_type_risk_multiplier`, `item_type_enabled`, `item_type_delay_switch`, `item_type_delay_use`, `item_type_delay_pickup`, `item_type_delay_put`, `item_type_delay_take`, `item_type_delay_give`, `item_type_delay_drop`) VALUES + (123, 2, 'Flashlight', 39, 0, 0, 35, 0, 502, 0, 0, -1, 1.6, 0, 0, 0, 0, 0, 'no-image.png', 'no-image.png', 'no-image.png', 0, 0, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `item_type` (`item_type_id`, `item_type_server`, `item_type_name`, `item_type_use_type`, `item_type_use_id`, `item_type_use_value`, `item_type_order_price`, `item_type_drop_type`, `item_type_drop_model`, `item_type_drop_pos_x`, `item_type_drop_pos_y`, `item_type_drop_pos_z`, `item_type_drop_rot_x`, `item_type_drop_rot_y`, `item_type_drop_rot_z`, `item_type_drop_scale_x`, `item_type_drop_scale_y`, `item_type_drop_scale_z`, `item_type_image_small`, `item_type_image_large`, `item_type_image_hotbar`, `item_type_size`, `item_type_capacity`, `item_type_demand_multiplier`, `item_type_supply_multiplier`, `item_type_risk_multiplier`, `item_type_enabled`, `item_type_delay_switch`, `item_type_delay_use`, `item_type_delay_pickup`, `item_type_delay_put`, `item_type_delay_take`, `item_type_delay_give`, `item_type_delay_drop`) VALUES + (124, 2, 'First Aid Kit', 29, 0, 50, 75, 0, 502, 0, 0, -1, 1.6, 0, 0, 0, 0, 0, 'no-image.png', 'no-image.png', 'no-image.png', 0, 100, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `item_type` (`item_type_id`, `item_type_server`, `item_type_name`, `item_type_use_type`, `item_type_use_id`, `item_type_use_value`, `item_type_order_price`, `item_type_drop_type`, `item_type_drop_model`, `item_type_drop_pos_x`, `item_type_drop_pos_y`, `item_type_drop_pos_z`, `item_type_drop_rot_x`, `item_type_drop_rot_y`, `item_type_drop_rot_z`, `item_type_drop_scale_x`, `item_type_drop_scale_y`, `item_type_drop_scale_z`, `item_type_image_small`, `item_type_image_large`, `item_type_image_hotbar`, `item_type_size`, `item_type_capacity`, `item_type_demand_multiplier`, `item_type_supply_multiplier`, `item_type_risk_multiplier`, `item_type_enabled`, `item_type_delay_switch`, `item_type_delay_use`, `item_type_delay_pickup`, `item_type_delay_put`, `item_type_delay_take`, `item_type_delay_give`, `item_type_delay_drop`) VALUES + (125, 2, 'AED', 29, 0, 100, 3000, 0, 502, 0, 0, -1, 1.6, 0, 0, 0, 0, 0, 'no-image.png', 'no-image.png', 'no-image.png', 0, 100, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `item_type` (`item_type_id`, `item_type_server`, `item_type_name`, `item_type_use_type`, `item_type_use_id`, `item_type_use_value`, `item_type_order_price`, `item_type_drop_type`, `item_type_drop_model`, `item_type_drop_pos_x`, `item_type_drop_pos_y`, `item_type_drop_pos_z`, `item_type_drop_rot_x`, `item_type_drop_rot_y`, `item_type_drop_rot_z`, `item_type_drop_scale_x`, `item_type_drop_scale_y`, `item_type_drop_scale_z`, `item_type_image_small`, `item_type_image_large`, `item_type_image_hotbar`, `item_type_size`, `item_type_capacity`, `item_type_demand_multiplier`, `item_type_supply_multiplier`, `item_type_risk_multiplier`, `item_type_enabled`, `item_type_delay_switch`, `item_type_delay_use`, `item_type_delay_pickup`, `item_type_delay_put`, `item_type_delay_take`, `item_type_delay_give`, `item_type_delay_drop`) VALUES + (126, 2, 'Morphine Syringe', 29, 0, 100, 650, 0, 502, 0, 0, -1, 1.6, 0, 0, 0, 0, 0, 'no-image.png', 'no-image.png', 'no-image.png', 0, 100, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `item_type` (`item_type_id`, `item_type_server`, `item_type_name`, `item_type_use_type`, `item_type_use_id`, `item_type_use_value`, `item_type_order_price`, `item_type_drop_type`, `item_type_drop_model`, `item_type_drop_pos_x`, `item_type_drop_pos_y`, `item_type_drop_pos_z`, `item_type_drop_rot_x`, `item_type_drop_rot_y`, `item_type_drop_rot_z`, `item_type_drop_scale_x`, `item_type_drop_scale_y`, `item_type_drop_scale_z`, `item_type_image_small`, `item_type_image_large`, `item_type_image_hotbar`, `item_type_size`, `item_type_capacity`, `item_type_demand_multiplier`, `item_type_supply_multiplier`, `item_type_risk_multiplier`, `item_type_enabled`, `item_type_delay_switch`, `item_type_delay_use`, `item_type_delay_pickup`, `item_type_delay_put`, `item_type_delay_take`, `item_type_delay_give`, `item_type_delay_drop`) VALUES + (127, 2, 'Cheeseburger', 19, 0, 10, 5, 0, 502, 0, 0, -1, 1.6, 0, 0, 0, 0, 0, 'no-image.png', 'no-image.png', 'no-image.png', 0, 100, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `item_type` (`item_type_id`, `item_type_server`, `item_type_name`, `item_type_use_type`, `item_type_use_id`, `item_type_use_value`, `item_type_order_price`, `item_type_drop_type`, `item_type_drop_model`, `item_type_drop_pos_x`, `item_type_drop_pos_y`, `item_type_drop_pos_z`, `item_type_drop_rot_x`, `item_type_drop_rot_y`, `item_type_drop_rot_z`, `item_type_drop_scale_x`, `item_type_drop_scale_y`, `item_type_drop_scale_z`, `item_type_image_small`, `item_type_image_large`, `item_type_image_hotbar`, `item_type_size`, `item_type_capacity`, `item_type_demand_multiplier`, `item_type_supply_multiplier`, `item_type_risk_multiplier`, `item_type_enabled`, `item_type_delay_switch`, `item_type_delay_use`, `item_type_delay_pickup`, `item_type_delay_put`, `item_type_delay_take`, `item_type_delay_give`, `item_type_delay_drop`) VALUES + (128, 2, 'Slice of Pizza', 19, 0, 10, 5, 0, 502, 0, 0, -1, 1.6, 0, 0, 0, 0, 0, 'no-image.png', 'no-image.png', 'no-image.png', 0, 100, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `item_type` (`item_type_id`, `item_type_server`, `item_type_name`, `item_type_use_type`, `item_type_use_id`, `item_type_use_value`, `item_type_order_price`, `item_type_drop_type`, `item_type_drop_model`, `item_type_drop_pos_x`, `item_type_drop_pos_y`, `item_type_drop_pos_z`, `item_type_drop_rot_x`, `item_type_drop_rot_y`, `item_type_drop_rot_z`, `item_type_drop_scale_x`, `item_type_drop_scale_y`, `item_type_drop_scale_z`, `item_type_image_small`, `item_type_image_large`, `item_type_image_hotbar`, `item_type_size`, `item_type_capacity`, `item_type_demand_multiplier`, `item_type_supply_multiplier`, `item_type_risk_multiplier`, `item_type_enabled`, `item_type_delay_switch`, `item_type_delay_use`, `item_type_delay_pickup`, `item_type_delay_put`, `item_type_delay_take`, `item_type_delay_give`, `item_type_delay_drop`) VALUES + (129, 2, 'Chicken Wing', 19, 0, 10, 5, 0, 502, 0, 0, -1, 1.6, 0, 0, 0.1, 0.1, 0.1, 'no-image.png', 'no-image.png', 'no-image.png', 0, 100, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `item_type` (`item_type_id`, `item_type_server`, `item_type_name`, `item_type_use_type`, `item_type_use_id`, `item_type_use_value`, `item_type_order_price`, `item_type_drop_type`, `item_type_drop_model`, `item_type_drop_pos_x`, `item_type_drop_pos_y`, `item_type_drop_pos_z`, `item_type_drop_rot_x`, `item_type_drop_rot_y`, `item_type_drop_rot_z`, `item_type_drop_scale_x`, `item_type_drop_scale_y`, `item_type_drop_scale_z`, `item_type_image_small`, `item_type_image_large`, `item_type_image_hotbar`, `item_type_size`, `item_type_capacity`, `item_type_demand_multiplier`, `item_type_supply_multiplier`, `item_type_risk_multiplier`, `item_type_enabled`, `item_type_delay_switch`, `item_type_delay_use`, `item_type_delay_pickup`, `item_type_delay_put`, `item_type_delay_take`, `item_type_delay_give`, `item_type_delay_drop`) VALUES + (130, 2, 'Pizza', 19, 0, 10, 15, 0, 510, 0, 0, -1, 1.6, 0, 0, 0, 0, 0, 'no-image.png', 'no-image.png', 'no-image.png', 0, 100, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `item_type` (`item_type_id`, `item_type_server`, `item_type_name`, `item_type_use_type`, `item_type_use_id`, `item_type_use_value`, `item_type_order_price`, `item_type_drop_type`, `item_type_drop_model`, `item_type_drop_pos_x`, `item_type_drop_pos_y`, `item_type_drop_pos_z`, `item_type_drop_rot_x`, `item_type_drop_rot_y`, `item_type_drop_rot_z`, `item_type_drop_scale_x`, `item_type_drop_scale_y`, `item_type_drop_scale_z`, `item_type_image_small`, `item_type_image_large`, `item_type_image_hotbar`, `item_type_size`, `item_type_capacity`, `item_type_demand_multiplier`, `item_type_supply_multiplier`, `item_type_risk_multiplier`, `item_type_enabled`, `item_type_delay_switch`, `item_type_delay_use`, `item_type_delay_pickup`, `item_type_delay_put`, `item_type_delay_take`, `item_type_delay_give`, `item_type_delay_drop`) VALUES + (131, 2, 'Walkie Talkie', 31, 0, 0, 50, 0, 182, 0, 0, -1, 1.6, 0, 0, 0, 0, 0, 'no-image.png', 'no-image.png', 'no-image.png', 0, 0, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `item_type` (`item_type_id`, `item_type_server`, `item_type_name`, `item_type_use_type`, `item_type_use_id`, `item_type_use_value`, `item_type_order_price`, `item_type_drop_type`, `item_type_drop_model`, `item_type_drop_pos_x`, `item_type_drop_pos_y`, `item_type_drop_pos_z`, `item_type_drop_rot_x`, `item_type_drop_rot_y`, `item_type_drop_rot_z`, `item_type_drop_scale_x`, `item_type_drop_scale_y`, `item_type_drop_scale_z`, `item_type_image_small`, `item_type_image_large`, `item_type_image_hotbar`, `item_type_size`, `item_type_capacity`, `item_type_demand_multiplier`, `item_type_supply_multiplier`, `item_type_risk_multiplier`, `item_type_enabled`, `item_type_delay_switch`, `item_type_delay_use`, `item_type_delay_pickup`, `item_type_delay_put`, `item_type_delay_take`, `item_type_delay_give`, `item_type_delay_drop`) VALUES + (132, 2, 'Bottle of Soda', 35, 2, 0, 0, 0, 597, 0, 0, -1, 1.6, 0, 0, 0, 0, 0, 'no-image.png', 'no-image.png', 'no-image.png', 0, 100, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `item_type` (`item_type_id`, `item_type_server`, `item_type_name`, `item_type_use_type`, `item_type_use_id`, `item_type_use_value`, `item_type_order_price`, `item_type_drop_type`, `item_type_drop_model`, `item_type_drop_pos_x`, `item_type_drop_pos_y`, `item_type_drop_pos_z`, `item_type_drop_rot_x`, `item_type_drop_rot_y`, `item_type_drop_rot_z`, `item_type_drop_scale_x`, `item_type_drop_scale_y`, `item_type_drop_scale_z`, `item_type_image_small`, `item_type_image_large`, `item_type_image_hotbar`, `item_type_size`, `item_type_capacity`, `item_type_demand_multiplier`, `item_type_supply_multiplier`, `item_type_risk_multiplier`, `item_type_enabled`, `item_type_delay_switch`, `item_type_delay_use`, `item_type_delay_pickup`, `item_type_delay_put`, `item_type_delay_take`, `item_type_delay_give`, `item_type_delay_drop`) VALUES + (133, 2, 'Can of Soda', 35, 2, 0, 0, 0, 594, 0, 0, -1, 1.6, 0, 0, 0, 0, 0, 'no-image.png', 'no-image.png', 'no-image.png', 0, 100, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `item_type` (`item_type_id`, `item_type_server`, `item_type_name`, `item_type_use_type`, `item_type_use_id`, `item_type_use_value`, `item_type_order_price`, `item_type_drop_type`, `item_type_drop_model`, `item_type_drop_pos_x`, `item_type_drop_pos_y`, `item_type_drop_pos_z`, `item_type_drop_rot_x`, `item_type_drop_rot_y`, `item_type_drop_rot_z`, `item_type_drop_scale_x`, `item_type_drop_scale_y`, `item_type_drop_scale_z`, `item_type_image_small`, `item_type_image_large`, `item_type_image_hotbar`, `item_type_size`, `item_type_capacity`, `item_type_demand_multiplier`, `item_type_supply_multiplier`, `item_type_risk_multiplier`, `item_type_enabled`, `item_type_delay_switch`, `item_type_delay_use`, `item_type_delay_pickup`, `item_type_delay_put`, `item_type_delay_take`, `item_type_delay_give`, `item_type_delay_drop`) VALUES + (134, 2, 'Badge', 34, 0, 0, 0, 0, 0, 0, 0, -1, 1.6, 0, 0, 0, 0, 0, 'no-image.png', 'no-image.png', 'no-image.png', 0, 0, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `item_type` (`item_type_id`, `item_type_server`, `item_type_name`, `item_type_use_type`, `item_type_use_id`, `item_type_use_value`, `item_type_order_price`, `item_type_drop_type`, `item_type_drop_model`, `item_type_drop_pos_x`, `item_type_drop_pos_y`, `item_type_drop_pos_z`, `item_type_drop_rot_x`, `item_type_drop_rot_y`, `item_type_drop_rot_z`, `item_type_drop_scale_x`, `item_type_drop_scale_y`, `item_type_drop_scale_z`, `item_type_image_small`, `item_type_image_large`, `item_type_image_hotbar`, `item_type_size`, `item_type_capacity`, `item_type_demand_multiplier`, `item_type_supply_multiplier`, `item_type_risk_multiplier`, `item_type_enabled`, `item_type_delay_switch`, `item_type_delay_use`, `item_type_delay_pickup`, `item_type_delay_put`, `item_type_delay_take`, `item_type_delay_give`, `item_type_delay_drop`) VALUES + (135, 4, 'Brass Knuckles', 1, 1, 0, 25, 0, 331, 0, 0, -0.95, 1.6, 0, 0, 0, 0, 0, 'no-image.png', 'no-image.png', 'no-image.png', 0, 0, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `item_type` (`item_type_id`, `item_type_server`, `item_type_name`, `item_type_use_type`, `item_type_use_id`, `item_type_use_value`, `item_type_order_price`, `item_type_drop_type`, `item_type_drop_model`, `item_type_drop_pos_x`, `item_type_drop_pos_y`, `item_type_drop_pos_z`, `item_type_drop_rot_x`, `item_type_drop_rot_y`, `item_type_drop_rot_z`, `item_type_drop_scale_x`, `item_type_drop_scale_y`, `item_type_drop_scale_z`, `item_type_image_small`, `item_type_image_large`, `item_type_image_hotbar`, `item_type_size`, `item_type_capacity`, `item_type_demand_multiplier`, `item_type_supply_multiplier`, `item_type_risk_multiplier`, `item_type_enabled`, `item_type_delay_switch`, `item_type_delay_use`, `item_type_delay_pickup`, `item_type_delay_put`, `item_type_delay_take`, `item_type_delay_give`, `item_type_delay_drop`) VALUES + (136, 4, 'Golf Club', 1, 2, 0, 40, 0, 333, 0, 0, -0.95, 1.6, 0, 0, 0, 0, 0, 'no-image.png', 'no-image.png', 'no-image.png', 0, 0, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `item_type` (`item_type_id`, `item_type_server`, `item_type_name`, `item_type_use_type`, `item_type_use_id`, `item_type_use_value`, `item_type_order_price`, `item_type_drop_type`, `item_type_drop_model`, `item_type_drop_pos_x`, `item_type_drop_pos_y`, `item_type_drop_pos_z`, `item_type_drop_rot_x`, `item_type_drop_rot_y`, `item_type_drop_rot_z`, `item_type_drop_scale_x`, `item_type_drop_scale_y`, `item_type_drop_scale_z`, `item_type_image_small`, `item_type_image_large`, `item_type_image_hotbar`, `item_type_size`, `item_type_capacity`, `item_type_demand_multiplier`, `item_type_supply_multiplier`, `item_type_risk_multiplier`, `item_type_enabled`, `item_type_delay_switch`, `item_type_delay_use`, `item_type_delay_pickup`, `item_type_delay_put`, `item_type_delay_take`, `item_type_delay_give`, `item_type_delay_drop`) VALUES + (137, 4, 'Nightstick', 1, 3, 0, 40, 0, 334, 0, 0, -0.95, 1.6, 0, 0, 0, 0, 0, 'no-image.png', 'no-image.png', 'no-image.png', 0, 0, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `item_type` (`item_type_id`, `item_type_server`, `item_type_name`, `item_type_use_type`, `item_type_use_id`, `item_type_use_value`, `item_type_order_price`, `item_type_drop_type`, `item_type_drop_model`, `item_type_drop_pos_x`, `item_type_drop_pos_y`, `item_type_drop_pos_z`, `item_type_drop_rot_x`, `item_type_drop_rot_y`, `item_type_drop_rot_z`, `item_type_drop_scale_x`, `item_type_drop_scale_y`, `item_type_drop_scale_z`, `item_type_image_small`, `item_type_image_large`, `item_type_image_hotbar`, `item_type_size`, `item_type_capacity`, `item_type_demand_multiplier`, `item_type_supply_multiplier`, `item_type_risk_multiplier`, `item_type_enabled`, `item_type_delay_switch`, `item_type_delay_use`, `item_type_delay_pickup`, `item_type_delay_put`, `item_type_delay_take`, `item_type_delay_give`, `item_type_delay_drop`) VALUES + (138, 4, 'Knife', 1, 4, 0, 35, 0, 335, 0, 0, -0.95, 1.6, 0, 0, 0, 0, 0, 'no-image.png', 'no-image.png', 'no-image.png', 0, 0, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `item_type` (`item_type_id`, `item_type_server`, `item_type_name`, `item_type_use_type`, `item_type_use_id`, `item_type_use_value`, `item_type_order_price`, `item_type_drop_type`, `item_type_drop_model`, `item_type_drop_pos_x`, `item_type_drop_pos_y`, `item_type_drop_pos_z`, `item_type_drop_rot_x`, `item_type_drop_rot_y`, `item_type_drop_rot_z`, `item_type_drop_scale_x`, `item_type_drop_scale_y`, `item_type_drop_scale_z`, `item_type_image_small`, `item_type_image_large`, `item_type_image_hotbar`, `item_type_size`, `item_type_capacity`, `item_type_demand_multiplier`, `item_type_supply_multiplier`, `item_type_risk_multiplier`, `item_type_enabled`, `item_type_delay_switch`, `item_type_delay_use`, `item_type_delay_pickup`, `item_type_delay_put`, `item_type_delay_take`, `item_type_delay_give`, `item_type_delay_drop`) VALUES + (139, 4, 'Baseball Bat', 1, 5, 0, 25, 0, 336, 0, 0, -0.95, 1.6, 0, 0, 0, 0, 0, 'no-image.png', 'no-image.png', 'no-image.png', 0, 0, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `item_type` (`item_type_id`, `item_type_server`, `item_type_name`, `item_type_use_type`, `item_type_use_id`, `item_type_use_value`, `item_type_order_price`, `item_type_drop_type`, `item_type_drop_model`, `item_type_drop_pos_x`, `item_type_drop_pos_y`, `item_type_drop_pos_z`, `item_type_drop_rot_x`, `item_type_drop_rot_y`, `item_type_drop_rot_z`, `item_type_drop_scale_x`, `item_type_drop_scale_y`, `item_type_drop_scale_z`, `item_type_image_small`, `item_type_image_large`, `item_type_image_hotbar`, `item_type_size`, `item_type_capacity`, `item_type_demand_multiplier`, `item_type_supply_multiplier`, `item_type_risk_multiplier`, `item_type_enabled`, `item_type_delay_switch`, `item_type_delay_use`, `item_type_delay_pickup`, `item_type_delay_put`, `item_type_delay_take`, `item_type_delay_give`, `item_type_delay_drop`) VALUES + (140, 4, 'Shovel', 1, 6, 0, 10, 0, 337, 0, 0, -0.95, 1.6, 0, 0, 0, 0, 0, 'no-image.png', 'no-image.png', 'no-image.png', 0, 0, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `item_type` (`item_type_id`, `item_type_server`, `item_type_name`, `item_type_use_type`, `item_type_use_id`, `item_type_use_value`, `item_type_order_price`, `item_type_drop_type`, `item_type_drop_model`, `item_type_drop_pos_x`, `item_type_drop_pos_y`, `item_type_drop_pos_z`, `item_type_drop_rot_x`, `item_type_drop_rot_y`, `item_type_drop_rot_z`, `item_type_drop_scale_x`, `item_type_drop_scale_y`, `item_type_drop_scale_z`, `item_type_image_small`, `item_type_image_large`, `item_type_image_hotbar`, `item_type_size`, `item_type_capacity`, `item_type_demand_multiplier`, `item_type_supply_multiplier`, `item_type_risk_multiplier`, `item_type_enabled`, `item_type_delay_switch`, `item_type_delay_use`, `item_type_delay_pickup`, `item_type_delay_put`, `item_type_delay_take`, `item_type_delay_give`, `item_type_delay_drop`) VALUES + (141, 4, 'Pool Cue', 1, 7, 0, 15, 0, 338, 0, 0, -0.95, 1.6, 0, 0, 0, 0, 0, 'no-image.png', 'no-image.png', 'no-image.png', 0, 0, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `item_type` (`item_type_id`, `item_type_server`, `item_type_name`, `item_type_use_type`, `item_type_use_id`, `item_type_use_value`, `item_type_order_price`, `item_type_drop_type`, `item_type_drop_model`, `item_type_drop_pos_x`, `item_type_drop_pos_y`, `item_type_drop_pos_z`, `item_type_drop_rot_x`, `item_type_drop_rot_y`, `item_type_drop_rot_z`, `item_type_drop_scale_x`, `item_type_drop_scale_y`, `item_type_drop_scale_z`, `item_type_image_small`, `item_type_image_large`, `item_type_image_hotbar`, `item_type_size`, `item_type_capacity`, `item_type_demand_multiplier`, `item_type_supply_multiplier`, `item_type_risk_multiplier`, `item_type_enabled`, `item_type_delay_switch`, `item_type_delay_use`, `item_type_delay_pickup`, `item_type_delay_put`, `item_type_delay_take`, `item_type_delay_give`, `item_type_delay_drop`) VALUES + (142, 4, 'Katana', 1, 8, 0, 250, 0, 339, 0, 0, -0.95, 1.6, 0, 0, 0, 0, 0, 'no-image.png', 'no-image.png', 'no-image.png', 0, 0, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `item_type` (`item_type_id`, `item_type_server`, `item_type_name`, `item_type_use_type`, `item_type_use_id`, `item_type_use_value`, `item_type_order_price`, `item_type_drop_type`, `item_type_drop_model`, `item_type_drop_pos_x`, `item_type_drop_pos_y`, `item_type_drop_pos_z`, `item_type_drop_rot_x`, `item_type_drop_rot_y`, `item_type_drop_rot_z`, `item_type_drop_scale_x`, `item_type_drop_scale_y`, `item_type_drop_scale_z`, `item_type_image_small`, `item_type_image_large`, `item_type_image_hotbar`, `item_type_size`, `item_type_capacity`, `item_type_demand_multiplier`, `item_type_supply_multiplier`, `item_type_risk_multiplier`, `item_type_enabled`, `item_type_delay_switch`, `item_type_delay_use`, `item_type_delay_pickup`, `item_type_delay_put`, `item_type_delay_take`, `item_type_delay_give`, `item_type_delay_drop`) VALUES + (143, 4, 'Chainsaw', 1, 9, 0, 350, 0, 341, 0, 0, -0.95, 1.6, 0, 0, 0, 0, 0, 'no-image.png', 'no-image.png', 'no-image.png', 0, 0, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `item_type` (`item_type_id`, `item_type_server`, `item_type_name`, `item_type_use_type`, `item_type_use_id`, `item_type_use_value`, `item_type_order_price`, `item_type_drop_type`, `item_type_drop_model`, `item_type_drop_pos_x`, `item_type_drop_pos_y`, `item_type_drop_pos_z`, `item_type_drop_rot_x`, `item_type_drop_rot_y`, `item_type_drop_rot_z`, `item_type_drop_scale_x`, `item_type_drop_scale_y`, `item_type_drop_scale_z`, `item_type_image_small`, `item_type_image_large`, `item_type_image_hotbar`, `item_type_size`, `item_type_capacity`, `item_type_demand_multiplier`, `item_type_supply_multiplier`, `item_type_risk_multiplier`, `item_type_enabled`, `item_type_delay_switch`, `item_type_delay_use`, `item_type_delay_pickup`, `item_type_delay_put`, `item_type_delay_take`, `item_type_delay_give`, `item_type_delay_drop`) VALUES + (144, 4, 'Purple Dildo', 1, 10, 0, 30, 0, 321, 0, 0, -0.95, 1.6, 0, 0, 0, 0, 0, 'no-image.png', 'no-image.png', 'no-image.png', 0, 0, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `item_type` (`item_type_id`, `item_type_server`, `item_type_name`, `item_type_use_type`, `item_type_use_id`, `item_type_use_value`, `item_type_order_price`, `item_type_drop_type`, `item_type_drop_model`, `item_type_drop_pos_x`, `item_type_drop_pos_y`, `item_type_drop_pos_z`, `item_type_drop_rot_x`, `item_type_drop_rot_y`, `item_type_drop_rot_z`, `item_type_drop_scale_x`, `item_type_drop_scale_y`, `item_type_drop_scale_z`, `item_type_image_small`, `item_type_image_large`, `item_type_image_hotbar`, `item_type_size`, `item_type_capacity`, `item_type_demand_multiplier`, `item_type_supply_multiplier`, `item_type_risk_multiplier`, `item_type_enabled`, `item_type_delay_switch`, `item_type_delay_use`, `item_type_delay_pickup`, `item_type_delay_put`, `item_type_delay_take`, `item_type_delay_give`, `item_type_delay_drop`) VALUES + (145, 4, 'Dildo', 1, 11, 0, 10, 0, 322, 0, 0, -0.95, 1.6, 0, 0, 0, 0, 0, 'no-image.png', 'no-image.png', 'no-image.png', 0, 0, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `item_type` (`item_type_id`, `item_type_server`, `item_type_name`, `item_type_use_type`, `item_type_use_id`, `item_type_use_value`, `item_type_order_price`, `item_type_drop_type`, `item_type_drop_model`, `item_type_drop_pos_x`, `item_type_drop_pos_y`, `item_type_drop_pos_z`, `item_type_drop_rot_x`, `item_type_drop_rot_y`, `item_type_drop_rot_z`, `item_type_drop_scale_x`, `item_type_drop_scale_y`, `item_type_drop_scale_z`, `item_type_image_small`, `item_type_image_large`, `item_type_image_hotbar`, `item_type_size`, `item_type_capacity`, `item_type_demand_multiplier`, `item_type_supply_multiplier`, `item_type_risk_multiplier`, `item_type_enabled`, `item_type_delay_switch`, `item_type_delay_use`, `item_type_delay_pickup`, `item_type_delay_put`, `item_type_delay_take`, `item_type_delay_give`, `item_type_delay_drop`) VALUES + (146, 4, 'Vibrator', 1, 12, 0, 25, 0, 323, 0, 0, -0.95, 1.6, 0, 0, 0, 0, 0, 'no-image.png', 'no-image.png', 'no-image.png', 0, 0, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `item_type` (`item_type_id`, `item_type_server`, `item_type_name`, `item_type_use_type`, `item_type_use_id`, `item_type_use_value`, `item_type_order_price`, `item_type_drop_type`, `item_type_drop_model`, `item_type_drop_pos_x`, `item_type_drop_pos_y`, `item_type_drop_pos_z`, `item_type_drop_rot_x`, `item_type_drop_rot_y`, `item_type_drop_rot_z`, `item_type_drop_scale_x`, `item_type_drop_scale_y`, `item_type_drop_scale_z`, `item_type_image_small`, `item_type_image_large`, `item_type_image_hotbar`, `item_type_size`, `item_type_capacity`, `item_type_demand_multiplier`, `item_type_supply_multiplier`, `item_type_risk_multiplier`, `item_type_enabled`, `item_type_delay_switch`, `item_type_delay_use`, `item_type_delay_pickup`, `item_type_delay_put`, `item_type_delay_take`, `item_type_delay_give`, `item_type_delay_drop`) VALUES + (147, 4, 'Silver Vibrator', 1, 13, 0, 15, 0, 324, 0, 0, -0.95, 1.6, 0, 0, 0, 0, 0, 'no-image.png', 'no-image.png', 'no-image.png', 0, 0, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `item_type` (`item_type_id`, `item_type_server`, `item_type_name`, `item_type_use_type`, `item_type_use_id`, `item_type_use_value`, `item_type_order_price`, `item_type_drop_type`, `item_type_drop_model`, `item_type_drop_pos_x`, `item_type_drop_pos_y`, `item_type_drop_pos_z`, `item_type_drop_rot_x`, `item_type_drop_rot_y`, `item_type_drop_rot_z`, `item_type_drop_scale_x`, `item_type_drop_scale_y`, `item_type_drop_scale_z`, `item_type_image_small`, `item_type_image_large`, `item_type_image_hotbar`, `item_type_size`, `item_type_capacity`, `item_type_demand_multiplier`, `item_type_supply_multiplier`, `item_type_risk_multiplier`, `item_type_enabled`, `item_type_delay_switch`, `item_type_delay_use`, `item_type_delay_pickup`, `item_type_delay_put`, `item_type_delay_take`, `item_type_delay_give`, `item_type_delay_drop`) VALUES + (148, 4, 'Flowers', 1, 14, 0, 10, 0, 325, 0, 0, -0.95, 1.6, 0, 0, 0, 0, 0, 'no-image.png', 'no-image.png', 'no-image.png', 0, 0, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `item_type` (`item_type_id`, `item_type_server`, `item_type_name`, `item_type_use_type`, `item_type_use_id`, `item_type_use_value`, `item_type_order_price`, `item_type_drop_type`, `item_type_drop_model`, `item_type_drop_pos_x`, `item_type_drop_pos_y`, `item_type_drop_pos_z`, `item_type_drop_rot_x`, `item_type_drop_rot_y`, `item_type_drop_rot_z`, `item_type_drop_scale_x`, `item_type_drop_scale_y`, `item_type_drop_scale_z`, `item_type_image_small`, `item_type_image_large`, `item_type_image_hotbar`, `item_type_size`, `item_type_capacity`, `item_type_demand_multiplier`, `item_type_supply_multiplier`, `item_type_risk_multiplier`, `item_type_enabled`, `item_type_delay_switch`, `item_type_delay_use`, `item_type_delay_pickup`, `item_type_delay_put`, `item_type_delay_take`, `item_type_delay_give`, `item_type_delay_drop`) VALUES + (149, 4, 'Cane', 1, 15, 0, 10, 0, 326, 0, 0, -0.95, 1.6, 0, 0, 0, 0, 0, 'no-image.png', 'no-image.png', 'no-image.png', 0, 0, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `item_type` (`item_type_id`, `item_type_server`, `item_type_name`, `item_type_use_type`, `item_type_use_id`, `item_type_use_value`, `item_type_order_price`, `item_type_drop_type`, `item_type_drop_model`, `item_type_drop_pos_x`, `item_type_drop_pos_y`, `item_type_drop_pos_z`, `item_type_drop_rot_x`, `item_type_drop_rot_y`, `item_type_drop_rot_z`, `item_type_drop_scale_x`, `item_type_drop_scale_y`, `item_type_drop_scale_z`, `item_type_image_small`, `item_type_image_large`, `item_type_image_hotbar`, `item_type_size`, `item_type_capacity`, `item_type_demand_multiplier`, `item_type_supply_multiplier`, `item_type_risk_multiplier`, `item_type_enabled`, `item_type_delay_switch`, `item_type_delay_use`, `item_type_delay_pickup`, `item_type_delay_put`, `item_type_delay_take`, `item_type_delay_give`, `item_type_delay_drop`) VALUES + (150, 4, 'Grenade', 1, 16, 0, 500, 0, 342, 0, 0, -0.95, 1.6, 0, 0, 0, 0, 0, 'no-image.png', 'no-image.png', 'no-image.png', 0, 0, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `item_type` (`item_type_id`, `item_type_server`, `item_type_name`, `item_type_use_type`, `item_type_use_id`, `item_type_use_value`, `item_type_order_price`, `item_type_drop_type`, `item_type_drop_model`, `item_type_drop_pos_x`, `item_type_drop_pos_y`, `item_type_drop_pos_z`, `item_type_drop_rot_x`, `item_type_drop_rot_y`, `item_type_drop_rot_z`, `item_type_drop_scale_x`, `item_type_drop_scale_y`, `item_type_drop_scale_z`, `item_type_image_small`, `item_type_image_large`, `item_type_image_hotbar`, `item_type_size`, `item_type_capacity`, `item_type_demand_multiplier`, `item_type_supply_multiplier`, `item_type_risk_multiplier`, `item_type_enabled`, `item_type_delay_switch`, `item_type_delay_use`, `item_type_delay_pickup`, `item_type_delay_put`, `item_type_delay_take`, `item_type_delay_give`, `item_type_delay_drop`) VALUES + (151, 4, 'Tear Gas', 1, 17, 0, 150, 0, 343, 0, 0, -0.95, 1.6, 0, 0, 0, 0, 0, 'no-image.png', 'no-image.png', 'no-image.png', 0, 0, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `item_type` (`item_type_id`, `item_type_server`, `item_type_name`, `item_type_use_type`, `item_type_use_id`, `item_type_use_value`, `item_type_order_price`, `item_type_drop_type`, `item_type_drop_model`, `item_type_drop_pos_x`, `item_type_drop_pos_y`, `item_type_drop_pos_z`, `item_type_drop_rot_x`, `item_type_drop_rot_y`, `item_type_drop_rot_z`, `item_type_drop_scale_x`, `item_type_drop_scale_y`, `item_type_drop_scale_z`, `item_type_image_small`, `item_type_image_large`, `item_type_image_hotbar`, `item_type_size`, `item_type_capacity`, `item_type_demand_multiplier`, `item_type_supply_multiplier`, `item_type_risk_multiplier`, `item_type_enabled`, `item_type_delay_switch`, `item_type_delay_use`, `item_type_delay_pickup`, `item_type_delay_put`, `item_type_delay_take`, `item_type_delay_give`, `item_type_delay_drop`) VALUES + (152, 4, 'Molotov Cocktail', 1, 18, 0, 150, 0, 344, 0, 0, -0.95, 1.6, 0, 0, 0, 0, 0, 'no-image.png', 'no-image.png', 'no-image.png', 0, 0, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `item_type` (`item_type_id`, `item_type_server`, `item_type_name`, `item_type_use_type`, `item_type_use_id`, `item_type_use_value`, `item_type_order_price`, `item_type_drop_type`, `item_type_drop_model`, `item_type_drop_pos_x`, `item_type_drop_pos_y`, `item_type_drop_pos_z`, `item_type_drop_rot_x`, `item_type_drop_rot_y`, `item_type_drop_rot_z`, `item_type_drop_scale_x`, `item_type_drop_scale_y`, `item_type_drop_scale_z`, `item_type_image_small`, `item_type_image_large`, `item_type_image_hotbar`, `item_type_size`, `item_type_capacity`, `item_type_demand_multiplier`, `item_type_supply_multiplier`, `item_type_risk_multiplier`, `item_type_enabled`, `item_type_delay_switch`, `item_type_delay_use`, `item_type_delay_pickup`, `item_type_delay_put`, `item_type_delay_take`, `item_type_delay_give`, `item_type_delay_drop`) VALUES + (153, 4, '9mm', 1, 22, 0, 350, 0, 346, 0, 0, -0.95, 1.6, 0, 0, 0, 0, 0, 'no-image.png', 'no-image.png', 'no-image.png', 0, 0, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `item_type` (`item_type_id`, `item_type_server`, `item_type_name`, `item_type_use_type`, `item_type_use_id`, `item_type_use_value`, `item_type_order_price`, `item_type_drop_type`, `item_type_drop_model`, `item_type_drop_pos_x`, `item_type_drop_pos_y`, `item_type_drop_pos_z`, `item_type_drop_rot_x`, `item_type_drop_rot_y`, `item_type_drop_rot_z`, `item_type_drop_scale_x`, `item_type_drop_scale_y`, `item_type_drop_scale_z`, `item_type_image_small`, `item_type_image_large`, `item_type_image_hotbar`, `item_type_size`, `item_type_capacity`, `item_type_demand_multiplier`, `item_type_supply_multiplier`, `item_type_risk_multiplier`, `item_type_enabled`, `item_type_delay_switch`, `item_type_delay_use`, `item_type_delay_pickup`, `item_type_delay_put`, `item_type_delay_take`, `item_type_delay_give`, `item_type_delay_drop`) VALUES + (154, 4, 'Silenced 9mm', 1, 23, 0, 400, 0, 347, 0, 0, -0.95, 1.6, 0, 0, 0, 0, 0, 'no-image.png', 'no-image.png', 'no-image.png', 0, 0, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `item_type` (`item_type_id`, `item_type_server`, `item_type_name`, `item_type_use_type`, `item_type_use_id`, `item_type_use_value`, `item_type_order_price`, `item_type_drop_type`, `item_type_drop_model`, `item_type_drop_pos_x`, `item_type_drop_pos_y`, `item_type_drop_pos_z`, `item_type_drop_rot_x`, `item_type_drop_rot_y`, `item_type_drop_rot_z`, `item_type_drop_scale_x`, `item_type_drop_scale_y`, `item_type_drop_scale_z`, `item_type_image_small`, `item_type_image_large`, `item_type_image_hotbar`, `item_type_size`, `item_type_capacity`, `item_type_demand_multiplier`, `item_type_supply_multiplier`, `item_type_risk_multiplier`, `item_type_enabled`, `item_type_delay_switch`, `item_type_delay_use`, `item_type_delay_pickup`, `item_type_delay_put`, `item_type_delay_take`, `item_type_delay_give`, `item_type_delay_drop`) VALUES + (155, 4, 'Desert Eagle', 1, 24, 0, 500, 0, 348, 0, 0, -0.95, 1.6, 0, 0, 0, 0, 0, 'no-image.png', 'no-image.png', 'no-image.png', 0, 0, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `item_type` (`item_type_id`, `item_type_server`, `item_type_name`, `item_type_use_type`, `item_type_use_id`, `item_type_use_value`, `item_type_order_price`, `item_type_drop_type`, `item_type_drop_model`, `item_type_drop_pos_x`, `item_type_drop_pos_y`, `item_type_drop_pos_z`, `item_type_drop_rot_x`, `item_type_drop_rot_y`, `item_type_drop_rot_z`, `item_type_drop_scale_x`, `item_type_drop_scale_y`, `item_type_drop_scale_z`, `item_type_image_small`, `item_type_image_large`, `item_type_image_hotbar`, `item_type_size`, `item_type_capacity`, `item_type_demand_multiplier`, `item_type_supply_multiplier`, `item_type_risk_multiplier`, `item_type_enabled`, `item_type_delay_switch`, `item_type_delay_use`, `item_type_delay_pickup`, `item_type_delay_put`, `item_type_delay_take`, `item_type_delay_give`, `item_type_delay_drop`) VALUES + (156, 4, 'Shotgun', 1, 25, 0, 450, 0, 349, 0, 0, -0.95, 1.6, 0, 0, 0, 0, 0, 'no-image.png', 'no-image.png', 'no-image.png', 0, 0, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `item_type` (`item_type_id`, `item_type_server`, `item_type_name`, `item_type_use_type`, `item_type_use_id`, `item_type_use_value`, `item_type_order_price`, `item_type_drop_type`, `item_type_drop_model`, `item_type_drop_pos_x`, `item_type_drop_pos_y`, `item_type_drop_pos_z`, `item_type_drop_rot_x`, `item_type_drop_rot_y`, `item_type_drop_rot_z`, `item_type_drop_scale_x`, `item_type_drop_scale_y`, `item_type_drop_scale_z`, `item_type_image_small`, `item_type_image_large`, `item_type_image_hotbar`, `item_type_size`, `item_type_capacity`, `item_type_demand_multiplier`, `item_type_supply_multiplier`, `item_type_risk_multiplier`, `item_type_enabled`, `item_type_delay_switch`, `item_type_delay_use`, `item_type_delay_pickup`, `item_type_delay_put`, `item_type_delay_take`, `item_type_delay_give`, `item_type_delay_drop`) VALUES + (157, 4, 'Sawnoff Shotgun', 1, 26, 0, 400, 0, 350, 0, 0, -0.95, 1.6, 0, 0, 0, 0, 0, 'no-image.png', 'no-image.png', 'no-image.png', 0, 0, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `item_type` (`item_type_id`, `item_type_server`, `item_type_name`, `item_type_use_type`, `item_type_use_id`, `item_type_use_value`, `item_type_order_price`, `item_type_drop_type`, `item_type_drop_model`, `item_type_drop_pos_x`, `item_type_drop_pos_y`, `item_type_drop_pos_z`, `item_type_drop_rot_x`, `item_type_drop_rot_y`, `item_type_drop_rot_z`, `item_type_drop_scale_x`, `item_type_drop_scale_y`, `item_type_drop_scale_z`, `item_type_image_small`, `item_type_image_large`, `item_type_image_hotbar`, `item_type_size`, `item_type_capacity`, `item_type_demand_multiplier`, `item_type_supply_multiplier`, `item_type_risk_multiplier`, `item_type_enabled`, `item_type_delay_switch`, `item_type_delay_use`, `item_type_delay_pickup`, `item_type_delay_put`, `item_type_delay_take`, `item_type_delay_give`, `item_type_delay_drop`) VALUES + (158, 4, 'Combat Shotgun', 1, 27, 0, 1250, 0, 351, 0, 0, -0.95, 1.6, 0, 0, 0, 0, 0, 'no-image.png', 'no-image.png', 'no-image.png', 0, 0, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `item_type` (`item_type_id`, `item_type_server`, `item_type_name`, `item_type_use_type`, `item_type_use_id`, `item_type_use_value`, `item_type_order_price`, `item_type_drop_type`, `item_type_drop_model`, `item_type_drop_pos_x`, `item_type_drop_pos_y`, `item_type_drop_pos_z`, `item_type_drop_rot_x`, `item_type_drop_rot_y`, `item_type_drop_rot_z`, `item_type_drop_scale_x`, `item_type_drop_scale_y`, `item_type_drop_scale_z`, `item_type_image_small`, `item_type_image_large`, `item_type_image_hotbar`, `item_type_size`, `item_type_capacity`, `item_type_demand_multiplier`, `item_type_supply_multiplier`, `item_type_risk_multiplier`, `item_type_enabled`, `item_type_delay_switch`, `item_type_delay_use`, `item_type_delay_pickup`, `item_type_delay_put`, `item_type_delay_take`, `item_type_delay_give`, `item_type_delay_drop`) VALUES + (159, 4, 'Micro SMG/Uzi', 1, 28, 0, 550, 0, 352, 0, 0, -0.95, 1.6, 0, 0, 0, 0, 0, 'no-image.png', 'no-image.png', 'no-image.png', 0, 0, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `item_type` (`item_type_id`, `item_type_server`, `item_type_name`, `item_type_use_type`, `item_type_use_id`, `item_type_use_value`, `item_type_order_price`, `item_type_drop_type`, `item_type_drop_model`, `item_type_drop_pos_x`, `item_type_drop_pos_y`, `item_type_drop_pos_z`, `item_type_drop_rot_x`, `item_type_drop_rot_y`, `item_type_drop_rot_z`, `item_type_drop_scale_x`, `item_type_drop_scale_y`, `item_type_drop_scale_z`, `item_type_image_small`, `item_type_image_large`, `item_type_image_hotbar`, `item_type_size`, `item_type_capacity`, `item_type_demand_multiplier`, `item_type_supply_multiplier`, `item_type_risk_multiplier`, `item_type_enabled`, `item_type_delay_switch`, `item_type_delay_use`, `item_type_delay_pickup`, `item_type_delay_put`, `item_type_delay_take`, `item_type_delay_give`, `item_type_delay_drop`) VALUES + (160, 4, 'MP5', 1, 29, 0, 800, 0, 353, 0, 0, -0.95, 1.6, 0, 0, 0, 0, 0, 'no-image.png', 'no-image.png', 'no-image.png', 0, 0, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `item_type` (`item_type_id`, `item_type_server`, `item_type_name`, `item_type_use_type`, `item_type_use_id`, `item_type_use_value`, `item_type_order_price`, `item_type_drop_type`, `item_type_drop_model`, `item_type_drop_pos_x`, `item_type_drop_pos_y`, `item_type_drop_pos_z`, `item_type_drop_rot_x`, `item_type_drop_rot_y`, `item_type_drop_rot_z`, `item_type_drop_scale_x`, `item_type_drop_scale_y`, `item_type_drop_scale_z`, `item_type_image_small`, `item_type_image_large`, `item_type_image_hotbar`, `item_type_size`, `item_type_capacity`, `item_type_demand_multiplier`, `item_type_supply_multiplier`, `item_type_risk_multiplier`, `item_type_enabled`, `item_type_delay_switch`, `item_type_delay_use`, `item_type_delay_pickup`, `item_type_delay_put`, `item_type_delay_take`, `item_type_delay_give`, `item_type_delay_drop`) VALUES + (161, 4, 'AK-47', 1, 30, 0, 850, 0, 355, 0, 0, -0.95, 1.6, 0, 0, 0, 0, 0, 'no-image.png', 'no-image.png', 'no-image.png', 0, 0, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `item_type` (`item_type_id`, `item_type_server`, `item_type_name`, `item_type_use_type`, `item_type_use_id`, `item_type_use_value`, `item_type_order_price`, `item_type_drop_type`, `item_type_drop_model`, `item_type_drop_pos_x`, `item_type_drop_pos_y`, `item_type_drop_pos_z`, `item_type_drop_rot_x`, `item_type_drop_rot_y`, `item_type_drop_rot_z`, `item_type_drop_scale_x`, `item_type_drop_scale_y`, `item_type_drop_scale_z`, `item_type_image_small`, `item_type_image_large`, `item_type_image_hotbar`, `item_type_size`, `item_type_capacity`, `item_type_demand_multiplier`, `item_type_supply_multiplier`, `item_type_risk_multiplier`, `item_type_enabled`, `item_type_delay_switch`, `item_type_delay_use`, `item_type_delay_pickup`, `item_type_delay_put`, `item_type_delay_take`, `item_type_delay_give`, `item_type_delay_drop`) VALUES + (162, 4, 'M4', 1, 31, 0, 1500, 0, 356, 0, 0, -0.95, 1.6, 0, 0, 0, 0, 0, 'no-image.png', 'no-image.png', 'no-image.png', 0, 0, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `item_type` (`item_type_id`, `item_type_server`, `item_type_name`, `item_type_use_type`, `item_type_use_id`, `item_type_use_value`, `item_type_order_price`, `item_type_drop_type`, `item_type_drop_model`, `item_type_drop_pos_x`, `item_type_drop_pos_y`, `item_type_drop_pos_z`, `item_type_drop_rot_x`, `item_type_drop_rot_y`, `item_type_drop_rot_z`, `item_type_drop_scale_x`, `item_type_drop_scale_y`, `item_type_drop_scale_z`, `item_type_image_small`, `item_type_image_large`, `item_type_image_hotbar`, `item_type_size`, `item_type_capacity`, `item_type_demand_multiplier`, `item_type_supply_multiplier`, `item_type_risk_multiplier`, `item_type_enabled`, `item_type_delay_switch`, `item_type_delay_use`, `item_type_delay_pickup`, `item_type_delay_put`, `item_type_delay_take`, `item_type_delay_give`, `item_type_delay_drop`) VALUES + (163, 4, 'Tec-9', 1, 32, 0, 500, 0, 372, 0, 0, -0.95, 1.6, 0, 0, 0, 0, 0, 'no-image.png', 'no-image.png', 'no-image.png', 0, 0, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `item_type` (`item_type_id`, `item_type_server`, `item_type_name`, `item_type_use_type`, `item_type_use_id`, `item_type_use_value`, `item_type_order_price`, `item_type_drop_type`, `item_type_drop_model`, `item_type_drop_pos_x`, `item_type_drop_pos_y`, `item_type_drop_pos_z`, `item_type_drop_rot_x`, `item_type_drop_rot_y`, `item_type_drop_rot_z`, `item_type_drop_scale_x`, `item_type_drop_scale_y`, `item_type_drop_scale_z`, `item_type_image_small`, `item_type_image_large`, `item_type_image_hotbar`, `item_type_size`, `item_type_capacity`, `item_type_demand_multiplier`, `item_type_supply_multiplier`, `item_type_risk_multiplier`, `item_type_enabled`, `item_type_delay_switch`, `item_type_delay_use`, `item_type_delay_pickup`, `item_type_delay_put`, `item_type_delay_take`, `item_type_delay_give`, `item_type_delay_drop`) VALUES + (164, 4, 'Country Rifle', 1, 33, 0, 1100, 0, 357, 0, 0, -0.95, 1.6, 0, 0, 0, 0, 0, 'no-image.png', 'no-image.png', 'no-image.png', 0, 0, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `item_type` (`item_type_id`, `item_type_server`, `item_type_name`, `item_type_use_type`, `item_type_use_id`, `item_type_use_value`, `item_type_order_price`, `item_type_drop_type`, `item_type_drop_model`, `item_type_drop_pos_x`, `item_type_drop_pos_y`, `item_type_drop_pos_z`, `item_type_drop_rot_x`, `item_type_drop_rot_y`, `item_type_drop_rot_z`, `item_type_drop_scale_x`, `item_type_drop_scale_y`, `item_type_drop_scale_z`, `item_type_image_small`, `item_type_image_large`, `item_type_image_hotbar`, `item_type_size`, `item_type_capacity`, `item_type_demand_multiplier`, `item_type_supply_multiplier`, `item_type_risk_multiplier`, `item_type_enabled`, `item_type_delay_switch`, `item_type_delay_use`, `item_type_delay_pickup`, `item_type_delay_put`, `item_type_delay_take`, `item_type_delay_give`, `item_type_delay_drop`) VALUES + (165, 4, 'Sniper Rifle', 1, 34, 0, 1500, 0, 358, 0, 0, -0.95, 1.6, 0, 0, 0, 0, 0, 'no-image.png', 'no-image.png', 'no-image.png', 0, 0, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `item_type` (`item_type_id`, `item_type_server`, `item_type_name`, `item_type_use_type`, `item_type_use_id`, `item_type_use_value`, `item_type_order_price`, `item_type_drop_type`, `item_type_drop_model`, `item_type_drop_pos_x`, `item_type_drop_pos_y`, `item_type_drop_pos_z`, `item_type_drop_rot_x`, `item_type_drop_rot_y`, `item_type_drop_rot_z`, `item_type_drop_scale_x`, `item_type_drop_scale_y`, `item_type_drop_scale_z`, `item_type_image_small`, `item_type_image_large`, `item_type_image_hotbar`, `item_type_size`, `item_type_capacity`, `item_type_demand_multiplier`, `item_type_supply_multiplier`, `item_type_risk_multiplier`, `item_type_enabled`, `item_type_delay_switch`, `item_type_delay_use`, `item_type_delay_pickup`, `item_type_delay_put`, `item_type_delay_take`, `item_type_delay_give`, `item_type_delay_drop`) VALUES + (166, 4, 'RPG', 1, 35, 0, 5000, 0, 359, 0, 0, -0.95, 1.6, 0, 0, 0, 0, 0, 'no-image.png', 'no-image.png', 'no-image.png', 0, 0, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `item_type` (`item_type_id`, `item_type_server`, `item_type_name`, `item_type_use_type`, `item_type_use_id`, `item_type_use_value`, `item_type_order_price`, `item_type_drop_type`, `item_type_drop_model`, `item_type_drop_pos_x`, `item_type_drop_pos_y`, `item_type_drop_pos_z`, `item_type_drop_rot_x`, `item_type_drop_rot_y`, `item_type_drop_rot_z`, `item_type_drop_scale_x`, `item_type_drop_scale_y`, `item_type_drop_scale_z`, `item_type_image_small`, `item_type_image_large`, `item_type_image_hotbar`, `item_type_size`, `item_type_capacity`, `item_type_demand_multiplier`, `item_type_supply_multiplier`, `item_type_risk_multiplier`, `item_type_enabled`, `item_type_delay_switch`, `item_type_delay_use`, `item_type_delay_pickup`, `item_type_delay_put`, `item_type_delay_take`, `item_type_delay_give`, `item_type_delay_drop`) VALUES + (167, 4, 'HS Rocket', 1, 36, 0, 7500, 0, 360, 0, 0, -0.95, 1.6, 0, 0, 0, 0, 0, 'no-image.png', 'no-image.png', 'no-image.png', 0, 0, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `item_type` (`item_type_id`, `item_type_server`, `item_type_name`, `item_type_use_type`, `item_type_use_id`, `item_type_use_value`, `item_type_order_price`, `item_type_drop_type`, `item_type_drop_model`, `item_type_drop_pos_x`, `item_type_drop_pos_y`, `item_type_drop_pos_z`, `item_type_drop_rot_x`, `item_type_drop_rot_y`, `item_type_drop_rot_z`, `item_type_drop_scale_x`, `item_type_drop_scale_y`, `item_type_drop_scale_z`, `item_type_image_small`, `item_type_image_large`, `item_type_image_hotbar`, `item_type_size`, `item_type_capacity`, `item_type_demand_multiplier`, `item_type_supply_multiplier`, `item_type_risk_multiplier`, `item_type_enabled`, `item_type_delay_switch`, `item_type_delay_use`, `item_type_delay_pickup`, `item_type_delay_put`, `item_type_delay_take`, `item_type_delay_give`, `item_type_delay_drop`) VALUES + (168, 4, 'Flamethrower', 1, 37, 0, 3000, 0, 361, 0, 0, -0.95, 1.6, 0, 0, 0, 0, 0, 'no-image.png', 'no-image.png', 'no-image.png', 0, 0, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `item_type` (`item_type_id`, `item_type_server`, `item_type_name`, `item_type_use_type`, `item_type_use_id`, `item_type_use_value`, `item_type_order_price`, `item_type_drop_type`, `item_type_drop_model`, `item_type_drop_pos_x`, `item_type_drop_pos_y`, `item_type_drop_pos_z`, `item_type_drop_rot_x`, `item_type_drop_rot_y`, `item_type_drop_rot_z`, `item_type_drop_scale_x`, `item_type_drop_scale_y`, `item_type_drop_scale_z`, `item_type_image_small`, `item_type_image_large`, `item_type_image_hotbar`, `item_type_size`, `item_type_capacity`, `item_type_demand_multiplier`, `item_type_supply_multiplier`, `item_type_risk_multiplier`, `item_type_enabled`, `item_type_delay_switch`, `item_type_delay_use`, `item_type_delay_pickup`, `item_type_delay_put`, `item_type_delay_take`, `item_type_delay_give`, `item_type_delay_drop`) VALUES + (169, 4, 'Minigun', 1, 38, 0, 25000, 0, 362, 0, 0, -0.95, 1.6, 0, 0, 0, 0, 0, 'no-image.png', 'no-image.png', 'no-image.png', 0, 0, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `item_type` (`item_type_id`, `item_type_server`, `item_type_name`, `item_type_use_type`, `item_type_use_id`, `item_type_use_value`, `item_type_order_price`, `item_type_drop_type`, `item_type_drop_model`, `item_type_drop_pos_x`, `item_type_drop_pos_y`, `item_type_drop_pos_z`, `item_type_drop_rot_x`, `item_type_drop_rot_y`, `item_type_drop_rot_z`, `item_type_drop_scale_x`, `item_type_drop_scale_y`, `item_type_drop_scale_z`, `item_type_image_small`, `item_type_image_large`, `item_type_image_hotbar`, `item_type_size`, `item_type_capacity`, `item_type_demand_multiplier`, `item_type_supply_multiplier`, `item_type_risk_multiplier`, `item_type_enabled`, `item_type_delay_switch`, `item_type_delay_use`, `item_type_delay_pickup`, `item_type_delay_put`, `item_type_delay_take`, `item_type_delay_give`, `item_type_delay_drop`) VALUES + (170, 4, 'Satchel Charge', 1, 39, 0, 3000, 0, 363, 0, 0, -0.95, 1.6, 0, 0, 0, 0, 0, 'no-image.png', 'no-image.png', 'no-image.png', 0, 0, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `item_type` (`item_type_id`, `item_type_server`, `item_type_name`, `item_type_use_type`, `item_type_use_id`, `item_type_use_value`, `item_type_order_price`, `item_type_drop_type`, `item_type_drop_model`, `item_type_drop_pos_x`, `item_type_drop_pos_y`, `item_type_drop_pos_z`, `item_type_drop_rot_x`, `item_type_drop_rot_y`, `item_type_drop_rot_z`, `item_type_drop_scale_x`, `item_type_drop_scale_y`, `item_type_drop_scale_z`, `item_type_image_small`, `item_type_image_large`, `item_type_image_hotbar`, `item_type_size`, `item_type_capacity`, `item_type_demand_multiplier`, `item_type_supply_multiplier`, `item_type_risk_multiplier`, `item_type_enabled`, `item_type_delay_switch`, `item_type_delay_use`, `item_type_delay_pickup`, `item_type_delay_put`, `item_type_delay_take`, `item_type_delay_give`, `item_type_delay_drop`) VALUES + (171, 4, 'Detonator', 1, 40, 0, 0, 0, 364, 0, 0, -0.95, 1.6, 0, 0, 0, 0, 0, 'no-image.png', 'no-image.png', 'no-image.png', 0, 0, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `item_type` (`item_type_id`, `item_type_server`, `item_type_name`, `item_type_use_type`, `item_type_use_id`, `item_type_use_value`, `item_type_order_price`, `item_type_drop_type`, `item_type_drop_model`, `item_type_drop_pos_x`, `item_type_drop_pos_y`, `item_type_drop_pos_z`, `item_type_drop_rot_x`, `item_type_drop_rot_y`, `item_type_drop_rot_z`, `item_type_drop_scale_x`, `item_type_drop_scale_y`, `item_type_drop_scale_z`, `item_type_image_small`, `item_type_image_large`, `item_type_image_hotbar`, `item_type_size`, `item_type_capacity`, `item_type_demand_multiplier`, `item_type_supply_multiplier`, `item_type_risk_multiplier`, `item_type_enabled`, `item_type_delay_switch`, `item_type_delay_use`, `item_type_delay_pickup`, `item_type_delay_put`, `item_type_delay_take`, `item_type_delay_give`, `item_type_delay_drop`) VALUES + (172, 4, 'Spraycan', 1, 41, 0, 10, 0, 365, 0, 0, -0.95, 1.6, 0, 0, 0, 0, 0, 'no-image.png', 'no-image.png', 'no-image.png', 0, 0, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `item_type` (`item_type_id`, `item_type_server`, `item_type_name`, `item_type_use_type`, `item_type_use_id`, `item_type_use_value`, `item_type_order_price`, `item_type_drop_type`, `item_type_drop_model`, `item_type_drop_pos_x`, `item_type_drop_pos_y`, `item_type_drop_pos_z`, `item_type_drop_rot_x`, `item_type_drop_rot_y`, `item_type_drop_rot_z`, `item_type_drop_scale_x`, `item_type_drop_scale_y`, `item_type_drop_scale_z`, `item_type_image_small`, `item_type_image_large`, `item_type_image_hotbar`, `item_type_size`, `item_type_capacity`, `item_type_demand_multiplier`, `item_type_supply_multiplier`, `item_type_risk_multiplier`, `item_type_enabled`, `item_type_delay_switch`, `item_type_delay_use`, `item_type_delay_pickup`, `item_type_delay_put`, `item_type_delay_take`, `item_type_delay_give`, `item_type_delay_drop`) VALUES + (173, 4, 'Pepper Spray', 1, 41, 0, 15, 0, 365, 0, 0, -0.95, 1.6, 0, 0, 0, 0, 0, 'no-image.png', 'no-image.png', 'no-image.png', 0, 0, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `item_type` (`item_type_id`, `item_type_server`, `item_type_name`, `item_type_use_type`, `item_type_use_id`, `item_type_use_value`, `item_type_order_price`, `item_type_drop_type`, `item_type_drop_model`, `item_type_drop_pos_x`, `item_type_drop_pos_y`, `item_type_drop_pos_z`, `item_type_drop_rot_x`, `item_type_drop_rot_y`, `item_type_drop_rot_z`, `item_type_drop_scale_x`, `item_type_drop_scale_y`, `item_type_drop_scale_z`, `item_type_image_small`, `item_type_image_large`, `item_type_image_hotbar`, `item_type_size`, `item_type_capacity`, `item_type_demand_multiplier`, `item_type_supply_multiplier`, `item_type_risk_multiplier`, `item_type_enabled`, `item_type_delay_switch`, `item_type_delay_use`, `item_type_delay_pickup`, `item_type_delay_put`, `item_type_delay_take`, `item_type_delay_give`, `item_type_delay_drop`) VALUES + (174, 4, 'Fire Extinguisher', 1, 42, 0, 35, 0, 366, 0, 0, -0.95, 1.6, 0, 0, 0, 0, 0, 'no-image.png', 'no-image.png', 'no-image.png', 0, 0, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `item_type` (`item_type_id`, `item_type_server`, `item_type_name`, `item_type_use_type`, `item_type_use_id`, `item_type_use_value`, `item_type_order_price`, `item_type_drop_type`, `item_type_drop_model`, `item_type_drop_pos_x`, `item_type_drop_pos_y`, `item_type_drop_pos_z`, `item_type_drop_rot_x`, `item_type_drop_rot_y`, `item_type_drop_rot_z`, `item_type_drop_scale_x`, `item_type_drop_scale_y`, `item_type_drop_scale_z`, `item_type_image_small`, `item_type_image_large`, `item_type_image_hotbar`, `item_type_size`, `item_type_capacity`, `item_type_demand_multiplier`, `item_type_supply_multiplier`, `item_type_risk_multiplier`, `item_type_enabled`, `item_type_delay_switch`, `item_type_delay_use`, `item_type_delay_pickup`, `item_type_delay_put`, `item_type_delay_take`, `item_type_delay_give`, `item_type_delay_drop`) VALUES + (175, 4, 'Camera', 1, 43, 0, 25, 0, 367, 0, 0, -0.95, 1.6, 0, 0, 0, 0, 0, 'no-image.png', 'no-image.png', 'no-image.png', 0, 0, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `item_type` (`item_type_id`, `item_type_server`, `item_type_name`, `item_type_use_type`, `item_type_use_id`, `item_type_use_value`, `item_type_order_price`, `item_type_drop_type`, `item_type_drop_model`, `item_type_drop_pos_x`, `item_type_drop_pos_y`, `item_type_drop_pos_z`, `item_type_drop_rot_x`, `item_type_drop_rot_y`, `item_type_drop_rot_z`, `item_type_drop_scale_x`, `item_type_drop_scale_y`, `item_type_drop_scale_z`, `item_type_image_small`, `item_type_image_large`, `item_type_image_hotbar`, `item_type_size`, `item_type_capacity`, `item_type_demand_multiplier`, `item_type_supply_multiplier`, `item_type_risk_multiplier`, `item_type_enabled`, `item_type_delay_switch`, `item_type_delay_use`, `item_type_delay_pickup`, `item_type_delay_put`, `item_type_delay_take`, `item_type_delay_give`, `item_type_delay_drop`) VALUES + (176, 4, 'Night Vision Goggles', 1, 44, 0, 300, 0, 368, 0, 0, -0.95, 1.6, 0, 0, 0, 0, 0, 'no-image.png', 'no-image.png', 'no-image.png', 0, 0, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `item_type` (`item_type_id`, `item_type_server`, `item_type_name`, `item_type_use_type`, `item_type_use_id`, `item_type_use_value`, `item_type_order_price`, `item_type_drop_type`, `item_type_drop_model`, `item_type_drop_pos_x`, `item_type_drop_pos_y`, `item_type_drop_pos_z`, `item_type_drop_rot_x`, `item_type_drop_rot_y`, `item_type_drop_rot_z`, `item_type_drop_scale_x`, `item_type_drop_scale_y`, `item_type_drop_scale_z`, `item_type_image_small`, `item_type_image_large`, `item_type_image_hotbar`, `item_type_size`, `item_type_capacity`, `item_type_demand_multiplier`, `item_type_supply_multiplier`, `item_type_risk_multiplier`, `item_type_enabled`, `item_type_delay_switch`, `item_type_delay_use`, `item_type_delay_pickup`, `item_type_delay_put`, `item_type_delay_take`, `item_type_delay_give`, `item_type_delay_drop`) VALUES + (177, 4, 'Thermal Goggles', 1, 45, 0, 500, 0, 369, 0, 0, -0.95, 1.6, 0, 0, 0, 0, 0, 'no-image.png', 'no-image.png', 'no-image.png', 0, 0, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `item_type` (`item_type_id`, `item_type_server`, `item_type_name`, `item_type_use_type`, `item_type_use_id`, `item_type_use_value`, `item_type_order_price`, `item_type_drop_type`, `item_type_drop_model`, `item_type_drop_pos_x`, `item_type_drop_pos_y`, `item_type_drop_pos_z`, `item_type_drop_rot_x`, `item_type_drop_rot_y`, `item_type_drop_rot_z`, `item_type_drop_scale_x`, `item_type_drop_scale_y`, `item_type_drop_scale_z`, `item_type_image_small`, `item_type_image_large`, `item_type_image_hotbar`, `item_type_size`, `item_type_capacity`, `item_type_demand_multiplier`, `item_type_supply_multiplier`, `item_type_risk_multiplier`, `item_type_enabled`, `item_type_delay_switch`, `item_type_delay_use`, `item_type_delay_pickup`, `item_type_delay_put`, `item_type_delay_take`, `item_type_delay_give`, `item_type_delay_drop`) VALUES + (178, 4, 'Parachute', 1, 46, 0, 100, 0, 371, 0, 0, -0.95, 1.6, 0, 0, 0, 0, 0, 'no-image.png', 'no-image.png', 'no-image.png', 0, 0, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `item_type` (`item_type_id`, `item_type_server`, `item_type_name`, `item_type_use_type`, `item_type_use_id`, `item_type_use_value`, `item_type_order_price`, `item_type_drop_type`, `item_type_drop_model`, `item_type_drop_pos_x`, `item_type_drop_pos_y`, `item_type_drop_pos_z`, `item_type_drop_rot_x`, `item_type_drop_rot_y`, `item_type_drop_rot_z`, `item_type_drop_scale_x`, `item_type_drop_scale_y`, `item_type_drop_scale_z`, `item_type_image_small`, `item_type_image_large`, `item_type_image_hotbar`, `item_type_size`, `item_type_capacity`, `item_type_demand_multiplier`, `item_type_supply_multiplier`, `item_type_risk_multiplier`, `item_type_enabled`, `item_type_delay_switch`, `item_type_delay_use`, `item_type_delay_pickup`, `item_type_delay_put`, `item_type_delay_take`, `item_type_delay_give`, `item_type_delay_drop`) VALUES + (179, 4, 'Phone', 3, 0, 0, 250, 1, 330, 0, 0, -0.95, 1.6, 0, 0, 0, 0, 0, 'no-image.png', 'no-image.png', 'no-image.png', 0, 0, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `item_type` (`item_type_id`, `item_type_server`, `item_type_name`, `item_type_use_type`, `item_type_use_id`, `item_type_use_value`, `item_type_order_price`, `item_type_drop_type`, `item_type_drop_model`, `item_type_drop_pos_x`, `item_type_drop_pos_y`, `item_type_drop_pos_z`, `item_type_drop_rot_x`, `item_type_drop_rot_y`, `item_type_drop_rot_z`, `item_type_drop_scale_x`, `item_type_drop_scale_y`, `item_type_drop_scale_z`, `item_type_image_small`, `item_type_image_large`, `item_type_image_hotbar`, `item_type_size`, `item_type_capacity`, `item_type_demand_multiplier`, `item_type_supply_multiplier`, `item_type_risk_multiplier`, `item_type_enabled`, `item_type_delay_switch`, `item_type_delay_use`, `item_type_delay_pickup`, `item_type_delay_put`, `item_type_delay_take`, `item_type_delay_give`, `item_type_delay_drop`) VALUES + (180, 4, 'Radio', 32, 0, 0, 0, 0, 1279, 0, 0, -0.95, 1.6, 0, 0, 0, 0, 0, 'no-image.png', 'no-image.png', 'no-image.png', 0, 0, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `item_type` (`item_type_id`, `item_type_server`, `item_type_name`, `item_type_use_type`, `item_type_use_id`, `item_type_use_value`, `item_type_order_price`, `item_type_drop_type`, `item_type_drop_model`, `item_type_drop_pos_x`, `item_type_drop_pos_y`, `item_type_drop_pos_z`, `item_type_drop_rot_x`, `item_type_drop_rot_y`, `item_type_drop_rot_z`, `item_type_drop_scale_x`, `item_type_drop_scale_y`, `item_type_drop_scale_z`, `item_type_image_small`, `item_type_image_large`, `item_type_image_hotbar`, `item_type_size`, `item_type_capacity`, `item_type_demand_multiplier`, `item_type_supply_multiplier`, `item_type_risk_multiplier`, `item_type_enabled`, `item_type_delay_switch`, `item_type_delay_use`, `item_type_delay_pickup`, `item_type_delay_put`, `item_type_delay_take`, `item_type_delay_give`, `item_type_delay_drop`) VALUES + (181, 4, 'Pot Seed', 13, 0, 0, 2, 1, 1279, 0, 0, -0.95, 1.6, 0, 0, 0, 0, 0, 'no-image.png', 'no-image.png', 'no-image.png', 0, 0, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `item_type` (`item_type_id`, `item_type_server`, `item_type_name`, `item_type_use_type`, `item_type_use_id`, `item_type_use_value`, `item_type_order_price`, `item_type_drop_type`, `item_type_drop_model`, `item_type_drop_pos_x`, `item_type_drop_pos_y`, `item_type_drop_pos_z`, `item_type_drop_rot_x`, `item_type_drop_rot_y`, `item_type_drop_rot_z`, `item_type_drop_scale_x`, `item_type_drop_scale_y`, `item_type_drop_scale_z`, `item_type_image_small`, `item_type_image_large`, `item_type_image_hotbar`, `item_type_size`, `item_type_capacity`, `item_type_demand_multiplier`, `item_type_supply_multiplier`, `item_type_risk_multiplier`, `item_type_enabled`, `item_type_delay_switch`, `item_type_delay_use`, `item_type_delay_pickup`, `item_type_delay_put`, `item_type_delay_take`, `item_type_delay_give`, `item_type_delay_drop`) VALUES + (182, 4, 'Weed', 14, 0, 0, 20, 1, 1279, 0, 0, -0.95, 1.6, 0, 0, 0.3, 0.3, 0.3, 'no-image.png', 'no-image.png', 'no-image.png', 0, 0, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `item_type` (`item_type_id`, `item_type_server`, `item_type_name`, `item_type_use_type`, `item_type_use_id`, `item_type_use_value`, `item_type_order_price`, `item_type_drop_type`, `item_type_drop_model`, `item_type_drop_pos_x`, `item_type_drop_pos_y`, `item_type_drop_pos_z`, `item_type_drop_rot_x`, `item_type_drop_rot_y`, `item_type_drop_rot_z`, `item_type_drop_scale_x`, `item_type_drop_scale_y`, `item_type_drop_scale_z`, `item_type_image_small`, `item_type_image_large`, `item_type_image_hotbar`, `item_type_size`, `item_type_capacity`, `item_type_demand_multiplier`, `item_type_supply_multiplier`, `item_type_risk_multiplier`, `item_type_enabled`, `item_type_delay_switch`, `item_type_delay_use`, `item_type_delay_pickup`, `item_type_delay_put`, `item_type_delay_take`, `item_type_delay_give`, `item_type_delay_drop`) VALUES + (183, 4, 'Meth', 16, 0, 0, 100, 1, 1279, 0, 0, -0.95, 1.6, 0, 0, 0.3, 0.3, 0.3, 'no-image.png', 'no-image.png', 'no-image.png', 0, 100, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `item_type` (`item_type_id`, `item_type_server`, `item_type_name`, `item_type_use_type`, `item_type_use_id`, `item_type_use_value`, `item_type_order_price`, `item_type_drop_type`, `item_type_drop_model`, `item_type_drop_pos_x`, `item_type_drop_pos_y`, `item_type_drop_pos_z`, `item_type_drop_rot_x`, `item_type_drop_rot_y`, `item_type_drop_rot_z`, `item_type_drop_scale_x`, `item_type_drop_scale_y`, `item_type_drop_scale_z`, `item_type_image_small`, `item_type_image_large`, `item_type_image_hotbar`, `item_type_size`, `item_type_capacity`, `item_type_demand_multiplier`, `item_type_supply_multiplier`, `item_type_risk_multiplier`, `item_type_enabled`, `item_type_delay_switch`, `item_type_delay_use`, `item_type_delay_pickup`, `item_type_delay_put`, `item_type_delay_take`, `item_type_delay_give`, `item_type_delay_drop`) VALUES + (184, 4, 'Coke', 15, 0, 0, 250, 1, 1279, 0, 0, -0.95, 1.6, 0, 0, 0.3, 0.3, 0.3, 'no-image.png', 'no-image.png', 'no-image.png', 0, 100, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `item_type` (`item_type_id`, `item_type_server`, `item_type_name`, `item_type_use_type`, `item_type_use_id`, `item_type_use_value`, `item_type_order_price`, `item_type_drop_type`, `item_type_drop_model`, `item_type_drop_pos_x`, `item_type_drop_pos_y`, `item_type_drop_pos_z`, `item_type_drop_rot_x`, `item_type_drop_rot_y`, `item_type_drop_rot_z`, `item_type_drop_scale_x`, `item_type_drop_scale_y`, `item_type_drop_scale_z`, `item_type_image_small`, `item_type_image_large`, `item_type_image_hotbar`, `item_type_size`, `item_type_capacity`, `item_type_demand_multiplier`, `item_type_supply_multiplier`, `item_type_risk_multiplier`, `item_type_enabled`, `item_type_delay_switch`, `item_type_delay_use`, `item_type_delay_pickup`, `item_type_delay_put`, `item_type_delay_take`, `item_type_delay_give`, `item_type_delay_drop`) VALUES + (185, 4, 'Wallet', 9, 0, 0, 10, 1, 1279, 0, 0, -0.95, 1.6, 0, 0, 0.3, 0.3, 0.2, 'no-image.png', 'no-image.png', 'no-image.png', 0, 0, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `item_type` (`item_type_id`, `item_type_server`, `item_type_name`, `item_type_use_type`, `item_type_use_id`, `item_type_use_value`, `item_type_order_price`, `item_type_drop_type`, `item_type_drop_model`, `item_type_drop_pos_x`, `item_type_drop_pos_y`, `item_type_drop_pos_z`, `item_type_drop_rot_x`, `item_type_drop_rot_y`, `item_type_drop_rot_z`, `item_type_drop_scale_x`, `item_type_drop_scale_y`, `item_type_drop_scale_z`, `item_type_image_small`, `item_type_image_large`, `item_type_image_hotbar`, `item_type_size`, `item_type_capacity`, `item_type_demand_multiplier`, `item_type_supply_multiplier`, `item_type_risk_multiplier`, `item_type_enabled`, `item_type_delay_switch`, `item_type_delay_use`, `item_type_delay_pickup`, `item_type_delay_put`, `item_type_delay_take`, `item_type_delay_give`, `item_type_delay_drop`) VALUES + (186, 4, 'Crate', 9, 0, 0, 25, 1, 1271, 0, 0, -0.95, 1.6, 0, 0, 0, 0, 0, 'no-image.png', 'no-image.png', 'no-image.png', 0, 0, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `item_type` (`item_type_id`, `item_type_server`, `item_type_name`, `item_type_use_type`, `item_type_use_id`, `item_type_use_value`, `item_type_order_price`, `item_type_drop_type`, `item_type_drop_model`, `item_type_drop_pos_x`, `item_type_drop_pos_y`, `item_type_drop_pos_z`, `item_type_drop_rot_x`, `item_type_drop_rot_y`, `item_type_drop_rot_z`, `item_type_drop_scale_x`, `item_type_drop_scale_y`, `item_type_drop_scale_z`, `item_type_image_small`, `item_type_image_large`, `item_type_image_hotbar`, `item_type_size`, `item_type_capacity`, `item_type_demand_multiplier`, `item_type_supply_multiplier`, `item_type_risk_multiplier`, `item_type_enabled`, `item_type_delay_switch`, `item_type_delay_use`, `item_type_delay_pickup`, `item_type_delay_put`, `item_type_delay_take`, `item_type_delay_give`, `item_type_delay_drop`) VALUES + (187, 4, 'Barrel', 9, 0, 0, 25, 1, 3632, 0, 0, -0.95, 1.6, 0, 0, 0, 0, 0, 'no-image.png', 'no-image.png', 'no-image.png', 0, 0, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `item_type` (`item_type_id`, `item_type_server`, `item_type_name`, `item_type_use_type`, `item_type_use_id`, `item_type_use_value`, `item_type_order_price`, `item_type_drop_type`, `item_type_drop_model`, `item_type_drop_pos_x`, `item_type_drop_pos_y`, `item_type_drop_pos_z`, `item_type_drop_rot_x`, `item_type_drop_rot_y`, `item_type_drop_rot_z`, `item_type_drop_scale_x`, `item_type_drop_scale_y`, `item_type_drop_scale_z`, `item_type_image_small`, `item_type_image_large`, `item_type_image_hotbar`, `item_type_size`, `item_type_capacity`, `item_type_demand_multiplier`, `item_type_supply_multiplier`, `item_type_risk_multiplier`, `item_type_enabled`, `item_type_delay_switch`, `item_type_delay_use`, `item_type_delay_pickup`, `item_type_delay_put`, `item_type_delay_take`, `item_type_delay_give`, `item_type_delay_drop`) VALUES + (188, 4, 'Outfit', 6, 0, 0, 50, 1, 1275, 0, 0, -1.1, 1.6, 0, 0, 0, 0, 0, 'no-image.png', 'no-image.png', 'no-image.png', 0, 0, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `item_type` (`item_type_id`, `item_type_server`, `item_type_name`, `item_type_use_type`, `item_type_use_id`, `item_type_use_value`, `item_type_order_price`, `item_type_drop_type`, `item_type_drop_model`, `item_type_drop_pos_x`, `item_type_drop_pos_y`, `item_type_drop_pos_z`, `item_type_drop_rot_x`, `item_type_drop_rot_y`, `item_type_drop_rot_z`, `item_type_drop_scale_x`, `item_type_drop_scale_y`, `item_type_drop_scale_z`, `item_type_image_small`, `item_type_image_large`, `item_type_image_hotbar`, `item_type_size`, `item_type_capacity`, `item_type_demand_multiplier`, `item_type_supply_multiplier`, `item_type_risk_multiplier`, `item_type_enabled`, `item_type_delay_switch`, `item_type_delay_use`, `item_type_delay_pickup`, `item_type_delay_put`, `item_type_delay_take`, `item_type_delay_give`, `item_type_delay_drop`) VALUES + (189, 4, 'Megaphone', 15, 0, 0, 35, 1, 1279, 0, 0, -0.95, 1.6, 0, 0, 0, 0, 0, 'no-image.png', 'no-image.png', 'no-image.png', 0, 100, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `item_type` (`item_type_id`, `item_type_server`, `item_type_name`, `item_type_use_type`, `item_type_use_id`, `item_type_use_value`, `item_type_order_price`, `item_type_drop_type`, `item_type_drop_model`, `item_type_drop_pos_x`, `item_type_drop_pos_y`, `item_type_drop_pos_z`, `item_type_drop_rot_x`, `item_type_drop_rot_y`, `item_type_drop_rot_z`, `item_type_drop_scale_x`, `item_type_drop_scale_y`, `item_type_drop_scale_z`, `item_type_image_small`, `item_type_image_large`, `item_type_image_hotbar`, `item_type_size`, `item_type_capacity`, `item_type_demand_multiplier`, `item_type_supply_multiplier`, `item_type_risk_multiplier`, `item_type_enabled`, `item_type_delay_switch`, `item_type_delay_use`, `item_type_delay_pickup`, `item_type_delay_put`, `item_type_delay_take`, `item_type_delay_give`, `item_type_delay_drop`) VALUES + (190, 4, 'Bottle of Water', 18, 1, 10, 3, 1, 1484, 0, 0, -0.95, 1.6, 0, 0, 0, 0, 0, 'no-image.png', 'no-image.png', 'no-image.png', 0, 100, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `item_type` (`item_type_id`, `item_type_server`, `item_type_name`, `item_type_use_type`, `item_type_use_id`, `item_type_use_value`, `item_type_order_price`, `item_type_drop_type`, `item_type_drop_model`, `item_type_drop_pos_x`, `item_type_drop_pos_y`, `item_type_drop_pos_z`, `item_type_drop_rot_x`, `item_type_drop_rot_y`, `item_type_drop_rot_z`, `item_type_drop_scale_x`, `item_type_drop_scale_y`, `item_type_drop_scale_z`, `item_type_image_small`, `item_type_image_large`, `item_type_image_hotbar`, `item_type_size`, `item_type_capacity`, `item_type_demand_multiplier`, `item_type_supply_multiplier`, `item_type_risk_multiplier`, `item_type_enabled`, `item_type_delay_switch`, `item_type_delay_use`, `item_type_delay_pickup`, `item_type_delay_put`, `item_type_delay_take`, `item_type_delay_give`, `item_type_delay_drop`) VALUES + (191, 4, 'Can of Beer', 35, 3, 5, 5, 1, 594, 0, 0, -0.95, 1.6, 0, 0, 0, 0, 0, 'no-image.png', 'no-image.png', 'no-image.png', 0, 100, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `item_type` (`item_type_id`, `item_type_server`, `item_type_name`, `item_type_use_type`, `item_type_use_id`, `item_type_use_value`, `item_type_order_price`, `item_type_drop_type`, `item_type_drop_model`, `item_type_drop_pos_x`, `item_type_drop_pos_y`, `item_type_drop_pos_z`, `item_type_drop_rot_x`, `item_type_drop_rot_y`, `item_type_drop_rot_z`, `item_type_drop_scale_x`, `item_type_drop_scale_y`, `item_type_drop_scale_z`, `item_type_image_small`, `item_type_image_large`, `item_type_image_hotbar`, `item_type_size`, `item_type_capacity`, `item_type_demand_multiplier`, `item_type_supply_multiplier`, `item_type_risk_multiplier`, `item_type_enabled`, `item_type_delay_switch`, `item_type_delay_use`, `item_type_delay_pickup`, `item_type_delay_put`, `item_type_delay_take`, `item_type_delay_give`, `item_type_delay_drop`) VALUES + (192, 4, 'Bottle of Vodka', 35, 3, 5, 10, 1, 1484, 0, 0, -0.95, 1.6, 0, 0, 0, 0, 0, 'no-image.png', 'no-image.png', 'no-image.png', 0, 100, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `item_type` (`item_type_id`, `item_type_server`, `item_type_name`, `item_type_use_type`, `item_type_use_id`, `item_type_use_value`, `item_type_order_price`, `item_type_drop_type`, `item_type_drop_model`, `item_type_drop_pos_x`, `item_type_drop_pos_y`, `item_type_drop_pos_z`, `item_type_drop_rot_x`, `item_type_drop_rot_y`, `item_type_drop_rot_z`, `item_type_drop_scale_x`, `item_type_drop_scale_y`, `item_type_drop_scale_z`, `item_type_image_small`, `item_type_image_large`, `item_type_image_hotbar`, `item_type_size`, `item_type_capacity`, `item_type_demand_multiplier`, `item_type_supply_multiplier`, `item_type_risk_multiplier`, `item_type_enabled`, `item_type_delay_switch`, `item_type_delay_use`, `item_type_delay_pickup`, `item_type_delay_put`, `item_type_delay_take`, `item_type_delay_give`, `item_type_delay_drop`) VALUES + (193, 4, 'Bottle of Whiskey', 35, 3, 5, 12, 1, 1512, 0, 0, -0.95, 1.6, 0, 0, 0, 0, 0, 'no-image.png', 'no-image.png', 'no-image.png', 0, 100, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `item_type` (`item_type_id`, `item_type_server`, `item_type_name`, `item_type_use_type`, `item_type_use_id`, `item_type_use_value`, `item_type_order_price`, `item_type_drop_type`, `item_type_drop_model`, `item_type_drop_pos_x`, `item_type_drop_pos_y`, `item_type_drop_pos_z`, `item_type_drop_rot_x`, `item_type_drop_rot_y`, `item_type_drop_rot_z`, `item_type_drop_scale_x`, `item_type_drop_scale_y`, `item_type_drop_scale_z`, `item_type_image_small`, `item_type_image_large`, `item_type_image_hotbar`, `item_type_size`, `item_type_capacity`, `item_type_demand_multiplier`, `item_type_supply_multiplier`, `item_type_risk_multiplier`, `item_type_enabled`, `item_type_delay_switch`, `item_type_delay_use`, `item_type_delay_pickup`, `item_type_delay_put`, `item_type_delay_take`, `item_type_delay_give`, `item_type_delay_drop`) VALUES + (194, 4, 'Handcuffs', 24, 0, 0, 100, 0, 1279, 0, 0, -0.95, 1.6, 0, 0, 0.3, 0.3, 0.2, 'no-image.png', 'no-image.png', 'no-image.png', 0, 0, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `item_type` (`item_type_id`, `item_type_server`, `item_type_name`, `item_type_use_type`, `item_type_use_id`, `item_type_use_value`, `item_type_order_price`, `item_type_drop_type`, `item_type_drop_model`, `item_type_drop_pos_x`, `item_type_drop_pos_y`, `item_type_drop_pos_z`, `item_type_drop_rot_x`, `item_type_drop_rot_y`, `item_type_drop_rot_z`, `item_type_drop_scale_x`, `item_type_drop_scale_y`, `item_type_drop_scale_z`, `item_type_image_small`, `item_type_image_large`, `item_type_image_hotbar`, `item_type_size`, `item_type_capacity`, `item_type_demand_multiplier`, `item_type_supply_multiplier`, `item_type_risk_multiplier`, `item_type_enabled`, `item_type_delay_switch`, `item_type_delay_use`, `item_type_delay_pickup`, `item_type_delay_put`, `item_type_delay_take`, `item_type_delay_give`, `item_type_delay_drop`) VALUES + (195, 4, 'Rope', 25, 0, 0, 20, 0, 1279, 0, 0, -0.95, 1.6, 0, 0, 0, 0, 0, 'no-image.png', 'no-image.png', 'no-image.png', 0, 0, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `item_type` (`item_type_id`, `item_type_server`, `item_type_name`, `item_type_use_type`, `item_type_use_id`, `item_type_use_value`, `item_type_order_price`, `item_type_drop_type`, `item_type_drop_model`, `item_type_drop_pos_x`, `item_type_drop_pos_y`, `item_type_drop_pos_z`, `item_type_drop_rot_x`, `item_type_drop_rot_y`, `item_type_drop_rot_z`, `item_type_drop_scale_x`, `item_type_drop_scale_y`, `item_type_drop_scale_z`, `item_type_image_small`, `item_type_image_large`, `item_type_image_hotbar`, `item_type_size`, `item_type_capacity`, `item_type_demand_multiplier`, `item_type_supply_multiplier`, `item_type_risk_multiplier`, `item_type_enabled`, `item_type_delay_switch`, `item_type_delay_use`, `item_type_delay_pickup`, `item_type_delay_put`, `item_type_delay_take`, `item_type_delay_give`, `item_type_delay_drop`) VALUES + (196, 4, 'Blindfold', 26, 0, 0, 20, 0, 1279, 0, 0, -0.95, 1.6, 0, 0, 0, 0, 0, 'no-image.png', 'no-image.png', 'no-image.png', 0, 0, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `item_type` (`item_type_id`, `item_type_server`, `item_type_name`, `item_type_use_type`, `item_type_use_id`, `item_type_use_value`, `item_type_order_price`, `item_type_drop_type`, `item_type_drop_model`, `item_type_drop_pos_x`, `item_type_drop_pos_y`, `item_type_drop_pos_z`, `item_type_drop_rot_x`, `item_type_drop_rot_y`, `item_type_drop_rot_z`, `item_type_drop_scale_x`, `item_type_drop_scale_y`, `item_type_drop_scale_z`, `item_type_image_small`, `item_type_image_large`, `item_type_image_hotbar`, `item_type_size`, `item_type_capacity`, `item_type_demand_multiplier`, `item_type_supply_multiplier`, `item_type_risk_multiplier`, `item_type_enabled`, `item_type_delay_switch`, `item_type_delay_use`, `item_type_delay_pickup`, `item_type_delay_put`, `item_type_delay_take`, `item_type_delay_give`, `item_type_delay_drop`) VALUES + (197, 4, 'Bulletproof Vest', 28, 0, 0, 0, 1, 373, 0, 0, -0.95, 1.6, 0, 0, 0, 0, 0, 'no-image.png', 'no-image.png', 'no-image.png', 0, 100, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `item_type` (`item_type_id`, `item_type_server`, `item_type_name`, `item_type_use_type`, `item_type_use_id`, `item_type_use_value`, `item_type_order_price`, `item_type_drop_type`, `item_type_drop_model`, `item_type_drop_pos_x`, `item_type_drop_pos_y`, `item_type_drop_pos_z`, `item_type_drop_rot_x`, `item_type_drop_rot_y`, `item_type_drop_rot_z`, `item_type_drop_scale_x`, `item_type_drop_scale_y`, `item_type_drop_scale_z`, `item_type_image_small`, `item_type_image_large`, `item_type_image_hotbar`, `item_type_size`, `item_type_capacity`, `item_type_demand_multiplier`, `item_type_supply_multiplier`, `item_type_risk_multiplier`, `item_type_enabled`, `item_type_delay_switch`, `item_type_delay_use`, `item_type_delay_pickup`, `item_type_delay_put`, `item_type_delay_take`, `item_type_delay_give`, `item_type_delay_drop`) VALUES + (198, 4, 'Uniform', 6, 0, 0, 0, 1, 1275, 0, 0, -0.95, 1.6, 0, 0, 0, 0, 0, 'no-image.png', 'no-image.png', 'no-image.png', 0, 0, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `item_type` (`item_type_id`, `item_type_server`, `item_type_name`, `item_type_use_type`, `item_type_use_id`, `item_type_use_value`, `item_type_order_price`, `item_type_drop_type`, `item_type_drop_model`, `item_type_drop_pos_x`, `item_type_drop_pos_y`, `item_type_drop_pos_z`, `item_type_drop_rot_x`, `item_type_drop_rot_y`, `item_type_drop_rot_z`, `item_type_drop_scale_x`, `item_type_drop_scale_y`, `item_type_drop_scale_z`, `item_type_image_small`, `item_type_image_large`, `item_type_image_hotbar`, `item_type_size`, `item_type_capacity`, `item_type_demand_multiplier`, `item_type_supply_multiplier`, `item_type_risk_multiplier`, `item_type_enabled`, `item_type_delay_switch`, `item_type_delay_use`, `item_type_delay_pickup`, `item_type_delay_put`, `item_type_delay_take`, `item_type_delay_give`, `item_type_delay_drop`) VALUES + (199, 4, 'Tazer', 27, 23, 0, 350, 0, 1279, 0, 0, -0.95, 1.6, 0, 0, 0, 0, 0, 'no-image.png', 'no-image.png', 'no-image.png', 0, 0, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `item_type` (`item_type_id`, `item_type_server`, `item_type_name`, `item_type_use_type`, `item_type_use_id`, `item_type_use_value`, `item_type_order_price`, `item_type_drop_type`, `item_type_drop_model`, `item_type_drop_pos_x`, `item_type_drop_pos_y`, `item_type_drop_pos_z`, `item_type_drop_rot_x`, `item_type_drop_rot_y`, `item_type_drop_rot_z`, `item_type_drop_scale_x`, `item_type_drop_scale_y`, `item_type_drop_scale_z`, `item_type_image_small`, `item_type_image_large`, `item_type_image_hotbar`, `item_type_size`, `item_type_capacity`, `item_type_demand_multiplier`, `item_type_supply_multiplier`, `item_type_risk_multiplier`, `item_type_enabled`, `item_type_delay_switch`, `item_type_delay_use`, `item_type_delay_pickup`, `item_type_delay_put`, `item_type_delay_take`, `item_type_delay_give`, `item_type_delay_drop`) VALUES + (200, 4, 'Flashlight', 39, 0, 0, 35, 0, 1279, 0, 0, -0.95, 1.6, 0, 0, 0, 0, 0, 'no-image.png', 'no-image.png', 'no-image.png', 0, 0, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `item_type` (`item_type_id`, `item_type_server`, `item_type_name`, `item_type_use_type`, `item_type_use_id`, `item_type_use_value`, `item_type_order_price`, `item_type_drop_type`, `item_type_drop_model`, `item_type_drop_pos_x`, `item_type_drop_pos_y`, `item_type_drop_pos_z`, `item_type_drop_rot_x`, `item_type_drop_rot_y`, `item_type_drop_rot_z`, `item_type_drop_scale_x`, `item_type_drop_scale_y`, `item_type_drop_scale_z`, `item_type_image_small`, `item_type_image_large`, `item_type_image_hotbar`, `item_type_size`, `item_type_capacity`, `item_type_demand_multiplier`, `item_type_supply_multiplier`, `item_type_risk_multiplier`, `item_type_enabled`, `item_type_delay_switch`, `item_type_delay_use`, `item_type_delay_pickup`, `item_type_delay_put`, `item_type_delay_take`, `item_type_delay_give`, `item_type_delay_drop`) VALUES + (201, 4, 'First Aid Kit', 29, 0, 50, 75, 0, 1279, 0, 0, -0.95, 1.6, 0, 0, 0, 0, 0, 'no-image.png', 'no-image.png', 'no-image.png', 0, 100, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `item_type` (`item_type_id`, `item_type_server`, `item_type_name`, `item_type_use_type`, `item_type_use_id`, `item_type_use_value`, `item_type_order_price`, `item_type_drop_type`, `item_type_drop_model`, `item_type_drop_pos_x`, `item_type_drop_pos_y`, `item_type_drop_pos_z`, `item_type_drop_rot_x`, `item_type_drop_rot_y`, `item_type_drop_rot_z`, `item_type_drop_scale_x`, `item_type_drop_scale_y`, `item_type_drop_scale_z`, `item_type_image_small`, `item_type_image_large`, `item_type_image_hotbar`, `item_type_size`, `item_type_capacity`, `item_type_demand_multiplier`, `item_type_supply_multiplier`, `item_type_risk_multiplier`, `item_type_enabled`, `item_type_delay_switch`, `item_type_delay_use`, `item_type_delay_pickup`, `item_type_delay_put`, `item_type_delay_take`, `item_type_delay_give`, `item_type_delay_drop`) VALUES + (202, 4, 'AED', 29, 0, 100, 3000, 0, 1279, 0, 0, -0.95, 1.6, 0, 0, 0, 0, 0, 'no-image.png', 'no-image.png', 'no-image.png', 0, 100, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `item_type` (`item_type_id`, `item_type_server`, `item_type_name`, `item_type_use_type`, `item_type_use_id`, `item_type_use_value`, `item_type_order_price`, `item_type_drop_type`, `item_type_drop_model`, `item_type_drop_pos_x`, `item_type_drop_pos_y`, `item_type_drop_pos_z`, `item_type_drop_rot_x`, `item_type_drop_rot_y`, `item_type_drop_rot_z`, `item_type_drop_scale_x`, `item_type_drop_scale_y`, `item_type_drop_scale_z`, `item_type_image_small`, `item_type_image_large`, `item_type_image_hotbar`, `item_type_size`, `item_type_capacity`, `item_type_demand_multiplier`, `item_type_supply_multiplier`, `item_type_risk_multiplier`, `item_type_enabled`, `item_type_delay_switch`, `item_type_delay_use`, `item_type_delay_pickup`, `item_type_delay_put`, `item_type_delay_take`, `item_type_delay_give`, `item_type_delay_drop`) VALUES + (203, 4, 'Morphine Syringe', 29, 0, 100, 650, 0, 1279, 0, 0, -0.95, 1.6, 0, 0, 0, 0, 0, 'no-image.png', 'no-image.png', 'no-image.png', 0, 100, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `item_type` (`item_type_id`, `item_type_server`, `item_type_name`, `item_type_use_type`, `item_type_use_id`, `item_type_use_value`, `item_type_order_price`, `item_type_drop_type`, `item_type_drop_model`, `item_type_drop_pos_x`, `item_type_drop_pos_y`, `item_type_drop_pos_z`, `item_type_drop_rot_x`, `item_type_drop_rot_y`, `item_type_drop_rot_z`, `item_type_drop_scale_x`, `item_type_drop_scale_y`, `item_type_drop_scale_z`, `item_type_image_small`, `item_type_image_large`, `item_type_image_hotbar`, `item_type_size`, `item_type_capacity`, `item_type_demand_multiplier`, `item_type_supply_multiplier`, `item_type_risk_multiplier`, `item_type_enabled`, `item_type_delay_switch`, `item_type_delay_use`, `item_type_delay_pickup`, `item_type_delay_put`, `item_type_delay_take`, `item_type_delay_give`, `item_type_delay_drop`) VALUES + (204, 4, 'Cheeseburger', 19, 0, 10, 5, 0, 2880, 0, 0, -0.95, 1.6, 0, 0, 0, 0, 0, 'no-image.png', 'no-image.png', 'no-image.png', 0, 100, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `item_type` (`item_type_id`, `item_type_server`, `item_type_name`, `item_type_use_type`, `item_type_use_id`, `item_type_use_value`, `item_type_order_price`, `item_type_drop_type`, `item_type_drop_model`, `item_type_drop_pos_x`, `item_type_drop_pos_y`, `item_type_drop_pos_z`, `item_type_drop_rot_x`, `item_type_drop_rot_y`, `item_type_drop_rot_z`, `item_type_drop_scale_x`, `item_type_drop_scale_y`, `item_type_drop_scale_z`, `item_type_image_small`, `item_type_image_large`, `item_type_image_hotbar`, `item_type_size`, `item_type_capacity`, `item_type_demand_multiplier`, `item_type_supply_multiplier`, `item_type_risk_multiplier`, `item_type_enabled`, `item_type_delay_switch`, `item_type_delay_use`, `item_type_delay_pickup`, `item_type_delay_put`, `item_type_delay_take`, `item_type_delay_give`, `item_type_delay_drop`) VALUES + (205, 4, 'Slice of Pizza', 19, 0, 10, 5, 0, 1279, 0, 0, -0.95, 1.6, 0, 0, 0, 0, 0, 'no-image.png', 'no-image.png', 'no-image.png', 0, 100, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `item_type` (`item_type_id`, `item_type_server`, `item_type_name`, `item_type_use_type`, `item_type_use_id`, `item_type_use_value`, `item_type_order_price`, `item_type_drop_type`, `item_type_drop_model`, `item_type_drop_pos_x`, `item_type_drop_pos_y`, `item_type_drop_pos_z`, `item_type_drop_rot_x`, `item_type_drop_rot_y`, `item_type_drop_rot_z`, `item_type_drop_scale_x`, `item_type_drop_scale_y`, `item_type_drop_scale_z`, `item_type_image_small`, `item_type_image_large`, `item_type_image_hotbar`, `item_type_size`, `item_type_capacity`, `item_type_demand_multiplier`, `item_type_supply_multiplier`, `item_type_risk_multiplier`, `item_type_enabled`, `item_type_delay_switch`, `item_type_delay_use`, `item_type_delay_pickup`, `item_type_delay_put`, `item_type_delay_take`, `item_type_delay_give`, `item_type_delay_drop`) VALUES + (206, 4, 'Chicken Wing', 19, 0, 10, 5, 0, 1279, 0, 0, -0.95, 1.6, 0, 0, 0.1, 0.1, 0.1, 'no-image.png', 'no-image.png', 'no-image.png', 0, 100, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `item_type` (`item_type_id`, `item_type_server`, `item_type_name`, `item_type_use_type`, `item_type_use_id`, `item_type_use_value`, `item_type_order_price`, `item_type_drop_type`, `item_type_drop_model`, `item_type_drop_pos_x`, `item_type_drop_pos_y`, `item_type_drop_pos_z`, `item_type_drop_rot_x`, `item_type_drop_rot_y`, `item_type_drop_rot_z`, `item_type_drop_scale_x`, `item_type_drop_scale_y`, `item_type_drop_scale_z`, `item_type_image_small`, `item_type_image_large`, `item_type_image_hotbar`, `item_type_size`, `item_type_capacity`, `item_type_demand_multiplier`, `item_type_supply_multiplier`, `item_type_risk_multiplier`, `item_type_enabled`, `item_type_delay_switch`, `item_type_delay_use`, `item_type_delay_pickup`, `item_type_delay_put`, `item_type_delay_take`, `item_type_delay_give`, `item_type_delay_drop`) VALUES + (207, 4, 'Pizza', 19, 0, 10, 15, 0, 1582, 0, 0, -0.95, 1.6, 0, 0, 0, 0, 0, 'no-image.png', 'no-image.png', 'no-image.png', 0, 100, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `item_type` (`item_type_id`, `item_type_server`, `item_type_name`, `item_type_use_type`, `item_type_use_id`, `item_type_use_value`, `item_type_order_price`, `item_type_drop_type`, `item_type_drop_model`, `item_type_drop_pos_x`, `item_type_drop_pos_y`, `item_type_drop_pos_z`, `item_type_drop_rot_x`, `item_type_drop_rot_y`, `item_type_drop_rot_z`, `item_type_drop_scale_x`, `item_type_drop_scale_y`, `item_type_drop_scale_z`, `item_type_image_small`, `item_type_image_large`, `item_type_image_hotbar`, `item_type_size`, `item_type_capacity`, `item_type_demand_multiplier`, `item_type_supply_multiplier`, `item_type_risk_multiplier`, `item_type_enabled`, `item_type_delay_switch`, `item_type_delay_use`, `item_type_delay_pickup`, `item_type_delay_put`, `item_type_delay_take`, `item_type_delay_give`, `item_type_delay_drop`) VALUES + (208, 4, 'Walkie Talkie', 31, 0, 0, 50, 0, 1279, 0, 0, -0.95, 1.6, 0, 0, 0, 0, 0, 'no-image.png', 'no-image.png', 'no-image.png', 0, 0, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `item_type` (`item_type_id`, `item_type_server`, `item_type_name`, `item_type_use_type`, `item_type_use_id`, `item_type_use_value`, `item_type_order_price`, `item_type_drop_type`, `item_type_drop_model`, `item_type_drop_pos_x`, `item_type_drop_pos_y`, `item_type_drop_pos_z`, `item_type_drop_rot_x`, `item_type_drop_rot_y`, `item_type_drop_rot_z`, `item_type_drop_scale_x`, `item_type_drop_scale_y`, `item_type_drop_scale_z`, `item_type_image_small`, `item_type_image_large`, `item_type_image_hotbar`, `item_type_size`, `item_type_capacity`, `item_type_demand_multiplier`, `item_type_supply_multiplier`, `item_type_risk_multiplier`, `item_type_enabled`, `item_type_delay_switch`, `item_type_delay_use`, `item_type_delay_pickup`, `item_type_delay_put`, `item_type_delay_take`, `item_type_delay_give`, `item_type_delay_drop`) VALUES + (209, 4, 'Bottle of Soda', 35, 2, 0, 0, 0, 1544, 0, 0, -0.95, 1.6, 0, 0, 0, 0, 0, 'no-image.png', 'no-image.png', 'no-image.png', 0, 100, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `item_type` (`item_type_id`, `item_type_server`, `item_type_name`, `item_type_use_type`, `item_type_use_id`, `item_type_use_value`, `item_type_order_price`, `item_type_drop_type`, `item_type_drop_model`, `item_type_drop_pos_x`, `item_type_drop_pos_y`, `item_type_drop_pos_z`, `item_type_drop_rot_x`, `item_type_drop_rot_y`, `item_type_drop_rot_z`, `item_type_drop_scale_x`, `item_type_drop_scale_y`, `item_type_drop_scale_z`, `item_type_image_small`, `item_type_image_large`, `item_type_image_hotbar`, `item_type_size`, `item_type_capacity`, `item_type_demand_multiplier`, `item_type_supply_multiplier`, `item_type_risk_multiplier`, `item_type_enabled`, `item_type_delay_switch`, `item_type_delay_use`, `item_type_delay_pickup`, `item_type_delay_put`, `item_type_delay_take`, `item_type_delay_give`, `item_type_delay_drop`) VALUES + (210, 4, 'Can of Soda', 35, 2, 0, 0, 0, 2601, 0, 0, -0.95, 1.6, 0, 0, 0, 0, 0, 'no-image.png', 'no-image.png', 'no-image.png', 0, 100, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `item_type` (`item_type_id`, `item_type_server`, `item_type_name`, `item_type_use_type`, `item_type_use_id`, `item_type_use_value`, `item_type_order_price`, `item_type_drop_type`, `item_type_drop_model`, `item_type_drop_pos_x`, `item_type_drop_pos_y`, `item_type_drop_pos_z`, `item_type_drop_rot_x`, `item_type_drop_rot_y`, `item_type_drop_rot_z`, `item_type_drop_scale_x`, `item_type_drop_scale_y`, `item_type_drop_scale_z`, `item_type_image_small`, `item_type_image_large`, `item_type_image_hotbar`, `item_type_size`, `item_type_capacity`, `item_type_demand_multiplier`, `item_type_supply_multiplier`, `item_type_risk_multiplier`, `item_type_enabled`, `item_type_delay_switch`, `item_type_delay_use`, `item_type_delay_pickup`, `item_type_delay_put`, `item_type_delay_take`, `item_type_delay_give`, `item_type_delay_drop`) VALUES + (211, 4, 'Badge', 34, 0, 0, 0, 0, 1581, 0, 0, -0.95, 1.6, 0, 0, 0, 0, 0, 'no-image.png', 'no-image.png', 'no-image.png', 0, 0, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0); +/*!40000 ALTER TABLE `item_type` ENABLE KEYS */; + +-- Dumping structure for table gtac_main.job_bl +CREATE TABLE IF NOT EXISTS `job_bl` ( + `job_bl_id` int(11) NOT NULL AUTO_INCREMENT, + `job_bl_job` int(11) NOT NULL DEFAULT '0', + `job_bl_sacct` int(11) NOT NULL DEFAULT '0', + `job_bl_when_added` int(11) NOT NULL DEFAULT '0', + `job_bl_who_added` int(11) NOT NULL DEFAULT '0', + `job_bl_deleted` int(11) NOT NULL DEFAULT '0', + PRIMARY KEY (`job_bl_id`), + KEY `job_bl_job` (`job_bl_job`), + KEY `job_bl_sacct` (`job_bl_sacct`), + KEY `job_bl_who_added` (`job_bl_who_added`), + CONSTRAINT `fk_job_bl_admin` FOREIGN KEY (`job_bl_who_added`) REFERENCES `acct_main` (`acct_id`) ON DELETE CASCADE ON UPDATE CASCADE, + CONSTRAINT `fk_job_bl_job` FOREIGN KEY (`job_bl_job`) REFERENCES `job_main` (`job_id`) ON DELETE CASCADE ON UPDATE CASCADE, + CONSTRAINT `fk_job_bl_sacct` FOREIGN KEY (`job_bl_sacct`) REFERENCES `sacct_main` (`sacct_id`) ON DELETE CASCADE ON UPDATE CASCADE +) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Job - Blacklist'; + +-- Dumping data for table gtac_main.job_bl: ~0 rows (approximately) +/*!40000 ALTER TABLE `job_bl` DISABLE KEYS */; +/*!40000 ALTER TABLE `job_bl` ENABLE KEYS */; + +-- Dumping structure for table gtac_main.job_equip +CREATE TABLE IF NOT EXISTS `job_equip` ( + `job_equip_id` int(11) NOT NULL AUTO_INCREMENT, + `job_equip_job` int(11) NOT NULL DEFAULT '0', + `job_equip_minrank` int(11) NOT NULL DEFAULT '0', + `job_equip_name` varchar(50) NOT NULL DEFAULT '0', + `job_equip_enabled` tinyint(1) NOT NULL DEFAULT '1', + PRIMARY KEY (`job_equip_id`), + KEY `job_equip_job` (`job_equip_job`), + CONSTRAINT `fk_job_equip_job` FOREIGN KEY (`job_equip_job`) REFERENCES `job_main` (`job_id`) ON DELETE CASCADE ON UPDATE CASCADE +) ENGINE=InnoDB AUTO_INCREMENT=21 DEFAULT CHARSET=utf8 COMMENT='Job Equipments'; + +-- Dumping data for table gtac_main.job_equip: ~20 rows (approximately) +/*!40000 ALTER TABLE `job_equip` DISABLE KEYS */; +INSERT INTO `job_equip` (`job_equip_id`, `job_equip_job`, `job_equip_minrank`, `job_equip_name`, `job_equip_enabled`) VALUES + (1, 1, 0, 'Police Officer', 1); +INSERT INTO `job_equip` (`job_equip_id`, `job_equip_job`, `job_equip_minrank`, `job_equip_name`, `job_equip_enabled`) VALUES + (2, 2, 0, 'Police Officer', 1); +INSERT INTO `job_equip` (`job_equip_id`, `job_equip_job`, `job_equip_minrank`, `job_equip_name`, `job_equip_enabled`) VALUES + (3, 3, 0, 'Police Officer', 1); +INSERT INTO `job_equip` (`job_equip_id`, `job_equip_job`, `job_equip_minrank`, `job_equip_name`, `job_equip_enabled`) VALUES + (4, 4, 0, 'Police Officer', 1); +INSERT INTO `job_equip` (`job_equip_id`, `job_equip_job`, `job_equip_minrank`, `job_equip_name`, `job_equip_enabled`) VALUES + (5, 1, 1, 'Detective', 1); +INSERT INTO `job_equip` (`job_equip_id`, `job_equip_job`, `job_equip_minrank`, `job_equip_name`, `job_equip_enabled`) VALUES + (6, 2, 1, 'Detective', 1); +INSERT INTO `job_equip` (`job_equip_id`, `job_equip_job`, `job_equip_minrank`, `job_equip_name`, `job_equip_enabled`) VALUES + (7, 3, 1, 'Detective', 1); +INSERT INTO `job_equip` (`job_equip_id`, `job_equip_job`, `job_equip_minrank`, `job_equip_name`, `job_equip_enabled`) VALUES + (8, 4, 1, 'Detective', 1); +INSERT INTO `job_equip` (`job_equip_id`, `job_equip_job`, `job_equip_minrank`, `job_equip_name`, `job_equip_enabled`) VALUES + (9, 1, 2, 'SWAT', 1); +INSERT INTO `job_equip` (`job_equip_id`, `job_equip_job`, `job_equip_minrank`, `job_equip_name`, `job_equip_enabled`) VALUES + (10, 2, 2, 'SWAT', 1); +INSERT INTO `job_equip` (`job_equip_id`, `job_equip_job`, `job_equip_minrank`, `job_equip_name`, `job_equip_enabled`) VALUES + (11, 3, 2, 'SWAT', 1); +INSERT INTO `job_equip` (`job_equip_id`, `job_equip_job`, `job_equip_minrank`, `job_equip_name`, `job_equip_enabled`) VALUES + (12, 4, 2, 'SWAT', 1); +INSERT INTO `job_equip` (`job_equip_id`, `job_equip_job`, `job_equip_minrank`, `job_equip_name`, `job_equip_enabled`) VALUES + (13, 1, 3, 'Supervisor', 1); +INSERT INTO `job_equip` (`job_equip_id`, `job_equip_job`, `job_equip_minrank`, `job_equip_name`, `job_equip_enabled`) VALUES + (14, 2, 3, 'Supervisor', 1); +INSERT INTO `job_equip` (`job_equip_id`, `job_equip_job`, `job_equip_minrank`, `job_equip_name`, `job_equip_enabled`) VALUES + (15, 3, 3, 'Supervisor', 1); +INSERT INTO `job_equip` (`job_equip_id`, `job_equip_job`, `job_equip_minrank`, `job_equip_name`, `job_equip_enabled`) VALUES + (16, 4, 3, 'Supervisor', 1); +INSERT INTO `job_equip` (`job_equip_id`, `job_equip_job`, `job_equip_minrank`, `job_equip_name`, `job_equip_enabled`) VALUES + (17, 9, 0, 'Firefighter', 1); +INSERT INTO `job_equip` (`job_equip_id`, `job_equip_job`, `job_equip_minrank`, `job_equip_name`, `job_equip_enabled`) VALUES + (18, 10, 0, 'Firefighter', 1); +INSERT INTO `job_equip` (`job_equip_id`, `job_equip_job`, `job_equip_minrank`, `job_equip_name`, `job_equip_enabled`) VALUES + (19, 11, 0, 'Firefighter', 1); +INSERT INTO `job_equip` (`job_equip_id`, `job_equip_job`, `job_equip_minrank`, `job_equip_name`, `job_equip_enabled`) VALUES + (20, 12, 0, 'Firefighter', 1); +/*!40000 ALTER TABLE `job_equip` ENABLE KEYS */; + +-- Dumping structure for table gtac_main.job_equip_item +CREATE TABLE IF NOT EXISTS `job_equip_item` ( + `job_equip_item_id` int(11) NOT NULL AUTO_INCREMENT, + `job_equip_item_equip` int(11) NOT NULL DEFAULT '0', + `job_equip_item_type` int(11) NOT NULL DEFAULT '0', + `job_equip_item_value` int(11) NOT NULL DEFAULT '0', + `job_equip_item_enabled` tinyint(1) NOT NULL DEFAULT '1', + PRIMARY KEY (`job_equip_item_id`) USING BTREE, + KEY `job_equip_item_equip` (`job_equip_item_equip`), + KEY `job_equip_item_type` (`job_equip_item_type`), + CONSTRAINT `fk_job_equip_item_equip` FOREIGN KEY (`job_equip_item_equip`) REFERENCES `job_equip` (`job_equip_id`) ON DELETE CASCADE ON UPDATE CASCADE, + CONSTRAINT `fk_job_equip_item_item` FOREIGN KEY (`job_equip_item_type`) REFERENCES `item_type` (`item_type_id`) ON DELETE CASCADE ON UPDATE CASCADE +) ENGINE=InnoDB AUTO_INCREMENT=40 DEFAULT CHARSET=utf8 COMMENT='Job Equipments - Items'; + +-- Dumping data for table gtac_main.job_equip_item: ~36 rows (approximately) +/*!40000 ALTER TABLE `job_equip_item` DISABLE KEYS */; +INSERT INTO `job_equip_item` (`job_equip_item_id`, `job_equip_item_equip`, `job_equip_item_type`, `job_equip_item_value`, `job_equip_item_enabled`) VALUES + (1, 1, 1, 1, 1); +INSERT INTO `job_equip_item` (`job_equip_item_id`, `job_equip_item_equip`, `job_equip_item_type`, `job_equip_item_value`, `job_equip_item_enabled`) VALUES + (2, 1, 5, 50, 1); +INSERT INTO `job_equip_item` (`job_equip_item_id`, `job_equip_item_equip`, `job_equip_item_type`, `job_equip_item_value`, `job_equip_item_enabled`) VALUES + (3, 1, 7, 20, 1); +INSERT INTO `job_equip_item` (`job_equip_item_id`, `job_equip_item_equip`, `job_equip_item_type`, `job_equip_item_value`, `job_equip_item_enabled`) VALUES + (4, 5, 5, 150, 1); +INSERT INTO `job_equip_item` (`job_equip_item_id`, `job_equip_item_equip`, `job_equip_item_type`, `job_equip_item_value`, `job_equip_item_enabled`) VALUES + (5, 9, 1, 1, 1); +INSERT INTO `job_equip_item` (`job_equip_item_id`, `job_equip_item_equip`, `job_equip_item_type`, `job_equip_item_value`, `job_equip_item_enabled`) VALUES + (6, 9, 5, 250, 1); +INSERT INTO `job_equip_item` (`job_equip_item_id`, `job_equip_item_equip`, `job_equip_item_type`, `job_equip_item_value`, `job_equip_item_enabled`) VALUES + (7, 9, 7, 50, 1); +INSERT INTO `job_equip_item` (`job_equip_item_id`, `job_equip_item_equip`, `job_equip_item_type`, `job_equip_item_value`, `job_equip_item_enabled`) VALUES + (8, 9, 9, 500, 1); +INSERT INTO `job_equip_item` (`job_equip_item_id`, `job_equip_item_equip`, `job_equip_item_type`, `job_equip_item_value`, `job_equip_item_enabled`) VALUES + (9, 9, 10, 15, 1); +INSERT INTO `job_equip_item` (`job_equip_item_id`, `job_equip_item_equip`, `job_equip_item_type`, `job_equip_item_value`, `job_equip_item_enabled`) VALUES + (10, 13, 1, 1, 1); +INSERT INTO `job_equip_item` (`job_equip_item_id`, `job_equip_item_equip`, `job_equip_item_type`, `job_equip_item_value`, `job_equip_item_enabled`) VALUES + (11, 13, 5, 50, 1); +INSERT INTO `job_equip_item` (`job_equip_item_id`, `job_equip_item_equip`, `job_equip_item_type`, `job_equip_item_value`, `job_equip_item_enabled`) VALUES + (12, 13, 6, 300, 1); +INSERT INTO `job_equip_item` (`job_equip_item_id`, `job_equip_item_equip`, `job_equip_item_type`, `job_equip_item_value`, `job_equip_item_enabled`) VALUES + (13, 13, 7, 50, 1); +INSERT INTO `job_equip_item` (`job_equip_item_id`, `job_equip_item_equip`, `job_equip_item_type`, `job_equip_item_value`, `job_equip_item_enabled`) VALUES + (14, 17, 46, 500, 1); +INSERT INTO `job_equip_item` (`job_equip_item_id`, `job_equip_item_equip`, `job_equip_item_type`, `job_equip_item_value`, `job_equip_item_enabled`) VALUES + (15, 17, 50, 1, 1); +INSERT INTO `job_equip_item` (`job_equip_item_id`, `job_equip_item_equip`, `job_equip_item_type`, `job_equip_item_value`, `job_equip_item_enabled`) VALUES + (16, 1, 58, 1, 1); +INSERT INTO `job_equip_item` (`job_equip_item_id`, `job_equip_item_equip`, `job_equip_item_type`, `job_equip_item_value`, `job_equip_item_enabled`) VALUES + (18, 4, 137, 1, 1); +INSERT INTO `job_equip_item` (`job_equip_item_id`, `job_equip_item_equip`, `job_equip_item_type`, `job_equip_item_value`, `job_equip_item_enabled`) VALUES + (19, 4, 153, 150, 1); +INSERT INTO `job_equip_item` (`job_equip_item_id`, `job_equip_item_equip`, `job_equip_item_type`, `job_equip_item_value`, `job_equip_item_enabled`) VALUES + (20, 4, 156, 20, 1); +INSERT INTO `job_equip_item` (`job_equip_item_id`, `job_equip_item_equip`, `job_equip_item_type`, `job_equip_item_value`, `job_equip_item_enabled`) VALUES + (21, 8, 155, 150, 1); +INSERT INTO `job_equip_item` (`job_equip_item_id`, `job_equip_item_equip`, `job_equip_item_type`, `job_equip_item_value`, `job_equip_item_enabled`) VALUES + (22, 8, 175, 50, 1); +INSERT INTO `job_equip_item` (`job_equip_item_id`, `job_equip_item_equip`, `job_equip_item_type`, `job_equip_item_value`, `job_equip_item_enabled`) VALUES + (23, 4, 208, 0, 1); +INSERT INTO `job_equip_item` (`job_equip_item_id`, `job_equip_item_equip`, `job_equip_item_type`, `job_equip_item_value`, `job_equip_item_enabled`) VALUES + (24, 4, 194, 1, 1); +INSERT INTO `job_equip_item` (`job_equip_item_id`, `job_equip_item_equip`, `job_equip_item_type`, `job_equip_item_value`, `job_equip_item_enabled`) VALUES + (25, 16, 155, 150, 1); +INSERT INTO `job_equip_item` (`job_equip_item_id`, `job_equip_item_equip`, `job_equip_item_type`, `job_equip_item_value`, `job_equip_item_enabled`) VALUES + (26, 16, 156, 20, 1); +INSERT INTO `job_equip_item` (`job_equip_item_id`, `job_equip_item_equip`, `job_equip_item_type`, `job_equip_item_value`, `job_equip_item_enabled`) VALUES + (27, 16, 160, 300, 1); +INSERT INTO `job_equip_item` (`job_equip_item_id`, `job_equip_item_equip`, `job_equip_item_type`, `job_equip_item_value`, `job_equip_item_enabled`) VALUES + (29, 12, 162, 500, 1); +INSERT INTO `job_equip_item` (`job_equip_item_id`, `job_equip_item_equip`, `job_equip_item_type`, `job_equip_item_value`, `job_equip_item_enabled`) VALUES + (30, 12, 165, 30, 1); +INSERT INTO `job_equip_item` (`job_equip_item_id`, `job_equip_item_equip`, `job_equip_item_type`, `job_equip_item_value`, `job_equip_item_enabled`) VALUES + (31, 16, 158, 100, 1); +INSERT INTO `job_equip_item` (`job_equip_item_id`, `job_equip_item_equip`, `job_equip_item_type`, `job_equip_item_value`, `job_equip_item_enabled`) VALUES + (32, 12, 151, 5, 1); +INSERT INTO `job_equip_item` (`job_equip_item_id`, `job_equip_item_equip`, `job_equip_item_type`, `job_equip_item_value`, `job_equip_item_enabled`) VALUES + (33, 20, 174, 99999, 1); +INSERT INTO `job_equip_item` (`job_equip_item_id`, `job_equip_item_equip`, `job_equip_item_type`, `job_equip_item_value`, `job_equip_item_enabled`) VALUES + (34, 8, 211, 1, 1); +INSERT INTO `job_equip_item` (`job_equip_item_id`, `job_equip_item_equip`, `job_equip_item_type`, `job_equip_item_value`, `job_equip_item_enabled`) VALUES + (35, 16, 211, 1, 1); +INSERT INTO `job_equip_item` (`job_equip_item_id`, `job_equip_item_equip`, `job_equip_item_type`, `job_equip_item_value`, `job_equip_item_enabled`) VALUES + (37, 4, 199, 5, 1); +INSERT INTO `job_equip_item` (`job_equip_item_id`, `job_equip_item_equip`, `job_equip_item_type`, `job_equip_item_value`, `job_equip_item_enabled`) VALUES + (38, 1, 41, 1, 1); +INSERT INTO `job_equip_item` (`job_equip_item_id`, `job_equip_item_equip`, `job_equip_item_type`, `job_equip_item_value`, `job_equip_item_enabled`) VALUES + (39, 1, 47, 5, 1); +/*!40000 ALTER TABLE `job_equip_item` ENABLE KEYS */; + +-- Dumping structure for table gtac_main.job_loc +CREATE TABLE IF NOT EXISTS `job_loc` ( + `job_loc_id` int(11) NOT NULL AUTO_INCREMENT, + `job_loc_job` int(11) NOT NULL DEFAULT '0', + `job_loc_pos_x` float NOT NULL DEFAULT '0', + `job_loc_pos_y` float NOT NULL DEFAULT '0', + `job_loc_pos_z` float NOT NULL DEFAULT '0', + `job_loc_enabled` float NOT NULL DEFAULT '0', + `job_loc_uniform` int(11) NOT NULL DEFAULT '0', + `job_loc_int` int(11) NOT NULL DEFAULT '0', + `job_loc_vw` int(11) NOT NULL DEFAULT '0', + PRIMARY KEY (`job_loc_id`), + KEY `job_loc_job` (`job_loc_job`), + CONSTRAINT `fk_job_loc_job` FOREIGN KEY (`job_loc_job`) REFERENCES `job_main` (`job_id`) ON DELETE CASCADE ON UPDATE CASCADE +) ENGINE=InnoDB AUTO_INCREMENT=61 DEFAULT CHARSET=utf8 COMMENT='Job - Locations'; + +-- Dumping data for table gtac_main.job_loc: ~51 rows (approximately) +/*!40000 ALTER TABLE `job_loc` DISABLE KEYS */; +INSERT INTO `job_loc` (`job_loc_id`, `job_loc_job`, `job_loc_pos_x`, `job_loc_pos_y`, `job_loc_pos_z`, `job_loc_enabled`, `job_loc_uniform`, `job_loc_int`, `job_loc_vw`) VALUES + (1, 1, 1143.87, -675.18, 14.97, 1, 1, 0, 0); +INSERT INTO `job_loc` (`job_loc_id`, `job_loc_job`, `job_loc_pos_x`, `job_loc_pos_y`, `job_loc_pos_z`, `job_loc_enabled`, `job_loc_uniform`, `job_loc_int`, `job_loc_vw`) VALUES + (3, 5, -1253, -138.18, 58.75, 1, 0, 0, 0); +INSERT INTO `job_loc` (`job_loc_id`, `job_loc_job`, `job_loc_pos_x`, `job_loc_pos_y`, `job_loc_pos_z`, `job_loc_enabled`, `job_loc_uniform`, `job_loc_int`, `job_loc_vw`) VALUES + (4, 2, 401.94, -482.55, 12.34, 1, 3, 12, 5326); +INSERT INTO `job_loc` (`job_loc_id`, `job_loc_job`, `job_loc_pos_x`, `job_loc_pos_y`, `job_loc_pos_z`, `job_loc_enabled`, `job_loc_uniform`, `job_loc_int`, `job_loc_vw`) VALUES + (5, 2, 508.96, 512.07, 12.1, 1, 3, 0, 0); +INSERT INTO `job_loc` (`job_loc_id`, `job_loc_job`, `job_loc_pos_x`, `job_loc_pos_y`, `job_loc_pos_z`, `job_loc_enabled`, `job_loc_uniform`, `job_loc_int`, `job_loc_vw`) VALUES + (6, 2, -657.43, 762.31, 11.59, 1, 3, 0, 0); +INSERT INTO `job_loc` (`job_loc_id`, `job_loc_job`, `job_loc_pos_x`, `job_loc_pos_y`, `job_loc_pos_z`, `job_loc_enabled`, `job_loc_uniform`, `job_loc_int`, `job_loc_vw`) VALUES + (7, 6, -885.08, -470.44, 13.11, 1, 0, 0, 0); +INSERT INTO `job_loc` (`job_loc_id`, `job_loc_job`, `job_loc_pos_x`, `job_loc_pos_y`, `job_loc_pos_z`, `job_loc_enabled`, `job_loc_uniform`, `job_loc_int`, `job_loc_vw`) VALUES + (8, 4, 254.38, 77.72, 1003.64, 1, 0, 6, 2); +INSERT INTO `job_loc` (`job_loc_id`, `job_loc_job`, `job_loc_pos_x`, `job_loc_pos_y`, `job_loc_pos_z`, `job_loc_enabled`, `job_loc_uniform`, `job_loc_int`, `job_loc_vw`) VALUES + (11, 5, 1144.25, -596.87, 14.97, 1, 0, 0, 0); +INSERT INTO `job_loc` (`job_loc_id`, `job_loc_job`, `job_loc_pos_x`, `job_loc_pos_y`, `job_loc_pos_z`, `job_loc_enabled`, `job_loc_uniform`, `job_loc_int`, `job_loc_vw`) VALUES + (12, 1, -1259.5, -44.5, 58.89, 1, 1, 0, 0); +INSERT INTO `job_loc` (`job_loc_id`, `job_loc_job`, `job_loc_pos_x`, `job_loc_pos_y`, `job_loc_pos_z`, `job_loc_enabled`, `job_loc_uniform`, `job_loc_int`, `job_loc_vw`) VALUES + (13, 5, 183.5, -17.75, 16.21, 1, 0, 0, 0); +INSERT INTO `job_loc` (`job_loc_id`, `job_loc_job`, `job_loc_pos_x`, `job_loc_pos_y`, `job_loc_pos_z`, `job_loc_enabled`, `job_loc_uniform`, `job_loc_int`, `job_loc_vw`) VALUES + (14, 9, 1103.7, -52.45, 7.49, 1, 0, 0, 0); +INSERT INTO `job_loc` (`job_loc_id`, `job_loc_job`, `job_loc_pos_x`, `job_loc_pos_y`, `job_loc_pos_z`, `job_loc_enabled`, `job_loc_uniform`, `job_loc_int`, `job_loc_vw`) VALUES + (15, 9, -78.48, -436.8, 16.17, 1, 0, 0, 0); +INSERT INTO `job_loc` (`job_loc_id`, `job_loc_job`, `job_loc_pos_x`, `job_loc_pos_y`, `job_loc_pos_z`, `job_loc_enabled`, `job_loc_uniform`, `job_loc_int`, `job_loc_vw`) VALUES + (16, 9, -1202.1, -14.67, 53.2, 1, 0, 0, 0); +INSERT INTO `job_loc` (`job_loc_id`, `job_loc_job`, `job_loc_pos_x`, `job_loc_pos_y`, `job_loc_pos_z`, `job_loc_enabled`, `job_loc_uniform`, `job_loc_int`, `job_loc_vw`) VALUES + (17, 13, 1229.2, -740.1, 15.17, 1, 0, 0, 0); +INSERT INTO `job_loc` (`job_loc_id`, `job_loc_job`, `job_loc_pos_x`, `job_loc_pos_y`, `job_loc_pos_z`, `job_loc_enabled`, `job_loc_uniform`, `job_loc_int`, `job_loc_vw`) VALUES + (18, 17, -57.1661, -334.266, 16.9324, 1, 0, 0, 0); +INSERT INTO `job_loc` (`job_loc_id`, `job_loc_job`, `job_loc_pos_x`, `job_loc_pos_y`, `job_loc_pos_z`, `job_loc_enabled`, `job_loc_uniform`, `job_loc_int`, `job_loc_vw`) VALUES + (19, 17, 0, 0, 0, 1, 0, 0, 0); +INSERT INTO `job_loc` (`job_loc_id`, `job_loc_job`, `job_loc_pos_x`, `job_loc_pos_y`, `job_loc_pos_z`, `job_loc_enabled`, `job_loc_uniform`, `job_loc_int`, `job_loc_vw`) VALUES + (20, 17, 1310.2, -1016.3, 14.88, 1, 0, 0, 0); +INSERT INTO `job_loc` (`job_loc_id`, `job_loc_job`, `job_loc_pos_x`, `job_loc_pos_y`, `job_loc_pos_z`, `job_loc_enabled`, `job_loc_uniform`, `job_loc_int`, `job_loc_vw`) VALUES + (21, 21, -66.8, -932.2, 16.47, 1, 0, 0, 0); +INSERT INTO `job_loc` (`job_loc_id`, `job_loc_job`, `job_loc_pos_x`, `job_loc_pos_y`, `job_loc_pos_z`, `job_loc_enabled`, `job_loc_uniform`, `job_loc_int`, `job_loc_vw`) VALUES + (22, 21, 1121.8, 27.8, 1.99, 1, 0, 0, 0); +INSERT INTO `job_loc` (`job_loc_id`, `job_loc_job`, `job_loc_pos_x`, `job_loc_pos_y`, `job_loc_pos_z`, `job_loc_enabled`, `job_loc_uniform`, `job_loc_int`, `job_loc_vw`) VALUES + (23, 3, 894.99, -357.39, 18.185, 1, 0, 0, 0); +INSERT INTO `job_loc` (`job_loc_id`, `job_loc_job`, `job_loc_pos_x`, `job_loc_pos_y`, `job_loc_pos_z`, `job_loc_enabled`, `job_loc_uniform`, `job_loc_int`, `job_loc_vw`) VALUES + (24, 3, 435.4, 1592.29, 17.353, 1, 0, 0, 0); +INSERT INTO `job_loc` (`job_loc_id`, `job_loc_job`, `job_loc_pos_x`, `job_loc_pos_y`, `job_loc_pos_z`, `job_loc_enabled`, `job_loc_uniform`, `job_loc_int`, `job_loc_vw`) VALUES + (25, 3, 974.93, 1870.45, 23.073, 1, 0, 0, 0); +INSERT INTO `job_loc` (`job_loc_id`, `job_loc_job`, `job_loc_pos_x`, `job_loc_pos_y`, `job_loc_pos_z`, `job_loc_enabled`, `job_loc_uniform`, `job_loc_int`, `job_loc_vw`) VALUES + (26, 3, 1233.25, -89.13, 28.034, 1, 0, 0, 0); +INSERT INTO `job_loc` (`job_loc_id`, `job_loc_job`, `job_loc_pos_x`, `job_loc_pos_y`, `job_loc_pos_z`, `job_loc_enabled`, `job_loc_uniform`, `job_loc_int`, `job_loc_vw`) VALUES + (27, 3, 50.12, 679.88, 15.316, 1, 0, 0, 0); +INSERT INTO `job_loc` (`job_loc_id`, `job_loc_job`, `job_loc_pos_x`, `job_loc_pos_y`, `job_loc_pos_z`, `job_loc_enabled`, `job_loc_uniform`, `job_loc_int`, `job_loc_vw`) VALUES + (28, 3, 85.21, 1189.82, 14.755, 1, 0, 0, 0); +INSERT INTO `job_loc` (`job_loc_id`, `job_loc_job`, `job_loc_pos_x`, `job_loc_pos_y`, `job_loc_pos_z`, `job_loc_enabled`, `job_loc_uniform`, `job_loc_int`, `job_loc_vw`) VALUES + (29, 3, 2170.87, 448.87, 6.085, 1, 0, 0, 0); +INSERT INTO `job_loc` (`job_loc_id`, `job_loc_job`, `job_loc_pos_x`, `job_loc_pos_y`, `job_loc_pos_z`, `job_loc_enabled`, `job_loc_uniform`, `job_loc_int`, `job_loc_vw`) VALUES + (30, 3, 213.12, -211.7, 10.752, 1, 0, 0, 0); +INSERT INTO `job_loc` (`job_loc_id`, `job_loc_job`, `job_loc_pos_x`, `job_loc_pos_y`, `job_loc_pos_z`, `job_loc_enabled`, `job_loc_uniform`, `job_loc_int`, `job_loc_vw`) VALUES + (31, 3, -1714.95, 276.31, 22.134, 1, 0, 0, 0); +INSERT INTO `job_loc` (`job_loc_id`, `job_loc_job`, `job_loc_pos_x`, `job_loc_pos_y`, `job_loc_pos_z`, `job_loc_enabled`, `job_loc_uniform`, `job_loc_int`, `job_loc_vw`) VALUES + (32, 3, -1220.73, -231.53, 3.024, 1, 0, 0, 0); +INSERT INTO `job_loc` (`job_loc_id`, `job_loc_job`, `job_loc_pos_x`, `job_loc_pos_y`, `job_loc_pos_z`, `job_loc_enabled`, `job_loc_uniform`, `job_loc_int`, `job_loc_vw`) VALUES + (33, 3, -927.66, 1263.63, 24.587, 1, 0, 0, 0); +INSERT INTO `job_loc` (`job_loc_id`, `job_loc_job`, `job_loc_pos_x`, `job_loc_pos_y`, `job_loc_pos_z`, `job_loc_enabled`, `job_loc_uniform`, `job_loc_int`, `job_loc_vw`) VALUES + (34, 6, -826.06, 1144.41, 12.41, 1, 0, 0, 0); +INSERT INTO `job_loc` (`job_loc_id`, `job_loc_job`, `job_loc_pos_x`, `job_loc_pos_y`, `job_loc_pos_z`, `job_loc_enabled`, `job_loc_uniform`, `job_loc_int`, `job_loc_vw`) VALUES + (35, 2, 401.94, -482.55, 12.34, 1, 3, 12, 5291); +INSERT INTO `job_loc` (`job_loc_id`, `job_loc_job`, `job_loc_pos_x`, `job_loc_pos_y`, `job_loc_pos_z`, `job_loc_enabled`, `job_loc_uniform`, `job_loc_int`, `job_loc_vw`) VALUES + (36, 10, -698.22, 942.38, 11.08, 1, 0, 0, 0); +INSERT INTO `job_loc` (`job_loc_id`, `job_loc_job`, `job_loc_pos_x`, `job_loc_pos_y`, `job_loc_pos_z`, `job_loc_enabled`, `job_loc_uniform`, `job_loc_int`, `job_loc_vw`) VALUES + (37, 18, -1146.06, -285.65, 11.2, 1, 0, 0, 0); +INSERT INTO `job_loc` (`job_loc_id`, `job_loc_job`, `job_loc_pos_x`, `job_loc_pos_y`, `job_loc_pos_z`, `job_loc_enabled`, `job_loc_uniform`, `job_loc_int`, `job_loc_vw`) VALUES + (38, 14, -994.88, 185.1, 12.43, 1, 0, 0, 0); +INSERT INTO `job_loc` (`job_loc_id`, `job_loc_job`, `job_loc_pos_x`, `job_loc_pos_y`, `job_loc_pos_z`, `job_loc_enabled`, `job_loc_uniform`, `job_loc_int`, `job_loc_vw`) VALUES + (39, 6, 493.14, 709.31, 11.8, 1, 0, 0, 0); +INSERT INTO `job_loc` (`job_loc_id`, `job_loc_job`, `job_loc_pos_x`, `job_loc_pos_y`, `job_loc_pos_z`, `job_loc_enabled`, `job_loc_uniform`, `job_loc_int`, `job_loc_vw`) VALUES + (40, 22, -1264.42, 6.05, 11.45, 1, 0, 0, 0); +INSERT INTO `job_loc` (`job_loc_id`, `job_loc_job`, `job_loc_pos_x`, `job_loc_pos_y`, `job_loc_pos_z`, `job_loc_enabled`, `job_loc_uniform`, `job_loc_int`, `job_loc_vw`) VALUES + (41, 8, 1172.96, -1323.42, 15.4, 1, 0, 0, 0); +INSERT INTO `job_loc` (`job_loc_id`, `job_loc_job`, `job_loc_pos_x`, `job_loc_pos_y`, `job_loc_pos_z`, `job_loc_enabled`, `job_loc_uniform`, `job_loc_int`, `job_loc_vw`) VALUES + (42, 8, 2034.04, -1405.07, 17.24, 1, 0, 0, 0); +INSERT INTO `job_loc` (`job_loc_id`, `job_loc_job`, `job_loc_pos_x`, `job_loc_pos_y`, `job_loc_pos_z`, `job_loc_enabled`, `job_loc_uniform`, `job_loc_int`, `job_loc_vw`) VALUES + (43, 24, 2309.22, -2088.32, 13.55, 1, 0, 0, 0); +INSERT INTO `job_loc` (`job_loc_id`, `job_loc_job`, `job_loc_pos_x`, `job_loc_pos_y`, `job_loc_pos_z`, `job_loc_enabled`, `job_loc_uniform`, `job_loc_int`, `job_loc_vw`) VALUES + (44, 20, 1765.89, -1885.48, 13.55, 1, 0, 0, 0); +INSERT INTO `job_loc` (`job_loc_id`, `job_loc_job`, `job_loc_pos_x`, `job_loc_pos_y`, `job_loc_pos_z`, `job_loc_enabled`, `job_loc_uniform`, `job_loc_int`, `job_loc_vw`) VALUES + (45, 16, 1808.64, -1938.58, 13.55, 1, 0, 0, 0); +INSERT INTO `job_loc` (`job_loc_id`, `job_loc_job`, `job_loc_pos_x`, `job_loc_pos_y`, `job_loc_pos_z`, `job_loc_enabled`, `job_loc_uniform`, `job_loc_int`, `job_loc_vw`) VALUES + (46, 12, 1133.7, -1312.92, 13.58, 1, 0, 0, 0); +INSERT INTO `job_loc` (`job_loc_id`, `job_loc_job`, `job_loc_pos_x`, `job_loc_pos_y`, `job_loc_pos_z`, `job_loc_enabled`, `job_loc_uniform`, `job_loc_int`, `job_loc_vw`) VALUES + (47, 4, 2290.49, 2430.09, 10.82, 1, 0, 0, 0); +INSERT INTO `job_loc` (`job_loc_id`, `job_loc_job`, `job_loc_pos_x`, `job_loc_pos_y`, `job_loc_pos_z`, `job_loc_enabled`, `job_loc_uniform`, `job_loc_int`, `job_loc_vw`) VALUES + (48, 12, 1744.95, 2082.8, 10.82, 1, 0, 0, 0); +INSERT INTO `job_loc` (`job_loc_id`, `job_loc_job`, `job_loc_pos_x`, `job_loc_pos_y`, `job_loc_pos_z`, `job_loc_enabled`, `job_loc_uniform`, `job_loc_int`, `job_loc_vw`) VALUES + (49, 4, -1605.38, 711.5, 13.87, 1, 0, 0, 0); +INSERT INTO `job_loc` (`job_loc_id`, `job_loc_job`, `job_loc_pos_x`, `job_loc_pos_y`, `job_loc_pos_z`, `job_loc_enabled`, `job_loc_uniform`, `job_loc_int`, `job_loc_vw`) VALUES + (50, 8, -2655.15, 638.72, 14.45, 1, 0, 0, 0); +INSERT INTO `job_loc` (`job_loc_id`, `job_loc_job`, `job_loc_pos_x`, `job_loc_pos_y`, `job_loc_pos_z`, `job_loc_enabled`, `job_loc_uniform`, `job_loc_int`, `job_loc_vw`) VALUES + (51, 12, -2026.34, 67.17, 28.69, 1, 0, 0, 0); +INSERT INTO `job_loc` (`job_loc_id`, `job_loc_job`, `job_loc_pos_x`, `job_loc_pos_y`, `job_loc_pos_z`, `job_loc_enabled`, `job_loc_uniform`, `job_loc_int`, `job_loc_vw`) VALUES + (52, 17, -1130.99, -177.76, 43.72, 1, 0, 0, 0); +INSERT INTO `job_loc` (`job_loc_id`, `job_loc_job`, `job_loc_pos_x`, `job_loc_pos_y`, `job_loc_pos_z`, `job_loc_enabled`, `job_loc_uniform`, `job_loc_int`, `job_loc_vw`) VALUES + (53, 1, 345.588, -1122.58, 25.9809, 1, 0, 0, 0); +INSERT INTO `job_loc` (`job_loc_id`, `job_loc_job`, `job_loc_pos_x`, `job_loc_pos_y`, `job_loc_pos_z`, `job_loc_enabled`, `job_loc_uniform`, `job_loc_int`, `job_loc_vw`) VALUES + (60, 4, 254.643, 77.1645, 1003.64, 1, 0, 6, 5230); +/*!40000 ALTER TABLE `job_loc` ENABLE KEYS */; + +-- Dumping structure for table gtac_main.job_main +CREATE TABLE IF NOT EXISTS `job_main` ( + `job_id` int(11) NOT NULL AUTO_INCREMENT, + `job_server` int(11) NOT NULL DEFAULT '0', + `job_enabled` int(11) NOT NULL DEFAULT '1', + `job_name` varchar(50) NOT NULL DEFAULT 'Unnamed', + `job_pickup` int(11) NOT NULL DEFAULT '0', + `job_type` int(11) NOT NULL DEFAULT '0', + `job_blip` int(11) NOT NULL DEFAULT '0', + `job_colour_r` int(11) NOT NULL DEFAULT '255', + `job_colour_g` int(11) NOT NULL DEFAULT '255', + `job_colour_b` int(11) NOT NULL DEFAULT '255', + `job_whitelist` tinyint(1) NOT NULL DEFAULT '0', + `job_blacklist` tinyint(1) NOT NULL DEFAULT '0', + `job_walkietalkiefreq` int(11) NOT NULL DEFAULT '5000', + PRIMARY KEY (`job_id`), + KEY `job_server` (`job_server`), + CONSTRAINT `fk_job_server` FOREIGN KEY (`job_server`) REFERENCES `svr_main` (`svr_id`) ON DELETE CASCADE ON UPDATE CASCADE +) ENGINE=InnoDB AUTO_INCREMENT=25 DEFAULT CHARSET=utf8 COMMENT='Jobs'; + +-- Dumping data for table gtac_main.job_main: ~24 rows (approximately) +/*!40000 ALTER TABLE `job_main` DISABLE KEYS */; +INSERT INTO `job_main` (`job_id`, `job_server`, `job_enabled`, `job_name`, `job_pickup`, `job_type`, `job_blip`, `job_colour_r`, `job_colour_g`, `job_colour_b`, `job_whitelist`, `job_blacklist`, `job_walkietalkiefreq`) VALUES + (1, 1, 1, 'Police', 1383, 1, 0, 70, 150, 200, 0, 0, 268500); +INSERT INTO `job_main` (`job_id`, `job_server`, `job_enabled`, `job_name`, `job_pickup`, `job_type`, `job_blip`, `job_colour_r`, `job_colour_g`, `job_colour_b`, `job_whitelist`, `job_blacklist`, `job_walkietalkiefreq`) VALUES + (2, 2, 1, 'Police', 375, 1, 0, 70, 130, 180, 0, 0, 233400); +INSERT INTO `job_main` (`job_id`, `job_server`, `job_enabled`, `job_name`, `job_pickup`, `job_type`, `job_blip`, `job_colour_r`, `job_colour_g`, `job_colour_b`, `job_whitelist`, `job_blacklist`, `job_walkietalkiefreq`) VALUES + (3, 3, 1, 'Police', 0, 1, 0, 70, 130, 180, 0, 0, 656700); +INSERT INTO `job_main` (`job_id`, `job_server`, `job_enabled`, `job_name`, `job_pickup`, `job_type`, `job_blip`, `job_colour_r`, `job_colour_g`, `job_colour_b`, `job_whitelist`, `job_blacklist`, `job_walkietalkiefreq`) VALUES + (4, 4, 1, 'Police', 1247, 1, 30, 70, 130, 180, 0, 0, 788500); +INSERT INTO `job_main` (`job_id`, `job_server`, `job_enabled`, `job_name`, `job_pickup`, `job_type`, `job_blip`, `job_colour_r`, `job_colour_g`, `job_colour_b`, `job_whitelist`, `job_blacklist`, `job_walkietalkiefreq`) VALUES + (5, 1, 1, 'Paramedic', 1362, 2, 0, 219, 112, 147, 0, 0, 696500); +INSERT INTO `job_main` (`job_id`, `job_server`, `job_enabled`, `job_name`, `job_pickup`, `job_type`, `job_blip`, `job_colour_r`, `job_colour_g`, `job_colour_b`, `job_whitelist`, `job_blacklist`, `job_walkietalkiefreq`) VALUES + (6, 2, 1, 'Paramedic', 366, 2, 0, 219, 112, 147, 0, 0, 466500); +INSERT INTO `job_main` (`job_id`, `job_server`, `job_enabled`, `job_name`, `job_pickup`, `job_type`, `job_blip`, `job_colour_r`, `job_colour_g`, `job_colour_b`, `job_whitelist`, `job_blacklist`, `job_walkietalkiefreq`) VALUES + (7, 3, 1, 'Paramedic', 0, 2, 0, 219, 112, 147, 0, 0, 855700); +INSERT INTO `job_main` (`job_id`, `job_server`, `job_enabled`, `job_name`, `job_pickup`, `job_type`, `job_blip`, `job_colour_r`, `job_colour_g`, `job_colour_b`, `job_whitelist`, `job_blacklist`, `job_walkietalkiefreq`) VALUES + (8, 4, 1, 'Paramedic', 1240, 2, 22, 219, 112, 147, 0, 0, 239800); +INSERT INTO `job_main` (`job_id`, `job_server`, `job_enabled`, `job_name`, `job_pickup`, `job_type`, `job_blip`, `job_colour_r`, `job_colour_g`, `job_colour_b`, `job_whitelist`, `job_blacklist`, `job_walkietalkiefreq`) VALUES + (9, 1, 1, 'Firefighter', 1364, 3, 0, 205, 92, 92, 0, 0, 0); +INSERT INTO `job_main` (`job_id`, `job_server`, `job_enabled`, `job_name`, `job_pickup`, `job_type`, `job_blip`, `job_colour_r`, `job_colour_g`, `job_colour_b`, `job_whitelist`, `job_blacklist`, `job_walkietalkiefreq`) VALUES + (10, 2, 1, 'Firefighter', 365, 3, 0, 205, 92, 92, 0, 0, 0); +INSERT INTO `job_main` (`job_id`, `job_server`, `job_enabled`, `job_name`, `job_pickup`, `job_type`, `job_blip`, `job_colour_r`, `job_colour_g`, `job_colour_b`, `job_whitelist`, `job_blacklist`, `job_walkietalkiefreq`) VALUES + (11, 3, 1, 'Firefighter', 0, 3, 0, 205, 92, 92, 0, 0, 0); +INSERT INTO `job_main` (`job_id`, `job_server`, `job_enabled`, `job_name`, `job_pickup`, `job_type`, `job_blip`, `job_colour_r`, `job_colour_g`, `job_colour_b`, `job_whitelist`, `job_blacklist`, `job_walkietalkiefreq`) VALUES + (12, 4, 1, 'Firefighter', 1318, 3, 20, 205, 92, 92, 0, 0, 0); +INSERT INTO `job_main` (`job_id`, `job_server`, `job_enabled`, `job_name`, `job_pickup`, `job_type`, `job_blip`, `job_colour_r`, `job_colour_g`, `job_colour_b`, `job_whitelist`, `job_blacklist`, `job_walkietalkiefreq`) VALUES + (13, 1, 1, 'Taxi Driver', 1361, 5, 0, 240, 230, 140, 0, 0, 0); +INSERT INTO `job_main` (`job_id`, `job_server`, `job_enabled`, `job_name`, `job_pickup`, `job_type`, `job_blip`, `job_colour_r`, `job_colour_g`, `job_colour_b`, `job_whitelist`, `job_blacklist`, `job_walkietalkiefreq`) VALUES + (14, 2, 1, 'Taxi Driver', 365, 5, 0, 240, 230, 140, 0, 0, 0); +INSERT INTO `job_main` (`job_id`, `job_server`, `job_enabled`, `job_name`, `job_pickup`, `job_type`, `job_blip`, `job_colour_r`, `job_colour_g`, `job_colour_b`, `job_whitelist`, `job_blacklist`, `job_walkietalkiefreq`) VALUES + (15, 3, 1, 'Taxi Driver', 0, 5, 0, 240, 230, 140, 0, 0, 0); +INSERT INTO `job_main` (`job_id`, `job_server`, `job_enabled`, `job_name`, `job_pickup`, `job_type`, `job_blip`, `job_colour_r`, `job_colour_g`, `job_colour_b`, `job_whitelist`, `job_blacklist`, `job_walkietalkiefreq`) VALUES + (16, 4, 1, 'Taxi Driver', 1318, 5, 0, 240, 230, 140, 0, 0, 0); +INSERT INTO `job_main` (`job_id`, `job_server`, `job_enabled`, `job_name`, `job_pickup`, `job_type`, `job_blip`, `job_colour_r`, `job_colour_g`, `job_colour_b`, `job_whitelist`, `job_blacklist`, `job_walkietalkiefreq`) VALUES + (17, 1, 1, 'Bus Driver', 1361, 4, 0, 50, 205, 50, 0, 0, 0); +INSERT INTO `job_main` (`job_id`, `job_server`, `job_enabled`, `job_name`, `job_pickup`, `job_type`, `job_blip`, `job_colour_r`, `job_colour_g`, `job_colour_b`, `job_whitelist`, `job_blacklist`, `job_walkietalkiefreq`) VALUES + (18, 2, 1, 'Bus Driver', 365, 4, 0, 50, 205, 50, 0, 0, 0); +INSERT INTO `job_main` (`job_id`, `job_server`, `job_enabled`, `job_name`, `job_pickup`, `job_type`, `job_blip`, `job_colour_r`, `job_colour_g`, `job_colour_b`, `job_whitelist`, `job_blacklist`, `job_walkietalkiefreq`) VALUES + (19, 3, 1, 'Bus Driver', 0, 4, 0, 50, 205, 50, 0, 0, 0); +INSERT INTO `job_main` (`job_id`, `job_server`, `job_enabled`, `job_name`, `job_pickup`, `job_type`, `job_blip`, `job_colour_r`, `job_colour_g`, `job_colour_b`, `job_whitelist`, `job_blacklist`, `job_walkietalkiefreq`) VALUES + (20, 4, 1, 'Bus Driver', 1318, 4, 0, 50, 205, 50, 0, 0, 0); +INSERT INTO `job_main` (`job_id`, `job_server`, `job_enabled`, `job_name`, `job_pickup`, `job_type`, `job_blip`, `job_colour_r`, `job_colour_g`, `job_colour_b`, `job_whitelist`, `job_blacklist`, `job_walkietalkiefreq`) VALUES + (21, 1, 1, 'Trash Collector', 1351, 6, 0, 150, 150, 150, 0, 0, 0); +INSERT INTO `job_main` (`job_id`, `job_server`, `job_enabled`, `job_name`, `job_pickup`, `job_type`, `job_blip`, `job_colour_r`, `job_colour_g`, `job_colour_b`, `job_whitelist`, `job_blacklist`, `job_walkietalkiefreq`) VALUES + (22, 2, 1, 'Trash Collector', 365, 6, 0, 150, 150, 150, 0, 0, 0); +INSERT INTO `job_main` (`job_id`, `job_server`, `job_enabled`, `job_name`, `job_pickup`, `job_type`, `job_blip`, `job_colour_r`, `job_colour_g`, `job_colour_b`, `job_whitelist`, `job_blacklist`, `job_walkietalkiefreq`) VALUES + (23, 3, 1, 'Trash Collector', 0, 6, 0, 150, 150, 150, 0, 0, 0); +INSERT INTO `job_main` (`job_id`, `job_server`, `job_enabled`, `job_name`, `job_pickup`, `job_type`, `job_blip`, `job_colour_r`, `job_colour_g`, `job_colour_b`, `job_whitelist`, `job_blacklist`, `job_walkietalkiefreq`) VALUES + (24, 4, 1, 'Trash Collector', 1318, 6, 0, 150, 150, 150, 0, 0, 0); +/*!40000 ALTER TABLE `job_main` ENABLE KEYS */; + +-- Dumping structure for table gtac_main.job_uniform +CREATE TABLE IF NOT EXISTS `job_uniform` ( + `job_uniform_id` int(11) NOT NULL AUTO_INCREMENT, + `job_uniform_job` int(11) NOT NULL DEFAULT '0', + `job_uniform_skin` int(11) NOT NULL DEFAULT '0', + `job_uniform_enabled` tinyint(1) NOT NULL DEFAULT '0', + `job_uniform_minrank` int(11) NOT NULL DEFAULT '0', + `job_uniform_name` varchar(50) NOT NULL DEFAULT 'Unnamed', + PRIMARY KEY (`job_uniform_id`), + KEY `job_uniform_job` (`job_uniform_job`), + CONSTRAINT `fk_job_uniform_job` FOREIGN KEY (`job_uniform_job`) REFERENCES `job_main` (`job_id`) ON DELETE CASCADE ON UPDATE CASCADE +) ENGINE=InnoDB AUTO_INCREMENT=62 DEFAULT CHARSET=utf8 COMMENT='Jobs - Uniforms'; + +-- Dumping data for table gtac_main.job_uniform: ~60 rows (approximately) +/*!40000 ALTER TABLE `job_uniform` DISABLE KEYS */; +INSERT INTO `job_uniform` (`job_uniform_id`, `job_uniform_job`, `job_uniform_skin`, `job_uniform_enabled`, `job_uniform_minrank`, `job_uniform_name`) VALUES + (1, 1, 1, 1, 0, 'Police Officer 1'); +INSERT INTO `job_uniform` (`job_uniform_id`, `job_uniform_job`, `job_uniform_skin`, `job_uniform_enabled`, `job_uniform_minrank`, `job_uniform_name`) VALUES + (2, 1, 92, 1, 0, 'Police Officer 2'); +INSERT INTO `job_uniform` (`job_uniform_id`, `job_uniform_job`, `job_uniform_skin`, `job_uniform_enabled`, `job_uniform_minrank`, `job_uniform_name`) VALUES + (3, 2, 1, 1, 0, 'Police Officer 1'); +INSERT INTO `job_uniform` (`job_uniform_id`, `job_uniform_job`, `job_uniform_skin`, `job_uniform_enabled`, `job_uniform_minrank`, `job_uniform_name`) VALUES + (4, 2, 120, 1, 0, 'Officer Lance Vance'); +INSERT INTO `job_uniform` (`job_uniform_id`, `job_uniform_job`, `job_uniform_skin`, `job_uniform_enabled`, `job_uniform_minrank`, `job_uniform_name`) VALUES + (5, 2, 97, 1, 1, 'Detective 1'); +INSERT INTO `job_uniform` (`job_uniform_id`, `job_uniform_job`, `job_uniform_skin`, `job_uniform_enabled`, `job_uniform_minrank`, `job_uniform_name`) VALUES + (6, 2, 98, 1, 1, 'Detective 2'); +INSERT INTO `job_uniform` (`job_uniform_id`, `job_uniform_job`, `job_uniform_skin`, `job_uniform_enabled`, `job_uniform_minrank`, `job_uniform_name`) VALUES + (7, 2, 99, 1, 1, 'Detective 3'); +INSERT INTO `job_uniform` (`job_uniform_id`, `job_uniform_job`, `job_uniform_skin`, `job_uniform_enabled`, `job_uniform_minrank`, `job_uniform_name`) VALUES + (8, 2, 100, 1, 1, 'Detective 4'); +INSERT INTO `job_uniform` (`job_uniform_id`, `job_uniform_job`, `job_uniform_skin`, `job_uniform_enabled`, `job_uniform_minrank`, `job_uniform_name`) VALUES + (9, 2, 101, 1, 1, 'Detective 5'); +INSERT INTO `job_uniform` (`job_uniform_id`, `job_uniform_job`, `job_uniform_skin`, `job_uniform_enabled`, `job_uniform_minrank`, `job_uniform_name`) VALUES + (10, 2, 102, 1, 1, 'Detective 6'); +INSERT INTO `job_uniform` (`job_uniform_id`, `job_uniform_job`, `job_uniform_skin`, `job_uniform_enabled`, `job_uniform_minrank`, `job_uniform_name`) VALUES + (11, 4, 280, 1, 0, 'Los Santos Police Officer'); +INSERT INTO `job_uniform` (`job_uniform_id`, `job_uniform_job`, `job_uniform_skin`, `job_uniform_enabled`, `job_uniform_minrank`, `job_uniform_name`) VALUES + (12, 4, 281, 1, 0, 'San Fierro Police Officer'); +INSERT INTO `job_uniform` (`job_uniform_id`, `job_uniform_job`, `job_uniform_skin`, `job_uniform_enabled`, `job_uniform_minrank`, `job_uniform_name`) VALUES + (13, 4, 282, 1, 0, 'Las Venturas Police Officer'); +INSERT INTO `job_uniform` (`job_uniform_id`, `job_uniform_job`, `job_uniform_skin`, `job_uniform_enabled`, `job_uniform_minrank`, `job_uniform_name`) VALUES + (14, 4, 284, 1, 0, 'Motorcycle Cop'); +INSERT INTO `job_uniform` (`job_uniform_id`, `job_uniform_job`, `job_uniform_skin`, `job_uniform_enabled`, `job_uniform_minrank`, `job_uniform_name`) VALUES + (15, 4, 165, 1, 0, 'Detective 1'); +INSERT INTO `job_uniform` (`job_uniform_id`, `job_uniform_job`, `job_uniform_skin`, `job_uniform_enabled`, `job_uniform_minrank`, `job_uniform_name`) VALUES + (16, 4, 166, 1, 0, 'Detective 2'); +INSERT INTO `job_uniform` (`job_uniform_id`, `job_uniform_job`, `job_uniform_skin`, `job_uniform_enabled`, `job_uniform_minrank`, `job_uniform_name`) VALUES + (17, 4, 285, 1, 2, 'SWAT'); +INSERT INTO `job_uniform` (`job_uniform_id`, `job_uniform_job`, `job_uniform_skin`, `job_uniform_enabled`, `job_uniform_minrank`, `job_uniform_name`) VALUES + (18, 4, 283, 1, 3, 'Sheriff 1'); +INSERT INTO `job_uniform` (`job_uniform_id`, `job_uniform_job`, `job_uniform_skin`, `job_uniform_enabled`, `job_uniform_minrank`, `job_uniform_name`) VALUES + (19, 4, 288, 1, 3, 'Sheriff 2'); +INSERT INTO `job_uniform` (`job_uniform_id`, `job_uniform_job`, `job_uniform_skin`, `job_uniform_enabled`, `job_uniform_minrank`, `job_uniform_name`) VALUES + (20, 4, 265, 1, 0, 'Officer Frank Tenpenny'); +INSERT INTO `job_uniform` (`job_uniform_id`, `job_uniform_job`, `job_uniform_skin`, `job_uniform_enabled`, `job_uniform_minrank`, `job_uniform_name`) VALUES + (21, 4, 266, 1, 0, 'Officer Eddie Pulaski'); +INSERT INTO `job_uniform` (`job_uniform_id`, `job_uniform_job`, `job_uniform_skin`, `job_uniform_enabled`, `job_uniform_minrank`, `job_uniform_name`) VALUES + (22, 4, 267, 1, 0, 'Officer Jimmy Hernandez'); +INSERT INTO `job_uniform` (`job_uniform_id`, `job_uniform_job`, `job_uniform_skin`, `job_uniform_enabled`, `job_uniform_minrank`, `job_uniform_name`) VALUES + (23, 3, -183203150, 1, 0, 'Police Officer 1'); +INSERT INTO `job_uniform` (`job_uniform_id`, `job_uniform_job`, `job_uniform_skin`, `job_uniform_enabled`, `job_uniform_minrank`, `job_uniform_name`) VALUES + (24, 3, -1518937979, 1, 0, 'Police Officer 2'); +INSERT INTO `job_uniform` (`job_uniform_id`, `job_uniform_job`, `job_uniform_skin`, `job_uniform_enabled`, `job_uniform_minrank`, `job_uniform_name`) VALUES + (25, 3, -370395528, 1, 0, 'Fat Police Officer'); +INSERT INTO `job_uniform` (`job_uniform_id`, `job_uniform_job`, `job_uniform_skin`, `job_uniform_enabled`, `job_uniform_minrank`, `job_uniform_name`) VALUES + (26, 3, -999506922, 1, 1, 'Detective 1'); +INSERT INTO `job_uniform` (`job_uniform_id`, `job_uniform_job`, `job_uniform_skin`, `job_uniform_enabled`, `job_uniform_minrank`, `job_uniform_name`) VALUES + (27, 5, 5, 1, 0, 'Paramedic 1'); +INSERT INTO `job_uniform` (`job_uniform_id`, `job_uniform_job`, `job_uniform_skin`, `job_uniform_enabled`, `job_uniform_minrank`, `job_uniform_name`) VALUES + (28, 5, 72, 1, 0, 'Paramedic 2'); +INSERT INTO `job_uniform` (`job_uniform_id`, `job_uniform_job`, `job_uniform_skin`, `job_uniform_enabled`, `job_uniform_minrank`, `job_uniform_name`) VALUES + (29, 5, 73, 1, 0, 'Paramedic 3'); +INSERT INTO `job_uniform` (`job_uniform_id`, `job_uniform_job`, `job_uniform_skin`, `job_uniform_enabled`, `job_uniform_minrank`, `job_uniform_name`) VALUES + (30, 6, 5, 1, 0, 'Paramedic 1'); +INSERT INTO `job_uniform` (`job_uniform_id`, `job_uniform_job`, `job_uniform_skin`, `job_uniform_enabled`, `job_uniform_minrank`, `job_uniform_name`) VALUES + (31, 6, 5, 1, 0, 'Paramedic 1'); +INSERT INTO `job_uniform` (`job_uniform_id`, `job_uniform_job`, `job_uniform_skin`, `job_uniform_enabled`, `job_uniform_minrank`, `job_uniform_name`) VALUES + (32, 7, -1175077216, 1, 0, 'Paramedic 1'); +INSERT INTO `job_uniform` (`job_uniform_id`, `job_uniform_job`, `job_uniform_skin`, `job_uniform_enabled`, `job_uniform_minrank`, `job_uniform_name`) VALUES + (33, 8, 274, 1, 0, 'Paramedic 1'); +INSERT INTO `job_uniform` (`job_uniform_id`, `job_uniform_job`, `job_uniform_skin`, `job_uniform_enabled`, `job_uniform_minrank`, `job_uniform_name`) VALUES + (34, 8, 275, 1, 0, 'Paramedic 2'); +INSERT INTO `job_uniform` (`job_uniform_id`, `job_uniform_job`, `job_uniform_skin`, `job_uniform_enabled`, `job_uniform_minrank`, `job_uniform_name`) VALUES + (35, 8, 276, 1, 0, 'Paramedic 3'); +INSERT INTO `job_uniform` (`job_uniform_id`, `job_uniform_job`, `job_uniform_skin`, `job_uniform_enabled`, `job_uniform_minrank`, `job_uniform_name`) VALUES + (36, 11, -610224615, 1, 0, 'Firefighter'); +INSERT INTO `job_uniform` (`job_uniform_id`, `job_uniform_job`, `job_uniform_skin`, `job_uniform_enabled`, `job_uniform_minrank`, `job_uniform_name`) VALUES + (37, 11, 610888851, 1, 0, 'Fire Chief'); +INSERT INTO `job_uniform` (`job_uniform_id`, `job_uniform_job`, `job_uniform_skin`, `job_uniform_enabled`, `job_uniform_minrank`, `job_uniform_name`) VALUES + (38, 11, 277, 1, 0, 'Firefighter 1'); +INSERT INTO `job_uniform` (`job_uniform_id`, `job_uniform_job`, `job_uniform_skin`, `job_uniform_enabled`, `job_uniform_minrank`, `job_uniform_name`) VALUES + (39, 12, 278, 1, 0, 'Firefighter 2'); +INSERT INTO `job_uniform` (`job_uniform_id`, `job_uniform_job`, `job_uniform_skin`, `job_uniform_enabled`, `job_uniform_minrank`, `job_uniform_name`) VALUES + (40, 12, 279, 1, 0, 'Firefighter 3'); +INSERT INTO `job_uniform` (`job_uniform_id`, `job_uniform_job`, `job_uniform_skin`, `job_uniform_enabled`, `job_uniform_minrank`, `job_uniform_name`) VALUES + (42, 13, 8, 1, 0, 'Taxi Driver 1'); +INSERT INTO `job_uniform` (`job_uniform_id`, `job_uniform_job`, `job_uniform_skin`, `job_uniform_enabled`, `job_uniform_minrank`, `job_uniform_name`) VALUES + (43, 14, 8, 1, 0, 'Taxi Driver 1'); +INSERT INTO `job_uniform` (`job_uniform_id`, `job_uniform_job`, `job_uniform_skin`, `job_uniform_enabled`, `job_uniform_minrank`, `job_uniform_name`) VALUES + (44, 16, 7, 1, 0, 'Taxi Driver 1'); +INSERT INTO `job_uniform` (`job_uniform_id`, `job_uniform_job`, `job_uniform_skin`, `job_uniform_enabled`, `job_uniform_minrank`, `job_uniform_name`) VALUES + (45, 16, 142, 1, 0, 'Taxi Driver 2'); +INSERT INTO `job_uniform` (`job_uniform_id`, `job_uniform_job`, `job_uniform_skin`, `job_uniform_enabled`, `job_uniform_minrank`, `job_uniform_name`) VALUES + (46, 17, 8, 1, 0, 'Bus Driver 1'); +INSERT INTO `job_uniform` (`job_uniform_id`, `job_uniform_job`, `job_uniform_skin`, `job_uniform_enabled`, `job_uniform_minrank`, `job_uniform_name`) VALUES + (47, 18, 8, 1, 0, 'Bus Driver 1'); +INSERT INTO `job_uniform` (`job_uniform_id`, `job_uniform_job`, `job_uniform_skin`, `job_uniform_enabled`, `job_uniform_minrank`, `job_uniform_name`) VALUES + (48, 20, 7, 1, 0, 'Bus Driver 1'); +INSERT INTO `job_uniform` (`job_uniform_id`, `job_uniform_job`, `job_uniform_skin`, `job_uniform_enabled`, `job_uniform_minrank`, `job_uniform_name`) VALUES + (49, 20, 142, 1, 0, 'Bus Driver 2'); +INSERT INTO `job_uniform` (`job_uniform_id`, `job_uniform_job`, `job_uniform_skin`, `job_uniform_enabled`, `job_uniform_minrank`, `job_uniform_name`) VALUES + (50, 21, 53, 1, 0, 'Garbage Collector 1'); +INSERT INTO `job_uniform` (`job_uniform_id`, `job_uniform_job`, `job_uniform_skin`, `job_uniform_enabled`, `job_uniform_minrank`, `job_uniform_name`) VALUES + (51, 21, 54, 1, 0, 'Garbage Collector 2'); +INSERT INTO `job_uniform` (`job_uniform_id`, `job_uniform_job`, `job_uniform_skin`, `job_uniform_enabled`, `job_uniform_minrank`, `job_uniform_name`) VALUES + (52, 22, 53, 1, 0, 'Garbage Collector 1'); +INSERT INTO `job_uniform` (`job_uniform_id`, `job_uniform_job`, `job_uniform_skin`, `job_uniform_enabled`, `job_uniform_minrank`, `job_uniform_name`) VALUES + (53, 22, 54, 1, 0, 'Garbage Collector 2'); +INSERT INTO `job_uniform` (`job_uniform_id`, `job_uniform_job`, `job_uniform_skin`, `job_uniform_enabled`, `job_uniform_minrank`, `job_uniform_name`) VALUES + (54, 24, 16, 1, 0, 'Garbage Collector 1'); +INSERT INTO `job_uniform` (`job_uniform_id`, `job_uniform_job`, `job_uniform_skin`, `job_uniform_enabled`, `job_uniform_minrank`, `job_uniform_name`) VALUES + (55, 23, 1136499716, 1, 0, 'Garbage Collector 1'); +INSERT INTO `job_uniform` (`job_uniform_id`, `job_uniform_job`, `job_uniform_skin`, `job_uniform_enabled`, `job_uniform_minrank`, `job_uniform_name`) VALUES + (56, 19, 134077503, 1, 0, 'Bus Driver 1'); +INSERT INTO `job_uniform` (`job_uniform_id`, `job_uniform_job`, `job_uniform_skin`, `job_uniform_enabled`, `job_uniform_minrank`, `job_uniform_name`) VALUES + (57, 15, 8772846, 1, 0, 'Taxi Driver 1'); +INSERT INTO `job_uniform` (`job_uniform_id`, `job_uniform_job`, `job_uniform_skin`, `job_uniform_enabled`, `job_uniform_minrank`, `job_uniform_name`) VALUES + (58, 3, -89302119, 1, 3, 'State Trooper'); +INSERT INTO `job_uniform` (`job_uniform_id`, `job_uniform_job`, `job_uniform_skin`, `job_uniform_enabled`, `job_uniform_minrank`, `job_uniform_name`) VALUES + (59, 3, -1004762946, 1, 2, 'SWAT'); +INSERT INTO `job_uniform` (`job_uniform_id`, `job_uniform_job`, `job_uniform_skin`, `job_uniform_enabled`, `job_uniform_minrank`, `job_uniform_name`) VALUES + (60, 2, 166, 1, 0, 'Officer Tommy Vercetti'); +INSERT INTO `job_uniform` (`job_uniform_id`, `job_uniform_job`, `job_uniform_skin`, `job_uniform_enabled`, `job_uniform_minrank`, `job_uniform_name`) VALUES + (61, 9, 6, 1, 0, 'Firefighter'); +/*!40000 ALTER TABLE `job_uniform` ENABLE KEYS */; + +-- Dumping structure for table gtac_main.job_wl +CREATE TABLE IF NOT EXISTS `job_wl` ( + `job_wl_id` int(11) NOT NULL AUTO_INCREMENT, + `job_wl_job` int(11) NOT NULL DEFAULT '0', + `job_wl_sacct` int(11) NOT NULL DEFAULT '0', + `job_wl_who_added` int(11) NOT NULL DEFAULT '0', + `job_wl_when_added` int(11) NOT NULL DEFAULT '0', + `job_wl_enabled` int(11) NOT NULL DEFAULT '1', + PRIMARY KEY (`job_wl_id`), + KEY `job_wl_job` (`job_wl_job`), + KEY `job_wl_sacct` (`job_wl_sacct`), + KEY `job_wl_who_added` (`job_wl_who_added`), + CONSTRAINT `fk_job_wl_admin` FOREIGN KEY (`job_wl_who_added`) REFERENCES `acct_main` (`acct_id`) ON DELETE CASCADE ON UPDATE CASCADE, + CONSTRAINT `fk_job_wl_job` FOREIGN KEY (`job_wl_job`) REFERENCES `job_main` (`job_id`) ON DELETE CASCADE ON UPDATE CASCADE, + CONSTRAINT `fk_job_wl_sacct` FOREIGN KEY (`job_wl_sacct`) REFERENCES `sacct_main` (`sacct_id`) ON DELETE CASCADE ON UPDATE CASCADE +) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Jobs - Whitelist'; + +-- Dumping data for table gtac_main.job_wl: ~0 rows (approximately) +/*!40000 ALTER TABLE `job_wl` DISABLE KEYS */; +/*!40000 ALTER TABLE `job_wl` ENABLE KEYS */; + +-- Dumping structure for table gtac_main.log_admin +CREATE TABLE IF NOT EXISTS `log_admin` ( + `log_admin_id` int(11) NOT NULL AUTO_INCREMENT, + `log_admin_target` int(11) NOT NULL DEFAULT '0', + `log_admin_msg` varchar(128) NOT NULL DEFAULT '', + `log_admin_type` int(11) NOT NULL DEFAULT '0', + `log_admin_admin` int(11) NOT NULL DEFAULT '0', + `log_admin_timestamp` int(32) NOT NULL DEFAULT '0', + PRIMARY KEY (`log_admin_id`) +) ENGINE=InnoDB DEFAULT CHARSET=latin1 COMMENT='Log - Admin Actions'; + +-- Dumping data for table gtac_main.log_admin: ~0 rows (approximately) +/*!40000 ALTER TABLE `log_admin` DISABLE KEYS */; +/*!40000 ALTER TABLE `log_admin` ENABLE KEYS */; + +-- Dumping structure for table gtac_main.log_chat +CREATE TABLE IF NOT EXISTS `log_chat` ( + `log_chat_id` int(11) NOT NULL AUTO_INCREMENT, + `log_chat_server` int(11) NOT NULL DEFAULT '0', + `log_chat_sacct` int(11) NOT NULL DEFAULT '0', + `log_chat_type` int(11) NOT NULL DEFAULT '0', + `log_chat_msg` varchar(128) NOT NULL DEFAULT '', + `log_chat_timestamp` int(32) NOT NULL DEFAULT '0', + PRIMARY KEY (`log_chat_id`) +) ENGINE=InnoDB DEFAULT CHARSET=latin1 COMMENT='Log - Game Chat'; + +-- Dumping data for table gtac_main.log_chat: ~0 rows (approximately) +/*!40000 ALTER TABLE `log_chat` DISABLE KEYS */; +/*!40000 ALTER TABLE `log_chat` ENABLE KEYS */; + +-- Dumping structure for table gtac_main.log_conn +CREATE TABLE IF NOT EXISTS `log_conn` ( + `log_conn_id` int(11) NOT NULL AUTO_INCREMENT, + `log_conn_name` varchar(64) NOT NULL DEFAULT 'Unknown', + `log_conn_server` int(11) NOT NULL DEFAULT '0', + `log_conn_ip` int(11) NOT NULL DEFAULT '0', + `log_conn_when_connect` int(32) NOT NULL DEFAULT '0', + `log_conn_when_disconnect` int(32) NOT NULL DEFAULT '0', + `log_conn_gameversion` int(11) NOT NULL DEFAULT '0', + PRIMARY KEY (`log_conn_id`) +) ENGINE=InnoDB DEFAULT CHARSET=latin1 COMMENT='Log - Connections'; + +-- Dumping data for table gtac_main.log_conn: ~0 rows (approximately) +/*!40000 ALTER TABLE `log_conn` DISABLE KEYS */; +/*!40000 ALTER TABLE `log_conn` ENABLE KEYS */; + +-- Dumping structure for table gtac_main.log_death +CREATE TABLE IF NOT EXISTS `log_death` ( + `log_death_id` int(11) NOT NULL AUTO_INCREMENT, + `log_death_server` int(11) NOT NULL DEFAULT '0', + `log_death_who_died` int(11) NOT NULL DEFAULT '0', + `log_death_who_killed` int(11) NOT NULL DEFAULT '0', + `log_death_timestamp` int(32) NOT NULL DEFAULT '0', + `log_death_pedpiece` int(11) NOT NULL DEFAULT '0', + `log_death_weapon` int(11) NOT NULL DEFAULT '0', + PRIMARY KEY (`log_death_id`) +) ENGINE=InnoDB DEFAULT CHARSET=latin1 COMMENT='Log - Deaths'; + +-- Dumping data for table gtac_main.log_death: ~0 rows (approximately) +/*!40000 ALTER TABLE `log_death` DISABLE KEYS */; +/*!40000 ALTER TABLE `log_death` ENABLE KEYS */; + +-- Dumping structure for table gtac_main.log_pns +CREATE TABLE IF NOT EXISTS `log_pns` ( + `log_pns_id` int(11) NOT NULL AUTO_INCREMENT, + `log_pns_pns` int(11) DEFAULT '0', + `log_pns_when_used` int(32) DEFAULT '0', + `log_pns_conn` int(11) DEFAULT '0', + `log_pns_veh` int(11) DEFAULT '0', + `log_pns_action` float DEFAULT '0', + `log_pns_paid` int(11) DEFAULT '0', + `log_pns_detail` int(11) DEFAULT '0', + PRIMARY KEY (`log_pns_id`) +) ENGINE=InnoDB DEFAULT CHARSET=latin1 COMMENT='Log - Pay and Spray'; + +-- Dumping data for table gtac_main.log_pns: ~0 rows (approximately) +/*!40000 ALTER TABLE `log_pns` DISABLE KEYS */; +/*!40000 ALTER TABLE `log_pns` ENABLE KEYS */; + +-- Dumping structure for table gtac_main.npc_cond +CREATE TABLE IF NOT EXISTS `npc_cond` ( + `npc_cond_id` int(11) NOT NULL AUTO_INCREMENT, + `npc_cond_npc` int(11) NOT NULL DEFAULT '0', + `npc_cond_trig` int(11) NOT NULL DEFAULT '0', + `npc_cond_type` int(11) NOT NULL DEFAULT '0', + `npc_cond_data` varchar(11) NOT NULL DEFAULT '0', + `npc_cond_logic` varchar(11) NOT NULL DEFAULT '0', + `npc_cond_enabled` tinyint(1) NOT NULL DEFAULT '1', + PRIMARY KEY (`npc_cond_id`) +) ENGINE=InnoDB DEFAULT CHARSET=latin1 COMMENT='NPCs - Action Conditions'; + +-- Dumping data for table gtac_main.npc_cond: ~0 rows (approximately) +/*!40000 ALTER TABLE `npc_cond` DISABLE KEYS */; +/*!40000 ALTER TABLE `npc_cond` ENABLE KEYS */; + +-- Dumping structure for table gtac_main.npc_main +CREATE TABLE IF NOT EXISTS `npc_main` ( + `npc_id` int(11) NOT NULL AUTO_INCREMENT, + `npc_server` tinyint(2) NOT NULL DEFAULT '0', + `npc_name` varchar(128) NOT NULL DEFAULT '', + `npc_model` int(11) NOT NULL DEFAULT '0', + `npc_type_flags` int(32) NOT NULL DEFAULT '0', + `npc_ped_health` int(4) NOT NULL DEFAULT '100', + `npc_ped_armour` int(4) NOT NULL DEFAULT '0', + `npc_ped_threats` int(32) NOT NULL DEFAULT '0', + `npc_ped_heedthreats` tinyint(1) NOT NULL DEFAULT '0', + `npc_ped_stay` tinyint(1) NOT NULL DEFAULT '1', + `npc_ped_walkstyle` int(11) NOT NULL DEFAULT '0', + `npc_owner_type` int(11) DEFAULT NULL, + `npc_owner_id` int(11) DEFAULT NULL, + PRIMARY KEY (`npc_id`) +) ENGINE=InnoDB DEFAULT CHARSET=latin1 COMMENT='NPCs'; + +-- Dumping data for table gtac_main.npc_main: ~0 rows (approximately) +/*!40000 ALTER TABLE `npc_main` DISABLE KEYS */; +/*!40000 ALTER TABLE `npc_main` ENABLE KEYS */; + +-- Dumping structure for table gtac_main.npc_resp +CREATE TABLE IF NOT EXISTS `npc_resp` ( + `npc_resp_id` int(11) NOT NULL AUTO_INCREMENT, + `npc_resp_npc` int(11) NOT NULL DEFAULT '0', + `npc_resp_type` int(11) NOT NULL DEFAULT '0', + `npc_resp_trig` int(11) NOT NULL DEFAULT '0', + `npc_resp_data` varchar(11) NOT NULL DEFAULT '0', + `npc_resp_logic` varchar(11) NOT NULL DEFAULT '0', + `npc_resp_enabled` tinyint(1) NOT NULL DEFAULT '1', + PRIMARY KEY (`npc_resp_id`) +) ENGINE=InnoDB DEFAULT CHARSET=latin1 COMMENT='NPCs - Action Responses'; + +-- Dumping data for table gtac_main.npc_resp: ~0 rows (approximately) +/*!40000 ALTER TABLE `npc_resp` DISABLE KEYS */; +/*!40000 ALTER TABLE `npc_resp` ENABLE KEYS */; + +-- Dumping structure for table gtac_main.npc_trig +CREATE TABLE IF NOT EXISTS `npc_trig` ( + `npc_trig_id` int(11) NOT NULL AUTO_INCREMENT, + `npc_trig_npc` int(11) NOT NULL DEFAULT '0', + `npc_trig_type` int(11) NOT NULL DEFAULT '0', + `npc_trig_enabled` tinyint(1) NOT NULL DEFAULT '1', + PRIMARY KEY (`npc_trig_id`) +) ENGINE=InnoDB DEFAULT CHARSET=latin1 COMMENT='NPCs - Action Triggers'; + +-- Dumping data for table gtac_main.npc_trig: ~0 rows (approximately) +/*!40000 ALTER TABLE `npc_trig` DISABLE KEYS */; +/*!40000 ALTER TABLE `npc_trig` ENABLE KEYS */; + +-- Dumping structure for table gtac_main.radio_main +CREATE TABLE IF NOT EXISTS `radio_main` ( + `radio_id` smallint(6) NOT NULL DEFAULT '0', + `radio_name` varchar(64) NOT NULL DEFAULT '', + `radio_url` text NOT NULL, + `radio_enabled` tinyint(4) NOT NULL DEFAULT '0' +) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Radio Stations'; + +-- Dumping data for table gtac_main.radio_main: ~0 rows (approximately) +/*!40000 ALTER TABLE `radio_main` DISABLE KEYS */; +/*!40000 ALTER TABLE `radio_main` ENABLE KEYS */; + +-- Dumping structure for table gtac_main.sacct_main +CREATE TABLE IF NOT EXISTS `sacct_main` ( + `sacct_id` int(11) NOT NULL AUTO_INCREMENT, + `sacct_acct` int(11) NOT NULL DEFAULT '0', + `sacct_server` int(11) NOT NULL DEFAULT '0', + `sacct_name_first` varchar(50) CHARACTER SET utf16 COLLATE utf16_unicode_ci NOT NULL DEFAULT '', + `sacct_name_last` varchar(50) CHARACTER SET utf16 COLLATE utf16_unicode_ci NOT NULL DEFAULT '', + `sacct_name_middle` varchar(50) CHARACTER SET utf16 COLLATE utf16_unicode_ci NOT NULL DEFAULT '', + `sacct_when_born` varchar(50) NOT NULL DEFAULT '', + `sacct_origin` varchar(50) NOT NULL DEFAULT '', + `sacct_job` int(11) NOT NULL DEFAULT '0', + `sacct_clan` int(11) NOT NULL DEFAULT '0', + `sacct_clan_rank` int(11) NOT NULL DEFAULT '0', + `sacct_clan_flags` int(11) NOT NULL DEFAULT '0', + `sacct_clan_title` varchar(32) NOT NULL DEFAULT '', + `sacct_clan_tag` varchar(32) NOT NULL DEFAULT '', + `sacct_last_ip` int(11) NOT NULL DEFAULT '0', + `sacct_last_uid` varchar(128) NOT NULL DEFAULT '', + `sacct_total_time` int(11) NOT NULL DEFAULT '0', + `sacct_pos_x` float NOT NULL DEFAULT '0', + `sacct_pos_y` float NOT NULL DEFAULT '0', + `sacct_pos_z` float NOT NULL DEFAULT '0', + `sacct_angle` float NOT NULL DEFAULT '0', + `sacct_cash` int(11) NOT NULL DEFAULT '0', + `sacct_bank` int(11) NOT NULL DEFAULT '0', + `sacct_skin` int(11) NOT NULL DEFAULT '0', + `sacct_health` int(11) NOT NULL DEFAULT '0', + `sacct_armour` int(11) NOT NULL DEFAULT '0', + `sacct_licenses` int(11) NOT NULL DEFAULT '0', + `sacct_last_session` int(11) NOT NULL DEFAULT '0', + `sacct_when_made` bigint(20) NOT NULL DEFAULT '0', + `sacct_when_lastlogin` bigint(20) NOT NULL DEFAULT '0', + `sacct_arrest_state` int(11) NOT NULL DEFAULT '0', + `sacct_arrest_time` int(32) NOT NULL DEFAULT '0', + `sacct_int` int(11) NOT NULL DEFAULT '0', + `sacct_vw` int(11) NOT NULL DEFAULT '0', + `sacct_needs_setup` int(11) NOT NULL DEFAULT '1', + `sacct_scale_x` float NOT NULL DEFAULT '1', + `sacct_scale_y` float NOT NULL DEFAULT '1', + `sacct_scale_z` float NOT NULL DEFAULT '1', + `sacct_walkstyle` int(11) NOT NULL DEFAULT '0', + `sacct_fightstyle` int(11) NOT NULL DEFAULT '0', + `sacct_hd_part_hair_model` int(11) NOT NULL DEFAULT '0', + `sacct_hd_part_hair_texture` int(11) NOT NULL DEFAULT '0', + `sacct_hd_part_head_model` int(11) NOT NULL DEFAULT '0', + `sacct_hd_part_head_texture` int(11) NOT NULL DEFAULT '0', + `sacct_hd_part_upper_model` int(11) NOT NULL DEFAULT '0', + `sacct_hd_part_upper_texture` int(11) NOT NULL DEFAULT '0', + `sacct_hd_part_lower_model` int(11) NOT NULL DEFAULT '0', + `sacct_hd_part_lower_texture` int(11) NOT NULL DEFAULT '0', + `sacct_hd_part_feet_model` int(11) NOT NULL DEFAULT '0', + `sacct_hd_part_feet_texture` int(11) NOT NULL DEFAULT '0', + `sacct_hd_part_hands_model` int(11) NOT NULL DEFAULT '0', + `sacct_hd_part_hands_texture` int(11) NOT NULL DEFAULT '0', + `sacct_hd_prop_hair_model` int(11) NOT NULL DEFAULT '0', + `sacct_hd_prop_hair_texture` int(11) NOT NULL DEFAULT '0', + `sacct_hd_prop_head_model` int(11) NOT NULL DEFAULT '0', + `sacct_hd_prop_head_texture` int(11) NOT NULL DEFAULT '0', + `sacct_hd_prop_eyes_model` int(11) NOT NULL DEFAULT '0', + `sacct_hd_prop_eyes_texture` int(11) NOT NULL DEFAULT '0', + `sacct_hd_prop_ears_model` int(11) NOT NULL DEFAULT '0', + `sacct_hd_prop_ears_texture` int(11) NOT NULL DEFAULT '0', + `sacct_hd_prop_mouth_model` int(11) NOT NULL DEFAULT '0', + `sacct_hd_prop_mouth_texture` int(11) NOT NULL DEFAULT '0', + `sacct_hd_prop_lefthand_model` int(11) NOT NULL DEFAULT '0', + `sacct_hd_prop_lefthand_texture` int(11) NOT NULL DEFAULT '0', + `sacct_hd_prop_righthand_model` int(11) NOT NULL DEFAULT '0', + `sacct_hd_prop_righthand_texture` int(11) NOT NULL DEFAULT '0', + `sacct_hd_prop_leftwrist_model` int(11) NOT NULL DEFAULT '0', + `sacct_hd_prop_leftwrist_texture` int(11) NOT NULL DEFAULT '0', + `sacct_hd_prop_rightwrist_model` int(11) NOT NULL DEFAULT '0', + `sacct_hd_prop_rightwrist_texture` int(11) NOT NULL DEFAULT '0', + `sacct_hd_prop_hip_model` int(11) NOT NULL DEFAULT '0', + `sacct_hd_prop_hip_texture` int(11) NOT NULL DEFAULT '0', + `sacct_hd_prop_leftfoot_model` int(11) NOT NULL DEFAULT '0', + `sacct_hd_prop_leftfoot_texture` int(11) NOT NULL DEFAULT '0', + `sacct_hd_prop_rightfoot_model` int(11) NOT NULL DEFAULT '0', + `sacct_hd_prop_rightfoot_texture` int(11) NOT NULL DEFAULT '0', + `sacct_voice` int(11) NOT NULL DEFAULT '0', + PRIMARY KEY (`sacct_id`) +) ENGINE=InnoDB AUTO_INCREMENT=20 DEFAULT CHARSET=latin1 COMMENT='Sub Accounts (Characters)'; + +-- Dumping data for table gtac_main.sacct_main: ~16 rows (approximately) +/*!40000 ALTER TABLE `sacct_main` DISABLE KEYS */; +INSERT INTO `sacct_main` (`sacct_id`, `sacct_acct`, `sacct_server`, `sacct_name_first`, `sacct_name_last`, `sacct_name_middle`, `sacct_when_born`, `sacct_origin`, `sacct_job`, `sacct_clan`, `sacct_clan_rank`, `sacct_clan_flags`, `sacct_clan_title`, `sacct_clan_tag`, `sacct_last_ip`, `sacct_last_uid`, `sacct_total_time`, `sacct_pos_x`, `sacct_pos_y`, `sacct_pos_z`, `sacct_angle`, `sacct_cash`, `sacct_bank`, `sacct_skin`, `sacct_health`, `sacct_armour`, `sacct_licenses`, `sacct_last_session`, `sacct_when_made`, `sacct_when_lastlogin`, `sacct_arrest_state`, `sacct_arrest_time`, `sacct_int`, `sacct_vw`, `sacct_needs_setup`, `sacct_scale_x`, `sacct_scale_y`, `sacct_scale_z`, `sacct_walkstyle`, `sacct_fightstyle`, `sacct_hd_part_hair_model`, `sacct_hd_part_hair_texture`, `sacct_hd_part_head_model`, `sacct_hd_part_head_texture`, `sacct_hd_part_upper_model`, `sacct_hd_part_upper_texture`, `sacct_hd_part_lower_model`, `sacct_hd_part_lower_texture`, `sacct_hd_part_feet_model`, `sacct_hd_part_feet_texture`, `sacct_hd_part_hands_model`, `sacct_hd_part_hands_texture`, `sacct_hd_prop_hair_model`, `sacct_hd_prop_hair_texture`, `sacct_hd_prop_head_model`, `sacct_hd_prop_head_texture`, `sacct_hd_prop_eyes_model`, `sacct_hd_prop_eyes_texture`, `sacct_hd_prop_ears_model`, `sacct_hd_prop_ears_texture`, `sacct_hd_prop_mouth_model`, `sacct_hd_prop_mouth_texture`, `sacct_hd_prop_lefthand_model`, `sacct_hd_prop_lefthand_texture`, `sacct_hd_prop_righthand_model`, `sacct_hd_prop_righthand_texture`, `sacct_hd_prop_leftwrist_model`, `sacct_hd_prop_leftwrist_texture`, `sacct_hd_prop_rightwrist_model`, `sacct_hd_prop_rightwrist_texture`, `sacct_hd_prop_hip_model`, `sacct_hd_prop_hip_texture`, `sacct_hd_prop_leftfoot_model`, `sacct_hd_prop_leftfoot_texture`, `sacct_hd_prop_rightfoot_model`, `sacct_hd_prop_rightfoot_texture`, `sacct_voice`) VALUES + (1, 1, 1, 'Ryan', 'Stokes', '', '3/6/1990', 'San Fierro', 1, 0, 0, 0, '0', '', 0, '', 0, 869.48, -305.85, 8.31724, 1.59, 0, 0, 109, 100, 0, 0, 0, 1610246083, 1615208841279, 0, 0, 0, 0, 0, 1.5, 1.5, 1.5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `sacct_main` (`sacct_id`, `sacct_acct`, `sacct_server`, `sacct_name_first`, `sacct_name_last`, `sacct_name_middle`, `sacct_when_born`, `sacct_origin`, `sacct_job`, `sacct_clan`, `sacct_clan_rank`, `sacct_clan_flags`, `sacct_clan_title`, `sacct_clan_tag`, `sacct_last_ip`, `sacct_last_uid`, `sacct_total_time`, `sacct_pos_x`, `sacct_pos_y`, `sacct_pos_z`, `sacct_angle`, `sacct_cash`, `sacct_bank`, `sacct_skin`, `sacct_health`, `sacct_armour`, `sacct_licenses`, `sacct_last_session`, `sacct_when_made`, `sacct_when_lastlogin`, `sacct_arrest_state`, `sacct_arrest_time`, `sacct_int`, `sacct_vw`, `sacct_needs_setup`, `sacct_scale_x`, `sacct_scale_y`, `sacct_scale_z`, `sacct_walkstyle`, `sacct_fightstyle`, `sacct_hd_part_hair_model`, `sacct_hd_part_hair_texture`, `sacct_hd_part_head_model`, `sacct_hd_part_head_texture`, `sacct_hd_part_upper_model`, `sacct_hd_part_upper_texture`, `sacct_hd_part_lower_model`, `sacct_hd_part_lower_texture`, `sacct_hd_part_feet_model`, `sacct_hd_part_feet_texture`, `sacct_hd_part_hands_model`, `sacct_hd_part_hands_texture`, `sacct_hd_prop_hair_model`, `sacct_hd_prop_hair_texture`, `sacct_hd_prop_head_model`, `sacct_hd_prop_head_texture`, `sacct_hd_prop_eyes_model`, `sacct_hd_prop_eyes_texture`, `sacct_hd_prop_ears_model`, `sacct_hd_prop_ears_texture`, `sacct_hd_prop_mouth_model`, `sacct_hd_prop_mouth_texture`, `sacct_hd_prop_lefthand_model`, `sacct_hd_prop_lefthand_texture`, `sacct_hd_prop_righthand_model`, `sacct_hd_prop_righthand_texture`, `sacct_hd_prop_leftwrist_model`, `sacct_hd_prop_leftwrist_texture`, `sacct_hd_prop_rightwrist_model`, `sacct_hd_prop_rightwrist_texture`, `sacct_hd_prop_hip_model`, `sacct_hd_prop_hip_texture`, `sacct_hd_prop_leftfoot_model`, `sacct_hd_prop_leftfoot_texture`, `sacct_hd_prop_rightfoot_model`, `sacct_hd_prop_rightfoot_texture`, `sacct_voice`) VALUES + (2, 2, 1, 'Maxle', 'Face', '', '6/7/2011', 'Las Venturas', 0, 0, 0, 0, '', '', 0, '', 0, 280.516, -1057.41, 26.1682, 0.0775859, 1000, 0, 33, 100, 0, 0, 0, 1610246162, 0, 0, 0, 0, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `sacct_main` (`sacct_id`, `sacct_acct`, `sacct_server`, `sacct_name_first`, `sacct_name_last`, `sacct_name_middle`, `sacct_when_born`, `sacct_origin`, `sacct_job`, `sacct_clan`, `sacct_clan_rank`, `sacct_clan_flags`, `sacct_clan_title`, `sacct_clan_tag`, `sacct_last_ip`, `sacct_last_uid`, `sacct_total_time`, `sacct_pos_x`, `sacct_pos_y`, `sacct_pos_z`, `sacct_angle`, `sacct_cash`, `sacct_bank`, `sacct_skin`, `sacct_health`, `sacct_armour`, `sacct_licenses`, `sacct_last_session`, `sacct_when_made`, `sacct_when_lastlogin`, `sacct_arrest_state`, `sacct_arrest_time`, `sacct_int`, `sacct_vw`, `sacct_needs_setup`, `sacct_scale_x`, `sacct_scale_y`, `sacct_scale_z`, `sacct_walkstyle`, `sacct_fightstyle`, `sacct_hd_part_hair_model`, `sacct_hd_part_hair_texture`, `sacct_hd_part_head_model`, `sacct_hd_part_head_texture`, `sacct_hd_part_upper_model`, `sacct_hd_part_upper_texture`, `sacct_hd_part_lower_model`, `sacct_hd_part_lower_texture`, `sacct_hd_part_feet_model`, `sacct_hd_part_feet_texture`, `sacct_hd_part_hands_model`, `sacct_hd_part_hands_texture`, `sacct_hd_prop_hair_model`, `sacct_hd_prop_hair_texture`, `sacct_hd_prop_head_model`, `sacct_hd_prop_head_texture`, `sacct_hd_prop_eyes_model`, `sacct_hd_prop_eyes_texture`, `sacct_hd_prop_ears_model`, `sacct_hd_prop_ears_texture`, `sacct_hd_prop_mouth_model`, `sacct_hd_prop_mouth_texture`, `sacct_hd_prop_lefthand_model`, `sacct_hd_prop_lefthand_texture`, `sacct_hd_prop_righthand_model`, `sacct_hd_prop_righthand_texture`, `sacct_hd_prop_leftwrist_model`, `sacct_hd_prop_leftwrist_texture`, `sacct_hd_prop_rightwrist_model`, `sacct_hd_prop_rightwrist_texture`, `sacct_hd_prop_hip_model`, `sacct_hd_prop_hip_texture`, `sacct_hd_prop_leftfoot_model`, `sacct_hd_prop_leftfoot_texture`, `sacct_hd_prop_rightfoot_model`, `sacct_hd_prop_rightfoot_texture`, `sacct_voice`) VALUES + (3, 3, 1, 'Peter', 'Berett', '', '20/1/1992', 'San Andreas', 0, 0, 0, 0, '', '', 0, '', 0, 1312.31, -1016.42, 14.4717, 2.5633, 0, 0, 10, 100, 0, 0, 0, 1610247697, 0, 0, 0, 0, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `sacct_main` (`sacct_id`, `sacct_acct`, `sacct_server`, `sacct_name_first`, `sacct_name_last`, `sacct_name_middle`, `sacct_when_born`, `sacct_origin`, `sacct_job`, `sacct_clan`, `sacct_clan_rank`, `sacct_clan_flags`, `sacct_clan_title`, `sacct_clan_tag`, `sacct_last_ip`, `sacct_last_uid`, `sacct_total_time`, `sacct_pos_x`, `sacct_pos_y`, `sacct_pos_z`, `sacct_angle`, `sacct_cash`, `sacct_bank`, `sacct_skin`, `sacct_health`, `sacct_armour`, `sacct_licenses`, `sacct_last_session`, `sacct_when_made`, `sacct_when_lastlogin`, `sacct_arrest_state`, `sacct_arrest_time`, `sacct_int`, `sacct_vw`, `sacct_needs_setup`, `sacct_scale_x`, `sacct_scale_y`, `sacct_scale_z`, `sacct_walkstyle`, `sacct_fightstyle`, `sacct_hd_part_hair_model`, `sacct_hd_part_hair_texture`, `sacct_hd_part_head_model`, `sacct_hd_part_head_texture`, `sacct_hd_part_upper_model`, `sacct_hd_part_upper_texture`, `sacct_hd_part_lower_model`, `sacct_hd_part_lower_texture`, `sacct_hd_part_feet_model`, `sacct_hd_part_feet_texture`, `sacct_hd_part_hands_model`, `sacct_hd_part_hands_texture`, `sacct_hd_prop_hair_model`, `sacct_hd_prop_hair_texture`, `sacct_hd_prop_head_model`, `sacct_hd_prop_head_texture`, `sacct_hd_prop_eyes_model`, `sacct_hd_prop_eyes_texture`, `sacct_hd_prop_ears_model`, `sacct_hd_prop_ears_texture`, `sacct_hd_prop_mouth_model`, `sacct_hd_prop_mouth_texture`, `sacct_hd_prop_lefthand_model`, `sacct_hd_prop_lefthand_texture`, `sacct_hd_prop_righthand_model`, `sacct_hd_prop_righthand_texture`, `sacct_hd_prop_leftwrist_model`, `sacct_hd_prop_leftwrist_texture`, `sacct_hd_prop_rightwrist_model`, `sacct_hd_prop_rightwrist_texture`, `sacct_hd_prop_hip_model`, `sacct_hd_prop_hip_texture`, `sacct_hd_prop_leftfoot_model`, `sacct_hd_prop_leftfoot_texture`, `sacct_hd_prop_rightfoot_model`, `sacct_hd_prop_rightfoot_texture`, `sacct_voice`) VALUES + (4, 4, 1, 'Ryan', 'Nashton', '', '30/8/1990', 'Bone County', 0, 0, 0, 0, '', '', 0, '', 0, 1140.98, -677.149, 14.9727, 0.224663, 1000, 0, 109, 100, 0, 0, 0, 1610251928, 0, 0, 0, 0, 0, 0, 1.5, 1.5, 1.5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `sacct_main` (`sacct_id`, `sacct_acct`, `sacct_server`, `sacct_name_first`, `sacct_name_last`, `sacct_name_middle`, `sacct_when_born`, `sacct_origin`, `sacct_job`, `sacct_clan`, `sacct_clan_rank`, `sacct_clan_flags`, `sacct_clan_title`, `sacct_clan_tag`, `sacct_last_ip`, `sacct_last_uid`, `sacct_total_time`, `sacct_pos_x`, `sacct_pos_y`, `sacct_pos_z`, `sacct_angle`, `sacct_cash`, `sacct_bank`, `sacct_skin`, `sacct_health`, `sacct_armour`, `sacct_licenses`, `sacct_last_session`, `sacct_when_made`, `sacct_when_lastlogin`, `sacct_arrest_state`, `sacct_arrest_time`, `sacct_int`, `sacct_vw`, `sacct_needs_setup`, `sacct_scale_x`, `sacct_scale_y`, `sacct_scale_z`, `sacct_walkstyle`, `sacct_fightstyle`, `sacct_hd_part_hair_model`, `sacct_hd_part_hair_texture`, `sacct_hd_part_head_model`, `sacct_hd_part_head_texture`, `sacct_hd_part_upper_model`, `sacct_hd_part_upper_texture`, `sacct_hd_part_lower_model`, `sacct_hd_part_lower_texture`, `sacct_hd_part_feet_model`, `sacct_hd_part_feet_texture`, `sacct_hd_part_hands_model`, `sacct_hd_part_hands_texture`, `sacct_hd_prop_hair_model`, `sacct_hd_prop_hair_texture`, `sacct_hd_prop_head_model`, `sacct_hd_prop_head_texture`, `sacct_hd_prop_eyes_model`, `sacct_hd_prop_eyes_texture`, `sacct_hd_prop_ears_model`, `sacct_hd_prop_ears_texture`, `sacct_hd_prop_mouth_model`, `sacct_hd_prop_mouth_texture`, `sacct_hd_prop_lefthand_model`, `sacct_hd_prop_lefthand_texture`, `sacct_hd_prop_righthand_model`, `sacct_hd_prop_righthand_texture`, `sacct_hd_prop_leftwrist_model`, `sacct_hd_prop_leftwrist_texture`, `sacct_hd_prop_rightwrist_model`, `sacct_hd_prop_rightwrist_texture`, `sacct_hd_prop_hip_model`, `sacct_hd_prop_hip_texture`, `sacct_hd_prop_leftfoot_model`, `sacct_hd_prop_leftfoot_texture`, `sacct_hd_prop_rightfoot_model`, `sacct_hd_prop_rightfoot_texture`, `sacct_voice`) VALUES + (5, 1, 4, 'Tom', 'Willard', '', '01/01/1901', 'Liberty City', 4, 0, 0, 0, '0', '', 0, '', 0, 988.542, -1367.43, 13.556, -1.49803, 1000, 0, 26, 100, 0, 0, 0, 1610552381, 0, 0, 0, 0, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `sacct_main` (`sacct_id`, `sacct_acct`, `sacct_server`, `sacct_name_first`, `sacct_name_last`, `sacct_name_middle`, `sacct_when_born`, `sacct_origin`, `sacct_job`, `sacct_clan`, `sacct_clan_rank`, `sacct_clan_flags`, `sacct_clan_title`, `sacct_clan_tag`, `sacct_last_ip`, `sacct_last_uid`, `sacct_total_time`, `sacct_pos_x`, `sacct_pos_y`, `sacct_pos_z`, `sacct_angle`, `sacct_cash`, `sacct_bank`, `sacct_skin`, `sacct_health`, `sacct_armour`, `sacct_licenses`, `sacct_last_session`, `sacct_when_made`, `sacct_when_lastlogin`, `sacct_arrest_state`, `sacct_arrest_time`, `sacct_int`, `sacct_vw`, `sacct_needs_setup`, `sacct_scale_x`, `sacct_scale_y`, `sacct_scale_z`, `sacct_walkstyle`, `sacct_fightstyle`, `sacct_hd_part_hair_model`, `sacct_hd_part_hair_texture`, `sacct_hd_part_head_model`, `sacct_hd_part_head_texture`, `sacct_hd_part_upper_model`, `sacct_hd_part_upper_texture`, `sacct_hd_part_lower_model`, `sacct_hd_part_lower_texture`, `sacct_hd_part_feet_model`, `sacct_hd_part_feet_texture`, `sacct_hd_part_hands_model`, `sacct_hd_part_hands_texture`, `sacct_hd_prop_hair_model`, `sacct_hd_prop_hair_texture`, `sacct_hd_prop_head_model`, `sacct_hd_prop_head_texture`, `sacct_hd_prop_eyes_model`, `sacct_hd_prop_eyes_texture`, `sacct_hd_prop_ears_model`, `sacct_hd_prop_ears_texture`, `sacct_hd_prop_mouth_model`, `sacct_hd_prop_mouth_texture`, `sacct_hd_prop_lefthand_model`, `sacct_hd_prop_lefthand_texture`, `sacct_hd_prop_righthand_model`, `sacct_hd_prop_righthand_texture`, `sacct_hd_prop_leftwrist_model`, `sacct_hd_prop_leftwrist_texture`, `sacct_hd_prop_rightwrist_model`, `sacct_hd_prop_rightwrist_texture`, `sacct_hd_prop_hip_model`, `sacct_hd_prop_hip_texture`, `sacct_hd_prop_leftfoot_model`, `sacct_hd_prop_leftfoot_texture`, `sacct_hd_prop_rightfoot_model`, `sacct_hd_prop_rightfoot_texture`, `sacct_voice`) VALUES + (7, 1, 2, 'Ryan', 'Nashton', '', '7/9/1989', 'Los Santos', 0, 0, 0, 0, '', '', 0, '', 0, -708.918, 179.315, 11.0712, 2.94625, 1000, 0, 94, 100, 0, 0, 0, 1610682051, 0, 0, 0, 0, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `sacct_main` (`sacct_id`, `sacct_acct`, `sacct_server`, `sacct_name_first`, `sacct_name_last`, `sacct_name_middle`, `sacct_when_born`, `sacct_origin`, `sacct_job`, `sacct_clan`, `sacct_clan_rank`, `sacct_clan_flags`, `sacct_clan_title`, `sacct_clan_tag`, `sacct_last_ip`, `sacct_last_uid`, `sacct_total_time`, `sacct_pos_x`, `sacct_pos_y`, `sacct_pos_z`, `sacct_angle`, `sacct_cash`, `sacct_bank`, `sacct_skin`, `sacct_health`, `sacct_armour`, `sacct_licenses`, `sacct_last_session`, `sacct_when_made`, `sacct_when_lastlogin`, `sacct_arrest_state`, `sacct_arrest_time`, `sacct_int`, `sacct_vw`, `sacct_needs_setup`, `sacct_scale_x`, `sacct_scale_y`, `sacct_scale_z`, `sacct_walkstyle`, `sacct_fightstyle`, `sacct_hd_part_hair_model`, `sacct_hd_part_hair_texture`, `sacct_hd_part_head_model`, `sacct_hd_part_head_texture`, `sacct_hd_part_upper_model`, `sacct_hd_part_upper_texture`, `sacct_hd_part_lower_model`, `sacct_hd_part_lower_texture`, `sacct_hd_part_feet_model`, `sacct_hd_part_feet_texture`, `sacct_hd_part_hands_model`, `sacct_hd_part_hands_texture`, `sacct_hd_prop_hair_model`, `sacct_hd_prop_hair_texture`, `sacct_hd_prop_head_model`, `sacct_hd_prop_head_texture`, `sacct_hd_prop_eyes_model`, `sacct_hd_prop_eyes_texture`, `sacct_hd_prop_ears_model`, `sacct_hd_prop_ears_texture`, `sacct_hd_prop_mouth_model`, `sacct_hd_prop_mouth_texture`, `sacct_hd_prop_lefthand_model`, `sacct_hd_prop_lefthand_texture`, `sacct_hd_prop_righthand_model`, `sacct_hd_prop_righthand_texture`, `sacct_hd_prop_leftwrist_model`, `sacct_hd_prop_leftwrist_texture`, `sacct_hd_prop_rightwrist_model`, `sacct_hd_prop_rightwrist_texture`, `sacct_hd_prop_hip_model`, `sacct_hd_prop_hip_texture`, `sacct_hd_prop_leftfoot_model`, `sacct_hd_prop_leftfoot_texture`, `sacct_hd_prop_rightfoot_model`, `sacct_hd_prop_rightfoot_texture`, `sacct_voice`) VALUES + (8, 1, 4, 'Takeshi', 'Mikio', '', '01/01/1901', 'Liberty City', 0, 0, 0, 0, '0', '', 0, '', 0, 1561.49, -2309.5, 13.5489, 2.20509, 1000, 0, 26, 100, 0, 0, 0, 1611088103, 0, 0, 0, 0, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `sacct_main` (`sacct_id`, `sacct_acct`, `sacct_server`, `sacct_name_first`, `sacct_name_last`, `sacct_name_middle`, `sacct_when_born`, `sacct_origin`, `sacct_job`, `sacct_clan`, `sacct_clan_rank`, `sacct_clan_flags`, `sacct_clan_title`, `sacct_clan_tag`, `sacct_last_ip`, `sacct_last_uid`, `sacct_total_time`, `sacct_pos_x`, `sacct_pos_y`, `sacct_pos_z`, `sacct_angle`, `sacct_cash`, `sacct_bank`, `sacct_skin`, `sacct_health`, `sacct_armour`, `sacct_licenses`, `sacct_last_session`, `sacct_when_made`, `sacct_when_lastlogin`, `sacct_arrest_state`, `sacct_arrest_time`, `sacct_int`, `sacct_vw`, `sacct_needs_setup`, `sacct_scale_x`, `sacct_scale_y`, `sacct_scale_z`, `sacct_walkstyle`, `sacct_fightstyle`, `sacct_hd_part_hair_model`, `sacct_hd_part_hair_texture`, `sacct_hd_part_head_model`, `sacct_hd_part_head_texture`, `sacct_hd_part_upper_model`, `sacct_hd_part_upper_texture`, `sacct_hd_part_lower_model`, `sacct_hd_part_lower_texture`, `sacct_hd_part_feet_model`, `sacct_hd_part_feet_texture`, `sacct_hd_part_hands_model`, `sacct_hd_part_hands_texture`, `sacct_hd_prop_hair_model`, `sacct_hd_prop_hair_texture`, `sacct_hd_prop_head_model`, `sacct_hd_prop_head_texture`, `sacct_hd_prop_eyes_model`, `sacct_hd_prop_eyes_texture`, `sacct_hd_prop_ears_model`, `sacct_hd_prop_ears_texture`, `sacct_hd_prop_mouth_model`, `sacct_hd_prop_mouth_texture`, `sacct_hd_prop_lefthand_model`, `sacct_hd_prop_lefthand_texture`, `sacct_hd_prop_righthand_model`, `sacct_hd_prop_righthand_texture`, `sacct_hd_prop_leftwrist_model`, `sacct_hd_prop_leftwrist_texture`, `sacct_hd_prop_rightwrist_model`, `sacct_hd_prop_rightwrist_texture`, `sacct_hd_prop_hip_model`, `sacct_hd_prop_hip_texture`, `sacct_hd_prop_leftfoot_model`, `sacct_hd_prop_leftfoot_texture`, `sacct_hd_prop_rightfoot_model`, `sacct_hd_prop_rightfoot_texture`, `sacct_voice`) VALUES + (9, 1, 2, 'Toni', 'Salieri', '', '26/7/1990', 'Liberty City', 0, 0, 0, 0, '', '', 0, '', 0, -708.918, 179.315, 11.0712, 2.94625, 1000, 0, 115, 100, 0, 0, 0, 1611526552, 0, 0, 0, 0, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `sacct_main` (`sacct_id`, `sacct_acct`, `sacct_server`, `sacct_name_first`, `sacct_name_last`, `sacct_name_middle`, `sacct_when_born`, `sacct_origin`, `sacct_job`, `sacct_clan`, `sacct_clan_rank`, `sacct_clan_flags`, `sacct_clan_title`, `sacct_clan_tag`, `sacct_last_ip`, `sacct_last_uid`, `sacct_total_time`, `sacct_pos_x`, `sacct_pos_y`, `sacct_pos_z`, `sacct_angle`, `sacct_cash`, `sacct_bank`, `sacct_skin`, `sacct_health`, `sacct_armour`, `sacct_licenses`, `sacct_last_session`, `sacct_when_made`, `sacct_when_lastlogin`, `sacct_arrest_state`, `sacct_arrest_time`, `sacct_int`, `sacct_vw`, `sacct_needs_setup`, `sacct_scale_x`, `sacct_scale_y`, `sacct_scale_z`, `sacct_walkstyle`, `sacct_fightstyle`, `sacct_hd_part_hair_model`, `sacct_hd_part_hair_texture`, `sacct_hd_part_head_model`, `sacct_hd_part_head_texture`, `sacct_hd_part_upper_model`, `sacct_hd_part_upper_texture`, `sacct_hd_part_lower_model`, `sacct_hd_part_lower_texture`, `sacct_hd_part_feet_model`, `sacct_hd_part_feet_texture`, `sacct_hd_part_hands_model`, `sacct_hd_part_hands_texture`, `sacct_hd_prop_hair_model`, `sacct_hd_prop_hair_texture`, `sacct_hd_prop_head_model`, `sacct_hd_prop_head_texture`, `sacct_hd_prop_eyes_model`, `sacct_hd_prop_eyes_texture`, `sacct_hd_prop_ears_model`, `sacct_hd_prop_ears_texture`, `sacct_hd_prop_mouth_model`, `sacct_hd_prop_mouth_texture`, `sacct_hd_prop_lefthand_model`, `sacct_hd_prop_lefthand_texture`, `sacct_hd_prop_righthand_model`, `sacct_hd_prop_righthand_texture`, `sacct_hd_prop_leftwrist_model`, `sacct_hd_prop_leftwrist_texture`, `sacct_hd_prop_rightwrist_model`, `sacct_hd_prop_rightwrist_texture`, `sacct_hd_prop_hip_model`, `sacct_hd_prop_hip_texture`, `sacct_hd_prop_leftfoot_model`, `sacct_hd_prop_leftfoot_texture`, `sacct_hd_prop_rightfoot_model`, `sacct_hd_prop_rightfoot_texture`, `sacct_voice`) VALUES + (11, 9, 1, 'Jack', 'Powell', '', '1/1/2000', 'Liberty City', 0, 0, 0, 0, '', '', 0, '', 0, 1038.4, -666.7, 14.97, 1, 1000, 0, 12, 100, 0, 0, 0, 1613340636, 0, 0, 0, 0, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `sacct_main` (`sacct_id`, `sacct_acct`, `sacct_server`, `sacct_name_first`, `sacct_name_last`, `sacct_name_middle`, `sacct_when_born`, `sacct_origin`, `sacct_job`, `sacct_clan`, `sacct_clan_rank`, `sacct_clan_flags`, `sacct_clan_title`, `sacct_clan_tag`, `sacct_last_ip`, `sacct_last_uid`, `sacct_total_time`, `sacct_pos_x`, `sacct_pos_y`, `sacct_pos_z`, `sacct_angle`, `sacct_cash`, `sacct_bank`, `sacct_skin`, `sacct_health`, `sacct_armour`, `sacct_licenses`, `sacct_last_session`, `sacct_when_made`, `sacct_when_lastlogin`, `sacct_arrest_state`, `sacct_arrest_time`, `sacct_int`, `sacct_vw`, `sacct_needs_setup`, `sacct_scale_x`, `sacct_scale_y`, `sacct_scale_z`, `sacct_walkstyle`, `sacct_fightstyle`, `sacct_hd_part_hair_model`, `sacct_hd_part_hair_texture`, `sacct_hd_part_head_model`, `sacct_hd_part_head_texture`, `sacct_hd_part_upper_model`, `sacct_hd_part_upper_texture`, `sacct_hd_part_lower_model`, `sacct_hd_part_lower_texture`, `sacct_hd_part_feet_model`, `sacct_hd_part_feet_texture`, `sacct_hd_part_hands_model`, `sacct_hd_part_hands_texture`, `sacct_hd_prop_hair_model`, `sacct_hd_prop_hair_texture`, `sacct_hd_prop_head_model`, `sacct_hd_prop_head_texture`, `sacct_hd_prop_eyes_model`, `sacct_hd_prop_eyes_texture`, `sacct_hd_prop_ears_model`, `sacct_hd_prop_ears_texture`, `sacct_hd_prop_mouth_model`, `sacct_hd_prop_mouth_texture`, `sacct_hd_prop_lefthand_model`, `sacct_hd_prop_lefthand_texture`, `sacct_hd_prop_righthand_model`, `sacct_hd_prop_righthand_texture`, `sacct_hd_prop_leftwrist_model`, `sacct_hd_prop_leftwrist_texture`, `sacct_hd_prop_rightwrist_model`, `sacct_hd_prop_rightwrist_texture`, `sacct_hd_prop_hip_model`, `sacct_hd_prop_hip_texture`, `sacct_hd_prop_leftfoot_model`, `sacct_hd_prop_leftfoot_texture`, `sacct_hd_prop_rightfoot_model`, `sacct_hd_prop_rightfoot_texture`, `sacct_voice`) VALUES + (12, 9, 4, 'Jack', 'Powell', '', '01/01/1901', 'Liberty City', 0, 0, 0, 0, '', '', 0, '', 0, 1632.49, -2331.96, 13.547, -0.005, 1000, 0, 26, 100, 0, 0, 0, 1613341663, 0, 0, 0, 0, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `sacct_main` (`sacct_id`, `sacct_acct`, `sacct_server`, `sacct_name_first`, `sacct_name_last`, `sacct_name_middle`, `sacct_when_born`, `sacct_origin`, `sacct_job`, `sacct_clan`, `sacct_clan_rank`, `sacct_clan_flags`, `sacct_clan_title`, `sacct_clan_tag`, `sacct_last_ip`, `sacct_last_uid`, `sacct_total_time`, `sacct_pos_x`, `sacct_pos_y`, `sacct_pos_z`, `sacct_angle`, `sacct_cash`, `sacct_bank`, `sacct_skin`, `sacct_health`, `sacct_armour`, `sacct_licenses`, `sacct_last_session`, `sacct_when_made`, `sacct_when_lastlogin`, `sacct_arrest_state`, `sacct_arrest_time`, `sacct_int`, `sacct_vw`, `sacct_needs_setup`, `sacct_scale_x`, `sacct_scale_y`, `sacct_scale_z`, `sacct_walkstyle`, `sacct_fightstyle`, `sacct_hd_part_hair_model`, `sacct_hd_part_hair_texture`, `sacct_hd_part_head_model`, `sacct_hd_part_head_texture`, `sacct_hd_part_upper_model`, `sacct_hd_part_upper_texture`, `sacct_hd_part_lower_model`, `sacct_hd_part_lower_texture`, `sacct_hd_part_feet_model`, `sacct_hd_part_feet_texture`, `sacct_hd_part_hands_model`, `sacct_hd_part_hands_texture`, `sacct_hd_prop_hair_model`, `sacct_hd_prop_hair_texture`, `sacct_hd_prop_head_model`, `sacct_hd_prop_head_texture`, `sacct_hd_prop_eyes_model`, `sacct_hd_prop_eyes_texture`, `sacct_hd_prop_ears_model`, `sacct_hd_prop_ears_texture`, `sacct_hd_prop_mouth_model`, `sacct_hd_prop_mouth_texture`, `sacct_hd_prop_lefthand_model`, `sacct_hd_prop_lefthand_texture`, `sacct_hd_prop_righthand_model`, `sacct_hd_prop_righthand_texture`, `sacct_hd_prop_leftwrist_model`, `sacct_hd_prop_leftwrist_texture`, `sacct_hd_prop_rightwrist_model`, `sacct_hd_prop_rightwrist_texture`, `sacct_hd_prop_hip_model`, `sacct_hd_prop_hip_texture`, `sacct_hd_prop_leftfoot_model`, `sacct_hd_prop_leftfoot_texture`, `sacct_hd_prop_rightfoot_model`, `sacct_hd_prop_rightfoot_texture`, `sacct_voice`) VALUES + (13, 2, 4, 'Maxle', 'Face', '', '01/01/1901', 'Liberty City', 0, 0, 0, 0, '', '', 0, '', 0, 1632.49, -2331.96, 13.547, -0.005, 1000, 0, 26, 100, 0, 0, 0, 1613341696, 0, 0, 0, 0, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `sacct_main` (`sacct_id`, `sacct_acct`, `sacct_server`, `sacct_name_first`, `sacct_name_last`, `sacct_name_middle`, `sacct_when_born`, `sacct_origin`, `sacct_job`, `sacct_clan`, `sacct_clan_rank`, `sacct_clan_flags`, `sacct_clan_title`, `sacct_clan_tag`, `sacct_last_ip`, `sacct_last_uid`, `sacct_total_time`, `sacct_pos_x`, `sacct_pos_y`, `sacct_pos_z`, `sacct_angle`, `sacct_cash`, `sacct_bank`, `sacct_skin`, `sacct_health`, `sacct_armour`, `sacct_licenses`, `sacct_last_session`, `sacct_when_made`, `sacct_when_lastlogin`, `sacct_arrest_state`, `sacct_arrest_time`, `sacct_int`, `sacct_vw`, `sacct_needs_setup`, `sacct_scale_x`, `sacct_scale_y`, `sacct_scale_z`, `sacct_walkstyle`, `sacct_fightstyle`, `sacct_hd_part_hair_model`, `sacct_hd_part_hair_texture`, `sacct_hd_part_head_model`, `sacct_hd_part_head_texture`, `sacct_hd_part_upper_model`, `sacct_hd_part_upper_texture`, `sacct_hd_part_lower_model`, `sacct_hd_part_lower_texture`, `sacct_hd_part_feet_model`, `sacct_hd_part_feet_texture`, `sacct_hd_part_hands_model`, `sacct_hd_part_hands_texture`, `sacct_hd_prop_hair_model`, `sacct_hd_prop_hair_texture`, `sacct_hd_prop_head_model`, `sacct_hd_prop_head_texture`, `sacct_hd_prop_eyes_model`, `sacct_hd_prop_eyes_texture`, `sacct_hd_prop_ears_model`, `sacct_hd_prop_ears_texture`, `sacct_hd_prop_mouth_model`, `sacct_hd_prop_mouth_texture`, `sacct_hd_prop_lefthand_model`, `sacct_hd_prop_lefthand_texture`, `sacct_hd_prop_righthand_model`, `sacct_hd_prop_righthand_texture`, `sacct_hd_prop_leftwrist_model`, `sacct_hd_prop_leftwrist_texture`, `sacct_hd_prop_rightwrist_model`, `sacct_hd_prop_rightwrist_texture`, `sacct_hd_prop_hip_model`, `sacct_hd_prop_hip_texture`, `sacct_hd_prop_leftfoot_model`, `sacct_hd_prop_leftfoot_texture`, `sacct_hd_prop_rightfoot_model`, `sacct_hd_prop_rightfoot_texture`, `sacct_voice`) VALUES + (15, 1, 3, 'Takeshi', 'Mikio', '', '24/6/1991', 'Las Venturas', 0, 0, 0, 0, '', '', 0, '', 0, 2364.28, 387.27, 6.085, 2.434, 1000, 0, -1084007777, 100, 0, 0, 0, 1613344317, 0, 0, 0, 0, 0, 0, 1, 1, 1, 0, 0, 1, 0, 0, 1, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `sacct_main` (`sacct_id`, `sacct_acct`, `sacct_server`, `sacct_name_first`, `sacct_name_last`, `sacct_name_middle`, `sacct_when_born`, `sacct_origin`, `sacct_job`, `sacct_clan`, `sacct_clan_rank`, `sacct_clan_flags`, `sacct_clan_title`, `sacct_clan_tag`, `sacct_last_ip`, `sacct_last_uid`, `sacct_total_time`, `sacct_pos_x`, `sacct_pos_y`, `sacct_pos_z`, `sacct_angle`, `sacct_cash`, `sacct_bank`, `sacct_skin`, `sacct_health`, `sacct_armour`, `sacct_licenses`, `sacct_last_session`, `sacct_when_made`, `sacct_when_lastlogin`, `sacct_arrest_state`, `sacct_arrest_time`, `sacct_int`, `sacct_vw`, `sacct_needs_setup`, `sacct_scale_x`, `sacct_scale_y`, `sacct_scale_z`, `sacct_walkstyle`, `sacct_fightstyle`, `sacct_hd_part_hair_model`, `sacct_hd_part_hair_texture`, `sacct_hd_part_head_model`, `sacct_hd_part_head_texture`, `sacct_hd_part_upper_model`, `sacct_hd_part_upper_texture`, `sacct_hd_part_lower_model`, `sacct_hd_part_lower_texture`, `sacct_hd_part_feet_model`, `sacct_hd_part_feet_texture`, `sacct_hd_part_hands_model`, `sacct_hd_part_hands_texture`, `sacct_hd_prop_hair_model`, `sacct_hd_prop_hair_texture`, `sacct_hd_prop_head_model`, `sacct_hd_prop_head_texture`, `sacct_hd_prop_eyes_model`, `sacct_hd_prop_eyes_texture`, `sacct_hd_prop_ears_model`, `sacct_hd_prop_ears_texture`, `sacct_hd_prop_mouth_model`, `sacct_hd_prop_mouth_texture`, `sacct_hd_prop_lefthand_model`, `sacct_hd_prop_lefthand_texture`, `sacct_hd_prop_righthand_model`, `sacct_hd_prop_righthand_texture`, `sacct_hd_prop_leftwrist_model`, `sacct_hd_prop_leftwrist_texture`, `sacct_hd_prop_rightwrist_model`, `sacct_hd_prop_rightwrist_texture`, `sacct_hd_prop_hip_model`, `sacct_hd_prop_hip_texture`, `sacct_hd_prop_leftfoot_model`, `sacct_hd_prop_leftfoot_texture`, `sacct_hd_prop_rightfoot_model`, `sacct_hd_prop_rightfoot_texture`, `sacct_voice`) VALUES + (16, 2, 3, 'Maxle', 'Face', '', '4/1/2000', 'San Andreas', 0, 0, 0, 0, '', '', 0, '', 0, 2364.28, 387.27, 6.085, 2.434, 1000, 0, -999506922, 100, 0, 0, 0, 1613344854, 0, 0, 0, 0, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `sacct_main` (`sacct_id`, `sacct_acct`, `sacct_server`, `sacct_name_first`, `sacct_name_last`, `sacct_name_middle`, `sacct_when_born`, `sacct_origin`, `sacct_job`, `sacct_clan`, `sacct_clan_rank`, `sacct_clan_flags`, `sacct_clan_title`, `sacct_clan_tag`, `sacct_last_ip`, `sacct_last_uid`, `sacct_total_time`, `sacct_pos_x`, `sacct_pos_y`, `sacct_pos_z`, `sacct_angle`, `sacct_cash`, `sacct_bank`, `sacct_skin`, `sacct_health`, `sacct_armour`, `sacct_licenses`, `sacct_last_session`, `sacct_when_made`, `sacct_when_lastlogin`, `sacct_arrest_state`, `sacct_arrest_time`, `sacct_int`, `sacct_vw`, `sacct_needs_setup`, `sacct_scale_x`, `sacct_scale_y`, `sacct_scale_z`, `sacct_walkstyle`, `sacct_fightstyle`, `sacct_hd_part_hair_model`, `sacct_hd_part_hair_texture`, `sacct_hd_part_head_model`, `sacct_hd_part_head_texture`, `sacct_hd_part_upper_model`, `sacct_hd_part_upper_texture`, `sacct_hd_part_lower_model`, `sacct_hd_part_lower_texture`, `sacct_hd_part_feet_model`, `sacct_hd_part_feet_texture`, `sacct_hd_part_hands_model`, `sacct_hd_part_hands_texture`, `sacct_hd_prop_hair_model`, `sacct_hd_prop_hair_texture`, `sacct_hd_prop_head_model`, `sacct_hd_prop_head_texture`, `sacct_hd_prop_eyes_model`, `sacct_hd_prop_eyes_texture`, `sacct_hd_prop_ears_model`, `sacct_hd_prop_ears_texture`, `sacct_hd_prop_mouth_model`, `sacct_hd_prop_mouth_texture`, `sacct_hd_prop_lefthand_model`, `sacct_hd_prop_lefthand_texture`, `sacct_hd_prop_righthand_model`, `sacct_hd_prop_righthand_texture`, `sacct_hd_prop_leftwrist_model`, `sacct_hd_prop_leftwrist_texture`, `sacct_hd_prop_rightwrist_model`, `sacct_hd_prop_rightwrist_texture`, `sacct_hd_prop_hip_model`, `sacct_hd_prop_hip_texture`, `sacct_hd_prop_leftfoot_model`, `sacct_hd_prop_leftfoot_texture`, `sacct_hd_prop_rightfoot_model`, `sacct_hd_prop_rightfoot_texture`, `sacct_voice`) VALUES + (17, 2, 3, 'Maaaaaaxle', 'Faaaaaace', '', '1/1/2019', 'Vice City', 0, 0, 0, 0, '', '', 0, '', 0, 2364.28, 387.27, 6.085, 2.434, 1000, 0, -1646893330, 100, 0, 0, 0, 1613870077, 0, 0, 0, 0, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `sacct_main` (`sacct_id`, `sacct_acct`, `sacct_server`, `sacct_name_first`, `sacct_name_last`, `sacct_name_middle`, `sacct_when_born`, `sacct_origin`, `sacct_job`, `sacct_clan`, `sacct_clan_rank`, `sacct_clan_flags`, `sacct_clan_title`, `sacct_clan_tag`, `sacct_last_ip`, `sacct_last_uid`, `sacct_total_time`, `sacct_pos_x`, `sacct_pos_y`, `sacct_pos_z`, `sacct_angle`, `sacct_cash`, `sacct_bank`, `sacct_skin`, `sacct_health`, `sacct_armour`, `sacct_licenses`, `sacct_last_session`, `sacct_when_made`, `sacct_when_lastlogin`, `sacct_arrest_state`, `sacct_arrest_time`, `sacct_int`, `sacct_vw`, `sacct_needs_setup`, `sacct_scale_x`, `sacct_scale_y`, `sacct_scale_z`, `sacct_walkstyle`, `sacct_fightstyle`, `sacct_hd_part_hair_model`, `sacct_hd_part_hair_texture`, `sacct_hd_part_head_model`, `sacct_hd_part_head_texture`, `sacct_hd_part_upper_model`, `sacct_hd_part_upper_texture`, `sacct_hd_part_lower_model`, `sacct_hd_part_lower_texture`, `sacct_hd_part_feet_model`, `sacct_hd_part_feet_texture`, `sacct_hd_part_hands_model`, `sacct_hd_part_hands_texture`, `sacct_hd_prop_hair_model`, `sacct_hd_prop_hair_texture`, `sacct_hd_prop_head_model`, `sacct_hd_prop_head_texture`, `sacct_hd_prop_eyes_model`, `sacct_hd_prop_eyes_texture`, `sacct_hd_prop_ears_model`, `sacct_hd_prop_ears_texture`, `sacct_hd_prop_mouth_model`, `sacct_hd_prop_mouth_texture`, `sacct_hd_prop_lefthand_model`, `sacct_hd_prop_lefthand_texture`, `sacct_hd_prop_righthand_model`, `sacct_hd_prop_righthand_texture`, `sacct_hd_prop_leftwrist_model`, `sacct_hd_prop_leftwrist_texture`, `sacct_hd_prop_rightwrist_model`, `sacct_hd_prop_rightwrist_texture`, `sacct_hd_prop_hip_model`, `sacct_hd_prop_hip_texture`, `sacct_hd_prop_leftfoot_model`, `sacct_hd_prop_leftfoot_texture`, `sacct_hd_prop_rightfoot_model`, `sacct_hd_prop_rightfoot_texture`, `sacct_voice`) VALUES + (18, 1, 3, 'Ryan', 'Stokes', '', '1/1/2021', 'Las Venturas', 0, 0, 0, 0, '', '', 0, '', 0, 2364.28, 387.27, 6.085, 2.434, 1000, 0, -200234085, 100, 0, 0, 0, 1613870343, 0, 0, 0, 0, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `sacct_main` (`sacct_id`, `sacct_acct`, `sacct_server`, `sacct_name_first`, `sacct_name_last`, `sacct_name_middle`, `sacct_when_born`, `sacct_origin`, `sacct_job`, `sacct_clan`, `sacct_clan_rank`, `sacct_clan_flags`, `sacct_clan_title`, `sacct_clan_tag`, `sacct_last_ip`, `sacct_last_uid`, `sacct_total_time`, `sacct_pos_x`, `sacct_pos_y`, `sacct_pos_z`, `sacct_angle`, `sacct_cash`, `sacct_bank`, `sacct_skin`, `sacct_health`, `sacct_armour`, `sacct_licenses`, `sacct_last_session`, `sacct_when_made`, `sacct_when_lastlogin`, `sacct_arrest_state`, `sacct_arrest_time`, `sacct_int`, `sacct_vw`, `sacct_needs_setup`, `sacct_scale_x`, `sacct_scale_y`, `sacct_scale_z`, `sacct_walkstyle`, `sacct_fightstyle`, `sacct_hd_part_hair_model`, `sacct_hd_part_hair_texture`, `sacct_hd_part_head_model`, `sacct_hd_part_head_texture`, `sacct_hd_part_upper_model`, `sacct_hd_part_upper_texture`, `sacct_hd_part_lower_model`, `sacct_hd_part_lower_texture`, `sacct_hd_part_feet_model`, `sacct_hd_part_feet_texture`, `sacct_hd_part_hands_model`, `sacct_hd_part_hands_texture`, `sacct_hd_prop_hair_model`, `sacct_hd_prop_hair_texture`, `sacct_hd_prop_head_model`, `sacct_hd_prop_head_texture`, `sacct_hd_prop_eyes_model`, `sacct_hd_prop_eyes_texture`, `sacct_hd_prop_ears_model`, `sacct_hd_prop_ears_texture`, `sacct_hd_prop_mouth_model`, `sacct_hd_prop_mouth_texture`, `sacct_hd_prop_lefthand_model`, `sacct_hd_prop_lefthand_texture`, `sacct_hd_prop_righthand_model`, `sacct_hd_prop_righthand_texture`, `sacct_hd_prop_leftwrist_model`, `sacct_hd_prop_leftwrist_texture`, `sacct_hd_prop_rightwrist_model`, `sacct_hd_prop_rightwrist_texture`, `sacct_hd_prop_hip_model`, `sacct_hd_prop_hip_texture`, `sacct_hd_prop_leftfoot_model`, `sacct_hd_prop_leftfoot_texture`, `sacct_hd_prop_rightfoot_model`, `sacct_hd_prop_rightfoot_texture`, `sacct_voice`) VALUES + (19, 9, 3, 'Jack', 'Powell', '', '1/1/2000', 'Liberty City', 0, 0, 0, 0, '', '', 0, '', 0, 2364.28, 387.27, 6.085, 2.434, 1000, 0, -1927496394, 100, 0, 0, 0, 1614050469, 0, 0, 0, 0, 0, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +/*!40000 ALTER TABLE `sacct_main` ENABLE KEYS */; + +-- Dumping structure for table gtac_main.sacct_pay +CREATE TABLE IF NOT EXISTS `sacct_pay` ( + `sacct_pay_id` int(11) NOT NULL AUTO_INCREMENT, + `sacct_pay_server` int(11) NOT NULL DEFAULT '0', + `sacct_pay_from_sacct_id` int(11) NOT NULL DEFAULT '0', + `sacct_pay_to_sacct_id` int(11) NOT NULL DEFAULT '0', + `sacct_pay_amount` int(11) NOT NULL DEFAULT '0', + `sacct_pay_when` int(32) NOT NULL DEFAULT '0', + `sacct_pay_pos_x` float NOT NULL DEFAULT '0', + `sacct_pay_pos_y` float NOT NULL DEFAULT '0', + `sacct_pay_pos_z` float NOT NULL DEFAULT '0', + PRIMARY KEY (`sacct_pay_id`) +) ENGINE=InnoDB DEFAULT CHARSET=latin1 COMMENT='Sub Accounts - Cash Exchanges'; + +-- Dumping data for table gtac_main.sacct_pay: ~0 rows (approximately) +/*!40000 ALTER TABLE `sacct_pay` DISABLE KEYS */; +/*!40000 ALTER TABLE `sacct_pay` ENABLE KEYS */; + +-- Dumping structure for table gtac_main.sacct_stat +CREATE TABLE IF NOT EXISTS `sacct_stat` ( + `sacct_stat_id` int(32) NOT NULL DEFAULT '0', + `sacct_stat_sacct` int(32) NOT NULL DEFAULT '0', + `sacct_stat_max_kill_streak` int(32) NOT NULL DEFAULT '0', + `sacct_stat_furthest_headshot` float NOT NULL DEFAULT '0', + `sacct_stat_packages_picked` int(32) NOT NULL DEFAULT '0', + `sacct_stat_health_picked` int(32) NOT NULL DEFAULT '0', + `sacct_stat_weapons_picked` int(32) NOT NULL DEFAULT '0', + `sacct_stat_armour_picked` int(32) NOT NULL DEFAULT '0', + `sacct_stat_distance_foot` float NOT NULL DEFAULT '0', + `sacct_stat_distance_car` float NOT NULL DEFAULT '0', + `sacct_stat_distance_boat` float NOT NULL DEFAULT '0', + `sacct_stat_distance_plane` float NOT NULL DEFAULT '0', + `sacct_stat_longest_server_time` int(32) NOT NULL DEFAULT '0', + `sacct_stat_veh_resprays` int(32) NOT NULL DEFAULT '0', + `sacct_stat_wanted_veh_resprays` int(32) NOT NULL DEFAULT '0', + `sacct_stat_spent_on_weapons` int(32) NOT NULL DEFAULT '0', + `sacct_stat_weapons_purchased` int(32) NOT NULL DEFAULT '0', + `sacct_stat_businesses_purchased` int(32) NOT NULL DEFAULT '0', + `sacct_stat_houses_purchased` int(32) NOT NULL DEFAULT '0', + `sacct_stat_times_busted` int(32) NOT NULL DEFAULT '0', + `sacct_stat_stars_obtained` int(32) NOT NULL DEFAULT '0', + `sacct_stat_stars_evaded` int(32) NOT NULL DEFAULT '0', + `sacct_stat_highest_wanted_level` int(32) NOT NULL DEFAULT '0', + PRIMARY KEY (`sacct_stat_id`) +) ENGINE=InnoDB DEFAULT CHARSET=latin1 COMMENT='Subaccounts - Stats'; + +-- Dumping data for table gtac_main.sacct_stat: ~0 rows (approximately) +/*!40000 ALTER TABLE `sacct_stat` DISABLE KEYS */; +/*!40000 ALTER TABLE `sacct_stat` ENABLE KEYS */; + +-- Dumping structure for table gtac_main.sacct_svr +CREATE TABLE IF NOT EXISTS `sacct_svr` ( + `sacct_svr_id` int(11) NOT NULL AUTO_INCREMENT, + `sacct_svr_sacct` int(11) NOT NULL DEFAULT '0', + `sacct_svr_model` int(11) NOT NULL DEFAULT '0', + `sacct_svr_head_model` int(11) NOT NULL DEFAULT '0', + `sacct_svr_head_texture` int(11) NOT NULL DEFAULT '0', + `sacct_svr_upper_model` int(11) NOT NULL DEFAULT '0', + `sacct_svr_upper_texture` int(11) NOT NULL DEFAULT '0', + `sacct_svr_lower_model` int(11) NOT NULL DEFAULT '0', + `sacct_svr_lower_texture` int(11) NOT NULL DEFAULT '0', + `sacct_svr_scale_x` float NOT NULL DEFAULT '1', + `sacct_svr_scale_y` float NOT NULL DEFAULT '1', + `sacct_svr_scale_z` float NOT NULL DEFAULT '1', + PRIMARY KEY (`sacct_svr_id`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci COMMENT='Subaccounts - Per-Server Data'; + +-- Dumping data for table gtac_main.sacct_svr: ~0 rows (approximately) +/*!40000 ALTER TABLE `sacct_svr` DISABLE KEYS */; +/*!40000 ALTER TABLE `sacct_svr` ENABLE KEYS */; + +-- Dumping structure for table gtac_main.sus_main +CREATE TABLE IF NOT EXISTS `sus_main` ( + `sus_id` int(11) NOT NULL AUTO_INCREMENT, + `sus_server` tinyint(2) NOT NULL DEFAULT '0', + `sus_suspect` int(11) NOT NULL DEFAULT '0', + `sus_officer` int(11) NOT NULL DEFAULT '0', + `sus_minutes` int(11) NOT NULL DEFAULT '0', + `sus_reason` varchar(128) NOT NULL DEFAULT '', + `sus_state` int(11) NOT NULL DEFAULT '0', + PRIMARY KEY (`sus_id`) +) ENGINE=InnoDB DEFAULT CHARSET=latin1 COMMENT='Crimes'; + +-- Dumping data for table gtac_main.sus_main: ~0 rows (approximately) +/*!40000 ALTER TABLE `sus_main` DISABLE KEYS */; +/*!40000 ALTER TABLE `sus_main` ENABLE KEYS */; + +-- Dumping structure for table gtac_main.svr_main +CREATE TABLE IF NOT EXISTS `svr_main` ( + `svr_id` int(11) NOT NULL AUTO_INCREMENT, + `svr_name` varchar(50) NOT NULL DEFAULT '0', + `svr_game` int(11) NOT NULL DEFAULT '0', + `svr_port` int(11) NOT NULL DEFAULT '0', + `svr_password` varchar(50) NOT NULL DEFAULT '0', + `svr_start_time_hour` int(11) NOT NULL DEFAULT '0', + `svr_start_time_min` int(11) NOT NULL DEFAULT '0', + `svr_start_weather` int(11) NOT NULL DEFAULT '0', + `svr_start_snow_falling` tinyint(1) NOT NULL DEFAULT '0', + `svr_start_snow_ground` tinyint(1) NOT NULL DEFAULT '0', + `svr_newchar_pos_x` float NOT NULL DEFAULT '0', + `svr_newchar_pos_y` float NOT NULL DEFAULT '0', + `svr_newchar_pos_z` float NOT NULL DEFAULT '0', + `svr_newchar_rot_z` float NOT NULL DEFAULT '0', + `svr_newchar_money` int(11) NOT NULL DEFAULT '0', + `svr_newchar_bank` int(11) NOT NULL DEFAULT '0', + `svr_newchar_skin` int(11) NOT NULL DEFAULT '0', + `svr_manager` int(11) NOT NULL DEFAULT '0', + `svr_connectcam_pos_x` float NOT NULL DEFAULT '0', + `svr_connectcam_pos_y` float NOT NULL DEFAULT '0', + `svr_connectcam_pos_z` float NOT NULL DEFAULT '0', + `svr_connectcam_lookat_x` float NOT NULL DEFAULT '0', + `svr_connectcam_lookat_y` float NOT NULL DEFAULT '0', + `svr_connectcam_lookat_z` float NOT NULL DEFAULT '0', + `svr_gui` tinyint(1) NOT NULL DEFAULT '1', + `svr_gui_col1_r` smallint(6) NOT NULL DEFAULT '200', + `svr_gui_col1_g` smallint(6) NOT NULL DEFAULT '200', + `svr_gui_col1_b` smallint(6) NOT NULL DEFAULT '200', + `svr_logo` tinyint(1) NOT NULL DEFAULT '1', + `svr_ac_enabled` tinyint(1) NOT NULL DEFAULT '1', + `svr_ac_check_scripts` tinyint(1) NOT NULL DEFAULT '1', + `svr_ac_script_wl` tinyint(1) NOT NULL DEFAULT '0', + `svr_ac_script_bl` tinyint(1) NOT NULL DEFAULT '1', + `svr_inflation_multiplier` float NOT NULL DEFAULT '1', + `svr_job_pickups` tinyint(1) DEFAULT '1', + `svr_job_blips` tinyint(1) DEFAULT '1', + `svr_biz_pickups` tinyint(1) DEFAULT '1', + `svr_biz_blips` tinyint(1) DEFAULT '1', + `svr_house_pickups` tinyint(1) DEFAULT '1', + `svr_house_blips` tinyint(1) DEFAULT '1', + `svr_discord_bot_enabled` tinyint(1) DEFAULT '0', + `svr_discord_bot` int(11) DEFAULT '0', + `svr_time_min_duration` int(11) NOT NULL DEFAULT '60000', + PRIMARY KEY (`svr_id`) +) ENGINE=InnoDB AUTO_INCREMENT=5 DEFAULT CHARSET=utf8 COMMENT='Servers'; + +-- Dumping data for table gtac_main.svr_main: ~4 rows (approximately) +/*!40000 ALTER TABLE `svr_main` DISABLE KEYS */; +INSERT INTO `svr_main` (`svr_id`, `svr_name`, `svr_game`, `svr_port`, `svr_password`, `svr_start_time_hour`, `svr_start_time_min`, `svr_start_weather`, `svr_start_snow_falling`, `svr_start_snow_ground`, `svr_newchar_pos_x`, `svr_newchar_pos_y`, `svr_newchar_pos_z`, `svr_newchar_rot_z`, `svr_newchar_money`, `svr_newchar_bank`, `svr_newchar_skin`, `svr_manager`, `svr_connectcam_pos_x`, `svr_connectcam_pos_y`, `svr_connectcam_pos_z`, `svr_connectcam_lookat_x`, `svr_connectcam_lookat_y`, `svr_connectcam_lookat_z`, `svr_gui`, `svr_gui_col1_r`, `svr_gui_col1_g`, `svr_gui_col1_b`, `svr_logo`, `svr_ac_enabled`, `svr_ac_check_scripts`, `svr_ac_script_wl`, `svr_ac_script_bl`, `svr_inflation_multiplier`, `svr_job_pickups`, `svr_job_blips`, `svr_biz_pickups`, `svr_biz_blips`, `svr_house_pickups`, `svr_house_blips`, `svr_discord_bot_enabled`, `svr_discord_bot`, `svr_time_min_duration`) VALUES + (1, 'Asshat Gaming Roleplay (Coming soon!)', 1, 22001, 'AsshatsUnite!', 0, 0, 0, 0, 0, 1038.4, -666.7, 14.97, 1, 1000, 0, 0, 1, -1176.48, -17.694, 95.992, -1175.73, -17.055, 95.847, 1, 40, 110, 185, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 60000); +INSERT INTO `svr_main` (`svr_id`, `svr_name`, `svr_game`, `svr_port`, `svr_password`, `svr_start_time_hour`, `svr_start_time_min`, `svr_start_weather`, `svr_start_snow_falling`, `svr_start_snow_ground`, `svr_newchar_pos_x`, `svr_newchar_pos_y`, `svr_newchar_pos_z`, `svr_newchar_rot_z`, `svr_newchar_money`, `svr_newchar_bank`, `svr_newchar_skin`, `svr_manager`, `svr_connectcam_pos_x`, `svr_connectcam_pos_y`, `svr_connectcam_pos_z`, `svr_connectcam_lookat_x`, `svr_connectcam_lookat_y`, `svr_connectcam_lookat_z`, `svr_gui`, `svr_gui_col1_r`, `svr_gui_col1_g`, `svr_gui_col1_b`, `svr_logo`, `svr_ac_enabled`, `svr_ac_check_scripts`, `svr_ac_script_wl`, `svr_ac_script_bl`, `svr_inflation_multiplier`, `svr_job_pickups`, `svr_job_blips`, `svr_biz_pickups`, `svr_biz_blips`, `svr_house_pickups`, `svr_house_blips`, `svr_discord_bot_enabled`, `svr_discord_bot`, `svr_time_min_duration`) VALUES + (2, 'Asshat Gaming Roleplay (Coming soon!)', 2, 22002, 'AsshatsUnite!', 0, 0, 0, 0, 0, -708.918, 179.315, 11.0712, 2.94625, 1000, 0, 15, 1, 210.04, -1492.01, 55.071, 240.19, -1282.52, 10.902, 1, 255, 110, 199, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 60000); +INSERT INTO `svr_main` (`svr_id`, `svr_name`, `svr_game`, `svr_port`, `svr_password`, `svr_start_time_hour`, `svr_start_time_min`, `svr_start_weather`, `svr_start_snow_falling`, `svr_start_snow_ground`, `svr_newchar_pos_x`, `svr_newchar_pos_y`, `svr_newchar_pos_z`, `svr_newchar_rot_z`, `svr_newchar_money`, `svr_newchar_bank`, `svr_newchar_skin`, `svr_manager`, `svr_connectcam_pos_x`, `svr_connectcam_pos_y`, `svr_connectcam_pos_z`, `svr_connectcam_lookat_x`, `svr_connectcam_lookat_y`, `svr_connectcam_lookat_z`, `svr_gui`, `svr_gui_col1_r`, `svr_gui_col1_g`, `svr_gui_col1_b`, `svr_logo`, `svr_ac_enabled`, `svr_ac_check_scripts`, `svr_ac_script_wl`, `svr_ac_script_bl`, `svr_inflation_multiplier`, `svr_job_pickups`, `svr_job_blips`, `svr_biz_pickups`, `svr_biz_blips`, `svr_house_pickups`, `svr_house_blips`, `svr_discord_bot_enabled`, `svr_discord_bot`, `svr_time_min_duration`) VALUES + (3, 'Asshat Gaming Roleplay (Coming soon!)', 5, 22005, 'AsshatsUnite!', 0, 0, 0, 0, 0, 2364.28, 387.27, 6.085, 2.434, 1000, 0, -2020305438, 1, 8.75, -826.53, 331.072, -63.58, 240.71, 26.373, 1, 128, 128, 128, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 60000); +INSERT INTO `svr_main` (`svr_id`, `svr_name`, `svr_game`, `svr_port`, `svr_password`, `svr_start_time_hour`, `svr_start_time_min`, `svr_start_weather`, `svr_start_snow_falling`, `svr_start_snow_ground`, `svr_newchar_pos_x`, `svr_newchar_pos_y`, `svr_newchar_pos_z`, `svr_newchar_rot_z`, `svr_newchar_money`, `svr_newchar_bank`, `svr_newchar_skin`, `svr_manager`, `svr_connectcam_pos_x`, `svr_connectcam_pos_y`, `svr_connectcam_pos_z`, `svr_connectcam_lookat_x`, `svr_connectcam_lookat_y`, `svr_connectcam_lookat_z`, `svr_gui`, `svr_gui_col1_r`, `svr_gui_col1_g`, `svr_gui_col1_b`, `svr_logo`, `svr_ac_enabled`, `svr_ac_check_scripts`, `svr_ac_script_wl`, `svr_ac_script_bl`, `svr_inflation_multiplier`, `svr_job_pickups`, `svr_job_blips`, `svr_biz_pickups`, `svr_biz_blips`, `svr_house_pickups`, `svr_house_blips`, `svr_discord_bot_enabled`, `svr_discord_bot`, `svr_time_min_duration`) VALUES + (4, 'Asshat Gaming Roleplay (Coming soon!)', 3, 22003, 'AsshatsUnite!', 0, 0, 10, 0, 0, 1632.49, -2331.96, 13.547, -0.005, 1000, 0, 26, 1, 1292.31, -2037.57, 109.596, 1291.31, -2037.57, 109.171, 1, 64, 64, 64, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 0, 0, 60000); +/*!40000 ALTER TABLE `svr_main` ENABLE KEYS */; + +-- Dumping structure for table gtac_main.veh_history +CREATE TABLE IF NOT EXISTS `veh_history` ( + `veh_history_id` int(11) NOT NULL AUTO_INCREMENT, + `veh_history_veh` int(11) NOT NULL, + `veh_history_type` int(11) NOT NULL, + `veh_history_when` bigint(20) NOT NULL DEFAULT '0', + `veh_history_value` int(11) NOT NULL, + `veh_history_details` varchar(50) NOT NULL DEFAULT '', + PRIMARY KEY (`veh_history_id`), + KEY `veh_history_veh` (`veh_history_veh`), + CONSTRAINT `fk_veh_history_veh` FOREIGN KEY (`veh_history_veh`) REFERENCES `veh_main` (`veh_id`) ON DELETE CASCADE ON UPDATE CASCADE +) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Vehicle - History'; + +-- Dumping data for table gtac_main.veh_history: ~0 rows (approximately) +/*!40000 ALTER TABLE `veh_history` DISABLE KEYS */; +/*!40000 ALTER TABLE `veh_history` ENABLE KEYS */; + +-- Dumping structure for table gtac_main.veh_main +CREATE TABLE IF NOT EXISTS `veh_main` ( + `veh_id` int(11) NOT NULL AUTO_INCREMENT, + `veh_server` tinyint(2) NOT NULL DEFAULT '0', + `veh_model` int(11) NOT NULL DEFAULT '0', + `veh_col1_isrgb` tinyint(1) NOT NULL DEFAULT '0', + `veh_col2_isrgb` tinyint(1) NOT NULL DEFAULT '0', + `veh_col3_isrgb` tinyint(1) NOT NULL DEFAULT '0', + `veh_col4_isrgb` tinyint(1) NOT NULL DEFAULT '0', + `veh_col1` smallint(6) NOT NULL DEFAULT '0', + `veh_col2` smallint(6) NOT NULL DEFAULT '0', + `veh_col3` smallint(6) NOT NULL DEFAULT '0', + `veh_col4` smallint(6) NOT NULL DEFAULT '0', + `veh_col1_r` smallint(6) NOT NULL DEFAULT '0', + `veh_col1_g` smallint(6) NOT NULL DEFAULT '0', + `veh_col1_b` smallint(6) NOT NULL DEFAULT '0', + `veh_col1_a` smallint(6) NOT NULL DEFAULT '0', + `veh_col2_r` smallint(6) NOT NULL DEFAULT '0', + `veh_col2_g` smallint(6) NOT NULL DEFAULT '0', + `veh_col2_b` smallint(6) NOT NULL DEFAULT '0', + `veh_col2_a` smallint(6) NOT NULL DEFAULT '0', + `veh_col3_r` smallint(6) NOT NULL DEFAULT '0', + `veh_col3_g` smallint(6) NOT NULL DEFAULT '0', + `veh_col3_b` smallint(6) NOT NULL DEFAULT '0', + `veh_col3_a` smallint(6) NOT NULL DEFAULT '0', + `veh_col4_r` smallint(6) NOT NULL DEFAULT '0', + `veh_col4_g` smallint(6) NOT NULL DEFAULT '0', + `veh_col4_b` smallint(6) NOT NULL DEFAULT '0', + `veh_col4_a` smallint(6) NOT NULL DEFAULT '0', + `veh_locked` tinyint(1) NOT NULL DEFAULT '0', + `veh_health` float NOT NULL DEFAULT '1000', + `veh_pos_x` float NOT NULL DEFAULT '0', + `veh_pos_y` float NOT NULL DEFAULT '0', + `veh_pos_z` float NOT NULL DEFAULT '0', + `veh_rot_x` float NOT NULL DEFAULT '0', + `veh_rot_y` float NOT NULL DEFAULT '0', + `veh_rot_z` float NOT NULL DEFAULT '0', + `veh_owner_type` int(11) NOT NULL DEFAULT '0', + `veh_owner_id` int(11) NOT NULL DEFAULT '0', + `veh_engine` tinyint(1) NOT NULL DEFAULT '0', + `veh_rank` tinyint(1) NOT NULL DEFAULT '0', + `veh_lights` tinyint(1) NOT NULL DEFAULT '0', + `veh_siren` tinyint(1) NOT NULL DEFAULT '0', + `veh_sirenlight` tinyint(1) NOT NULL DEFAULT '0', + `veh_taxilight` tinyint(1) NOT NULL DEFAULT '0', + `veh_radio_custom` tinyint(1) NOT NULL DEFAULT '0', + `veh_radio_station` smallint(6) NOT NULL DEFAULT '0', + `veh_radio_volume` tinyint(4) NOT NULL DEFAULT '0', + `veh_fuel` smallint(6) NOT NULL DEFAULT '0', + `veh_spawned` tinyint(1) NOT NULL DEFAULT '0', + `veh_ins_acct` tinyint(1) NOT NULL DEFAULT '0', + `veh_price` int(8) NOT NULL DEFAULT '0', + `veh_deleted` tinyint(1) NOT NULL DEFAULT '0', + `veh_flags` int(32) NOT NULL DEFAULT '0', + `veh_spawn_lock` tinyint(1) NOT NULL DEFAULT '0', + `veh_buy_price` int(11) NOT NULL DEFAULT '0', + `veh_rent_price` int(11) NOT NULL DEFAULT '0', + `veh_destroyed` tinyint(1) NOT NULL DEFAULT '0', + `veh_mod_enginemult` int(11) NOT NULL DEFAULT '0', + `veh_mod_wheelmult` int(11) NOT NULL DEFAULT '0', + `veh_mod_brakemult` int(11) NOT NULL DEFAULT '0', + `veh_mod_hydraulics` tinyint(1) NOT NULL DEFAULT '0', + `veh_mod_nos` tinyint(1) NOT NULL DEFAULT '0', + `veh_tire_fl` tinyint(1) NOT NULL DEFAULT '0', + `veh_tire_fr` tinyint(1) NOT NULL DEFAULT '0', + `veh_tire_rl` tinyint(1) NOT NULL DEFAULT '0', + `veh_tire_rr` tinyint(1) NOT NULL DEFAULT '0', + `veh_light_fl` tinyint(1) NOT NULL DEFAULT '0', + `veh_light_fr` tinyint(1) NOT NULL DEFAULT '0', + `veh_light_rl` tinyint(1) NOT NULL DEFAULT '0', + `veh_light_rr` tinyint(1) NOT NULL DEFAULT '0', + `veh_door_fl` tinyint(1) NOT NULL DEFAULT '0', + `veh_door_fr` tinyint(1) NOT NULL DEFAULT '0', + `veh_door_rl` tinyint(1) NOT NULL DEFAULT '0', + `veh_door_rr` tinyint(1) NOT NULL DEFAULT '0', + `veh_boot` tinyint(1) NOT NULL DEFAULT '0', + `veh_bonnet` tinyint(1) NOT NULL DEFAULT '0', + `veh_panel_bumper_front` tinyint(1) NOT NULL DEFAULT '0', + `veh_panel_bumper_rear` tinyint(1) NOT NULL DEFAULT '0', + `veh_panel_front_left` tinyint(1) NOT NULL DEFAULT '0', + `veh_panel_front_right` tinyint(1) NOT NULL DEFAULT '0', + `veh_panel_rear_left` tinyint(1) NOT NULL DEFAULT '0', + `veh_panel_rear_right` tinyint(1) NOT NULL DEFAULT '0', + `veh_panel_windshield` tinyint(1) NOT NULL DEFAULT '0', + `veh_dirt_level` int(11) NOT NULL DEFAULT '0', + `veh_damage_visual` int(11) NOT NULL DEFAULT '0', + `veh_damage_engine` float NOT NULL DEFAULT '0', + `veh_damage_normal` float NOT NULL DEFAULT '0', + `veh_when_added` bigint(32) NOT NULL DEFAULT '0', + `veh_how_added` int(11) NOT NULL DEFAULT '0', + `veh_who_added` bigint(32) NOT NULL DEFAULT '0', + `veh_hd_extra1` int(11) NOT NULL DEFAULT '0', + `veh_hd_extra2` int(11) NOT NULL DEFAULT '0', + `veh_hd_extra3` int(11) NOT NULL DEFAULT '0', + `veh_hd_extra4` int(11) NOT NULL DEFAULT '0', + `veh_hd_extra5` int(11) NOT NULL DEFAULT '0', + `veh_hd_extra6` int(11) NOT NULL DEFAULT '0', + `veh_hd_extra7` int(11) NOT NULL DEFAULT '0', + `veh_hd_extra8` int(11) NOT NULL DEFAULT '0', + `veh_hd_extra9` int(11) NOT NULL DEFAULT '0', + PRIMARY KEY (`veh_id`), + KEY `veh_server` (`veh_server`), + KEY `veh_owner` (`veh_owner_type`,`veh_owner_id`) +) ENGINE=InnoDB AUTO_INCREMENT=362 DEFAULT CHARSET=latin1 COMMENT='Vehicles'; + +-- Dumping data for table gtac_main.veh_main: ~335 rows (approximately) +/*!40000 ALTER TABLE `veh_main` DISABLE KEYS */; +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `veh_when_added`, `veh_how_added`, `veh_who_added`, `veh_hd_extra1`, `veh_hd_extra2`, `veh_hd_extra3`, `veh_hd_extra4`, `veh_hd_extra5`, `veh_hd_extra6`, `veh_hd_extra7`, `veh_hd_extra8`, `veh_hd_extra9`) VALUES + (1, 1, 116, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1000, 1150.19, -691.413, 14.7679, 0, 0, -0.00433205, 2, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `veh_when_added`, `veh_how_added`, `veh_who_added`, `veh_hd_extra1`, `veh_hd_extra2`, `veh_hd_extra3`, `veh_hd_extra4`, `veh_hd_extra5`, `veh_hd_extra6`, `veh_hd_extra7`, `veh_hd_extra8`, `veh_hd_extra9`) VALUES + (2, 1, 116, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1000, 1146.75, -691.522, 14.7632, 0, 0, 0.0311547, 2, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `veh_when_added`, `veh_how_added`, `veh_who_added`, `veh_hd_extra1`, `veh_hd_extra2`, `veh_hd_extra3`, `veh_hd_extra4`, `veh_hd_extra5`, `veh_hd_extra6`, `veh_hd_extra7`, `veh_hd_extra8`, `veh_hd_extra9`) VALUES + (3, 1, 116, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1000, 1150.19, -647.976, 14.7432, 0, 0, 1.58688, 2, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `veh_when_added`, `veh_how_added`, `veh_who_added`, `veh_hd_extra1`, `veh_hd_extra2`, `veh_hd_extra3`, `veh_hd_extra4`, `veh_hd_extra5`, `veh_hd_extra6`, `veh_hd_extra7`, `veh_hd_extra8`, `veh_hd_extra9`) VALUES + (4, 1, 116, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1000, 1150.05, -644.664, 14.7377, 0, 0, 1.63214, 2, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `veh_when_added`, `veh_how_added`, `veh_who_added`, `veh_hd_extra1`, `veh_hd_extra2`, `veh_hd_extra3`, `veh_hd_extra4`, `veh_hd_extra5`, `veh_hd_extra6`, `veh_hd_extra7`, `veh_hd_extra8`, `veh_hd_extra9`) VALUES + (5, 1, 116, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1000, 1150.03, -641.414, 14.7305, 0, 0, 1.58556, 2, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `veh_when_added`, `veh_how_added`, `veh_who_added`, `veh_hd_extra1`, `veh_hd_extra2`, `veh_hd_extra3`, `veh_hd_extra4`, `veh_hd_extra5`, `veh_hd_extra6`, `veh_hd_extra7`, `veh_hd_extra8`, `veh_hd_extra9`) VALUES + (6, 1, 116, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1000, 1137.77, -637.964, 14.7565, 0, 0, 3.12411, 2, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `veh_when_added`, `veh_how_added`, `veh_who_added`, `veh_hd_extra1`, `veh_hd_extra2`, `veh_hd_extra3`, `veh_hd_extra4`, `veh_hd_extra5`, `veh_hd_extra6`, `veh_hd_extra7`, `veh_hd_extra8`, `veh_hd_extra9`) VALUES + (7, 1, 116, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1000, 1141.03, -637.832, 14.7565, 0, 0, 3.13313, 2, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `veh_when_added`, `veh_how_added`, `veh_who_added`, `veh_hd_extra1`, `veh_hd_extra2`, `veh_hd_extra3`, `veh_hd_extra4`, `veh_hd_extra5`, `veh_hd_extra6`, `veh_hd_extra7`, `veh_hd_extra8`, `veh_hd_extra9`) VALUES + (8, 1, 117, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1000, 1167.97, -671.216, 18.9339, 0, 0, -3.12864, 2, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `veh_when_added`, `veh_how_added`, `veh_who_added`, `veh_hd_extra1`, `veh_hd_extra2`, `veh_hd_extra3`, `veh_hd_extra4`, `veh_hd_extra5`, `veh_hd_extra6`, `veh_hd_extra7`, `veh_hd_extra8`, `veh_hd_extra9`) VALUES + (9, 1, 117, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1000, 1167.88, -659.962, 18.9344, 0, 0, -3.13742, 2, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `veh_when_added`, `veh_how_added`, `veh_who_added`, `veh_hd_extra1`, `veh_hd_extra2`, `veh_hd_extra3`, `veh_hd_extra4`, `veh_hd_extra5`, `veh_hd_extra6`, `veh_hd_extra7`, `veh_hd_extra8`, `veh_hd_extra9`) VALUES + (10, 1, 107, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1000, 1156.99, -648.106, 18.8026, 0, 0, -1.54444, 2, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `veh_when_added`, `veh_how_added`, `veh_who_added`, `veh_hd_extra1`, `veh_hd_extra2`, `veh_hd_extra3`, `veh_hd_extra4`, `veh_hd_extra5`, `veh_hd_extra6`, `veh_hd_extra7`, `veh_hd_extra8`, `veh_hd_extra9`) VALUES + (11, 1, 107, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1000, 1156.71, -644.208, 18.8018, 0, 0, -1.56368, 2, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `veh_when_added`, `veh_how_added`, `veh_who_added`, `veh_hd_extra1`, `veh_hd_extra2`, `veh_hd_extra3`, `veh_hd_extra4`, `veh_hd_extra5`, `veh_hd_extra6`, `veh_hd_extra7`, `veh_hd_extra8`, `veh_hd_extra9`) VALUES + (12, 1, 106, 0, 0, 0, 0, 1, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1000, 1156.51, -546.982, 21.8099, 0, 0, 1.54116, 2, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `veh_when_added`, `veh_how_added`, `veh_who_added`, `veh_hd_extra1`, `veh_hd_extra2`, `veh_hd_extra3`, `veh_hd_extra4`, `veh_hd_extra5`, `veh_hd_extra6`, `veh_hd_extra7`, `veh_hd_extra8`, `veh_hd_extra9`) VALUES + (13, 1, 106, 0, 0, 0, 0, 1, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1000, 1144.34, -526.256, 21.811, 0, 0, 3.10339, 2, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `veh_when_added`, `veh_how_added`, `veh_who_added`, `veh_hd_extra1`, `veh_hd_extra2`, `veh_hd_extra3`, `veh_hd_extra4`, `veh_hd_extra5`, `veh_hd_extra6`, `veh_hd_extra7`, `veh_hd_extra8`, `veh_hd_extra9`) VALUES + (14, 1, 106, 0, 0, 0, 0, 1, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1000, 1149.82, -526.413, 21.8051, 0, 0, 3.12915, 2, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `veh_when_added`, `veh_how_added`, `veh_who_added`, `veh_hd_extra1`, `veh_hd_extra2`, `veh_hd_extra3`, `veh_hd_extra4`, `veh_hd_extra5`, `veh_hd_extra6`, `veh_hd_extra7`, `veh_hd_extra8`, `veh_hd_extra9`) VALUES + (15, 1, 97, 0, 0, 0, 0, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1000, 1107.33, -47.3277, 7.6909, 0, 0, -1.58177, 2, 9, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `veh_when_added`, `veh_how_added`, `veh_who_added`, `veh_hd_extra1`, `veh_hd_extra2`, `veh_hd_extra3`, `veh_hd_extra4`, `veh_hd_extra5`, `veh_hd_extra6`, `veh_hd_extra7`, `veh_hd_extra8`, `veh_hd_extra9`) VALUES + (16, 1, 97, 0, 0, 0, 0, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1000, 1107.44, -56.9672, 7.68915, 0, 0, -1.55498, 2, 9, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `veh_when_added`, `veh_how_added`, `veh_who_added`, `veh_hd_extra1`, `veh_hd_extra2`, `veh_hd_extra3`, `veh_hd_extra4`, `veh_hd_extra5`, `veh_hd_extra6`, `veh_hd_extra7`, `veh_hd_extra8`, `veh_hd_extra9`) VALUES + (17, 1, 97, 0, 0, 0, 0, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1000, 1107.07, -36.7668, 7.68907, 0, 0, -1.54614, 2, 9, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `veh_when_added`, `veh_how_added`, `veh_who_added`, `veh_hd_extra1`, `veh_hd_extra2`, `veh_hd_extra3`, `veh_hd_extra4`, `veh_hd_extra5`, `veh_hd_extra6`, `veh_hd_extra7`, `veh_hd_extra8`, `veh_hd_extra9`) VALUES + (18, 1, 98, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1000, 1143.85, 24.7314, 0.193595, 0, 0, 0.030849, 2, 21, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `veh_when_added`, `veh_how_added`, `veh_who_added`, `veh_hd_extra1`, `veh_hd_extra2`, `veh_hd_extra3`, `veh_hd_extra4`, `veh_hd_extra5`, `veh_hd_extra6`, `veh_hd_extra7`, `veh_hd_extra8`, `veh_hd_extra9`) VALUES + (19, 1, 98, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1000, 1127.04, 42.6658, 0.0965313, 0, 0, -1.59613, 2, 21, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `veh_when_added`, `veh_how_added`, `veh_who_added`, `veh_hd_extra1`, `veh_hd_extra2`, `veh_hd_extra3`, `veh_hd_extra4`, `veh_hd_extra5`, `veh_hd_extra6`, `veh_hd_extra7`, `veh_hd_extra8`, `veh_hd_extra9`) VALUES + (20, 1, 98, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1000, 1160.02, 63.4447, 0.0918589, 0, 0, -3.06856, 2, 21, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `veh_when_added`, `veh_how_added`, `veh_who_added`, `veh_hd_extra1`, `veh_hd_extra2`, `veh_hd_extra3`, `veh_hd_extra4`, `veh_hd_extra5`, `veh_hd_extra6`, `veh_hd_extra7`, `veh_hd_extra8`, `veh_hd_extra9`) VALUES + (21, 1, 116, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1000, 1139.63, -687.404, 14.7563, 0, 0, -1.5751, 2, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `veh_when_added`, `veh_how_added`, `veh_who_added`, `veh_hd_extra1`, `veh_hd_extra2`, `veh_hd_extra3`, `veh_hd_extra4`, `veh_hd_extra5`, `veh_hd_extra6`, `veh_hd_extra7`, `veh_hd_extra8`, `veh_hd_extra9`) VALUES + (22, 1, 127, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1000, 1281.16, -964.567, 15.006, 0, 0, -2.35689, 2, 17, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `veh_when_added`, `veh_how_added`, `veh_who_added`, `veh_hd_extra1`, `veh_hd_extra2`, `veh_hd_extra3`, `veh_hd_extra4`, `veh_hd_extra5`, `veh_hd_extra6`, `veh_hd_extra7`, `veh_hd_extra8`, `veh_hd_extra9`) VALUES + (23, 1, 127, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1000, 1274.07, -971.255, 14.9847, 0, 0, -2.36657, 2, 17, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `veh_when_added`, `veh_how_added`, `veh_who_added`, `veh_hd_extra1`, `veh_hd_extra2`, `veh_hd_extra3`, `veh_hd_extra4`, `veh_hd_extra5`, `veh_hd_extra6`, `veh_hd_extra7`, `veh_hd_extra8`, `veh_hd_extra9`) VALUES + (24, 1, 127, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1000, 1255.04, -993.608, 14.9642, 0, 0, -0.875785, 2, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `veh_when_added`, `veh_how_added`, `veh_who_added`, `veh_hd_extra1`, `veh_hd_extra2`, `veh_hd_extra3`, `veh_hd_extra4`, `veh_hd_extra5`, `veh_hd_extra6`, `veh_hd_extra7`, `veh_hd_extra8`, `veh_hd_extra9`) VALUES + (25, 1, 127, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1000, 1262.9, -1001.84, 14.966, 0, 0, -0.898034, 2, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `veh_when_added`, `veh_how_added`, `veh_who_added`, `veh_hd_extra1`, `veh_hd_extra2`, `veh_hd_extra3`, `veh_hd_extra4`, `veh_hd_extra5`, `veh_hd_extra6`, `veh_hd_extra7`, `veh_hd_extra8`, `veh_hd_extra9`) VALUES + (26, 1, 110, 0, 0, 0, 0, 6, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1000, 1226.42, -725.875, 14.9189, 0, 0, -2.34667, 2, 13, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `veh_when_added`, `veh_how_added`, `veh_who_added`, `veh_hd_extra1`, `veh_hd_extra2`, `veh_hd_extra3`, `veh_hd_extra4`, `veh_hd_extra5`, `veh_hd_extra6`, `veh_hd_extra7`, `veh_hd_extra8`, `veh_hd_extra9`) VALUES + (27, 1, 110, 0, 0, 0, 0, 6, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1000, 1229.62, -722.578, 14.9188, 0, 0, -2.35245, 2, 13, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `veh_when_added`, `veh_how_added`, `veh_who_added`, `veh_hd_extra1`, `veh_hd_extra2`, `veh_hd_extra3`, `veh_hd_extra4`, `veh_hd_extra5`, `veh_hd_extra6`, `veh_hd_extra7`, `veh_hd_extra8`, `veh_hd_extra9`) VALUES + (28, 1, 110, 0, 0, 0, 0, 6, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1000, 1257.41, -752.06, 14.9186, 0, 0, 0.734189, 2, 13, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `veh_when_added`, `veh_how_added`, `veh_who_added`, `veh_hd_extra1`, `veh_hd_extra2`, `veh_hd_extra3`, `veh_hd_extra4`, `veh_hd_extra5`, `veh_hd_extra6`, `veh_hd_extra7`, `veh_hd_extra8`, `veh_hd_extra9`) VALUES + (29, 1, 110, 0, 0, 0, 0, 6, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1000, 1254.04, -755.676, 14.9186, 0, 0, 0.767078, 2, 13, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `veh_when_added`, `veh_how_added`, `veh_who_added`, `veh_hd_extra1`, `veh_hd_extra2`, `veh_hd_extra3`, `veh_hd_extra4`, `veh_hd_extra5`, `veh_hd_extra6`, `veh_hd_extra7`, `veh_hd_extra8`, `veh_hd_extra9`) VALUES + (30, 1, 128, 0, 0, 0, 0, 6, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1000, 1249.93, -736.377, 15.1166, 0, 0, 2.33642, 2, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `veh_when_added`, `veh_how_added`, `veh_who_added`, `veh_hd_extra1`, `veh_hd_extra2`, `veh_hd_extra3`, `veh_hd_extra4`, `veh_hd_extra5`, `veh_hd_extra6`, `veh_hd_extra7`, `veh_hd_extra8`, `veh_hd_extra9`) VALUES + (31, 1, 128, 0, 0, 0, 0, 6, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1000, 1246.99, -733.376, 15.1162, 0, 0, 2.33641, 2, 13, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `veh_when_added`, `veh_how_added`, `veh_who_added`, `veh_hd_extra1`, `veh_hd_extra2`, `veh_hd_extra3`, `veh_hd_extra4`, `veh_hd_extra5`, `veh_hd_extra6`, `veh_hd_extra7`, `veh_hd_extra8`, `veh_hd_extra9`) VALUES + (32, 1, 116, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1000, 1139.41, -683.735, 14.7565, 0, 0, -1.55153, 2, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `veh_when_added`, `veh_how_added`, `veh_who_added`, `veh_hd_extra1`, `veh_hd_extra2`, `veh_hd_extra3`, `veh_hd_extra4`, `veh_hd_extra5`, `veh_hd_extra6`, `veh_hd_extra7`, `veh_hd_extra8`, `veh_hd_extra9`) VALUES + (33, 1, 116, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1000, 355.017, -1135.91, 22.7644, 0, 0, -2.41669, 2, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `veh_when_added`, `veh_how_added`, `veh_who_added`, `veh_hd_extra1`, `veh_hd_extra2`, `veh_hd_extra3`, `veh_hd_extra4`, `veh_hd_extra5`, `veh_hd_extra6`, `veh_hd_extra7`, `veh_hd_extra8`, `veh_hd_extra9`) VALUES + (34, 1, 116, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1000, 350.109, -1135.89, 22.7647, 0, 0, -2.46912, 2, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `veh_when_added`, `veh_how_added`, `veh_who_added`, `veh_hd_extra1`, `veh_hd_extra2`, `veh_hd_extra3`, `veh_hd_extra4`, `veh_hd_extra5`, `veh_hd_extra6`, `veh_hd_extra7`, `veh_hd_extra8`, `veh_hd_extra9`) VALUES + (35, 1, 116, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1000, 345.608, -1135.62, 22.7649, 0, 0, -2.53825, 2, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `veh_when_added`, `veh_how_added`, `veh_who_added`, `veh_hd_extra1`, `veh_hd_extra2`, `veh_hd_extra3`, `veh_hd_extra4`, `veh_hd_extra5`, `veh_hd_extra6`, `veh_hd_extra7`, `veh_hd_extra8`, `veh_hd_extra9`) VALUES + (36, 1, 116, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1000, 341.261, -1135.68, 22.7642, 0, 0, -2.54692, 2, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `veh_when_added`, `veh_how_added`, `veh_who_added`, `veh_hd_extra1`, `veh_hd_extra2`, `veh_hd_extra3`, `veh_hd_extra4`, `veh_hd_extra5`, `veh_hd_extra6`, `veh_hd_extra7`, `veh_hd_extra8`, `veh_hd_extra9`) VALUES + (37, 1, 116, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1000, 336.717, -1135.68, 22.7706, 0, 0, -2.56974, 2, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `veh_when_added`, `veh_how_added`, `veh_who_added`, `veh_hd_extra1`, `veh_hd_extra2`, `veh_hd_extra3`, `veh_hd_extra4`, `veh_hd_extra5`, `veh_hd_extra6`, `veh_hd_extra7`, `veh_hd_extra8`, `veh_hd_extra9`) VALUES + (38, 1, 116, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1000, 332.574, -1135.79, 22.7643, 0, 0, -2.54837, 2, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `veh_when_added`, `veh_how_added`, `veh_who_added`, `veh_hd_extra1`, `veh_hd_extra2`, `veh_hd_extra3`, `veh_hd_extra4`, `veh_hd_extra5`, `veh_hd_extra6`, `veh_hd_extra7`, `veh_hd_extra8`, `veh_hd_extra9`) VALUES + (39, 1, 116, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1000, 330.361, -1143.6, 22.7644, 0, 0, -1.53463, 2, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `veh_when_added`, `veh_how_added`, `veh_who_added`, `veh_hd_extra1`, `veh_hd_extra2`, `veh_hd_extra3`, `veh_hd_extra4`, `veh_hd_extra5`, `veh_hd_extra6`, `veh_hd_extra7`, `veh_hd_extra8`, `veh_hd_extra9`) VALUES + (40, 1, 116, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1000, 330.33, -1147.05, 22.7647, 0, 0, -1.55975, 2, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `veh_when_added`, `veh_how_added`, `veh_who_added`, `veh_hd_extra1`, `veh_hd_extra2`, `veh_hd_extra3`, `veh_hd_extra4`, `veh_hd_extra5`, `veh_hd_extra6`, `veh_hd_extra7`, `veh_hd_extra8`, `veh_hd_extra9`) VALUES + (41, 1, 116, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1000, 330.239, -1150.96, 22.7647, 0, 0, -1.59091, 2, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `veh_when_added`, `veh_how_added`, `veh_who_added`, `veh_hd_extra1`, `veh_hd_extra2`, `veh_hd_extra3`, `veh_hd_extra4`, `veh_hd_extra5`, `veh_hd_extra6`, `veh_hd_extra7`, `veh_hd_extra8`, `veh_hd_extra9`) VALUES + (42, 1, 116, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1000, 330.082, -1154.76, 22.7643, 0, 0, -1.59227, 2, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `veh_when_added`, `veh_how_added`, `veh_who_added`, `veh_hd_extra1`, `veh_hd_extra2`, `veh_hd_extra3`, `veh_hd_extra4`, `veh_hd_extra5`, `veh_hd_extra6`, `veh_hd_extra7`, `veh_hd_extra8`, `veh_hd_extra9`) VALUES + (43, 1, 116, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1000, 330.062, -1158.64, 22.764, 0, 0, -1.56752, 2, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `veh_when_added`, `veh_how_added`, `veh_who_added`, `veh_hd_extra1`, `veh_hd_extra2`, `veh_hd_extra3`, `veh_hd_extra4`, `veh_hd_extra5`, `veh_hd_extra6`, `veh_hd_extra7`, `veh_hd_extra8`, `veh_hd_extra9`) VALUES + (44, 1, 116, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1000, 330.123, -1162.56, 22.757, 0, 0, -1.57938, 2, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `veh_when_added`, `veh_how_added`, `veh_who_added`, `veh_hd_extra1`, `veh_hd_extra2`, `veh_hd_extra3`, `veh_hd_extra4`, `veh_hd_extra5`, `veh_hd_extra6`, `veh_hd_extra7`, `veh_hd_extra8`, `veh_hd_extra9`) VALUES + (45, 1, 116, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1000, 349.266, -1175.87, 22.7646, 0, 0, 0.0401467, 2, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `veh_when_added`, `veh_how_added`, `veh_who_added`, `veh_hd_extra1`, `veh_hd_extra2`, `veh_hd_extra3`, `veh_hd_extra4`, `veh_hd_extra5`, `veh_hd_extra6`, `veh_hd_extra7`, `veh_hd_extra8`, `veh_hd_extra9`) VALUES + (46, 1, 116, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1000, 352.866, -1175.72, 22.7649, 0, 0, 0.0375325, 2, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `veh_when_added`, `veh_how_added`, `veh_who_added`, `veh_hd_extra1`, `veh_hd_extra2`, `veh_hd_extra3`, `veh_hd_extra4`, `veh_hd_extra5`, `veh_hd_extra6`, `veh_hd_extra7`, `veh_hd_extra8`, `veh_hd_extra9`) VALUES + (47, 1, 116, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1000, 356.565, -1175.68, 22.7649, 0, 0, 0.0262495, 2, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `veh_when_added`, `veh_how_added`, `veh_who_added`, `veh_hd_extra1`, `veh_hd_extra2`, `veh_hd_extra3`, `veh_hd_extra4`, `veh_hd_extra5`, `veh_hd_extra6`, `veh_hd_extra7`, `veh_hd_extra8`, `veh_hd_extra9`) VALUES + (48, 1, 116, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1000, 360.123, -1175.56, 22.765, 0, 0, 0.00383999, 2, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `veh_when_added`, `veh_how_added`, `veh_who_added`, `veh_hd_extra1`, `veh_hd_extra2`, `veh_hd_extra3`, `veh_hd_extra4`, `veh_hd_extra5`, `veh_hd_extra6`, `veh_hd_extra7`, `veh_hd_extra8`, `veh_hd_extra9`) VALUES + (49, 1, 116, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1000, 363.628, -1175.71, 22.7647, 0, 0, 0.0135003, 2, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `veh_when_added`, `veh_how_added`, `veh_who_added`, `veh_hd_extra1`, `veh_hd_extra2`, `veh_hd_extra3`, `veh_hd_extra4`, `veh_hd_extra5`, `veh_hd_extra6`, `veh_hd_extra7`, `veh_hd_extra8`, `veh_hd_extra9`) VALUES + (50, 1, 116, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1000, 344.813, -1175.93, 22.7648, 0, 0, 0.0261305, 2, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `veh_when_added`, `veh_how_added`, `veh_who_added`, `veh_hd_extra1`, `veh_hd_extra2`, `veh_hd_extra3`, `veh_hd_extra4`, `veh_hd_extra5`, `veh_hd_extra6`, `veh_hd_extra7`, `veh_hd_extra8`, `veh_hd_extra9`) VALUES + (51, 1, 117, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1000, 363.039, -1056.26, 26.0159, 0, 0, -3.13414, 2, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `veh_when_added`, `veh_how_added`, `veh_who_added`, `veh_hd_extra1`, `veh_hd_extra2`, `veh_hd_extra3`, `veh_hd_extra4`, `veh_hd_extra5`, `veh_hd_extra6`, `veh_hd_extra7`, `veh_hd_extra8`, `veh_hd_extra9`) VALUES + (52, 1, 117, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1000, 357.656, -1056.36, 26.016, 0, 0, 3.12152, 2, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `veh_when_added`, `veh_how_added`, `veh_who_added`, `veh_hd_extra1`, `veh_hd_extra2`, `veh_hd_extra3`, `veh_hd_extra4`, `veh_hd_extra5`, `veh_hd_extra6`, `veh_hd_extra7`, `veh_hd_extra8`, `veh_hd_extra9`) VALUES + (53, 1, 117, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1000, 352.455, -1056.27, 26.0166, 0, 0, 3.1086, 2, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `veh_when_added`, `veh_how_added`, `veh_who_added`, `veh_hd_extra1`, `veh_hd_extra2`, `veh_hd_extra3`, `veh_hd_extra4`, `veh_hd_extra5`, `veh_hd_extra6`, `veh_hd_extra7`, `veh_hd_extra8`, `veh_hd_extra9`) VALUES + (54, 1, 107, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1000, 346.23, -1055.48, 25.8838, 0, 0, 3.1377, 2, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `veh_when_added`, `veh_how_added`, `veh_who_added`, `veh_hd_extra1`, `veh_hd_extra2`, `veh_hd_extra3`, `veh_hd_extra4`, `veh_hd_extra5`, `veh_hd_extra6`, `veh_hd_extra7`, `veh_hd_extra8`, `veh_hd_extra9`) VALUES + (55, 1, 107, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1000, 342.364, -1055.36, 25.8839, 0, 0, 3.12213, 2, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `veh_when_added`, `veh_how_added`, `veh_who_added`, `veh_hd_extra1`, `veh_hd_extra2`, `veh_hd_extra3`, `veh_hd_extra4`, `veh_hd_extra5`, `veh_hd_extra6`, `veh_hd_extra7`, `veh_hd_extra8`, `veh_hd_extra9`) VALUES + (56, 1, 107, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1000, 338.239, -1055.29, 25.8841, 0, 0, 3.07547, 2, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `veh_when_added`, `veh_how_added`, `veh_who_added`, `veh_hd_extra1`, `veh_hd_extra2`, `veh_hd_extra3`, `veh_hd_extra4`, `veh_hd_extra5`, `veh_hd_extra6`, `veh_hd_extra7`, `veh_hd_extra8`, `veh_hd_extra9`) VALUES + (57, 1, 107, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1000, 333.56, -1055.31, 25.8841, 0, 0, 3.09697, 2, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `veh_when_added`, `veh_how_added`, `veh_who_added`, `veh_hd_extra1`, `veh_hd_extra2`, `veh_hd_extra3`, `veh_hd_extra4`, `veh_hd_extra5`, `veh_hd_extra6`, `veh_hd_extra7`, `veh_hd_extra8`, `veh_hd_extra9`) VALUES + (58, 2, 156, 0, 0, 0, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, -863.201, -666.353, 11.0311, 0, 0, -3.04091, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `veh_when_added`, `veh_how_added`, `veh_who_added`, `veh_hd_extra1`, `veh_hd_extra2`, `veh_hd_extra3`, `veh_hd_extra4`, `veh_hd_extra5`, `veh_hd_extra6`, `veh_hd_extra7`, `veh_hd_extra8`, `veh_hd_extra9`) VALUES + (59, 2, 156, 0, 0, 0, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, -859.264, -665.929, 11.0121, 0, 0, -3.02909, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `veh_when_added`, `veh_how_added`, `veh_who_added`, `veh_hd_extra1`, `veh_hd_extra2`, `veh_hd_extra3`, `veh_hd_extra4`, `veh_hd_extra5`, `veh_hd_extra6`, `veh_hd_extra7`, `veh_hd_extra8`, `veh_hd_extra9`) VALUES + (60, 2, 156, 0, 0, 0, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, -855.519, -665.594, 10.9943, 0, 0, -3.03498, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `veh_when_added`, `veh_how_added`, `veh_who_added`, `veh_hd_extra1`, `veh_hd_extra2`, `veh_hd_extra3`, `veh_hd_extra4`, `veh_hd_extra5`, `veh_hd_extra6`, `veh_hd_extra7`, `veh_hd_extra8`, `veh_hd_extra9`) VALUES + (61, 2, 156, 0, 0, 0, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, -851.826, -665.276, 10.9767, 0, 0, -3.02548, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `veh_when_added`, `veh_how_added`, `veh_who_added`, `veh_hd_extra1`, `veh_hd_extra2`, `veh_hd_extra3`, `veh_hd_extra4`, `veh_hd_extra5`, `veh_hd_extra6`, `veh_hd_extra7`, `veh_hd_extra8`, `veh_hd_extra9`) VALUES + (62, 2, 156, 0, 0, 0, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, -843.97, -679.789, 10.9396, 0, 0, 1.72875, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `veh_when_added`, `veh_how_added`, `veh_who_added`, `veh_hd_extra1`, `veh_hd_extra2`, `veh_hd_extra3`, `veh_hd_extra4`, `veh_hd_extra5`, `veh_hd_extra6`, `veh_hd_extra7`, `veh_hd_extra8`, `veh_hd_extra9`) VALUES + (63, 2, 156, 0, 0, 0, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, -844.578, -675.52, 10.9427, 0, 0, 1.70593, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `veh_when_added`, `veh_how_added`, `veh_who_added`, `veh_hd_extra1`, `veh_hd_extra2`, `veh_hd_extra3`, `veh_hd_extra4`, `veh_hd_extra5`, `veh_hd_extra6`, `veh_hd_extra7`, `veh_hd_extra8`, `veh_hd_extra9`) VALUES + (64, 2, 156, 0, 0, 0, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, -845.17, -671.403, 10.9455, 0, 0, 1.69794, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `veh_when_added`, `veh_how_added`, `veh_who_added`, `veh_hd_extra1`, `veh_hd_extra2`, `veh_hd_extra3`, `veh_hd_extra4`, `veh_hd_extra5`, `veh_hd_extra6`, `veh_hd_extra7`, `veh_hd_extra8`, `veh_hd_extra9`) VALUES + (65, 2, 157, 0, 0, 0, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, -873.775, -710.286, 11.1915, 0, 0, -2.06147, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `veh_when_added`, `veh_how_added`, `veh_who_added`, `veh_hd_extra1`, `veh_hd_extra2`, `veh_hd_extra3`, `veh_hd_extra4`, `veh_hd_extra5`, `veh_hd_extra6`, `veh_hd_extra7`, `veh_hd_extra8`, `veh_hd_extra9`) VALUES + (66, 2, 157, 0, 0, 0, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, -881.43, -705.81, 11.2087, 0, 0, -2.22486, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `veh_when_added`, `veh_how_added`, `veh_who_added`, `veh_hd_extra1`, `veh_hd_extra2`, `veh_hd_extra3`, `veh_hd_extra4`, `veh_hd_extra5`, `veh_hd_extra6`, `veh_hd_extra7`, `veh_hd_extra8`, `veh_hd_extra9`) VALUES + (67, 2, 236, 0, 0, 0, 0, 76, 76, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, -897.515, -698.598, 10.9724, 0, 0, -3.01881, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `veh_when_added`, `veh_how_added`, `veh_who_added`, `veh_hd_extra1`, `veh_hd_extra2`, `veh_hd_extra3`, `veh_hd_extra4`, `veh_hd_extra5`, `veh_hd_extra6`, `veh_hd_extra7`, `veh_hd_extra8`, `veh_hd_extra9`) VALUES + (68, 2, 236, 0, 0, 0, 0, 76, 76, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, -894.148, -698.128, 10.9701, 0, 0, -3.01433, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `veh_when_added`, `veh_how_added`, `veh_who_added`, `veh_hd_extra1`, `veh_hd_extra2`, `veh_hd_extra3`, `veh_hd_extra4`, `veh_hd_extra5`, `veh_hd_extra6`, `veh_hd_extra7`, `veh_hd_extra8`, `veh_hd_extra9`) VALUES + (69, 2, 236, 0, 0, 0, 0, 76, 76, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, -894.135, -719.859, 10.9428, 0, 0, -1.41224, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `veh_when_added`, `veh_how_added`, `veh_who_added`, `veh_hd_extra1`, `veh_hd_extra2`, `veh_hd_extra3`, `veh_hd_extra4`, `veh_hd_extra5`, `veh_hd_extra6`, `veh_hd_extra7`, `veh_hd_extra8`, `veh_hd_extra9`) VALUES + (70, 2, 236, 0, 0, 0, 0, 52, 52, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, -894.683, -715.826, 10.9485, 0, 0, -1.42683, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `veh_when_added`, `veh_how_added`, `veh_who_added`, `veh_hd_extra1`, `veh_hd_extra2`, `veh_hd_extra3`, `veh_hd_extra4`, `veh_hd_extra5`, `veh_hd_extra6`, `veh_hd_extra7`, `veh_hd_extra8`, `veh_hd_extra9`) VALUES + (71, 2, 156, 0, 0, 0, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, -650.832, 754.237, 11.2032, 0, 0, 1.50302, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `veh_when_added`, `veh_how_added`, `veh_who_added`, `veh_hd_extra1`, `veh_hd_extra2`, `veh_hd_extra3`, `veh_hd_extra4`, `veh_hd_extra5`, `veh_hd_extra6`, `veh_hd_extra7`, `veh_hd_extra8`, `veh_hd_extra9`) VALUES + (72, 2, 156, 0, 0, 0, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, -639.172, 753.413, 11.2032, 0, 0, 1.50092, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `veh_when_added`, `veh_how_added`, `veh_who_added`, `veh_hd_extra1`, `veh_hd_extra2`, `veh_hd_extra3`, `veh_hd_extra4`, `veh_hd_extra5`, `veh_hd_extra6`, `veh_hd_extra7`, `veh_hd_extra8`, `veh_hd_extra9`) VALUES + (73, 2, 156, 0, 0, 0, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, -621.907, 752.278, 11.2033, 0, 0, 1.49172, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `veh_when_added`, `veh_how_added`, `veh_who_added`, `veh_hd_extra1`, `veh_hd_extra2`, `veh_hd_extra3`, `veh_hd_extra4`, `veh_hd_extra5`, `veh_hd_extra6`, `veh_hd_extra7`, `veh_hd_extra8`, `veh_hd_extra9`) VALUES + (74, 2, 156, 0, 0, 0, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, -610.695, 751.54, 11.2031, 0, 0, 1.5242, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `veh_when_added`, `veh_how_added`, `veh_who_added`, `veh_hd_extra1`, `veh_hd_extra2`, `veh_hd_extra3`, `veh_hd_extra4`, `veh_hd_extra5`, `veh_hd_extra6`, `veh_hd_extra7`, `veh_hd_extra8`, `veh_hd_extra9`) VALUES + (75, 2, 157, 0, 0, 0, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, -599.312, 812.778, 11.4341, 0, 0, -1.51886, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `veh_when_added`, `veh_how_added`, `veh_who_added`, `veh_hd_extra1`, `veh_hd_extra2`, `veh_hd_extra3`, `veh_hd_extra4`, `veh_hd_extra5`, `veh_hd_extra6`, `veh_hd_extra7`, `veh_hd_extra8`, `veh_hd_extra9`) VALUES + (76, 2, 157, 0, 0, 0, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, -599.318, 808.625, 11.4343, 0, 0, -1.54175, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `veh_when_added`, `veh_how_added`, `veh_who_added`, `veh_hd_extra1`, `veh_hd_extra2`, `veh_hd_extra3`, `veh_hd_extra4`, `veh_hd_extra5`, `veh_hd_extra6`, `veh_hd_extra7`, `veh_hd_extra8`, `veh_hd_extra9`) VALUES + (77, 2, 157, 0, 0, 0, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, -599.262, 804.179, 11.4321, 0, 0, -1.55996, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `veh_when_added`, `veh_how_added`, `veh_who_added`, `veh_hd_extra1`, `veh_hd_extra2`, `veh_hd_extra3`, `veh_hd_extra4`, `veh_hd_extra5`, `veh_hd_extra6`, `veh_hd_extra7`, `veh_hd_extra8`, `veh_hd_extra9`) VALUES + (78, 2, 236, 0, 0, 0, 0, 52, 52, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, -601.455, 777.717, 11.3721, 0, 0, -1.56567, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `veh_when_added`, `veh_how_added`, `veh_who_added`, `veh_hd_extra1`, `veh_hd_extra2`, `veh_hd_extra3`, `veh_hd_extra4`, `veh_hd_extra5`, `veh_hd_extra6`, `veh_hd_extra7`, `veh_hd_extra8`, `veh_hd_extra9`) VALUES + (79, 2, 236, 0, 0, 0, 0, 3, 3, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, -601.427, 781.32, 11.372, 0, 0, -1.57976, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `veh_when_added`, `veh_how_added`, `veh_who_added`, `veh_hd_extra1`, `veh_hd_extra2`, `veh_hd_extra3`, `veh_hd_extra4`, `veh_hd_extra5`, `veh_hd_extra6`, `veh_hd_extra7`, `veh_hd_extra8`, `veh_hd_extra9`) VALUES + (80, 2, 236, 0, 0, 0, 0, 7, 7, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, -601.614, 785.262, 11.3678, 0, 0, -1.53095, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `veh_when_added`, `veh_how_added`, `veh_who_added`, `veh_hd_extra1`, `veh_hd_extra2`, `veh_hd_extra3`, `veh_hd_extra4`, `veh_hd_extra5`, `veh_hd_extra6`, `veh_hd_extra7`, `veh_hd_extra8`, `veh_hd_extra9`) VALUES + (81, 2, 227, 0, 0, 0, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, -614.282, 804.889, 29.667, 0, 0, -3.13458, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `veh_when_added`, `veh_how_added`, `veh_who_added`, `veh_hd_extra1`, `veh_hd_extra2`, `veh_hd_extra3`, `veh_hd_extra4`, `veh_hd_extra5`, `veh_hd_extra6`, `veh_hd_extra7`, `veh_hd_extra8`, `veh_hd_extra9`) VALUES + (82, 2, 156, 0, 0, 0, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, -665.011, 766.586, 10.8582, 0, 0, -3.12432, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `veh_when_added`, `veh_how_added`, `veh_who_added`, `veh_hd_extra1`, `veh_hd_extra2`, `veh_hd_extra3`, `veh_hd_extra4`, `veh_hd_extra5`, `veh_hd_extra6`, `veh_hd_extra7`, `veh_hd_extra8`, `veh_hd_extra9`) VALUES + (83, 2, 156, 0, 0, 0, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, -665.185, 777.893, 11.0314, 0, 0, 3.13051, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `veh_when_added`, `veh_how_added`, `veh_who_added`, `veh_hd_extra1`, `veh_hd_extra2`, `veh_hd_extra3`, `veh_hd_extra4`, `veh_hd_extra5`, `veh_hd_extra6`, `veh_hd_extra7`, `veh_hd_extra8`, `veh_hd_extra9`) VALUES + (84, 2, 156, 0, 0, 0, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, -665.29, 793.478, 11.0371, 0, 0, -3.13675, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `veh_when_added`, `veh_how_added`, `veh_who_added`, `veh_hd_extra1`, `veh_hd_extra2`, `veh_hd_extra3`, `veh_hd_extra4`, `veh_hd_extra5`, `veh_hd_extra6`, `veh_hd_extra7`, `veh_hd_extra8`, `veh_hd_extra9`) VALUES + (85, 2, 156, 0, 0, 0, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, -665.178, 804.984, 11.0372, 0, 0, 3.13152, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `veh_when_added`, `veh_how_added`, `veh_who_added`, `veh_hd_extra1`, `veh_hd_extra2`, `veh_hd_extra3`, `veh_hd_extra4`, `veh_hd_extra5`, `veh_hd_extra6`, `veh_hd_extra7`, `veh_hd_extra8`, `veh_hd_extra9`) VALUES + (86, 2, 137, 0, 0, 0, 0, 3, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, -695.476, 917.25, 11.193, 0, 0, -1.5752, 2, 10, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `veh_when_added`, `veh_how_added`, `veh_who_added`, `veh_hd_extra1`, `veh_hd_extra2`, `veh_hd_extra3`, `veh_hd_extra4`, `veh_hd_extra5`, `veh_hd_extra6`, `veh_hd_extra7`, `veh_hd_extra8`, `veh_hd_extra9`) VALUES + (87, 2, 137, 0, 0, 0, 0, 3, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, -695.799, 933.069, 11.1976, 0, 0, -1.59279, 2, 10, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `veh_when_added`, `veh_how_added`, `veh_who_added`, `veh_hd_extra1`, `veh_hd_extra2`, `veh_hd_extra3`, `veh_hd_extra4`, `veh_hd_extra5`, `veh_hd_extra6`, `veh_hd_extra7`, `veh_hd_extra8`, `veh_hd_extra9`) VALUES + (88, 2, 137, 0, 0, 0, 0, 3, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, -751.642, 927.235, 11.2813, 0, 0, 1.58276, 2, 10, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `veh_when_added`, `veh_how_added`, `veh_who_added`, `veh_hd_extra1`, `veh_hd_extra2`, `veh_hd_extra3`, `veh_hd_extra4`, `veh_hd_extra5`, `veh_hd_extra6`, `veh_hd_extra7`, `veh_hd_extra8`, `veh_hd_extra9`) VALUES + (89, 2, 156, 0, 0, 0, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 520.53, 503.127, 10.8484, 0, 0, -0.00178437, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `veh_when_added`, `veh_how_added`, `veh_who_added`, `veh_hd_extra1`, `veh_hd_extra2`, `veh_hd_extra3`, `veh_hd_extra4`, `veh_hd_extra5`, `veh_hd_extra6`, `veh_hd_extra7`, `veh_hd_extra8`, `veh_hd_extra9`) VALUES + (90, 2, 156, 0, 0, 0, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 516.364, 503.18, 10.9362, 0, 0, -0.0254137, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `veh_when_added`, `veh_how_added`, `veh_who_added`, `veh_hd_extra1`, `veh_hd_extra2`, `veh_hd_extra3`, `veh_hd_extra4`, `veh_hd_extra5`, `veh_hd_extra6`, `veh_hd_extra7`, `veh_hd_extra8`, `veh_hd_extra9`) VALUES + (91, 2, 156, 0, 0, 0, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 498.01, 503.081, 11.193, 0, 0, 0.0146382, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `veh_when_added`, `veh_how_added`, `veh_who_added`, `veh_hd_extra1`, `veh_hd_extra2`, `veh_hd_extra3`, `veh_hd_extra4`, `veh_hd_extra5`, `veh_hd_extra6`, `veh_hd_extra7`, `veh_hd_extra8`, `veh_hd_extra9`) VALUES + (92, 2, 156, 0, 0, 0, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 502.233, 503.026, 11.1357, 0, 0, 0.0138817, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `veh_when_added`, `veh_how_added`, `veh_who_added`, `veh_hd_extra1`, `veh_hd_extra2`, `veh_hd_extra3`, `veh_hd_extra4`, `veh_hd_extra5`, `veh_hd_extra6`, `veh_hd_extra7`, `veh_hd_extra8`, `veh_hd_extra9`) VALUES + (93, 2, 156, 0, 0, 0, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 493.552, 503.077, 11.2541, 0, 0, -0.0044642, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `veh_when_added`, `veh_how_added`, `veh_who_added`, `veh_hd_extra1`, `veh_hd_extra2`, `veh_hd_extra3`, `veh_hd_extra4`, `veh_hd_extra5`, `veh_hd_extra6`, `veh_hd_extra7`, `veh_hd_extra8`, `veh_hd_extra9`) VALUES + (94, 2, 236, 0, 0, 0, 0, 52, 52, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 490.796, 528.832, 11.3465, 0, 0, 1.54742, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `veh_when_added`, `veh_how_added`, `veh_who_added`, `veh_hd_extra1`, `veh_hd_extra2`, `veh_hd_extra3`, `veh_hd_extra4`, `veh_hd_extra5`, `veh_hd_extra6`, `veh_hd_extra7`, `veh_hd_extra8`, `veh_hd_extra9`) VALUES + (95, 2, 236, 0, 0, 0, 0, 76, 76, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 490.796, 525.464, 11.3455, 0, 0, 1.57115, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `veh_when_added`, `veh_how_added`, `veh_who_added`, `veh_hd_extra1`, `veh_hd_extra2`, `veh_hd_extra3`, `veh_hd_extra4`, `veh_hd_extra5`, `veh_hd_extra6`, `veh_hd_extra7`, `veh_hd_extra8`, `veh_hd_extra9`) VALUES + (96, 2, 157, 0, 0, 0, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 490.527, 519.161, 11.6082, 0, 0, 3.12121, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `veh_when_added`, `veh_how_added`, `veh_who_added`, `veh_hd_extra1`, `veh_hd_extra2`, `veh_hd_extra3`, `veh_hd_extra4`, `veh_hd_extra5`, `veh_hd_extra6`, `veh_hd_extra7`, `veh_hd_extra8`, `veh_hd_extra9`) VALUES + (97, 2, 156, 0, 0, 0, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 372.272, -526.059, 12.1009, 0, 0, -0.731552, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `veh_when_added`, `veh_how_added`, `veh_who_added`, `veh_hd_extra1`, `veh_hd_extra2`, `veh_hd_extra3`, `veh_hd_extra4`, `veh_hd_extra5`, `veh_hd_extra6`, `veh_hd_extra7`, `veh_hd_extra8`, `veh_hd_extra9`) VALUES + (98, 2, 156, 0, 0, 0, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 369.489, -523.585, 12.0988, 0, 0, -0.718855, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `veh_when_added`, `veh_how_added`, `veh_who_added`, `veh_hd_extra1`, `veh_hd_extra2`, `veh_hd_extra3`, `veh_hd_extra4`, `veh_hd_extra5`, `veh_hd_extra6`, `veh_hd_extra7`, `veh_hd_extra8`, `veh_hd_extra9`) VALUES + (99, 2, 156, 0, 0, 0, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 366.674, -521.239, 12.0989, 0, 0, -0.712901, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `veh_when_added`, `veh_how_added`, `veh_who_added`, `veh_hd_extra1`, `veh_hd_extra2`, `veh_hd_extra3`, `veh_hd_extra4`, `veh_hd_extra5`, `veh_hd_extra6`, `veh_hd_extra7`, `veh_hd_extra8`, `veh_hd_extra9`) VALUES + (100, 2, 156, 0, 0, 0, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 363.691, -518.751, 12.0982, 0, 0, -0.698761, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `veh_when_added`, `veh_how_added`, `veh_who_added`, `veh_hd_extra1`, `veh_hd_extra2`, `veh_hd_extra3`, `veh_hd_extra4`, `veh_hd_extra5`, `veh_hd_extra6`, `veh_hd_extra7`, `veh_hd_extra8`, `veh_hd_extra9`) VALUES + (101, 2, 156, 0, 0, 0, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 361.239, -516.717, 12.0989, 0, 0, -0.705683, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `veh_when_added`, `veh_how_added`, `veh_who_added`, `veh_hd_extra1`, `veh_hd_extra2`, `veh_hd_extra3`, `veh_hd_extra4`, `veh_hd_extra5`, `veh_hd_extra6`, `veh_hd_extra7`, `veh_hd_extra8`, `veh_hd_extra9`) VALUES + (102, 2, 156, 0, 0, 0, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 358.335, -514.321, 12.0942, 0, 0, -0.696986, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `veh_when_added`, `veh_how_added`, `veh_who_added`, `veh_hd_extra1`, `veh_hd_extra2`, `veh_hd_extra3`, `veh_hd_extra4`, `veh_hd_extra5`, `veh_hd_extra6`, `veh_hd_extra7`, `veh_hd_extra8`, `veh_hd_extra9`) VALUES + (103, 2, 156, 0, 0, 0, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 355.575, -511.957, 12.0989, 0, 0, -0.701771, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `veh_when_added`, `veh_how_added`, `veh_who_added`, `veh_hd_extra1`, `veh_hd_extra2`, `veh_hd_extra3`, `veh_hd_extra4`, `veh_hd_extra5`, `veh_hd_extra6`, `veh_hd_extra7`, `veh_hd_extra8`, `veh_hd_extra9`) VALUES + (104, 2, 157, 0, 0, 0, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 348.887, -491.942, 12.3596, 0, 0, 2.45143, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `veh_when_added`, `veh_how_added`, `veh_who_added`, `veh_hd_extra1`, `veh_hd_extra2`, `veh_hd_extra3`, `veh_hd_extra4`, `veh_hd_extra5`, `veh_hd_extra6`, `veh_hd_extra7`, `veh_hd_extra8`, `veh_hd_extra9`) VALUES + (105, 2, 157, 0, 0, 0, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 351.751, -494.224, 12.3596, 0, 0, 2.44634, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `veh_when_added`, `veh_how_added`, `veh_who_added`, `veh_hd_extra1`, `veh_hd_extra2`, `veh_hd_extra3`, `veh_hd_extra4`, `veh_hd_extra5`, `veh_hd_extra6`, `veh_hd_extra7`, `veh_hd_extra8`, `veh_hd_extra9`) VALUES + (106, 2, 146, 0, 0, 0, 0, 1, 3, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, -119.267, -918.579, 10.6751, 0, 0, 1.83377, 2, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `veh_when_added`, `veh_how_added`, `veh_who_added`, `veh_hd_extra1`, `veh_hd_extra2`, `veh_hd_extra3`, `veh_hd_extra4`, `veh_hd_extra5`, `veh_hd_extra6`, `veh_hd_extra7`, `veh_hd_extra8`, `veh_hd_extra9`) VALUES + (107, 2, 146, 0, 0, 0, 0, 1, 3, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, -117.954, -924.926, 10.6753, 0, 0, 1.8211, 2, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `veh_when_added`, `veh_how_added`, `veh_who_added`, `veh_hd_extra1`, `veh_hd_extra2`, `veh_hd_extra3`, `veh_hd_extra4`, `veh_hd_extra5`, `veh_hd_extra6`, `veh_hd_extra7`, `veh_hd_extra8`, `veh_hd_extra9`) VALUES + (108, 2, 146, 0, 0, 0, 0, 1, 3, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, -116.5, -931.549, 10.6753, 0, 0, 1.76665, 2, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `veh_when_added`, `veh_how_added`, `veh_who_added`, `veh_hd_extra1`, `veh_hd_extra2`, `veh_hd_extra3`, `veh_hd_extra4`, `veh_hd_extra5`, `veh_hd_extra6`, `veh_hd_extra7`, `veh_hd_extra8`, `veh_hd_extra9`) VALUES + (129, 2, 146, 0, 0, 0, 0, 1, 3, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, -769.326, 1155.62, 12.6228, 0, 0, -3.14049, 2, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `veh_when_added`, `veh_how_added`, `veh_who_added`, `veh_hd_extra1`, `veh_hd_extra2`, `veh_hd_extra3`, `veh_hd_extra4`, `veh_hd_extra5`, `veh_hd_extra6`, `veh_hd_extra7`, `veh_hd_extra8`, `veh_hd_extra9`) VALUES + (130, 2, 146, 0, 0, 0, 0, 1, 3, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, -773.948, 1155.64, 12.6228, 0, 0, 3.13857, 2, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `veh_when_added`, `veh_how_added`, `veh_who_added`, `veh_hd_extra1`, `veh_hd_extra2`, `veh_hd_extra3`, `veh_hd_extra4`, `veh_hd_extra5`, `veh_hd_extra6`, `veh_hd_extra7`, `veh_hd_extra8`, `veh_hd_extra9`) VALUES + (131, 2, 146, 0, 0, 0, 0, 1, 3, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, -769.568, 1131.04, 12.6227, 0, 0, -0.010725, 2, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `veh_when_added`, `veh_how_added`, `veh_who_added`, `veh_hd_extra1`, `veh_hd_extra2`, `veh_hd_extra3`, `veh_hd_extra4`, `veh_hd_extra5`, `veh_hd_extra6`, `veh_hd_extra7`, `veh_hd_extra8`, `veh_hd_extra9`) VALUES + (132, 2, 146, 0, 0, 0, 0, 1, 3, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, -774.835, 1131.13, 12.6229, 0, 0, -0.0206099, 2, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `veh_when_added`, `veh_how_added`, `veh_who_added`, `veh_hd_extra1`, `veh_hd_extra2`, `veh_hd_extra3`, `veh_hd_extra4`, `veh_hd_extra5`, `veh_hd_extra6`, `veh_hd_extra7`, `veh_hd_extra8`, `veh_hd_extra9`) VALUES + (133, 2, 146, 0, 0, 0, 0, 1, 3, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 458.814, 702.22, 11.49, 0, 0, 1.51274, 2, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `veh_when_added`, `veh_how_added`, `veh_who_added`, `veh_hd_extra1`, `veh_hd_extra2`, `veh_hd_extra3`, `veh_hd_extra4`, `veh_hd_extra5`, `veh_hd_extra6`, `veh_hd_extra7`, `veh_hd_extra8`, `veh_hd_extra9`) VALUES + (134, 2, 146, 0, 0, 0, 0, 1, 3, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 467.202, 701.723, 11.6151, 0, 0, 1.50174, 2, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `veh_when_added`, `veh_how_added`, `veh_who_added`, `veh_hd_extra1`, `veh_hd_extra2`, `veh_hd_extra3`, `veh_hd_extra4`, `veh_hd_extra5`, `veh_hd_extra6`, `veh_hd_extra7`, `veh_hd_extra8`, `veh_hd_extra9`) VALUES + (135, 2, 150, 0, 0, 0, 0, 6, 73, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, -1005.69, 208.713, 11.1279, 0, 0, 3.03758, 2, 14, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `veh_when_added`, `veh_how_added`, `veh_who_added`, `veh_hd_extra1`, `veh_hd_extra2`, `veh_hd_extra3`, `veh_hd_extra4`, `veh_hd_extra5`, `veh_hd_extra6`, `veh_hd_extra7`, `veh_hd_extra8`, `veh_hd_extra9`) VALUES + (136, 2, 150, 0, 0, 0, 0, 6, 75, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, -1002.12, 203.73, 11.4539, 0, 0, 3.01694, 2, 14, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `veh_when_added`, `veh_how_added`, `veh_who_added`, `veh_hd_extra1`, `veh_hd_extra2`, `veh_hd_extra3`, `veh_hd_extra4`, `veh_hd_extra5`, `veh_hd_extra6`, `veh_hd_extra7`, `veh_hd_extra8`, `veh_hd_extra9`) VALUES + (137, 2, 168, 0, 0, 0, 0, 6, 76, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, -1008.54, 186.246, 11.3789, 0, 0, -0.157828, 2, 14, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `veh_when_added`, `veh_how_added`, `veh_who_added`, `veh_hd_extra1`, `veh_hd_extra2`, `veh_hd_extra3`, `veh_hd_extra4`, `veh_hd_extra5`, `veh_hd_extra6`, `veh_hd_extra7`, `veh_hd_extra8`, `veh_hd_extra9`) VALUES + (138, 2, 168, 0, 0, 0, 0, 6, 76, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, -995.796, 193.143, 11.4015, 0, 0, 1.41776, 2, 14, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `veh_when_added`, `veh_how_added`, `veh_who_added`, `veh_hd_extra1`, `veh_hd_extra2`, `veh_hd_extra3`, `veh_hd_extra4`, `veh_hd_extra5`, `veh_hd_extra6`, `veh_hd_extra7`, `veh_hd_extra8`, `veh_hd_extra9`) VALUES + (139, 2, 167, 0, 0, 0, 0, 56, 75, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, -1141.98, -283.386, 11.3194, 0, 0, -3.09345, 2, 18, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `veh_when_added`, `veh_how_added`, `veh_who_added`, `veh_hd_extra1`, `veh_hd_extra2`, `veh_hd_extra3`, `veh_hd_extra4`, `veh_hd_extra5`, `veh_hd_extra6`, `veh_hd_extra7`, `veh_hd_extra8`, `veh_hd_extra9`) VALUES + (140, 2, 167, 0, 0, 0, 0, 13, 76, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, -1143.05, -270.229, 11.4251, 0, 0, -3.05214, 2, 18, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `veh_when_added`, `veh_how_added`, `veh_who_added`, `veh_hd_extra1`, `veh_hd_extra2`, `veh_hd_extra3`, `veh_hd_extra4`, `veh_hd_extra5`, `veh_hd_extra6`, `veh_hd_extra7`, `veh_hd_extra8`, `veh_hd_extra9`) VALUES + (141, 2, 167, 0, 0, 0, 0, 13, 76, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, -1143.99, -256.669, 11.5147, 0, 0, -3.07535, 2, 18, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `veh_when_added`, `veh_how_added`, `veh_who_added`, `veh_hd_extra1`, `veh_hd_extra2`, `veh_hd_extra3`, `veh_hd_extra4`, `veh_hd_extra5`, `veh_hd_extra6`, `veh_hd_extra7`, `veh_hd_extra8`, `veh_hd_extra9`) VALUES + (142, 2, 146, 0, 0, 0, 0, 1, 3, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, -873.256, -482.571, 11.3251, 0, 0, -1.5271, 2, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `veh_when_added`, `veh_how_added`, `veh_who_added`, `veh_hd_extra1`, `veh_hd_extra2`, `veh_hd_extra3`, `veh_hd_extra4`, `veh_hd_extra5`, `veh_hd_extra6`, `veh_hd_extra7`, `veh_hd_extra8`, `veh_hd_extra9`) VALUES + (143, 2, 146, 0, 0, 0, 0, 1, 3, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, -873.249, -478.507, 11.3193, 0, 0, -1.55587, 2, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `veh_when_added`, `veh_how_added`, `veh_who_added`, `veh_hd_extra1`, `veh_hd_extra2`, `veh_hd_extra3`, `veh_hd_extra4`, `veh_hd_extra5`, `veh_hd_extra6`, `veh_hd_extra7`, `veh_hd_extra8`, `veh_hd_extra9`) VALUES + (144, 2, 138, 0, 0, 0, 0, 1, 75, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, -1243.33, 23.4004, 12.013, 0, 0, 3.12587, 2, 22, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `veh_when_added`, `veh_how_added`, `veh_who_added`, `veh_hd_extra1`, `veh_hd_extra2`, `veh_hd_extra3`, `veh_hd_extra4`, `veh_hd_extra5`, `veh_hd_extra6`, `veh_hd_extra7`, `veh_hd_extra8`, `veh_hd_extra9`) VALUES + (145, 2, 138, 0, 0, 0, 0, 1, 75, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, -1247.7, 23.4549, 12.0141, 0, 0, 3.1171, 2, 22, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `veh_when_added`, `veh_how_added`, `veh_who_added`, `veh_hd_extra1`, `veh_hd_extra2`, `veh_hd_extra3`, `veh_hd_extra4`, `veh_hd_extra5`, `veh_hd_extra6`, `veh_hd_extra7`, `veh_hd_extra8`, `veh_hd_extra9`) VALUES + (146, 2, 138, 0, 0, 0, 0, 1, 75, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, -1251.99, 23.5308, 12.0096, 0, 0, 3.12793, 2, 22, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `veh_when_added`, `veh_how_added`, `veh_who_added`, `veh_hd_extra1`, `veh_hd_extra2`, `veh_hd_extra3`, `veh_hd_extra4`, `veh_hd_extra5`, `veh_hd_extra6`, `veh_hd_extra7`, `veh_hd_extra8`, `veh_hd_extra9`) VALUES + (147, 4, 596, 0, 0, 0, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 1602.73, -1703.95, 5.62027, 0, 0, 1.59558, 2, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `veh_when_added`, `veh_how_added`, `veh_who_added`, `veh_hd_extra1`, `veh_hd_extra2`, `veh_hd_extra3`, `veh_hd_extra4`, `veh_hd_extra5`, `veh_hd_extra6`, `veh_hd_extra7`, `veh_hd_extra8`, `veh_hd_extra9`) VALUES + (148, 4, 596, 0, 0, 0, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 1602.74, -1700.18, 5.61885, 0, 0, 1.59013, 2, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `veh_when_added`, `veh_how_added`, `veh_who_added`, `veh_hd_extra1`, `veh_hd_extra2`, `veh_hd_extra3`, `veh_hd_extra4`, `veh_hd_extra5`, `veh_hd_extra6`, `veh_hd_extra7`, `veh_hd_extra8`, `veh_hd_extra9`) VALUES + (149, 4, 596, 0, 0, 0, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 1602.68, -1696.18, 5.61891, 0, 0, 1.57734, 2, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `veh_when_added`, `veh_how_added`, `veh_who_added`, `veh_hd_extra1`, `veh_hd_extra2`, `veh_hd_extra3`, `veh_hd_extra4`, `veh_hd_extra5`, `veh_hd_extra6`, `veh_hd_extra7`, `veh_hd_extra8`, `veh_hd_extra9`) VALUES + (150, 4, 596, 0, 0, 0, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 1602.67, -1691.93, 5.61976, 0, 0, 1.59322, 2, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `veh_when_added`, `veh_how_added`, `veh_who_added`, `veh_hd_extra1`, `veh_hd_extra2`, `veh_hd_extra3`, `veh_hd_extra4`, `veh_hd_extra5`, `veh_hd_extra6`, `veh_hd_extra7`, `veh_hd_extra8`, `veh_hd_extra9`) VALUES + (151, 4, 596, 0, 0, 0, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 2083.1, -1706.03, 13.104, 0, 0, 0.635562, 2, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `veh_when_added`, `veh_how_added`, `veh_who_added`, `veh_hd_extra1`, `veh_hd_extra2`, `veh_hd_extra3`, `veh_hd_extra4`, `veh_hd_extra5`, `veh_hd_extra6`, `veh_hd_extra7`, `veh_hd_extra8`, `veh_hd_extra9`) VALUES + (152, 4, 596, 0, 0, 0, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 1595.43, -1711.89, 5.61871, 0, 0, -0.0106168, 2, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `veh_when_added`, `veh_how_added`, `veh_who_added`, `veh_hd_extra1`, `veh_hd_extra2`, `veh_hd_extra3`, `veh_hd_extra4`, `veh_hd_extra5`, `veh_hd_extra6`, `veh_hd_extra7`, `veh_hd_extra8`, `veh_hd_extra9`) VALUES + (153, 4, 596, 0, 0, 0, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 1591.43, -1711.87, 5.61965, 0, 0, 0.00642908, 2, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `veh_when_added`, `veh_how_added`, `veh_who_added`, `veh_hd_extra1`, `veh_hd_extra2`, `veh_hd_extra3`, `veh_hd_extra4`, `veh_hd_extra5`, `veh_hd_extra6`, `veh_hd_extra7`, `veh_hd_extra8`, `veh_hd_extra9`) VALUES + (154, 4, 596, 0, 0, 0, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 1587.33, -1711.86, 5.61184, 0, 0, 0.00975822, 2, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `veh_when_added`, `veh_how_added`, `veh_who_added`, `veh_hd_extra1`, `veh_hd_extra2`, `veh_hd_extra3`, `veh_hd_extra4`, `veh_hd_extra5`, `veh_hd_extra6`, `veh_hd_extra7`, `veh_hd_extra8`, `veh_hd_extra9`) VALUES + (155, 4, 427, 0, 0, 0, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 1526.72, -1644.82, 6.02297, 0, 0, -3.13362, 2, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `veh_when_added`, `veh_how_added`, `veh_who_added`, `veh_hd_extra1`, `veh_hd_extra2`, `veh_hd_extra3`, `veh_hd_extra4`, `veh_hd_extra5`, `veh_hd_extra6`, `veh_hd_extra7`, `veh_hd_extra8`, `veh_hd_extra9`) VALUES + (156, 4, 427, 0, 0, 0, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 1530.62, -1644.78, 6.02321, 0, 0, -3.11574, 2, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `veh_when_added`, `veh_how_added`, `veh_who_added`, `veh_hd_extra1`, `veh_hd_extra2`, `veh_hd_extra3`, `veh_hd_extra4`, `veh_hd_extra5`, `veh_hd_extra6`, `veh_hd_extra7`, `veh_hd_extra8`, `veh_hd_extra9`) VALUES + (157, 4, 427, 0, 0, 0, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 1534.72, -1644.71, 6.03863, 0, 0, -3.13567, 2, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `veh_when_added`, `veh_how_added`, `veh_who_added`, `veh_hd_extra1`, `veh_hd_extra2`, `veh_hd_extra3`, `veh_hd_extra4`, `veh_hd_extra5`, `veh_hd_extra6`, `veh_hd_extra7`, `veh_hd_extra8`, `veh_hd_extra9`) VALUES + (158, 4, 599, 0, 0, 0, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 1545.99, -1651.07, 6.08226, 0, 0, 1.56824, 2, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `veh_when_added`, `veh_how_added`, `veh_who_added`, `veh_hd_extra1`, `veh_hd_extra2`, `veh_hd_extra3`, `veh_hd_extra4`, `veh_hd_extra5`, `veh_hd_extra6`, `veh_hd_extra7`, `veh_hd_extra8`, `veh_hd_extra9`) VALUES + (159, 4, 599, 0, 0, 0, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 1546.03, -1654.96, 6.03352, 0, 0, 1.54986, 2, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `veh_when_added`, `veh_how_added`, `veh_who_added`, `veh_hd_extra1`, `veh_hd_extra2`, `veh_hd_extra3`, `veh_hd_extra4`, `veh_hd_extra5`, `veh_hd_extra6`, `veh_hd_extra7`, `veh_hd_extra8`, `veh_hd_extra9`) VALUES + (160, 4, 426, 0, 0, 0, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 1545.79, -1667.84, 5.62373, 0, 0, 1.56514, 2, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `veh_when_added`, `veh_how_added`, `veh_who_added`, `veh_hd_extra1`, `veh_hd_extra2`, `veh_hd_extra3`, `veh_hd_extra4`, `veh_hd_extra5`, `veh_hd_extra6`, `veh_hd_extra7`, `veh_hd_extra8`, `veh_hd_extra9`) VALUES + (161, 4, 426, 0, 0, 0, 0, 10, 10, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 1545.98, -1672.1, 5.63141, 0, 0, 1.5917, 2, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `veh_when_added`, `veh_how_added`, `veh_who_added`, `veh_hd_extra1`, `veh_hd_extra2`, `veh_hd_extra3`, `veh_hd_extra4`, `veh_hd_extra5`, `veh_hd_extra6`, `veh_hd_extra7`, `veh_hd_extra8`, `veh_hd_extra9`) VALUES + (162, 2, 131, 0, 0, 0, 0, 5, 62, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, -979.65, -882.122, 12.8471, 0, 0, 0.706624, 6, 201, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `veh_when_added`, `veh_how_added`, `veh_who_added`, `veh_hd_extra1`, `veh_hd_extra2`, `veh_hd_extra3`, `veh_hd_extra4`, `veh_hd_extra5`, `veh_hd_extra6`, `veh_hd_extra7`, `veh_hd_extra8`, `veh_hd_extra9`) VALUES + (163, 2, 175, 0, 0, 0, 0, 10, 10, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, -982.328, -884.745, 12.8644, 0, 0, 0.752705, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `veh_when_added`, `veh_how_added`, `veh_who_added`, `veh_hd_extra1`, `veh_hd_extra2`, `veh_hd_extra3`, `veh_hd_extra4`, `veh_hd_extra5`, `veh_hd_extra6`, `veh_hd_extra7`, `veh_hd_extra8`, `veh_hd_extra9`) VALUES + (164, 2, 134, 0, 0, 0, 0, 37, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, -984.716, -887.286, 12.7108, 0, 0, 0.798329, 6, 201, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 750, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `veh_when_added`, `veh_how_added`, `veh_who_added`, `veh_hd_extra1`, `veh_hd_extra2`, `veh_hd_extra3`, `veh_hd_extra4`, `veh_hd_extra5`, `veh_hd_extra6`, `veh_hd_extra7`, `veh_hd_extra8`, `veh_hd_extra9`) VALUES + (165, 4, 523, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 1526.17, -1680.36, 5.45989, 0, 0, -0.797715, 2, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `veh_when_added`, `veh_how_added`, `veh_who_added`, `veh_hd_extra1`, `veh_hd_extra2`, `veh_hd_extra3`, `veh_hd_extra4`, `veh_hd_extra5`, `veh_hd_extra6`, `veh_hd_extra7`, `veh_hd_extra8`, `veh_hd_extra9`) VALUES + (166, 4, 523, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 1526.06, -1674.86, 5.46142, 0, 0, -2.37213, 2, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `veh_when_added`, `veh_how_added`, `veh_who_added`, `veh_hd_extra1`, `veh_hd_extra2`, `veh_hd_extra3`, `veh_hd_extra4`, `veh_hd_extra5`, `veh_hd_extra6`, `veh_hd_extra7`, `veh_hd_extra8`, `veh_hd_extra9`) VALUES + (167, 4, 523, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 1529.73, -1674.89, 5.4601, 0, 0, -2.37606, 2, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `veh_when_added`, `veh_how_added`, `veh_who_added`, `veh_hd_extra1`, `veh_hd_extra2`, `veh_hd_extra3`, `veh_hd_extra4`, `veh_hd_extra5`, `veh_hd_extra6`, `veh_hd_extra7`, `veh_hd_extra8`, `veh_hd_extra9`) VALUES + (168, 4, 523, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 1529.64, -1680.68, 5.46212, 0, 0, -0.793975, 2, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `veh_when_added`, `veh_how_added`, `veh_who_added`, `veh_hd_extra1`, `veh_hd_extra2`, `veh_hd_extra3`, `veh_hd_extra4`, `veh_hd_extra5`, `veh_hd_extra6`, `veh_hd_extra7`, `veh_hd_extra8`, `veh_hd_extra9`) VALUES + (169, 4, 416, 0, 0, 0, 0, 1, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 1178.73, -1338.94, 14.0094, 0, 0, -1.54939, 2, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `veh_when_added`, `veh_how_added`, `veh_who_added`, `veh_hd_extra1`, `veh_hd_extra2`, `veh_hd_extra3`, `veh_hd_extra4`, `veh_hd_extra5`, `veh_hd_extra6`, `veh_hd_extra7`, `veh_hd_extra8`, `veh_hd_extra9`) VALUES + (170, 4, 416, 0, 0, 0, 0, 1, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 1178.46, -1308.67, 13.9791, 0, 0, -1.56455, 2, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `veh_when_added`, `veh_how_added`, `veh_who_added`, `veh_hd_extra1`, `veh_hd_extra2`, `veh_hd_extra3`, `veh_hd_extra4`, `veh_hd_extra5`, `veh_hd_extra6`, `veh_hd_extra7`, `veh_hd_extra8`, `veh_hd_extra9`) VALUES + (171, 4, 416, 0, 0, 0, 0, 1, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 2036.82, -1425.53, 17.1413, 0, 0, -0.00217407, 2, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `veh_when_added`, `veh_how_added`, `veh_who_added`, `veh_hd_extra1`, `veh_hd_extra2`, `veh_hd_extra3`, `veh_hd_extra4`, `veh_hd_extra5`, `veh_hd_extra6`, `veh_hd_extra7`, `veh_hd_extra8`, `veh_hd_extra9`) VALUES + (172, 4, 416, 0, 0, 0, 0, 1, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 2024.7, -1409.68, 17.1419, 0, 0, 1.55537, 2, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `veh_when_added`, `veh_how_added`, `veh_who_added`, `veh_hd_extra1`, `veh_hd_extra2`, `veh_hd_extra3`, `veh_hd_extra4`, `veh_hd_extra5`, `veh_hd_extra6`, `veh_hd_extra7`, `veh_hd_extra8`, `veh_hd_extra9`) VALUES + (173, 4, 408, 0, 0, 0, 0, 26, 26, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 2338.19, -2085.52, 14.0841, 0, 0, 1.56666, 2, 24, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `veh_when_added`, `veh_how_added`, `veh_who_added`, `veh_hd_extra1`, `veh_hd_extra2`, `veh_hd_extra3`, `veh_hd_extra4`, `veh_hd_extra5`, `veh_hd_extra6`, `veh_hd_extra7`, `veh_hd_extra8`, `veh_hd_extra9`) VALUES + (174, 4, 408, 0, 0, 0, 0, 26, 26, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 2338.24, -2090.4, 14.097, 0, 0, 1.57921, 2, 24, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `veh_when_added`, `veh_how_added`, `veh_who_added`, `veh_hd_extra1`, `veh_hd_extra2`, `veh_hd_extra3`, `veh_hd_extra4`, `veh_hd_extra5`, `veh_hd_extra6`, `veh_hd_extra7`, `veh_hd_extra8`, `veh_hd_extra9`) VALUES + (175, 4, 408, 0, 0, 0, 0, 26, 26, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 2338.3, -2095.48, 14.0909, 0, 0, 1.57749, 2, 24, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `veh_when_added`, `veh_how_added`, `veh_who_added`, `veh_hd_extra1`, `veh_hd_extra2`, `veh_hd_extra3`, `veh_hd_extra4`, `veh_hd_extra5`, `veh_hd_extra6`, `veh_hd_extra7`, `veh_hd_extra8`, `veh_hd_extra9`) VALUES + (176, 4, 431, 0, 0, 0, 0, 47, 74, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 1781.16, -1887.68, 13.493, 0, 0, -1.54371, 2, 20, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `veh_when_added`, `veh_how_added`, `veh_who_added`, `veh_hd_extra1`, `veh_hd_extra2`, `veh_hd_extra3`, `veh_hd_extra4`, `veh_hd_extra5`, `veh_hd_extra6`, `veh_hd_extra7`, `veh_hd_extra8`, `veh_hd_extra9`) VALUES + (177, 4, 431, 0, 0, 0, 0, 92, 72, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 1781.08, -1892.33, 13.492, 0, 0, -1.55517, 2, 20, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `veh_when_added`, `veh_how_added`, `veh_who_added`, `veh_hd_extra1`, `veh_hd_extra2`, `veh_hd_extra3`, `veh_hd_extra4`, `veh_hd_extra5`, `veh_hd_extra6`, `veh_hd_extra7`, `veh_hd_extra8`, `veh_hd_extra9`) VALUES + (178, 4, 431, 0, 0, 0, 0, 92, 72, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 1780.83, -1897.52, 13.4905, 0, 0, -1.56997, 2, 20, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `veh_when_added`, `veh_how_added`, `veh_who_added`, `veh_hd_extra1`, `veh_hd_extra2`, `veh_hd_extra3`, `veh_hd_extra4`, `veh_hd_extra5`, `veh_hd_extra6`, `veh_hd_extra7`, `veh_hd_extra8`, `veh_hd_extra9`) VALUES + (179, 4, 420, 0, 0, 0, 0, 6, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 1804.27, -1932.53, 13.1664, 0, 0, -0.015131, 2, 16, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `veh_when_added`, `veh_how_added`, `veh_who_added`, `veh_hd_extra1`, `veh_hd_extra2`, `veh_hd_extra3`, `veh_hd_extra4`, `veh_hd_extra5`, `veh_hd_extra6`, `veh_hd_extra7`, `veh_hd_extra8`, `veh_hd_extra9`) VALUES + (180, 4, 420, 0, 0, 0, 0, 6, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 1800.35, -1932.4, 13.166, 0, 0, -0.0127972, 2, 16, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `veh_when_added`, `veh_how_added`, `veh_who_added`, `veh_hd_extra1`, `veh_hd_extra2`, `veh_hd_extra3`, `veh_hd_extra4`, `veh_hd_extra5`, `veh_hd_extra6`, `veh_hd_extra7`, `veh_hd_extra8`, `veh_hd_extra9`) VALUES + (181, 4, 420, 0, 0, 0, 0, 6, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 1796.72, -1932.55, 13.1653, 0, 0, -0.000382929, 2, 16, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `veh_when_added`, `veh_how_added`, `veh_who_added`, `veh_hd_extra1`, `veh_hd_extra2`, `veh_hd_extra3`, `veh_hd_extra4`, `veh_hd_extra5`, `veh_hd_extra6`, `veh_hd_extra7`, `veh_hd_extra8`, `veh_hd_extra9`) VALUES + (182, 4, 438, 0, 0, 0, 0, 6, 76, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 1792.65, -1932.66, 13.3902, 0, 0, 0.00784995, 2, 16, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `veh_when_added`, `veh_how_added`, `veh_who_added`, `veh_hd_extra1`, `veh_hd_extra2`, `veh_hd_extra3`, `veh_hd_extra4`, `veh_hd_extra5`, `veh_hd_extra6`, `veh_hd_extra7`, `veh_hd_extra8`, `veh_hd_extra9`) VALUES + (183, 4, 438, 0, 0, 0, 0, 6, 76, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 1788.85, -1932.83, 13.3847, 0, 0, 0.025678, 2, 16, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `veh_when_added`, `veh_how_added`, `veh_who_added`, `veh_hd_extra1`, `veh_hd_extra2`, `veh_hd_extra3`, `veh_hd_extra4`, `veh_hd_extra5`, `veh_hd_extra6`, `veh_hd_extra7`, `veh_hd_extra8`, `veh_hd_extra9`) VALUES + (184, 4, 407, 0, 0, 0, 0, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 1147.58, -1295.9, 13.8958, 0, 0, 0.00109566, 2, 12, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `veh_when_added`, `veh_how_added`, `veh_who_added`, `veh_hd_extra1`, `veh_hd_extra2`, `veh_hd_extra3`, `veh_hd_extra4`, `veh_hd_extra5`, `veh_hd_extra6`, `veh_hd_extra7`, `veh_hd_extra8`, `veh_hd_extra9`) VALUES + (185, 4, 407, 0, 0, 0, 0, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 1147.58, -1308.6, 13.9144, 0, 0, 0.00538338, 2, 12, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `veh_when_added`, `veh_how_added`, `veh_who_added`, `veh_hd_extra1`, `veh_hd_extra2`, `veh_hd_extra3`, `veh_hd_extra4`, `veh_hd_extra5`, `veh_hd_extra6`, `veh_hd_extra7`, `veh_hd_extra8`, `veh_hd_extra9`) VALUES + (186, 4, 598, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 2282.26, 2442.01, 10.5652, 0, 0, -0.0100905, 2, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `veh_when_added`, `veh_how_added`, `veh_who_added`, `veh_hd_extra1`, `veh_hd_extra2`, `veh_hd_extra3`, `veh_hd_extra4`, `veh_hd_extra5`, `veh_hd_extra6`, `veh_hd_extra7`, `veh_hd_extra8`, `veh_hd_extra9`) VALUES + (187, 4, 598, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 2277.82, 2441.92, 10.5665, 0, 0, 0.0142917, 2, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `veh_when_added`, `veh_how_added`, `veh_who_added`, `veh_hd_extra1`, `veh_hd_extra2`, `veh_hd_extra3`, `veh_hd_extra4`, `veh_hd_extra5`, `veh_hd_extra6`, `veh_hd_extra7`, `veh_hd_extra8`, `veh_hd_extra9`) VALUES + (188, 4, 598, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 2273.75, 2441.84, 10.5656, 0, 0, 0.00445989, 2, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `veh_when_added`, `veh_how_added`, `veh_who_added`, `veh_hd_extra1`, `veh_hd_extra2`, `veh_hd_extra3`, `veh_hd_extra4`, `veh_hd_extra5`, `veh_hd_extra6`, `veh_hd_extra7`, `veh_hd_extra8`, `veh_hd_extra9`) VALUES + (189, 4, 598, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 2269.03, 2441.76, 10.565, 0, 0, 0.02489, 2, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `veh_when_added`, `veh_how_added`, `veh_who_added`, `veh_hd_extra1`, `veh_hd_extra2`, `veh_hd_extra3`, `veh_hd_extra4`, `veh_hd_extra5`, `veh_hd_extra6`, `veh_hd_extra7`, `veh_hd_extra8`, `veh_hd_extra9`) VALUES + (190, 4, 598, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 2277.94, 2478.61, 10.5693, 0, 0, 3.13522, 2, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `veh_when_added`, `veh_how_added`, `veh_who_added`, `veh_hd_extra1`, `veh_hd_extra2`, `veh_hd_extra3`, `veh_hd_extra4`, `veh_hd_extra5`, `veh_hd_extra6`, `veh_hd_extra7`, `veh_hd_extra8`, `veh_hd_extra9`) VALUES + (191, 4, 598, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 2273.44, 2478.64, 10.5671, 0, 0, 3.12822, 2, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `veh_when_added`, `veh_how_added`, `veh_who_added`, `veh_hd_extra1`, `veh_hd_extra2`, `veh_hd_extra3`, `veh_hd_extra4`, `veh_hd_extra5`, `veh_hd_extra6`, `veh_hd_extra7`, `veh_hd_extra8`, `veh_hd_extra9`) VALUES + (192, 4, 598, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 2269.09, 2478.64, 10.5649, 0, 0, 3.13244, 2, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `veh_when_added`, `veh_how_added`, `veh_who_added`, `veh_hd_extra1`, `veh_hd_extra2`, `veh_hd_extra3`, `veh_hd_extra4`, `veh_hd_extra5`, `veh_hd_extra6`, `veh_hd_extra7`, `veh_hd_extra8`, `veh_hd_extra9`) VALUES + (193, 4, 598, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 2282.15, 2478.59, 10.5668, 0, 0, -3.12538, 2, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `veh_when_added`, `veh_how_added`, `veh_who_added`, `veh_hd_extra1`, `veh_hd_extra2`, `veh_hd_extra3`, `veh_hd_extra4`, `veh_hd_extra5`, `veh_hd_extra6`, `veh_hd_extra7`, `veh_hd_extra8`, `veh_hd_extra9`) VALUES + (194, 4, 407, 0, 0, 0, 0, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 1751.1, 2077.36, 11.0579, 0, 0, 3.13707, 2, 12, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `veh_when_added`, `veh_how_added`, `veh_who_added`, `veh_hd_extra1`, `veh_hd_extra2`, `veh_hd_extra3`, `veh_hd_extra4`, `veh_hd_extra5`, `veh_hd_extra6`, `veh_hd_extra7`, `veh_hd_extra8`, `veh_hd_extra9`) VALUES + (195, 4, 407, 0, 0, 0, 0, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 1756.99, 2077.55, 11.0555, 0, 0, -3.13337, 2, 12, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `veh_when_added`, `veh_how_added`, `veh_who_added`, `veh_hd_extra1`, `veh_hd_extra2`, `veh_hd_extra3`, `veh_hd_extra4`, `veh_hd_extra5`, `veh_hd_extra6`, `veh_hd_extra7`, `veh_hd_extra8`, `veh_hd_extra9`) VALUES + (196, 4, 407, 0, 0, 0, 0, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 1763.96, 2077.97, 11.0573, 0, 0, -3.10259, 2, 12, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `veh_when_added`, `veh_how_added`, `veh_who_added`, `veh_hd_extra1`, `veh_hd_extra2`, `veh_hd_extra3`, `veh_hd_extra4`, `veh_hd_extra5`, `veh_hd_extra6`, `veh_hd_extra7`, `veh_hd_extra8`, `veh_hd_extra9`) VALUES + (197, 4, 597, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, -1572.66, 742.629, -5.47258, 0, 0, 1.57093, 2, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `veh_when_added`, `veh_how_added`, `veh_who_added`, `veh_hd_extra1`, `veh_hd_extra2`, `veh_hd_extra3`, `veh_hd_extra4`, `veh_hd_extra5`, `veh_hd_extra6`, `veh_hd_extra7`, `veh_hd_extra8`, `veh_hd_extra9`) VALUES + (198, 4, 597, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, -1572.64, 738.657, -5.47407, 0, 0, 1.5799, 2, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `veh_when_added`, `veh_how_added`, `veh_who_added`, `veh_hd_extra1`, `veh_hd_extra2`, `veh_hd_extra3`, `veh_hd_extra4`, `veh_hd_extra5`, `veh_hd_extra6`, `veh_hd_extra7`, `veh_hd_extra8`, `veh_hd_extra9`) VALUES + (199, 4, 597, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, -1572.6, 734.641, -5.47307, 0, 0, 1.57367, 2, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `veh_when_added`, `veh_how_added`, `veh_who_added`, `veh_hd_extra1`, `veh_hd_extra2`, `veh_hd_extra3`, `veh_hd_extra4`, `veh_hd_extra5`, `veh_hd_extra6`, `veh_hd_extra7`, `veh_hd_extra8`, `veh_hd_extra9`) VALUES + (200, 4, 597, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, -1572.56, 730.619, -5.47164, 0, 0, 1.57203, 2, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `veh_when_added`, `veh_how_added`, `veh_who_added`, `veh_hd_extra1`, `veh_hd_extra2`, `veh_hd_extra3`, `veh_hd_extra4`, `veh_hd_extra5`, `veh_hd_extra6`, `veh_hd_extra7`, `veh_hd_extra8`, `veh_hd_extra9`) VALUES + (201, 4, 597, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, -1572.46, 726.494, -5.47229, 0, 0, 1.57229, 2, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `veh_when_added`, `veh_how_added`, `veh_who_added`, `veh_hd_extra1`, `veh_hd_extra2`, `veh_hd_extra3`, `veh_hd_extra4`, `veh_hd_extra5`, `veh_hd_extra6`, `veh_hd_extra7`, `veh_hd_extra8`, `veh_hd_extra9`) VALUES + (202, 4, 597, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, -1579.91, 750.258, -5.47212, 0, 0, 3.13972, 2, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `veh_when_added`, `veh_how_added`, `veh_who_added`, `veh_hd_extra1`, `veh_hd_extra2`, `veh_hd_extra3`, `veh_hd_extra4`, `veh_hd_extra5`, `veh_hd_extra6`, `veh_hd_extra7`, `veh_hd_extra8`, `veh_hd_extra9`) VALUES + (203, 4, 597, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, -1584.04, 750.231, -5.47137, 0, 0, -3.13672, 2, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `veh_when_added`, `veh_how_added`, `veh_who_added`, `veh_hd_extra1`, `veh_hd_extra2`, `veh_hd_extra3`, `veh_hd_extra4`, `veh_hd_extra5`, `veh_hd_extra6`, `veh_hd_extra7`, `veh_hd_extra8`, `veh_hd_extra9`) VALUES + (204, 4, 597, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, -1588.07, 750.247, -5.47243, 0, 0, 3.13574, 2, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `veh_when_added`, `veh_how_added`, `veh_who_added`, `veh_hd_extra1`, `veh_hd_extra2`, `veh_hd_extra3`, `veh_hd_extra4`, `veh_hd_extra5`, `veh_hd_extra6`, `veh_hd_extra7`, `veh_hd_extra8`, `veh_hd_extra9`) VALUES + (205, 4, 597, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, -1592.38, 750.296, -5.47143, 0, 0, 3.13692, 2, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `veh_when_added`, `veh_how_added`, `veh_who_added`, `veh_hd_extra1`, `veh_hd_extra2`, `veh_hd_extra3`, `veh_hd_extra4`, `veh_hd_extra5`, `veh_hd_extra6`, `veh_hd_extra7`, `veh_hd_extra8`, `veh_hd_extra9`) VALUES + (206, 4, 523, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, -1611.79, 730.701, -5.67174, 0, 0, 0.560641, 2, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `veh_when_added`, `veh_how_added`, `veh_who_added`, `veh_hd_extra1`, `veh_hd_extra2`, `veh_hd_extra3`, `veh_hd_extra4`, `veh_hd_extra5`, `veh_hd_extra6`, `veh_hd_extra7`, `veh_hd_extra8`, `veh_hd_extra9`) VALUES + (207, 4, 523, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, -1617.18, 730.908, -5.66764, 0, 0, -0.753548, 2, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `veh_when_added`, `veh_how_added`, `veh_who_added`, `veh_hd_extra1`, `veh_hd_extra2`, `veh_hd_extra3`, `veh_hd_extra4`, `veh_hd_extra5`, `veh_hd_extra6`, `veh_hd_extra7`, `veh_hd_extra8`, `veh_hd_extra9`) VALUES + (208, 4, 523, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, -1611.58, 733.413, -5.67532, 0, 0, 0.526106, 2, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `veh_when_added`, `veh_how_added`, `veh_who_added`, `veh_hd_extra1`, `veh_hd_extra2`, `veh_hd_extra3`, `veh_hd_extra4`, `veh_hd_extra5`, `veh_hd_extra6`, `veh_hd_extra7`, `veh_hd_extra8`, `veh_hd_extra9`) VALUES + (209, 4, 523, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, -1617.37, 733.199, -5.67666, 0, 0, -0.764526, 2, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `veh_when_added`, `veh_how_added`, `veh_who_added`, `veh_hd_extra1`, `veh_hd_extra2`, `veh_hd_extra3`, `veh_hd_extra4`, `veh_hd_extra5`, `veh_hd_extra6`, `veh_hd_extra7`, `veh_hd_extra8`, `veh_hd_extra9`) VALUES + (210, 4, 426, 0, 0, 0, 0, 11, 11, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, -1572.29, 705.876, -5.49726, 0, 0, 1.58725, 2, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `veh_when_added`, `veh_how_added`, `veh_who_added`, `veh_hd_extra1`, `veh_hd_extra2`, `veh_hd_extra3`, `veh_hd_extra4`, `veh_hd_extra5`, `veh_hd_extra6`, `veh_hd_extra7`, `veh_hd_extra8`, `veh_hd_extra9`) VALUES + (211, 4, 426, 0, 0, 0, 0, 53, 53, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, -1572.31, 710.11, -5.49697, 0, 0, 1.55664, 2, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `veh_when_added`, `veh_how_added`, `veh_who_added`, `veh_hd_extra1`, `veh_hd_extra2`, `veh_hd_extra3`, `veh_hd_extra4`, `veh_hd_extra5`, `veh_hd_extra6`, `veh_hd_extra7`, `veh_hd_extra8`, `veh_hd_extra9`) VALUES + (212, 4, 426, 0, 0, 0, 0, 11, 11, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, -1572.36, 714.22, -5.49761, 0, 0, 1.58512, 2, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `veh_when_added`, `veh_how_added`, `veh_who_added`, `veh_hd_extra1`, `veh_hd_extra2`, `veh_hd_extra3`, `veh_hd_extra4`, `veh_hd_extra5`, `veh_hd_extra6`, `veh_hd_extra7`, `veh_hd_extra8`, `veh_hd_extra9`) VALUES + (213, 4, 427, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, -1596.07, 676.545, -5.10801, 0, 0, 0.0186245, 2, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `veh_when_added`, `veh_how_added`, `veh_who_added`, `veh_hd_extra1`, `veh_hd_extra2`, `veh_hd_extra3`, `veh_hd_extra4`, `veh_hd_extra5`, `veh_hd_extra6`, `veh_hd_extra7`, `veh_hd_extra8`, `veh_hd_extra9`) VALUES + (214, 4, 427, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, -1600.28, 676.495, -5.10837, 0, 0, 0.0136404, 2, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `veh_when_added`, `veh_how_added`, `veh_who_added`, `veh_hd_extra1`, `veh_hd_extra2`, `veh_hd_extra3`, `veh_hd_extra4`, `veh_hd_extra5`, `veh_hd_extra6`, `veh_hd_extra7`, `veh_hd_extra8`, `veh_hd_extra9`) VALUES + (215, 4, 416, 0, 0, 0, 0, 1, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, -2677.4, 630.025, 14.6044, 0, 0, 1.57874, 2, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `veh_when_added`, `veh_how_added`, `veh_who_added`, `veh_hd_extra1`, `veh_hd_extra2`, `veh_hd_extra3`, `veh_hd_extra4`, `veh_hd_extra5`, `veh_hd_extra6`, `veh_hd_extra7`, `veh_hd_extra8`, `veh_hd_extra9`) VALUES + (216, 4, 416, 0, 0, 0, 0, 1, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, -2666.93, 629.908, 14.6044, 0, 0, 1.56592, 2, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `veh_when_added`, `veh_how_added`, `veh_who_added`, `veh_hd_extra1`, `veh_hd_extra2`, `veh_hd_extra3`, `veh_hd_extra4`, `veh_hd_extra5`, `veh_hd_extra6`, `veh_hd_extra7`, `veh_hd_extra8`, `veh_hd_extra9`) VALUES + (217, 4, 416, 0, 0, 0, 0, 1, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, -2686.18, 628.286, 14.6058, 0, 0, 1.9158, 2, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `veh_when_added`, `veh_how_added`, `veh_who_added`, `veh_hd_extra1`, `veh_hd_extra2`, `veh_hd_extra3`, `veh_hd_extra4`, `veh_hd_extra5`, `veh_hd_extra6`, `veh_hd_extra7`, `veh_hd_extra8`, `veh_hd_extra9`) VALUES + (218, 4, 407, 0, 0, 0, 0, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, -2022.76, 75.2526, 28.3631, 0, 0, -1.47777, 2, 12, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `veh_when_added`, `veh_how_added`, `veh_who_added`, `veh_hd_extra1`, `veh_hd_extra2`, `veh_hd_extra3`, `veh_hd_extra4`, `veh_hd_extra5`, `veh_hd_extra6`, `veh_hd_extra7`, `veh_hd_extra8`, `veh_hd_extra9`) VALUES + (219, 4, 407, 0, 0, 0, 0, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, -2022.92, 84.3134, 28.3332, 0, 0, -1.5322, 2, 12, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `veh_when_added`, `veh_how_added`, `veh_who_added`, `veh_hd_extra1`, `veh_hd_extra2`, `veh_hd_extra3`, `veh_hd_extra4`, `veh_hd_extra5`, `veh_hd_extra6`, `veh_hd_extra7`, `veh_hd_extra8`, `veh_hd_extra9`) VALUES + (220, 4, 407, 0, 0, 0, 0, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, -2022.93, 92.2289, 28.3678, 0, 0, -1.51043, 2, 12, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `veh_when_added`, `veh_how_added`, `veh_who_added`, `veh_hd_extra1`, `veh_hd_extra2`, `veh_hd_extra3`, `veh_hd_extra4`, `veh_hd_extra5`, `veh_hd_extra6`, `veh_hd_extra7`, `veh_hd_extra8`, `veh_hd_extra9`) VALUES + (221, 4, 411, 0, 0, 0, 0, 12, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 564.59, -1291.1, 16.9753, 0, 0, 0.0255753, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `veh_when_added`, `veh_how_added`, `veh_who_added`, `veh_hd_extra1`, `veh_hd_extra2`, `veh_hd_extra3`, `veh_hd_extra4`, `veh_hd_extra5`, `veh_hd_extra6`, `veh_hd_extra7`, `veh_hd_extra8`, `veh_hd_extra9`) VALUES + (222, 4, 541, 0, 0, 0, 0, 36, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 561, -1291.44, 16.8732, 0, 0, 0.00172557, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `veh_when_added`, `veh_how_added`, `veh_who_added`, `veh_hd_extra1`, `veh_hd_extra2`, `veh_hd_extra3`, `veh_hd_extra4`, `veh_hd_extra5`, `veh_hd_extra6`, `veh_hd_extra7`, `veh_hd_extra8`, `veh_hd_extra9`) VALUES + (223, 4, 480, 0, 0, 0, 0, 6, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 557.632, -1291.24, 17.022, 0, 0, 0.0362236, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `veh_when_added`, `veh_how_added`, `veh_who_added`, `veh_hd_extra1`, `veh_hd_extra2`, `veh_hd_extra3`, `veh_hd_extra4`, `veh_hd_extra5`, `veh_hd_extra6`, `veh_hd_extra7`, `veh_hd_extra8`, `veh_hd_extra9`) VALUES + (224, 4, 477, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 554.015, -1291.05, 17.0018, 0, 0, -0.0592367, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `veh_when_added`, `veh_how_added`, `veh_who_added`, `veh_hd_extra1`, `veh_hd_extra2`, `veh_hd_extra3`, `veh_hd_extra4`, `veh_hd_extra5`, `veh_hd_extra6`, `veh_hd_extra7`, `veh_hd_extra8`, `veh_hd_extra9`) VALUES + (227, 1, 102, 0, 0, 0, 0, 57, 73, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 1209.59, -85.9233, 12.6336, 0, 0, -2.23509, 6, 204, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 2500, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `veh_when_added`, `veh_how_added`, `veh_who_added`, `veh_hd_extra1`, `veh_hd_extra2`, `veh_hd_extra3`, `veh_hd_extra4`, `veh_hd_extra5`, `veh_hd_extra6`, `veh_hd_extra7`, `veh_hd_extra8`, `veh_hd_extra9`) VALUES + (228, 1, 129, 0, 0, 0, 0, 25, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 1209.51, -81.4913, 12.1281, 0, 0, -2.20648, 6, 204, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 2100, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `veh_when_added`, `veh_how_added`, `veh_who_added`, `veh_hd_extra1`, `veh_hd_extra2`, `veh_hd_extra3`, `veh_hd_extra4`, `veh_hd_extra5`, `veh_hd_extra6`, `veh_hd_extra7`, `veh_hd_extra8`, `veh_hd_extra9`) VALUES + (229, 1, 112, 0, 0, 0, 0, 55, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 1209.65, -77.2701, 11.9, 0, 0, -2.20789, 6, 204, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 2000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `veh_when_added`, `veh_how_added`, `veh_who_added`, `veh_hd_extra1`, `veh_hd_extra2`, `veh_hd_extra3`, `veh_hd_extra4`, `veh_hd_extra5`, `veh_hd_extra6`, `veh_hd_extra7`, `veh_hd_extra8`, `veh_hd_extra9`) VALUES + (230, 1, 91, 0, 0, 0, 0, 51, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 1211.41, -66.0152, 10.4973, 0, 0, -2.52612, 6, 204, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1500, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `veh_when_added`, `veh_how_added`, `veh_who_added`, `veh_hd_extra1`, `veh_hd_extra2`, `veh_hd_extra3`, `veh_hd_extra4`, `veh_hd_extra5`, `veh_hd_extra6`, `veh_hd_extra7`, `veh_hd_extra8`, `veh_hd_extra9`) VALUES + (231, 1, 100, 0, 0, 0, 0, 69, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 1210.97, -73.589, 11.1925, 0, 0, -2.19468, 6, 204, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `veh_when_added`, `veh_how_added`, `veh_who_added`, `veh_hd_extra1`, `veh_hd_extra2`, `veh_hd_extra3`, `veh_hd_extra4`, `veh_hd_extra5`, `veh_hd_extra6`, `veh_hd_extra7`, `veh_hd_extra8`, `veh_hd_extra9`) VALUES + (232, 1, 94, 0, 0, 0, 0, 23, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 1214.52, -63.2275, 10.152, 0, 0, -2.81749, 6, 204, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `veh_when_added`, `veh_how_added`, `veh_who_added`, `veh_hd_extra1`, `veh_hd_extra2`, `veh_hd_extra3`, `veh_hd_extra4`, `veh_hd_extra5`, `veh_hd_extra6`, `veh_hd_extra7`, `veh_hd_extra8`, `veh_hd_extra9`) VALUES + (233, 1, 90, 0, 0, 0, 0, 41, 76, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 1218.85, -62.5937, 10.422, 0, 0, 3.0997, 6, 204, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 2500, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `veh_when_added`, `veh_how_added`, `veh_who_added`, `veh_hd_extra1`, `veh_hd_extra2`, `veh_hd_extra3`, `veh_hd_extra4`, `veh_hd_extra5`, `veh_hd_extra6`, `veh_hd_extra7`, `veh_hd_extra8`, `veh_hd_extra9`) VALUES + (234, 1, 109, 0, 0, 0, 0, 18, 18, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 1222.63, -63.0764, 10.2099, 0, 0, 3.10392, 6, 204, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1200, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `veh_when_added`, `veh_how_added`, `veh_who_added`, `veh_hd_extra1`, `veh_hd_extra2`, `veh_hd_extra3`, `veh_hd_extra4`, `veh_hd_extra5`, `veh_hd_extra6`, `veh_hd_extra7`, `veh_hd_extra8`, `veh_hd_extra9`) VALUES + (235, 1, 105, 0, 0, 0, 0, 51, 77, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 1244.93, -120.808, 14.604, 0, 0, -0.0421777, 6, 204, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 75000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `veh_when_added`, `veh_how_added`, `veh_who_added`, `veh_hd_extra1`, `veh_hd_extra2`, `veh_hd_extra3`, `veh_hd_extra4`, `veh_hd_extra5`, `veh_hd_extra6`, `veh_hd_extra7`, `veh_hd_extra8`, `veh_hd_extra9`) VALUES + (236, 1, 101, 0, 0, 0, 0, 57, 74, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 1241.28, -120.641, 14.6288, 0, 0, 0.0264841, 6, 204, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 85000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `veh_when_added`, `veh_how_added`, `veh_who_added`, `veh_hd_extra1`, `veh_hd_extra2`, `veh_hd_extra3`, `veh_hd_extra4`, `veh_hd_extra5`, `veh_hd_extra6`, `veh_hd_extra7`, `veh_hd_extra8`, `veh_hd_extra9`) VALUES + (237, 1, 119, 0, 0, 0, 0, 12, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 1237.61, -121, 14.5594, 0, 0, 0.00477941, 6, 204, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 115000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `veh_when_added`, `veh_how_added`, `veh_who_added`, `veh_hd_extra1`, `veh_hd_extra2`, `veh_hd_extra3`, `veh_hd_extra4`, `veh_hd_extra5`, `veh_hd_extra6`, `veh_hd_extra7`, `veh_hd_extra8`, `veh_hd_extra9`) VALUES + (238, 1, 92, 0, 0, 0, 0, 53, 73, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 1233.86, -120.93, 14.6328, 0, 0, -0.0198187, 6, 204, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 100000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `veh_when_added`, `veh_how_added`, `veh_who_added`, `veh_hd_extra1`, `veh_hd_extra2`, `veh_hd_extra3`, `veh_hd_extra4`, `veh_hd_extra5`, `veh_hd_extra6`, `veh_hd_extra7`, `veh_hd_extra8`, `veh_hd_extra9`) VALUES + (239, 1, 134, 0, 0, 0, 0, 72, 75, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 1247.55, -107.909, 14.7097, 0, 0, 1.50495, 6, 204, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 25000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `veh_when_added`, `veh_how_added`, `veh_who_added`, `veh_hd_extra1`, `veh_hd_extra2`, `veh_hd_extra3`, `veh_hd_extra4`, `veh_hd_extra5`, `veh_hd_extra6`, `veh_hd_extra7`, `veh_hd_extra8`, `veh_hd_extra9`) VALUES + (240, 1, 137, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 1247.63, -104.151, 14.2887, 0, 0, 1.54257, 6, 204, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 20000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `veh_when_added`, `veh_how_added`, `veh_who_added`, `veh_hd_extra1`, `veh_hd_extra2`, `veh_hd_extra3`, `veh_hd_extra4`, `veh_hd_extra5`, `veh_hd_extra6`, `veh_hd_extra7`, `veh_hd_extra8`, `veh_hd_extra9`) VALUES + (241, 1, 135, 0, 0, 0, 0, 11, 75, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 1247.29, -100.391, 14.0073, 0, 0, 1.52489, 6, 204, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 22000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `veh_when_added`, `veh_how_added`, `veh_who_added`, `veh_hd_extra1`, `veh_hd_extra2`, `veh_hd_extra3`, `veh_hd_extra4`, `veh_hd_extra5`, `veh_hd_extra6`, `veh_hd_extra7`, `veh_hd_extra8`, `veh_hd_extra9`) VALUES + (243, 1, 139, 0, 0, 0, 0, 9, 73, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 1247.41, -96.6294, 13.9466, 0, 0, 1.55603, 6, 204, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 25000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `veh_when_added`, `veh_how_added`, `veh_who_added`, `veh_hd_extra1`, `veh_hd_extra2`, `veh_hd_extra3`, `veh_hd_extra4`, `veh_hd_extra5`, `veh_hd_extra6`, `veh_hd_extra7`, `veh_hd_extra8`, `veh_hd_extra9`) VALUES + (244, 1, 138, 0, 0, 0, 0, 54, 76, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 1247.62, -92.3873, 13.426, 0, 0, 1.51434, 6, 204, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 27000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `veh_when_added`, `veh_how_added`, `veh_who_added`, `veh_hd_extra1`, `veh_hd_extra2`, `veh_hd_extra3`, `veh_hd_extra4`, `veh_hd_extra5`, `veh_hd_extra6`, `veh_hd_extra7`, `veh_hd_extra8`, `veh_hd_extra9`) VALUES + (245, 1, 102, 0, 0, 0, 0, 26, 75, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, -751.01, -535.337, 8.80389, 0, 0, -1.13589, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `veh_when_added`, `veh_how_added`, `veh_who_added`, `veh_hd_extra1`, `veh_hd_extra2`, `veh_hd_extra3`, `veh_hd_extra4`, `veh_hd_extra5`, `veh_hd_extra6`, `veh_hd_extra7`, `veh_hd_extra8`, `veh_hd_extra9`) VALUES + (246, 1, 102, 0, 0, 0, 0, 34, 73, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, -750.797, -539.199, 8.80304, 0, 0, -1.10576, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `veh_when_added`, `veh_how_added`, `veh_who_added`, `veh_hd_extra1`, `veh_hd_extra2`, `veh_hd_extra3`, `veh_hd_extra4`, `veh_hd_extra5`, `veh_hd_extra6`, `veh_hd_extra7`, `veh_hd_extra8`, `veh_hd_extra9`) VALUES + (247, 1, 102, 0, 0, 0, 0, 44, 74, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, -751.052, -543.618, 8.80374, 0, 0, -1.07295, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `veh_when_added`, `veh_how_added`, `veh_who_added`, `veh_hd_extra1`, `veh_hd_extra2`, `veh_hd_extra3`, `veh_hd_extra4`, `veh_hd_extra5`, `veh_hd_extra6`, `veh_hd_extra7`, `veh_hd_extra8`, `veh_hd_extra9`) VALUES + (248, 1, 100, 0, 0, 0, 0, 58, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, -751.566, -552.963, 8.59979, 0, 0, -1.61011, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `veh_when_added`, `veh_how_added`, `veh_who_added`, `veh_hd_extra1`, `veh_hd_extra2`, `veh_hd_extra3`, `veh_hd_extra4`, `veh_hd_extra5`, `veh_hd_extra6`, `veh_hd_extra7`, `veh_hd_extra8`, `veh_hd_extra9`) VALUES + (249, 1, 100, 0, 0, 0, 0, 18, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, -751.576, -556.203, 8.59965, 0, 0, -1.59793, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `veh_when_added`, `veh_how_added`, `veh_who_added`, `veh_hd_extra1`, `veh_hd_extra2`, `veh_hd_extra3`, `veh_hd_extra4`, `veh_hd_extra5`, `veh_hd_extra6`, `veh_hd_extra7`, `veh_hd_extra8`, `veh_hd_extra9`) VALUES + (250, 1, 100, 0, 0, 0, 0, 58, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, -751.577, -559.737, 8.59964, 0, 0, -1.57346, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `veh_when_added`, `veh_how_added`, `veh_who_added`, `veh_hd_extra1`, `veh_hd_extra2`, `veh_hd_extra3`, `veh_hd_extra4`, `veh_hd_extra5`, `veh_hd_extra6`, `veh_hd_extra7`, `veh_hd_extra8`, `veh_hd_extra9`) VALUES + (251, 1, 100, 0, 0, 0, 0, 18, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, -751.575, -563.115, 8.60021, 0, 0, -1.57212, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `veh_when_added`, `veh_how_added`, `veh_who_added`, `veh_hd_extra1`, `veh_hd_extra2`, `veh_hd_extra3`, `veh_hd_extra4`, `veh_hd_extra5`, `veh_hd_extra6`, `veh_hd_extra7`, `veh_hd_extra8`, `veh_hd_extra9`) VALUES + (252, 1, 126, 0, 0, 0, 0, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, -1524.37, -927.334, 11.6627, 0, 0, -1.51896, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 100, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `veh_when_added`, `veh_how_added`, `veh_who_added`, `veh_hd_extra1`, `veh_hd_extra2`, `veh_hd_extra3`, `veh_hd_extra4`, `veh_hd_extra5`, `veh_hd_extra6`, `veh_hd_extra7`, `veh_hd_extra8`, `veh_hd_extra9`) VALUES + (253, 1, 126, 0, 0, 0, 0, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, -1524.94, -920.765, 11.6717, 0, 0, -1.51945, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 100, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `veh_when_added`, `veh_how_added`, `veh_who_added`, `veh_hd_extra1`, `veh_hd_extra2`, `veh_hd_extra3`, `veh_hd_extra4`, `veh_hd_extra5`, `veh_hd_extra6`, `veh_hd_extra7`, `veh_hd_extra8`, `veh_hd_extra9`) VALUES + (254, 1, 126, 0, 0, 0, 0, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, -1525.38, -914.304, 11.6674, 0, 0, -1.49781, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 100, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `veh_when_added`, `veh_how_added`, `veh_who_added`, `veh_hd_extra1`, `veh_hd_extra2`, `veh_hd_extra3`, `veh_hd_extra4`, `veh_hd_extra5`, `veh_hd_extra6`, `veh_hd_extra7`, `veh_hd_extra8`, `veh_hd_extra9`) VALUES + (255, 1, 142, 0, 0, 0, 0, 1, 53, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 620.768, -665.364, -0.327586, 0, 0, -0.0217677, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `veh_when_added`, `veh_how_added`, `veh_who_added`, `veh_hd_extra1`, `veh_hd_extra2`, `veh_hd_extra3`, `veh_hd_extra4`, `veh_hd_extra5`, `veh_hd_extra6`, `veh_hd_extra7`, `veh_hd_extra8`, `veh_hd_extra9`) VALUES + (256, 1, 143, 0, 0, 0, 0, 12, 35, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 627.834, -666.615, -0.505819, 0, 0, -0.0385386, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 35000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `veh_when_added`, `veh_how_added`, `veh_who_added`, `veh_hd_extra1`, `veh_hd_extra2`, `veh_hd_extra3`, `veh_hd_extra4`, `veh_hd_extra5`, `veh_hd_extra6`, `veh_hd_extra7`, `veh_hd_extra8`, `veh_hd_extra9`) VALUES + (258, 1, 146, 0, 0, 0, 0, 34, 74, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 1426.45, -803.581, 11.9599, 0, 0, 1.56821, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 35000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `veh_when_added`, `veh_how_added`, `veh_who_added`, `veh_hd_extra1`, `veh_hd_extra2`, `veh_hd_extra3`, `veh_hd_extra4`, `veh_hd_extra5`, `veh_hd_extra6`, `veh_hd_extra7`, `veh_hd_extra8`, `veh_hd_extra9`) VALUES + (259, 1, 104, 0, 0, 0, 0, 52, 74, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 1426.62, -795.533, 11.8912, 0, 0, 1.56813, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 30000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `veh_when_added`, `veh_how_added`, `veh_who_added`, `veh_hd_extra1`, `veh_hd_extra2`, `veh_hd_extra3`, `veh_hd_extra4`, `veh_hd_extra5`, `veh_hd_extra6`, `veh_hd_extra7`, `veh_hd_extra8`, `veh_hd_extra9`) VALUES + (260, 1, 93, 0, 0, 0, 0, 39, 78, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 1426.01, -786.663, 12.4028, 0, 0, 1.56679, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 40000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `veh_when_added`, `veh_how_added`, `veh_who_added`, `veh_hd_extra1`, `veh_hd_extra2`, `veh_hd_extra3`, `veh_hd_extra4`, `veh_hd_extra5`, `veh_hd_extra6`, `veh_hd_extra7`, `veh_hd_extra8`, `veh_hd_extra9`) VALUES + (261, 4, 547, 0, 0, 0, 0, 10, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 2136.31, -1150.2, 23.9743, 0, 0, 0.748413, 6, 228, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `veh_when_added`, `veh_how_added`, `veh_who_added`, `veh_hd_extra1`, `veh_hd_extra2`, `veh_hd_extra3`, `veh_hd_extra4`, `veh_hd_extra5`, `veh_hd_extra6`, `veh_hd_extra7`, `veh_hd_extra8`, `veh_hd_extra9`) VALUES + (262, 4, 516, 0, 0, 0, 0, 122, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 2136.18, -1145.37, 24.6024, 0, 0, 0.789813, 6, 228, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `veh_when_added`, `veh_how_added`, `veh_who_added`, `veh_hd_extra1`, `veh_hd_extra2`, `veh_hd_extra3`, `veh_hd_extra4`, `veh_hd_extra5`, `veh_hd_extra6`, `veh_hd_extra7`, `veh_hd_extra8`, `veh_hd_extra9`) VALUES + (263, 4, 466, 0, 0, 0, 0, 78, 76, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 2125.15, -1152.9, 23.7633, 0, 0, -0.783476, 6, 228, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `veh_when_added`, `veh_how_added`, `veh_who_added`, `veh_hd_extra1`, `veh_hd_extra2`, `veh_hd_extra3`, `veh_hd_extra4`, `veh_hd_extra5`, `veh_hd_extra6`, `veh_hd_extra7`, `veh_hd_extra8`, `veh_hd_extra9`) VALUES + (264, 4, 410, 0, 0, 0, 0, 10, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 2136.76, -1141.11, 24.8917, 0, 0, 0.786093, 6, 228, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `veh_when_added`, `veh_how_added`, `veh_who_added`, `veh_hd_extra1`, `veh_hd_extra2`, `veh_hd_extra3`, `veh_hd_extra4`, `veh_hd_extra5`, `veh_hd_extra6`, `veh_hd_extra7`, `veh_hd_extra8`, `veh_hd_extra9`) VALUES + (265, 4, 445, 0, 0, 0, 0, 45, 45, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 2117.76, -1155.76, 24.126, 0, 0, -0.705611, 6, 228, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `veh_when_added`, `veh_how_added`, `veh_who_added`, `veh_hd_extra1`, `veh_hd_extra2`, `veh_hd_extra3`, `veh_hd_extra4`, `veh_hd_extra5`, `veh_hd_extra6`, `veh_hd_extra7`, `veh_hd_extra8`, `veh_hd_extra9`) VALUES + (266, 4, 405, 0, 0, 0, 0, 24, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 2117.4, -1151.21, 24.2249, 0, 0, -0.645516, 6, 228, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `veh_when_added`, `veh_how_added`, `veh_who_added`, `veh_hd_extra1`, `veh_hd_extra2`, `veh_hd_extra3`, `veh_hd_extra4`, `veh_hd_extra5`, `veh_hd_extra6`, `veh_hd_extra7`, `veh_hd_extra8`, `veh_hd_extra9`) VALUES + (267, 4, 458, 0, 0, 0, 0, 4, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 2136.36, -1136, 25.5515, 0, 0, 0.777684, 6, 228, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1400, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `veh_when_added`, `veh_how_added`, `veh_who_added`, `veh_hd_extra1`, `veh_hd_extra2`, `veh_hd_extra3`, `veh_hd_extra4`, `veh_hd_extra5`, `veh_hd_extra6`, `veh_hd_extra7`, `veh_hd_extra8`, `veh_hd_extra9`) VALUES + (268, 4, 496, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 2118.21, -1145.71, 24.3037, 0, 0, -1.09275, 6, 228, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `veh_when_added`, `veh_how_added`, `veh_who_added`, `veh_hd_extra1`, `veh_hd_extra2`, `veh_hd_extra3`, `veh_hd_extra4`, `veh_hd_extra5`, `veh_hd_extra6`, `veh_hd_extra7`, `veh_hd_extra8`, `veh_hd_extra9`) VALUES + (269, 4, 418, 0, 0, 0, 0, 95, 95, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 2118.32, -1141.57, 24.9918, 0, 0, -1.07252, 6, 228, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `veh_when_added`, `veh_how_added`, `veh_who_added`, `veh_hd_extra1`, `veh_hd_extra2`, `veh_hd_extra3`, `veh_hd_extra4`, `veh_hd_extra5`, `veh_hd_extra6`, `veh_hd_extra7`, `veh_hd_extra8`, `veh_hd_extra9`) VALUES + (271, 4, 549, 0, 0, 0, 0, 79, 39, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 2136.42, -1131.45, 25.3818, 0, 0, 0.778913, 6, 228, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 750, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `veh_when_added`, `veh_how_added`, `veh_who_added`, `veh_hd_extra1`, `veh_hd_extra2`, `veh_hd_extra3`, `veh_hd_extra4`, `veh_hd_extra5`, `veh_hd_extra6`, `veh_hd_extra7`, `veh_hd_extra8`, `veh_hd_extra9`) VALUES + (272, 4, 404, 0, 0, 0, 0, 83, 110, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 2119.1, -1128.71, 25.0533, 0, 0, -1.00972, 6, 228, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1100, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `veh_when_added`, `veh_how_added`, `veh_who_added`, `veh_hd_extra1`, `veh_hd_extra2`, `veh_hd_extra3`, `veh_hd_extra4`, `veh_hd_extra5`, `veh_hd_extra6`, `veh_hd_extra7`, `veh_hd_extra8`, `veh_hd_extra9`) VALUES + (273, 4, 422, 0, 0, 0, 0, 113, 36, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 2118.91, -1132.57, 25.2674, 0, 0, -1.04863, 6, 228, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `veh_when_added`, `veh_how_added`, `veh_who_added`, `veh_hd_extra1`, `veh_hd_extra2`, `veh_hd_extra3`, `veh_hd_extra4`, `veh_hd_extra5`, `veh_hd_extra6`, `veh_hd_extra7`, `veh_hd_extra8`, `veh_hd_extra9`) VALUES + (274, 4, 419, 0, 0, 0, 0, 47, 76, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 2119.37, -1123.81, 25.1752, 0, 0, -0.824258, 6, 228, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1500, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `veh_when_added`, `veh_how_added`, `veh_who_added`, `veh_hd_extra1`, `veh_hd_extra2`, `veh_hd_extra3`, `veh_hd_extra4`, `veh_hd_extra5`, `veh_hd_extra6`, `veh_hd_extra7`, `veh_hd_extra8`, `veh_hd_extra9`) VALUES + (275, 4, 559, 0, 0, 0, 0, 13, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 543.558, -1291.16, 16.8736, 0, 0, -0.140231, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `veh_when_added`, `veh_how_added`, `veh_who_added`, `veh_hd_extra1`, `veh_hd_extra2`, `veh_hd_extra3`, `veh_hd_extra4`, `veh_hd_extra5`, `veh_hd_extra6`, `veh_hd_extra7`, `veh_hd_extra8`, `veh_hd_extra9`) VALUES + (276, 4, 506, 0, 0, 0, 0, 76, 76, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 539.57, -1291.52, 16.949, 0, 0, 0.0129029, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `veh_when_added`, `veh_how_added`, `veh_who_added`, `veh_hd_extra1`, `veh_hd_extra2`, `veh_hd_extra3`, `veh_hd_extra4`, `veh_hd_extra5`, `veh_hd_extra6`, `veh_hd_extra7`, `veh_hd_extra8`, `veh_hd_extra9`) VALUES + (277, 4, 451, 0, 0, 0, 0, 46, 46, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 529.109, -1291.35, 16.9441, 0, 0, 0.007333, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 130000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `veh_when_added`, `veh_how_added`, `veh_who_added`, `veh_hd_extra1`, `veh_hd_extra2`, `veh_hd_extra3`, `veh_hd_extra4`, `veh_hd_extra5`, `veh_hd_extra6`, `veh_hd_extra7`, `veh_hd_extra8`, `veh_hd_extra9`) VALUES + (278, 4, 415, 0, 0, 0, 0, 25, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 532.506, -1291.65, 17.0134, 0, 0, 0.0241039, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `veh_when_added`, `veh_how_added`, `veh_who_added`, `veh_hd_extra1`, `veh_hd_extra2`, `veh_hd_extra3`, `veh_hd_extra4`, `veh_hd_extra5`, `veh_hd_extra6`, `veh_hd_extra7`, `veh_hd_extra8`, `veh_hd_extra9`) VALUES + (279, 4, 429, 0, 0, 0, 0, 13, 13, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 535.97, -1291.55, 16.9238, 0, 0, -0.00909396, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `veh_when_added`, `veh_how_added`, `veh_who_added`, `veh_hd_extra1`, `veh_hd_extra2`, `veh_hd_extra3`, `veh_hd_extra4`, `veh_hd_extra5`, `veh_hd_extra6`, `veh_hd_extra7`, `veh_hd_extra8`, `veh_hd_extra9`) VALUES + (280, 4, 565, 0, 0, 0, 0, 42, 42, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 525.643, -1291.94, 16.8666, 0, 0, 0.0016915, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `veh_when_added`, `veh_how_added`, `veh_who_added`, `veh_hd_extra1`, `veh_hd_extra2`, `veh_hd_extra3`, `veh_hd_extra4`, `veh_hd_extra5`, `veh_hd_extra6`, `veh_hd_extra7`, `veh_hd_extra8`, `veh_hd_extra9`) VALUES + (281, 4, 602, 0, 0, 0, 0, 13, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 522.465, -1291.49, 17.0442, 0, 0, -0.0111869, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 60000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `veh_when_added`, `veh_how_added`, `veh_who_added`, `veh_hd_extra1`, `veh_hd_extra2`, `veh_hd_extra3`, `veh_hd_extra4`, `veh_hd_extra5`, `veh_hd_extra6`, `veh_hd_extra7`, `veh_hd_extra8`, `veh_hd_extra9`) VALUES + (282, 4, 589, 0, 0, 0, 0, 114, 114, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 518.795, -1291.31, 16.9074, 0, 0, 0.0178289, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 50000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `veh_when_added`, `veh_how_added`, `veh_who_added`, `veh_hd_extra1`, `veh_hd_extra2`, `veh_hd_extra3`, `veh_hd_extra4`, `veh_hd_extra5`, `veh_hd_extra6`, `veh_hd_extra7`, `veh_hd_extra8`, `veh_hd_extra9`) VALUES + (283, 4, 519, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 1995.15, -2367.1, 14.4654, 0, 0, 1.57039, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 750000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `veh_when_added`, `veh_how_added`, `veh_who_added`, `veh_hd_extra1`, `veh_hd_extra2`, `veh_hd_extra3`, `veh_hd_extra4`, `veh_hd_extra5`, `veh_hd_extra6`, `veh_hd_extra7`, `veh_hd_extra8`, `veh_hd_extra9`) VALUES + (284, 4, 511, 0, 0, 0, 0, 37, 51, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 1994.14, -2388.79, 14.9204, 0, 0, 1.59079, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 400000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `veh_when_added`, `veh_how_added`, `veh_who_added`, `veh_hd_extra1`, `veh_hd_extra2`, `veh_hd_extra3`, `veh_hd_extra4`, `veh_hd_extra5`, `veh_hd_extra6`, `veh_hd_extra7`, `veh_hd_extra8`, `veh_hd_extra9`) VALUES + (285, 4, 593, 0, 0, 0, 0, 2, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 1995.97, -2407.75, 14.0243, 0, 0, 1.54898, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 200000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `veh_when_added`, `veh_how_added`, `veh_who_added`, `veh_hd_extra1`, `veh_hd_extra2`, `veh_hd_extra3`, `veh_hd_extra4`, `veh_hd_extra5`, `veh_hd_extra6`, `veh_hd_extra7`, `veh_hd_extra8`, `veh_hd_extra9`) VALUES + (286, 4, 553, 0, 0, 0, 0, 55, 23, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 2025.74, -2418.28, 14.8912, 0, 0, 2.46133, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 500000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `veh_when_added`, `veh_how_added`, `veh_who_added`, `veh_hd_extra1`, `veh_hd_extra2`, `veh_hd_extra3`, `veh_hd_extra4`, `veh_hd_extra5`, `veh_hd_extra6`, `veh_hd_extra7`, `veh_hd_extra8`, `veh_hd_extra9`) VALUES + (287, 4, 487, 0, 0, 0, 0, 74, 35, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 1995.52, -2332.31, 13.7254, 0, 0, 1.58853, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 300000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `veh_when_added`, `veh_how_added`, `veh_who_added`, `veh_hd_extra1`, `veh_hd_extra2`, `veh_hd_extra3`, `veh_hd_extra4`, `veh_hd_extra5`, `veh_hd_extra6`, `veh_hd_extra7`, `veh_hd_extra8`, `veh_hd_extra9`) VALUES + (288, 4, 548, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 1992.24, -2316.92, 15.1977, 0, 0, 1.58742, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `veh_when_added`, `veh_how_added`, `veh_who_added`, `veh_hd_extra1`, `veh_hd_extra2`, `veh_hd_extra3`, `veh_hd_extra4`, `veh_hd_extra5`, `veh_hd_extra6`, `veh_hd_extra7`, `veh_hd_extra8`, `veh_hd_extra9`) VALUES + (289, 4, 469, 0, 0, 0, 0, 1, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 1995.62, -2303.97, 13.5477, 0, 0, 1.53661, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 250000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `veh_when_added`, `veh_how_added`, `veh_who_added`, `veh_hd_extra1`, `veh_hd_extra2`, `veh_hd_extra3`, `veh_hd_extra4`, `veh_hd_extra5`, `veh_hd_extra6`, `veh_hd_extra7`, `veh_hd_extra8`, `veh_hd_extra9`) VALUES + (290, 4, 417, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 1992.1, -2255.76, 13.6483, 0, 0, 1.54044, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 900000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `veh_when_added`, `veh_how_added`, `veh_who_added`, `veh_hd_extra1`, `veh_hd_extra2`, `veh_hd_extra3`, `veh_hd_extra4`, `veh_hd_extra5`, `veh_hd_extra6`, `veh_hd_extra7`, `veh_hd_extra8`, `veh_hd_extra9`) VALUES + (292, 1, 111, 0, 0, 0, 0, 14, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 1129.34, -112.16, 9.58797, 0, 0, -3.13911, 1, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 2500, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `veh_when_added`, `veh_how_added`, `veh_who_added`, `veh_hd_extra1`, `veh_hd_extra2`, `veh_hd_extra3`, `veh_hd_extra4`, `veh_hd_extra5`, `veh_hd_extra6`, `veh_hd_extra7`, `veh_hd_extra8`, `veh_hd_extra9`) VALUES + (293, 1, 127, 0, 0, 0, 0, 44, 27, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 331.266, -1573.11, 26.0381, 0, 0, -0.879107, 2, 17, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `veh_when_added`, `veh_how_added`, `veh_who_added`, `veh_hd_extra1`, `veh_hd_extra2`, `veh_hd_extra3`, `veh_hd_extra4`, `veh_hd_extra5`, `veh_hd_extra6`, `veh_hd_extra7`, `veh_hd_extra8`, `veh_hd_extra9`) VALUES + (294, 1, 127, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, -73.1733, -349.082, 16.2603, 0, 0, -0.0165034, 2, 17, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `veh_when_added`, `veh_how_added`, `veh_who_added`, `veh_hd_extra1`, `veh_hd_extra2`, `veh_hd_extra3`, `veh_hd_extra4`, `veh_hd_extra5`, `veh_hd_extra6`, `veh_hd_extra7`, `veh_hd_extra8`, `veh_hd_extra9`) VALUES + (295, 1, 127, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, -73.4793, -367.01, 16.2607, 0, 0, -0.0240202, 2, 17, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `veh_when_added`, `veh_how_added`, `veh_who_added`, `veh_hd_extra1`, `veh_hd_extra2`, `veh_hd_extra3`, `veh_hd_extra4`, `veh_hd_extra5`, `veh_hd_extra6`, `veh_hd_extra7`, `veh_hd_extra8`, `veh_hd_extra9`) VALUES + (296, 4, 529, 0, 0, 0, 0, 7, 7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 2118.54, -1137.2, 24.7795, 0, 0, -1.06224, 6, 228, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 850, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `veh_when_added`, `veh_how_added`, `veh_who_added`, `veh_hd_extra1`, `veh_hd_extra2`, `veh_hd_extra3`, `veh_hd_extra4`, `veh_hd_extra5`, `veh_hd_extra6`, `veh_hd_extra7`, `veh_hd_extra8`, `veh_hd_extra9`) VALUES + (297, 4, 596, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 1583.14, -1711.82, 5.60978, 0, 0, -0.0255531, 2, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `veh_when_added`, `veh_how_added`, `veh_who_added`, `veh_hd_extra1`, `veh_hd_extra2`, `veh_hd_extra3`, `veh_hd_extra4`, `veh_hd_extra5`, `veh_hd_extra6`, `veh_hd_extra7`, `veh_hd_extra8`, `veh_hd_extra9`) VALUES + (298, 4, 596, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 1578.54, -1711.84, 5.6025, 0, 0, 0.00653891, 2, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `veh_when_added`, `veh_how_added`, `veh_who_added`, `veh_hd_extra1`, `veh_hd_extra2`, `veh_hd_extra3`, `veh_hd_extra4`, `veh_hd_extra5`, `veh_hd_extra6`, `veh_hd_extra7`, `veh_hd_extra8`, `veh_hd_extra9`) VALUES + (299, 4, 596, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 1574.12, -1711.96, 5.61197, 0, 0, 0.00792556, 2, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `veh_when_added`, `veh_how_added`, `veh_who_added`, `veh_hd_extra1`, `veh_hd_extra2`, `veh_hd_extra3`, `veh_hd_extra4`, `veh_hd_extra5`, `veh_hd_extra6`, `veh_hd_extra7`, `veh_hd_extra8`, `veh_hd_extra9`) VALUES + (300, 2, 221, 0, 0, 0, 0, 30, 72, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, -987.238, -890.147, 12.7976, 0, 0, 0.861982, 6, 201, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 3500, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `veh_when_added`, `veh_how_added`, `veh_who_added`, `veh_hd_extra1`, `veh_hd_extra2`, `veh_hd_extra3`, `veh_hd_extra4`, `veh_hd_extra5`, `veh_hd_extra6`, `veh_hd_extra7`, `veh_hd_extra8`, `veh_hd_extra9`) VALUES + (301, 2, 135, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, -975.756, -878.166, 12.9318, 0, 0, 0.813128, 6, 201, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 7000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `veh_when_added`, `veh_how_added`, `veh_who_added`, `veh_hd_extra1`, `veh_hd_extra2`, `veh_hd_extra3`, `veh_hd_extra4`, `veh_hd_extra5`, `veh_hd_extra6`, `veh_hd_extra7`, `veh_hd_extra8`, `veh_hd_extra9`) VALUES + (302, 2, 226, 0, 0, 0, 0, 8, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, -966.656, -864.78, 12.8917, 0, 0, 1.16068, 6, 201, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 4000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `veh_when_added`, `veh_how_added`, `veh_who_added`, `veh_hd_extra1`, `veh_hd_extra2`, `veh_hd_extra3`, `veh_hd_extra4`, `veh_hd_extra5`, `veh_hd_extra6`, `veh_hd_extra7`, `veh_hd_extra8`, `veh_hd_extra9`) VALUES + (303, 2, 152, 0, 0, 0, 0, 8, 90, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, -971.067, -873.153, 13.2271, 0, 0, 0.834572, 6, 201, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 3200, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `veh_when_added`, `veh_how_added`, `veh_who_added`, `veh_hd_extra1`, `veh_hd_extra2`, `veh_hd_extra3`, `veh_hd_extra4`, `veh_hd_extra5`, `veh_hd_extra6`, `veh_hd_extra7`, `veh_hd_extra8`, `veh_hd_extra9`) VALUES + (304, 2, 130, 0, 0, 0, 0, 41, 76, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, -968.206, -868.967, 13.2656, 0, 0, 1.08971, 6, 201, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 4750, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `veh_when_added`, `veh_how_added`, `veh_who_added`, `veh_hd_extra1`, `veh_hd_extra2`, `veh_hd_extra3`, `veh_hd_extra4`, `veh_hd_extra5`, `veh_hd_extra6`, `veh_hd_extra7`, `veh_hd_extra8`, `veh_hd_extra9`) VALUES + (305, 2, 140, 0, 0, 0, 0, 32, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, -973.192, -875.855, 12.8791, 0, 0, 0.822114, 6, 201, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 2400, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `veh_when_added`, `veh_how_added`, `veh_who_added`, `veh_hd_extra1`, `veh_hd_extra2`, `veh_hd_extra3`, `veh_hd_extra4`, `veh_hd_extra5`, `veh_hd_extra6`, `veh_hd_extra7`, `veh_hd_extra8`, `veh_hd_extra9`) VALUES + (306, 2, 164, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, -989.644, -824.774, 7.12597, 0, 0, 3.12791, 6, 201, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 15000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `veh_when_added`, `veh_how_added`, `veh_who_added`, `veh_hd_extra1`, `veh_hd_extra2`, `veh_hd_extra3`, `veh_hd_extra4`, `veh_hd_extra5`, `veh_hd_extra6`, `veh_hd_extra7`, `veh_hd_extra8`, `veh_hd_extra9`) VALUES + (307, 2, 204, 0, 0, 0, 0, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, -965.592, -860.48, 12.8871, 0, 0, 1.1847, 6, 201, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 2500, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `veh_when_added`, `veh_how_added`, `veh_who_added`, `veh_hd_extra1`, `veh_hd_extra2`, `veh_hd_extra3`, `veh_hd_extra4`, `veh_hd_extra5`, `veh_hd_extra6`, `veh_hd_extra7`, `veh_hd_extra8`, `veh_hd_extra9`) VALUES + (308, 2, 149, 0, 0, 0, 0, 59, 75, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, -966.155, -855.875, 12.9219, 0, 0, 1.39879, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 3500, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `veh_when_added`, `veh_how_added`, `veh_who_added`, `veh_hd_extra1`, `veh_hd_extra2`, `veh_hd_extra3`, `veh_hd_extra4`, `veh_hd_extra5`, `veh_hd_extra6`, `veh_hd_extra7`, `veh_hd_extra8`, `veh_hd_extra9`) VALUES + (309, 2, 205, 0, 0, 0, 0, 41, 29, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, -965.04, -852.363, 12.8994, 0, 0, 1.44163, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 6000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `veh_when_added`, `veh_how_added`, `veh_who_added`, `veh_hd_extra1`, `veh_hd_extra2`, `veh_hd_extra3`, `veh_hd_extra4`, `veh_hd_extra5`, `veh_hd_extra6`, `veh_hd_extra7`, `veh_hd_extra8`, `veh_hd_extra9`) VALUES + (310, 2, 197, 0, 0, 0, 0, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, -965.029, -848.421, 12.8642, 0, 0, 1.43081, 6, 201, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 5250, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `veh_when_added`, `veh_how_added`, `veh_who_added`, `veh_hd_extra1`, `veh_hd_extra2`, `veh_hd_extra3`, `veh_hd_extra4`, `veh_hd_extra5`, `veh_hd_extra6`, `veh_hd_extra7`, `veh_hd_extra8`, `veh_hd_extra9`) VALUES + (311, 2, 208, 0, 0, 0, 0, 42, 42, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, -964.721, -844.608, 13.1339, 0, 0, 1.52394, 6, 201, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 3250, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `veh_when_added`, `veh_how_added`, `veh_who_added`, `veh_hd_extra1`, `veh_hd_extra2`, `veh_hd_extra3`, `veh_hd_extra4`, `veh_hd_extra5`, `veh_hd_extra6`, `veh_hd_extra7`, `veh_hd_extra8`, `veh_hd_extra9`) VALUES + (312, 2, 209, 0, 0, 0, 0, 14, 32, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, -965.016, -841.054, 12.9559, 0, 0, 1.53651, 6, 201, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 4500, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `veh_when_added`, `veh_how_added`, `veh_who_added`, `veh_hd_extra1`, `veh_hd_extra2`, `veh_hd_extra3`, `veh_hd_extra4`, `veh_hd_extra5`, `veh_hd_extra6`, `veh_hd_extra7`, `veh_hd_extra8`, `veh_hd_extra9`) VALUES + (313, 2, 211, 0, 0, 0, 0, 3, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, -964.673, -837.367, 12.8576, 0, 0, 1.51387, 6, 201, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 10000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `veh_when_added`, `veh_how_added`, `veh_who_added`, `veh_hd_extra1`, `veh_hd_extra2`, `veh_hd_extra3`, `veh_hd_extra4`, `veh_hd_extra5`, `veh_hd_extra6`, `veh_hd_extra7`, `veh_hd_extra8`, `veh_hd_extra9`) VALUES + (314, 2, 222, 0, 0, 0, 0, 33, 78, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, -964.774, -832.762, 12.8844, 0, 0, 1.51272, 6, 201, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 2000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `veh_when_added`, `veh_how_added`, `veh_who_added`, `veh_hd_extra1`, `veh_hd_extra2`, `veh_hd_extra3`, `veh_hd_extra4`, `veh_hd_extra5`, `veh_hd_extra6`, `veh_hd_extra7`, `veh_hd_extra8`, `veh_hd_extra9`) VALUES + (315, 2, 230, 0, 0, 0, 0, 48, 65, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, -964.115, -828.989, 13.2367, 0, 0, 1.55643, 6, 201, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 3000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `veh_when_added`, `veh_how_added`, `veh_who_added`, `veh_hd_extra1`, `veh_hd_extra2`, `veh_hd_extra3`, `veh_hd_extra4`, `veh_hd_extra5`, `veh_hd_extra6`, `veh_hd_extra7`, `veh_hd_extra8`, `veh_hd_extra9`) VALUES + (316, 2, 219, 0, 0, 0, 0, 32, 42, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, -964.923, -824.966, 13.3115, 0, 0, 1.56249, 6, 201, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 4750, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `veh_when_added`, `veh_how_added`, `veh_who_added`, `veh_hd_extra1`, `veh_hd_extra2`, `veh_hd_extra3`, `veh_hd_extra4`, `veh_hd_extra5`, `veh_hd_extra6`, `veh_hd_extra7`, `veh_hd_extra8`, `veh_hd_extra9`) VALUES + (317, 2, 179, 0, 0, 0, 0, 16, 74, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, -985.562, -824.846, 7.45749, 0, 0, -3.1114, 6, 201, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 27500, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `veh_when_added`, `veh_how_added`, `veh_who_added`, `veh_hd_extra1`, `veh_hd_extra2`, `veh_hd_extra3`, `veh_hd_extra4`, `veh_hd_extra5`, `veh_hd_extra6`, `veh_hd_extra7`, `veh_hd_extra8`, `veh_hd_extra9`) VALUES + (318, 2, 174, 0, 0, 0, 0, 64, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, -993.506, -825.182, 7.22026, 0, 0, -3.13612, 6, 201, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 25000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `veh_when_added`, `veh_how_added`, `veh_who_added`, `veh_hd_extra1`, `veh_hd_extra2`, `veh_hd_extra3`, `veh_hd_extra4`, `veh_hd_extra5`, `veh_hd_extra6`, `veh_hd_extra7`, `veh_hd_extra8`, `veh_hd_extra9`) VALUES + (319, 2, 142, 0, 0, 0, 0, 13, 72, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, -997.382, -825.397, 7.10469, 0, 0, 3.12664, 6, 201, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 17500, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `veh_when_added`, `veh_how_added`, `veh_who_added`, `veh_hd_extra1`, `veh_hd_extra2`, `veh_hd_extra3`, `veh_hd_extra4`, `veh_hd_extra5`, `veh_hd_extra6`, `veh_hd_extra7`, `veh_hd_extra8`, `veh_hd_extra9`) VALUES + (320, 2, 193, 0, 0, 0, 0, 53, 53, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, -967.23, -823.644, 6.2945, 0, 0, 1.56423, 6, 201, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 3500, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `veh_when_added`, `veh_how_added`, `veh_who_added`, `veh_hd_extra1`, `veh_hd_extra2`, `veh_hd_extra3`, `veh_hd_extra4`, `veh_hd_extra5`, `veh_hd_extra6`, `veh_hd_extra7`, `veh_hd_extra8`, `veh_hd_extra9`) VALUES + (321, 2, 166, 0, 0, 0, 0, 14, 75, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, -967.043, -825.686, 6.29443, 0, 0, 1.61558, 6, 201, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 4000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `veh_when_added`, `veh_how_added`, `veh_who_added`, `veh_hd_extra1`, `veh_hd_extra2`, `veh_hd_extra3`, `veh_hd_extra4`, `veh_hd_extra5`, `veh_hd_extra6`, `veh_hd_extra7`, `veh_hd_extra8`, `veh_hd_extra9`) VALUES + (322, 2, 198, 0, 0, 0, 0, 46, 46, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, -967.063, -827.738, 6.43505, 0, 0, 1.54959, 6, 201, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 3000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `veh_when_added`, `veh_how_added`, `veh_who_added`, `veh_hd_extra1`, `veh_hd_extra2`, `veh_hd_extra3`, `veh_hd_extra4`, `veh_hd_extra5`, `veh_hd_extra6`, `veh_hd_extra7`, `veh_hd_extra8`, `veh_hd_extra9`) VALUES + (323, 2, 191, 0, 0, 0, 0, 22, 22, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, -967.07, -829.886, 6.31988, 0, 0, 1.58164, 6, 201, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 4500, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `veh_when_added`, `veh_how_added`, `veh_who_added`, `veh_hd_extra1`, `veh_hd_extra2`, `veh_hd_extra3`, `veh_hd_extra4`, `veh_hd_extra5`, `veh_hd_extra6`, `veh_hd_extra7`, `veh_hd_extra8`, `veh_hd_extra9`) VALUES + (324, 2, 192, 0, 0, 0, 0, 33, 37, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, -966.719, -831.972, 6.35928, 0, 0, 1.58748, 6, 201, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `veh_when_added`, `veh_how_added`, `veh_who_added`, `veh_hd_extra1`, `veh_hd_extra2`, `veh_hd_extra3`, `veh_hd_extra4`, `veh_hd_extra5`, `veh_hd_extra6`, `veh_hd_extra7`, `veh_hd_extra8`, `veh_hd_extra9`) VALUES + (325, 2, 210, 0, 0, 0, 0, 6, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, -1019.12, -844.436, 12.85, 0, 0, -1.61629, 6, 201, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 85000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `veh_when_added`, `veh_how_added`, `veh_who_added`, `veh_hd_extra1`, `veh_hd_extra2`, `veh_hd_extra3`, `veh_hd_extra4`, `veh_hd_extra5`, `veh_hd_extra6`, `veh_hd_extra7`, `veh_hd_extra8`, `veh_hd_extra9`) VALUES + (326, 2, 132, 0, 0, 0, 0, 35, 35, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, -1015.09, -848.702, 12.8354, 0, 0, -1.52303, 6, 201, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 75000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `veh_when_added`, `veh_how_added`, `veh_who_added`, `veh_hd_extra1`, `veh_hd_extra2`, `veh_hd_extra3`, `veh_hd_extra4`, `veh_hd_extra5`, `veh_hd_extra6`, `veh_hd_extra7`, `veh_hd_extra8`, `veh_hd_extra9`) VALUES + (327, 2, 141, 0, 0, 0, 0, 11, 11, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, -1010.9, -852.751, 12.7769, 0, 0, -1.23101, 6, 201, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 100000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `veh_when_added`, `veh_how_added`, `veh_who_added`, `veh_hd_extra1`, `veh_hd_extra2`, `veh_hd_extra3`, `veh_hd_extra4`, `veh_hd_extra5`, `veh_hd_extra6`, `veh_hd_extra7`, `veh_hd_extra8`, `veh_hd_extra9`) VALUES + (328, 2, 159, 0, 0, 0, 0, 36, 36, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, -1007.32, -856.729, 12.8655, 0, 0, -1.08926, 6, 201, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 80000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `veh_when_added`, `veh_how_added`, `veh_who_added`, `veh_hd_extra1`, `veh_hd_extra2`, `veh_hd_extra3`, `veh_hd_extra4`, `veh_hd_extra5`, `veh_hd_extra6`, `veh_hd_extra7`, `veh_hd_extra8`, `veh_hd_extra9`) VALUES + (329, 2, 145, 0, 0, 0, 0, 36, 36, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, -1004.13, -860.21, 12.8584, 0, 0, -0.843169, 6, 201, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 80000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `veh_when_added`, `veh_how_added`, `veh_who_added`, `veh_hd_extra1`, `veh_hd_extra2`, `veh_hd_extra3`, `veh_hd_extra4`, `veh_hd_extra5`, `veh_hd_extra6`, `veh_hd_extra7`, `veh_hd_extra8`, `veh_hd_extra9`) VALUES + (330, 1, 106, 0, 0, 0, 0, 1, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 212.281, -41.5702, 16.4286, 0, 0, -0.00175398, 2, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `veh_when_added`, `veh_how_added`, `veh_who_added`, `veh_hd_extra1`, `veh_hd_extra2`, `veh_hd_extra3`, `veh_hd_extra4`, `veh_hd_extra5`, `veh_hd_extra6`, `veh_hd_extra7`, `veh_hd_extra8`, `veh_hd_extra9`) VALUES + (331, 1, 106, 0, 0, 0, 0, 1, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 220.664, -41.2063, 16.4286, 0, 0, -0.00824242, 2, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `veh_when_added`, `veh_how_added`, `veh_who_added`, `veh_hd_extra1`, `veh_hd_extra2`, `veh_hd_extra3`, `veh_hd_extra4`, `veh_hd_extra5`, `veh_hd_extra6`, `veh_hd_extra7`, `veh_hd_extra8`, `veh_hd_extra9`) VALUES + (332, 1, 106, 0, 0, 0, 0, 1, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 240.307, -41.481, 16.4286, 0, 0, -0.00575317, 2, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `veh_when_added`, `veh_how_added`, `veh_who_added`, `veh_hd_extra1`, `veh_hd_extra2`, `veh_hd_extra3`, `veh_hd_extra4`, `veh_hd_extra5`, `veh_hd_extra6`, `veh_hd_extra7`, `veh_hd_extra8`, `veh_hd_extra9`) VALUES + (333, 1, 106, 0, 0, 0, 0, 1, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 248.963, -41.6128, 16.4285, 0, 0, -0.0129603, 2, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `veh_when_added`, `veh_how_added`, `veh_who_added`, `veh_hd_extra1`, `veh_hd_extra2`, `veh_hd_extra3`, `veh_hd_extra4`, `veh_hd_extra5`, `veh_hd_extra6`, `veh_hd_extra7`, `veh_hd_extra8`, `veh_hd_extra9`) VALUES + (334, 1, 127, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, -72.9919, -331.528, 16.2616, 0, 0, -0.0204993, 2, 17, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `veh_when_added`, `veh_how_added`, `veh_who_added`, `veh_hd_extra1`, `veh_hd_extra2`, `veh_hd_extra3`, `veh_hd_extra4`, `veh_hd_extra5`, `veh_hd_extra6`, `veh_hd_extra7`, `veh_hd_extra8`, `veh_hd_extra9`) VALUES + (335, 1, 97, 0, 0, 0, 0, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, -83.3733, -442.729, 16.3754, 0, 0, 1.53779, 2, 9, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `veh_when_added`, `veh_how_added`, `veh_who_added`, `veh_hd_extra1`, `veh_hd_extra2`, `veh_hd_extra3`, `veh_hd_extra4`, `veh_hd_extra5`, `veh_hd_extra6`, `veh_hd_extra7`, `veh_hd_extra8`, `veh_hd_extra9`) VALUES + (336, 1, 97, 0, 0, 0, 0, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, -83.3866, -432.508, 16.3646, 0, 0, 1.56684, 2, 9, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `veh_when_added`, `veh_how_added`, `veh_who_added`, `veh_hd_extra1`, `veh_hd_extra2`, `veh_hd_extra3`, `veh_hd_extra4`, `veh_hd_extra5`, `veh_hd_extra6`, `veh_hd_extra7`, `veh_hd_extra8`, `veh_hd_extra9`) VALUES + (337, 1, 116, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, -662.811, -422.455, 18.5614, 0, 0, -0.227887, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `veh_when_added`, `veh_how_added`, `veh_who_added`, `veh_hd_extra1`, `veh_hd_extra2`, `veh_hd_extra3`, `veh_hd_extra4`, `veh_hd_extra5`, `veh_hd_extra6`, `veh_hd_extra7`, `veh_hd_extra8`, `veh_hd_extra9`) VALUES + (338, 1, 102, 0, 0, 0, 0, 44, 74, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, -739.187, -576.721, 8.54147, 0, 0, -0.412251, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `veh_when_added`, `veh_how_added`, `veh_who_added`, `veh_hd_extra1`, `veh_hd_extra2`, `veh_hd_extra3`, `veh_hd_extra4`, `veh_hd_extra5`, `veh_hd_extra6`, `veh_hd_extra7`, `veh_hd_extra8`, `veh_hd_extra9`) VALUES + (339, 2, 236, 0, 0, 0, 0, 7, 7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 349.923, -507.823, 12.098, 0, 0, -0.695444, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `veh_when_added`, `veh_how_added`, `veh_who_added`, `veh_hd_extra1`, `veh_hd_extra2`, `veh_hd_extra3`, `veh_hd_extra4`, `veh_hd_extra5`, `veh_hd_extra6`, `veh_hd_extra7`, `veh_hd_extra8`, `veh_hd_extra9`) VALUES + (340, 2, 236, 0, 0, 0, 0, 3, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 352.536, -509.998, 12.098, 0, 0, -0.71261, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `veh_when_added`, `veh_how_added`, `veh_who_added`, `veh_hd_extra1`, `veh_hd_extra2`, `veh_hd_extra3`, `veh_hd_extra4`, `veh_hd_extra5`, `veh_hd_extra6`, `veh_hd_extra7`, `veh_hd_extra8`, `veh_hd_extra9`) VALUES + (341, 1, 111, 0, 0, 0, 0, 34, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 1120.8, -105.232, 9.55985, 0, 0, -3.09175, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `veh_when_added`, `veh_how_added`, `veh_who_added`, `veh_hd_extra1`, `veh_hd_extra2`, `veh_hd_extra3`, `veh_hd_extra4`, `veh_hd_extra5`, `veh_hd_extra6`, `veh_hd_extra7`, `veh_hd_extra8`, `veh_hd_extra9`) VALUES + (342, 1, 111, 0, 0, 0, 0, 26, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 1209.73, -90.2957, 12.9842, 0, 0, -2.2061, 6, 204, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 2500, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `veh_when_added`, `veh_how_added`, `veh_who_added`, `veh_hd_extra1`, `veh_hd_extra2`, `veh_hd_extra3`, `veh_hd_extra4`, `veh_hd_extra5`, `veh_hd_extra6`, `veh_hd_extra7`, `veh_hd_extra8`, `veh_hd_extra9`) VALUES + (343, 4, 462, 0, 0, 0, 0, 13, 13, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 1561.43, -2264.18, 13.1445, 0, 0, 1.56442, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `veh_when_added`, `veh_how_added`, `veh_who_added`, `veh_hd_extra1`, `veh_hd_extra2`, `veh_hd_extra3`, `veh_hd_extra4`, `veh_hd_extra5`, `veh_hd_extra6`, `veh_hd_extra7`, `veh_hd_extra8`, `veh_hd_extra9`) VALUES + (344, 4, 462, 0, 0, 0, 0, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 1561.42, -2260.71, 13.1447, 0, 0, 1.56546, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `veh_when_added`, `veh_how_added`, `veh_who_added`, `veh_hd_extra1`, `veh_hd_extra2`, `veh_hd_extra3`, `veh_hd_extra4`, `veh_hd_extra5`, `veh_hd_extra6`, `veh_hd_extra7`, `veh_hd_extra8`, `veh_hd_extra9`) VALUES + (345, 4, 462, 0, 0, 0, 0, 2, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 1561.43, -2257.49, 13.144, 0, 0, 1.57553, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `veh_when_added`, `veh_how_added`, `veh_who_added`, `veh_hd_extra1`, `veh_hd_extra2`, `veh_hd_extra3`, `veh_hd_extra4`, `veh_hd_extra5`, `veh_hd_extra6`, `veh_hd_extra7`, `veh_hd_extra8`, `veh_hd_extra9`) VALUES + (346, 4, 462, 0, 0, 0, 0, 12, 12, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 1561.32, -2254.05, 13.1433, 0, 0, 1.60366, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `veh_when_added`, `veh_how_added`, `veh_who_added`, `veh_hd_extra1`, `veh_hd_extra2`, `veh_hd_extra3`, `veh_hd_extra4`, `veh_hd_extra5`, `veh_hd_extra6`, `veh_hd_extra7`, `veh_hd_extra8`, `veh_hd_extra9`) VALUES + (347, 4, 462, 0, 0, 0, 0, 2, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 1561.39, -2250.88, 13.1434, 0, 0, 1.5767, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `veh_when_added`, `veh_how_added`, `veh_who_added`, `veh_hd_extra1`, `veh_hd_extra2`, `veh_hd_extra3`, `veh_hd_extra4`, `veh_hd_extra5`, `veh_hd_extra6`, `veh_hd_extra7`, `veh_hd_extra8`, `veh_hd_extra9`) VALUES + (348, 4, 462, 0, 0, 0, 0, 13, 13, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 1561.54, -2308.67, 13.1443, 0, 0, 1.56716, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `veh_when_added`, `veh_how_added`, `veh_who_added`, `veh_hd_extra1`, `veh_hd_extra2`, `veh_hd_extra3`, `veh_hd_extra4`, `veh_hd_extra5`, `veh_hd_extra6`, `veh_hd_extra7`, `veh_hd_extra8`, `veh_hd_extra9`) VALUES + (349, 4, 462, 0, 0, 0, 0, 1, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 1561.43, -2312.21, 13.1413, 0, 0, 1.57362, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `veh_when_added`, `veh_how_added`, `veh_who_added`, `veh_hd_extra1`, `veh_hd_extra2`, `veh_hd_extra3`, `veh_hd_extra4`, `veh_hd_extra5`, `veh_hd_extra6`, `veh_hd_extra7`, `veh_hd_extra8`, `veh_hd_extra9`) VALUES + (350, 4, 462, 0, 0, 0, 0, 1, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 1561.37, -2315.54, 13.1502, 0, 0, 1.57955, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `veh_when_added`, `veh_how_added`, `veh_who_added`, `veh_hd_extra1`, `veh_hd_extra2`, `veh_hd_extra3`, `veh_hd_extra4`, `veh_hd_extra5`, `veh_hd_extra6`, `veh_hd_extra7`, `veh_hd_extra8`, `veh_hd_extra9`) VALUES + (351, 4, 462, 0, 0, 0, 0, 1, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 1561.46, -2318.79, 13.1152, 0, 0, 1.70434, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `veh_when_added`, `veh_how_added`, `veh_who_added`, `veh_hd_extra1`, `veh_hd_extra2`, `veh_hd_extra3`, `veh_hd_extra4`, `veh_hd_extra5`, `veh_hd_extra6`, `veh_hd_extra7`, `veh_hd_extra8`, `veh_hd_extra9`) VALUES + (352, 4, 462, 0, 0, 0, 0, 13, 13, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 1561.57, -2321.93, 13.1452, 0, 0, 1.5955, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `veh_when_added`, `veh_how_added`, `veh_who_added`, `veh_hd_extra1`, `veh_hd_extra2`, `veh_hd_extra3`, `veh_hd_extra4`, `veh_hd_extra5`, `veh_hd_extra6`, `veh_hd_extra7`, `veh_hd_extra8`, `veh_hd_extra9`) VALUES + (353, 4, 462, 0, 0, 0, 0, 12, 12, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 1561.83, -2325.31, 13.1411, 0, 0, 1.58323, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `veh_when_added`, `veh_how_added`, `veh_who_added`, `veh_hd_extra1`, `veh_hd_extra2`, `veh_hd_extra3`, `veh_hd_extra4`, `veh_hd_extra5`, `veh_hd_extra6`, `veh_hd_extra7`, `veh_hd_extra8`, `veh_hd_extra9`) VALUES + (354, 4, 463, 0, 0, 0, 0, 19, 19, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 990.59, -1353.73, 12.9093, 0, 0, -1.54904, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `veh_when_added`, `veh_how_added`, `veh_who_added`, `veh_hd_extra1`, `veh_hd_extra2`, `veh_hd_extra3`, `veh_hd_extra4`, `veh_hd_extra5`, `veh_hd_extra6`, `veh_hd_extra7`, `veh_hd_extra8`, `veh_hd_extra9`) VALUES + (355, 4, 586, 0, 0, 0, 0, 8, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 990.701, -1355.77, 12.8884, 0, 0, -1.54248, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `veh_when_added`, `veh_how_added`, `veh_who_added`, `veh_hd_extra1`, `veh_hd_extra2`, `veh_hd_extra3`, `veh_hd_extra4`, `veh_hd_extra5`, `veh_hd_extra6`, `veh_hd_extra7`, `veh_hd_extra8`, `veh_hd_extra9`) VALUES + (356, 4, 462, 0, 0, 0, 0, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 990.4, -1357.84, 12.9707, 0, 0, -1.5026, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `veh_when_added`, `veh_how_added`, `veh_who_added`, `veh_hd_extra1`, `veh_hd_extra2`, `veh_hd_extra3`, `veh_hd_extra4`, `veh_hd_extra5`, `veh_hd_extra6`, `veh_hd_extra7`, `veh_hd_extra8`, `veh_hd_extra9`) VALUES + (357, 4, 468, 0, 0, 0, 0, 6, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 990.512, -1359.94, 13.0338, 0, 0, -1.52087, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `veh_when_added`, `veh_how_added`, `veh_who_added`, `veh_hd_extra1`, `veh_hd_extra2`, `veh_hd_extra3`, `veh_hd_extra4`, `veh_hd_extra5`, `veh_hd_extra6`, `veh_hd_extra7`, `veh_hd_extra8`, `veh_hd_extra9`) VALUES + (358, 4, 581, 0, 0, 0, 0, 66, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 990.615, -1361.65, 12.9657, 0, 0, -1.62156, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `veh_when_added`, `veh_how_added`, `veh_who_added`, `veh_hd_extra1`, `veh_hd_extra2`, `veh_hd_extra3`, `veh_hd_extra4`, `veh_hd_extra5`, `veh_hd_extra6`, `veh_hd_extra7`, `veh_hd_extra8`, `veh_hd_extra9`) VALUES + (359, 4, 461, 0, 0, 0, 0, 36, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 990.65, -1363.27, 12.9532, 0, 0, -1.58056, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `veh_when_added`, `veh_how_added`, `veh_who_added`, `veh_hd_extra1`, `veh_hd_extra2`, `veh_hd_extra3`, `veh_hd_extra4`, `veh_hd_extra5`, `veh_hd_extra6`, `veh_hd_extra7`, `veh_hd_extra8`, `veh_hd_extra9`) VALUES + (360, 4, 522, 0, 0, 0, 0, 3, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 990.505, -1364.99, 12.9362, 0, 0, -1.60842, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `veh_when_added`, `veh_how_added`, `veh_who_added`, `veh_hd_extra1`, `veh_hd_extra2`, `veh_hd_extra3`, `veh_hd_extra4`, `veh_hd_extra5`, `veh_hd_extra6`, `veh_hd_extra7`, `veh_hd_extra8`, `veh_hd_extra9`) VALUES + (361, 4, 471, 0, 0, 0, 0, 66, 71, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 990.345, -1367.09, 12.8528, 0, 0, -1.6018, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +/*!40000 ALTER TABLE `veh_main` ENABLE KEYS */; + +/*!40101 SET SQL_MODE=IFNULL(@OLD_SQL_MODE, '') */; +/*!40014 SET FOREIGN_KEY_CHECKS=IF(@OLD_FOREIGN_KEY_CHECKS IS NULL, 1, @OLD_FOREIGN_KEY_CHECKS) */; +/*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */; +/*!40111 SET SQL_NOTES=@OLD_SQL_NOTES */; diff --git a/misc/backup/database/asshat-19FEB2020-2004.sql b/misc/backup/database/asshat-19FEB2020-2004.sql new file mode 100644 index 00000000..ab794cad --- /dev/null +++ b/misc/backup/database/asshat-19FEB2020-2004.sql @@ -0,0 +1,8512 @@ +-- -------------------------------------------------------- +-- Host: 158.69.238.64 +-- Server version: 5.7.20 - MySQL Community Server (GPL) +-- Server OS: Win64 +-- HeidiSQL Version: 11.1.0.6116 +-- -------------------------------------------------------- + +/*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */; +/*!40101 SET NAMES utf8 */; +/*!50503 SET NAMES utf8mb4 */; +/*!40014 SET @OLD_FOREIGN_KEY_CHECKS=@@FOREIGN_KEY_CHECKS, FOREIGN_KEY_CHECKS=0 */; +/*!40101 SET @OLD_SQL_MODE=@@SQL_MODE, SQL_MODE='NO_AUTO_VALUE_ON_ZERO' */; +/*!40111 SET @OLD_SQL_NOTES=@@SQL_NOTES, SQL_NOTES=0 */; + +-- Dumping structure for table db24053.acct_auth +CREATE TABLE IF NOT EXISTS `acct_auth` ( + `acct_auth_id` int(11) NOT NULL AUTO_INCREMENT, + `acct_auth_acct` int(11) NOT NULL DEFAULT '0', + `acct_auth_type` int(11) NOT NULL DEFAULT '0', + `acct_auth_detail` varchar(128) NOT NULL DEFAULT '', + `acct_auth_smscarrier` int(11) NOT NULL DEFAULT '-1', + `acct_auth_verified` tinyint(1) NOT NULL DEFAULT '0', + `acct_auth_when_verified` int(32) NOT NULL DEFAULT '0', + `acct_auth_verifycode` varchar(32) NOT NULL DEFAULT '', + `acct_auth_token` varchar(128) NOT NULL DEFAULT '', + PRIMARY KEY (`acct_auth_id`), + KEY `acct_auth_acct` (`acct_auth_acct`), + CONSTRAINT `fk_acct_auth_acct` FOREIGN KEY (`acct_auth_acct`) REFERENCES `acct_main` (`acct_id`) ON DELETE CASCADE ON UPDATE CASCADE +) ENGINE=InnoDB DEFAULT CHARSET=latin1 COMMENT='Accounts - Authentication Methods'; + +-- Dumping data for table db24053.acct_auth: ~0 rows (approximately) +/*!40000 ALTER TABLE `acct_auth` DISABLE KEYS */; +/*!40000 ALTER TABLE `acct_auth` ENABLE KEYS */; + +-- Dumping structure for table db24053.acct_bl +CREATE TABLE IF NOT EXISTS `acct_bl` ( + `acct_bl_id` int(11) NOT NULL AUTO_INCREMENT, + `acct_bl_acct` int(11) NOT NULL DEFAULT '0', + `acct_bl_ip` int(24) NOT NULL DEFAULT '0', + `acct_bl_uid` varchar(128) NOT NULL DEFAULT '', + `acct_bl_when_added` int(32) NOT NULL DEFAULT '0', + `acct_bl_enabled` tinyint(1) NOT NULL DEFAULT '1', + PRIMARY KEY (`acct_bl_id`), + KEY `acct_bl_acct` (`acct_bl_acct`), + CONSTRAINT `hk_acct_bl_acct` FOREIGN KEY (`acct_bl_acct`) REFERENCES `acct_main` (`acct_id`) ON DELETE CASCADE ON UPDATE CASCADE +) ENGINE=InnoDB DEFAULT CHARSET=latin1 COMMENT='Accounts - Access Blacklist'; + +-- Dumping data for table db24053.acct_bl: ~0 rows (approximately) +/*!40000 ALTER TABLE `acct_bl` DISABLE KEYS */; +/*!40000 ALTER TABLE `acct_bl` ENABLE KEYS */; + +-- Dumping structure for table db24053.acct_contact +CREATE TABLE IF NOT EXISTS `acct_contact` ( + `acct_contact_id` int(11) NOT NULL AUTO_INCREMENT, + `acct_contact_acct` int(11) NOT NULL DEFAULT '0', + `acct_contact_contact` int(11) NOT NULL DEFAULT '0', + `acct_contact_type` int(11) NOT NULL DEFAULT '0', + `acct_contact_when_added` int(32) NOT NULL DEFAULT '0', + `acct_contact_accepted` tinyint(1) NOT NULL DEFAULT '0', + `acct_contact_when_accepted` int(32) NOT NULL DEFAULT '0', + `acct_contact_deleted` tinyint(1) NOT NULL DEFAULT '0', + PRIMARY KEY (`acct_contact_id`), + KEY `acct_contact_acct` (`acct_contact_acct`) +) ENGINE=InnoDB DEFAULT CHARSET=latin1 COMMENT='Accounts - Contacts (Friends/Blocked/Etc)'; + +-- Dumping data for table db24053.acct_contact: ~0 rows (approximately) +/*!40000 ALTER TABLE `acct_contact` DISABLE KEYS */; +/*!40000 ALTER TABLE `acct_contact` ENABLE KEYS */; + +-- Dumping structure for table db24053.acct_hotkey +CREATE TABLE IF NOT EXISTS `acct_hotkey` ( + `acct_hotkey_id` int(11) NOT NULL AUTO_INCREMENT, + `acct_hotkey_acct` int(11) NOT NULL DEFAULT '0', + `acct_hotkey_key` int(11) NOT NULL DEFAULT '0', + `acct_hotkey_cmdstr` varchar(128) NOT NULL DEFAULT '', + `acct_hotkey_enabled` tinyint(1) NOT NULL DEFAULT '1', + `acct_hotkey_when_added` int(32) NOT NULL DEFAULT '0', + `acct_hotkey_down` int(11) NOT NULL DEFAULT '0', + PRIMARY KEY (`acct_hotkey_id`), + KEY `acct_hotkey_acct` (`acct_hotkey_acct`), + CONSTRAINT `hk_acct_hotkey_acct` FOREIGN KEY (`acct_hotkey_acct`) REFERENCES `acct_main` (`acct_id`) ON DELETE CASCADE ON UPDATE CASCADE +) ENGINE=InnoDB AUTO_INCREMENT=181 DEFAULT CHARSET=latin1 COMMENT='Accounts - Custom Hotkeys'; + +-- Dumping data for table db24053.acct_hotkey: ~100 rows (approximately) +/*!40000 ALTER TABLE `acct_hotkey` DISABLE KEYS */; +INSERT INTO `acct_hotkey` (`acct_hotkey_id`, `acct_hotkey_acct`, `acct_hotkey_key`, `acct_hotkey_cmdstr`, `acct_hotkey_enabled`, `acct_hotkey_when_added`, `acct_hotkey_down`) VALUES + (1, 1, 107, 'engine', 1, 1610246045, 0); +INSERT INTO `acct_hotkey` (`acct_hotkey_id`, `acct_hotkey_acct`, `acct_hotkey_key`, `acct_hotkey_cmdstr`, `acct_hotkey_enabled`, `acct_hotkey_when_added`, `acct_hotkey_down`) VALUES + (2, 1, 108, 'lights', 1, 1610246045, 0); +INSERT INTO `acct_hotkey` (`acct_hotkey_id`, `acct_hotkey_acct`, `acct_hotkey_key`, `acct_hotkey_cmdstr`, `acct_hotkey_enabled`, `acct_hotkey_when_added`, `acct_hotkey_down`) VALUES + (3, 1, 106, 'lock', 1, 1610246045, 0); +INSERT INTO `acct_hotkey` (`acct_hotkey_id`, `acct_hotkey_acct`, `acct_hotkey_key`, `acct_hotkey_cmdstr`, `acct_hotkey_enabled`, `acct_hotkey_when_added`, `acct_hotkey_down`) VALUES + (4, 1, 102, 'enter', 1, 1610246045, 0); +INSERT INTO `acct_hotkey` (`acct_hotkey_id`, `acct_hotkey_acct`, `acct_hotkey_key`, `acct_hotkey_cmdstr`, `acct_hotkey_enabled`, `acct_hotkey_when_added`, `acct_hotkey_down`) VALUES + (5, 1, 103, 'passenger', 1, 1610246045, 0); +INSERT INTO `acct_hotkey` (`acct_hotkey_id`, `acct_hotkey_acct`, `acct_hotkey_key`, `acct_hotkey_cmdstr`, `acct_hotkey_enabled`, `acct_hotkey_when_added`, `acct_hotkey_down`) VALUES + (6, 1, 109, 'cursor', 1, 1610246045, 0); +INSERT INTO `acct_hotkey` (`acct_hotkey_id`, `acct_hotkey_acct`, `acct_hotkey_key`, `acct_hotkey_cmdstr`, `acct_hotkey_enabled`, `acct_hotkey_when_added`, `acct_hotkey_down`) VALUES + (7, 1, 111, 'drop', 1, 1610246045, 0); +INSERT INTO `acct_hotkey` (`acct_hotkey_id`, `acct_hotkey_acct`, `acct_hotkey_key`, `acct_hotkey_cmdstr`, `acct_hotkey_enabled`, `acct_hotkey_when_added`, `acct_hotkey_down`) VALUES + (8, 1, 112, 'pickup', 1, 1610246045, 0); +INSERT INTO `acct_hotkey` (`acct_hotkey_id`, `acct_hotkey_acct`, `acct_hotkey_key`, `acct_hotkey_cmdstr`, `acct_hotkey_enabled`, `acct_hotkey_when_added`, `acct_hotkey_down`) VALUES + (9, 1, 117, 'use', 1, 1610246045, 0); +INSERT INTO `acct_hotkey` (`acct_hotkey_id`, `acct_hotkey_acct`, `acct_hotkey_key`, `acct_hotkey_cmdstr`, `acct_hotkey_enabled`, `acct_hotkey_when_added`, `acct_hotkey_down`) VALUES + (10, 1, 105, 'inv', 1, 1610246045, 0); +INSERT INTO `acct_hotkey` (`acct_hotkey_id`, `acct_hotkey_acct`, `acct_hotkey_key`, `acct_hotkey_cmdstr`, `acct_hotkey_enabled`, `acct_hotkey_when_added`, `acct_hotkey_down`) VALUES + (11, 1, 48, 'i 0', 1, 1610246045, 0); +INSERT INTO `acct_hotkey` (`acct_hotkey_id`, `acct_hotkey_acct`, `acct_hotkey_key`, `acct_hotkey_cmdstr`, `acct_hotkey_enabled`, `acct_hotkey_when_added`, `acct_hotkey_down`) VALUES + (12, 1, 49, 'i 1', 1, 1610246045, 0); +INSERT INTO `acct_hotkey` (`acct_hotkey_id`, `acct_hotkey_acct`, `acct_hotkey_key`, `acct_hotkey_cmdstr`, `acct_hotkey_enabled`, `acct_hotkey_when_added`, `acct_hotkey_down`) VALUES + (13, 1, 50, 'i 2', 1, 1610246045, 0); +INSERT INTO `acct_hotkey` (`acct_hotkey_id`, `acct_hotkey_acct`, `acct_hotkey_key`, `acct_hotkey_cmdstr`, `acct_hotkey_enabled`, `acct_hotkey_when_added`, `acct_hotkey_down`) VALUES + (14, 1, 51, 'i 3', 1, 1610246045, 0); +INSERT INTO `acct_hotkey` (`acct_hotkey_id`, `acct_hotkey_acct`, `acct_hotkey_key`, `acct_hotkey_cmdstr`, `acct_hotkey_enabled`, `acct_hotkey_when_added`, `acct_hotkey_down`) VALUES + (15, 1, 52, 'i 4', 1, 1610246045, 0); +INSERT INTO `acct_hotkey` (`acct_hotkey_id`, `acct_hotkey_acct`, `acct_hotkey_key`, `acct_hotkey_cmdstr`, `acct_hotkey_enabled`, `acct_hotkey_when_added`, `acct_hotkey_down`) VALUES + (16, 1, 53, 'i 5', 1, 1610246045, 0); +INSERT INTO `acct_hotkey` (`acct_hotkey_id`, `acct_hotkey_acct`, `acct_hotkey_key`, `acct_hotkey_cmdstr`, `acct_hotkey_enabled`, `acct_hotkey_when_added`, `acct_hotkey_down`) VALUES + (17, 1, 54, 'i 6', 1, 1610246045, 0); +INSERT INTO `acct_hotkey` (`acct_hotkey_id`, `acct_hotkey_acct`, `acct_hotkey_key`, `acct_hotkey_cmdstr`, `acct_hotkey_enabled`, `acct_hotkey_when_added`, `acct_hotkey_down`) VALUES + (18, 1, 55, 'i 7', 1, 1610246045, 0); +INSERT INTO `acct_hotkey` (`acct_hotkey_id`, `acct_hotkey_acct`, `acct_hotkey_key`, `acct_hotkey_cmdstr`, `acct_hotkey_enabled`, `acct_hotkey_when_added`, `acct_hotkey_down`) VALUES + (19, 1, 56, 'i 8', 1, 1610246045, 0); +INSERT INTO `acct_hotkey` (`acct_hotkey_id`, `acct_hotkey_acct`, `acct_hotkey_key`, `acct_hotkey_cmdstr`, `acct_hotkey_enabled`, `acct_hotkey_when_added`, `acct_hotkey_down`) VALUES + (20, 1, 57, 'i 9', 1, 1610246045, 0); +INSERT INTO `acct_hotkey` (`acct_hotkey_id`, `acct_hotkey_acct`, `acct_hotkey_key`, `acct_hotkey_cmdstr`, `acct_hotkey_enabled`, `acct_hotkey_when_added`, `acct_hotkey_down`) VALUES + (21, 2, 107, 'engine', 1, 1610246120, 0); +INSERT INTO `acct_hotkey` (`acct_hotkey_id`, `acct_hotkey_acct`, `acct_hotkey_key`, `acct_hotkey_cmdstr`, `acct_hotkey_enabled`, `acct_hotkey_when_added`, `acct_hotkey_down`) VALUES + (22, 2, 108, 'lights', 1, 1610246120, 0); +INSERT INTO `acct_hotkey` (`acct_hotkey_id`, `acct_hotkey_acct`, `acct_hotkey_key`, `acct_hotkey_cmdstr`, `acct_hotkey_enabled`, `acct_hotkey_when_added`, `acct_hotkey_down`) VALUES + (23, 2, 106, 'lock', 1, 1610246120, 0); +INSERT INTO `acct_hotkey` (`acct_hotkey_id`, `acct_hotkey_acct`, `acct_hotkey_key`, `acct_hotkey_cmdstr`, `acct_hotkey_enabled`, `acct_hotkey_when_added`, `acct_hotkey_down`) VALUES + (24, 2, 102, 'enter', 1, 1610246120, 0); +INSERT INTO `acct_hotkey` (`acct_hotkey_id`, `acct_hotkey_acct`, `acct_hotkey_key`, `acct_hotkey_cmdstr`, `acct_hotkey_enabled`, `acct_hotkey_when_added`, `acct_hotkey_down`) VALUES + (25, 2, 103, 'passenger', 1, 1610246120, 0); +INSERT INTO `acct_hotkey` (`acct_hotkey_id`, `acct_hotkey_acct`, `acct_hotkey_key`, `acct_hotkey_cmdstr`, `acct_hotkey_enabled`, `acct_hotkey_when_added`, `acct_hotkey_down`) VALUES + (26, 2, 109, 'cursor', 1, 1610246120, 0); +INSERT INTO `acct_hotkey` (`acct_hotkey_id`, `acct_hotkey_acct`, `acct_hotkey_key`, `acct_hotkey_cmdstr`, `acct_hotkey_enabled`, `acct_hotkey_when_added`, `acct_hotkey_down`) VALUES + (27, 2, 111, 'drop', 1, 1610246120, 0); +INSERT INTO `acct_hotkey` (`acct_hotkey_id`, `acct_hotkey_acct`, `acct_hotkey_key`, `acct_hotkey_cmdstr`, `acct_hotkey_enabled`, `acct_hotkey_when_added`, `acct_hotkey_down`) VALUES + (28, 2, 112, 'pickup', 1, 1610246120, 0); +INSERT INTO `acct_hotkey` (`acct_hotkey_id`, `acct_hotkey_acct`, `acct_hotkey_key`, `acct_hotkey_cmdstr`, `acct_hotkey_enabled`, `acct_hotkey_when_added`, `acct_hotkey_down`) VALUES + (29, 2, 117, 'use', 1, 1610246120, 0); +INSERT INTO `acct_hotkey` (`acct_hotkey_id`, `acct_hotkey_acct`, `acct_hotkey_key`, `acct_hotkey_cmdstr`, `acct_hotkey_enabled`, `acct_hotkey_when_added`, `acct_hotkey_down`) VALUES + (30, 2, 105, 'inv', 1, 1610246120, 0); +INSERT INTO `acct_hotkey` (`acct_hotkey_id`, `acct_hotkey_acct`, `acct_hotkey_key`, `acct_hotkey_cmdstr`, `acct_hotkey_enabled`, `acct_hotkey_when_added`, `acct_hotkey_down`) VALUES + (31, 2, 48, 'i 0', 1, 1610246120, 0); +INSERT INTO `acct_hotkey` (`acct_hotkey_id`, `acct_hotkey_acct`, `acct_hotkey_key`, `acct_hotkey_cmdstr`, `acct_hotkey_enabled`, `acct_hotkey_when_added`, `acct_hotkey_down`) VALUES + (32, 2, 49, 'i 1', 1, 1610246120, 0); +INSERT INTO `acct_hotkey` (`acct_hotkey_id`, `acct_hotkey_acct`, `acct_hotkey_key`, `acct_hotkey_cmdstr`, `acct_hotkey_enabled`, `acct_hotkey_when_added`, `acct_hotkey_down`) VALUES + (33, 2, 50, 'i 2', 1, 1610246120, 0); +INSERT INTO `acct_hotkey` (`acct_hotkey_id`, `acct_hotkey_acct`, `acct_hotkey_key`, `acct_hotkey_cmdstr`, `acct_hotkey_enabled`, `acct_hotkey_when_added`, `acct_hotkey_down`) VALUES + (34, 2, 51, 'i 3', 1, 1610246120, 0); +INSERT INTO `acct_hotkey` (`acct_hotkey_id`, `acct_hotkey_acct`, `acct_hotkey_key`, `acct_hotkey_cmdstr`, `acct_hotkey_enabled`, `acct_hotkey_when_added`, `acct_hotkey_down`) VALUES + (35, 2, 52, 'i 4', 1, 1610246120, 0); +INSERT INTO `acct_hotkey` (`acct_hotkey_id`, `acct_hotkey_acct`, `acct_hotkey_key`, `acct_hotkey_cmdstr`, `acct_hotkey_enabled`, `acct_hotkey_when_added`, `acct_hotkey_down`) VALUES + (36, 2, 53, 'i 5', 1, 1610246120, 0); +INSERT INTO `acct_hotkey` (`acct_hotkey_id`, `acct_hotkey_acct`, `acct_hotkey_key`, `acct_hotkey_cmdstr`, `acct_hotkey_enabled`, `acct_hotkey_when_added`, `acct_hotkey_down`) VALUES + (37, 2, 54, 'i 6', 1, 1610246120, 0); +INSERT INTO `acct_hotkey` (`acct_hotkey_id`, `acct_hotkey_acct`, `acct_hotkey_key`, `acct_hotkey_cmdstr`, `acct_hotkey_enabled`, `acct_hotkey_when_added`, `acct_hotkey_down`) VALUES + (38, 2, 55, 'i 7', 1, 1610246120, 0); +INSERT INTO `acct_hotkey` (`acct_hotkey_id`, `acct_hotkey_acct`, `acct_hotkey_key`, `acct_hotkey_cmdstr`, `acct_hotkey_enabled`, `acct_hotkey_when_added`, `acct_hotkey_down`) VALUES + (39, 2, 56, 'i 8', 1, 1610246120, 0); +INSERT INTO `acct_hotkey` (`acct_hotkey_id`, `acct_hotkey_acct`, `acct_hotkey_key`, `acct_hotkey_cmdstr`, `acct_hotkey_enabled`, `acct_hotkey_when_added`, `acct_hotkey_down`) VALUES + (40, 2, 57, 'i 9', 1, 1610246120, 0); +INSERT INTO `acct_hotkey` (`acct_hotkey_id`, `acct_hotkey_acct`, `acct_hotkey_key`, `acct_hotkey_cmdstr`, `acct_hotkey_enabled`, `acct_hotkey_when_added`, `acct_hotkey_down`) VALUES + (41, 3, 107, 'engine', 1, 1610247643, 0); +INSERT INTO `acct_hotkey` (`acct_hotkey_id`, `acct_hotkey_acct`, `acct_hotkey_key`, `acct_hotkey_cmdstr`, `acct_hotkey_enabled`, `acct_hotkey_when_added`, `acct_hotkey_down`) VALUES + (42, 3, 108, 'lights', 1, 1610247643, 0); +INSERT INTO `acct_hotkey` (`acct_hotkey_id`, `acct_hotkey_acct`, `acct_hotkey_key`, `acct_hotkey_cmdstr`, `acct_hotkey_enabled`, `acct_hotkey_when_added`, `acct_hotkey_down`) VALUES + (43, 3, 106, 'lock', 1, 1610247643, 0); +INSERT INTO `acct_hotkey` (`acct_hotkey_id`, `acct_hotkey_acct`, `acct_hotkey_key`, `acct_hotkey_cmdstr`, `acct_hotkey_enabled`, `acct_hotkey_when_added`, `acct_hotkey_down`) VALUES + (44, 3, 102, 'enter', 1, 1610247643, 0); +INSERT INTO `acct_hotkey` (`acct_hotkey_id`, `acct_hotkey_acct`, `acct_hotkey_key`, `acct_hotkey_cmdstr`, `acct_hotkey_enabled`, `acct_hotkey_when_added`, `acct_hotkey_down`) VALUES + (45, 3, 103, 'passenger', 1, 1610247643, 0); +INSERT INTO `acct_hotkey` (`acct_hotkey_id`, `acct_hotkey_acct`, `acct_hotkey_key`, `acct_hotkey_cmdstr`, `acct_hotkey_enabled`, `acct_hotkey_when_added`, `acct_hotkey_down`) VALUES + (46, 3, 109, 'cursor', 1, 1610247643, 0); +INSERT INTO `acct_hotkey` (`acct_hotkey_id`, `acct_hotkey_acct`, `acct_hotkey_key`, `acct_hotkey_cmdstr`, `acct_hotkey_enabled`, `acct_hotkey_when_added`, `acct_hotkey_down`) VALUES + (47, 3, 111, 'drop', 1, 1610247643, 0); +INSERT INTO `acct_hotkey` (`acct_hotkey_id`, `acct_hotkey_acct`, `acct_hotkey_key`, `acct_hotkey_cmdstr`, `acct_hotkey_enabled`, `acct_hotkey_when_added`, `acct_hotkey_down`) VALUES + (48, 3, 112, 'pickup', 1, 1610247643, 0); +INSERT INTO `acct_hotkey` (`acct_hotkey_id`, `acct_hotkey_acct`, `acct_hotkey_key`, `acct_hotkey_cmdstr`, `acct_hotkey_enabled`, `acct_hotkey_when_added`, `acct_hotkey_down`) VALUES + (49, 3, 117, 'use', 1, 1610247643, 0); +INSERT INTO `acct_hotkey` (`acct_hotkey_id`, `acct_hotkey_acct`, `acct_hotkey_key`, `acct_hotkey_cmdstr`, `acct_hotkey_enabled`, `acct_hotkey_when_added`, `acct_hotkey_down`) VALUES + (50, 3, 105, 'inv', 1, 1610247643, 0); +INSERT INTO `acct_hotkey` (`acct_hotkey_id`, `acct_hotkey_acct`, `acct_hotkey_key`, `acct_hotkey_cmdstr`, `acct_hotkey_enabled`, `acct_hotkey_when_added`, `acct_hotkey_down`) VALUES + (51, 3, 48, 'i 0', 1, 1610247643, 0); +INSERT INTO `acct_hotkey` (`acct_hotkey_id`, `acct_hotkey_acct`, `acct_hotkey_key`, `acct_hotkey_cmdstr`, `acct_hotkey_enabled`, `acct_hotkey_when_added`, `acct_hotkey_down`) VALUES + (52, 3, 49, 'i 1', 1, 1610247643, 0); +INSERT INTO `acct_hotkey` (`acct_hotkey_id`, `acct_hotkey_acct`, `acct_hotkey_key`, `acct_hotkey_cmdstr`, `acct_hotkey_enabled`, `acct_hotkey_when_added`, `acct_hotkey_down`) VALUES + (53, 3, 50, 'i 2', 1, 1610247643, 0); +INSERT INTO `acct_hotkey` (`acct_hotkey_id`, `acct_hotkey_acct`, `acct_hotkey_key`, `acct_hotkey_cmdstr`, `acct_hotkey_enabled`, `acct_hotkey_when_added`, `acct_hotkey_down`) VALUES + (54, 3, 51, 'i 3', 1, 1610247643, 0); +INSERT INTO `acct_hotkey` (`acct_hotkey_id`, `acct_hotkey_acct`, `acct_hotkey_key`, `acct_hotkey_cmdstr`, `acct_hotkey_enabled`, `acct_hotkey_when_added`, `acct_hotkey_down`) VALUES + (55, 3, 52, 'i 4', 1, 1610247643, 0); +INSERT INTO `acct_hotkey` (`acct_hotkey_id`, `acct_hotkey_acct`, `acct_hotkey_key`, `acct_hotkey_cmdstr`, `acct_hotkey_enabled`, `acct_hotkey_when_added`, `acct_hotkey_down`) VALUES + (56, 3, 53, 'i 5', 1, 1610247643, 0); +INSERT INTO `acct_hotkey` (`acct_hotkey_id`, `acct_hotkey_acct`, `acct_hotkey_key`, `acct_hotkey_cmdstr`, `acct_hotkey_enabled`, `acct_hotkey_when_added`, `acct_hotkey_down`) VALUES + (57, 3, 54, 'i 6', 1, 1610247643, 0); +INSERT INTO `acct_hotkey` (`acct_hotkey_id`, `acct_hotkey_acct`, `acct_hotkey_key`, `acct_hotkey_cmdstr`, `acct_hotkey_enabled`, `acct_hotkey_when_added`, `acct_hotkey_down`) VALUES + (58, 3, 55, 'i 7', 1, 1610247643, 0); +INSERT INTO `acct_hotkey` (`acct_hotkey_id`, `acct_hotkey_acct`, `acct_hotkey_key`, `acct_hotkey_cmdstr`, `acct_hotkey_enabled`, `acct_hotkey_when_added`, `acct_hotkey_down`) VALUES + (59, 3, 56, 'i 8', 1, 1610247643, 0); +INSERT INTO `acct_hotkey` (`acct_hotkey_id`, `acct_hotkey_acct`, `acct_hotkey_key`, `acct_hotkey_cmdstr`, `acct_hotkey_enabled`, `acct_hotkey_when_added`, `acct_hotkey_down`) VALUES + (60, 3, 57, 'i 9', 1, 1610247643, 0); +INSERT INTO `acct_hotkey` (`acct_hotkey_id`, `acct_hotkey_acct`, `acct_hotkey_key`, `acct_hotkey_cmdstr`, `acct_hotkey_enabled`, `acct_hotkey_when_added`, `acct_hotkey_down`) VALUES + (61, 4, 107, 'engine', 1, 1610251858, 0); +INSERT INTO `acct_hotkey` (`acct_hotkey_id`, `acct_hotkey_acct`, `acct_hotkey_key`, `acct_hotkey_cmdstr`, `acct_hotkey_enabled`, `acct_hotkey_when_added`, `acct_hotkey_down`) VALUES + (62, 4, 108, 'lights', 1, 1610251858, 0); +INSERT INTO `acct_hotkey` (`acct_hotkey_id`, `acct_hotkey_acct`, `acct_hotkey_key`, `acct_hotkey_cmdstr`, `acct_hotkey_enabled`, `acct_hotkey_when_added`, `acct_hotkey_down`) VALUES + (63, 4, 106, 'lock', 1, 1610251858, 0); +INSERT INTO `acct_hotkey` (`acct_hotkey_id`, `acct_hotkey_acct`, `acct_hotkey_key`, `acct_hotkey_cmdstr`, `acct_hotkey_enabled`, `acct_hotkey_when_added`, `acct_hotkey_down`) VALUES + (64, 4, 102, 'enter', 1, 1610251858, 0); +INSERT INTO `acct_hotkey` (`acct_hotkey_id`, `acct_hotkey_acct`, `acct_hotkey_key`, `acct_hotkey_cmdstr`, `acct_hotkey_enabled`, `acct_hotkey_when_added`, `acct_hotkey_down`) VALUES + (65, 4, 103, 'passenger', 1, 1610251858, 0); +INSERT INTO `acct_hotkey` (`acct_hotkey_id`, `acct_hotkey_acct`, `acct_hotkey_key`, `acct_hotkey_cmdstr`, `acct_hotkey_enabled`, `acct_hotkey_when_added`, `acct_hotkey_down`) VALUES + (66, 4, 109, 'cursor', 1, 1610251858, 0); +INSERT INTO `acct_hotkey` (`acct_hotkey_id`, `acct_hotkey_acct`, `acct_hotkey_key`, `acct_hotkey_cmdstr`, `acct_hotkey_enabled`, `acct_hotkey_when_added`, `acct_hotkey_down`) VALUES + (67, 4, 111, 'drop', 1, 1610251858, 0); +INSERT INTO `acct_hotkey` (`acct_hotkey_id`, `acct_hotkey_acct`, `acct_hotkey_key`, `acct_hotkey_cmdstr`, `acct_hotkey_enabled`, `acct_hotkey_when_added`, `acct_hotkey_down`) VALUES + (68, 4, 112, 'pickup', 1, 1610251858, 0); +INSERT INTO `acct_hotkey` (`acct_hotkey_id`, `acct_hotkey_acct`, `acct_hotkey_key`, `acct_hotkey_cmdstr`, `acct_hotkey_enabled`, `acct_hotkey_when_added`, `acct_hotkey_down`) VALUES + (69, 4, 117, 'use', 1, 1610251858, 0); +INSERT INTO `acct_hotkey` (`acct_hotkey_id`, `acct_hotkey_acct`, `acct_hotkey_key`, `acct_hotkey_cmdstr`, `acct_hotkey_enabled`, `acct_hotkey_when_added`, `acct_hotkey_down`) VALUES + (70, 4, 105, 'inv', 1, 1610251858, 0); +INSERT INTO `acct_hotkey` (`acct_hotkey_id`, `acct_hotkey_acct`, `acct_hotkey_key`, `acct_hotkey_cmdstr`, `acct_hotkey_enabled`, `acct_hotkey_when_added`, `acct_hotkey_down`) VALUES + (71, 4, 48, 'i 0', 1, 1610251858, 0); +INSERT INTO `acct_hotkey` (`acct_hotkey_id`, `acct_hotkey_acct`, `acct_hotkey_key`, `acct_hotkey_cmdstr`, `acct_hotkey_enabled`, `acct_hotkey_when_added`, `acct_hotkey_down`) VALUES + (72, 4, 49, 'i 1', 1, 1610251858, 0); +INSERT INTO `acct_hotkey` (`acct_hotkey_id`, `acct_hotkey_acct`, `acct_hotkey_key`, `acct_hotkey_cmdstr`, `acct_hotkey_enabled`, `acct_hotkey_when_added`, `acct_hotkey_down`) VALUES + (73, 4, 50, 'i 2', 1, 1610251858, 0); +INSERT INTO `acct_hotkey` (`acct_hotkey_id`, `acct_hotkey_acct`, `acct_hotkey_key`, `acct_hotkey_cmdstr`, `acct_hotkey_enabled`, `acct_hotkey_when_added`, `acct_hotkey_down`) VALUES + (74, 4, 51, 'i 3', 1, 1610251858, 0); +INSERT INTO `acct_hotkey` (`acct_hotkey_id`, `acct_hotkey_acct`, `acct_hotkey_key`, `acct_hotkey_cmdstr`, `acct_hotkey_enabled`, `acct_hotkey_when_added`, `acct_hotkey_down`) VALUES + (75, 4, 52, 'i 4', 1, 1610251858, 0); +INSERT INTO `acct_hotkey` (`acct_hotkey_id`, `acct_hotkey_acct`, `acct_hotkey_key`, `acct_hotkey_cmdstr`, `acct_hotkey_enabled`, `acct_hotkey_when_added`, `acct_hotkey_down`) VALUES + (76, 4, 53, 'i 5', 1, 1610251858, 0); +INSERT INTO `acct_hotkey` (`acct_hotkey_id`, `acct_hotkey_acct`, `acct_hotkey_key`, `acct_hotkey_cmdstr`, `acct_hotkey_enabled`, `acct_hotkey_when_added`, `acct_hotkey_down`) VALUES + (77, 4, 54, 'i 6', 1, 1610251858, 0); +INSERT INTO `acct_hotkey` (`acct_hotkey_id`, `acct_hotkey_acct`, `acct_hotkey_key`, `acct_hotkey_cmdstr`, `acct_hotkey_enabled`, `acct_hotkey_when_added`, `acct_hotkey_down`) VALUES + (78, 4, 55, 'i 7', 1, 1610251858, 0); +INSERT INTO `acct_hotkey` (`acct_hotkey_id`, `acct_hotkey_acct`, `acct_hotkey_key`, `acct_hotkey_cmdstr`, `acct_hotkey_enabled`, `acct_hotkey_when_added`, `acct_hotkey_down`) VALUES + (79, 4, 56, 'i 8', 1, 1610251858, 0); +INSERT INTO `acct_hotkey` (`acct_hotkey_id`, `acct_hotkey_acct`, `acct_hotkey_key`, `acct_hotkey_cmdstr`, `acct_hotkey_enabled`, `acct_hotkey_when_added`, `acct_hotkey_down`) VALUES + (80, 4, 57, 'i 9', 1, 1610251858, 0); +INSERT INTO `acct_hotkey` (`acct_hotkey_id`, `acct_hotkey_acct`, `acct_hotkey_key`, `acct_hotkey_cmdstr`, `acct_hotkey_enabled`, `acct_hotkey_when_added`, `acct_hotkey_down`) VALUES + (161, 9, 107, 'engine', 1, 1613340581, 0); +INSERT INTO `acct_hotkey` (`acct_hotkey_id`, `acct_hotkey_acct`, `acct_hotkey_key`, `acct_hotkey_cmdstr`, `acct_hotkey_enabled`, `acct_hotkey_when_added`, `acct_hotkey_down`) VALUES + (162, 9, 108, 'lights', 1, 1613340581, 0); +INSERT INTO `acct_hotkey` (`acct_hotkey_id`, `acct_hotkey_acct`, `acct_hotkey_key`, `acct_hotkey_cmdstr`, `acct_hotkey_enabled`, `acct_hotkey_when_added`, `acct_hotkey_down`) VALUES + (163, 9, 106, 'lock', 1, 1613340581, 0); +INSERT INTO `acct_hotkey` (`acct_hotkey_id`, `acct_hotkey_acct`, `acct_hotkey_key`, `acct_hotkey_cmdstr`, `acct_hotkey_enabled`, `acct_hotkey_when_added`, `acct_hotkey_down`) VALUES + (164, 9, 102, 'enter', 1, 1613340581, 0); +INSERT INTO `acct_hotkey` (`acct_hotkey_id`, `acct_hotkey_acct`, `acct_hotkey_key`, `acct_hotkey_cmdstr`, `acct_hotkey_enabled`, `acct_hotkey_when_added`, `acct_hotkey_down`) VALUES + (165, 9, 103, 'passenger', 1, 1613340581, 0); +INSERT INTO `acct_hotkey` (`acct_hotkey_id`, `acct_hotkey_acct`, `acct_hotkey_key`, `acct_hotkey_cmdstr`, `acct_hotkey_enabled`, `acct_hotkey_when_added`, `acct_hotkey_down`) VALUES + (166, 9, 109, 'cursor', 1, 1613340581, 0); +INSERT INTO `acct_hotkey` (`acct_hotkey_id`, `acct_hotkey_acct`, `acct_hotkey_key`, `acct_hotkey_cmdstr`, `acct_hotkey_enabled`, `acct_hotkey_when_added`, `acct_hotkey_down`) VALUES + (167, 9, 111, 'drop', 1, 1613340581, 0); +INSERT INTO `acct_hotkey` (`acct_hotkey_id`, `acct_hotkey_acct`, `acct_hotkey_key`, `acct_hotkey_cmdstr`, `acct_hotkey_enabled`, `acct_hotkey_when_added`, `acct_hotkey_down`) VALUES + (168, 9, 112, 'pickup', 1, 1613340581, 0); +INSERT INTO `acct_hotkey` (`acct_hotkey_id`, `acct_hotkey_acct`, `acct_hotkey_key`, `acct_hotkey_cmdstr`, `acct_hotkey_enabled`, `acct_hotkey_when_added`, `acct_hotkey_down`) VALUES + (169, 9, 117, 'use', 1, 1613340581, 0); +INSERT INTO `acct_hotkey` (`acct_hotkey_id`, `acct_hotkey_acct`, `acct_hotkey_key`, `acct_hotkey_cmdstr`, `acct_hotkey_enabled`, `acct_hotkey_when_added`, `acct_hotkey_down`) VALUES + (170, 9, 105, 'inv', 1, 1613340581, 0); +INSERT INTO `acct_hotkey` (`acct_hotkey_id`, `acct_hotkey_acct`, `acct_hotkey_key`, `acct_hotkey_cmdstr`, `acct_hotkey_enabled`, `acct_hotkey_when_added`, `acct_hotkey_down`) VALUES + (171, 9, 48, 'i 0', 1, 1613340581, 0); +INSERT INTO `acct_hotkey` (`acct_hotkey_id`, `acct_hotkey_acct`, `acct_hotkey_key`, `acct_hotkey_cmdstr`, `acct_hotkey_enabled`, `acct_hotkey_when_added`, `acct_hotkey_down`) VALUES + (172, 9, 49, 'i 1', 1, 1613340581, 0); +INSERT INTO `acct_hotkey` (`acct_hotkey_id`, `acct_hotkey_acct`, `acct_hotkey_key`, `acct_hotkey_cmdstr`, `acct_hotkey_enabled`, `acct_hotkey_when_added`, `acct_hotkey_down`) VALUES + (173, 9, 50, 'i 2', 1, 1613340581, 0); +INSERT INTO `acct_hotkey` (`acct_hotkey_id`, `acct_hotkey_acct`, `acct_hotkey_key`, `acct_hotkey_cmdstr`, `acct_hotkey_enabled`, `acct_hotkey_when_added`, `acct_hotkey_down`) VALUES + (174, 9, 51, 'i 3', 1, 1613340581, 0); +INSERT INTO `acct_hotkey` (`acct_hotkey_id`, `acct_hotkey_acct`, `acct_hotkey_key`, `acct_hotkey_cmdstr`, `acct_hotkey_enabled`, `acct_hotkey_when_added`, `acct_hotkey_down`) VALUES + (175, 9, 52, 'i 4', 1, 1613340581, 0); +INSERT INTO `acct_hotkey` (`acct_hotkey_id`, `acct_hotkey_acct`, `acct_hotkey_key`, `acct_hotkey_cmdstr`, `acct_hotkey_enabled`, `acct_hotkey_when_added`, `acct_hotkey_down`) VALUES + (176, 9, 53, 'i 5', 1, 1613340581, 0); +INSERT INTO `acct_hotkey` (`acct_hotkey_id`, `acct_hotkey_acct`, `acct_hotkey_key`, `acct_hotkey_cmdstr`, `acct_hotkey_enabled`, `acct_hotkey_when_added`, `acct_hotkey_down`) VALUES + (177, 9, 54, 'i 6', 1, 1613340581, 0); +INSERT INTO `acct_hotkey` (`acct_hotkey_id`, `acct_hotkey_acct`, `acct_hotkey_key`, `acct_hotkey_cmdstr`, `acct_hotkey_enabled`, `acct_hotkey_when_added`, `acct_hotkey_down`) VALUES + (178, 9, 55, 'i 7', 1, 1613340581, 0); +INSERT INTO `acct_hotkey` (`acct_hotkey_id`, `acct_hotkey_acct`, `acct_hotkey_key`, `acct_hotkey_cmdstr`, `acct_hotkey_enabled`, `acct_hotkey_when_added`, `acct_hotkey_down`) VALUES + (179, 9, 56, 'i 8', 1, 1613340581, 0); +INSERT INTO `acct_hotkey` (`acct_hotkey_id`, `acct_hotkey_acct`, `acct_hotkey_key`, `acct_hotkey_cmdstr`, `acct_hotkey_enabled`, `acct_hotkey_when_added`, `acct_hotkey_down`) VALUES + (180, 9, 57, 'i 9', 1, 1613340581, 0); +/*!40000 ALTER TABLE `acct_hotkey` ENABLE KEYS */; + +-- Dumping structure for table db24053.acct_main +CREATE TABLE IF NOT EXISTS `acct_main` ( + `acct_id` int(11) NOT NULL AUTO_INCREMENT, + `acct_name` varchar(128) CHARACTER SET utf8 NOT NULL DEFAULT '', + `acct_pass` varchar(512) CHARACTER SET utf8 NOT NULL DEFAULT '', + `acct_email` varchar(128) CHARACTER SET utf8 NOT NULL DEFAULT '', + `acct_settings` int(32) NOT NULL DEFAULT '0', + `acct_staff_flags` int(32) NOT NULL DEFAULT '0', + `acct_staff_title` varchar(32) NOT NULL DEFAULT '', + `acct_mod_flags` int(32) NOT NULL DEFAULT '0', + `acct_irc` varchar(64) CHARACTER SET utf8 NOT NULL DEFAULT '', + `acct_discord` int(64) NOT NULL DEFAULT '0', + `acct_ip` int(11) NOT NULL DEFAULT '0', + PRIMARY KEY (`acct_id`) +) ENGINE=InnoDB AUTO_INCREMENT=10 DEFAULT CHARSET=latin1 COMMENT='Accounts'; + +-- Dumping data for table db24053.acct_main: ~5 rows (approximately) +/*!40000 ALTER TABLE `acct_main` DISABLE KEYS */; +INSERT INTO `acct_main` (`acct_id`, `acct_name`, `acct_pass`, `acct_email`, `acct_settings`, `acct_staff_flags`, `acct_staff_title`, `acct_mod_flags`, `acct_irc`, `acct_discord`, `acct_ip`) VALUES + (1, 'Vortrex', '4271461D21D2A465D0FF2B7082A9136F1DACD78127C805E2B33292AAA200E5682F4B7D4AB426224222B24AA1183C4D02FEE983030996CF3963746AE1C46A375D', 'adrianbram@gmail.com', 64, -1, 'Scripter', 0, '', 0, 840690839); +INSERT INTO `acct_main` (`acct_id`, `acct_name`, `acct_pass`, `acct_email`, `acct_settings`, `acct_staff_flags`, `acct_staff_title`, `acct_mod_flags`, `acct_irc`, `acct_discord`, `acct_ip`) VALUES + (2, 'maxaxle', '33A31BF6E32BD3BCCE1D2F2AB3B0D0768CEDAD30BC21A2EFA5F8A66BD7333A5545EFC773830E9F0B3C7AA285E3FDF60BADD1E93401AF9FC26CC25BB77238D750', 'axle008@hotmail.com', 64, -1, 'Server Manager', 0, '', 0, 1228971253); +INSERT INTO `acct_main` (`acct_id`, `acct_name`, `acct_pass`, `acct_email`, `acct_settings`, `acct_staff_flags`, `acct_staff_title`, `acct_mod_flags`, `acct_irc`, `acct_discord`, `acct_ip`) VALUES + (3, 'PerikiyoXD', 'A86A40A4C0051CBBDD8BEFD92AE6C07FC81DE8357F9C83C2B9B1B1AB8237A1DF9097560DD0377AEC9193E3355C15432265F39A5385CA1BC60F84BDB04D0E98C9', 'perikiyoxd@gmail.com', 0, 0, '', 0, '', 0, 1411888738); +INSERT INTO `acct_main` (`acct_id`, `acct_name`, `acct_pass`, `acct_email`, `acct_settings`, `acct_staff_flags`, `acct_staff_title`, `acct_mod_flags`, `acct_irc`, `acct_discord`, `acct_ip`) VALUES + (4, 'Vortrex2', 'BF5A9321DE2D7788153819FE85D7898B6873951129701ABA814403C649F16C37C5439757825178C2A4292DCF34446CB415F6340E6BB47539564514CCE65E5AC3', 'adrianbram@gmail.com', 0, 0, '', 0, '', 0, 0); +INSERT INTO `acct_main` (`acct_id`, `acct_name`, `acct_pass`, `acct_email`, `acct_settings`, `acct_staff_flags`, `acct_staff_title`, `acct_mod_flags`, `acct_irc`, `acct_discord`, `acct_ip`) VALUES + (9, 'Jack', 'E10480C85DDBC6DEBD2D55038CE0AFAEEB88B00CFE76B0FCF5248BF93D19AF1EA7E4B73FDF9DA1862FF73E5190E9F41750ECE1B4E4276F9CD8604B1DC824A076', 'jack9267@me.com', 0, 0, '', 0, '', 0, 2147483647); +/*!40000 ALTER TABLE `acct_main` ENABLE KEYS */; + +-- Dumping structure for table db24053.acct_msg +CREATE TABLE IF NOT EXISTS `acct_msg` ( + `acct_msg_id` int(11) NOT NULL AUTO_INCREMENT, + `acct_msg_acct` int(11) NOT NULL DEFAULT '0', + `acct_msg_who_sent` int(11) NOT NULL DEFAULT '0', + `acct_msg_when_sent` int(32) NOT NULL DEFAULT '0', + `acct_msg_when_read` int(32) NOT NULL DEFAULT '0', + `acct_msg_deleted` tinyint(1) NOT NULL DEFAULT '0', + `acct_msg_when_deleted` int(32) NOT NULL DEFAULT '0', + `acct_msg_folder` int(11) NOT NULL DEFAULT '0', + `acct_msg_message` text NOT NULL, + PRIMARY KEY (`acct_msg_id`), + KEY `acct_msg_acct` (`acct_msg_acct`), + KEY `acct_msg_who_sent` (`acct_msg_who_sent`), + CONSTRAINT `fk_acct_msg_recipient` FOREIGN KEY (`acct_msg_acct`) REFERENCES `acct_main` (`acct_id`) ON DELETE CASCADE ON UPDATE CASCADE, + CONSTRAINT `fk_acct_msg_sender` FOREIGN KEY (`acct_msg_who_sent`) REFERENCES `acct_main` (`acct_id`) ON DELETE CASCADE ON UPDATE CASCADE +) ENGINE=InnoDB DEFAULT CHARSET=latin1 COMMENT='Accounts - Private Messages (Mail)'; + +-- Dumping data for table db24053.acct_msg: ~0 rows (approximately) +/*!40000 ALTER TABLE `acct_msg` DISABLE KEYS */; +/*!40000 ALTER TABLE `acct_msg` ENABLE KEYS */; + +-- Dumping structure for table db24053.acct_note +CREATE TABLE IF NOT EXISTS `acct_note` ( + `acct_note_id` int(11) NOT NULL AUTO_INCREMENT, + `acct_note_acct` int(11) NOT NULL DEFAULT '0', + `acct_note_server` int(11) NOT NULL DEFAULT '0', + `acct_note_who_added` int(11) NOT NULL DEFAULT '0', + `acct_note_when_added` int(32) NOT NULL DEFAULT '0', + `acct_note_message` varchar(255) NOT NULL DEFAULT '', + `acct_note_deleted` tinyint(1) NOT NULL DEFAULT '0', + `acct_note_who_deleted` int(11) NOT NULL DEFAULT '0', + `acct_note_when_deleted` int(32) NOT NULL DEFAULT '0', + PRIMARY KEY (`acct_note_id`), + KEY `acct_note_acct` (`acct_note_acct`), + KEY `acct_note_server` (`acct_note_server`), + KEY `acct_note_who_added` (`acct_note_who_added`), + CONSTRAINT `fk_acct_note_acct` FOREIGN KEY (`acct_note_acct`) REFERENCES `acct_main` (`acct_id`) ON DELETE CASCADE ON UPDATE CASCADE, + CONSTRAINT `fk_acct_note_admin` FOREIGN KEY (`acct_note_who_added`) REFERENCES `acct_main` (`acct_id`) ON DELETE CASCADE ON UPDATE CASCADE, + CONSTRAINT `fk_acct_note_server` FOREIGN KEY (`acct_note_server`) REFERENCES `svr_main` (`svr_id`) ON DELETE CASCADE ON UPDATE CASCADE +) ENGINE=InnoDB DEFAULT CHARSET=latin1 COMMENT='Accounts - Staff Notes'; + +-- Dumping data for table db24053.acct_note: ~0 rows (approximately) +/*!40000 ALTER TABLE `acct_note` DISABLE KEYS */; +/*!40000 ALTER TABLE `acct_note` ENABLE KEYS */; + +-- Dumping structure for table db24053.acct_wl +CREATE TABLE IF NOT EXISTS `acct_wl` ( + `acct_wl_id` int(11) NOT NULL AUTO_INCREMENT, + `acct_wl_acct` int(11) NOT NULL DEFAULT '0', + `acct_wl_ip` int(24) NOT NULL DEFAULT '0', + `acct_wl_uid` varchar(128) NOT NULL DEFAULT '', + `acct_wl_when_added` int(32) NOT NULL DEFAULT '0', + `acct_wl_enabled` tinyint(1) NOT NULL DEFAULT '0', + PRIMARY KEY (`acct_wl_id`), + KEY `acct_wl_acct` (`acct_wl_acct`), + CONSTRAINT `fk_acct_wl_acct` FOREIGN KEY (`acct_wl_acct`) REFERENCES `acct_main` (`acct_id`) ON DELETE CASCADE ON UPDATE CASCADE +) ENGINE=InnoDB DEFAULT CHARSET=latin1 COMMENT='Accounts - Access Whitelist'; + +-- Dumping data for table db24053.acct_wl: ~0 rows (approximately) +/*!40000 ALTER TABLE `acct_wl` DISABLE KEYS */; +/*!40000 ALTER TABLE `acct_wl` ENABLE KEYS */; + +-- Dumping structure for table db24053.ac_script_bl +CREATE TABLE IF NOT EXISTS `ac_script_bl` ( + `ac_script_bl_id` int(11) NOT NULL AUTO_INCREMENT, + `ac_script_bl_server` int(11) NOT NULL DEFAULT '0', + `ac_script_bl_name` varchar(50) NOT NULL DEFAULT '', + `ac_script_bl_enabled` int(11) NOT NULL DEFAULT '0', + PRIMARY KEY (`ac_script_bl_id`), + KEY `ac_script_bl_server` (`ac_script_bl_server`), + CONSTRAINT `fk_ac_script_bl_server` FOREIGN KEY (`ac_script_bl_server`) REFERENCES `svr_main` (`svr_id`) ON DELETE CASCADE ON UPDATE CASCADE +) ENGINE=InnoDB AUTO_INCREMENT=4 DEFAULT CHARSET=utf8 COMMENT='Anticheat - Blacklisted Scripts'; + +-- Dumping data for table db24053.ac_script_bl: ~3 rows (approximately) +/*!40000 ALTER TABLE `ac_script_bl` DISABLE KEYS */; +INSERT INTO `ac_script_bl` (`ac_script_bl_id`, `ac_script_bl_server`, `ac_script_bl_name`, `ac_script_bl_enabled`) VALUES + (1, 4, 'load_modmanager', 1); +INSERT INTO `ac_script_bl` (`ac_script_bl_id`, `ac_script_bl_server`, `ac_script_bl_name`, `ac_script_bl_enabled`) VALUES + (2, 1, 'info', 1); +INSERT INTO `ac_script_bl` (`ac_script_bl_id`, `ac_script_bl_server`, `ac_script_bl_name`, `ac_script_bl_enabled`) VALUES + (3, 1, 'info2', 1); +/*!40000 ALTER TABLE `ac_script_bl` ENABLE KEYS */; + +-- Dumping structure for table db24053.ac_script_wl +CREATE TABLE IF NOT EXISTS `ac_script_wl` ( + `ac_script_wl_id` int(11) NOT NULL AUTO_INCREMENT, + `ac_script_wl_server` int(11) NOT NULL DEFAULT '0', + `ac_script_wl_name` varchar(50) NOT NULL DEFAULT '', + `ac_script_wl_enabled` int(11) NOT NULL DEFAULT '1', + PRIMARY KEY (`ac_script_wl_id`) USING BTREE, + KEY `ac_script_wl_server` (`ac_script_wl_server`), + CONSTRAINT `fk_ac_script_wl_server` FOREIGN KEY (`ac_script_wl_server`) REFERENCES `svr_main` (`svr_id`) ON DELETE CASCADE ON UPDATE CASCADE +) ENGINE=InnoDB AUTO_INCREMENT=6 DEFAULT CHARSET=utf8 COMMENT='Anticheat - Whitelisted Scripts'; + +-- Dumping data for table db24053.ac_script_wl: ~5 rows (approximately) +/*!40000 ALTER TABLE `ac_script_wl` DISABLE KEYS */; +INSERT INTO `ac_script_wl` (`ac_script_wl_id`, `ac_script_wl_server`, `ac_script_wl_name`, `ac_script_wl_enabled`) VALUES + (1, 4, 'sync', 1); +INSERT INTO `ac_script_wl` (`ac_script_wl_id`, `ac_script_wl_server`, `ac_script_wl_name`, `ac_script_wl_enabled`) VALUES + (2, 4, 'gtac', 1); +INSERT INTO `ac_script_wl` (`ac_script_wl_id`, `ac_script_wl_server`, `ac_script_wl_name`, `ac_script_wl_enabled`) VALUES + (3, 4, 'network_main', 1); +INSERT INTO `ac_script_wl` (`ac_script_wl_id`, `ac_script_wl_server`, `ac_script_wl_name`, `ac_script_wl_enabled`) VALUES + (4, 4, 'mpcellphone', 1); +INSERT INTO `ac_script_wl` (`ac_script_wl_id`, `ac_script_wl_server`, `ac_script_wl_name`, `ac_script_wl_enabled`) VALUES + (5, 4, 'speechcontrol_net', 1); +/*!40000 ALTER TABLE `ac_script_wl` ENABLE KEYS */; + +-- Dumping structure for table db24053.atm_main +CREATE TABLE IF NOT EXISTS `atm_main` ( + `atm_id` int(11) NOT NULL AUTO_INCREMENT, + `atm_server` int(11) NOT NULL DEFAULT '0', + `atm_pos_x` float NOT NULL DEFAULT '0', + `atm_pos_y` float NOT NULL DEFAULT '0', + `atm_pos_z` float NOT NULL DEFAULT '0', + `atm_fee` int(11) NOT NULL DEFAULT '0', + `atm_disabled` tinyint(1) NOT NULL DEFAULT '0', + PRIMARY KEY (`atm_id`) +) ENGINE=InnoDB DEFAULT CHARSET=latin1 COMMENT='ATMs'; + +-- Dumping data for table db24053.atm_main: ~0 rows (approximately) +/*!40000 ALTER TABLE `atm_main` DISABLE KEYS */; +/*!40000 ALTER TABLE `atm_main` ENABLE KEYS */; + +-- Dumping structure for table db24053.atm_use +CREATE TABLE IF NOT EXISTS `atm_use` ( + `atm_use_id` int(11) NOT NULL AUTO_INCREMENT, + `atm_use_atm` int(11) NOT NULL DEFAULT '0', + `atm_use_bankacct` int(11) NOT NULL DEFAULT '0', + `atm_use_amount` int(11) NOT NULL DEFAULT '0', + `atm_use_when` int(32) NOT NULL DEFAULT '0', + `atm_use_balance_before` int(11) NOT NULL DEFAULT '0', + `atm_use_balance_after` int(11) NOT NULL DEFAULT '0', + `atm_use_result` int(11) NOT NULL DEFAULT '0', + PRIMARY KEY (`atm_use_id`) +) ENGINE=InnoDB DEFAULT CHARSET=latin1 COMMENT='ATMs - Usage'; + +-- Dumping data for table db24053.atm_use: ~0 rows (approximately) +/*!40000 ALTER TABLE `atm_use` DISABLE KEYS */; +/*!40000 ALTER TABLE `atm_use` ENABLE KEYS */; + +-- Dumping structure for table db24053.bank_main +CREATE TABLE IF NOT EXISTS `bank_main` ( + `bank_id` int(11) NOT NULL AUTO_INCREMENT, + `bank_server` int(11) NOT NULL DEFAULT '0', + `bank_name` varchar(128) NOT NULL DEFAULT 'Unnamed', + `bank_enabled` tinyint(1) NOT NULL DEFAULT '1', + `bank_biz` int(11) NOT NULL DEFAULT '1', + PRIMARY KEY (`bank_id`) +) ENGINE=InnoDB DEFAULT CHARSET=latin1 COMMENT='Banks'; + +-- Dumping data for table db24053.bank_main: ~0 rows (approximately) +/*!40000 ALTER TABLE `bank_main` DISABLE KEYS */; +/*!40000 ALTER TABLE `bank_main` ENABLE KEYS */; + +-- Dumping structure for table db24053.ban_main +CREATE TABLE IF NOT EXISTS `ban_main` ( + `ban_id` int(11) NOT NULL AUTO_INCREMENT, + `ban_server` int(11) NOT NULL DEFAULT '0', + `ban_detail` int(11) NOT NULL DEFAULT '0', + `ban_type` tinyint(1) NOT NULL DEFAULT '0', + `ban_ip_start` int(24) NOT NULL DEFAULT '0', + `ban_ip_end` int(24) NOT NULL DEFAULT '0', + `ban_uid` varchar(256) NOT NULL DEFAULT '', + `ban_who_added` int(11) NOT NULL DEFAULT '0', + `ban_when_added` int(32) NOT NULL DEFAULT '0', + `ban_reason` varchar(255) NOT NULL DEFAULT '', + `ban_deleted` tinyint(1) NOT NULL DEFAULT '0', + PRIMARY KEY (`ban_id`), + KEY `ban_server` (`ban_server`), + KEY `ban_who_added` (`ban_who_added`), + CONSTRAINT `fk_ban_admin` FOREIGN KEY (`ban_who_added`) REFERENCES `acct_main` (`acct_id`) ON DELETE CASCADE ON UPDATE CASCADE, + CONSTRAINT `fk_ban_server` FOREIGN KEY (`ban_server`) REFERENCES `svr_main` (`svr_id`) ON DELETE CASCADE ON UPDATE CASCADE +) ENGINE=InnoDB DEFAULT CHARSET=latin1 COMMENT='Bans'; + +-- Dumping data for table db24053.ban_main: ~0 rows (approximately) +/*!40000 ALTER TABLE `ban_main` DISABLE KEYS */; +/*!40000 ALTER TABLE `ban_main` ENABLE KEYS */; + +-- Dumping structure for table db24053.ban_try +CREATE TABLE IF NOT EXISTS `ban_try` ( + `ban_try_id` int(11) NOT NULL AUTO_INCREMENT, + `ban_try_server` tinyint(2) NOT NULL DEFAULT '0', + `ban_try_ip` int(24) NOT NULL DEFAULT '0', + `ban_try_uid` varchar(128) NOT NULL DEFAULT '', + `ban_try_when_tried` int(32) NOT NULL DEFAULT '0', + `ban_try_ban_id` int(11) NOT NULL DEFAULT '0', + PRIMARY KEY (`ban_try_id`) +) ENGINE=InnoDB DEFAULT CHARSET=latin1 COMMENT='Bans - Connection Attempts'; + +-- Dumping data for table db24053.ban_try: ~0 rows (approximately) +/*!40000 ALTER TABLE `ban_try` DISABLE KEYS */; +/*!40000 ALTER TABLE `ban_try` ENABLE KEYS */; + +-- Dumping structure for table db24053.biz_buy +CREATE TABLE IF NOT EXISTS `biz_buy` ( + `biz_buy_id` int(11) NOT NULL AUTO_INCREMENT, + `biz_buy_biz` int(11) NOT NULL DEFAULT '0', + `biz_buy_sacct` int(11) NOT NULL DEFAULT '0', + `biz_buy_amount` int(11) NOT NULL DEFAULT '0', + `biz_buy_prod` int(11) NOT NULL DEFAULT '0', + `biz_buy_tip` int(11) NOT NULL DEFAULT '0', + `biz_buy_result` tinyint(4) NOT NULL DEFAULT '0', + PRIMARY KEY (`biz_buy_id`) +) ENGINE=InnoDB DEFAULT CHARSET=latin1 COMMENT='Businesses - Purchases'; + +-- Dumping data for table db24053.biz_buy: ~0 rows (approximately) +/*!40000 ALTER TABLE `biz_buy` DISABLE KEYS */; +/*!40000 ALTER TABLE `biz_buy` ENABLE KEYS */; + +-- Dumping structure for table db24053.biz_loc +CREATE TABLE IF NOT EXISTS `biz_loc` ( + `biz_loc_id` int(11) NOT NULL AUTO_INCREMENT, + `biz_loc_server` int(11) NOT NULL DEFAULT '0', + `biz_loc_name` varchar(128) NOT NULL DEFAULT '', + `biz_loc_type` int(11) NOT NULL DEFAULT '0', + `biz_loc_biz` int(11) NOT NULL DEFAULT '0', + `biz_loc_enabled` int(11) NOT NULL DEFAULT '0', + `biz_loc_pos_x` float NOT NULL DEFAULT '0', + `biz_loc_pos_y` float NOT NULL DEFAULT '0', + `biz_loc_pos_z` float NOT NULL DEFAULT '0', + `biz_loc_rot_z` float NOT NULL DEFAULT '0', + `biz_loc_int` int(11) NOT NULL DEFAULT '0', + `biz_loc_vw` int(11) NOT NULL DEFAULT '0', + PRIMARY KEY (`biz_loc_id`) USING BTREE +) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Businesses - Locations'; + +-- Dumping data for table db24053.biz_loc: ~0 rows (approximately) +/*!40000 ALTER TABLE `biz_loc` DISABLE KEYS */; +/*!40000 ALTER TABLE `biz_loc` ENABLE KEYS */; + +-- Dumping structure for table db24053.biz_main +CREATE TABLE IF NOT EXISTS `biz_main` ( + `biz_id` int(11) NOT NULL AUTO_INCREMENT, + `biz_server` int(11) NOT NULL DEFAULT '0', + `biz_name` varchar(40) NOT NULL DEFAULT 'Unnamed Business', + `biz_type` tinyint(4) NOT NULL DEFAULT '0', + `biz_buy_price` int(11) NOT NULL DEFAULT '0', + `biz_owner_type` int(11) NOT NULL DEFAULT '0', + `biz_owner_id` int(11) NOT NULL DEFAULT '0', + `biz_entrance_pos_x` float NOT NULL DEFAULT '0', + `biz_entrance_pos_y` float NOT NULL DEFAULT '0', + `biz_entrance_pos_z` float NOT NULL DEFAULT '0', + `biz_entrance_rot_z` float NOT NULL DEFAULT '0', + `biz_entrance_int` int(11) NOT NULL DEFAULT '0', + `biz_entrance_vw` int(11) NOT NULL DEFAULT '0', + `biz_entrance_pickup` int(11) NOT NULL DEFAULT '-1', + `biz_entrance_blip` int(11) NOT NULL DEFAULT '-1', + `biz_exit_pos_x` float NOT NULL DEFAULT '0', + `biz_exit_pos_y` float NOT NULL DEFAULT '0', + `biz_exit_pos_z` float NOT NULL DEFAULT '0', + `biz_exit_rot_z` float NOT NULL DEFAULT '0', + `biz_exit_int` int(11) NOT NULL DEFAULT '0', + `biz_exit_vw` int(11) NOT NULL DEFAULT '0', + `biz_exit_pickup` int(11) NOT NULL DEFAULT '-1', + `biz_exit_blip` int(11) NOT NULL DEFAULT '-1', + `biz_misc_customext` tinyint(4) NOT NULL DEFAULT '0', + `biz_misc_customint` tinyint(4) NOT NULL DEFAULT '0', + `biz_supply_pos_x` float NOT NULL DEFAULT '0', + `biz_supply_pos_y` float NOT NULL DEFAULT '0', + `biz_supply_pos_z` float NOT NULL DEFAULT '0', + `biz_buy_pos_x` float NOT NULL DEFAULT '0', + `biz_buy_pos_y` float NOT NULL DEFAULT '0', + `biz_buy_pos_z` float NOT NULL DEFAULT '0', + `biz_buy_rot_z` float NOT NULL DEFAULT '0', + `biz_misc_customvw` int(11) NOT NULL DEFAULT '0', + `biz_locked` tinyint(1) NOT NULL DEFAULT '0', + `biz_till` int(11) NOT NULL DEFAULT '0', + `biz_entrance_fee` int(11) NOT NULL DEFAULT '0', + `biz_deleted` tinyint(1) NOT NULL DEFAULT '0', + `biz_who_deleted` int(11) NOT NULL DEFAULT '0', + `biz_when_deleted` int(32) NOT NULL DEFAULT '0', + `biz_has_interior` tinyint(1) NOT NULL DEFAULT '0', + PRIMARY KEY (`biz_id`) USING BTREE, + KEY `biz_server` (`biz_server`), + KEY `biz_owner` (`biz_owner_type`,`biz_owner_id`), + CONSTRAINT `fk_biz_server` FOREIGN KEY (`biz_server`) REFERENCES `svr_main` (`svr_id`) ON DELETE CASCADE ON UPDATE CASCADE +) ENGINE=InnoDB AUTO_INCREMENT=341 DEFAULT CHARSET=latin1 COMMENT='Businesses'; + +-- Dumping data for table db24053.biz_main: ~252 rows (approximately) +/*!40000 ALTER TABLE `biz_main` DISABLE KEYS */; +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES + (1, 4, 'Unnamed Business', 5, 30000, 0, 0, -90.24, -1219.76, 2.71, 350.178, 0, 0, 0, -1, -2026.9, -104.128, 1035.17, 179.07, 3, 5001, 0, -1, 0, 0, -93.521, -1241.12, 1.92454, -104.326, -1213.02, 2.76131, 174.391, 0, 0, 0, 0, 0, 0, 0, 1); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES + (2, 4, 'Unnamed Business', 8, 30000, 0, 0, 2078.66, -1582.38, 13.49, 337.053, 0, 0, 0, -1, -25.8433, -187.446, 1003.55, 4.72576, 17, 5002, 0, -1, 0, 0, 1795.3, -1166.21, 23.8281, 2127.1, -1134.72, 25.5488, 351.147, 0, 0, 0, 0, 0, 0, 0, 1); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES + (4, 4, 'Pawn', 4, 30000, 0, 0, 984.18, -1336.44, 13.55, 199.037, 0, 0, 0, -1, 315.799, -143.53, 999.602, 1.01837, 7, 5004, 0, -1, 0, 1, 1872.19, -1621.2, 13.5469, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES + (5, 4, 'Unnamed Business', 1, 30000, 0, 0, 1653.2, 1470.7, 1152.43, 299.874, 0, 0, 0, -1, -25.9841, -187.986, 1003.55, 357.842, 17, 5005, 0, -1, 0, 0, 1837.36, -1434.91, 13.5625, 1704.68, -1587.22, 13.5383, 87.0352, 4, 0, 0, 0, 0, 0, 0, 1); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES + (6, 4, 'Unnamed Business', 3, 30000, 0, 0, 1333.37, -1864.21, 13.55, 154.702, 0, 0, 0, -1, 6.6435, -31.4626, 1003.55, 191.882, 10, 5006, 0, -1, 0, 1, 1565.82, -1167.49, 24.0781, 1647.94, -2483.22, 13.5547, 87.3502, 0, 0, 0, 0, 0, 0, 0, 1); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES + (7, 4, 'Unnamed Business', 5, 30000, 0, 0, 1026.38, -1927.19, 12.8, 154.459, 0, 0, 0, -1, 1226.77, -813.652, 1084.01, 353.088, 5, 5007, 0, -1, 0, 1, 1915.87, -1790.69, 13.3906, 1026.22, -1915.85, 12.8776, 266.223, 0, 0, 0, 0, 0, 0, 0, 1); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES + (8, 4, 'Unnamed Business', 3, 30000, 0, 0, -172.13, -1825.41, 55.41, 215.571, 0, 0, 0, -1, 1445.44, -1294.74, 13.5469, 100.653, 0, 5008, 0, -1, 1, 0, 1448.97, -1285.72, 13.5469, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES + (11, 4, 'Unnamed Business', 8, 30000, 0, 0, 1070.49, -1873.66, 13.55, 274.819, 0, 0, 0, -1, -31.0053, -91.6372, 1003.55, 0.680122, 18, 5011, 0, -1, 0, 0, -66.1294, -1169.59, 1.86967, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES + (12, 4, 'Unnamed Business', 4, 30000, 0, 0, 1368.98, -1279.67, 13.55, 262.027, 0, 0, 0, -1, 315.902, -143.025, 999.602, 5.53311, 7, 5012, 0, -1, 0, 0, 1365.63, -1285.08, 13.5469, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES + (13, 4, 'Unnamed Business', 2, 30000, 0, 0, 1709.03, 1443.96, 1145.78, 281.106, 0, 0, 0, -1, -2029.62, -119.618, 1035.17, 1.0423, 3, 5013, 0, -1, 0, 0, -1579.28, 2652.63, 55.8359, -1600.75, 2645.28, 57.6595, 120.282, 0, 0, 0, 0, 0, 0, 0, 1); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES + (14, 4, 'Unnamed Business', 8, 30000, 0, 0, 1343.73, -1506.56, 13.55, 234.154, 0, 0, 0, -1, -25.8373, -188.091, 1003.55, 355.897, 17, 5014, 0, -1, 0, 0, 2156.02, -1020.91, 62.7113, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES + (16, 4, 'Unnamed Business', 1, 30000, 0, 0, -1676.24, 432.1, 7.18, 33.0359, 0, 0, 0, -1, -27.3621, -57.8246, 1003.55, 179.037, 6, 5016, 0, -1, 1, 0, -1661.84, 442.168, 7.17969, -1591.62, 2657.25, 55.7501, 356.386, 0, 0, 0, 0, 0, 0, 0, 1); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES + (17, 4, 'Unnamed Business', 8, 30000, 0, 0, 667.21, -1770.07, 13.64, 164.522, 0, 0, 0, -1, -25.8373, -188.091, 1003.55, 355.897, 17, 5017, 0, -1, 0, 0, 1844.34, -1860.84, 13.3828, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES + (18, 4, 'Unnamed Business', 1, 30000, 0, 0, 1000.3, -920.2, 42.33, 96.2681, 0, 0, 0, -1, -31.1112, -91.8577, 1003.55, 0.052338, 18, 5018, 0, -1, 0, 0, 1022.79, -916.642, 42.1797, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES + (19, 4, 'Unnamed Business', 2, 30000, 0, 0, 1456.53, -1137.56, 23.95, 36.7288, 0, 0, 0, -1, 207.615, -111.163, 1005.13, 187.89, 15, 5019, 0, -1, 0, 0, 2015.15, -1304.98, 23.986, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES + (20, 4, 'Unnamed Business', 8, 30000, 0, 0, -1989.49, 884.84, 46.54, 98.2134, 0, 0, 0, -1, -31.0061, -91.5664, 1003.55, 0.680122, 18, 5020, 0, -1, 1, 0, -1981.44, 905.115, 45.7979, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES + (21, 4, 'Unnamed Business', 5, 30000, 0, 0, 1628.75, -1903.4, 13.55, 84.3039, 0, 0, 0, -1, 1494.8, 1305.13, 1093.29, 65.5664, 3, 5021, 0, -1, 0, 0, 904.141, -1333.77, 13.5469, 1636.17, -1893.07, 13.2619, 2.61639, 0, 0, 0, 0, 0, 0, 0, 1); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES + (22, 4, 'Unnamed Business', 5, 30000, 0, 0, 1606.29, -2431.95, 13.55, 1.14757, 0, 0, 0, -1, -30.86, -91.9062, 1003.55, 354.538, 18, 5022, 0, -1, 0, 0, 1933.08, -2067.76, 13.5469, 1602.48, -2488.26, 13.5547, 267.485, 0, 0, 0, 0, 0, 0, 0, 1); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES + (23, 4, 'Unnamed Business', 0, 30000, 0, 0, 1796.35, -1721.18, 13.54, 180, 0, 0, 0, -1, -795.014, 489.671, 1376.2, 358.859, 1, 5023, 0, -1, 1, 1, 1809.53, -1724.42, 13.5362, 1899.97, -2346.11, 13.5469, 263.56, 0, 0, 0, 0, 0, 0, 0, 1); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES + (24, 4, 'Unnamed Business', 1, 30000, 0, 0, 1654.2, 1467.87, 1152.79, 325.41, 0, 0, 0, -1, -30.9635, -91.1079, 1003.55, 4.80216, 18, 5024, 0, -1, 0, 0, 1668.04, -1583.68, 13.5469, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES + (25, 4, 'Unnamed Business', 3, 30000, 0, 0, 1877.85, -1627.79, 13.34, 359.503, 0, 0, 0, -1, 460.448, -88.5426, 999.555, 86.9106, 4, 5025, 0, -1, 0, 0, 1794.43, -1726.55, 13.5469, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES + (26, 4, 'Unnamed Business', 2, 30000, 0, 0, 1704.21, -1578.79, 13.89, 278.564, 0, 0, 0, -1, 227.075, -7.33794, 1002.21, 91.3542, 5, 5026, 0, -1, 0, 0, -1699.21, 954.874, 24.8906, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES + (27, 4, 'Unnamed Business', 3, 30000, 0, 0, 2419.8, -1509.08, 24, 268.67, 0, 0, 0, -1, 460.154, -88.5364, 999.555, 88.7906, 4, 5027, 0, -1, 0, 0, 2422.79, -1517.02, 24.0069, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES + (28, 4, 'Unnamed Business', 4, 30000, 0, 0, 1357.07, 308.06, 19.75, 338.103, 0, 0, 0, -1, 315.641, -142.827, 999.602, 6.35604, 7, 5028, 0, -1, 0, 0, 1365.69, -1283.99, 13.5469, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES + (30, 4, 'Unnamed Business', 8, 30000, 0, 0, 1044.57, -1308.84, 13.55, 99.115, 0, 0, 0, -1, -25.7453, -188.253, 1003.55, 171.504, 17, 5030, 0, -1, 0, 0, 1037.38, -1311.36, 13.5469, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES + (31, 4, 'Unnamed Business', 0, 30000, 0, 0, 2247.63, 2396.32, 10.82, 184.236, 0, 0, 0, -1, 204.462, -168.754, 1000.52, 353.473, 14, 5031, 0, -1, 0, 0, 567.646, -1291.5, 17.2422, 561.662, -1292.28, 17.2482, 232.669, 0, 0, 0, 0, 0, 0, 0, 1); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES + (33, 4, 'Unnamed Business', 4, 30000, 0, 0, 387.18, -1817.95, 7.84, 273.117, 0, 0, 0, -1, 315.715, -142.947, 999.602, 0.321425, 7, 5033, 0, -1, 0, 1, 2521.73, -1544.98, 24.01, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES + (34, 4, 'Unnamed Business', 8, 30000, 0, 0, 1073.21, -1384.87, 13.87, 144.937, 0, 0, 0, -1, 363.315, -74.8249, 1001.51, 315.517, 10, 5034, 0, -1, 0, 0, 1191.5, -891.539, 43.1784, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES + (35, 4, 'Unnamed Business', 2, 30000, 0, 0, 1109.27, -301.43, 74.54, 358.887, 0, 0, 0, -1, 203.856, -50.2081, 1001.8, 352.563, 1, 5035, 0, -1, 0, 0, -2493.67, -33.0023, 25.7656, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES + (36, 4, 'Unnamed Business', 1, 30000, 0, 0, 1799.79, -1696.08, 5.25, 3.04433, 0, 0, 0, -1, -31.4892, -91.506, 1003.55, 358.788, 18, 5036, 0, -1, 0, 0, -1948.43, 826.607, 41.5261, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES + (37, 4, 'Unnamed Business', 3, 30000, 0, 0, 1732.86, -1582.03, 14.16, 1.36931, 0, 0, 0, -1, 460.449, -88.6508, 999.555, 84.9172, 4, 5037, 0, -1, 0, 0, 1668.86, -1554.79, 13.5469, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES + (38, 4, 'Unnamed Business', 8, 30000, 0, 0, 1673.74, -1170.88, 23.97, 354.084, 0, 0, 0, -1, 501.926, -67.7462, 998.758, 175.187, 11, 5038, 0, -1, 0, 0, 2139.42, -1181.06, 23.9922, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES + (39, 4, 'Unnamed Business', 8, 30000, 0, 0, 1670.49, -1582.65, 13.55, 3.42811, 0, 0, 0, -1, -30.9218, -91.5736, 1003.55, 357.108, 18, 5039, 0, -1, 0, 0, 2006.9, -1759.92, 13.5391, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES + (40, 4, 'Unnamed Business', 8, 30000, 0, 0, 1833.78, -1842.7, 13.58, 276.736, 0, 0, 0, -1, -26.4404, -187.648, 1003.55, 1.27901, 17, 5040, 0, -1, 0, 0, 2864.77, -1428.47, 10.9952, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES + (41, 4, 'Unnamed Business', 1, 30000, 0, 0, 2261.93, 28.06, 26.5, 339.516, 0, 0, 0, -1, -26.4846, -57.8533, 1003.55, 350.759, 6, 5041, 0, -1, 0, 0, -1328.06, 2697.52, 50.0625, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES + (42, 4, 'Unnamed Business', 8, 30000, 0, 0, 1154.69, -1458.02, 15.8, 4.52589, 0, 0, 0, -1, -26.6782, -57.6615, 1003.55, 357.681, 6, 5042, 0, -1, 0, 0, 2349.25, -1538.52, 24.0033, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES + (43, 4, 'Unnamed Business', 8, 30000, 0, 0, 2318.99, -88.68, 26.48, 178.446, 0, 0, 0, -1, -26.1985, -187.472, 1003.55, 13.4461, 17, 5043, 0, -1, 0, 0, -2790.9, 774.258, 50.5078, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES + (44, 4, 'Unnamed Business', 1, 30000, 0, 0, 1739.95, 1440.97, 1145.67, 85.9053, 0, 0, 0, -1, -31.0512, -91.6771, 1003.55, 0.187671, 18, 5044, 0, -1, 0, 0, -2235.17, -2563.35, 31.9219, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES + (45, 4, 'Unnamed Business', 5, 30000, 0, 0, 2045.5, -1908.06, 13.55, 174.508, 0, 0, 0, -1, 1169.16, 1361.17, 10.9219, 217.478, 0, 5045, 0, -1, 0, 0, 1249.5, -1376.78, 13.3634, 2052.74, -1912.89, 13.252, 358.522, 0, 0, 0, 0, 0, 0, 0, 1); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES + (46, 4, 'Unnamed Business', 1, 30000, 0, 0, 1671.24, 1469.42, 1152.6, 286.719, 0, 0, 0, -1, 203.788, -50.2352, 1001.8, 1.30236, 1, 5046, 0, -1, 0, 0, 2106.4, -1213.94, 23.9665, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES + (48, 4, 'Unnamed Business', 4, 30000, 0, 0, 2333.4, 61.54, 26.71, 91.9637, 0, 0, 0, -1, 315.912, -143.315, 999.602, 358.938, 7, 5048, 0, -1, 0, 0, 2023.4, -1077.89, 24.6073, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES + (50, 4, 'Unnamed Business', 2, 30000, 0, 0, 2244.25, -1665.5, 15.48, 347.07, 0, 0, 0, -1, 203.675, -49.334, 1001.8, 186.433, 1, 5050, 0, -1, 0, 0, 492.869, -1359.27, 17.1788, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES + (51, 4, 'Unnamed Business', 1, 30000, 0, 0, 1636.1, -1848.45, 13.54, 0.564751, 0, 0, 0, -1, -30.871, -91.4408, 1003.55, 358.966, 18, 5051, 0, -1, 0, 0, -479.786, -566.494, 24.1158, 455.124, -1899.05, 0.78316, 202.97, 0, 0, 0, 0, 0, 0, 0, 1); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES + (52, 4, 'Unnamed Business', 12, 30000, 0, 0, 1703.45, 1442.91, 1145.78, 239.473, 0, 0, 0, -1, -2029.66, -119.435, 1035.17, 1.03609, 3, 5052, 0, -1, 0, 0, -1936.3, 276.5, 41.0469, -1958.21, 307.691, 35.4688, 6.40909, 0, 0, 0, 0, 0, 0, 0, 1); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES + (53, 4, 'Unnamed Business', 5, 30000, 0, 0, 1784.89, 1444.99, 1145.78, 340.115, 0, 0, 0, -1, -2029.56, -119.625, 1035.17, 357.304, 3, 5053, 0, -1, 0, 0, -1704.05, 1208.2, 25.1146, 1043.86, -1923.3, 12.9832, 0.44367, 0, 0, 0, 0, 0, 0, 0, 1); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES + (54, 4, 'Unnamed Business', 8, 30000, 0, 0, 1413.52, -1696.77, 13.54, 59.0001, 0, 0, 0, -1, 363.489, -74.6292, 1001.51, 134.772, 10, 5054, 0, -1, 0, 0, -1568.91, 674.891, 7.1875, 0, 0, 0, 0, 100053, 0, 0, 0, 0, 0, 0, 1); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES + (55, 4, 'Unnamed Business', 7, 30000, 0, 0, 1737.46, 1443.56, 1145.78, 276.704, 0, 0, 0, -1, 1711.71, 1461.59, 1145.78, 257.869, 0, 5055, 0, -1, 0, 0, 2087.73, 2077.92, 11.0579, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES + (56, 4, 'Unnamed Business', 1, 30000, 0, 0, 661.36, -573.29, 16.34, 272.013, 0, 0, 0, -1, -13.3403, -91.3059, 1008.03, 357.346, 18, 5056, 0, -1, 0, 1, 667.314, -546.236, 16.3359, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES + (57, 4, 'Unnamed Business', 0, 30000, 0, 0, 1047.21, -1418.63, 13.55, 144.195, 0, 0, 0, -1, -30.9934, -91.8355, 1003.55, 358.741, 18, 5057, 0, -1, 0, 0, 659.793, -1763.91, 13.5592, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES + (58, 4, 'Unnamed Business', 3, 30000, 0, 0, 2105.35, -1806.45, 13.55, 265.142, 0, 0, 0, -1, 460.507, -88.4769, 999.555, 84.5587, 4, 5058, 0, -1, 1, 1, 593.602, -1494.91, 15.2686, 615.481, -1501.39, 14.8747, 277.476, 0, 0, 0, 0, 0, 0, 0, 1); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES + (59, 4, 'Unnamed Business', 2, 30000, 0, 0, 1829.57, -1450.66, 13.59, 359.855, 0, 0, 0, -1, 203.78, -50.5481, 1001.8, 9.98745, 1, 5059, 0, -1, 0, 0, 1112.81, -1566.31, 13.5569, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES + (60, 4, 'Unnamed Business', 0, 30000, 0, 0, 1744.86, 1443.03, 1145.78, 265.737, 0, 0, 0, -1, -25.7722, -188.055, 1003.55, 356.072, 17, 5060, 0, -1, 0, 0, 1061.57, -1484.28, 13.5457, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES + (61, 4, 'Unnamed Business', 3, 30000, 0, 0, 1772.23, 1440.43, 1145.69, 81.6088, 0, 0, 0, -1, 372.46, -133.296, 1001.49, 330.82, 5, 5061, 0, -1, 0, 0, 2108.98, -1788.67, 13.5608, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES + (62, 4, 'Unnamed Business', 8, 30000, 0, 0, 461.2, -1500.79, 31.06, 279.205, 0, 0, 0, -1, -25.3976, -187.912, 1003.55, 355.95, 17, 5062, 0, -1, 0, 0, 712.834, -569.736, 16.3359, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES + (63, 4, 'Unnamed Business', 3, 30000, 0, 0, -1721.03, 1360.04, 7.19, 88.9988, 0, 0, 0, -1, 371.728, -133.508, 1001.49, 2.19321, 5, 5063, 0, -1, 0, 0, -1720.56, 1353.78, 7.17902, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES + (64, 4, 'Unnamed Business', 5, 30000, 0, 0, 1662.57, 1788.63, 10.82, 263.499, 0, 0, 0, -1, -221.166, 1411.45, 27.7734, 256.79, 18, 5064, 0, -1, 0, 0, 1698.29, 1786.89, 10.8203, 1654.53, 1795.69, 10.8203, 81.85, 0, 0, 0, 0, 0, 0, 0, 1); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES + (65, 4, 'Unnamed Business', 1, 30000, 0, 0, 1752.7, 1443.19, 1145.78, 272.004, 0, 0, 0, -1, -27.5021, -57.9044, 1003.55, 7.79304, 6, 5065, 0, -1, 0, 0, 1394.87, 457.122, 20.1368, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES + (66, 4, 'Unnamed Business', 8, 30000, 0, 0, 2251.11, -1666.85, 15.48, 347.064, 0, 0, 0, -1, -31.1119, -91.6484, 1003.55, 359.657, 18, 5066, 0, -1, 0, 1, 1285.09, -1272.42, 13.5366, 0, 0, 0, 0, 123051, 0, 0, 0, 0, 0, 0, 1); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES + (67, 4, 'Unnamed Business', 10, 30000, 0, 0, 1131.71, 1518.63, 5.82, 107.231, 0, 0, 0, -1, 1601.85, -1467.25, 13.5639, 95.3918, 0, 5067, 0, -1, 0, 0, 2341.7, -1314.47, 24.0671, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES + (68, 4, 'Unnamed Business', 4, 30000, 0, 0, 1587.5, -1862.96, 13.53, 349.866, 0, 0, 0, -1, 2134.53, 1599.41, 1008.36, 90.8534, 1, 5068, 0, -1, 0, 0, 1602.15, -2434.5, 13.5547, 1602.61, -2451.42, 13.5547, 172.886, 0, 0, 0, 0, 0, 0, 0, 1); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES + (69, 4, 'Unnamed Business', 1, 30000, 0, 0, 1929.22, -1776.25, 13.55, 90.3944, 0, 0, 0, -1, -26.172, -187.877, 1003.55, 355.973, 17, 5069, 0, -1, 0, 0, 2654.33, 1132.2, 10.8203, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES + (70, 4, 'Unnamed Business', 3, 30000, 0, 0, 1414.53, -1602.64, 13.55, 175.846, 0, 0, 0, -1, 362.819, -75.1166, 1001.51, 315.914, 10, 5070, 0, -1, 0, 1, 1414.03, -1599.29, 13.5469, 1646.94, 1305.67, 10.8203, 98.2638, 0, 0, 0, 0, 0, 0, 0, 1); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES + (71, 4, 'Unnamed Business', 2, 30000, 0, 0, -1882.67, 866.23, 35.17, 135.343, 0, 0, 0, -1, 227.262, -8.33084, 1002.21, 100.274, 5, 5071, 0, -1, 0, 0, 1103.75, -1411.33, 13.6187, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES + (72, 4, 'Unnamed Business', 5, 30000, 0, 0, -1666.21, 1203.53, 7.25, 159.664, 0, 0, 0, -1, 372.496, -133.417, 1001.49, 356.796, 5, 5072, 0, -1, 0, 0, 1381.51, 266.698, 19.5669, -1664.23, 1213, 7.25464, 1.79089, 0, 0, 0, 0, 0, 0, 0, 1); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES + (73, 4, 'Unnamed Business', 8, 30000, 0, 0, 1952.4, -2021.57, 13.55, 90.9127, 0, 0, 0, -1, -30.8758, -91.0564, 1003.55, 357.893, 18, 5073, 0, -1, 0, 0, 1672.83, -1583.28, 13.5469, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES + (74, 4, 'Unnamed Business', 3, 30000, 0, 0, 928.54, -1353.07, 13.34, 106.28, 0, 0, 0, -1, 372.501, -132.618, 1001.49, 0.750952, 5, 5074, 0, -1, 0, 0, 2428.59, -1940.92, 13.5469, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES + (75, 4, 'Unnamed Business', 4, 30000, 0, 0, 1665.3, 1452.63, 1152.58, 275.782, 0, 0, 0, -1, 316.063, -143.426, 999.602, 1.00112, 7, 5075, 0, -1, 0, 1, 2227.59, -1697.79, 13.7829, 0, 0, 0, 0, 10, 0, 0, 0, 0, 0, 0, 1); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES + (76, 4, 'Unnamed Business', 12, 30000, 0, 0, 1766.45, 1443.67, 1145.78, 272.004, 0, 0, 0, -1, 2916.15, -2275.72, 7.25419, 92.2792, 0, 5076, 0, -1, 0, 1, 0, 0, 0, 0, 0, 0, 0, 6, 0, 0, 0, 0, 0, 0, 1); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES + (77, 4, 'Unnamed Business', 12, 30000, 0, 0, 2229.9, -1721.26, 13.56, 149.746, 0, 0, 0, -1, 2916.03, -2276.33, 7.25419, 84.8808, 0, 5077, 0, -1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 7, 0, 0, 0, 0, 0, 0, 1); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES + (78, 4, 'Unnamed Business', 4, 30000, 0, 0, 1649.6, 1467.74, 1151.97, 3.67434, 0, 0, 0, -1, 315.902, -143.025, 999.602, 5.53311, 7, 5078, 0, -1, 0, 0, 1013.87, -372.41, 73.5505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES + (79, 4, 'Unnamed Business', 3, 30000, 0, 0, 1038.17, -1340.73, 13.74, 177.513, 0, 0, 0, -1, 376.894, -193.302, 1000.63, 357.573, 17, 5079, 0, -1, 0, 0, 1028.2, -1341.19, 13.7266, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES + (80, 4, 'Unnamed Business', 3, 30000, 0, 0, 2397.67, -1899.06, 13.55, 359.769, 0, 0, 0, -1, 364.899, -11.4455, 1001.85, 357.847, 9, 5080, 0, -1, 0, 0, 2378.92, -1903.45, 13.3828, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES + (81, 4, 'Unnamed Business', 3, 30000, 0, 0, 1774.54, 1440.21, 1145.69, 326.854, 0, 0, 0, -1, 364.92, -11.5076, 1001.85, 1.92061, 9, 5081, 0, -1, 0, 0, 2412.69, -1490.4, 24, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES + (82, 4, 'Unnamed Business', 3, 30000, 0, 0, 1445.11, -1353.1, 13.55, 76.8374, 0, 0, 0, -1, 364.786, -11.5863, 1001.85, 359.156, 9, 5082, 0, -1, 0, 0, -1810.85, 616.781, 35.1719, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES + (83, 4, 'Unnamed Business', 3, 30000, 0, 0, 810.49, -1616.33, 13.55, 274.543, 0, 0, 0, -1, 364.817, -11.7036, 1001.85, 356.202, 9, 5083, 0, -1, 0, 0, -2664.66, 260.562, 4.63281, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES + (84, 4, 'Unnamed Business', 2, 30000, 0, 0, 1102.44, -1458.3, 15.8, 265.057, 0, 0, 0, -1, 227.152, -8.34062, 1002.21, 82.5599, 5, 5084, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES + (85, 4, 'Unnamed Business', 2, 30000, 0, 0, 1445.12, -1419.06, 13.54, 65.0882, 0, 0, 0, -1, 227.551, -7.98705, 1002.21, 77.3083, 5, 5085, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES + (86, 4, 'Unnamed Business', 3, 30000, 0, 0, 2237.88, -1663.56, 15.48, 344.453, 0, 0, 0, -1, 363.168, -74.7778, 1001.51, 307.153, 10, 5086, 0, -1, 0, 0, 785.164, -1632.8, 13.3828, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES + (88, 4, 'Unnamed Business', 3, 30000, 0, 0, 1087.72, -295.96, 74.77, 358.173, 0, 0, 0, -1, 363.226, -75.0796, 1001.51, 311.442, 10, 5088, 0, -1, 0, 0, -2794.59, 775.22, 50.4725, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES + (89, 4, 'Unnamed Business', 3, 30000, 0, 0, -1912.4, 827.95, 35.23, 137.415, 0, 0, 0, -1, 362.862, -75.157, 1001.51, 317.474, 10, 5089, 0, -1, 0, 0, -2148.97, -2449.25, 30.6328, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES + (90, 4, 'Unnamed Business', 3, 30000, 0, 0, 1769.38, -1397.58, 15.76, 177.249, 0, 0, 0, -1, 460.243, -88.68, 999.555, 92.1094, 4, 5090, 0, -1, 0, 0, 711.452, -493.504, 16.3359, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES + (91, 4, 'Unnamed Business', 10, 30000, 0, 0, 2421.44, -1219.25, 25.56, 6.1916, 0, 0, 0, -1, -2158.43, 642.822, 1052.38, 29.1845, 1, 5091, 0, -1, 0, 0, 1968.24, -1284.42, 23.9844, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES + (92, 4, 'Unnamed Business', 2, 30000, 0, 0, 1405.22, -1881.5, 13.55, 264.017, 0, 0, 0, -1, 207.556, -111.244, 1005.13, 352.685, 15, 5092, 0, -1, 0, 0, 2230.46, -1674.3, 14.8285, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES + (93, 4, 'Unnamed Business', 3, 30000, 0, 0, 1200.42, -918.5, 43.11, 273.646, 0, 0, 0, -1, 372.061, -133.522, 1001.49, 359.863, 5, 5093, 0, -1, 0, 0, 1839.22, -1452.28, 13.564, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES + (94, 4, 'Unnamed Business', 10, 30000, 0, 0, 1836.65, -1682.52, 13.34, 95.7087, 0, 0, 0, -1, 1204.98, -13.8471, 1000.92, 7.8813, 2, 5094, 0, -1, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES + (95, 4, 'Unnamed Business', 8, 30000, 0, 0, 1775.47, 1437.65, 1145.69, 357.587, 0, 0, 0, -1, -25.6475, -188.232, 1003.55, 12.6659, 17, 5095, 0, -1, 0, 1, 2006.4, -1760.42, 13.5391, 1034.92, -1935.32, 13.0244, 266.609, 0, 0, 0, 0, 0, 0, 0, 1); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES + (96, 4, 'Unnamed Business', 3, 30000, 0, 0, 2332.08, 75.01, 26.62, 87.2637, 0, 0, 0, -1, 460.545, -88.3984, 999.555, 93.5276, 4, 5096, 0, -1, 0, 0, -294.906, 2687.78, 62.6665, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES + (97, 4, 'Unnamed Business', 1, 30000, 0, 0, 1574.85, -1637.35, 13.56, 11.6774, 0, 0, 0, -1, -25.5966, -187.034, 1003.55, 357.071, 17, 5097, 0, -1, 0, 0, 1541.46, -1634.66, 13.5469, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES + (98, 4, 'Unnamed Business', 3, 30000, 0, 0, 1098.59, -1473.58, 15.8, 69.6117, 0, 0, 0, -1, 460.244, -88.4067, 999.555, 87.9699, 4, 5098, 0, -1, 1, 0, -1741.37, -569.154, 16.4844, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES + (99, 4, 'Unnamed Business', 1, 30000, 0, 0, 1445.11, -1426.78, 13.54, 89.005, 0, 0, 0, -1, -27.4883, -57.4702, 1003.55, 0.398602, 6, 5099, 0, -1, 0, 0, 1428.99, -1427.96, 13.5547, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES + (100, 4, 'Unnamed Business', 1, 30000, 0, 0, 2157.89, -1733.42, 13.54, 356.464, 0, 0, 0, -1, -27.4883, -57.4702, 1003.55, 0.398602, 6, 5100, 0, -1, 0, 0, 1551.73, -1474.28, 13.5481, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES + (101, 4, 'Unnamed Business', 0, 30000, 0, 0, 1759.93, 1446.82, 1145.78, 84.942, 0, 0, 0, -1, 5.84083, -31.4701, 1003.55, 0.31898, 10, 5101, 0, -1, 0, 0, 637.356, 1678.13, 6.99219, -2395.1, 2222.04, 4.98437, 85.6145, 0, 0, 0, 0, 0, 0, 0, 1); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES + (102, 4, 'Unnamed Business', 3, 30000, 0, 0, 671.13, -519.45, 16.34, 210.161, 0, 0, 0, -1, 460.219, -89.0891, 999.555, 92.4067, 4, 5102, 0, -1, 0, 0, 674.514, -514.152, 16.3359, 1626.54, -1137.52, 23.9062, 184.156, 0, 0, 0, 0, 0, 0, 0, 1); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES + (103, 4, 'Unnamed Business', 1, 30000, 0, 0, 1757.29, 1446.53, 1145.78, 84.942, 0, 0, 0, -1, 6.22508, -31.3632, 1003.55, 355.899, 10, 5103, 0, -1, 0, 0, 2181.8, 2485.08, 10.8203, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES + (104, 4, 'Unnamed Business', 8, 30000, 0, 0, 1315.55, -897.92, 39.58, 355.767, 0, 0, 0, -1, -25.6988, -188.146, 1003.55, 2.25264, 17, 5104, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES + (105, 4, 'Unnamed Business', 1, 30000, 0, 0, 1753.5, 1446.45, 1145.78, 84.942, 0, 0, 0, -1, -25.8995, -188.249, 1003.55, 359.321, 17, 5105, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES + (106, 4, 'Unnamed Business', 8, 30000, 0, 0, 1752.19, 1446.37, 1145.78, 93.7154, 0, 0, 0, -1, -31.1422, -92.0064, 1003.55, 350.907, 18, 5106, 0, -1, 0, 0, 2007.48, -1759.44, 13.5391, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES + (107, 4, 'Unnamed Business', 3, 30000, 0, 0, 2521.18, -1411.62, 28.53, 80.3432, 0, 0, 0, -1, -228.827, 1400.92, 27.7656, 269.626, 18, 5107, 0, -1, 0, 0, -865.274, 1541.22, 22.6826, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES + (108, 4, 'Unnamed Business', 8, 30000, 0, 0, 1634.58, -1583.53, 13.65, 10.9946, 0, 0, 0, -1, 5.90418, -31.5585, 1003.55, 0.568551, 10, 5108, 0, -1, 0, 0, -744.555, 1583.71, 26.9609, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES + (109, 4, 'Unnamed Business', 1, 30000, 0, 0, 1748.68, 1446.17, 1145.78, 93.0887, 0, 0, 0, -1, 6.21169, -31.3557, 1003.55, 3.26752, 10, 5109, 0, -1, 0, 0, -1476.6, 1879.51, 32.6328, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES + (110, 4, 'Unnamed Business', 2, 30000, 0, 0, -91.1, -1592.47, 3, 294.395, 0, 0, 0, -1, 226.882, -8.1384, 1002.21, 269.642, 5, 5110, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES + (111, 4, 'Unnamed Business', 8, 30000, 0, 0, 1352.52, -1758.82, 13.51, 180.542, 0, 0, 0, -1, -31.1119, -91.6484, 1003.55, 359.657, 18, 5111, 0, -1, 0, 0, 2254.93, -1666.28, 15.469, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES + (112, 4, 'Unnamed Business', 3, 30000, 0, 0, 1158.28, -1473.41, 15.8, 286.459, 0, 0, 0, -1, 364.786, -11.5863, 1001.85, 359.156, 9, 5112, 0, -1, 0, 0, 0, 0, 0, 2263.74, 34.2681, 26.4844, 50.0339, 0, 0, 0, 0, 0, 0, 0, 1); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES + (113, 4, 'Unnamed Business', 1, 30000, 0, 0, 1743.82, 1445.89, 1145.78, 90.2687, 0, 0, 0, -1, 0, 0, 0, 0, 0, 5113, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES + (114, 4, 'Unnamed Business', 1, 30000, 0, 0, 1742.45, 1445.89, 1145.78, 90.2687, 0, 0, 0, -1, -25.6442, -188.041, 1003.55, 351.193, 17, 5114, 0, -1, 1, 1, 2130.87, 892.924, 10.8203, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES + (115, 4, 'Unnamed Business', 3, 30000, 0, 0, 1650.13, 1466.72, 1151.97, 167.935, 0, 0, 0, -1, -794.957, 490.111, 1376.2, 179.811, 1, 5115, 0, -1, 1, 1, 0, 0, 0, 1327.28, 1397.33, 10.7512, 93.0638, 0, 0, 0, 0, 0, 0, 0, 1); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES + (116, 4, 'Unnamed Business', 8, 30000, 0, 0, 1487.01, -1881.28, 13.55, 190.48, 0, 0, 0, -1, -25.6959, -187.781, 1003.55, 354.083, 17, 5116, 0, -1, 0, 0, 0, 0, 0, 1231.73, -1380.5, 13.3179, 182.887, 0, 0, 0, 0, 0, 0, 0, 1); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES + (117, 4, 'Unnamed Business', 10, 30000, 0, 0, 1736.52, 1445.86, 1145.78, 90.2687, 0, 0, 0, -1, 0, 0, 0, 0, 0, 5117, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES + (119, 4, 'Unnamed Business', 2, 30000, 0, 0, 712.17, -498.92, 16.34, 267.048, 0, 0, 0, -1, 203.747, -50.5602, 1001.8, 348.861, 1, 5119, 0, -1, 0, 0, 714.368, -505.379, 16.3359, 1229.06, -1378.47, 13.339, 256.786, 0, 0, 0, 0, 0, 0, 0, 1); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES + (120, 4, 'Unnamed Business', 8, 30000, 0, 0, 1721.42, 1424.01, 10.64, 320.626, 0, 0, 0, -1, 6.13156, -31.3422, 1003.55, 178.952, 10, 5120, 0, -1, 0, 0, 1014.04, -1563.83, 13.616, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES + (122, 4, 'Unnamed Business', 1, 30000, 0, 0, 1765.16, 1436.69, 1145.69, 93.1964, 0, 0, 0, -1, 0, 0, 0, 0, 0, 5122, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES + (123, 4, 'Unnamed Business', 4, 30000, 0, 0, 1836.51, -1443.03, 13.6, 100.976, 0, 0, 0, -1, 284.991, -86.1033, 1001.52, 350.153, 4, 5123, 0, -1, 0, 1, 1837.35, -1438.43, 13.563, 0, 0, 0, 0, 1234521, 0, 0, 0, 0, 0, 0, 1); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES + (124, 4, 'Unnamed Business', 8, 30000, 0, 0, 1648.6, -1562.17, 13.54, 98.856, 0, 0, 0, -1, -26.0882, -188.231, 1003.55, 0.687847, 17, 5124, 0, -1, 0, 0, 1028.47, -1585.7, 13.5469, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES + (125, 4, 'Unnamed Business', 8, 30000, 0, 0, 1565.93, -1171.4, 24.1, 194.504, 0, 0, 0, -1, -30.7929, -92.0083, 1003.55, 180.866, 18, 5125, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES + (128, 4, 'Unnamed Business', 0, 30000, 0, 0, 1733.91, 1448.76, 1145.78, 273.547, 0, 0, 0, -1, 0, 0, 0, 0, 0, 5128, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES + (129, 4, 'Unnamed Business', 0, 30000, 0, 0, 1735.4, 1448.85, 1145.78, 273.547, 0, 0, 0, -1, 0, 0, 0, 0, 0, 5129, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES + (145, 4, 'Unnamed Business', 4, 30000, 0, 0, 1655.19, 1451.97, 1152.5, 277.616, 0, 0, 0, -1, 0, 0, 0, 0, 0, 5145, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES + (157, 4, 'Unnamed Business', 5, 30000, 0, 0, 548.16, -1293.86, 17.25, 168.94, 0, 0, 0, -1, 1226.48, -813.56, 1084.01, 353.256, 5, 5157, 0, -1, 0, 0, 1811.5, -1659.69, 13.5465, 567.705, -1291.27, 17.2422, 70.9165, 0, 0, 0, 0, 0, 0, 0, 1); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES + (192, 4, 'Unnamed Business', 3, 30000, 0, 0, -222.75, -1747.06, 1.15, 331.273, 0, 0, 0, -1, 363.584, -75.38, 1001.51, 313.29, 10, 5192, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES + (200, 4, 'Unnamed Business', 8, 30000, 0, 0, 1748.23, -1460.31, 13.53, 182.135, 0, 0, 0, -1, -27.4627, -57.8572, 1003.55, 0.812528, 6, 5200, 0, -1, 0, 0, 1014.1, -1563.82, 13.6156, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES + (201, 2, 'Easy Credit Autos', 0, 30000, 1, 1, -1013.1, -861.897, 13.0852, 0, 0, 0, 0, -1, 0, 0, 0, 0, 0, 5201, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES + (203, 1, 'Saint Marks Bistro', 0, 30000, 0, 0, 1318.98, -452.77, 54.53, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 5203, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES + (204, 1, 'Easy Credit Autos', 0, 30000, 0, 0, 1218.65, -123.14, 15.06, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 5204, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES + (205, 1, 'Strip Club', 0, 30000, 0, 0, 923.23, -470.66, 14.96, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 5205, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES + (206, 1, 'Strip Club', 0, 30000, 0, 0, 900.49, -416.83, 14.97, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 5206, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES + (207, 1, 'Sex Shop', 0, 30000, 0, 0, 927.04, -379.19, 15.25, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 5207, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES + (208, 1, 'Bar', 0, 30000, 0, 0, 899.09, -285.72, 5.15, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 5208, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES + (209, 1, 'Bar', 0, 30000, 0, 0, 845.42, -287.97, 4.93, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 5209, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES + (210, 1, 'Diner', 0, 30000, 0, 0, 1036.65, -653.01, 15.06, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 5210, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES + (211, 1, 'Bank', 0, 30000, 0, 0, 1036.1, -700.06, 14.97, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 5211, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES + (212, 1, 'Chinese Restaurant', 0, 30000, 0, 0, 909.53, -670.4, 14.97, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 5212, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES + (213, 1, 'Laundry', 0, 30000, 0, 0, 845.28, -663.75, 14.97, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 5213, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES + (214, 1, 'Chinese Restaurant', 0, 30000, 0, 0, 913.89, -805.83, 15.07, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 5214, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES + (215, 1, 'Bank', 0, 30000, 0, 0, 1065.18, -281.02, 8.69, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 5215, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES + (216, 1, 'Clothing Store', 0, 30000, 0, 0, 1117.18, -687.4, 14.97, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 5216, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 750, 0, 0, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES + (217, 2, 'Large Hotel', 0, 30000, 0, 0, -772.41, 548.739, 11.1007, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 5217, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES + (218, 2, 'Drugstore', 0, 30000, 0, 0, -832.099, 741.923, 11.2885, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 5218, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES + (219, 2, 'Pizza Stack', 0, 30000, 0, 0, -903.159, 798.366, 11.4487, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 5219, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES + (220, 2, 'Taco Shop', 0, 30000, 0, 0, -753.173, 1343.16, 11.767, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 5220, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES + (221, 2, 'Cafe', 0, 30000, 0, 0, -774.478, 1304.82, 11.6359, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 5221, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES + (222, 2, 'Drugstore', 0, 30000, 0, 0, 50.2897, 1007.29, 10.9547, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 5222, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES + (228, 4, 'Jefferson Dealership', 0, 30000, 0, 0, 2131.8, -1151.02, 24.09, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 5228, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES + (230, 4, 'Los Santos Police Department', 0, 0, 0, 0, 1554.77, -1675.65, 16.2, 0, 0, 0, 0, -1, 247.113, 62.929, 1003.64, 0, 6, 5230, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES + (231, 2, 'Unnamed Business', 0, 0, 0, 0, -833.546, -908.768, 12.1285, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 5231, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES + (232, 1, 'Italian Restaurant', 0, 0, 0, 0, 1135.42, -457.31, 20.18, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 5232, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES + (233, 1, 'Clothes Store', 0, 0, 0, 0, 1065.42, -345.06, 14.97, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 5233, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES + (234, 1, 'Gun Store', 0, 0, 0, 0, 1065.1, -395.1, 14.97, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 5234, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES + (235, 1, 'Porn Shop', 0, 0, 0, 0, 989.05, -441.97, 15.12, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 5235, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES + (236, 1, 'Mechanic Shop', 0, 0, 0, 0, 1190.71, -869.33, 15.17, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 5236, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES + (237, 1, 'Offices', 0, 0, 0, 0, 1212.4, -904.73, 15.11, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 5237, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES + (238, 1, 'Offices', 0, 0, 0, 0, 1244.71, -862.86, 14.97, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 5238, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES + (239, 1, 'Warehouse', 0, 0, 0, 0, 1276.44, -928.52, 14.97, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 5239, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES + (240, 1, 'Warehouse', 0, 0, 0, 0, 1261.95, -943.02, 14.97, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 5240, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES + (241, 1, 'Warehouse', 0, 0, 0, 0, 1253.32, -950.5, 14.98, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 5241, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES + (242, 1, 'Warehouse', 0, 0, 0, 0, 1231.16, -964.6, 15.07, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 5242, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES + (243, 1, 'Warehouse', 0, 0, 0, 0, 1183.85, -961.46, 15.11, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 5243, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES + (244, 1, 'Warehouse', 0, 0, 0, 0, 1188.25, -957.06, 15.11, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 5244, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES + (245, 1, 'Warehouse', 0, 0, 0, 0, 1171.64, -963.65, 14.97, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 5245, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES + (246, 1, 'Warehouse', 0, 0, 0, 0, 1162.62, -952.35, 15.06, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 5246, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES + (247, 1, 'Warehouse', 0, 0, 0, 0, 1219.81, -973.64, 14.98, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 5247, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES + (248, 1, 'Docks Warehouse', 0, 0, 0, 0, 1435.66, -805.82, 11.83, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 5248, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES + (249, 1, 'Docks Warehouse', 0, 0, 0, 0, 1445.71, -806.21, 11.83, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 5249, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES + (250, 1, 'Docks Warehouse', 0, 0, 0, 0, 1455.57, -805.72, 11.83, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 5250, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES + (251, 1, 'Docks Warehouse', 0, 0, 0, 0, 1465.74, -805.72, 11.83, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 5251, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES + (252, 1, 'Docks Warehouse', 0, 0, 0, 0, 1475.63, -805.72, 11.83, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 5252, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES + (253, 1, 'Docks Warehouse', 0, 0, 0, 0, 1485.73, -805.72, 11.83, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 5253, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES + (254, 1, 'Docks Warehouse', 0, 0, 0, 0, 1495.69, -805.72, 11.83, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 5254, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES + (255, 1, 'Docks Warehouse', 0, 0, 0, 0, 1467.39, -688.64, 11.83, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 5255, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES + (256, 1, 'Docks Warehouse', 0, 0, 0, 0, 1495.89, -684.9, 12.14, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 5256, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES + (257, 1, 'Docks Warehouse', 0, 0, 0, 0, 1488.55, -650.17, 11.83, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 5257, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES + (258, 1, 'Docks Warehouse', 0, 0, 0, 0, 1465.85, -650.17, 11.83, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 5258, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES + (259, 1, 'Docks Warehouse', 0, 0, 0, 0, 1510.97, -650.17, 11.83, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 5259, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES + (260, 1, 'Docks Warehouse', 0, 0, 0, 0, 1533.95, -650.17, 11.83, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 5260, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES + (261, 1, 'Docks Warehouse', 0, 0, 0, 0, 1556.7, -650.17, 11.83, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 5261, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES + (262, 1, 'Docks Warehouse', 0, 0, 0, 0, 1579.22, -650.17, 11.83, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 5262, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES + (263, 1, 'Warehouse', 0, 0, 0, 0, 1305.18, -810.01, 15.03, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 5263, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES + (264, 1, 'Supermarket', 0, 0, 0, 0, 1272.41, -608.83, 12.46, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 5264, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES + (265, 1, 'Sweeney General Hospital', 0, 0, 0, 0, 1149.18, -585.3, 15.02, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 5265, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES + (266, 1, 'Portland Police Station', 0, 0, 0, 0, 1148.46, -675, 14.98, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 5266, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES + (267, 1, 'Clothes Store', 0, 0, 0, 0, 1104.57, -638.42, 14.97, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 5267, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES + (268, 1, 'City Hall', 0, 0, 0, 0, 98.21, -962.97, 29.19, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 5268, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES + (269, 1, 'Courthouse', 0, 0, 0, 0, 97.4, -1429.97, 31.67, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 5269, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES + (270, 1, 'Francis International Airport', 0, 0, 0, 0, -769.82, -600.32, 11.33, 0, 0, 0, 0, -1, -770.862, -600.281, 11.3161, 0, 0, 5270, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES + (271, 1, 'Shoreside Vale Police Station', 0, 0, 0, 0, -1255.33, -23.06, 59.04, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 5271, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES + (272, 1, 'Hope Medical College', 0, 0, 0, 0, -1246.78, -150.69, 59.07, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 5272, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES + (273, 1, 'Shoreside Vale Fire Station', 0, 0, 0, 0, -1214.27, -13.79, 53.27, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 5273, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES + (274, 1, 'Warehouse', 0, 0, 0, 0, -1235.35, 125.25, 68.57, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 5274, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES + (275, 1, 'Warehouse', 0, 0, 0, 0, -1137.91, 25.51, 58.82, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 5275, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES + (276, 1, 'Warehouse', 0, 0, 0, 0, -1114.45, 53.09, 58.67, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 5276, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES + (277, 1, 'Warehouse', 0, 0, 0, 0, -1090.84, 59.41, 58.59, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 5277, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES + (278, 1, 'Warehouse', 0, 0, 0, 0, -1020.35, -78.01, 38.89, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 5278, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES + (279, 1, 'Warehouse', 0, 0, 0, 0, -844.12, -160.47, 33.86, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 5279, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES + (280, 1, 'Warehouse', 0, 0, 0, 0, -844.13, -176.19, 33.86, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 5280, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES + (281, 1, 'Warehouse', 0, 0, 0, 0, -844.13, -184.38, 33.86, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 5281, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES + (282, 1, 'Warehouse', 0, 0, 0, 0, -844.13, -192.24, 33.86, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 5282, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES + (283, 1, 'Warehouse', 0, 0, 0, 0, -844.13, -200.03, 33.86, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 5283, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES + (284, 1, 'Warehouse', 0, 0, 0, 0, -844.13, -207.77, 33.86, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 5284, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES + (285, 1, 'Staunton Island Police Station', 0, 0, 0, 0, 340.4, -1118.42, 25.98, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 5285, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES + (286, 1, 'Carson General Hospital', 0, 0, 0, 0, 149.88, 63.39, 16.21, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 5286, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES + (287, 1, 'Liberty City Stadium', 0, 0, 0, 0, -18.77, -219.3, 29.82, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 5287, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES + (288, 1, 'Staunton Island Fire Station', 0, 0, 0, 0, -76.46, -435.7, 16.18, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 5288, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES + (289, 1, 'Church', 0, 0, 0, 0, -75.03, -1078.03, 26.19, 0, 0, 0, 0, -1, -72.5906, -1079.24, 26.205, 0, 0, 5289, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES + (290, 1, 'Clothes Store', 0, 0, 0, 0, 1116.62, -402.53, 19.97, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 5290, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES + (291, 2, 'Little Havana Police Station', 0, 0, 0, 0, -873.236, -684.969, 11.3377, 0, 0, 0, 0, -1, 394.74, -475.02, 12.34, 0, 12, 5291, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES + (292, 2, 'Bar', 0, 0, 0, 0, -900.148, -646.111, 11.2776, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 5292, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES + (293, 2, '24/7', 0, 0, 0, 0, -858.719, -634.62, 11.3756, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 5293, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES + (294, 2, 'Hardware Store', 0, 0, 0, 0, -966.698, -693.397, 11.4109, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 5294, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES + (295, 2, 'Bar', 0, 0, 0, 0, -995.865, -689.222, 11.7743, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 5295, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES + (296, 2, 'Bar', 0, 0, 0, 0, -1114.92, -697.184, 11.7918, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 5296, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES + (297, 2, 'Diner', 0, 0, 0, 0, -1168.71, -616.915, 11.829, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 5297, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES + (298, 2, 'Laundromat', 0, 0, 0, 0, -1195.37, -323.562, 10.9423, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 5298, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES + (299, 2, 'Warehouse', 0, 0, 0, 0, -892.17, 118.996, 9.37293, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 5299, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES + (300, 2, 'Warehouse', 0, 0, 0, 0, -920.025, 118.996, 9.37293, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 5300, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES + (301, 2, 'Warehouse', 0, 0, 0, 0, -906.033, 145.943, 9.37293, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 5301, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES + (302, 2, 'Storage', 0, 0, 0, 0, -874.2, 79.1296, 9.37293, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 5302, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES + (303, 2, 'Storage', 0, 0, 0, 0, -874.199, 90.4153, 9.37293, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 5303, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES + (304, 2, 'Storage', 0, 0, 0, 0, -874.199, 101.824, 9.37293, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 5304, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES + (305, 2, 'Cafe', 0, 0, 0, 0, -913.748, 50.6966, 10.4989, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 5305, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES + (306, 2, 'Big Hotel', 0, 0, 0, 0, -775.587, 133.019, 10.9342, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 5306, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES + (307, 2, 'Big Hotel', 0, 0, 0, 0, -752.059, 256.485, 16.3216, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 5307, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES + (308, 2, 'Big Hotel', 0, 0, 0, 0, -729.955, 365.967, 11.1007, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 5308, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES + (309, 2, 'Courthouse', 0, 0, 0, 0, -698.668, 703.529, 12.1166, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 5309, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES + (310, 2, 'Downtown Fire Station', 0, 0, 0, 0, -698.709, 806.243, 11.0846, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 5310, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES + (311, 2, 'Music Store', 0, 0, 0, 0, -872.933, 746.806, 11.0846, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 5311, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES + (312, 2, 'Clothing Store', 0, 0, 0, 0, -918.638, 885.245, 11.0593, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 5312, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES + (313, 2, 'Large Hotel', 0, 0, 0, 0, -826.862, 1038.41, 15.7483, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 5313, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES + (314, 2, 'Concert Hall', 0, 0, 0, 0, -893.967, 1054.59, 15.6737, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 5314, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES + (315, 2, 'Offices', 0, 0, 0, 0, -875.074, 1159.55, 11.1971, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 5315, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES + (316, 2, 'Derby Arena', 0, 0, 0, 0, -1108.53, 1331.05, 20.1156, 0, 0, 0, 0, -1, -1443.36, 932.982, 262.395, 0, 15, 5316, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES + (317, 2, 'Bowling Alley', 0, 0, 0, 0, -669.299, 1382.3, 12.0918, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 5317, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES + (318, 2, 'The Greasy Chopper Bar', 0, 0, 0, 0, -597.353, 651.604, 11.3788, 0, 0, 0, 0, -1, -597.312, 650.405, 11.6765, 0, 11, 5318, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES + (319, 2, 'North Point Mall', 0, 0, 0, 0, 379.66, 998.47, 18.76, 0, 0, 0, 0, -1, 379.62, 1007, 19.22, 0, 4, 5319, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES + (320, 2, 'North Point Mall', 0, 0, 0, 0, 448.95, 999.73, 18.79, 0, 0, 0, 0, -1, 448.24, 1007.2, 19.18, 0, 4, 5320, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES + (321, 2, 'North Point Mall', 0, 0, 0, 0, 352.85, 1124.52, 18.64, 0, 0, 0, 0, -1, 361.72, 1124.93, 18.93, 0, 15, 5321, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES + (322, 2, 'North Point Mall', 0, 0, 0, 0, 379.68, 1253.29, 18.85, 0, 0, 0, 0, -1, 379.79, 1246.83, 19.16, 0, 15, 5322, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES + (323, 2, 'North Point Mall', 0, 0, 0, 0, 448.17, 1253.27, 18.7, 0, 0, 0, 0, -1, 448.6, 1246.43, 19.06, 0, 15, 5323, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES + (324, 2, 'North Point Mall', 0, 0, 0, 0, 475.04, 1124.36, 17.95, 0, 0, 0, 0, -1, 468.24, 1123.66, 18.34, 0, 15, 5324, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES + (325, 2, 'Malibu Club', 0, 0, 0, 0, 489.83, -76.49, 11.48, 0, 0, 0, 0, -1, 489.83, -76.49, 11.48, 0, 17, 5325, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES + (326, 2, 'Washington Beach Police Station', 0, 0, 0, 0, 396.38, -472.96, 12.34, 0, 0, 0, 0, -1, 394.74, -475.02, 12.34, 0, 12, 5326, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES + (327, 2, 'Ocean View Hotel', 0, 0, 0, 0, 228.53, -1277.12, 12.07, 0, 0, 0, 0, -1, 228.53, -1277.12, 12.07, 0, 1, 5327, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES + (328, 2, 'Ammunation Range', 0, 0, 0, 0, -667.79, 1217.51, 11.1, 0, 0, 0, 0, -1, -667.79, 1217.51, 11.1, 0, 10, 5328, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES + (329, 2, 'Bank', 0, 0, 0, 0, -894.52, -341.16, 13.45, 0, 0, 0, 0, -1, -901.16, -341.15, 13.38, 0, 3, 5329, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES + (330, 2, 'Downtown Roof Building', 0, 0, 0, 0, -830.77, 1312.15, 11.54, 0, 0, 0, 0, -1, -811.81, 1354.21, 66.46, 0, 0, 5330, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES + (331, 2, 'Roof', 0, 0, 0, 0, 386.46, -473.03, 21.57, 0, 0, 0, 0, -1, 379.35, -493.53, 12.33, 0, 12, 5331, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES + (332, 2, 'Strip Club', 0, 0, 0, 0, 97.53, -1472.06, 10.43, 0, 0, 0, 0, -1, 95.68, -1469, 10.56, 0, 5, 5332, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES + (333, 2, 'Law Office', 0, 0, 0, 0, 120.82, -827.98, 10.62, 0, 0, 0, 0, -1, 137.12, -1370.16, 13.18, 0, 6, 5333, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES + (335, 2, 'Downtown Police Station', 0, 0, 0, 0, -657.186, 762.549, 11.6, 0, 0, 0, 0, -1, 0, 0, 0, 0, 12, -1, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES + (336, 1, 'Secret Asian Man\'s Threads', 0, 0, 0, 0, 958.31, -673.8, 14.97, 0, 0, 0, -1, -1, 0, 0, 0, 0, -1, 5000, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES + (337, 1, 'Simply Fo Yu\'s Asian Threads', 0, 0, 0, 0, 958.31, -673.8, 14.97, 0, 0, 0, -1, -1, 0, 0, 0, 0, -1, 5000, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES + (338, 1, 'Fu King Asian\'s Threads', 0, 0, 0, 0, 958.34, -673.8, 14.97, 0, 0, 0, -1, -1, 0, 0, 0, 0, -1, 5000, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES + (339, 4, 'Los Santos Police Department Garage', 0, 0, 0, 0, 1568.57, -1689.97, 6.22, 0, 0, 0, -1, -1, 246.48, 88.01, 1003.64, 0, 6, 5230, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES + (340, 4, 'Bike Dealership', 0, 0, 0, 0, 987.629, -1349.28, 13.5841, 0, 0, 0, -1, -1, 0, 0, 0, 0, -1, 5000, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +/*!40000 ALTER TABLE `biz_main` ENABLE KEYS */; + +-- Dumping structure for table db24053.bug_main +CREATE TABLE IF NOT EXISTS `bug_main` ( + `bug_id` int(11) NOT NULL AUTO_INCREMENT, + `bug_server` int(11) NOT NULL DEFAULT '0', + `bug_who_added` int(11) NOT NULL DEFAULT '0', + `bug_when_added` int(32) NOT NULL DEFAULT '0', + `bug_script_ver` varchar(16) NOT NULL DEFAULT '0.1', + `bug_pos_x` float NOT NULL DEFAULT '0', + `bug_pos_y` float NOT NULL DEFAULT '0', + `bug_pos_z` float NOT NULL DEFAULT '0', + `bug_rot_z` float NOT NULL DEFAULT '0', + `bug_message` varchar(128) NOT NULL DEFAULT '(No Message)', + `bug_svr_start` int(32) NOT NULL DEFAULT '0', + `bug_session` int(11) NOT NULL DEFAULT '0', + `bug_state` tinyint(1) NOT NULL DEFAULT '0', + PRIMARY KEY (`bug_id`), + KEY `bug_server` (`bug_server`), + KEY `fk_bug_who_added` (`bug_who_added`), + CONSTRAINT `fk_bug_server` FOREIGN KEY (`bug_server`) REFERENCES `svr_main` (`svr_id`) ON DELETE CASCADE ON UPDATE CASCADE, + CONSTRAINT `fk_bug_who_added` FOREIGN KEY (`bug_who_added`) REFERENCES `acct_main` (`acct_id`) ON DELETE CASCADE ON UPDATE CASCADE +) ENGINE=InnoDB AUTO_INCREMENT=87 DEFAULT CHARSET=latin1 COMMENT='User Submitted Bugs'; + +-- Dumping data for table db24053.bug_main: ~16 rows (approximately) +/*!40000 ALTER TABLE `bug_main` DISABLE KEYS */; +INSERT INTO `bug_main` (`bug_id`, `bug_server`, `bug_who_added`, `bug_when_added`, `bug_script_ver`, `bug_pos_x`, `bug_pos_y`, `bug_pos_z`, `bug_rot_z`, `bug_message`, `bug_svr_start`, `bug_session`, `bug_state`) VALUES + (4, 4, 2, 1609121880, '1.0', 0, 0, 0, 0, '"normal house at ls" marker overlaps with "Unnamed Business" marker in Verdant Bluffs.', 2147483647, 0, 0); +INSERT INTO `bug_main` (`bug_id`, `bug_server`, `bug_who_added`, `bug_when_added`, `bug_script_ver`, `bug_pos_x`, `bug_pos_y`, `bug_pos_z`, `bug_rot_z`, `bug_message`, `bug_svr_start`, `bug_session`, `bug_state`) VALUES + (25, 1, 1, 1610250358, '1.0', 310.491, -1191.51, 26.1453, 1.10632, 'Fix NaN on login attempts', 1610250260, 0, 0); +INSERT INTO `bug_main` (`bug_id`, `bug_server`, `bug_who_added`, `bug_when_added`, `bug_script_ver`, `bug_pos_x`, `bug_pos_y`, `bug_pos_z`, `bug_rot_z`, `bug_message`, `bug_svr_start`, `bug_session`, `bug_state`) VALUES + (51, 1, 1, 1610251403, '1.0', 1308.86, -1017.92, 14.8858, -0.685351, 'Job banned bitflag preventing players from joining', 1610250260, 0, 0); +INSERT INTO `bug_main` (`bug_id`, `bug_server`, `bug_who_added`, `bug_when_added`, `bug_script_ver`, `bug_pos_x`, `bug_pos_y`, `bug_pos_z`, `bug_rot_z`, `bug_message`, `bug_svr_start`, `bug_session`, `bug_state`) VALUES + (55, 1, 1, 1610352706, '1.0', 1353.1, -833.441, 14.6752, 3.11304, 'Disable item use key in vehicle', 1610322516, 0, 0); +INSERT INTO `bug_main` (`bug_id`, `bug_server`, `bug_who_added`, `bug_when_added`, `bug_script_ver`, `bug_pos_x`, `bug_pos_y`, `bug_pos_z`, `bug_rot_z`, `bug_message`, `bug_svr_start`, `bug_session`, `bug_state`) VALUES + (61, 4, 1, 1610587525, '1.0', 242.757, 62.7046, 1003.64, 2.82568, 'Fix autolastchar', 1610587512, 0, 0); +INSERT INTO `bug_main` (`bug_id`, `bug_server`, `bug_who_added`, `bug_when_added`, `bug_script_ver`, `bug_pos_x`, `bug_pos_y`, `bug_pos_z`, `bug_rot_z`, `bug_message`, `bug_svr_start`, `bug_session`, `bug_state`) VALUES + (72, 1, 1, 1610765394, '1.0', 912.086, -678.934, 14.9727, -2.70905, 'Fix client runcode', 1610763688, 0, 0); +INSERT INTO `bug_main` (`bug_id`, `bug_server`, `bug_who_added`, `bug_when_added`, `bug_script_ver`, `bug_pos_x`, `bug_pos_y`, `bug_pos_z`, `bug_rot_z`, `bug_message`, `bug_svr_start`, `bug_session`, `bug_state`) VALUES + (76, 1, 1, 1610765953, '1.0', 1110.76, -635.598, 14.9727, 1.57098, 'Prevent vehicle burning/exploding. Just disable it', 1610763688, 0, 0); +INSERT INTO `bug_main` (`bug_id`, `bug_server`, `bug_who_added`, `bug_when_added`, `bug_script_ver`, `bug_pos_x`, `bug_pos_y`, `bug_pos_z`, `bug_rot_z`, `bug_message`, `bug_svr_start`, `bug_session`, `bug_state`) VALUES + (78, 1, 1, 1610766019, '1.0', 916.733, -680.575, 14.9727, 1.16083, 'Using /put shows item trying to store is buged', 1610763688, 0, 0); +INSERT INTO `bug_main` (`bug_id`, `bug_server`, `bug_who_added`, `bug_when_added`, `bug_script_ver`, `bug_pos_x`, `bug_pos_y`, `bug_pos_z`, `bug_rot_z`, `bug_message`, `bug_svr_start`, `bug_session`, `bug_state`) VALUES + (79, 1, 1, 1610766071, '1.0', 911.069, -684.414, 14.9727, -0.0528247, 'Fixing spawning in VC/SA', 1610763688, 0, 0); +INSERT INTO `bug_main` (`bug_id`, `bug_server`, `bug_who_added`, `bug_when_added`, `bug_script_ver`, `bug_pos_x`, `bug_pos_y`, `bug_pos_z`, `bug_rot_z`, `bug_message`, `bug_svr_start`, `bug_session`, `bug_state`) VALUES + (80, 1, 1, 1610766109, '1.0', 908.798, -684.276, 14.9727, -0.0528247, 'Tazer has no effect. Damage seems to be prevented but no tazer func called', 1610763688, 0, 0); +INSERT INTO `bug_main` (`bug_id`, `bug_server`, `bug_who_added`, `bug_when_added`, `bug_script_ver`, `bug_pos_x`, `bug_pos_y`, `bug_pos_z`, `bug_rot_z`, `bug_message`, `bug_svr_start`, `bug_session`, `bug_state`) VALUES + (81, 1, 1, 1610766672, '1.0', 1142.9, -676.239, 14.9727, 0.646766, 'Player doesnt get kicked on 0 attempts left', 1610763688, 0, 0); +INSERT INTO `bug_main` (`bug_id`, `bug_server`, `bug_who_added`, `bug_when_added`, `bug_script_ver`, `bug_pos_x`, `bug_pos_y`, `bug_pos_z`, `bug_rot_z`, `bug_message`, `bug_svr_start`, `bug_session`, `bug_state`) VALUES + (82, 1, 1, 1610766678, '1.0', 1142.44, -679.479, 14.9727, -1.57861, 'Player doesnt get kicked on 0 login attempts left', 1610763688, 0, 0); +INSERT INTO `bug_main` (`bug_id`, `bug_server`, `bug_who_added`, `bug_when_added`, `bug_script_ver`, `bug_pos_x`, `bug_pos_y`, `bug_pos_z`, `bug_rot_z`, `bug_message`, `bug_svr_start`, `bug_session`, `bug_state`) VALUES + (83, 4, 1, 1613342160, '1.0', 2136.13, -1145.45, 24.5973, 0.785896, 'Fix job text showing already have job after quitjob', 1613341557, 0, 0); +INSERT INTO `bug_main` (`bug_id`, `bug_server`, `bug_who_added`, `bug_when_added`, `bug_script_ver`, `bug_pos_x`, `bug_pos_y`, `bug_pos_z`, `bug_rot_z`, `bug_message`, `bug_svr_start`, `bug_session`, `bug_state`) VALUES + (84, 4, 1, 1613342390, '1.0', 1542.94, -1676.64, 13.5555, 1.77156, 'Vehicle enter not being detected in SA', 1613342173, 0, 0); +INSERT INTO `bug_main` (`bug_id`, `bug_server`, `bug_who_added`, `bug_when_added`, `bug_script_ver`, `bug_pos_x`, `bug_pos_y`, `bug_pos_z`, `bug_rot_z`, `bug_message`, `bug_svr_start`, `bug_session`, `bug_state`) VALUES + (85, 4, 1, 1613342410, '1.0', 1542.94, -1676.64, 13.5555, 1.77156, 'Fix job text showing already have job after using quitjob', 1613342173, 0, 0); +INSERT INTO `bug_main` (`bug_id`, `bug_server`, `bug_who_added`, `bug_when_added`, `bug_script_ver`, `bug_pos_x`, `bug_pos_y`, `bug_pos_z`, `bug_rot_z`, `bug_message`, `bug_svr_start`, `bug_session`, `bug_state`) VALUES + (86, 4, 1, 1613342571, '1.0', 1004.83, -1303.6, 13.3828, 3.02172, 'Pickups dont disappear on biz delete', 1613342173, 0, 0); +/*!40000 ALTER TABLE `bug_main` ENABLE KEYS */; + +-- Dumping structure for table db24053.clan_main +CREATE TABLE IF NOT EXISTS `clan_main` ( + `clan_id` int(11) NOT NULL AUTO_INCREMENT, + `clan_server` int(11) NOT NULL DEFAULT '0', + `clan_name` varchar(64) NOT NULL DEFAULT '', + `clan_tag` varchar(16) NOT NULL DEFAULT '', + `clan_owner` int(11) NOT NULL DEFAULT '0', + `clan_created` int(32) NOT NULL DEFAULT '0', + `clan_deleted` int(11) NOT NULL DEFAULT '0', + PRIMARY KEY (`clan_id`), + KEY `clan_server` (`clan_server`), + KEY `clan_owner` (`clan_owner`), + CONSTRAINT `fk_clan_owner` FOREIGN KEY (`clan_owner`) REFERENCES `sacct_main` (`sacct_id`) ON DELETE CASCADE ON UPDATE CASCADE, + CONSTRAINT `fk_clan_server` FOREIGN KEY (`clan_server`) REFERENCES `svr_main` (`svr_id`) ON DELETE CASCADE ON UPDATE CASCADE +) ENGINE=InnoDB DEFAULT CHARSET=latin1 COMMENT='Clans'; + +-- Dumping data for table db24053.clan_main: ~0 rows (approximately) +/*!40000 ALTER TABLE `clan_main` DISABLE KEYS */; +/*!40000 ALTER TABLE `clan_main` ENABLE KEYS */; + +-- Dumping structure for table db24053.clan_members +CREATE TABLE IF NOT EXISTS `clan_members` ( + `clan_member_id` int(11) NOT NULL DEFAULT '0', + `clan_member_server` int(11) NOT NULL DEFAULT '0', + `clan_member_clan` int(11) NOT NULL DEFAULT '0', + `clan_member_acct` int(11) NOT NULL DEFAULT '0', + `clan_member_custom_title` varchar(64) NOT NULL DEFAULT '', + `clan_member_custom_tag` varchar(16) NOT NULL DEFAULT '', + `clan_member_flags` int(32) NOT NULL DEFAULT '0', + `clan_member_rank` int(11) NOT NULL DEFAULT '0', + PRIMARY KEY (`clan_member_id`), + KEY `clan_member_server` (`clan_member_server`), + KEY `clan_member_clan` (`clan_member_clan`), + KEY `clan_member_acct` (`clan_member_acct`), + CONSTRAINT `fk_clan_member_server` FOREIGN KEY (`clan_member_server`) REFERENCES `svr_main` (`svr_id`) ON DELETE CASCADE ON UPDATE CASCADE +) ENGINE=InnoDB DEFAULT CHARSET=latin1 COMMENT='Clans - Members'; + +-- Dumping data for table db24053.clan_members: ~0 rows (approximately) +/*!40000 ALTER TABLE `clan_members` DISABLE KEYS */; +/*!40000 ALTER TABLE `clan_members` ENABLE KEYS */; + +-- Dumping structure for table db24053.clan_ranks +CREATE TABLE IF NOT EXISTS `clan_ranks` ( + `clan_rank_id` int(11) NOT NULL AUTO_INCREMENT, + `clan_rank_clan` int(11) NOT NULL DEFAULT '0', + `clan_rank_name` varchar(64) NOT NULL DEFAULT '', + `clan_rank_custom_tag` varchar(16) NOT NULL DEFAULT '', + `clan_rank_after_rank_id` int(11) NOT NULL DEFAULT '0', + `clan_rank_flags` int(32) NOT NULL DEFAULT '0', + PRIMARY KEY (`clan_rank_id`), + KEY `clan_rank_clan` (`clan_rank_clan`) +) ENGINE=InnoDB DEFAULT CHARSET=latin1 COMMENT='Clans - Ranks'; + +-- Dumping data for table db24053.clan_ranks: ~0 rows (approximately) +/*!40000 ALTER TABLE `clan_ranks` DISABLE KEYS */; +/*!40000 ALTER TABLE `clan_ranks` ENABLE KEYS */; + +-- Dumping structure for table db24053.conn_main +CREATE TABLE IF NOT EXISTS `conn_main` ( + `conn_id` int(11) NOT NULL AUTO_INCREMENT, + `conn_server` int(11) NOT NULL DEFAULT '0', + `conn_auth` int(11) NOT NULL DEFAULT '0', + `conn_name` varchar(256) NOT NULL DEFAULT '', + `conn_ip` int(11) NOT NULL DEFAULT '0', + `conn_when_connect` int(11) NOT NULL DEFAULT '0', + `conn_when_disconnect` int(11) NOT NULL DEFAULT '0', + `conn_client_version` varchar(50) NOT NULL DEFAULT '0', + `conn_script_version` varchar(50) NOT NULL DEFAULT '0', + `conn_game_version` varchar(50) NOT NULL DEFAULT '0', + `conn_status` int(11) NOT NULL DEFAULT '0', + `conn_how_disconnect` int(11) NOT NULL DEFAULT '0', + PRIMARY KEY (`conn_id`), + KEY `conn_server` (`conn_server`), + CONSTRAINT `fk_conn_server` FOREIGN KEY (`conn_server`) REFERENCES `svr_main` (`svr_id`) ON DELETE CASCADE ON UPDATE CASCADE +) ENGINE=InnoDB AUTO_INCREMENT=204 DEFAULT CHARSET=utf8 COMMENT='Connections (Sessions)'; + +-- Dumping data for table db24053.conn_main: ~203 rows (approximately) +/*!40000 ALTER TABLE `conn_main` DISABLE KEYS */; +INSERT INTO `conn_main` (`conn_id`, `conn_server`, `conn_auth`, `conn_name`, `conn_ip`, `conn_when_connect`, `conn_when_disconnect`, `conn_client_version`, `conn_script_version`, `conn_game_version`, `conn_status`, `conn_how_disconnect`) VALUES + (1, 1, 0, '', 0, 1610503778, 0, '0.0.0', '1.0', '1', 0, 0); +INSERT INTO `conn_main` (`conn_id`, `conn_server`, `conn_auth`, `conn_name`, `conn_ip`, `conn_when_connect`, `conn_when_disconnect`, `conn_client_version`, `conn_script_version`, `conn_game_version`, `conn_status`, `conn_how_disconnect`) VALUES + (2, 1, 0, '', 0, 1610503857, 0, '0.0.0', '1.0', '1', 0, 0); +INSERT INTO `conn_main` (`conn_id`, `conn_server`, `conn_auth`, `conn_name`, `conn_ip`, `conn_when_connect`, `conn_when_disconnect`, `conn_client_version`, `conn_script_version`, `conn_game_version`, `conn_status`, `conn_how_disconnect`) VALUES + (3, 1, 0, '', 0, 1610504425, 0, '0.0.0', '1.0', '1', 0, 0); +INSERT INTO `conn_main` (`conn_id`, `conn_server`, `conn_auth`, `conn_name`, `conn_ip`, `conn_when_connect`, `conn_when_disconnect`, `conn_client_version`, `conn_script_version`, `conn_game_version`, `conn_status`, `conn_how_disconnect`) VALUES + (4, 1, 0, '', 0, 1610504480, 0, '0.0.0', '1.0', '1', 0, 0); +INSERT INTO `conn_main` (`conn_id`, `conn_server`, `conn_auth`, `conn_name`, `conn_ip`, `conn_when_connect`, `conn_when_disconnect`, `conn_client_version`, `conn_script_version`, `conn_game_version`, `conn_status`, `conn_how_disconnect`) VALUES + (5, 1, 0, '', 0, 1610504534, 0, '0.0.0', '1.0', '1', 0, 0); +INSERT INTO `conn_main` (`conn_id`, `conn_server`, `conn_auth`, `conn_name`, `conn_ip`, `conn_when_connect`, `conn_when_disconnect`, `conn_client_version`, `conn_script_version`, `conn_game_version`, `conn_status`, `conn_how_disconnect`) VALUES + (6, 1, 0, '', 0, 1610504688, 0, '0.0.0', '1.0', '1', 0, 0); +INSERT INTO `conn_main` (`conn_id`, `conn_server`, `conn_auth`, `conn_name`, `conn_ip`, `conn_when_connect`, `conn_when_disconnect`, `conn_client_version`, `conn_script_version`, `conn_game_version`, `conn_status`, `conn_how_disconnect`) VALUES + (7, 1, 0, '', 0, 1610508551, 0, '0.0.0', '1.0', '1', 0, 0); +INSERT INTO `conn_main` (`conn_id`, `conn_server`, `conn_auth`, `conn_name`, `conn_ip`, `conn_when_connect`, `conn_when_disconnect`, `conn_client_version`, `conn_script_version`, `conn_game_version`, `conn_status`, `conn_how_disconnect`) VALUES + (8, 1, 0, '', 0, 1610508624, 0, '0.0.0', '1.0', '1', 0, 0); +INSERT INTO `conn_main` (`conn_id`, `conn_server`, `conn_auth`, `conn_name`, `conn_ip`, `conn_when_connect`, `conn_when_disconnect`, `conn_client_version`, `conn_script_version`, `conn_game_version`, `conn_status`, `conn_how_disconnect`) VALUES + (9, 1, 0, '', 0, 1610508861, 0, '0.0.0', '1.0', '1', 0, 0); +INSERT INTO `conn_main` (`conn_id`, `conn_server`, `conn_auth`, `conn_name`, `conn_ip`, `conn_when_connect`, `conn_when_disconnect`, `conn_client_version`, `conn_script_version`, `conn_game_version`, `conn_status`, `conn_how_disconnect`) VALUES + (10, 1, 0, '', 0, 1610508901, 0, '0.0.0', '1.0', '1', 0, 0); +INSERT INTO `conn_main` (`conn_id`, `conn_server`, `conn_auth`, `conn_name`, `conn_ip`, `conn_when_connect`, `conn_when_disconnect`, `conn_client_version`, `conn_script_version`, `conn_game_version`, `conn_status`, `conn_how_disconnect`) VALUES + (11, 1, 0, '', 0, 1610509221, 0, '0.0.0', '1.0', '1', 0, 0); +INSERT INTO `conn_main` (`conn_id`, `conn_server`, `conn_auth`, `conn_name`, `conn_ip`, `conn_when_connect`, `conn_when_disconnect`, `conn_client_version`, `conn_script_version`, `conn_game_version`, `conn_status`, `conn_how_disconnect`) VALUES + (12, 1, 0, '', 0, 1610509345, 0, '0.0.0', '1.0', '1', 0, 0); +INSERT INTO `conn_main` (`conn_id`, `conn_server`, `conn_auth`, `conn_name`, `conn_ip`, `conn_when_connect`, `conn_when_disconnect`, `conn_client_version`, `conn_script_version`, `conn_game_version`, `conn_status`, `conn_how_disconnect`) VALUES + (13, 1, 0, '', 0, 1610510121, 0, '0.0.0', '1.0', '1', 0, 0); +INSERT INTO `conn_main` (`conn_id`, `conn_server`, `conn_auth`, `conn_name`, `conn_ip`, `conn_when_connect`, `conn_when_disconnect`, `conn_client_version`, `conn_script_version`, `conn_game_version`, `conn_status`, `conn_how_disconnect`) VALUES + (14, 1, 0, '', 0, 1610510274, 0, '0.0.0', '1.0', '1', 0, 0); +INSERT INTO `conn_main` (`conn_id`, `conn_server`, `conn_auth`, `conn_name`, `conn_ip`, `conn_when_connect`, `conn_when_disconnect`, `conn_client_version`, `conn_script_version`, `conn_game_version`, `conn_status`, `conn_how_disconnect`) VALUES + (15, 1, 0, '', 0, 1610510886, 0, '0.0.0', '1.0', '1', 0, 0); +INSERT INTO `conn_main` (`conn_id`, `conn_server`, `conn_auth`, `conn_name`, `conn_ip`, `conn_when_connect`, `conn_when_disconnect`, `conn_client_version`, `conn_script_version`, `conn_game_version`, `conn_status`, `conn_how_disconnect`) VALUES + (16, 1, 0, '', 0, 1610511695, 0, '0.0.0', '1.0', '1', 0, 0); +INSERT INTO `conn_main` (`conn_id`, `conn_server`, `conn_auth`, `conn_name`, `conn_ip`, `conn_when_connect`, `conn_when_disconnect`, `conn_client_version`, `conn_script_version`, `conn_game_version`, `conn_status`, `conn_how_disconnect`) VALUES + (17, 1, 0, '', 0, 1610512568, 0, '0.0.0', '1.0', '1', 0, 0); +INSERT INTO `conn_main` (`conn_id`, `conn_server`, `conn_auth`, `conn_name`, `conn_ip`, `conn_when_connect`, `conn_when_disconnect`, `conn_client_version`, `conn_script_version`, `conn_game_version`, `conn_status`, `conn_how_disconnect`) VALUES + (18, 1, 0, '', 0, 1610512769, 0, '0.0.0', '1.0', '1', 0, 0); +INSERT INTO `conn_main` (`conn_id`, `conn_server`, `conn_auth`, `conn_name`, `conn_ip`, `conn_when_connect`, `conn_when_disconnect`, `conn_client_version`, `conn_script_version`, `conn_game_version`, `conn_status`, `conn_how_disconnect`) VALUES + (19, 1, 0, '', 0, 1610512882, 0, '0.0.0', '1.0', '1', 0, 0); +INSERT INTO `conn_main` (`conn_id`, `conn_server`, `conn_auth`, `conn_name`, `conn_ip`, `conn_when_connect`, `conn_when_disconnect`, `conn_client_version`, `conn_script_version`, `conn_game_version`, `conn_status`, `conn_how_disconnect`) VALUES + (20, 1, 0, '', 0, 1610513047, 0, '0.0.0', '1.0', '1', 0, 0); +INSERT INTO `conn_main` (`conn_id`, `conn_server`, `conn_auth`, `conn_name`, `conn_ip`, `conn_when_connect`, `conn_when_disconnect`, `conn_client_version`, `conn_script_version`, `conn_game_version`, `conn_status`, `conn_how_disconnect`) VALUES + (21, 1, 0, '', 0, 1610513134, 0, '0.0.0', '1.0', '1', 0, 0); +INSERT INTO `conn_main` (`conn_id`, `conn_server`, `conn_auth`, `conn_name`, `conn_ip`, `conn_when_connect`, `conn_when_disconnect`, `conn_client_version`, `conn_script_version`, `conn_game_version`, `conn_status`, `conn_how_disconnect`) VALUES + (22, 1, 0, '', 0, 1610513285, 0, '0.0.0', '1.0', '1', 0, 0); +INSERT INTO `conn_main` (`conn_id`, `conn_server`, `conn_auth`, `conn_name`, `conn_ip`, `conn_when_connect`, `conn_when_disconnect`, `conn_client_version`, `conn_script_version`, `conn_game_version`, `conn_status`, `conn_how_disconnect`) VALUES + (23, 1, 0, '', 0, 1610513330, 0, '0.0.0', '1.0', '1', 0, 0); +INSERT INTO `conn_main` (`conn_id`, `conn_server`, `conn_auth`, `conn_name`, `conn_ip`, `conn_when_connect`, `conn_when_disconnect`, `conn_client_version`, `conn_script_version`, `conn_game_version`, `conn_status`, `conn_how_disconnect`) VALUES + (24, 1, 0, '', 0, 1610513493, 0, '0.0.0', '1.0', '1', 0, 0); +INSERT INTO `conn_main` (`conn_id`, `conn_server`, `conn_auth`, `conn_name`, `conn_ip`, `conn_when_connect`, `conn_when_disconnect`, `conn_client_version`, `conn_script_version`, `conn_game_version`, `conn_status`, `conn_how_disconnect`) VALUES + (25, 1, 0, '', 0, 1610513768, 0, '0.0.0', '1.0', '1', 0, 0); +INSERT INTO `conn_main` (`conn_id`, `conn_server`, `conn_auth`, `conn_name`, `conn_ip`, `conn_when_connect`, `conn_when_disconnect`, `conn_client_version`, `conn_script_version`, `conn_game_version`, `conn_status`, `conn_how_disconnect`) VALUES + (26, 1, 0, '', 0, 1610513939, 0, '0.0.0', '1.0', '1', 0, 0); +INSERT INTO `conn_main` (`conn_id`, `conn_server`, `conn_auth`, `conn_name`, `conn_ip`, `conn_when_connect`, `conn_when_disconnect`, `conn_client_version`, `conn_script_version`, `conn_game_version`, `conn_status`, `conn_how_disconnect`) VALUES + (27, 1, 0, '', 0, 1610514199, 0, '0.0.0', '1.0', '1', 0, 0); +INSERT INTO `conn_main` (`conn_id`, `conn_server`, `conn_auth`, `conn_name`, `conn_ip`, `conn_when_connect`, `conn_when_disconnect`, `conn_client_version`, `conn_script_version`, `conn_game_version`, `conn_status`, `conn_how_disconnect`) VALUES + (28, 1, 0, '', 0, 1610515759, 0, '0.0.0', '1.0', '1', 0, 0); +INSERT INTO `conn_main` (`conn_id`, `conn_server`, `conn_auth`, `conn_name`, `conn_ip`, `conn_when_connect`, `conn_when_disconnect`, `conn_client_version`, `conn_script_version`, `conn_game_version`, `conn_status`, `conn_how_disconnect`) VALUES + (29, 1, 0, '', 0, 1610517101, 0, '0.0.0', '1.0', '1', 0, 0); +INSERT INTO `conn_main` (`conn_id`, `conn_server`, `conn_auth`, `conn_name`, `conn_ip`, `conn_when_connect`, `conn_when_disconnect`, `conn_client_version`, `conn_script_version`, `conn_game_version`, `conn_status`, `conn_how_disconnect`) VALUES + (30, 4, 0, '', 0, 1610552373, 0, '0.0.0', '1.0', '4', 0, 0); +INSERT INTO `conn_main` (`conn_id`, `conn_server`, `conn_auth`, `conn_name`, `conn_ip`, `conn_when_connect`, `conn_when_disconnect`, `conn_client_version`, `conn_script_version`, `conn_game_version`, `conn_status`, `conn_how_disconnect`) VALUES + (31, 4, 0, '', 0, 1610557867, 0, '0.0.0', '1.0', '4', 0, 0); +INSERT INTO `conn_main` (`conn_id`, `conn_server`, `conn_auth`, `conn_name`, `conn_ip`, `conn_when_connect`, `conn_when_disconnect`, `conn_client_version`, `conn_script_version`, `conn_game_version`, `conn_status`, `conn_how_disconnect`) VALUES + (32, 4, 0, '', 0, 1610558535, 0, '0.0.0', '1.0', '4', 0, 0); +INSERT INTO `conn_main` (`conn_id`, `conn_server`, `conn_auth`, `conn_name`, `conn_ip`, `conn_when_connect`, `conn_when_disconnect`, `conn_client_version`, `conn_script_version`, `conn_game_version`, `conn_status`, `conn_how_disconnect`) VALUES + (33, 4, 0, '', 0, 1610559558, 0, '0.0.0', '1.0', '4', 0, 0); +INSERT INTO `conn_main` (`conn_id`, `conn_server`, `conn_auth`, `conn_name`, `conn_ip`, `conn_when_connect`, `conn_when_disconnect`, `conn_client_version`, `conn_script_version`, `conn_game_version`, `conn_status`, `conn_how_disconnect`) VALUES + (34, 4, 0, '', 0, 1610559578, 0, '0.0.0', '1.0', '4', 0, 0); +INSERT INTO `conn_main` (`conn_id`, `conn_server`, `conn_auth`, `conn_name`, `conn_ip`, `conn_when_connect`, `conn_when_disconnect`, `conn_client_version`, `conn_script_version`, `conn_game_version`, `conn_status`, `conn_how_disconnect`) VALUES + (35, 4, 0, '', 0, 1610559860, 0, '0.0.0', '1.0', '4', 0, 0); +INSERT INTO `conn_main` (`conn_id`, `conn_server`, `conn_auth`, `conn_name`, `conn_ip`, `conn_when_connect`, `conn_when_disconnect`, `conn_client_version`, `conn_script_version`, `conn_game_version`, `conn_status`, `conn_how_disconnect`) VALUES + (36, 4, 0, '', 0, 1610559921, 0, '0.0.0', '1.0', '4', 0, 0); +INSERT INTO `conn_main` (`conn_id`, `conn_server`, `conn_auth`, `conn_name`, `conn_ip`, `conn_when_connect`, `conn_when_disconnect`, `conn_client_version`, `conn_script_version`, `conn_game_version`, `conn_status`, `conn_how_disconnect`) VALUES + (37, 4, 0, '', 0, 1610560096, 0, '0.0.0', '1.0', '4', 0, 0); +INSERT INTO `conn_main` (`conn_id`, `conn_server`, `conn_auth`, `conn_name`, `conn_ip`, `conn_when_connect`, `conn_when_disconnect`, `conn_client_version`, `conn_script_version`, `conn_game_version`, `conn_status`, `conn_how_disconnect`) VALUES + (38, 4, 0, '', 0, 1610560218, 0, '0.0.0', '1.0', '4', 0, 0); +INSERT INTO `conn_main` (`conn_id`, `conn_server`, `conn_auth`, `conn_name`, `conn_ip`, `conn_when_connect`, `conn_when_disconnect`, `conn_client_version`, `conn_script_version`, `conn_game_version`, `conn_status`, `conn_how_disconnect`) VALUES + (39, 4, 0, '', 0, 1610560352, 0, '0.0.0', '1.0', '4', 0, 0); +INSERT INTO `conn_main` (`conn_id`, `conn_server`, `conn_auth`, `conn_name`, `conn_ip`, `conn_when_connect`, `conn_when_disconnect`, `conn_client_version`, `conn_script_version`, `conn_game_version`, `conn_status`, `conn_how_disconnect`) VALUES + (40, 4, 0, '', 0, 1610560446, 0, '0.0.0', '1.0', '4', 0, 0); +INSERT INTO `conn_main` (`conn_id`, `conn_server`, `conn_auth`, `conn_name`, `conn_ip`, `conn_when_connect`, `conn_when_disconnect`, `conn_client_version`, `conn_script_version`, `conn_game_version`, `conn_status`, `conn_how_disconnect`) VALUES + (41, 4, 0, '', 0, 1610560499, 0, '0.0.0', '1.0', '4', 0, 0); +INSERT INTO `conn_main` (`conn_id`, `conn_server`, `conn_auth`, `conn_name`, `conn_ip`, `conn_when_connect`, `conn_when_disconnect`, `conn_client_version`, `conn_script_version`, `conn_game_version`, `conn_status`, `conn_how_disconnect`) VALUES + (42, 4, 0, '', 0, 1610560716, 0, '0.0.0', '1.0', '4', 0, 0); +INSERT INTO `conn_main` (`conn_id`, `conn_server`, `conn_auth`, `conn_name`, `conn_ip`, `conn_when_connect`, `conn_when_disconnect`, `conn_client_version`, `conn_script_version`, `conn_game_version`, `conn_status`, `conn_how_disconnect`) VALUES + (43, 4, 0, '', 0, 1610560789, 0, '0.0.0', '1.0', '4', 0, 0); +INSERT INTO `conn_main` (`conn_id`, `conn_server`, `conn_auth`, `conn_name`, `conn_ip`, `conn_when_connect`, `conn_when_disconnect`, `conn_client_version`, `conn_script_version`, `conn_game_version`, `conn_status`, `conn_how_disconnect`) VALUES + (44, 4, 0, '', 0, 1610586179, 0, '0.0.0', '1.0', '4', 0, 0); +INSERT INTO `conn_main` (`conn_id`, `conn_server`, `conn_auth`, `conn_name`, `conn_ip`, `conn_when_connect`, `conn_when_disconnect`, `conn_client_version`, `conn_script_version`, `conn_game_version`, `conn_status`, `conn_how_disconnect`) VALUES + (45, 4, 0, '', 0, 1610586449, 0, '0.0.0', '1.0', '4', 0, 0); +INSERT INTO `conn_main` (`conn_id`, `conn_server`, `conn_auth`, `conn_name`, `conn_ip`, `conn_when_connect`, `conn_when_disconnect`, `conn_client_version`, `conn_script_version`, `conn_game_version`, `conn_status`, `conn_how_disconnect`) VALUES + (46, 4, 0, '', 0, 1610586718, 0, '0.0.0', '1.0', '4', 0, 0); +INSERT INTO `conn_main` (`conn_id`, `conn_server`, `conn_auth`, `conn_name`, `conn_ip`, `conn_when_connect`, `conn_when_disconnect`, `conn_client_version`, `conn_script_version`, `conn_game_version`, `conn_status`, `conn_how_disconnect`) VALUES + (47, 4, 0, '', 0, 1610587088, 0, '0.0.0', '1.0', '4', 0, 0); +INSERT INTO `conn_main` (`conn_id`, `conn_server`, `conn_auth`, `conn_name`, `conn_ip`, `conn_when_connect`, `conn_when_disconnect`, `conn_client_version`, `conn_script_version`, `conn_game_version`, `conn_status`, `conn_how_disconnect`) VALUES + (48, 4, 0, '', 0, 1610587206, 0, '0.0.0', '1.0', '4', 0, 0); +INSERT INTO `conn_main` (`conn_id`, `conn_server`, `conn_auth`, `conn_name`, `conn_ip`, `conn_when_connect`, `conn_when_disconnect`, `conn_client_version`, `conn_script_version`, `conn_game_version`, `conn_status`, `conn_how_disconnect`) VALUES + (49, 4, 0, '', 0, 1610587316, 0, '0.0.0', '1.0', '4', 0, 0); +INSERT INTO `conn_main` (`conn_id`, `conn_server`, `conn_auth`, `conn_name`, `conn_ip`, `conn_when_connect`, `conn_when_disconnect`, `conn_client_version`, `conn_script_version`, `conn_game_version`, `conn_status`, `conn_how_disconnect`) VALUES + (50, 4, 0, '', 0, 1610587423, 0, '0.0.0', '1.0', '4', 0, 0); +INSERT INTO `conn_main` (`conn_id`, `conn_server`, `conn_auth`, `conn_name`, `conn_ip`, `conn_when_connect`, `conn_when_disconnect`, `conn_client_version`, `conn_script_version`, `conn_game_version`, `conn_status`, `conn_how_disconnect`) VALUES + (51, 4, 0, '', 0, 1610587518, 0, '0.0.0', '1.0', '4', 0, 0); +INSERT INTO `conn_main` (`conn_id`, `conn_server`, `conn_auth`, `conn_name`, `conn_ip`, `conn_when_connect`, `conn_when_disconnect`, `conn_client_version`, `conn_script_version`, `conn_game_version`, `conn_status`, `conn_how_disconnect`) VALUES + (52, 4, 0, '', 0, 1610587819, 0, '0.0.0', '1.0', '4', 0, 0); +INSERT INTO `conn_main` (`conn_id`, `conn_server`, `conn_auth`, `conn_name`, `conn_ip`, `conn_when_connect`, `conn_when_disconnect`, `conn_client_version`, `conn_script_version`, `conn_game_version`, `conn_status`, `conn_how_disconnect`) VALUES + (53, 4, 0, '', 0, 1610588141, 0, '0.0.0', '1.0', '4', 0, 0); +INSERT INTO `conn_main` (`conn_id`, `conn_server`, `conn_auth`, `conn_name`, `conn_ip`, `conn_when_connect`, `conn_when_disconnect`, `conn_client_version`, `conn_script_version`, `conn_game_version`, `conn_status`, `conn_how_disconnect`) VALUES + (54, 4, 0, '', 0, 1610588705, 0, '0.0.0', '1.0', '4', 0, 0); +INSERT INTO `conn_main` (`conn_id`, `conn_server`, `conn_auth`, `conn_name`, `conn_ip`, `conn_when_connect`, `conn_when_disconnect`, `conn_client_version`, `conn_script_version`, `conn_game_version`, `conn_status`, `conn_how_disconnect`) VALUES + (55, 4, 0, '', 0, 1610588809, 0, '0.0.0', '1.0', '4', 0, 0); +INSERT INTO `conn_main` (`conn_id`, `conn_server`, `conn_auth`, `conn_name`, `conn_ip`, `conn_when_connect`, `conn_when_disconnect`, `conn_client_version`, `conn_script_version`, `conn_game_version`, `conn_status`, `conn_how_disconnect`) VALUES + (56, 4, 0, '', 0, 1610589373, 0, '0.0.0', '1.0', '4', 0, 0); +INSERT INTO `conn_main` (`conn_id`, `conn_server`, `conn_auth`, `conn_name`, `conn_ip`, `conn_when_connect`, `conn_when_disconnect`, `conn_client_version`, `conn_script_version`, `conn_game_version`, `conn_status`, `conn_how_disconnect`) VALUES + (57, 4, 0, '', 0, 1610590545, 0, '0.0.0', '1.0', '4', 0, 0); +INSERT INTO `conn_main` (`conn_id`, `conn_server`, `conn_auth`, `conn_name`, `conn_ip`, `conn_when_connect`, `conn_when_disconnect`, `conn_client_version`, `conn_script_version`, `conn_game_version`, `conn_status`, `conn_how_disconnect`) VALUES + (58, 4, 0, '', 0, 1610591749, 0, '0.0.0', '1.0', '4', 0, 0); +INSERT INTO `conn_main` (`conn_id`, `conn_server`, `conn_auth`, `conn_name`, `conn_ip`, `conn_when_connect`, `conn_when_disconnect`, `conn_client_version`, `conn_script_version`, `conn_game_version`, `conn_status`, `conn_how_disconnect`) VALUES + (59, 4, 0, '', 0, 1610591858, 0, '0.0.0', '1.0', '4', 0, 0); +INSERT INTO `conn_main` (`conn_id`, `conn_server`, `conn_auth`, `conn_name`, `conn_ip`, `conn_when_connect`, `conn_when_disconnect`, `conn_client_version`, `conn_script_version`, `conn_game_version`, `conn_status`, `conn_how_disconnect`) VALUES + (60, 4, 0, '', 0, 1610591973, 0, '0.0.0', '1.0', '4', 0, 0); +INSERT INTO `conn_main` (`conn_id`, `conn_server`, `conn_auth`, `conn_name`, `conn_ip`, `conn_when_connect`, `conn_when_disconnect`, `conn_client_version`, `conn_script_version`, `conn_game_version`, `conn_status`, `conn_how_disconnect`) VALUES + (61, 4, 0, '', 0, 1610592007, 0, '0.0.0', '1.0', '4', 0, 0); +INSERT INTO `conn_main` (`conn_id`, `conn_server`, `conn_auth`, `conn_name`, `conn_ip`, `conn_when_connect`, `conn_when_disconnect`, `conn_client_version`, `conn_script_version`, `conn_game_version`, `conn_status`, `conn_how_disconnect`) VALUES + (62, 4, 0, '', 0, 1610594821, 0, '0.0.0', '1.0', '4', 0, 0); +INSERT INTO `conn_main` (`conn_id`, `conn_server`, `conn_auth`, `conn_name`, `conn_ip`, `conn_when_connect`, `conn_when_disconnect`, `conn_client_version`, `conn_script_version`, `conn_game_version`, `conn_status`, `conn_how_disconnect`) VALUES + (63, 4, 0, '', 0, 1610595971, 0, '0.0.0', '1.0', '4', 0, 0); +INSERT INTO `conn_main` (`conn_id`, `conn_server`, `conn_auth`, `conn_name`, `conn_ip`, `conn_when_connect`, `conn_when_disconnect`, `conn_client_version`, `conn_script_version`, `conn_game_version`, `conn_status`, `conn_how_disconnect`) VALUES + (64, 4, 0, '', 0, 1610596043, 0, '0.0.0', '1.0', '4', 0, 0); +INSERT INTO `conn_main` (`conn_id`, `conn_server`, `conn_auth`, `conn_name`, `conn_ip`, `conn_when_connect`, `conn_when_disconnect`, `conn_client_version`, `conn_script_version`, `conn_game_version`, `conn_status`, `conn_how_disconnect`) VALUES + (65, 4, 0, '', 0, 1610596079, 0, '0.0.0', '1.0', '4', 0, 0); +INSERT INTO `conn_main` (`conn_id`, `conn_server`, `conn_auth`, `conn_name`, `conn_ip`, `conn_when_connect`, `conn_when_disconnect`, `conn_client_version`, `conn_script_version`, `conn_game_version`, `conn_status`, `conn_how_disconnect`) VALUES + (66, 4, 0, '', 0, 1610596095, 0, '0.0.0', '1.0', '4', 0, 0); +INSERT INTO `conn_main` (`conn_id`, `conn_server`, `conn_auth`, `conn_name`, `conn_ip`, `conn_when_connect`, `conn_when_disconnect`, `conn_client_version`, `conn_script_version`, `conn_game_version`, `conn_status`, `conn_how_disconnect`) VALUES + (67, 4, 0, '', 0, 1610596174, 0, '0.0.0', '1.0', '4', 0, 0); +INSERT INTO `conn_main` (`conn_id`, `conn_server`, `conn_auth`, `conn_name`, `conn_ip`, `conn_when_connect`, `conn_when_disconnect`, `conn_client_version`, `conn_script_version`, `conn_game_version`, `conn_status`, `conn_how_disconnect`) VALUES + (68, 4, 0, '', 0, 1610596215, 0, '0.0.0', '1.0', '4', 0, 0); +INSERT INTO `conn_main` (`conn_id`, `conn_server`, `conn_auth`, `conn_name`, `conn_ip`, `conn_when_connect`, `conn_when_disconnect`, `conn_client_version`, `conn_script_version`, `conn_game_version`, `conn_status`, `conn_how_disconnect`) VALUES + (69, 4, 0, '', 0, 1610596260, 0, '0.0.0', '1.0', '4', 0, 0); +INSERT INTO `conn_main` (`conn_id`, `conn_server`, `conn_auth`, `conn_name`, `conn_ip`, `conn_when_connect`, `conn_when_disconnect`, `conn_client_version`, `conn_script_version`, `conn_game_version`, `conn_status`, `conn_how_disconnect`) VALUES + (70, 4, 0, '', 0, 1610596614, 0, '0.0.0', '1.0', '4', 0, 0); +INSERT INTO `conn_main` (`conn_id`, `conn_server`, `conn_auth`, `conn_name`, `conn_ip`, `conn_when_connect`, `conn_when_disconnect`, `conn_client_version`, `conn_script_version`, `conn_game_version`, `conn_status`, `conn_how_disconnect`) VALUES + (71, 4, 0, '', 0, 1610596707, 0, '0.0.0', '1.0', '4', 0, 0); +INSERT INTO `conn_main` (`conn_id`, `conn_server`, `conn_auth`, `conn_name`, `conn_ip`, `conn_when_connect`, `conn_when_disconnect`, `conn_client_version`, `conn_script_version`, `conn_game_version`, `conn_status`, `conn_how_disconnect`) VALUES + (72, 4, 0, '', 0, 1610596784, 0, '0.0.0', '1.0', '4', 0, 0); +INSERT INTO `conn_main` (`conn_id`, `conn_server`, `conn_auth`, `conn_name`, `conn_ip`, `conn_when_connect`, `conn_when_disconnect`, `conn_client_version`, `conn_script_version`, `conn_game_version`, `conn_status`, `conn_how_disconnect`) VALUES + (73, 4, 0, '', 0, 1610596864, 0, '0.0.0', '1.0', '4', 0, 0); +INSERT INTO `conn_main` (`conn_id`, `conn_server`, `conn_auth`, `conn_name`, `conn_ip`, `conn_when_connect`, `conn_when_disconnect`, `conn_client_version`, `conn_script_version`, `conn_game_version`, `conn_status`, `conn_how_disconnect`) VALUES + (74, 4, 0, '', 0, 1610681204, 0, '0.0.0', '1.0', '4', 0, 0); +INSERT INTO `conn_main` (`conn_id`, `conn_server`, `conn_auth`, `conn_name`, `conn_ip`, `conn_when_connect`, `conn_when_disconnect`, `conn_client_version`, `conn_script_version`, `conn_game_version`, `conn_status`, `conn_how_disconnect`) VALUES + (75, 4, 0, '', 0, 1610681333, 0, '0.0.0', '1.0', '4', 0, 0); +INSERT INTO `conn_main` (`conn_id`, `conn_server`, `conn_auth`, `conn_name`, `conn_ip`, `conn_when_connect`, `conn_when_disconnect`, `conn_client_version`, `conn_script_version`, `conn_game_version`, `conn_status`, `conn_how_disconnect`) VALUES + (76, 4, 0, '', 0, 1610681619, 0, '0.0.0', '1.0', '4', 0, 0); +INSERT INTO `conn_main` (`conn_id`, `conn_server`, `conn_auth`, `conn_name`, `conn_ip`, `conn_when_connect`, `conn_when_disconnect`, `conn_client_version`, `conn_script_version`, `conn_game_version`, `conn_status`, `conn_how_disconnect`) VALUES + (77, 2, 0, '', 0, 1610681680, 0, '0.0.0', '1.0', '2', 0, 0); +INSERT INTO `conn_main` (`conn_id`, `conn_server`, `conn_auth`, `conn_name`, `conn_ip`, `conn_when_connect`, `conn_when_disconnect`, `conn_client_version`, `conn_script_version`, `conn_game_version`, `conn_status`, `conn_how_disconnect`) VALUES + (78, 2, 0, '', 0, 1610681827, 0, '0.0.0', '1.0', '2', 0, 0); +INSERT INTO `conn_main` (`conn_id`, `conn_server`, `conn_auth`, `conn_name`, `conn_ip`, `conn_when_connect`, `conn_when_disconnect`, `conn_client_version`, `conn_script_version`, `conn_game_version`, `conn_status`, `conn_how_disconnect`) VALUES + (79, 2, 0, '', 0, 1610681926, 0, '0.0.0', '1.0', '2', 0, 0); +INSERT INTO `conn_main` (`conn_id`, `conn_server`, `conn_auth`, `conn_name`, `conn_ip`, `conn_when_connect`, `conn_when_disconnect`, `conn_client_version`, `conn_script_version`, `conn_game_version`, `conn_status`, `conn_how_disconnect`) VALUES + (80, 2, 0, '', 0, 1610681975, 0, '0.0.0', '1.0', '2', 0, 0); +INSERT INTO `conn_main` (`conn_id`, `conn_server`, `conn_auth`, `conn_name`, `conn_ip`, `conn_when_connect`, `conn_when_disconnect`, `conn_client_version`, `conn_script_version`, `conn_game_version`, `conn_status`, `conn_how_disconnect`) VALUES + (81, 2, 0, '', 0, 1610682092, 0, '0.0.0', '1.0', '2', 0, 0); +INSERT INTO `conn_main` (`conn_id`, `conn_server`, `conn_auth`, `conn_name`, `conn_ip`, `conn_when_connect`, `conn_when_disconnect`, `conn_client_version`, `conn_script_version`, `conn_game_version`, `conn_status`, `conn_how_disconnect`) VALUES + (82, 2, 0, '', 0, 1610682202, 0, '0.0.0', '1.0', '2', 0, 0); +INSERT INTO `conn_main` (`conn_id`, `conn_server`, `conn_auth`, `conn_name`, `conn_ip`, `conn_when_connect`, `conn_when_disconnect`, `conn_client_version`, `conn_script_version`, `conn_game_version`, `conn_status`, `conn_how_disconnect`) VALUES + (83, 2, 0, '', 0, 1610682416, 0, '0.0.0', '1.0', '2', 0, 0); +INSERT INTO `conn_main` (`conn_id`, `conn_server`, `conn_auth`, `conn_name`, `conn_ip`, `conn_when_connect`, `conn_when_disconnect`, `conn_client_version`, `conn_script_version`, `conn_game_version`, `conn_status`, `conn_how_disconnect`) VALUES + (84, 2, 0, '', 0, 1610683636, 0, '0.0.0', '1.0', '2', 0, 0); +INSERT INTO `conn_main` (`conn_id`, `conn_server`, `conn_auth`, `conn_name`, `conn_ip`, `conn_when_connect`, `conn_when_disconnect`, `conn_client_version`, `conn_script_version`, `conn_game_version`, `conn_status`, `conn_how_disconnect`) VALUES + (85, 2, 0, '', 0, 1610684059, 0, '0.0.0', '1.0', '2', 0, 0); +INSERT INTO `conn_main` (`conn_id`, `conn_server`, `conn_auth`, `conn_name`, `conn_ip`, `conn_when_connect`, `conn_when_disconnect`, `conn_client_version`, `conn_script_version`, `conn_game_version`, `conn_status`, `conn_how_disconnect`) VALUES + (86, 2, 0, '', 0, 1610684118, 0, '0.0.0', '1.0', '2', 0, 0); +INSERT INTO `conn_main` (`conn_id`, `conn_server`, `conn_auth`, `conn_name`, `conn_ip`, `conn_when_connect`, `conn_when_disconnect`, `conn_client_version`, `conn_script_version`, `conn_game_version`, `conn_status`, `conn_how_disconnect`) VALUES + (87, 2, 0, '', 0, 1610684181, 0, '0.0.0', '1.0', '2', 0, 0); +INSERT INTO `conn_main` (`conn_id`, `conn_server`, `conn_auth`, `conn_name`, `conn_ip`, `conn_when_connect`, `conn_when_disconnect`, `conn_client_version`, `conn_script_version`, `conn_game_version`, `conn_status`, `conn_how_disconnect`) VALUES + (88, 2, 0, '', 0, 1610684395, 0, '0.0.0', '1.0', '2', 0, 0); +INSERT INTO `conn_main` (`conn_id`, `conn_server`, `conn_auth`, `conn_name`, `conn_ip`, `conn_when_connect`, `conn_when_disconnect`, `conn_client_version`, `conn_script_version`, `conn_game_version`, `conn_status`, `conn_how_disconnect`) VALUES + (89, 2, 0, '', 0, 1610684474, 0, '0.0.0', '1.0', '2', 0, 0); +INSERT INTO `conn_main` (`conn_id`, `conn_server`, `conn_auth`, `conn_name`, `conn_ip`, `conn_when_connect`, `conn_when_disconnect`, `conn_client_version`, `conn_script_version`, `conn_game_version`, `conn_status`, `conn_how_disconnect`) VALUES + (90, 2, 0, '', 0, 1610684735, 0, '0.0.0', '1.0', '2', 0, 0); +INSERT INTO `conn_main` (`conn_id`, `conn_server`, `conn_auth`, `conn_name`, `conn_ip`, `conn_when_connect`, `conn_when_disconnect`, `conn_client_version`, `conn_script_version`, `conn_game_version`, `conn_status`, `conn_how_disconnect`) VALUES + (91, 2, 0, '', 0, 1610684790, 0, '0.0.0', '1.0', '2', 0, 0); +INSERT INTO `conn_main` (`conn_id`, `conn_server`, `conn_auth`, `conn_name`, `conn_ip`, `conn_when_connect`, `conn_when_disconnect`, `conn_client_version`, `conn_script_version`, `conn_game_version`, `conn_status`, `conn_how_disconnect`) VALUES + (92, 2, 0, '', 0, 1610684974, 0, '0.0.0', '1.0', '2', 0, 0); +INSERT INTO `conn_main` (`conn_id`, `conn_server`, `conn_auth`, `conn_name`, `conn_ip`, `conn_when_connect`, `conn_when_disconnect`, `conn_client_version`, `conn_script_version`, `conn_game_version`, `conn_status`, `conn_how_disconnect`) VALUES + (93, 2, 0, '', 0, 1610685330, 0, '0.0.0', '1.0', '2', 0, 0); +INSERT INTO `conn_main` (`conn_id`, `conn_server`, `conn_auth`, `conn_name`, `conn_ip`, `conn_when_connect`, `conn_when_disconnect`, `conn_client_version`, `conn_script_version`, `conn_game_version`, `conn_status`, `conn_how_disconnect`) VALUES + (94, 2, 0, '', 0, 1610685483, 0, '0.0.0', '1.0', '2', 0, 0); +INSERT INTO `conn_main` (`conn_id`, `conn_server`, `conn_auth`, `conn_name`, `conn_ip`, `conn_when_connect`, `conn_when_disconnect`, `conn_client_version`, `conn_script_version`, `conn_game_version`, `conn_status`, `conn_how_disconnect`) VALUES + (95, 2, 0, '', 0, 1610685742, 0, '0.0.0', '1.0', '2', 0, 0); +INSERT INTO `conn_main` (`conn_id`, `conn_server`, `conn_auth`, `conn_name`, `conn_ip`, `conn_when_connect`, `conn_when_disconnect`, `conn_client_version`, `conn_script_version`, `conn_game_version`, `conn_status`, `conn_how_disconnect`) VALUES + (96, 2, 0, '', 0, 1610686211, 0, '0.0.0', '1.0', '2', 0, 0); +INSERT INTO `conn_main` (`conn_id`, `conn_server`, `conn_auth`, `conn_name`, `conn_ip`, `conn_when_connect`, `conn_when_disconnect`, `conn_client_version`, `conn_script_version`, `conn_game_version`, `conn_status`, `conn_how_disconnect`) VALUES + (97, 2, 0, '', 0, 1610686346, 0, '0.0.0', '1.0', '2', 0, 0); +INSERT INTO `conn_main` (`conn_id`, `conn_server`, `conn_auth`, `conn_name`, `conn_ip`, `conn_when_connect`, `conn_when_disconnect`, `conn_client_version`, `conn_script_version`, `conn_game_version`, `conn_status`, `conn_how_disconnect`) VALUES + (98, 2, 0, '', 0, 1610686731, 0, '0.0.0', '1.0', '2', 0, 0); +INSERT INTO `conn_main` (`conn_id`, `conn_server`, `conn_auth`, `conn_name`, `conn_ip`, `conn_when_connect`, `conn_when_disconnect`, `conn_client_version`, `conn_script_version`, `conn_game_version`, `conn_status`, `conn_how_disconnect`) VALUES + (99, 1, 0, '', 0, 1610686807, 0, '0.0.0', '1.0', '1', 0, 0); +INSERT INTO `conn_main` (`conn_id`, `conn_server`, `conn_auth`, `conn_name`, `conn_ip`, `conn_when_connect`, `conn_when_disconnect`, `conn_client_version`, `conn_script_version`, `conn_game_version`, `conn_status`, `conn_how_disconnect`) VALUES + (100, 1, 0, '', 0, 1610687640, 0, '0.0.0', '1.0', '1', 0, 0); +INSERT INTO `conn_main` (`conn_id`, `conn_server`, `conn_auth`, `conn_name`, `conn_ip`, `conn_when_connect`, `conn_when_disconnect`, `conn_client_version`, `conn_script_version`, `conn_game_version`, `conn_status`, `conn_how_disconnect`) VALUES + (101, 1, 0, '', 0, 1610687929, 0, '0.0.0', '1.0', '1', 0, 0); +INSERT INTO `conn_main` (`conn_id`, `conn_server`, `conn_auth`, `conn_name`, `conn_ip`, `conn_when_connect`, `conn_when_disconnect`, `conn_client_version`, `conn_script_version`, `conn_game_version`, `conn_status`, `conn_how_disconnect`) VALUES + (102, 1, 0, '', 0, 1610687982, 0, '0.0.0', '1.0', '1', 0, 0); +INSERT INTO `conn_main` (`conn_id`, `conn_server`, `conn_auth`, `conn_name`, `conn_ip`, `conn_when_connect`, `conn_when_disconnect`, `conn_client_version`, `conn_script_version`, `conn_game_version`, `conn_status`, `conn_how_disconnect`) VALUES + (103, 1, 0, '', 0, 1610688147, 0, '0.0.0', '1.0', '1', 0, 0); +INSERT INTO `conn_main` (`conn_id`, `conn_server`, `conn_auth`, `conn_name`, `conn_ip`, `conn_when_connect`, `conn_when_disconnect`, `conn_client_version`, `conn_script_version`, `conn_game_version`, `conn_status`, `conn_how_disconnect`) VALUES + (104, 1, 0, '', 0, 1610703295, 0, '0.0.0', '1.0', '1', 0, 0); +INSERT INTO `conn_main` (`conn_id`, `conn_server`, `conn_auth`, `conn_name`, `conn_ip`, `conn_when_connect`, `conn_when_disconnect`, `conn_client_version`, `conn_script_version`, `conn_game_version`, `conn_status`, `conn_how_disconnect`) VALUES + (105, 4, 0, '', 0, 1610763477, 0, '0.0.0', '1.0', '4', 0, 0); +INSERT INTO `conn_main` (`conn_id`, `conn_server`, `conn_auth`, `conn_name`, `conn_ip`, `conn_when_connect`, `conn_when_disconnect`, `conn_client_version`, `conn_script_version`, `conn_game_version`, `conn_status`, `conn_how_disconnect`) VALUES + (106, 1, 0, '', 0, 1610763529, 0, '0.0.0', '1.0', '1', 0, 0); +INSERT INTO `conn_main` (`conn_id`, `conn_server`, `conn_auth`, `conn_name`, `conn_ip`, `conn_when_connect`, `conn_when_disconnect`, `conn_client_version`, `conn_script_version`, `conn_game_version`, `conn_status`, `conn_how_disconnect`) VALUES + (107, 1, 0, '', 0, 1610763627, 0, '0.0.0', '1.0', '1', 0, 0); +INSERT INTO `conn_main` (`conn_id`, `conn_server`, `conn_auth`, `conn_name`, `conn_ip`, `conn_when_connect`, `conn_when_disconnect`, `conn_client_version`, `conn_script_version`, `conn_game_version`, `conn_status`, `conn_how_disconnect`) VALUES + (108, 1, 0, '', 0, 1610763658, 0, '0.0.0', '1.0', '1', 0, 0); +INSERT INTO `conn_main` (`conn_id`, `conn_server`, `conn_auth`, `conn_name`, `conn_ip`, `conn_when_connect`, `conn_when_disconnect`, `conn_client_version`, `conn_script_version`, `conn_game_version`, `conn_status`, `conn_how_disconnect`) VALUES + (109, 1, 0, '', 0, 1610763709, 0, '0.0.0', '1.0', '1', 0, 0); +INSERT INTO `conn_main` (`conn_id`, `conn_server`, `conn_auth`, `conn_name`, `conn_ip`, `conn_when_connect`, `conn_when_disconnect`, `conn_client_version`, `conn_script_version`, `conn_game_version`, `conn_status`, `conn_how_disconnect`) VALUES + (110, 1, 0, '', 0, 1610763717, 0, '0.0.0', '1.0', '1', 0, 0); +INSERT INTO `conn_main` (`conn_id`, `conn_server`, `conn_auth`, `conn_name`, `conn_ip`, `conn_when_connect`, `conn_when_disconnect`, `conn_client_version`, `conn_script_version`, `conn_game_version`, `conn_status`, `conn_how_disconnect`) VALUES + (111, 1, 0, '', 0, 1610763986, 0, '0.0.0', '1.0', '1', 0, 0); +INSERT INTO `conn_main` (`conn_id`, `conn_server`, `conn_auth`, `conn_name`, `conn_ip`, `conn_when_connect`, `conn_when_disconnect`, `conn_client_version`, `conn_script_version`, `conn_game_version`, `conn_status`, `conn_how_disconnect`) VALUES + (112, 1, 0, '', 0, 1610764130, 0, '0.0.0', '1.0', '1', 0, 0); +INSERT INTO `conn_main` (`conn_id`, `conn_server`, `conn_auth`, `conn_name`, `conn_ip`, `conn_when_connect`, `conn_when_disconnect`, `conn_client_version`, `conn_script_version`, `conn_game_version`, `conn_status`, `conn_how_disconnect`) VALUES + (113, 1, 0, '', 0, 1610764299, 0, '0.0.0', '1.0', '1', 0, 0); +INSERT INTO `conn_main` (`conn_id`, `conn_server`, `conn_auth`, `conn_name`, `conn_ip`, `conn_when_connect`, `conn_when_disconnect`, `conn_client_version`, `conn_script_version`, `conn_game_version`, `conn_status`, `conn_how_disconnect`) VALUES + (114, 1, 0, '', 0, 1610764300, 0, '0.0.0', '1.0', '1', 0, 0); +INSERT INTO `conn_main` (`conn_id`, `conn_server`, `conn_auth`, `conn_name`, `conn_ip`, `conn_when_connect`, `conn_when_disconnect`, `conn_client_version`, `conn_script_version`, `conn_game_version`, `conn_status`, `conn_how_disconnect`) VALUES + (115, 1, 0, '', 0, 1610764395, 0, '0.0.0', '1.0', '1', 0, 0); +INSERT INTO `conn_main` (`conn_id`, `conn_server`, `conn_auth`, `conn_name`, `conn_ip`, `conn_when_connect`, `conn_when_disconnect`, `conn_client_version`, `conn_script_version`, `conn_game_version`, `conn_status`, `conn_how_disconnect`) VALUES + (116, 1, 0, '', 0, 1610765928, 0, '0.0.0', '1.0', '1', 0, 0); +INSERT INTO `conn_main` (`conn_id`, `conn_server`, `conn_auth`, `conn_name`, `conn_ip`, `conn_when_connect`, `conn_when_disconnect`, `conn_client_version`, `conn_script_version`, `conn_game_version`, `conn_status`, `conn_how_disconnect`) VALUES + (117, 1, 0, '', 0, 1610766643, 0, '0.0.0', '1.0', '1', 0, 0); +INSERT INTO `conn_main` (`conn_id`, `conn_server`, `conn_auth`, `conn_name`, `conn_ip`, `conn_when_connect`, `conn_when_disconnect`, `conn_client_version`, `conn_script_version`, `conn_game_version`, `conn_status`, `conn_how_disconnect`) VALUES + (118, 1, 0, '', 0, 1610791623, 0, '0.0.0', '1.0', '1', 0, 0); +INSERT INTO `conn_main` (`conn_id`, `conn_server`, `conn_auth`, `conn_name`, `conn_ip`, `conn_when_connect`, `conn_when_disconnect`, `conn_client_version`, `conn_script_version`, `conn_game_version`, `conn_status`, `conn_how_disconnect`) VALUES + (119, 1, 0, '', 0, 1610793652, 0, '0.0.0', '1.0', '1', 0, 0); +INSERT INTO `conn_main` (`conn_id`, `conn_server`, `conn_auth`, `conn_name`, `conn_ip`, `conn_when_connect`, `conn_when_disconnect`, `conn_client_version`, `conn_script_version`, `conn_game_version`, `conn_status`, `conn_how_disconnect`) VALUES + (120, 1, 0, '', 0, 1610793895, 0, '0.0.0', '1.0', '1', 0, 0); +INSERT INTO `conn_main` (`conn_id`, `conn_server`, `conn_auth`, `conn_name`, `conn_ip`, `conn_when_connect`, `conn_when_disconnect`, `conn_client_version`, `conn_script_version`, `conn_game_version`, `conn_status`, `conn_how_disconnect`) VALUES + (121, 1, 0, '', 0, 1610794031, 0, '0.0.0', '1.0', '1', 0, 0); +INSERT INTO `conn_main` (`conn_id`, `conn_server`, `conn_auth`, `conn_name`, `conn_ip`, `conn_when_connect`, `conn_when_disconnect`, `conn_client_version`, `conn_script_version`, `conn_game_version`, `conn_status`, `conn_how_disconnect`) VALUES + (122, 1, 0, '', 0, 1610794276, 0, '0.0.0', '1.0', '1', 0, 0); +INSERT INTO `conn_main` (`conn_id`, `conn_server`, `conn_auth`, `conn_name`, `conn_ip`, `conn_when_connect`, `conn_when_disconnect`, `conn_client_version`, `conn_script_version`, `conn_game_version`, `conn_status`, `conn_how_disconnect`) VALUES + (123, 1, 0, '', 0, 1610795995, 0, '0.0.0', '1.0', '1', 0, 0); +INSERT INTO `conn_main` (`conn_id`, `conn_server`, `conn_auth`, `conn_name`, `conn_ip`, `conn_when_connect`, `conn_when_disconnect`, `conn_client_version`, `conn_script_version`, `conn_game_version`, `conn_status`, `conn_how_disconnect`) VALUES + (124, 1, 0, '', 0, 1610796192, 0, '0.0.0', '1.0', '1', 0, 0); +INSERT INTO `conn_main` (`conn_id`, `conn_server`, `conn_auth`, `conn_name`, `conn_ip`, `conn_when_connect`, `conn_when_disconnect`, `conn_client_version`, `conn_script_version`, `conn_game_version`, `conn_status`, `conn_how_disconnect`) VALUES + (125, 1, 0, '', 0, 1610796237, 0, '0.0.0', '1.0', '1', 0, 0); +INSERT INTO `conn_main` (`conn_id`, `conn_server`, `conn_auth`, `conn_name`, `conn_ip`, `conn_when_connect`, `conn_when_disconnect`, `conn_client_version`, `conn_script_version`, `conn_game_version`, `conn_status`, `conn_how_disconnect`) VALUES + (126, 1, 0, '', 0, 1610796266, 0, '0.0.0', '1.0', '1', 0, 0); +INSERT INTO `conn_main` (`conn_id`, `conn_server`, `conn_auth`, `conn_name`, `conn_ip`, `conn_when_connect`, `conn_when_disconnect`, `conn_client_version`, `conn_script_version`, `conn_game_version`, `conn_status`, `conn_how_disconnect`) VALUES + (127, 1, 0, '', 0, 1610796314, 0, '0.0.0', '1.0', '1', 0, 0); +INSERT INTO `conn_main` (`conn_id`, `conn_server`, `conn_auth`, `conn_name`, `conn_ip`, `conn_when_connect`, `conn_when_disconnect`, `conn_client_version`, `conn_script_version`, `conn_game_version`, `conn_status`, `conn_how_disconnect`) VALUES + (128, 1, 0, '', 0, 1610796432, 0, '0.0.0', '1.0', '1', 0, 0); +INSERT INTO `conn_main` (`conn_id`, `conn_server`, `conn_auth`, `conn_name`, `conn_ip`, `conn_when_connect`, `conn_when_disconnect`, `conn_client_version`, `conn_script_version`, `conn_game_version`, `conn_status`, `conn_how_disconnect`) VALUES + (129, 1, 0, '', 0, 1610797161, 0, '0.0.0', '1.0', '1', 0, 0); +INSERT INTO `conn_main` (`conn_id`, `conn_server`, `conn_auth`, `conn_name`, `conn_ip`, `conn_when_connect`, `conn_when_disconnect`, `conn_client_version`, `conn_script_version`, `conn_game_version`, `conn_status`, `conn_how_disconnect`) VALUES + (130, 1, 0, '', 0, 1610797486, 0, '0.0.0', '1.0', '1', 0, 0); +INSERT INTO `conn_main` (`conn_id`, `conn_server`, `conn_auth`, `conn_name`, `conn_ip`, `conn_when_connect`, `conn_when_disconnect`, `conn_client_version`, `conn_script_version`, `conn_game_version`, `conn_status`, `conn_how_disconnect`) VALUES + (131, 1, 0, '', 0, 1610797702, 0, '0.0.0', '1.0', '1', 0, 0); +INSERT INTO `conn_main` (`conn_id`, `conn_server`, `conn_auth`, `conn_name`, `conn_ip`, `conn_when_connect`, `conn_when_disconnect`, `conn_client_version`, `conn_script_version`, `conn_game_version`, `conn_status`, `conn_how_disconnect`) VALUES + (132, 1, 0, '', 0, 1610797799, 0, '0.0.0', '1.0', '1', 0, 0); +INSERT INTO `conn_main` (`conn_id`, `conn_server`, `conn_auth`, `conn_name`, `conn_ip`, `conn_when_connect`, `conn_when_disconnect`, `conn_client_version`, `conn_script_version`, `conn_game_version`, `conn_status`, `conn_how_disconnect`) VALUES + (133, 4, 0, '', 0, 1611087900, 0, '0.0.0', '1.0', '4', 0, 0); +INSERT INTO `conn_main` (`conn_id`, `conn_server`, `conn_auth`, `conn_name`, `conn_ip`, `conn_when_connect`, `conn_when_disconnect`, `conn_client_version`, `conn_script_version`, `conn_game_version`, `conn_status`, `conn_how_disconnect`) VALUES + (134, 4, 0, '', 0, 1611088089, 0, '0.0.0', '1.0', '4', 0, 0); +INSERT INTO `conn_main` (`conn_id`, `conn_server`, `conn_auth`, `conn_name`, `conn_ip`, `conn_when_connect`, `conn_when_disconnect`, `conn_client_version`, `conn_script_version`, `conn_game_version`, `conn_status`, `conn_how_disconnect`) VALUES + (135, 4, 0, '', 0, 1611088324, 0, '0.0.0', '1.0', '4', 0, 0); +INSERT INTO `conn_main` (`conn_id`, `conn_server`, `conn_auth`, `conn_name`, `conn_ip`, `conn_when_connect`, `conn_when_disconnect`, `conn_client_version`, `conn_script_version`, `conn_game_version`, `conn_status`, `conn_how_disconnect`) VALUES + (136, 1, 0, '', 0, 1611226672, 0, '0.0.0', '1.0', '1', 0, 0); +INSERT INTO `conn_main` (`conn_id`, `conn_server`, `conn_auth`, `conn_name`, `conn_ip`, `conn_when_connect`, `conn_when_disconnect`, `conn_client_version`, `conn_script_version`, `conn_game_version`, `conn_status`, `conn_how_disconnect`) VALUES + (137, 1, 0, '', 0, 1611228627, 0, '0.0.0', '1.0', '1', 0, 0); +INSERT INTO `conn_main` (`conn_id`, `conn_server`, `conn_auth`, `conn_name`, `conn_ip`, `conn_when_connect`, `conn_when_disconnect`, `conn_client_version`, `conn_script_version`, `conn_game_version`, `conn_status`, `conn_how_disconnect`) VALUES + (138, 1, 0, '', 0, 1611229218, 0, '0.0.0', '1.0', '1', 0, 0); +INSERT INTO `conn_main` (`conn_id`, `conn_server`, `conn_auth`, `conn_name`, `conn_ip`, `conn_when_connect`, `conn_when_disconnect`, `conn_client_version`, `conn_script_version`, `conn_game_version`, `conn_status`, `conn_how_disconnect`) VALUES + (139, 1, 0, '', 0, 1611229506, 0, '0.0.0', '1.0', '1', 0, 0); +INSERT INTO `conn_main` (`conn_id`, `conn_server`, `conn_auth`, `conn_name`, `conn_ip`, `conn_when_connect`, `conn_when_disconnect`, `conn_client_version`, `conn_script_version`, `conn_game_version`, `conn_status`, `conn_how_disconnect`) VALUES + (140, 1, 0, '', 0, 1611229678, 0, '0.0.0', '1.0', '1', 0, 0); +INSERT INTO `conn_main` (`conn_id`, `conn_server`, `conn_auth`, `conn_name`, `conn_ip`, `conn_when_connect`, `conn_when_disconnect`, `conn_client_version`, `conn_script_version`, `conn_game_version`, `conn_status`, `conn_how_disconnect`) VALUES + (141, 1, 0, '', 0, 1611229962, 0, '0.0.0', '1.0', '1', 0, 0); +INSERT INTO `conn_main` (`conn_id`, `conn_server`, `conn_auth`, `conn_name`, `conn_ip`, `conn_when_connect`, `conn_when_disconnect`, `conn_client_version`, `conn_script_version`, `conn_game_version`, `conn_status`, `conn_how_disconnect`) VALUES + (142, 1, 0, '', 0, 1611230135, 0, '0.0.0', '1.0', '1', 0, 0); +INSERT INTO `conn_main` (`conn_id`, `conn_server`, `conn_auth`, `conn_name`, `conn_ip`, `conn_when_connect`, `conn_when_disconnect`, `conn_client_version`, `conn_script_version`, `conn_game_version`, `conn_status`, `conn_how_disconnect`) VALUES + (143, 1, 0, '', 0, 1611230212, 0, '0.0.0', '1.0', '1', 0, 0); +INSERT INTO `conn_main` (`conn_id`, `conn_server`, `conn_auth`, `conn_name`, `conn_ip`, `conn_when_connect`, `conn_when_disconnect`, `conn_client_version`, `conn_script_version`, `conn_game_version`, `conn_status`, `conn_how_disconnect`) VALUES + (144, 1, 0, '', 0, 1611230354, 0, '0.0.0', '1.0', '1', 0, 0); +INSERT INTO `conn_main` (`conn_id`, `conn_server`, `conn_auth`, `conn_name`, `conn_ip`, `conn_when_connect`, `conn_when_disconnect`, `conn_client_version`, `conn_script_version`, `conn_game_version`, `conn_status`, `conn_how_disconnect`) VALUES + (145, 1, 0, '', 0, 1611232552, 0, '0.0.0', '1.0', '1', 0, 0); +INSERT INTO `conn_main` (`conn_id`, `conn_server`, `conn_auth`, `conn_name`, `conn_ip`, `conn_when_connect`, `conn_when_disconnect`, `conn_client_version`, `conn_script_version`, `conn_game_version`, `conn_status`, `conn_how_disconnect`) VALUES + (146, 1, 0, '', 0, 1611232576, 0, '0.0.0', '1.0', '1', 0, 0); +INSERT INTO `conn_main` (`conn_id`, `conn_server`, `conn_auth`, `conn_name`, `conn_ip`, `conn_when_connect`, `conn_when_disconnect`, `conn_client_version`, `conn_script_version`, `conn_game_version`, `conn_status`, `conn_how_disconnect`) VALUES + (147, 1, 0, '', 0, 1611232770, 0, '0.0.0', '1.0', '1', 0, 0); +INSERT INTO `conn_main` (`conn_id`, `conn_server`, `conn_auth`, `conn_name`, `conn_ip`, `conn_when_connect`, `conn_when_disconnect`, `conn_client_version`, `conn_script_version`, `conn_game_version`, `conn_status`, `conn_how_disconnect`) VALUES + (148, 1, 0, '', 0, 1611304158, 0, '0.0.0', '1.0', '1', 0, 0); +INSERT INTO `conn_main` (`conn_id`, `conn_server`, `conn_auth`, `conn_name`, `conn_ip`, `conn_when_connect`, `conn_when_disconnect`, `conn_client_version`, `conn_script_version`, `conn_game_version`, `conn_status`, `conn_how_disconnect`) VALUES + (149, 1, 0, '', 0, 1611304985, 0, '0.0.0', '1.0', '1', 0, 0); +INSERT INTO `conn_main` (`conn_id`, `conn_server`, `conn_auth`, `conn_name`, `conn_ip`, `conn_when_connect`, `conn_when_disconnect`, `conn_client_version`, `conn_script_version`, `conn_game_version`, `conn_status`, `conn_how_disconnect`) VALUES + (150, 1, 0, '', 0, 1611521732, 0, '0.0.0', '1.0', '1', 0, 0); +INSERT INTO `conn_main` (`conn_id`, `conn_server`, `conn_auth`, `conn_name`, `conn_ip`, `conn_when_connect`, `conn_when_disconnect`, `conn_client_version`, `conn_script_version`, `conn_game_version`, `conn_status`, `conn_how_disconnect`) VALUES + (151, 1, 0, '', 0, 1611522351, 0, '0.0.0', '1.0', '1', 0, 0); +INSERT INTO `conn_main` (`conn_id`, `conn_server`, `conn_auth`, `conn_name`, `conn_ip`, `conn_when_connect`, `conn_when_disconnect`, `conn_client_version`, `conn_script_version`, `conn_game_version`, `conn_status`, `conn_how_disconnect`) VALUES + (152, 1, 0, '', 0, 1611522434, 0, '0.0.0', '1.0', '1', 0, 0); +INSERT INTO `conn_main` (`conn_id`, `conn_server`, `conn_auth`, `conn_name`, `conn_ip`, `conn_when_connect`, `conn_when_disconnect`, `conn_client_version`, `conn_script_version`, `conn_game_version`, `conn_status`, `conn_how_disconnect`) VALUES + (153, 1, 0, '', 0, 1611522650, 0, '0.0.0', '1.0', '1', 0, 0); +INSERT INTO `conn_main` (`conn_id`, `conn_server`, `conn_auth`, `conn_name`, `conn_ip`, `conn_when_connect`, `conn_when_disconnect`, `conn_client_version`, `conn_script_version`, `conn_game_version`, `conn_status`, `conn_how_disconnect`) VALUES + (154, 1, 0, '', 0, 1611522695, 0, '0.0.0', '1.0', '1', 0, 0); +INSERT INTO `conn_main` (`conn_id`, `conn_server`, `conn_auth`, `conn_name`, `conn_ip`, `conn_when_connect`, `conn_when_disconnect`, `conn_client_version`, `conn_script_version`, `conn_game_version`, `conn_status`, `conn_how_disconnect`) VALUES + (155, 1, 0, '', 0, 1611522812, 0, '0.0.0', '1.0', '1', 0, 0); +INSERT INTO `conn_main` (`conn_id`, `conn_server`, `conn_auth`, `conn_name`, `conn_ip`, `conn_when_connect`, `conn_when_disconnect`, `conn_client_version`, `conn_script_version`, `conn_game_version`, `conn_status`, `conn_how_disconnect`) VALUES + (156, 2, 0, '', 0, 1611526452, 0, '0.0.0', '1.0', '2', 0, 0); +INSERT INTO `conn_main` (`conn_id`, `conn_server`, `conn_auth`, `conn_name`, `conn_ip`, `conn_when_connect`, `conn_when_disconnect`, `conn_client_version`, `conn_script_version`, `conn_game_version`, `conn_status`, `conn_how_disconnect`) VALUES + (157, 2, 0, '', 0, 1611526509, 0, '0.0.0', '1.0', '2', 0, 0); +INSERT INTO `conn_main` (`conn_id`, `conn_server`, `conn_auth`, `conn_name`, `conn_ip`, `conn_when_connect`, `conn_when_disconnect`, `conn_client_version`, `conn_script_version`, `conn_game_version`, `conn_status`, `conn_how_disconnect`) VALUES + (158, 2, 0, '', 0, 1611527171, 0, '0.0.0', '1.0', '2', 0, 0); +INSERT INTO `conn_main` (`conn_id`, `conn_server`, `conn_auth`, `conn_name`, `conn_ip`, `conn_when_connect`, `conn_when_disconnect`, `conn_client_version`, `conn_script_version`, `conn_game_version`, `conn_status`, `conn_how_disconnect`) VALUES + (159, 4, 0, '', 0, 1612851488, 0, '0.0.0', '1.0', '4', 0, 0); +INSERT INTO `conn_main` (`conn_id`, `conn_server`, `conn_auth`, `conn_name`, `conn_ip`, `conn_when_connect`, `conn_when_disconnect`, `conn_client_version`, `conn_script_version`, `conn_game_version`, `conn_status`, `conn_how_disconnect`) VALUES + (160, 4, 0, '', 0, 1612851865, 0, '0.0.0', '1.0', '4', 0, 0); +INSERT INTO `conn_main` (`conn_id`, `conn_server`, `conn_auth`, `conn_name`, `conn_ip`, `conn_when_connect`, `conn_when_disconnect`, `conn_client_version`, `conn_script_version`, `conn_game_version`, `conn_status`, `conn_how_disconnect`) VALUES + (161, 4, 0, '', 0, 1612851916, 0, '0.0.0', '1.0', '4', 0, 0); +INSERT INTO `conn_main` (`conn_id`, `conn_server`, `conn_auth`, `conn_name`, `conn_ip`, `conn_when_connect`, `conn_when_disconnect`, `conn_client_version`, `conn_script_version`, `conn_game_version`, `conn_status`, `conn_how_disconnect`) VALUES + (162, 4, 0, '', 0, 1612852054, 0, '0.0.0', '1.0', '4', 0, 0); +INSERT INTO `conn_main` (`conn_id`, `conn_server`, `conn_auth`, `conn_name`, `conn_ip`, `conn_when_connect`, `conn_when_disconnect`, `conn_client_version`, `conn_script_version`, `conn_game_version`, `conn_status`, `conn_how_disconnect`) VALUES + (163, 4, 0, '', 0, 1612852105, 0, '0.0.0', '1.0', '4', 0, 0); +INSERT INTO `conn_main` (`conn_id`, `conn_server`, `conn_auth`, `conn_name`, `conn_ip`, `conn_when_connect`, `conn_when_disconnect`, `conn_client_version`, `conn_script_version`, `conn_game_version`, `conn_status`, `conn_how_disconnect`) VALUES + (164, 4, 0, '', 0, 1612852187, 0, '0.0.0', '1.0', '4', 0, 0); +INSERT INTO `conn_main` (`conn_id`, `conn_server`, `conn_auth`, `conn_name`, `conn_ip`, `conn_when_connect`, `conn_when_disconnect`, `conn_client_version`, `conn_script_version`, `conn_game_version`, `conn_status`, `conn_how_disconnect`) VALUES + (165, 4, 0, '', 0, 1612852334, 0, '0.0.0', '1.0', '4', 0, 0); +INSERT INTO `conn_main` (`conn_id`, `conn_server`, `conn_auth`, `conn_name`, `conn_ip`, `conn_when_connect`, `conn_when_disconnect`, `conn_client_version`, `conn_script_version`, `conn_game_version`, `conn_status`, `conn_how_disconnect`) VALUES + (166, 4, 0, '', 0, 1612852497, 0, '0.0.0', '1.0', '4', 0, 0); +INSERT INTO `conn_main` (`conn_id`, `conn_server`, `conn_auth`, `conn_name`, `conn_ip`, `conn_when_connect`, `conn_when_disconnect`, `conn_client_version`, `conn_script_version`, `conn_game_version`, `conn_status`, `conn_how_disconnect`) VALUES + (167, 1, 0, '', 0, 1612855109, 0, '0.0.0', '1.0', '1', 0, 0); +INSERT INTO `conn_main` (`conn_id`, `conn_server`, `conn_auth`, `conn_name`, `conn_ip`, `conn_when_connect`, `conn_when_disconnect`, `conn_client_version`, `conn_script_version`, `conn_game_version`, `conn_status`, `conn_how_disconnect`) VALUES + (168, 1, 0, '', 0, 1612855288, 0, '0.0.0', '1.0', '1', 0, 0); +INSERT INTO `conn_main` (`conn_id`, `conn_server`, `conn_auth`, `conn_name`, `conn_ip`, `conn_when_connect`, `conn_when_disconnect`, `conn_client_version`, `conn_script_version`, `conn_game_version`, `conn_status`, `conn_how_disconnect`) VALUES + (169, 4, 0, '', 0, 1612863860, 0, '0.0.0', '1.0', '4', 0, 0); +INSERT INTO `conn_main` (`conn_id`, `conn_server`, `conn_auth`, `conn_name`, `conn_ip`, `conn_when_connect`, `conn_when_disconnect`, `conn_client_version`, `conn_script_version`, `conn_game_version`, `conn_status`, `conn_how_disconnect`) VALUES + (170, 4, 0, '', 0, 1612863933, 0, '0.0.0', '1.0', '4', 0, 0); +INSERT INTO `conn_main` (`conn_id`, `conn_server`, `conn_auth`, `conn_name`, `conn_ip`, `conn_when_connect`, `conn_when_disconnect`, `conn_client_version`, `conn_script_version`, `conn_game_version`, `conn_status`, `conn_how_disconnect`) VALUES + (171, 4, 0, '', 0, 1612864014, 0, '0.0.0', '1.0', '4', 0, 0); +INSERT INTO `conn_main` (`conn_id`, `conn_server`, `conn_auth`, `conn_name`, `conn_ip`, `conn_when_connect`, `conn_when_disconnect`, `conn_client_version`, `conn_script_version`, `conn_game_version`, `conn_status`, `conn_how_disconnect`) VALUES + (172, 4, 0, '', 0, 1612864536, 0, '0.0.0', '1.0', '4', 0, 0); +INSERT INTO `conn_main` (`conn_id`, `conn_server`, `conn_auth`, `conn_name`, `conn_ip`, `conn_when_connect`, `conn_when_disconnect`, `conn_client_version`, `conn_script_version`, `conn_game_version`, `conn_status`, `conn_how_disconnect`) VALUES + (173, 1, 0, '', 0, 1613340231, 0, '0.0.0', '1.0', '1', 0, 0); +INSERT INTO `conn_main` (`conn_id`, `conn_server`, `conn_auth`, `conn_name`, `conn_ip`, `conn_when_connect`, `conn_when_disconnect`, `conn_client_version`, `conn_script_version`, `conn_game_version`, `conn_status`, `conn_how_disconnect`) VALUES + (174, 1, 0, '', 0, 1613340369, 0, '0.0.0', '1.0', '1', 0, 0); +INSERT INTO `conn_main` (`conn_id`, `conn_server`, `conn_auth`, `conn_name`, `conn_ip`, `conn_when_connect`, `conn_when_disconnect`, `conn_client_version`, `conn_script_version`, `conn_game_version`, `conn_status`, `conn_how_disconnect`) VALUES + (175, 1, 0, '', 0, 1613340559, 0, '0.0.0', '1.0', '1', 0, 0); +INSERT INTO `conn_main` (`conn_id`, `conn_server`, `conn_auth`, `conn_name`, `conn_ip`, `conn_when_connect`, `conn_when_disconnect`, `conn_client_version`, `conn_script_version`, `conn_game_version`, `conn_status`, `conn_how_disconnect`) VALUES + (176, 1, 0, '', 0, 1613340704, 0, '0.0.0', '1.0', '1', 0, 0); +INSERT INTO `conn_main` (`conn_id`, `conn_server`, `conn_auth`, `conn_name`, `conn_ip`, `conn_when_connect`, `conn_when_disconnect`, `conn_client_version`, `conn_script_version`, `conn_game_version`, `conn_status`, `conn_how_disconnect`) VALUES + (177, 1, 0, '', 0, 1613340737, 0, '0.0.0', '1.0', '1', 0, 0); +INSERT INTO `conn_main` (`conn_id`, `conn_server`, `conn_auth`, `conn_name`, `conn_ip`, `conn_when_connect`, `conn_when_disconnect`, `conn_client_version`, `conn_script_version`, `conn_game_version`, `conn_status`, `conn_how_disconnect`) VALUES + (178, 1, 0, '', 0, 1613341349, 0, '0.0.0', '1.0', '1', 0, 0); +INSERT INTO `conn_main` (`conn_id`, `conn_server`, `conn_auth`, `conn_name`, `conn_ip`, `conn_when_connect`, `conn_when_disconnect`, `conn_client_version`, `conn_script_version`, `conn_game_version`, `conn_status`, `conn_how_disconnect`) VALUES + (179, 1, 0, '', 0, 1613341540, 0, '0.0.0', '1.0', '1', 0, 0); +INSERT INTO `conn_main` (`conn_id`, `conn_server`, `conn_auth`, `conn_name`, `conn_ip`, `conn_when_connect`, `conn_when_disconnect`, `conn_client_version`, `conn_script_version`, `conn_game_version`, `conn_status`, `conn_how_disconnect`) VALUES + (180, 4, 0, '', 0, 1613341619, 0, '0.0.0', '1.0', '4', 0, 0); +INSERT INTO `conn_main` (`conn_id`, `conn_server`, `conn_auth`, `conn_name`, `conn_ip`, `conn_when_connect`, `conn_when_disconnect`, `conn_client_version`, `conn_script_version`, `conn_game_version`, `conn_status`, `conn_how_disconnect`) VALUES + (181, 4, 0, '', 0, 1613341638, 0, '0.0.0', '1.0', '4', 0, 0); +INSERT INTO `conn_main` (`conn_id`, `conn_server`, `conn_auth`, `conn_name`, `conn_ip`, `conn_when_connect`, `conn_when_disconnect`, `conn_client_version`, `conn_script_version`, `conn_game_version`, `conn_status`, `conn_how_disconnect`) VALUES + (182, 4, 0, '', 0, 1613341683, 0, '0.0.0', '1.0', '4', 0, 0); +INSERT INTO `conn_main` (`conn_id`, `conn_server`, `conn_auth`, `conn_name`, `conn_ip`, `conn_when_connect`, `conn_when_disconnect`, `conn_client_version`, `conn_script_version`, `conn_game_version`, `conn_status`, `conn_how_disconnect`) VALUES + (183, 4, 0, '', 0, 1613341937, 0, '0.0.0', '1.0', '4', 0, 0); +INSERT INTO `conn_main` (`conn_id`, `conn_server`, `conn_auth`, `conn_name`, `conn_ip`, `conn_when_connect`, `conn_when_disconnect`, `conn_client_version`, `conn_script_version`, `conn_game_version`, `conn_status`, `conn_how_disconnect`) VALUES + (184, 4, 0, '', 0, 1613342240, 0, '0.0.0', '1.0', '4', 0, 0); +INSERT INTO `conn_main` (`conn_id`, `conn_server`, `conn_auth`, `conn_name`, `conn_ip`, `conn_when_connect`, `conn_when_disconnect`, `conn_client_version`, `conn_script_version`, `conn_game_version`, `conn_status`, `conn_how_disconnect`) VALUES + (185, 4, 0, '', 0, 1613342373, 0, '0.0.0', '1.0', '4', 0, 0); +INSERT INTO `conn_main` (`conn_id`, `conn_server`, `conn_auth`, `conn_name`, `conn_ip`, `conn_when_connect`, `conn_when_disconnect`, `conn_client_version`, `conn_script_version`, `conn_game_version`, `conn_status`, `conn_how_disconnect`) VALUES + (186, 4, 0, '', 0, 1613342856, 0, '0.0.0', '1.0', '4', 0, 0); +INSERT INTO `conn_main` (`conn_id`, `conn_server`, `conn_auth`, `conn_name`, `conn_ip`, `conn_when_connect`, `conn_when_disconnect`, `conn_client_version`, `conn_script_version`, `conn_game_version`, `conn_status`, `conn_how_disconnect`) VALUES + (187, 3, 0, '', 0, 1613343788, 0, '0.0.0', '1.0', '9', 0, 0); +INSERT INTO `conn_main` (`conn_id`, `conn_server`, `conn_auth`, `conn_name`, `conn_ip`, `conn_when_connect`, `conn_when_disconnect`, `conn_client_version`, `conn_script_version`, `conn_game_version`, `conn_status`, `conn_how_disconnect`) VALUES + (188, 3, 0, '', 0, 1613343830, 0, '0.0.0', '1.0', '9', 0, 0); +INSERT INTO `conn_main` (`conn_id`, `conn_server`, `conn_auth`, `conn_name`, `conn_ip`, `conn_when_connect`, `conn_when_disconnect`, `conn_client_version`, `conn_script_version`, `conn_game_version`, `conn_status`, `conn_how_disconnect`) VALUES + (189, 3, 0, '', 0, 1613343842, 0, '0.0.0', '1.0', '10', 0, 0); +INSERT INTO `conn_main` (`conn_id`, `conn_server`, `conn_auth`, `conn_name`, `conn_ip`, `conn_when_connect`, `conn_when_disconnect`, `conn_client_version`, `conn_script_version`, `conn_game_version`, `conn_status`, `conn_how_disconnect`) VALUES + (190, 3, 0, '', 0, 1613343933, 0, '0.0.0', '1.0', '10', 0, 0); +INSERT INTO `conn_main` (`conn_id`, `conn_server`, `conn_auth`, `conn_name`, `conn_ip`, `conn_when_connect`, `conn_when_disconnect`, `conn_client_version`, `conn_script_version`, `conn_game_version`, `conn_status`, `conn_how_disconnect`) VALUES + (191, 3, 0, '', 0, 1613343985, 0, '0.0.0', '1.0', '9', 0, 0); +INSERT INTO `conn_main` (`conn_id`, `conn_server`, `conn_auth`, `conn_name`, `conn_ip`, `conn_when_connect`, `conn_when_disconnect`, `conn_client_version`, `conn_script_version`, `conn_game_version`, `conn_status`, `conn_how_disconnect`) VALUES + (192, 3, 0, '', 0, 1613343986, 0, '0.0.0', '1.0', '10', 0, 0); +INSERT INTO `conn_main` (`conn_id`, `conn_server`, `conn_auth`, `conn_name`, `conn_ip`, `conn_when_connect`, `conn_when_disconnect`, `conn_client_version`, `conn_script_version`, `conn_game_version`, `conn_status`, `conn_how_disconnect`) VALUES + (193, 3, 0, '', 0, 1613344127, 0, '0.0.0', '1.0', '9', 0, 0); +INSERT INTO `conn_main` (`conn_id`, `conn_server`, `conn_auth`, `conn_name`, `conn_ip`, `conn_when_connect`, `conn_when_disconnect`, `conn_client_version`, `conn_script_version`, `conn_game_version`, `conn_status`, `conn_how_disconnect`) VALUES + (194, 3, 0, '', 0, 1613344140, 0, '0.0.0', '1.0', '10', 0, 0); +INSERT INTO `conn_main` (`conn_id`, `conn_server`, `conn_auth`, `conn_name`, `conn_ip`, `conn_when_connect`, `conn_when_disconnect`, `conn_client_version`, `conn_script_version`, `conn_game_version`, `conn_status`, `conn_how_disconnect`) VALUES + (195, 3, 0, '', 0, 1613344233, 0, '0.0.0', '1.0', '9', 0, 0); +INSERT INTO `conn_main` (`conn_id`, `conn_server`, `conn_auth`, `conn_name`, `conn_ip`, `conn_when_connect`, `conn_when_disconnect`, `conn_client_version`, `conn_script_version`, `conn_game_version`, `conn_status`, `conn_how_disconnect`) VALUES + (196, 3, 0, '', 0, 1613344577, 0, '0.0.0', '1.0', '9', 0, 0); +INSERT INTO `conn_main` (`conn_id`, `conn_server`, `conn_auth`, `conn_name`, `conn_ip`, `conn_when_connect`, `conn_when_disconnect`, `conn_client_version`, `conn_script_version`, `conn_game_version`, `conn_status`, `conn_how_disconnect`) VALUES + (197, 3, 0, '', 0, 1613344772, 0, '0.0.0', '1.0', '9', 0, 0); +INSERT INTO `conn_main` (`conn_id`, `conn_server`, `conn_auth`, `conn_name`, `conn_ip`, `conn_when_connect`, `conn_when_disconnect`, `conn_client_version`, `conn_script_version`, `conn_game_version`, `conn_status`, `conn_how_disconnect`) VALUES + (198, 3, 0, '', 0, 1613344802, 0, '0.0.0', '1.0', '10', 0, 0); +INSERT INTO `conn_main` (`conn_id`, `conn_server`, `conn_auth`, `conn_name`, `conn_ip`, `conn_when_connect`, `conn_when_disconnect`, `conn_client_version`, `conn_script_version`, `conn_game_version`, `conn_status`, `conn_how_disconnect`) VALUES + (199, 3, 0, '', 0, 1613345071, 0, '0.0.0', '1.0', '10', 0, 0); +INSERT INTO `conn_main` (`conn_id`, `conn_server`, `conn_auth`, `conn_name`, `conn_ip`, `conn_when_connect`, `conn_when_disconnect`, `conn_client_version`, `conn_script_version`, `conn_game_version`, `conn_status`, `conn_how_disconnect`) VALUES + (200, 3, 0, '', 0, 1613345153, 0, '0.0.0', '1.0', '10', 0, 0); +INSERT INTO `conn_main` (`conn_id`, `conn_server`, `conn_auth`, `conn_name`, `conn_ip`, `conn_when_connect`, `conn_when_disconnect`, `conn_client_version`, `conn_script_version`, `conn_game_version`, `conn_status`, `conn_how_disconnect`) VALUES + (201, 3, 0, '', 0, 1613345250, 0, '0.0.0', '1.0', '9', 0, 0); +INSERT INTO `conn_main` (`conn_id`, `conn_server`, `conn_auth`, `conn_name`, `conn_ip`, `conn_when_connect`, `conn_when_disconnect`, `conn_client_version`, `conn_script_version`, `conn_game_version`, `conn_status`, `conn_how_disconnect`) VALUES + (202, 3, 0, '', 0, 1613345372, 0, '0.0.0', '1.0', '10', 0, 0); +INSERT INTO `conn_main` (`conn_id`, `conn_server`, `conn_auth`, `conn_name`, `conn_ip`, `conn_when_connect`, `conn_when_disconnect`, `conn_client_version`, `conn_script_version`, `conn_game_version`, `conn_status`, `conn_how_disconnect`) VALUES + (203, 3, 0, '', 0, 1613345384, 0, '0.0.0', '1.0', '9', 0, 0); +/*!40000 ALTER TABLE `conn_main` ENABLE KEYS */; + +-- Dumping structure for table db24053.error_main +CREATE TABLE IF NOT EXISTS `error_main` ( + `error_id` int(11) NOT NULL AUTO_INCREMENT, + `error_server` int(11) NOT NULL DEFAULT '0', + `error_when_added` int(32) NOT NULL DEFAULT '0', + `error_script_ver` varchar(16) NOT NULL DEFAULT '0.0', + `error_module` int(11) NOT NULL DEFAULT '0', + `error_file` text NOT NULL, + `error_line` int(11) NOT NULL DEFAULT '0', + `error_locals` text NOT NULL, + `error_func` varchar(128) NOT NULL DEFAULT 'Unknown', + PRIMARY KEY (`error_id`) +) ENGINE=InnoDB DEFAULT CHARSET=latin1 COMMENT='Error Reports'; + +-- Dumping data for table db24053.error_main: ~0 rows (approximately) +/*!40000 ALTER TABLE `error_main` DISABLE KEYS */; +/*!40000 ALTER TABLE `error_main` ENABLE KEYS */; + +-- Dumping structure for table db24053.house_main +CREATE TABLE IF NOT EXISTS `house_main` ( + `house_id` int(11) NOT NULL AUTO_INCREMENT, + `house_server` int(11) NOT NULL DEFAULT '0', + `house_description` varchar(64) CHARACTER SET utf8 COLLATE utf8_unicode_ci NOT NULL DEFAULT 'Unnamed', + `house_owner_type` int(11) NOT NULL DEFAULT '0', + `house_owner_id` int(11) NOT NULL DEFAULT '0', + `house_locked` tinyint(1) NOT NULL DEFAULT '0', + `house_buy_price` int(11) NOT NULL DEFAULT '0', + `house_rent_price` int(11) NOT NULL DEFAULT '0', + `house_entrance_pos_x` float NOT NULL DEFAULT '0', + `house_entrance_pos_y` float NOT NULL DEFAULT '0', + `house_entrance_pos_z` float NOT NULL DEFAULT '0', + `house_entrance_rot_z` float NOT NULL DEFAULT '0', + `house_entrance_int` smallint(6) NOT NULL DEFAULT '0', + `house_entrance_vw` int(11) NOT NULL DEFAULT '0', + `house_entrance_pickup` int(11) NOT NULL DEFAULT '0', + `house_entrance_blip` int(11) NOT NULL DEFAULT '-1', + `house_exit_pos_x` float NOT NULL DEFAULT '0', + `house_exit_pos_y` float NOT NULL DEFAULT '0', + `house_exit_pos_z` float NOT NULL DEFAULT '0', + `house_exit_rot_z` float NOT NULL DEFAULT '0', + `house_exit_int` int(11) NOT NULL DEFAULT '0', + `house_exit_vw` int(11) NOT NULL DEFAULT '0', + `house_exit_pickup` int(11) NOT NULL DEFAULT '0', + `house_exit_blip` int(11) NOT NULL DEFAULT '0', + `house_has_interior` tinyint(1) NOT NULL DEFAULT '0', + PRIMARY KEY (`house_id`) USING BTREE, + KEY `house_server` (`house_server`), + KEY `house_owner` (`house_owner_type`,`house_owner_id`), + CONSTRAINT `fk_house_server` FOREIGN KEY (`house_server`) REFERENCES `svr_main` (`svr_id`) ON DELETE CASCADE ON UPDATE CASCADE +) ENGINE=InnoDB AUTO_INCREMENT=2235 DEFAULT CHARSET=latin1 COMMENT='Houses'; + +-- Dumping data for table db24053.house_main: ~2,211 rows (approximately) +/*!40000 ALTER TABLE `house_main` DISABLE KEYS */; +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1, 4, 'Madd Doggs House', 0, 0, 0, 5250000, 0, 1298.55, -798.18, 84.14, 0, 0, 0, 0, -1, 1298.81, -796.66, 1084.01, 0, 5, 101, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (2, 4, 'Small Cottage', 0, 0, 0, 25000, 0, -418.65, -1759.54, 6.21, 0, 0, 0, 0, -1, 244.41, 305.03, 999.15, 0, 1, 102, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (3, 4, 'Mexican Style House', 0, 0, 0, 350000, 0, 657.22, -1652.65, 15.4, 0, 0, 0, 0, -1, 2365.27, -1135.59, 1050.88, 0, 8, 103, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (4, 4, 'Mexican Style House', 0, 0, 0, 350000, 0, 693.76, -1645.79, 4.09, 0, 0, 0, 0, -1, 2365.27, -1135.59, 1050.88, 0, 8, 104, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (5, 4, 'Mexican Style House', 0, 0, 0, 350000, 0, 693.57, -1705.87, 3.81, 0, 0, 0, 0, -1, 2365.27, -1135.59, 1050.88, 0, 8, 105, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (6, 4, 'Mexican Style House', 0, 0, 0, 350000, 0, 766.9, -1606.18, 13.8, 0, 0, 0, 0, -1, 2365.27, -1135.59, 1050.88, 0, 8, 106, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (7, 4, 'Mexican Style House', 0, 0, 0, 350000, 0, 768.07, -1655.99, 5.6, 0, 0, 0, 0, -1, 2365.27, -1135.59, 1050.88, 0, 8, 107, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (8, 4, 'Mexican Style House', 0, 0, 0, 350000, 0, 769.22, -1696.74, 5.15, 0, 0, 0, 0, -1, 2365.27, -1135.59, 1050.88, 0, 8, 108, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (9, 4, 'Mexican Style House', 0, 0, 0, 350000, 0, 769.2, -1745.85, 13.07, 0, 0, 0, 0, -1, 2365.27, -1135.59, 1050.88, 0, 8, 109, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (10, 4, 'Mexican Style House', 0, 0, 0, 350000, 0, 653.58, -1714, 14.76, 0, 0, 0, 0, -1, 2365.27, -1135.59, 1050.88, 0, 8, 110, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (11, 4, 'Mexican Style House', 0, 0, 0, 350000, 0, 1906.04, -1112.94, 26.66, 0, 0, 0, 0, -1, 2365.27, -1135.59, 1050.88, 0, 8, 111, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (12, 4, 'Mexican Style House', 0, 0, 0, 350000, 0, 1939.23, -1114.51, 27.45, 0, 0, 0, 0, -1, 2365.27, -1135.59, 1050.88, 0, 8, 112, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (13, 4, 'Mexican Style House', 0, 0, 0, 350000, 0, 1999.97, -1114.05, 27.12, 0, 0, 0, 0, -1, 2365.27, -1135.59, 1050.88, 0, 8, 113, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (14, 4, 'Mexican Style House', 0, 0, 0, 350000, 0, 2022.92, -1120.26, 26.42, 0, 0, 0, 0, -1, 2365.27, -1135.59, 1050.88, 0, 8, 114, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (15, 4, 'Mexican Style House', 0, 0, 0, 350000, 0, 2095.33, -1145.13, 26.59, 0, 0, 0, 0, -1, 2365.27, -1135.59, 1050.88, 0, 8, 115, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (16, 4, 'Mexican Style House', 0, 0, 0, 350000, 0, 2092.24, -1166.36, 26.58, 0, 0, 0, 0, -1, 2365.27, -1135.59, 1050.88, 0, 8, 116, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (17, 4, 'Mexican Style House', 0, 0, 0, 350000, 0, 793.99, -1707.45, 14.03, 0, 0, 0, 0, -1, 2365.27, -1135.59, 1050.88, 0, 8, 117, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (18, 4, 'Simple House', 0, 0, 0, 65000, 0, 1886.26, -1113.66, 26.27, 0, 0, 0, 0, -1, 260.77, 1237.26, 1084.25, 0, 9, 118, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (19, 4, 'Simple House', 0, 0, 0, 65000, 100, 1921.35, -1115.18, 27.08, 0, 0, 0, 0, -1, 260.77, 1237.26, 1084.25, 0, 9, 119, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (20, 4, 'Simple House', 0, 0, 0, 65000, 400, 1955.4, -1115.35, 27.83, 0, 0, 0, 0, -1, 260.77, 1237.26, 1084.25, 0, 9, 120, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (21, 4, 'Simple House', 0, 0, 0, 65000, 0, 2045.5, -1116.63, 26.36, 0, 0, 0, 0, -1, 260.77, 1237.26, 1084.25, 0, 9, 121, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (22, 4, 'Simple House', 0, 0, 0, 65000, 650, 2093.99, -1122.78, 27.68, 0, 0, 0, 0, -1, 260.77, 1237.26, 1084.25, 0, 9, 122, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (23, 4, 'Simple House', 0, 0, 0, 65000, 0, 2091.67, -1184.45, 27.05, 0, 0, 0, 0, -1, 260.77, 1237.26, 1084.25, 0, 9, 123, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (24, 4, 'Simple House', 0, 0, 0, 65000, 0, 769.05, -1726.35, 13.43, 0, 0, 0, 0, -1, 260.77, 1237.26, 1084.25, 0, 9, 124, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (25, 4, 'Simple House', 0, 0, 0, 65000, 0, 794.89, -1691.99, 14.46, 0, 0, 0, 0, -1, 260.77, 1237.26, 1084.25, 0, 9, 125, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (26, 4, 'Simple House', 0, 0, 0, 65000, 0, 2495.41, -1690.94, 14.76, 0, 0, 0, 0, -1, 2495.97, -1692.08, 1014.74, 0, 3, 126, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (28, 4, 'Simple House', 0, 0, 0, 800000, 0, 2126.68, -1320.68, 26.62, 0, 0, 0, 0, -1, 234.16, 1064.23, 1084.21, 0, 6, 128, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (29, 4, '2 Bedroom House', 0, 0, 0, 100000, 0, 2091.05, -1278.14, 26.17, 0, 0, 0, 0, -1, 2196.53, -1204.18, 1049.02, 0, 6, 129, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (30, 4, '2 Bedroom House', 0, 0, 0, 100000, 0, 2191.64, -1275.82, 25.15, 0, 0, 0, 0, -1, 2196.53, -1204.18, 1049.02, 0, 6, 130, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (31, 4, '2 Bedroom House', 0, 0, 0, 100000, 5, 2229.66, -1241.52, 25.65, 0, 0, 0, 0, -1, 2196.53, -1204.18, 1049.02, 0, 6, 131, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (32, 4, 'Big Living Style', 0, 0, 0, 80000, 0, 2100.94, -1321.8, 25.95, 0, 0, 0, 0, -1, 2269.92, -1210.37, 1047.56, 0, 10, 132, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (33, 4, 'Big Living Style', 0, 0, 0, 80000, 0, 2132.32, -1280.12, 25.89, 0, 0, 0, 0, -1, 2269.92, -1210.37, 1047.56, 0, 10, 133, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (34, 4, 'Big Living Style', 0, 0, 0, 80000, 0, 2250.2, -1280.32, 25.47, 0, 0, 0, 0, -1, 2269.92, -1210.37, 1047.56, 0, 10, 134, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (35, 4, 'Big Living Style', 0, 0, 0, 80000, 1, 2249.92, -1238.89, 25.89, 0, 0, 0, 0, -1, 2269.92, -1210.37, 1047.56, 0, 10, 135, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (36, 4, 'Big Living Style', 0, 0, 0, 80000, 0, 2153.82, -1243.53, 25.36, 0, 0, 0, 0, -1, 2269.92, -1210.37, 1047.56, 0, 10, 136, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (37, 4, 'Big Living Style', 0, 0, 0, 80000, 0, 2110.99, -1244.32, 25.85, 0, 0, 0, 0, -1, 2269.92, -1210.37, 1047.56, 0, 10, 137, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (38, 4, 'Small House', 0, 0, 0, 45000, 5000, 2148.55, -1319.82, 25.74, 0, 0, 0, 0, -1, 2282.9, -1139.99, 1050.89, 0, 11, 138, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (39, 4, 'Small House', 0, 0, 0, 45000, 0, 2150.21, -1285.45, 24.19, 0, 0, 0, 0, -1, 2282.9, -1139.99, 1050.89, 0, 11, 139, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (40, 4, 'Small House', 0, 0, 0, 45000, 0, 2230.1, -1280.56, 25.36, 0, 0, 0, 0, -1, 2282.9, -1139.99, 1050.89, 0, 11, 140, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (41, 4, 'Small House', 0, 0, 0, 45000, 0, 2209.74, -1239.99, 24.14, 0, 0, 0, 0, -1, 2282.9, -1139.99, 1050.89, 0, 11, 141, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (42, 4, 'Minor Manor', 0, 0, 0, 50000, 0, 2133.39, -1232.84, 24.42, 0, 0, 0, 0, -1, 2333.12, -1077.13, 1049.02, 0, 6, 142, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (43, 4, 'Minor Manor', 0, 0, 0, 800000, 0, 2148.73, -1484.85, 26.62, 0, 0, 0, 0, -1, 234.16, 1064.23, 1084.21, 0, 6, 143, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (44, 4, 'Simple House', 0, 0, 0, 65000, 0, 2023.31, -1053.15, 25.59, 0, 0, 0, 0, -1, 260.77, 1237.26, 1084.25, 0, 9, 144, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (45, 4, 'Simple House', 0, 0, 0, 65000, 0, 2036.12, -1059.42, 25.65, 0, 0, 0, 0, -1, 260.77, 1237.26, 1084.25, 0, 9, 145, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (46, 4, 'Simple House', 0, 0, 0, 65000, 0, 2050.9, -1065.83, 25.78, 0, 0, 0, 0, -1, 260.77, 1237.26, 1084.25, 0, 9, 146, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (47, 4, 'Small House', 0, 0, 0, 45000, 0, 2150.76, -1400.63, 25.79, 0, 0, 0, 0, -1, 2282.9, -1139.99, 1050.89, 0, 11, 147, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (48, 4, 'Small House', 0, 0, 0, 45000, 0, 2151.7, -1446.33, 25.77, 0, 0, 0, 0, -1, 2282.9, -1139.99, 1050.89, 0, 11, 148, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (49, 4, 'Small House', 0, 0, 0, 45000, 0, 2190.69, -1487.68, 25.77, 0, 0, 0, 0, -1, 2282.9, -1139.99, 1050.89, 0, 11, 149, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (50, 4, 'Small House', 0, 0, 0, 45000, 100, 2196.48, -1404.19, 25.61, 0, 0, 0, 0, -1, 2282.9, -1139.99, 1050.89, 0, 11, 150, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (51, 4, 'Small House', 0, 0, 0, 45000, 200, 2147.69, -1366.65, 25.64, 0, 0, 0, 0, -1, 2282.9, -1139.99, 1050.89, 0, 11, 151, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (52, 4, '2 Bedroom House', 0, 0, 0, 100000, 200, 2188.83, -1419.29, 26.15, 0, 0, 0, 0, -1, 2196.53, -1204.18, 1049.02, 0, 6, 152, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (53, 4, 'Big Living Style', 0, 0, 0, 80000, 1500, 2150.8, -1419.01, 25.92, 0, 0, 0, 0, -1, 2269.92, -1210.37, 1047.56, 0, 10, 153, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (54, 4, 'Big Living Style', 0, 0, 0, 80000, 0, 2190.55, -1470.42, 25.91, 0, 0, 0, 0, -1, 2269.92, -1210.37, 1047.56, 0, 10, 154, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (55, 4, 'Cheap Stuff', 0, 0, 0, 35000, 0, 2149.5, -1433.73, 25.94, 0, 0, 0, 0, -1, 327.91, 1477.79, 1084.43, 0, 15, 155, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (56, 4, 'Cheap Stuff', 0, 0, 0, 25000, 0, 2373.97, -1138.92, 29.05, 0, 0, 0, 0, -1, -68.85, 1351.31, 1080.21, 0, 6, 156, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (57, 4, 'Cheap Stuff', 0, 0, 0, 35000, 0, 2488.07, -1135.61, 39.43, 0, 0, 0, 0, -1, 327.91, 1477.79, 1084.43, 0, 15, 157, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (58, 4, '2 Bedroom House', 0, 0, 0, 100000, 0, 2394.96, -1133.67, 30.71, 0, 0, 0, 0, -1, 2196.53, -1204.18, 1049.02, 0, 6, 158, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (59, 4, 'Hallway House', 0, 0, 0, 70000, 0, 2191.74, -1239.03, 24.15, 0, 0, 0, 0, -1, 260.99, 1284.29, 1080.25, 0, 4, 159, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (60, 4, 'Hallway House', 0, 0, 0, 70000, 0, 2090.73, -1234.89, 25.68, 0, 0, 0, 0, -1, 260.99, 1284.29, 1080.25, 0, 4, 160, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (61, 4, 'Hallway House', 0, 0, 0, 70000, 100, 2207.91, -1281.05, 24.79, 0, 0, 0, 0, -1, 260.99, 1284.29, 1080.25, 0, 4, 161, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (62, 4, 'Hallway House', 0, 0, 0, 70000, 0, 2202.75, -1363.93, 25.86, 0, 0, 0, 0, -1, 260.99, 1284.29, 1080.25, 0, 4, 162, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (63, 4, 'Hallway House', 0, 0, 0, 70000, 0, 2129.66, -1361.94, 25.8, 0, 0, 0, 0, -1, 260.99, 1284.29, 1080.25, 0, 4, 163, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (64, 4, 'Hallway House', 0, 0, 0, 70000, 0, 2146.49, -1470.47, 25.71, 0, 0, 0, 0, -1, 260.99, 1284.29, 1080.25, 0, 4, 164, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (65, 4, 'Hallway House', 0, 0, 0, 70000, 100, 2194.53, -1442.93, 25.74, 0, 0, 0, 0, -1, 260.99, 1284.29, 1080.25, 0, 4, 165, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (66, 4, 'Hallway House', 0, 0, 0, 70000, 0, 2230.44, -1396.88, 24.24, 0, 0, 0, 0, -1, 260.99, 1284.29, 1080.25, 0, 4, 166, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (67, 4, 'Hallway House', 0, 0, 0, 70000, 0, 2243.47, -1396.96, 24.24, 0, 0, 0, 0, -1, 260.99, 1284.29, 1080.25, 0, 4, 167, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (68, 4, 'Hallway House', 0, 0, 0, 70000, 0, 2256.46, -1396.92, 24.24, 0, 0, 0, 0, -1, 260.99, 1284.29, 1080.25, 0, 4, 168, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (69, 4, 'Hallway House', 0, 0, 0, 70000, 0, 2263.89, -1469.58, 24.04, 0, 0, 0, 0, -1, 260.99, 1284.29, 1080.25, 0, 4, 169, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (70, 4, 'Hallway House', 0, 0, 0, 70000, 0, 2247.69, -1469.54, 24.14, 0, 0, 0, 0, -1, 260.99, 1284.29, 1080.25, 0, 4, 170, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (71, 4, 'Hallway House', 0, 0, 0, 70000, 100, 2232.56, -1469.54, 24.25, 0, 0, 0, 0, -1, 260.99, 1284.29, 1080.25, 0, 4, 171, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (72, 4, 'Hallway House', 0, 0, 0, 70000, 0, 2510.35, -1132.66, 41.29, 0, 0, 0, 0, -1, 260.99, 1284.29, 1080.25, 0, 4, 172, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (73, 4, 'Small House', 0, 0, 0, 45000, 0, 2185.15, -1364, 25.82, 0, 0, 0, 0, -1, 2282.9, -1139.99, 1050.89, 0, 11, 173, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (74, 4, 'Light Living', 0, 0, 0, 48000, 0, 2061.06, -1075.35, 25.68, 0, 0, 0, 0, -1, 2218.35, -1076.26, 1050.48, 0, 1, 174, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (75, 4, 'House', 0, 0, 0, 10500, 500, 1959.58, -1070.07, 24.79, 0, 0, 0, 0, -1, 243.98, 304.98, 999.14, 0, 1, 175, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (76, 4, 'House', 0, 0, 0, 10500, 0, 1954.38, -1074.93, 24.79, 0, 0, 0, 0, -1, 243.98, 304.98, 999.14, 0, 1, 176, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (77, 4, 'House', 0, 0, 0, 10500, 0, 1934.04, -1071.51, 24.41, 0, 0, 0, 0, -1, 243.98, 304.98, 999.14, 0, 1, 177, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (78, 4, 'House', 0, 0, 0, 10500, 0, 1939.27, -1066.39, 24.41, 0, 0, 0, 0, -1, 243.98, 304.98, 999.14, 0, 1, 178, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (79, 4, 'House', 0, 0, 0, 10500, 0, 1916.88, -1064.77, 24.12, 0, 0, 0, 0, -1, 243.98, 304.98, 999.14, 0, 1, 179, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (80, 4, 'House', 0, 0, 0, 10500, 0, 1912.61, -1070.55, 24.23, 0, 0, 0, 0, -1, 243.98, 304.98, 999.14, 0, 1, 180, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (81, 4, 'House', 0, 0, 0, 10500, 500, 1896.04, -1064.84, 23.93, 0, 0, 0, 0, -1, 243.98, 304.98, 999.14, 0, 1, 181, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (82, 4, 'House', 0, 0, 0, 10500, 0, 1891.77, -1070.53, 23.93, 0, 0, 0, 0, -1, 243.98, 304.98, 999.14, 0, 1, 182, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (83, 4, 'Light Living', 0, 0, 0, 48000, 5000, 2077.3, -1056.98, 31.34, 0, 0, 0, 0, -1, 2218.35, -1076.26, 1050.48, 0, 1, 183, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (84, 4, 'House', 0, 0, 0, 80000, 0, 2157.15, -1072.39, 40.49, 0, 0, 0, 0, -1, 2237.51, -1081.64, 1049.02, 0, 2, 184, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (85, 4, 'House', 0, 0, 0, 80000, 1000, 2188.76, -1081.51, 43.83, 0, 0, 0, 0, -1, 2237.51, -1081.64, 1049.02, 0, 2, 185, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (86, 4, 'House', 0, 0, 0, 80000, 0, 2207.5, -1100.43, 31.55, 0, 0, 0, 0, -1, 2237.51, -1081.64, 1049.02, 0, 2, 186, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (87, 4, 'House', 0, 0, 0, 1000, 0, 2213.22, -1000.31, 68.23, 0, 0, 0, 0, -1, 140.23, 1366, 1083.85, 0, 5, 187, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (88, 4, 'Little Apartment', 0, 0, 0, 50000, 0, 1283.54, -897.85, 42.87, 0, 0, 0, 0, -1, 328.49, 1480.59, 1084.45, 0, 15, 188, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (89, 4, 'Little Apartment', 0, 0, 0, 50000, 0, 1291.02, -896.89, 42.88, 0, 0, 0, 0, -1, 328.49, 1480.59, 1084.45, 0, 15, 189, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (90, 4, 'Little Apartment', 0, 0, 0, 50000, 0, 1291.02, -896.86, 46.62, 0, 0, 0, 0, -1, 328.49, 1480.59, 1084.45, 0, 15, 190, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (91, 4, 'Little Apartment', 0, 0, 0, 50000, 40, 1283.53, -897.82, 46.62, 0, 0, 0, 0, -1, 328.49, 1480.59, 1084.45, 0, 15, 191, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (92, 4, 'Little Apartment', 0, 0, 0, 50000, 0, 1291.82, -903.07, 46.63, 0, 0, 0, 0, -1, 328.49, 1480.59, 1084.45, 0, 15, 192, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (93, 4, 'Little Apartment', 0, 0, 0, 50000, 100, 1284.36, -903.98, 46.63, 0, 0, 0, 0, -1, 328.49, 1480.59, 1084.45, 0, 15, 193, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (94, 4, 'Little Apartment', 0, 0, 0, 50000, 0, 1284.34, -904.03, 42.88, 0, 0, 0, 0, -1, 328.49, 1480.59, 1084.45, 0, 15, 194, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (95, 4, 'Little Apartment', 0, 0, 0, 50000, 0, 1291.83, -903.03, 42.88, 0, 0, 0, 0, -1, 328.49, 1480.59, 1084.45, 0, 15, 195, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (96, 4, 'Little Apartment', 0, 0, 0, 50000, 0, 1288.34, -873.89, 43.06, 0, 0, 0, 0, -1, 328.49, 1480.59, 1084.45, 0, 15, 196, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (97, 4, 'Little Apartment', 0, 0, 0, 50000, 0, 1280.86, -874.85, 42.93, 0, 0, 0, 0, -1, 328.49, 1480.59, 1084.45, 0, 15, 197, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (98, 4, 'Little Apartment', 0, 0, 0, 50000, 0, 1287.53, -867.68, 43.14, 0, 0, 0, 0, -1, 328.49, 1480.59, 1084.45, 0, 15, 198, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (99, 4, 'Little Apartment', 0, 0, 0, 50000, 0, 1280.08, -868.62, 42.92, 0, 0, 0, 0, -1, 328.49, 1480.59, 1084.45, 0, 15, 199, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (100, 4, 'Little Apartment', 0, 0, 0, 50000, 5000, 1287.53, -867.74, 46.83, 0, 0, 0, 0, -1, 328.49, 1480.59, 1084.45, 0, 15, 200, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (101, 4, 'Little Apartment', 0, 0, 0, 50000, 250, 1280.04, -868.61, 46.83, 0, 0, 0, 0, -1, 328.49, 1480.59, 1084.45, 0, 15, 201, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (102, 4, 'Little Apartment', 0, 0, 0, 50000, 0, 1288.33, -873.82, 46.84, 0, 0, 0, 0, -1, 328.49, 1480.59, 1084.45, 0, 15, 202, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (103, 4, 'Little Apartment', 0, 0, 0, 50000, 0, 1280.86, -874.86, 46.84, 0, 0, 0, 0, -1, 328.49, 1480.59, 1084.45, 0, 15, 203, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (104, 4, 'Little Apartment', 0, 0, 0, 50000, 0, 1249.61, -877.3, 42.88, 0, 0, 0, 0, -1, 328.49, 1480.59, 1084.45, 0, 15, 204, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (105, 4, 'Little Apartment', 0, 0, 0, 50000, 0, 1242.11, -878.23, 42.87, 0, 0, 0, 0, -1, 328.49, 1480.59, 1084.45, 0, 15, 205, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (106, 4, 'Little Apartment', 0, 0, 0, 50000, 0, 1248.8, -871.14, 42.88, 0, 0, 0, 0, -1, 328.49, 1480.59, 1084.45, 0, 15, 206, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (107, 4, 'Little Apartment', 0, 0, 0, 50000, 0, 1241.31, -872.09, 42.88, 0, 0, 0, 0, -1, 328.49, 1480.59, 1084.45, 0, 15, 207, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (108, 4, 'Little Apartment', 0, 0, 0, 50000, 0, 1248.8, -871.15, 46.63, 0, 0, 0, 0, -1, 328.49, 1480.59, 1084.45, 0, 15, 208, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (109, 4, 'Little Apartment', 0, 0, 0, 50000, 0, 1241.3, -872.06, 46.63, 0, 0, 0, 0, -1, 328.49, 1480.59, 1084.45, 0, 15, 209, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (110, 4, 'Little Apartment', 0, 0, 0, 50000, 0, 1249.61, -877.28, 46.64, 0, 0, 0, 0, -1, 328.49, 1480.59, 1084.45, 0, 15, 210, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (111, 4, 'Little Apartment', 0, 0, 0, 50000, 0, 1242.12, -878.22, 46.64, 0, 0, 0, 0, -1, 328.49, 1480.59, 1084.45, 0, 15, 211, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (112, 4, 'Little Apartment', 0, 0, 0, 50000, 0, 1252.88, -901.87, 42.88, 0, 0, 0, 0, -1, 328.49, 1480.59, 1084.45, 0, 15, 212, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (113, 4, 'Little Apartment', 0, 0, 0, 50000, 0, 1245.4, -902.83, 42.88, 0, 0, 0, 0, -1, 328.49, 1480.59, 1084.45, 0, 15, 213, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (114, 4, 'Little Apartment', 0, 0, 0, 50000, 0, 1253.7, -908.06, 42.88, 0, 0, 0, 0, -1, 328.49, 1480.59, 1084.45, 0, 15, 214, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (115, 4, 'Little Apartment', 0, 0, 0, 50000, 0, 1246.24, -909.03, 42.88, 0, 0, 0, 0, -1, 328.49, 1480.59, 1084.45, 0, 15, 215, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (116, 4, 'Little Apartment', 0, 0, 0, 50000, 0, 1246.21, -908.98, 46.6, 0, 0, 0, 0, -1, 328.49, 1480.59, 1084.45, 0, 15, 216, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (117, 4, 'Little Apartment', 0, 0, 0, 50000, 0, 1253.71, -908.1, 46.6, 0, 0, 0, 0, -1, 328.49, 1480.59, 1084.45, 0, 15, 217, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (118, 4, 'Little Apartment', 0, 0, 0, 50000, 0, 1245.4, -902.8, 46.59, 0, 0, 0, 0, -1, 328.49, 1480.59, 1084.45, 0, 15, 218, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (119, 4, 'Little Apartment', 0, 0, 0, 50000, 0, 1252.89, -901.88, 46.59, 0, 0, 0, 0, -1, 328.49, 1480.59, 1084.45, 0, 15, 219, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (120, 4, 'Major Manor', 0, 0, 0, 50000, 0, 1111.5, -976.3, 42.76, 0, 0, 0, 0, -1, 2333.12, -1077.13, 1049.02, 0, 6, 220, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (121, 4, 'Major Manor', 0, 0, 0, 3000000, 0, 1496.99, -687.89, 95.56, 0, 0, 0, 0, -1, 225.7, 1021.44, 1084.01, 0, 7, 221, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (122, 4, 'Major Manor', 0, 0, 0, 3000000, 0, 980.47, -677.26, 121.97, 0, 0, 0, 0, -1, 225.7, 1021.44, 1084.01, 0, 7, 222, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (123, 4, 'Major Manor', 0, 0, 0, 3000000, 0, 251.43, -1220.21, 76.1, 0, 0, 0, 0, -1, 225.7, 1021.44, 1084.01, 0, 7, 223, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (124, 4, 'Fancy Mansion', 0, 0, 0, 1800000, 0, 253.18, -1270.01, 74.42, 0, 0, 0, 0, -1, 140.23, 1366, 1083.85, 0, 5, 224, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (125, 4, 'Major Manor', 0, 0, 0, 1800000, 0, 300.25, -1154.46, 81.39, 0, 0, 0, 0, -1, 140.23, 1366, 1083.85, 0, 5, 225, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (126, 4, 'Major Manor', 0, 0, 0, 1800000, 0, 189.63, -1308.16, 70.24, 0, 0, 0, 0, -1, 140.23, 1366, 1083.85, 0, 5, 226, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (127, 4, 'Major Manor', 0, 0, 0, 3000000, 0, 1122.7, -2036.98, 69.89, 0, 0, 0, 0, -1, 1298.8, -796.9, 1084.01, 0, 5, 227, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (128, 4, 'Major Manor', 0, 0, 0, 800000, 5000, 1981.07, -1682.85, 17.05, 0, 0, 0, 0, -1, 234.16, 1064.23, 1084.21, 0, 6, 228, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (129, 4, 'Minor Manor', 0, 0, 0, 800000, 0, 1980.37, -1718.91, 17.03, 0, 0, 0, 0, -1, 234.16, 1064.23, 1084.21, 0, 6, 229, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (130, 4, 'Idlewood House', 0, 0, 0, 100000, 0, 2015.34, -1732.57, 14.23, 0, 0, 0, 0, -1, 2196.53, -1204.18, 1049.02, 0, 6, 230, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (131, 4, '2 Bedroom House', 0, 0, 0, 100000, 0, 2017.97, -1703.38, 14.23, 0, 0, 0, 0, -1, 2196.53, -1204.18, 1049.02, 0, 6, 231, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (132, 4, 'Small House', 0, 0, 0, 45000, 0, 2067.42, -1731.62, 13.87, 0, 0, 0, 0, -1, 2282.9, -1139.99, 1050.89, 0, 11, 232, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (133, 4, 'Small House', 0, 0, 0, 45000, 0, 2068.06, -1628.89, 13.87, 0, 0, 0, 0, -1, 2282.9, -1139.99, 1050.89, 0, 11, 233, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (134, 4, 'Small House', 0, 0, 0, 45000, 0, 2016.21, -1641.67, 13.78, 0, 0, 0, 0, -1, 2282.9, -1139.99, 1050.89, 0, 11, 234, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (135, 4, 'Cheap Stuff', 0, 0, 0, 35000, 5000, 2015.82, -1716.99, 13.97, 0, 0, 0, 0, -1, 327.91, 1477.79, 1084.43, 0, 15, 235, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (136, 4, 'Cheap Stuff', 0, 0, 0, 35000, 0, 2066.97, -1656.47, 14.07, 0, 0, 0, 0, -1, 327.91, 1477.79, 1084.43, 0, 15, 236, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (137, 4, 'Cheap Stuff', 0, 0, 0, 35000, 0, 2191.58, -1455.88, 25.79, 0, 0, 0, 0, -1, 327.91, 1477.79, 1084.43, 0, 15, 237, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (138, 4, 'Hallway House', 0, 0, 0, 70000, 0, 2067.74, -1643.74, 13.8, 0, 0, 0, 0, -1, 260.99, 1284.29, 1080.25, 0, 4, 238, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (139, 4, 'Hallway House', 0, 0, 0, 70000, 0, 2066.42, -1717.06, 13.8, 0, 0, 0, 0, -1, 260.99, 1284.29, 1080.25, 0, 4, 239, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (140, 4, 'Hallway House', 0, 0, 0, 70000, 0, 2013.31, -1656.37, 13.8, 0, 0, 0, 0, -1, 260.99, 1284.29, 1080.25, 0, 4, 240, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (141, 4, 'Hallway House', 0, 0, 0, 70000, 0, 2017.86, -1629.93, 13.71, 0, 0, 0, 0, -1, 260.99, 1284.29, 1080.25, 0, 4, 241, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (142, 4, 'Low Light Living', 0, 0, 0, 70000, 1, 2065.24, -1703.52, 14.14, 0, 0, 0, 0, -1, -42.58, 1405.59, 1084.42, 0, 8, 242, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (143, 4, 'Fancy Apartment', 0, 0, 0, 20000, 1500, 1969.35, -1705.42, 15.96, 0, 0, 0, 0, -1, 2218.04, -1076.24, 1050.48, 0, 1, 243, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (144, 4, 'Fancy Apartment', 0, 0, 0, 20000, 2000, 1973.28, -1705.26, 15.96, 0, 0, 0, 0, -1, 2218.04, -1076.24, 1050.48, 0, 1, 244, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (145, 4, 'Fancy Apartment', 0, 0, 0, 20000, 100, 1969.4, -1654.77, 15.96, 0, 0, 0, 0, -1, 2218.04, -1076.24, 1050.48, 0, 1, 245, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (146, 4, 'Fancy Apartment', 0, 0, 0, 20000, 0, 1973.36, -1654.67, 15.96, 0, 0, 0, 0, -1, 2218.04, -1076.24, 1050.48, 0, 1, 246, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (147, 4, 'Light Apartment', 0, 0, 0, 20000, 0, 1967.48, -1633.76, 15.96, 0, 0, 0, 0, -1, 2233.68, -1115.06, 1050.88, 0, 5, 247, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (148, 4, 'Light Apartment', 0, 0, 0, 20000, 0, 1972.28, -1633.71, 15.96, 0, 0, 0, 0, -1, 2233.68, -1115.06, 1050.88, 0, 5, 248, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (149, 4, 'Light Apartment', 0, 0, 0, 20000, 50, 1976.04, -1634.06, 16.21, 0, 0, 0, 0, -1, 2233.68, -1115.06, 1050.88, 0, 5, 249, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (150, 4, 'Light Apartment', 0, 0, 0, 20000, 1, 1967.56, -1633.71, 18.56, 0, 0, 0, 0, -1, 2233.68, -1115.06, 1050.88, 0, 5, 250, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (151, 4, 'Light Apartment', 0, 0, 0, 20000, 0, 1972.32, -1633.71, 18.56, 0, 0, 0, 0, -1, 2233.68, -1115.06, 1050.88, 0, 5, 251, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (152, 4, 'Light Apartment', 0, 0, 0, 20000, 50, 1976.13, -1634.05, 18.56, 0, 0, 0, 0, -1, 2233.68, -1115.06, 1050.88, 0, 5, 252, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (153, 4, 'Light Apartment', 0, 0, 0, 20000, 0, 1969.98, -1671.4, 15.96, 0, 0, 0, 0, -1, 2233.68, -1115.06, 1050.88, 0, 5, 253, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (154, 4, 'Light Apartment', 0, 0, 0, 20000, 100, 1974.85, -1671.26, 15.96, 0, 0, 0, 0, -1, 2233.68, -1115.06, 1050.88, 0, 5, 254, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (155, 4, 'Light Apartment', 0, 0, 0, 20000, 5, 1978.75, -1671.54, 16.18, 0, 0, 0, 0, -1, 2233.68, -1115.06, 1050.88, 0, 5, 255, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (156, 4, 'Light Apartment', 0, 0, 0, 20000, 0, 1970.06, -1671.19, 18.54, 0, 0, 0, 0, -1, 2233.68, -1115.06, 1050.88, 0, 5, 256, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (157, 4, 'Light Apartment', 0, 0, 0, 20000, 0, 1974.86, -1671.2, 18.54, 0, 0, 0, 0, -1, 2233.68, -1115.06, 1050.88, 0, 5, 257, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (158, 4, 'Light Apartment', 0, 0, 0, 20000, 0, 1978.74, -1671.51, 18.54, 0, 0, 0, 0, -1, 2233.68, -1115.06, 1050.88, 0, 5, 258, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (159, 4, 'House Ghetto LS Small', 0, 0, 0, 10000, 0, 2082.44, -1085.14, 25.69, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 259, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (160, 4, 'House Ghetto LS Small', 0, 0, 0, 10000, 10, 2075.29, -1081.9, 25.68, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 260, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (161, 4, 'Apartment LS Small', 0, 0, 0, 20000, 500, 2140.68, -1082.55, 25.03, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 261, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (162, 4, 'Apartment LS Small', 0, 0, 0, 20000, 1000, 2145.24, -1084.66, 25.03, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 262, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (163, 4, 'Ghetto Project Apartment LS Small', 0, 0, 0, 2000, 1, 2334.6, -1203.99, 27.98, 0, 0, 0, 0, -1, 243.72, 304.97, 999.14, 0, 1, 263, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (164, 4, 'Ghetto Project Apartment LS Small', 0, 0, 0, 2000, 0, 2324.33, -1218.84, 27.98, 0, 0, 0, 0, -1, 243.72, 304.97, 999.14, 0, 1, 264, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (165, 4, 'Ghetto Project Apartment LS Small', 0, 0, 0, 2000, 0, 2334.65, -1234.66, 27.98, 0, 0, 0, 0, -1, 243.72, 304.97, 999.14, 0, 1, 265, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (166, 4, 'Ghetto Project Apartment LS Small', 0, 0, 0, 2000, 0, 2324.47, -1249.51, 27.98, 0, 0, 0, 0, -1, 243.72, 304.97, 999.14, 0, 1, 266, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (167, 4, 'Ghetto Project Apartment LS Small', 0, 0, 0, 2000, 0, 2334.7, -1266.12, 27.97, 0, 0, 0, 0, -1, 243.72, 304.97, 999.14, 0, 1, 267, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (168, 4, 'Ghetto Project Apartment LS Small', 0, 0, 0, 2000, 0, 2324.44, -1280.97, 27.98, 0, 0, 0, 0, -1, 243.72, 304.97, 999.14, 0, 1, 268, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (169, 4, 'House Ghetto LS Small', 0, 0, 0, 10000, 0, 2427.38, -1135.77, 34.71, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 269, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (170, 4, 'House Ghetto LS Small', 0, 0, 0, 10000, 0, 2467.56, -1200.41, 36.81, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 270, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (171, 4, 'House Ghetto LS Small', 0, 0, 0, 10000, 0, 2492.17, -1239.01, 37.9, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 271, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (172, 4, 'House Ghetto LS Small', 0, 0, 0, 10000, 0, 2494.1, -1224.25, 37.9, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 272, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (173, 4, 'House Ghetto LS Small', 0, 0, 0, 10000, 0, 2472.9, -1238.12, 32.57, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 273, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (174, 4, 'House Ghetto LS Small', 0, 0, 0, 10000, 0, 2474.9, -1223.36, 32.57, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 274, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (175, 4, 'House Ghetto LS Small', 0, 0, 0, 10000, 5000, 2469.18, -1278.36, 30.36, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 275, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (176, 4, 'House Ghetto LS Small', 0, 0, 0, 10000, 0, 2470.37, -1295.52, 30.23, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 276, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (177, 4, 'House Ghetto LS Small', 0, 0, 0, 10000, 5, 2434.8, -1289.29, 25.35, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 277, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (178, 4, 'Medium House Ghetto LS', 0, 0, 0, 12000, 0, 2433.94, -1303.35, 25.32, 0, 0, 0, 0, -1, 328.13, 1477.9, 1084.43, 0, 15, 278, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (179, 4, 'Medium House Ghetto LS', 0, 0, 0, 12000, 0, 2433.93, -1320.68, 25.32, 0, 0, 0, 0, -1, 328.13, 1477.9, 1084.43, 0, 15, 279, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (180, 4, 'Medium House Ghetto LS', 0, 0, 0, 12000, 0, 2439.59, -1338.72, 24.1, 0, 0, 0, 0, -1, 328.13, 1477.9, 1084.43, 0, 15, 280, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (181, 4, 'Medium House Ghetto LS', 0, 0, 0, 12000, 0, 2439.59, -1357.14, 24.1, 0, 0, 0, 0, -1, 328.13, 1477.9, 1084.43, 0, 15, 281, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (182, 4, 'Normal Size House In SF', 0, 0, 0, 85000, 0, -2789.59, -181.41, 10.06, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 282, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (183, 4, 'Medium House Ghetto LS', 0, 0, 0, 12000, 500, 2421.23, -1277.2, 24.76, 0, 0, 0, 0, -1, 328.13, 1477.9, 1084.43, 0, 15, 283, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (184, 4, 'Medium House Ghetto LS', 0, 0, 0, 12000, 0, 2420.02, -1287.25, 25.35, 0, 0, 0, 0, -1, 328.13, 1477.9, 1084.43, 0, 15, 284, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (185, 4, 'Medium House Ghetto LS', 0, 0, 0, 12000, 0, 2419.23, -1301.95, 25.57, 0, 0, 0, 0, -1, 328.13, 1477.9, 1084.43, 0, 15, 285, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (186, 4, 'Medium House Ghetto LS', 0, 0, 0, 12000, 0, 2419.23, -1319.22, 25.57, 0, 0, 0, 0, -1, 328.13, 1477.9, 1084.43, 0, 15, 286, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (187, 4, 'Medium House Ghetto LS', 0, 0, 0, 12000, 0, 2424.89, -1336.86, 24.32, 0, 0, 0, 0, -1, 328.13, 1477.9, 1084.43, 0, 15, 287, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (188, 4, 'Medium House Ghetto LS', 0, 0, 0, 12000, 0, 2424.89, -1355.15, 24.32, 0, 0, 0, 0, -1, 328.13, 1477.9, 1084.43, 0, 15, 288, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (189, 4, 'Apartment 2nd Floor In SF', 0, 0, 0, 80000, 0, -2786.77, -175.21, 10.06, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 289, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (190, 4, 'Ghetto Project Apartment LS Small', 0, 0, 0, 2000, 2000, 2487.35, -1398.81, 29.31, 0, 0, 0, 0, -1, 243.72, 304.97, 999.14, 0, 1, 290, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (191, 4, 'Ghetto Project Apartment LS Small', 0, 0, 0, 2000, 0, 2487.3, -1410.34, 29.31, 0, 0, 0, 0, -1, 243.72, 304.97, 999.14, 0, 1, 291, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (192, 4, 'Ghetto Project Apartment LS Small', 0, 0, 0, 2000, 500, 2492.25, -1398.81, 29.31, 0, 0, 0, 0, -1, 243.72, 304.97, 999.14, 0, 1, 292, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (193, 4, 'Ghetto Project Apartment LS Small', 0, 0, 0, 2000, 500, 2495.38, -1398.81, 29.31, 0, 0, 0, 0, -1, 243.72, 304.97, 999.14, 0, 1, 293, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (194, 4, 'Appartment 1st Floor In SF', 0, 0, 0, 80000, 0, -2790.4, -168.27, 7.2, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 294, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (195, 4, 'Ghetto Project Apartment LS Small', 0, 0, 0, 2000, 0, 2495.29, -1410.34, 29.31, 0, 0, 0, 0, -1, 243.72, 304.97, 999.14, 0, 1, 295, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (196, 4, 'Ghetto Project Apartment LS Small', 0, 0, 0, 2000, 0, 2492.18, -1410.34, 29.31, 0, 0, 0, 0, -1, 243.72, 304.97, 999.14, 0, 1, 296, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (197, 4, 'Ghetto Project Apartment LS Small', 0, 0, 0, 2000, 0, 2476.27, -1410.34, 29.31, 0, 0, 0, 0, -1, 243.72, 304.97, 999.14, 0, 1, 297, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (198, 4, 'Ghetto Project Apartment LS Small', 0, 0, 0, 2000, 500, 2473.14, -1410.34, 29.31, 0, 0, 0, 0, -1, 243.72, 304.97, 999.14, 0, 1, 298, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (199, 4, 'Ghetto Project Apartment LS Small', 0, 0, 0, 2000, 1000, 2468.25, -1410.34, 29.31, 0, 0, 0, 0, -1, 243.72, 304.97, 999.14, 0, 1, 299, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (200, 4, 'Normal Size Pink House In SF', 0, 0, 0, 85000, 0, -2791.99, -160.47, 10.05, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 300, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (201, 4, 'Ghetto Project Apartment LS Small', 0, 0, 0, 2000, 0, 2476.4, -1398.81, 29.31, 0, 0, 0, 0, -1, 243.72, 304.97, 999.14, 0, 1, 301, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (202, 4, 'Ghetto Project Apartment LS Small', 0, 0, 0, 2000, 500, 2476.25, -1391.71, 29.31, 0, 0, 0, 0, -1, 243.72, 304.97, 999.14, 0, 1, 302, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (203, 4, 'Ghetto Project Apartment LS Small', 0, 0, 0, 2000, 200, 2473.12, -1391.71, 29.31, 0, 0, 0, 0, -1, 243.72, 304.97, 999.14, 0, 1, 303, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (204, 4, 'Ghetto Project Apartment LS Small', 0, 0, 0, 2000, 0, 2468.3, -1391.71, 29.31, 0, 0, 0, 0, -1, 243.72, 304.97, 999.14, 0, 1, 304, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (205, 4, 'Ghetto Project Apartment LS Small', 0, 0, 0, 2000, 200, 2468.3, -1383.37, 29.31, 0, 0, 0, 0, -1, 243.72, 304.97, 999.14, 0, 1, 305, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (206, 4, 'Ghetto Project Apartment LS Small', 0, 0, 0, 2000, 0, 2473.17, -1383.37, 29.31, 0, 0, 0, 0, -1, 243.72, 304.97, 999.14, 0, 1, 306, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (207, 4, 'Ghetto Project Apartment LS Small', 0, 0, 0, 2000, 1, 2476.42, -1383.37, 29.31, 0, 0, 0, 0, -1, 243.72, 304.97, 999.14, 0, 1, 307, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (208, 4, 'Normal Size Very Light Green House In SF', 0, 0, 0, 55000, 3000, -2792.89, -153.15, 7.6, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 308, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (209, 4, 'Ghetto Project Apartment LS Small', 0, 0, 0, 2000, 200, 2487.38, -1383.38, 29.31, 0, 0, 0, 0, -1, 243.72, 304.97, 999.14, 0, 1, 309, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (210, 4, 'Ghetto Project Apartment LS Small', 0, 0, 0, 2000, 0, 2492.22, -1383.37, 29.31, 0, 0, 0, 0, -1, 243.72, 304.97, 999.14, 0, 1, 310, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (211, 4, 'Ghetto Project Apartment LS Small', 0, 0, 0, 2000, 5000, 2495.4, -1383.37, 29.31, 0, 0, 0, 0, -1, 243.72, 304.97, 999.14, 0, 1, 311, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (212, 4, 'Ghetto Project Apartment LS Small', 0, 0, 0, 2000, 0, 2487.29, -1391.71, 29.31, 0, 0, 0, 0, -1, 243.72, 304.97, 999.14, 0, 1, 312, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (213, 4, 'Ghetto Project Apartment LS Small', 0, 0, 0, 2000, 250, 2492.12, -1391.71, 29.31, 0, 0, 0, 0, -1, 243.72, 304.97, 999.14, 0, 1, 313, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (214, 4, 'Normal Size Blue House In SF', 0, 0, 0, 85000, 0, -2791.86, -145.98, 7.86, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 314, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (215, 4, 'Ghetto Project Apartment LS Small', 0, 0, 0, 2000, 0, 2495.35, -1391.71, 29.31, 0, 0, 0, 0, -1, 243.72, 304.97, 999.14, 0, 1, 315, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (216, 4, 'Ghetto Project Apartment LS Small', 0, 0, 0, 2000, 0, 2495.41, -1417.44, 29.31, 0, 0, 0, 0, -1, 243.72, 304.97, 999.14, 0, 1, 316, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (217, 4, 'Normal Size House In SF', 0, 0, 0, 85000, 0, -2791.99, -134.46, 10.05, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 317, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (218, 4, 'Ghetto Project Apartment LS Small', 0, 0, 0, 2000, 0, 2495.3, -1424.58, 29.02, 0, 0, 0, 0, -1, 243.72, 304.97, 999.14, 0, 1, 318, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (219, 4, 'Ghetto Project Apartment LS Small', 0, 0, 0, 2000, 500, 2492.09, -1424.58, 29.02, 0, 0, 0, 0, -1, 243.72, 304.97, 999.14, 0, 1, 319, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (220, 4, 'Ghetto Project Apartment LS Small', 0, 0, 0, 2000, 0, 2492.27, -1417.44, 29.31, 0, 0, 0, 0, -1, 243.72, 304.97, 999.14, 0, 1, 320, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (221, 4, 'Ghetto Project Apartment LS Small', 0, 0, 0, 2000, 200, 2487.35, -1424.58, 29.02, 0, 0, 0, 0, -1, 243.72, 304.97, 999.14, 0, 1, 321, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (222, 4, 'Ghetto Project Apartment LS Small', 0, 0, 0, 2000, 200, 2487.34, -1417.44, 29.31, 0, 0, 0, 0, -1, 243.72, 304.97, 999.14, 0, 1, 322, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (223, 4, 'Ghetto Project Apartment LS Small', 0, 0, 0, 2000, 50, 2476.25, -1424.58, 29.31, 0, 0, 0, 0, -1, 243.72, 304.97, 999.14, 0, 1, 323, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (224, 4, 'Ghetto Project Apartment LS Small', 0, 0, 0, 2000, 0, 2476.39, -1417.44, 29.31, 0, 0, 0, 0, -1, 243.72, 304.97, 999.14, 0, 1, 324, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (225, 4, 'Ghetto Project Apartment LS Small', 0, 0, 0, 2000, 0, 2473.12, -1417.44, 29.31, 0, 0, 0, 0, -1, 243.72, 304.97, 999.14, 0, 1, 325, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (226, 4, 'Ghetto Project Apartment LS Small', 0, 0, 0, 2000, 0, 2473.09, -1424.57, 29.31, 0, 0, 0, 0, -1, 243.72, 304.97, 999.14, 0, 1, 326, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (227, 4, 'Ghetto Project Apartment LS Small', 0, 0, 0, 2000, 5000, 2468.3, -1424.58, 29.31, 0, 0, 0, 0, -1, 243.72, 304.97, 999.14, 0, 1, 327, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (228, 4, 'Ghetto Project Apartment LS Small', 0, 0, 0, 2000, 200, 2468.34, -1417.45, 29.31, 0, 0, 0, 0, -1, 243.72, 304.97, 999.14, 0, 1, 328, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (229, 4, 'Ghetto Project Apartment LS Small', 0, 0, 0, 2000, 500, 2495.35, -1431.68, 29.02, 0, 0, 0, 0, -1, 243.72, 304.97, 999.14, 0, 1, 329, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (230, 4, 'Ghetto Project Apartment LS Small', 0, 0, 0, 2000, 0, 2492.26, -1431.68, 29.02, 0, 0, 0, 0, -1, 243.72, 304.97, 999.14, 0, 1, 330, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (231, 4, 'Ghetto Project Apartment LS Small', 0, 0, 0, 2000, 100, 2487.3, -1431.68, 29.02, 0, 0, 0, 0, -1, 243.72, 304.97, 999.14, 0, 1, 331, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (232, 4, 'Ghetto Project Apartment LS Small', 0, 0, 0, 2000, 200, 2476.45, -1431.68, 29.31, 0, 0, 0, 0, -1, 243.72, 304.97, 999.14, 0, 1, 332, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (233, 4, 'Normal Size Light Green House In SF', 0, 0, 0, 55000, 500, -2793.14, -126.99, 7.18, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 333, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (234, 4, 'Ghetto Project Apartment LS Small', 0, 0, 0, 2000, 999, 2473.24, -1431.68, 29.31, 0, 0, 0, 0, -1, 243.72, 304.97, 999.14, 0, 1, 334, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (235, 4, 'Ghetto Project Apartment LS Small', 0, 0, 0, 2000, 5000, 2468.35, -1431.68, 29.31, 0, 0, 0, 0, -1, 243.72, 304.97, 999.14, 0, 1, 335, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (236, 4, 'Ghetto Project Apartment LS Small', 0, 0, 0, 2000, 20, 2473.14, -1398.81, 29.31, 0, 0, 0, 0, -1, 243.72, 304.97, 999.14, 0, 1, 336, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (237, 4, 'Ghetto Project Apartment LS Small', 0, 0, 0, 2000, 0, 2468.39, -1398.81, 29.31, 0, 0, 0, 0, -1, 243.72, 304.97, 999.14, 0, 1, 337, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (238, 4, 'Ghetto Project Apartment LS Small', 0, 0, 0, 2000, 0, 2468.32, -1376.27, 29.31, 0, 0, 0, 0, -1, 243.72, 304.97, 999.14, 0, 1, 338, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (239, 4, 'Ghetto Project Apartment LS Small', 0, 0, 0, 2000, 0, 2473.15, -1376.27, 29.31, 0, 0, 0, 0, -1, 243.72, 304.97, 999.14, 0, 1, 339, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (240, 4, 'Ghetto Project Apartment LS Small', 0, 0, 0, 2000, 200, 2476.3, -1376.27, 29.31, 0, 0, 0, 0, -1, 243.72, 304.97, 999.14, 0, 1, 340, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (241, 4, 'Appartment 2nd Floor In SF', 0, 0, 0, 80000, 0, -2786.77, -118.26, 10.06, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 341, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (242, 4, 'Ghetto Project Apartment LS Small', 0, 0, 0, 2000, 0, 2473.17, -1366.2, 29.31, 0, 0, 0, 0, -1, 243.72, 304.97, 999.14, 0, 1, 342, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (243, 4, 'Ghetto Project Apartment LS Small', 0, 0, 0, 2000, 5000, 2468.38, -1366.2, 29.31, 0, 0, 0, 0, -1, 243.72, 304.97, 999.14, 0, 1, 343, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (244, 4, 'Ghetto Project Apartment LS Small', 0, 0, 0, 2000, 0, 2476.37, -1366.2, 29.31, 0, 0, 0, 0, -1, 243.72, 304.97, 999.14, 0, 1, 344, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (245, 4, 'Ghetto Project Apartment LS Small', 0, 0, 0, 2000, 0, 2487.39, -1366.2, 29.31, 0, 0, 0, 0, -1, 243.72, 304.97, 999.14, 0, 1, 345, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (246, 4, 'Appartment 1st Floor In SF', 0, 0, 0, 80000, 0, -2790.34, -111.14, 7.2, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 346, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (247, 4, 'Ghetto Project Apartment LS Small', 0, 0, 0, 2000, 200, 2487.3, -1376.27, 29.31, 0, 0, 0, 0, -1, 243.72, 304.97, 999.14, 0, 1, 347, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (248, 4, 'Ghetto Project Apartment LS Small', 0, 0, 0, 2000, 200, 2492.3, -1366.2, 29.31, 0, 0, 0, 0, -1, 243.72, 304.97, 999.14, 0, 1, 348, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (249, 4, 'Ghetto Project Apartment LS Small', 0, 0, 0, 2000, 1, 2492.08, -1376.27, 29.31, 0, 0, 0, 0, -1, 243.72, 304.97, 999.14, 0, 1, 349, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (250, 4, 'Ghetto Project Apartment LS Small', 0, 0, 0, 2000, 0, 2495.31, -1376.27, 29.31, 0, 0, 0, 0, -1, 243.72, 304.97, 999.14, 0, 1, 350, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (251, 4, 'Ghetto Project Apartment LS Small', 0, 0, 0, 2000, 200, 2495.47, -1366.21, 29.31, 0, 0, 0, 0, -1, 243.72, 304.97, 999.14, 0, 1, 351, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (252, 4, 'Normal Size Green/Brick House In SF', 0, 0, 0, 120000, 0, -2791.85, -107.45, 7.86, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 352, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (253, 4, 'Normal Size Pink House In SF', 0, 0, 0, 85000, 0, -2791.99, -94.98, 10.05, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 353, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (254, 4, 'Appartment 2nd Floor In SF', 0, 0, 0, 80000, 0, -2786.77, -89.71, 10.06, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 354, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (255, 4, 'Appartment 1st Floor In SF', 0, 0, 0, 80000, 0, -2790.42, -82.53, 7.2, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 355, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (256, 4, 'Ghetto Project Apartment LS Small', 0, 0, 0, 2000, 0, 2495.33, -1359.1, 29.31, 0, 0, 0, 0, -1, 243.72, 304.97, 999.14, 0, 1, 356, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (257, 4, 'Ghetto Project Apartment LS Small', 0, 0, 0, 2000, 0, 2492.1, -1359.1, 29.31, 0, 0, 0, 0, -1, 243.72, 304.97, 999.14, 0, 1, 357, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (258, 4, 'Ghetto Project Apartment LS Small', 0, 0, 0, 2000, 0, 2487.26, -1359.1, 29.31, 0, 0, 0, 0, -1, 243.72, 304.97, 999.14, 0, 1, 358, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (259, 4, 'Ghetto Project Apartment LS Small', 0, 0, 0, 2000, 0, 2476.28, -1359.1, 29.31, 0, 0, 0, 0, -1, 243.72, 304.97, 999.14, 0, 1, 359, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (260, 4, 'Ghetto Project Apartment LS Small', 0, 0, 0, 2000, 0, 2473.07, -1359.1, 29.31, 0, 0, 0, 0, -1, 243.72, 304.97, 999.14, 0, 1, 360, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (261, 4, 'Ghetto Project Apartment LS Small', 0, 0, 0, 2000, 0, 2468.24, -1359.1, 29.31, 0, 0, 0, 0, -1, 243.72, 304.97, 999.14, 0, 1, 361, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (262, 4, 'Normal Size House In SF', 0, 0, 0, 85000, 0, -2789.24, -52.58, 10.06, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 362, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (263, 4, 'Normal Size Pink House In SF', 0, 0, 0, 85000, 0, -2791.91, -41.82, 10.05, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 363, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (264, 4, 'House Ghetto LS Small', 0, 0, 0, 10000, 150, 2483.95, -1280.35, 30.47, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 364, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (265, 4, 'House Ghetto LS Small', 0, 0, 0, 10000, 0, 2482.75, -1293.35, 30.23, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 365, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (266, 4, 'Normal Size Blue House In SF', 0, 0, 0, 85000, 0, -2791.83, -35.9, 7.86, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 366, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (267, 4, 'House Ghetto LS Small', 0, 0, 0, 10000, 0, 2529.65, -1243.31, 43.97, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 367, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (268, 4, 'House Ghetto LS Small', 0, 0, 0, 10000, 0, 2531.05, -1228.61, 43.72, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 368, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (269, 4, 'Normal Size Blue House In SF', 0, 0, 0, 85000, 0, -2791.84, -24.28, 10.05, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 369, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (270, 4, 'House Ghetto LS Small', 0, 0, 0, 10000, 600, 2551.05, -1233.79, 49.33, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 370, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (271, 4, 'Normal Size Green/Brick House In SF', 0, 0, 0, 120000, 0, -2791.59, -17.64, 7.86, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 371, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (272, 4, 'House Ghetto LS Small', 0, 0, 0, 10000, 0, 2514.62, -1240.45, 39.34, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 372, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (273, 4, 'House Ghetto LS Small', 0, 0, 0, 10000, 0, 2516.52, -1225.75, 39.09, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 373, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (274, 4, 'Appartment 2nd Floor In SF', 0, 0, 0, 80000, 0, -2786.76, 0.27, 10.06, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 374, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (275, 4, 'Appartment 1st Floor In SF', 0, 0, 0, 80000, 0, -2790.48, 7.37, 7.2, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 375, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (276, 4, 'Light Pink/Brick House In SF', 0, 0, 0, 120000, 0, -2793.14, 11.19, 7.43, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 376, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (277, 4, 'Medium House Ghetto LS', 0, 0, 0, 12000, 0, 2550.3, -1209.05, 54.54, 0, 0, 0, 0, -1, 328.13, 1477.9, 1084.43, 0, 15, 377, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (278, 4, 'Green Normal Size House In SF', 0, 0, 0, 120000, 0, -2793.15, 21.32, 7.18, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 378, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (279, 4, 'Medium House Ghetto LS', 0, 0, 0, 12000, 0, 2550.19, -1197.53, 60.84, 0, 0, 0, 0, -1, 328.13, 1477.9, 1084.43, 0, 15, 379, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (280, 4, 'Medium House Ghetto LS', 0, 0, 0, 12000, 5000, 2520.65, -1209.48, 50.29, 0, 0, 0, 0, -1, 328.13, 1477.9, 1084.43, 0, 15, 380, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (281, 4, 'Medium House Ghetto LS', 0, 0, 0, 12000, 0, 2520.61, -1198, 56.6, 0, 0, 0, 0, -1, 328.13, 1477.9, 1084.43, 0, 15, 381, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (282, 4, 'Appartment 2nd Floor In SF', 0, 0, 0, 80000, 0, -2787, 62.87, 10.06, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 382, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (283, 4, 'Appartment 1st Floor In SF', 0, 0, 0, 80000, 0, -2790.53, 69.66, 7.2, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 383, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (284, 4, 'Normal Size Pink House In SF', 0, 0, 0, 85000, 0, -2791.79, 77.58, 10.05, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 384, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (285, 4, 'House Ghetto LS Small', 0, 0, 0, 10000, 500, 2601.05, -1200.15, 59.5, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 385, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (286, 4, 'House Ghetto LS Small', 0, 0, 0, 10000, 0, 2601.05, -1203.08, 58.73, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 386, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (287, 4, 'House Ghetto LS Small', 0, 0, 0, 10000, 0, 2601.05, -1207.58, 57.79, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 387, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (288, 4, 'Normal Size Very Light Green House In SF', 0, 0, 0, 55000, 0, -2792.85, 84.94, 7.62, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 388, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (289, 4, 'House Ghetto LS Small', 0, 0, 0, 10000, 500, 2594.5, -1207.54, 57.65, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 389, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (290, 4, 'House Ghetto LS Small', 0, 0, 0, 10000, 500, 2594.5, -1203, 58.58, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 390, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (291, 4, 'House Ghetto LS Small', 0, 0, 0, 10000, 500, 2594.5, -1200.09, 59.35, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 391, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (292, 4, 'Normal Size Blue House In SF', 0, 0, 0, 85000, 5000, -2791.59, 92.18, 7.86, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 392, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (293, 4, 'House Ghetto LS Small', 0, 0, 0, 10000, 500, 2601.05, -1211.81, 56.66, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 393, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (294, 4, 'House Ghetto LS Small', 0, 0, 0, 10000, 500, 2594.5, -1211.8, 56.51, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 394, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (295, 4, 'House Ghetto LS Small', 0, 0, 0, 10000, 0, 2601.05, -1216.41, 55.27, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 395, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (296, 4, 'House Ghetto LS Small', 0, 0, 0, 10000, 500, 2594.5, -1216.38, 55.11, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 396, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (297, 4, 'Normal Size House In SF', 0, 0, 0, 85000, 0, -2791.82, 103.6, 10.05, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 397, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (298, 4, 'House Ghetto LS Small', 0, 0, 0, 10000, 120, 2601.05, -1220.59, 53.92, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 398, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (299, 4, 'House Ghetto LS Small', 0, 0, 0, 10000, 449, 2594.5, -1220.49, 53.76, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 399, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (300, 4, 'House Ghetto LS Small', 0, 0, 0, 10000, 500, 2601.05, -1224.74, 52.63, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 400, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (301, 4, 'House Ghetto LS Small', 0, 0, 0, 10000, 500, 2594.5, -1224.71, 52.48, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 401, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (302, 4, 'House Ghetto LS Small', 0, 0, 0, 10000, 500, 2601.05, -1229.29, 51.34, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 402, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (303, 4, 'Normal Size Light Green House In SF', 0, 0, 0, 55000, 0, -2793.14, 110.99, 7.18, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 403, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (304, 4, 'House Ghetto LS Small', 0, 0, 0, 10000, 5000, 2594.5, -1229.26, 51.19, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 404, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (305, 4, 'House Ghetto LS Small', 0, 0, 0, 10000, 0, 2601.05, -1233.56, 50.11, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 405, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (306, 4, 'House Ghetto LS Small', 0, 0, 0, 10000, 5000, 2594.5, -1233.55, 49.96, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 406, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (307, 4, 'House Ghetto LS Small', 0, 0, 0, 10000, 10, 2601.05, -1238.12, 48.72, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 407, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (308, 4, 'House Ghetto LS Small', 0, 0, 0, 10000, 0, 2594.5, -1238.05, 48.56, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 408, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (309, 4, 'Appartment 2nd Floor In SF', 0, 0, 0, 80000, 0, -2786.98, 119.9, 10.06, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 409, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (310, 4, 'House Ghetto LS Small', 0, 0, 0, 10000, 500, 2608.15, -1200.07, 60.99, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 410, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (311, 4, 'House Ghetto LS Small', 0, 0, 0, 10000, 500, 2615.11, -1200.1, 60.78, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 411, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (312, 4, 'Appartment 1st Floor In SF', 0, 0, 0, 80000, 0, -2790.59, 126.9, 7.2, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 412, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (313, 4, 'House Ghetto LS Small', 0, 0, 0, 10000, 500, 2608.15, -1203, 60.22, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 413, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (314, 4, 'House Ghetto LS Small', 0, 0, 0, 10000, 500, 2615.11, -1203.1, 60, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 414, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (315, 4, 'House Ghetto LS Small', 0, 0, 0, 10000, 90, 2608.15, -1207.57, 59.28, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 415, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (316, 4, 'House Ghetto LS Small', 0, 0, 0, 10000, 500, 2615.11, -1207.64, 59.07, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 416, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (317, 4, 'House Ghetto LS Small', 0, 0, 0, 10000, 500, 2608.15, -1211.73, 58.15, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 417, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (318, 4, 'House Ghetto LS Small', 0, 0, 0, 10000, 500, 2615.11, -1211.84, 57.94, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 418, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (319, 4, 'House Ghetto LS Small', 0, 0, 0, 10000, 1000, 2608.15, -1216.28, 56.76, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 419, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (320, 4, 'House Ghetto LS Small', 0, 0, 0, 10000, 100, 2615.11, -1216.3, 56.54, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 420, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (321, 4, 'House Ghetto LS Small', 0, 0, 0, 10000, 1000, 2608.15, -1220.51, 55.41, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 421, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (322, 4, 'House Ghetto LS Small', 0, 0, 0, 10000, 500, 2615.11, -1220.58, 55.19, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 422, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (323, 4, 'House Ghetto LS Small', 0, 0, 0, 10000, 500, 2608.15, -1224.64, 54.12, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 423, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (324, 4, 'Normal Size Green/Brick House In SF', 0, 0, 0, 120000, 0, -2791.68, 130.62, 7.86, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 424, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (325, 4, 'House Ghetto LS Small', 0, 0, 0, 10000, 500, 2615.11, -1224.75, 53.9, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 425, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (326, 4, 'House Ghetto LS Small', 0, 0, 0, 10000, 500, 2608.15, -1229.19, 52.83, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 426, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (327, 4, 'House Ghetto LS Small', 0, 0, 0, 10000, 500, 2615.11, -1229.28, 52.61, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 427, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (328, 4, 'House Ghetto LS Small', 0, 0, 0, 10000, 5000, 2608.15, -1233.42, 51.6, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 428, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (329, 4, 'House Ghetto LS Small', 0, 0, 0, 10000, 500, 2615.11, -1233.57, 51.38, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 429, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (330, 4, 'House', 0, 0, 0, 10000, 0, 2608.15, -1238.01, 50.2, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 430, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (331, 4, 'House Ghetto LS Small', 0, 0, 0, 10000, 0, 2615.11, -1238.09, 49.98, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 431, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (332, 4, 'Normal Size Pink House In SF', 0, 0, 0, 85000, 0, -2791.81, 143.25, 10.05, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 432, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (333, 4, 'House Ghetto LS Small', 0, 0, 0, 10000, 0, 2587.4, -1238.14, 48.56, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 433, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (334, 4, 'House Ghetto LS Small', 0, 0, 0, 10000, 0, 2587.4, -1233.59, 49.96, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 434, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (335, 4, 'House Ghetto LS Small', 0, 0, 0, 10000, 500, 2587.4, -1229.28, 51.19, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 435, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (336, 4, 'House Ghetto LS Small', 0, 0, 0, 10000, 0, 2587.4, -1224.72, 52.48, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 436, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (337, 4, 'House Ghetto LS Small', 0, 0, 0, 10000, 500, 2587.39, -1220.59, 53.76, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 437, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (338, 4, 'House Ghetto LS Small', 0, 0, 0, 10000, 500, 2587.4, -1216.4, 55.11, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 438, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (339, 4, 'House Ghetto LS Small', 0, 0, 0, 10000, 1, 2587.4, -1211.86, 56.51, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 439, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (340, 4, 'House Ghetto LS Small', 0, 0, 0, 10000, 400, 2587.4, -1207.67, 57.65, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 440, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (341, 4, 'House Ghetto LS Small', 0, 0, 0, 10000, 500, 2587.4, -1203.17, 58.58, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 441, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (342, 4, 'House Ghetto LS Small', 0, 0, 0, 10000, 500, 2587.4, -1200.11, 59.35, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 442, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (343, 4, 'Normal Size House In SF', 0, 0, 0, 85000, 0, -2789.34, 183.69, 10.06, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 443, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (344, 4, 'House Ghetto LS Small', 0, 0, 0, 10000, 0, 2622.21, -1237.97, 51.27, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 444, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (345, 4, 'House Ghetto LS Small', 0, 0, 0, 10000, 0, 2622.21, -1233.49, 52.66, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 445, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (346, 4, 'House Ghetto LS Small', 0, 0, 0, 10000, 1, 2622.21, -1229.17, 53.89, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 446, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (347, 4, 'House Ghetto LS Small', 0, 0, 0, 10000, 0, 2622.21, -1224.62, 55.18, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 447, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (348, 4, 'House Ghetto LS Small', 0, 0, 0, 10000, 0, 2622.21, -1220.51, 56.47, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 448, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (349, 4, 'House Ghetto LS Small', 0, 0, 0, 10000, 0, 2622.22, -1216.29, 57.82, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 449, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (350, 4, 'House Ghetto LS Small', 0, 0, 0, 10000, 0, 2622.21, -1211.76, 59.21, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 450, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (351, 4, 'Normal Size Pink House In SF', 0, 0, 0, 85000, 0, -2791.81, 194.57, 10.05, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 451, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (352, 4, 'House Ghetto LS Small', 0, 0, 0, 10000, 0, 2622.22, -1207.58, 60.35, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 452, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (353, 4, 'House Ghetto LS Small', 0, 0, 0, 10000, 0, 2622.22, -1203.05, 61.28, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 453, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (354, 4, 'House Ghetto LS Small', 0, 0, 0, 10000, 0, 2622.22, -1199.95, 62.05, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 454, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (355, 4, 'Normal Size Blue House In SF', 0, 0, 0, 85000, 0, -2791.65, 200.58, 7.86, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 455, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (356, 4, 'Normal Size Blue House In SF', 0, 0, 0, 85000, 0, -2791.81, 212, 10.05, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 456, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (357, 4, 'Normal Size Green/Brick House In SF', 0, 0, 0, 120000, 0, -2791.6, 218.57, 7.86, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 457, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (358, 4, 'House Ghetto LS Small', 0, 0, 0, 10000, 0, 2663.18, -1238.14, 55.67, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 458, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (359, 4, 'House Ghetto LS Small', 0, 0, 0, 10000, 0, 2663.18, -1233.56, 57.07, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 459, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (360, 4, 'House Ghetto LS Small', 0, 0, 0, 10000, 10, 2663.18, -1229.27, 58.3, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 460, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (361, 4, 'House Ghetto LS Small', 0, 0, 0, 10000, 0, 2663.18, -1224.83, 59.58, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 461, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (362, 4, 'House Ghetto LS Small', 0, 0, 0, 10000, 0, 2663.18, -1220.59, 60.87, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 462, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (363, 4, 'House Ghetto LS Small', 0, 0, 0, 10000, 0, 2663.18, -1216.33, 62.22, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 463, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (364, 4, 'House Ghetto LS Small', 0, 0, 0, 10000, 0, 2663.18, -1211.8, 63.62, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 464, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (365, 4, 'House Ghetto LS Small', 0, 0, 0, 10000, 0, 2663.18, -1207.64, 64.76, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 465, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (366, 4, 'House Ghetto LS Small', 0, 0, 0, 10000, 0, 2663.18, -1203.19, 65.68, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 466, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (367, 4, 'House Ghetto LS Small', 0, 0, 0, 10000, 1000, 2663.18, -1200.14, 66.47, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 467, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (368, 4, 'House Ghetto LS Small', 0, 0, 0, 10000, 0, 2670.28, -1200.04, 66.5, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 468, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (369, 4, 'House Ghetto LS Small', 0, 0, 0, 10000, 0, 2670.28, -1203.03, 65.73, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 469, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (370, 4, 'House Ghetto LS Small', 0, 0, 0, 10000, 0, 2670.28, -1207.56, 64.8, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 470, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (371, 4, 'House Ghetto LS Small', 0, 0, 0, 10000, 0, 2670.28, -1211.74, 63.67, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 471, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (372, 4, 'House Ghetto LS Small', 0, 0, 0, 10000, 0, 2670.28, -1216.36, 62.26, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 472, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (373, 4, 'House Ghetto LS Small', 0, 0, 0, 10000, 100, 2670.28, -1220.46, 60.92, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 473, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (374, 4, 'House Ghetto LS Small', 0, 0, 0, 10000, 0, 2670.28, -1224.74, 59.63, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 474, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (375, 4, 'House Ghetto LS Small', 0, 0, 0, 10000, 0, 2670.28, -1229.17, 58.36, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 475, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (376, 4, 'House Ghetto LS Small', 0, 0, 0, 10000, 0, 2670.28, -1233.48, 57.12, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 476, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (377, 4, 'House Ghetto LS Small', 0, 0, 0, 10000, 0, 2670.28, -1238.05, 55.73, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 477, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (378, 4, 'House Ghetto LS Small', 0, 0, 0, 10000, 5000, 2683.44, -1238.05, 56.02, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 478, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (379, 4, 'House Ghetto LS Small', 0, 0, 0, 10000, 0, 2683.44, -1233.54, 57.42, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 479, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (380, 4, 'House Ghetto LS Small', 0, 0, 0, 10000, 0, 2683.44, -1229.32, 58.65, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 480, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (381, 4, 'House Ghetto LS Small', 0, 0, 0, 10000, 0, 2683.44, -1224.74, 59.93, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 481, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (382, 4, 'House Ghetto LS Small', 0, 0, 0, 10000, 0, 2683.44, -1220.6, 61.22, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 482, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (383, 4, 'House Ghetto LS Small', 0, 0, 0, 10000, 0, 2683.44, -1216.35, 62.57, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 483, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (384, 4, 'House Ghetto LS Small', 0, 0, 0, 10000, 0, 2683.44, -1211.88, 63.96, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 484, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (385, 4, 'House Ghetto LS Small', 0, 0, 0, 10000, 0, 2683.44, -1207.64, 65.1, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 485, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (386, 4, 'House Ghetto LS Small', 0, 0, 0, 10000, 500, 2683.44, -1203.14, 66.03, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 486, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (387, 4, 'House Ghetto LS Small', 0, 0, 0, 10000, 0, 2683.44, -1200.19, 66.81, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 487, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (388, 4, 'House Ghetto LS Small', 0, 0, 0, 10000, 0, 2690.54, -1200.05, 68.29, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 488, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (389, 4, 'House Ghetto LS Small', 0, 0, 0, 10000, 0, 2700.21, -1200.19, 68.97, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 489, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (390, 4, 'House Ghetto LS Small', 0, 0, 0, 10000, 0, 2690.54, -1202.95, 67.52, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 490, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (391, 4, 'House Ghetto LS Small', 0, 0, 0, 10000, 0, 2700.21, -1203.11, 68.19, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 491, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (392, 4, 'House Ghetto LS Small', 0, 0, 0, 10000, 0, 2690.54, -1207.56, 66.58, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 492, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (393, 4, 'House Ghetto LS Small', 0, 0, 0, 10000, 0, 2700.2, -1207.66, 67.26, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 493, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (394, 4, 'House Ghetto LS Small', 0, 0, 0, 10000, 0, 2700.2, -1211.84, 66.13, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 494, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (395, 4, 'House Ghetto LS Small', 0, 0, 0, 10000, 5000, 2690.54, -1211.79, 65.45, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 495, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (396, 4, 'House Ghetto LS Small', 0, 0, 0, 10000, 0, 2700.2, -1216.36, 64.74, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 496, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (397, 4, 'House Ghetto LS Small', 0, 0, 0, 10000, 0, 2690.54, -1216.25, 64.06, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 497, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (398, 4, 'House Ghetto LS Small', 0, 0, 0, 10000, 0, 2700.21, -1220.59, 63.39, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 498, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (399, 4, 'Appartment 1st Floor In SF', 0, 0, 0, 80000, 0, -2724.67, -191.32, 4.33, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 499, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (400, 4, 'House Ghetto LS Small', 0, 0, 0, 10000, 0, 2690.54, -1220.48, 62.72, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 500, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (401, 4, 'House Ghetto LS Small', 0, 0, 0, 10000, 0, 2700.2, -1224.74, 62.09, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 501, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (402, 4, 'House Ghetto LS Small', 0, 0, 0, 10000, 0, 2690.55, -1224.79, 61.42, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 502, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (403, 4, 'House Ghetto LS Small', 0, 0, 0, 10000, 500, 2700.21, -1229.31, 60.81, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 503, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (404, 4, 'House Ghetto LS Small', 0, 0, 0, 10000, 0, 2690.54, -1229.15, 60.14, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 504, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (405, 4, 'Appartment In SF 2nd Floor', 0, 0, 0, 80000, 0, -2728.16, -184.18, 7.2, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 505, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (406, 4, 'House Ghetto LS Small', 0, 0, 0, 10000, 5000, 2700.21, -1233.57, 59.58, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 506, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (407, 4, 'House Ghetto LS Small', 0, 0, 0, 10000, 0, 2690.54, -1233.41, 58.91, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 507, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (408, 4, 'House Ghetto LS Small', 0, 0, 0, 10000, 0, 2700.2, -1238.05, 58.18, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 508, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (409, 4, 'House Ghetto LS Small', 0, 0, 0, 10000, 1, 2690.54, -1238.06, 57.51, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 509, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (410, 4, 'Normal Size Pink House In SF', 0, 0, 0, 85000, 0, -2723.15, -179.07, 7.2, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 510, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (411, 4, 'House Ghetto LS Small', 0, 0, 0, 10000, 1, 2707.3, -1237.91, 59.67, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 511, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (412, 4, 'House Ghetto LS Small', 0, 0, 0, 10000, 500, 2707.31, -1233.54, 61.07, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 512, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (413, 4, 'House Ghetto LS Small', 0, 0, 0, 10000, 0, 2707.3, -1229.25, 62.3, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 513, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (414, 4, 'House Ghetto LS Small', 0, 0, 0, 10000, 0, 2707.31, -1224.67, 63.58, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 514, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (415, 4, 'House Ghetto LS Small', 0, 0, 0, 10000, 500, 2707.3, -1220.59, 64.88, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 515, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (416, 4, 'House Ghetto LS Small', 0, 0, 0, 10000, 5000, 2707.3, -1216.32, 66.22, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 516, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (417, 4, 'House Ghetto LS Small', 0, 0, 0, 10000, 1000, 2707.3, -1211.75, 67.61, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 517, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (418, 4, 'Normal Size Green/Brick House In SF', 0, 0, 0, 120000, 0, -2723.32, -166.46, 5, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 518, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (419, 4, 'House Ghetto LS Small', 0, 0, 0, 10000, 0, 2707.31, -1207.58, 68.75, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 519, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (420, 4, 'House Ghetto LS Small', 0, 0, 0, 10000, 0, 2707.31, -1203.04, 69.68, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 520, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (421, 4, 'House Ghetto LS Small', 0, 0, 0, 10000, 0, 2707.31, -1200.06, 70.46, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 521, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (422, 4, 'Appartment 1st Floor In SF', 0, 0, 0, 80000, 0, -2724.67, -162.74, 4.34, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 522, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (423, 4, 'Appartment 2nd Floor In SF', 0, 0, 0, 80000, 0, -2728.16, -155.7, 7.2, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 523, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (424, 4, 'Normal Size Green House In SF', 0, 0, 0, 85000, 0, -2721.77, -146.75, 4.33, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 524, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (425, 4, 'Normal Size House In SF', 0, 0, 0, 85000, 0, -2723.03, -139.4, 7.2, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 525, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (426, 4, 'Normal Size Blue House In SF', 0, 0, 0, 85000, 0, -2723.33, -127.87, 5, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 526, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (427, 4, 'Apartment LS Medium', 0, 0, 0, 25000, 0, 2781.94, -1358.42, 26.37, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 527, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (428, 4, 'Normal Size Very Light Green House In SF', 0, 0, 0, 55000, 0, -2722.05, -120.75, 4.76, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 528, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (429, 4, 'Apartment LS Medium', 0, 0, 0, 25000, 0, 2781.94, -1333.42, 32.4, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 529, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (430, 4, 'Apartment LS Medium', 0, 0, 0, 25000, 0, 2782.15, -1306.33, 38.89, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 530, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (431, 4, 'Apartment LS Medium', 0, 0, 0, 25000, 0, 2782.15, -1281.21, 44.37, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 531, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (432, 4, 'Apartment LS Medium', 0, 0, 0, 25000, 0, 2809.53, -1324.86, 33.87, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 532, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (433, 4, 'Apartment LS Medium', 0, 0, 0, 25000, 0, 2809.53, -1302.93, 38.93, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 533, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (434, 4, 'Apartment LS Medium', 0, 0, 0, 25000, 1, 2809.53, -1281.04, 43.9, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 534, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (435, 4, 'Normal Size Pink House In SF', 0, 0, 0, 85000, 0, -2723.02, -113.39, 7.2, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 535, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (436, 4, 'Apartment LS Medium', 0, 0, 0, 25000, 0, 2807.98, -1353.99, 27.22, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 536, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (437, 4, 'Apartment LS Medium', 0, 0, 0, 25000, 0, 2807.98, -1369.6, 23.58, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 537, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (438, 4, 'Appartment 1st Floor In SF', 0, 0, 0, 80000, 0, -2724.65, -105.62, 4.34, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 538, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (439, 4, 'Appartment 2nd Floor In SF', 0, 0, 0, 80000, 0, -2728.17, -98.41, 7.2, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 539, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (440, 4, 'Ls House Near Beach Medium', 0, 0, 0, 30000, 0, 2846.99, -1309.7, 14.7, 0, 0, 0, 0, -1, 261.06, 1284.29, 1080.25, 0, 4, 540, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (441, 4, 'Normal Size House In SF', 0, 0, 0, 85000, 0, -2725.75, -92.38, 7.2, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 541, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (442, 4, 'Appartment 1st Floor In SF', 0, 0, 0, 80000, 0, -2724.7, -58.02, 4.34, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 542, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (443, 4, 'Appartment 2nd Floor In SF', 0, 0, 0, 80000, 0, -2728.19, -51.06, 7.2, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 543, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (444, 4, 'Apartment Near the beach LS big', 0, 0, 0, 25000, 0, 2851.85, -1365.97, 14.17, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 544, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (445, 4, 'Normal Size Very Light Green House In SF', 0, 0, 0, 55000, 0, -2722.11, -44.71, 4.77, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 545, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (446, 4, 'Normal Size House In SF', 0, 0, 0, 85000, 0, -2725.64, -36.6, 7.2, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 546, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (447, 4, 'Normal Size Pink/Brick House In SF', 0, 0, 0, 55000, 0, -2721.8, -23.27, 4.57, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 547, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (448, 4, 'LS Apartment Near Beach Medium', 0, 0, 0, 40000, 0, 2808.05, -1190.89, 25.34, 0, 0, 0, 0, -1, 225.75, 1240, 1082.15, 0, 2, 548, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (449, 4, 'LS Apartment Near Beach Medium', 0, 0, 0, 40000, 0, 2808.01, -1175.92, 25.38, 0, 0, 0, 0, -1, 225.75, 1240, 1082.15, 0, 2, 549, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (450, 4, 'Normal Size Pink House In SF', 0, 0, 0, 85000, 0, -2723.17, -17.31, 7.2, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 550, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (451, 4, 'Normal Size House In SF', 0, 0, 0, 85000, 0, -2723.05, 4.47, 7.2, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 551, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (452, 4, 'Normal Size Very Light Green House In SF', 0, 0, 0, 55000, 0, -2722.1, 14.48, 4.77, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 552, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (453, 4, 'LS Apartment Near Beach Medium', 0, 0, 0, 40000, 0, 2842.19, -1334.78, 14.74, 0, 0, 0, 0, -1, 225.75, 1240, 1082.15, 0, 2, 553, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (454, 4, 'Normal Size Pink House In SF', 0, 0, 0, 85000, 0, -2723.12, 21.93, 7.2, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 554, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (455, 4, 'Normal Size House In SF', 0, 0, 0, 85000, 0, -2686.82, -188.19, 7.2, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 555, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (456, 4, 'Appartment 2nd Floor In SF', 0, 0, 0, 80000, 0, -2684.41, -182.15, 7.2, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 556, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (457, 4, 'Appartment 1st Floor In SF', 0, 0, 0, 80000, 0, -2687.89, -175.08, 4.34, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 557, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (458, 4, 'Normal Size Pink House In SF', 0, 0, 0, 85000, 0, -2689.4, -167.3, 7.2, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 558, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (459, 4, 'Normal Size Light Green House In SF', 0, 0, 0, 55000, 0, -2690.5, -159.76, 4.76, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 559, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (460, 4, 'Apartment Near the beach LS big', 0, 0, 0, 25000, 0, 2755.71, -1400.45, 39.38, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 560, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (461, 4, 'Normal Size Blue House In SF', 0, 0, 0, 85000, 0, -2689.24, -152.92, 5, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 561, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (462, 4, 'Normal Size House In SF', 0, 0, 0, 85000, 0, -2689.38, -141.27, 7.2, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 562, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (463, 4, 'Apartment Near the beach LS big', 0, 0, 0, 25000, 0, 2756.29, -1302.54, 53.09, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 563, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (464, 4, 'Apartment Near the beach LS big', 0, 0, 0, 25000, 0, 2755.85, -1276.47, 56.59, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 564, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (465, 4, 'Normal Size Green House In SF', 0, 0, 0, 85000, 0, -2690.79, -134.05, 4.33, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 565, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (466, 4, 'Appartment 2nd Floor In SF', 0, 0, 0, 80000, 0, -2684.42, -125.07, 7.2, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 566, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (467, 4, 'Appartment 1st Floor In SF', 0, 0, 0, 80000, 0, -2687.9, -118.16, 4.34, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 567, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (468, 4, 'LS Apartment Near Beach Medium', 0, 0, 0, 40000, 1000, 2776.06, -1245.37, 49.58, 0, 0, 0, 0, -1, 225.75, 1240, 1082.15, 0, 2, 568, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (469, 4, 'LS Apartment Near Beach Medium', 0, 0, 0, 40000, 500, 2797.81, -1245.37, 47.38, 0, 0, 0, 0, -1, 225.75, 1240, 1082.15, 0, 2, 569, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (470, 4, 'Normal Size Green/Brick House In SF', 0, 0, 0, 120000, 0, -2689.25, -114.14, 5, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 570, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (471, 4, 'Normal Size Pink House In SF', 0, 0, 0, 85000, 0, -2689.35, -101.62, 7.2, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 571, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (472, 4, 'Appartment 2nd Floor In SF', 0, 0, 0, 80000, 0, -2684.55, -96.44, 7.2, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 572, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (473, 4, 'Appartment 1st Floor In SF', 0, 0, 0, 80000, 0, -2688.06, -89.44, 4.33, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 573, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (474, 4, 'LS Apartment Near Beach Medium', 0, 0, 0, 40000, 0, 2750.39, -1238.8, 61.52, 0, 0, 0, 0, -1, 225.75, 1240, 1082.15, 0, 2, 574, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (475, 4, 'LS Apartment Near Beach Medium', 0, 0, 0, 40000, 0, 2750.39, -1222.23, 64.6, 0, 0, 0, 0, -1, 225.75, 1240, 1082.15, 0, 2, 575, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (476, 4, 'LS Apartment Near Beach Medium', 0, 0, 0, 40000, 0, 2750.39, -1205.76, 67.48, 0, 0, 0, 0, -1, 225.75, 1240, 1082.15, 0, 2, 576, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (477, 4, 'Apartment Near the beach LS big', 0, 0, 0, 25000, 0, 2756.27, -1182.81, 69.4, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 577, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (478, 4, 'Normal Size Pink House In SF', 0, 0, 0, 85000, 0, -2689.38, 57.09, 7.2, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 578, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (479, 4, 'Normal Size Light Green House In SF', 0, 0, 0, 55000, 1, -2690.49, 64.59, 4.76, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 579, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (480, 4, 'Normal Size House In SF', 0, 0, 0, 85000, 0, -2689.49, 74.56, 7.2, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 580, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (481, 4, 'Ghetto Project Apartment LS Small', 0, 0, 0, 2000, 0, 2628.09, -1067.86, 69.71, 0, 0, 0, 0, -1, 243.72, 304.97, 999.14, 0, 1, 581, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (482, 4, 'Ghetto Project Apartment LS Small', 0, 0, 0, 2000, 0, 2627.64, -1085.13, 69.71, 0, 0, 0, 0, -1, 243.72, 304.97, 999.14, 0, 1, 582, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (483, 4, 'Normal Size Pink House In SF', 0, 0, 0, 85000, 0, -2689.33, 96.31, 7.2, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 583, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (484, 4, 'Ghetto Project Apartment LS Small', 0, 0, 0, 2000, 0, 2625.93, -1098.64, 69.36, 0, 0, 0, 0, -1, 243.72, 304.97, 999.14, 0, 1, 584, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (485, 4, 'Ghetto Project Apartment LS Small', 0, 0, 0, 2000, 0, 2625.94, -1112.61, 68, 0, 0, 0, 0, -1, 243.72, 304.97, 999.14, 0, 1, 585, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (486, 4, 'Normal Size Pink/Brick House In SF', 0, 0, 0, 55000, 1500, -2690.78, 102.29, 4.57, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 586, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (487, 4, 'Ghetto Project Apartment LS Small', 0, 0, 0, 2000, 0, 2611.24, -1111.19, 68.25, 0, 0, 0, 0, -1, 243.72, 304.97, 999.14, 0, 1, 587, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (488, 4, 'Ghetto Project Apartment LS Small', 0, 0, 0, 2000, 0, 2611.23, -1097.24, 69.6, 0, 0, 0, 0, -1, 243.72, 304.97, 999.14, 0, 1, 588, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (489, 4, 'Ghetto Project Apartment LS Small', 0, 0, 0, 2000, 0, 2612.94, -1083.18, 69.96, 0, 0, 0, 0, -1, 243.72, 304.97, 999.14, 0, 1, 589, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (490, 4, 'Normal Size House In SF', 0, 0, 0, 85000, 0, -2687.1, 115.56, 7.2, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 590, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (491, 4, 'Ghetto Project Apartment LS Small', 0, 0, 0, 2000, 0, 2613.39, -1065.9, 69.96, 0, 0, 0, 0, -1, 243.72, 304.97, 999.14, 0, 1, 591, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (492, 4, 'Ghetto Project Apartment LS Small', 0, 0, 0, 2000, 0, 2618.94, -1118.48, 68, 0, 0, 0, 0, -1, 243.72, 304.97, 999.14, 0, 1, 592, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (493, 4, 'Normal Size Very Light Green House In SF', 0, 0, 0, 55000, 0, -2690.51, 123.6, 4.75, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 593, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (494, 4, 'Appartment 2nd Floor In SF', 0, 0, 0, 80000, 0, -2684.4, 129.99, 7.2, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 594, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (495, 4, 'Appartment 1st Floor In SF', 0, 0, 0, 80000, 0, -2687.88, 137.03, 4.34, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 595, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (496, 4, 'House Ghetto LS Small', 0, 0, 0, 10000, 0, 2572.3, -1091.85, 67.22, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 596, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (497, 4, 'House Ghetto LS Small', 0, 0, 0, 10000, 0, 2519.02, -1112.99, 56.59, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 597, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (498, 4, 'House Ghetto LS Small', 0, 0, 0, 10000, 0, 2576.68, -1070.67, 69.83, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 598, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (499, 4, 'House Ghetto LS Small', 0, 0, 0, 10000, 0, 2579.61, -1033.2, 69.58, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 599, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (500, 4, 'House Ghetto LS Small', 0, 0, 0, 10000, 0, 2562.11, -1034.28, 69.87, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 600, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (501, 4, 'Normal Size House In SF', 0, 0, 0, 85000, 5000, -2692.95, 189.45, 7.2, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 601, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (502, 4, 'House Ghetto LS Small', 0, 0, 0, 10000, 0, 2549.2, -1032.15, 69.58, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 602, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (503, 4, '3 Story Condo In SF', 0, 0, 0, 120000, 0, -2358.3, 820.03, 38.53, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 603, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (504, 4, '3 Story Condo In SF', 0, 0, 0, 120000, 0, -2340.18, 819.85, 41.97, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 604, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (505, 4, '3 Story Condo In SF', 0, 0, 0, 120000, 0, -2321.9, 820, 45.34, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 605, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (506, 4, '3 Story Condo In SF', 0, 0, 0, 120000, 0, -2303.4, 819.97, 48.7, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 606, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (507, 4, '3 Story Condo In SF', 0, 0, 0, 120000, 0, -2282.42, 873.14, 66.92, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 607, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (508, 4, '3 Story Condo In SF', 0, 0, 0, 120000, 0, -2285.08, 849.13, 65.64, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 608, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (509, 4, '3 Story Condo In SF', 0, 0, 0, 120000, 0, -2285.3, 828.92, 57.17, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 609, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (510, 4, '3 Story Condo In SF', 0, 0, 0, 120000, 0, -2294.99, 969.98, 65.33, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 610, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (511, 4, '3 Story Condo In SF', 0, 0, 0, 120000, 0, -2307.55, 944.26, 61.61, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 611, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (512, 4, '3 Story Condo In SF', 0, 0, 0, 120000, 0, -2325.89, 944.26, 55.32, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 612, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (513, 4, '5 Story Condo In SF', 0, 0, 0, 500000, 0, -2238.8, 943.84, 66.65, 0, 0, 0, 0, -1, 226.3, 1114.37, 1080.99, 0, 5, 613, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (514, 4, '5 Story Condo In SF', 0, 0, 0, 500000, 0, -2238.89, 962.11, 66.65, 0, 0, 0, 0, -1, 226.3, 1114.37, 1080.99, 0, 5, 614, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (515, 4, '5 Story Condo In SF', 0, 0, 0, 500000, 0, -2238.82, 980.75, 71.52, 0, 0, 0, 0, -1, 226.3, 1114.37, 1080.99, 0, 5, 615, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (516, 4, '4 Story Condo In SF', 0, 0, 0, 400000, 0, -2238.79, 998.81, 78.98, 0, 0, 0, 0, -1, 234.22, 1063.89, 358.5, 0, 6, 616, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (517, 4, '5 Story Condo In SF', 0, 0, 0, 500000, 0, -2229.28, 934.38, 66.65, 0, 0, 0, 0, -1, 226.3, 1114.37, 1080.99, 0, 5, 617, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (518, 4, '5 Story Condo In SF', 0, 0, 0, 500000, 0, -2210.94, 934.38, 68.97, 0, 0, 0, 0, -1, 226.3, 1114.37, 1080.99, 0, 5, 618, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (519, 4, '4 Story Condo In SF', 0, 0, 0, 400000, 0, -2192.54, 934.38, 75.02, 0, 0, 0, 0, -1, 234.22, 1063.89, 358.5, 0, 6, 619, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (520, 4, '3 Story Condo In SF', 0, 0, 0, 120000, 0, -2174.13, 934.36, 80, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 620, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (521, 4, '3 Story Condo In SF', 0, 0, 0, 120000, 0, -2160.15, 947.01, 80, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 621, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (522, 4, '3 Story Condo In SF', 0, 0, 0, 120000, 0, -2160.14, 965.32, 80, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 622, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (523, 4, '3 Story Condo In SF', 0, 0, 0, 120000, 0, -2160.15, 983.75, 80, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 623, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (524, 4, '3 Story Condo In SF', 0, 0, 0, 120000, 0, -2160.11, 1002.05, 80, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 624, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (525, 4, 'House Ghetto LS Small', 0, 0, 0, 10000, 0, 2440.48, -1057.34, 54.74, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 625, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (526, 4, '5 Story Condo In SF', 0, 0, 0, 500000, 0, -2233.82, 888.8, 66.65, 0, 0, 0, 0, -1, 226.3, 1114.37, 1080.99, 0, 5, 626, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (527, 4, '3 Story Condo In SF', 0, 0, 0, 120000, 0, -2233.83, 870.58, 66.64, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 627, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (528, 4, '3 Story Condo In SF', 0, 0, 0, 120000, 0, -2233.27, 848.86, 61.89, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 628, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (529, 4, '3 Story Condo In SF', 0, 0, 0, 120000, 0, -2233.27, 830.7, 54.3, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 629, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (530, 4, '4 Story Condo In SF', 0, 0, 0, 400000, 0, -2223.85, 821.13, 49.44, 0, 0, 0, 0, -1, 234.22, 1063.89, 358.5, 0, 6, 630, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (531, 4, '3 Story Condo In SF', 0, 0, 0, 120000, 0, -2205.37, 821.13, 50.49, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 631, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (532, 4, '3 Story Condo In SF', 0, 0, 0, 120000, 0, -2187.07, 821.13, 57.55, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 632, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (533, 4, '3 Story Condo In SF', 0, 0, 0, 120000, 0, -2168.71, 821.13, 64.97, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 633, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (534, 4, 'Huge house at Vinewood LS', 0, 0, 0, 450000, 1000, 646.06, -1117.35, 44.21, 0, 0, 0, 0, -1, 491.06, 1400.39, 1080.26, 0, 2, 634, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (535, 4, '3 Story Condo In SF', 0, 0, 0, 120000, 0, -2159.21, 830.74, 69.52, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 635, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (536, 4, 'Huge house at Vinewood LS', 0, 0, 0, 450000, 550, 398.17, -1271.36, 50.02, 0, 0, 0, 0, -1, 491.06, 1400.39, 1080.26, 0, 2, 636, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (537, 4, '3 Story Condo In SF', 0, 0, 0, 120000, 0, -2159.22, 866.53, 75.35, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 637, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (538, 4, '3 Story Condo In SF', 0, 0, 0, 120000, 0, -2158.67, 889.11, 80.01, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 638, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (539, 4, '3 Story Condo In SF', 0, 0, 0, 120000, 0, -2174.37, 902.73, 80.01, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 639, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (540, 4, 'Mansion', 0, 0, 0, 450000, 0, 298.84, -1338.5, 53.44, 0, 0, 0, 0, -1, 491.06, 1400.39, 1080.26, 0, 2, 640, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (541, 4, '4 Story Condo In SF', 0, 0, 0, 400000, 0, -2192.49, 902.68, 75.04, 0, 0, 0, 0, -1, 234.22, 1063.89, 358.5, 0, 6, 641, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (542, 4, 'Mansion', 0, 0, 0, 450000, 0, 254.38, -1367.12, 53.11, 0, 0, 0, 0, -1, 491.06, 1400.39, 1080.26, 0, 2, 642, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (543, 4, '5 Story Condo In SF', 0, 0, 0, 500000, 0, -2211.06, 902.68, 68.93, 0, 0, 0, 0, -1, 226.3, 1114.37, 1080.99, 0, 5, 643, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (544, 4, '5 Story Condo In SF', 0, 0, 0, 500000, 0, -2224.88, 902.67, 66.65, 0, 0, 0, 0, -1, 226.3, 1114.37, 1080.99, 0, 5, 644, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (545, 4, '4 Story Condo In SF', 0, 0, 0, 400000, 0, -2282.4, 979.39, 70.89, 0, 0, 0, 0, -1, 234.22, 1063.89, 358.5, 0, 6, 645, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (546, 4, '4 Story Condo In SF', 0, 0, 0, 400000, 0, -2282.14, 999.63, 79.3, 0, 0, 0, 0, -1, 234.22, 1063.89, 358.5, 0, 6, 646, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (547, 4, '3 Story Condo In SF', 0, 0, 0, 120000, 0, -2282.39, 1023.13, 84.11, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 647, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (548, 4, '3 Story Condo In SF', 0, 0, 0, 120000, 0, -2282.42, 1046.67, 84.12, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 648, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (549, 4, '3 Story Condo In SF', 0, 0, 0, 120000, 0, -2282.4, 1070.26, 81.7, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 649, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (550, 4, '3 Story Condo In SF', 0, 0, 0, 120000, 0, -2282.42, 1088.93, 80.41, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 650, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (551, 4, '5 Story Condo In SF', 0, 0, 0, 500000, 0, -2280.84, 1112.55, 76.98, 0, 0, 0, 0, -1, 226.3, 1114.37, 1080.99, 0, 5, 651, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (552, 4, '5 Story Condo In SF', 0, 0, 0, 500000, 0, -2280.83, 1130.83, 69.23, 0, 0, 0, 0, -1, 226.3, 1114.37, 1080.99, 0, 5, 652, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (553, 4, 'Huge house at Vinewood', 0, 0, 0, 600000, 0, 219.26, -1249.79, 78.33, 0, 0, 0, 0, -1, 226.3, 1114.37, 1080.99, 0, 5, 653, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (554, 4, '5 Story Condo In SF', 0, 0, 0, 500000, 0, -2280.83, 1149.17, 61.61, 0, 0, 0, 0, -1, 226.3, 1114.37, 1080.99, 0, 5, 654, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (555, 4, 'Very Small House In SF', 0, 0, 0, 25000, 0, -2358.98, 1118.09, 55.73, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 655, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (556, 4, 'Small Very Nice House In SF', 0, 0, 0, 55000, 0, -2369.4, 1122.32, 55.73, 0, 0, 0, 0, -1, 295.21, 1472.26, 1080.25, 0, 15, 656, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (557, 4, 'LS Apartment Near Beach Medium', 0, 0, 0, 40000, 0, 662.43, -1466.81, 14.85, 0, 0, 0, 0, -1, 225.75, 1240, 1082.15, 0, 2, 657, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (558, 4, 'LS Apartment Near Beach Medium', 0, 0, 0, 40000, 500, 657.39, -1481.28, 14.85, 0, 0, 0, 0, -1, 225.75, 1240, 1082.15, 0, 2, 658, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (559, 4, 'LS Apartment Near Beach Medium', 0, 0, 0, 40000, 499, 662.43, -1487.5, 14.85, 0, 0, 0, 0, -1, 225.75, 1240, 1082.15, 0, 2, 659, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (560, 4, 'LS Apartment Near Beach Medium', 0, 0, 0, 40000, 0, 648.85, -1489.52, 14.84, 0, 0, 0, 0, -1, 225.75, 1240, 1082.15, 0, 2, 660, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (561, 4, 'LS Apartment Near Beach Medium', 0, 0, 0, 40000, 5000, 648.86, -1442.35, 14.73, 0, 0, 0, 0, -1, 225.75, 1240, 1082.15, 0, 2, 661, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (562, 4, 'LS Apartment Near Beach Medium', 0, 0, 0, 40000, 500, 657.35, -1434.11, 14.85, 0, 0, 0, 0, -1, 225.75, 1240, 1082.15, 0, 2, 662, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (563, 4, 'LS Apartment Near Beach Medium', 0, 0, 0, 40000, 0, 662.43, -1440.42, 14.85, 0, 0, 0, 0, -1, 225.75, 1240, 1082.15, 0, 2, 663, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (564, 4, 'LS Apartment Near Beach Medium', 0, 0, 0, 40000, 0, 685.53, -1421.91, 14.77, 0, 0, 0, 0, -1, 225.75, 1240, 1082.15, 0, 2, 664, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (565, 4, 'LS Apartment Near Beach Medium', 0, 0, 0, 40000, 0, 739.09, -1418.51, 13.52, 0, 0, 0, 0, -1, 225.75, 1240, 1082.15, 0, 2, 665, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (566, 4, 'LS Apartment Near Beach Medium', 0, 0, 0, 40000, 0, 738.98, -1428.77, 13.9, 0, 0, 0, 0, -1, 225.75, 1240, 1082.15, 0, 2, 666, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (567, 4, 'LS Apartment Near Beach Medium', 0, 0, 0, 40000, 0, 725.6, -1440.45, 13.53, 0, 0, 0, 0, -1, 225.75, 1240, 1082.15, 0, 2, 667, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (568, 4, 'LS Apartment Near Beach Medium', 0, 0, 0, 40000, 500, 662.43, -1514.03, 14.85, 0, 0, 0, 0, -1, 225.75, 1240, 1082.15, 0, 2, 668, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (569, 4, 'LS Apartment Near Beach Medium', 0, 0, 0, 40000, 0, 657.43, -1528.46, 14.85, 0, 0, 0, 0, -1, 225.75, 1240, 1082.15, 0, 2, 669, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (570, 4, 'LS Apartment Near Beach Medium', 0, 0, 0, 40000, 3000, 662.43, -1534.8, 14.85, 0, 0, 0, 0, -1, 225.75, 1240, 1082.15, 0, 2, 670, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (571, 4, 'LS Apartment Near Beach Medium', 0, 0, 0, 40000, 0, 648.85, -1536.7, 14.93, 0, 0, 0, 0, -1, 225.75, 1240, 1082.15, 0, 2, 671, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (572, 4, 'LS Apartment Near Beach Medium', 0, 0, 0, 40000, 0, 653.24, -1619.92, 15, 0, 0, 0, 0, -1, 225.75, 1240, 1082.15, 0, 2, 672, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (573, 4, 'LS Apartment Near Beach Medium', 0, 0, 0, 40000, 0, 692.86, -1602.77, 15.04, 0, 0, 0, 0, -1, 225.75, 1240, 1082.15, 0, 2, 673, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (574, 4, 'LS Apartment Near Beach Medium', 0, 0, 0, 40000, 0, 697.28, -1627, 3.75, 0, 0, 0, 0, -1, 225.75, 1240, 1082.15, 0, 2, 674, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (575, 4, 'LS Apartment Near Beach Medium', 0, 0, 0, 40000, 0, 813.69, -1456.63, 14.22, 0, 0, 0, 0, -1, 225.75, 1240, 1082.15, 0, 2, 675, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (576, 4, 'Small House In SF', 0, 0, 0, 30000, 0, -2383.75, 1128.1, 55.73, 0, 0, 0, 0, -1, 261.06, 1284.29, 1080.25, 0, 4, 676, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (577, 4, 'Apartment Near the beach LS big', 0, 0, 0, 25000, 100, 822.38, -1505.51, 14.4, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 677, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (578, 4, 'Small Nice House In SF', 0, 0, 0, 60000, 0, -2396.81, 1132.76, 55.73, 0, 0, 0, 0, -1, 22.93, 1403.32, 1084.43, 0, 5, 678, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (579, 4, 'Apartment Near the beach LS big', 0, 0, 0, 25000, 0, 849.59, -1519.96, 14.35, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 679, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (580, 4, 'Small House In SF', 0, 0, 0, 30000, 0, -2407.02, 1135.82, 55.73, 0, 0, 0, 0, -1, 261.06, 1284.29, 1080.25, 0, 4, 680, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (581, 4, 'LS Apartment Near Beach Medium', 0, 0, 0, 40000, 5000, 771.12, -1510.72, 13.54, 0, 0, 0, 0, -1, 225.75, 1240, 1082.15, 0, 2, 681, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (582, 4, 'LS Apartment Near Beach Medium', 0, 0, 0, 40000, 0, 761.07, -1564.08, 13.93, 0, 0, 0, 0, -1, 225.75, 1240, 1082.15, 0, 2, 682, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (583, 4, 'LS Apartment Near Beach Medium', 0, 0, 0, 25000, 0, 841.34, -1471.36, 14.31, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 683, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (584, 4, 'Apartment Near the beach LS big', 0, 0, 0, 25000, 0, 782.79, -1464.49, 13.54, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 684, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (585, 4, 'Apartment Near the beach LS big', 0, 0, 0, 25000, 0, 824.5, -1424.2, 14.5, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 685, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (586, 4, 'Apartment Near the beach LS big', 0, 0, 0, 25000, 0, 852.2, -1423.27, 14.13, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 686, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (587, 4, 'Small House In SF', 0, 0, 0, 30000, 0, -2413.67, 1137.49, 55.73, 0, 0, 0, 0, -1, 261.06, 1284.29, 1080.25, 0, 4, 687, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (588, 4, 'Apartment Near the beach LS big', 0, 0, 0, 25000, 0, 880.12, -1424.82, 14.48, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 688, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (589, 4, 'Small Very Nice House In SF', 0, 0, 0, 55000, 0, -2424.02, 1139.41, 55.73, 0, 0, 0, 0, -1, 295.21, 1472.26, 1080.25, 0, 15, 689, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (590, 4, 'Apartment Near the beach LS big', 0, 0, 0, 25000, 0, 900.22, -1447.41, 14.37, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 690, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (591, 4, 'Apartment Near the beach LS big', 0, 0, 0, 25000, 0, 898.28, -1445.64, 14.36, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 691, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (592, 4, 'Small House In SF', 0, 0, 0, 30000, 0, -2438.17, 1141, 55.73, 0, 0, 0, 0, -1, 261.06, 1284.29, 1080.25, 0, 4, 692, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (593, 4, 'Apartment Near the beach LS big', 0, 0, 0, 25000, 4999, 900.2, -1471.03, 14.34, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 693, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (594, 4, 'Apartment Near the beach LS big', 0, 0, 0, 25000, 5000, 898.36, -1472.83, 14.34, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 694, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (595, 4, 'Apartment Near the beach LS big', 0, 0, 0, 25000, 0, 852.51, -1436.23, 15.04, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 695, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (596, 4, 'Small Very Nice House In SF', 0, 0, 0, 55000, 0, -2451.11, 1141.75, 55.73, 0, 0, 0, 0, -1, 295.21, 1472.26, 1080.25, 0, 15, 696, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (597, 4, 'Apartment Near the beach LS big', 0, 0, 0, 25000, 0, 784.39, -1436.11, 13.54, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 697, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (598, 4, 'Small House In SF', 0, 0, 0, 30000, 0, -2461.57, 1141.9, 55.73, 0, 0, 0, 0, -1, 261.06, 1284.29, 1080.25, 0, 4, 698, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (599, 4, 'Apartment Near the beach LS big', 0, 0, 0, 25000, 1, 987.5, -1624.49, 14.93, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 699, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (600, 4, 'Small House In SF', 0, 0, 0, 30000, 0, -2468.52, 1141.91, 55.73, 0, 0, 0, 0, -1, 261.06, 1284.29, 1080.25, 0, 4, 700, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (601, 4, 'Small Nice House In SF', 0, 0, 0, 60000, 0, -2478.92, 1141.96, 55.73, 0, 0, 0, 0, -1, 22.93, 1403.32, 1084.43, 0, 5, 701, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (602, 4, 'Apartment Near the beach LS big', 0, 0, 0, 25000, 1, 987.52, -1704.34, 14.93, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 702, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (603, 4, 'Small House In SF', 0, 0, 0, 30000, 0, -2493.18, 1141.98, 55.73, 0, 0, 0, 0, -1, 261.06, 1284.29, 1080.25, 0, 4, 703, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (604, 4, 'Small Nice House In SF', 0, 0, 0, 60000, 0, -2506.44, 1142.08, 55.73, 0, 0, 0, 0, -1, 22.93, 1403.32, 1084.43, 0, 5, 704, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (605, 4, 'Small House In SF', 0, 0, 0, 30000, 0, -2517, 1142.41, 55.73, 0, 0, 0, 0, -1, 261.06, 1284.29, 1080.25, 0, 4, 705, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (606, 4, 'Small House In SF', 0, 0, 0, 30000, 0, -2523.88, 1142.67, 55.73, 0, 0, 0, 0, -1, 261.06, 1284.29, 1080.25, 0, 4, 706, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (607, 4, 'Small Nice House In SF', 0, 0, 0, 60000, 0, -2534.53, 1143.77, 55.73, 0, 0, 0, 0, -1, 22.93, 1403.32, 1084.43, 0, 5, 707, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (608, 4, 'Small House In SF', 0, 0, 0, 30000, 0, -2549.06, 1145.72, 55.73, 0, 0, 0, 0, -1, 261.06, 1284.29, 1080.25, 0, 4, 708, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (609, 4, 'Small Nice House In SF', 0, 0, 0, 60000, 0, -2563.2, 1149.12, 55.73, 0, 0, 0, 0, -1, 22.93, 1403.32, 1084.43, 0, 5, 709, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (610, 4, 'LS Apartment Near Beach Medium', 0, 0, 0, 40000, 0, 675.14, -1430.51, 14.85, 0, 0, 0, 0, -1, 225.75, 1240, 1082.15, 0, 2, 710, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (611, 4, 'LS Apartment Near Beach Medium', 0, 0, 0, 40000, 1, 683.4, -1435.48, 14.85, 0, 0, 0, 0, -1, 225.75, 1240, 1082.15, 0, 2, 711, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (612, 4, 'LS Apartment Near Beach Medium', 0, 0, 0, 40000, 0, 725.69, -1451.04, 17.69, 0, 0, 0, 0, -1, 225.75, 1240, 1082.15, 0, 2, 712, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (613, 4, 'LS Apartment Near Beach Medium', 0, 0, 0, 40000, 0, 877.97, -1514.64, 14.35, 0, 0, 0, 0, -1, 225.75, 1240, 1082.15, 0, 2, 713, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (614, 4, 'LS Apartment Near Beach Medium', 0, 0, 0, 40000, 300, 876.21, -1512.7, 14.35, 0, 0, 0, 0, -1, 225.75, 1240, 1082.15, 0, 2, 714, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (615, 4, 'LS Apartment Near Beach Medium', 0, 0, 0, 40000, 500, 901.71, -1514.66, 14.36, 0, 0, 0, 0, -1, 225.75, 1240, 1082.15, 0, 2, 715, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (616, 4, 'LS Apartment Near Beach Medium', 0, 0, 0, 40000, 0, 903.4, -1512.85, 14.36, 0, 0, 0, 0, -1, 225.75, 1240, 1082.15, 0, 2, 716, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (617, 4, 'LS Apartment Near Beach Medium', 0, 0, 0, 40000, 2000, 797.24, -1729.38, 13.54, 0, 0, 0, 0, -1, 225.75, 1240, 1082.15, 0, 2, 717, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (618, 4, 'Medium Size House In SF', 0, 0, 0, 120000, 0, -2711.23, 967.59, 54.46, 0, 0, 0, 0, -1, 447, 1397.09, 1084.3, 0, 2, 718, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (619, 4, 'Medium Size House In SF', 0, 0, 0, 120000, 0, -2656.6, 985.82, 64.99, 0, 0, 0, 0, -1, 447, 1397.09, 1084.3, 0, 2, 719, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (620, 4, 'Small Nice House In SF', 0, 0, 0, 60000, 0, -2584.18, 992.25, 78.27, 0, 0, 0, 0, -1, 22.93, 1403.32, 1084.43, 0, 5, 720, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (621, 4, 'LS Apartment Near Beach Medium', 0, 0, 0, 40000, 0, 791.38, -1753.22, 13.46, 0, 0, 0, 0, -1, 225.75, 1240, 1082.15, 0, 2, 721, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (622, 4, 'Small House In SF', 0, 0, 0, 30000, 0, -2573.6, 992.26, 78.27, 0, 0, 0, 0, -1, 261.06, 1284.29, 1080.25, 0, 4, 722, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (623, 4, 'LS Apartment Near Beach Medium', 0, 0, 0, 40000, 0, 893.64, -1635.7, 14.93, 0, 0, 0, 0, -1, 225.75, 1240, 1082.15, 0, 2, 723, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (624, 4, 'Small House In SF', 0, 0, 0, 30000, 0, -2564.32, 992.25, 78.27, 0, 0, 0, 0, -1, 261.06, 1284.29, 1080.25, 0, 4, 724, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (625, 4, 'LS Apartment Near Beach Medium', 0, 0, 0, 40000, 0, 846.72, -1717.4, 14.93, 0, 0, 0, 0, -1, 225.75, 1240, 1082.15, 0, 2, 725, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (626, 4, 'Small Nice House In SF', 0, 0, 0, 60000, 0, -2553.66, 992.25, 78.27, 0, 0, 0, 0, -1, 22.93, 1403.32, 1084.43, 0, 5, 726, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (627, 4, 'LS Apartment Near Beach Medium', 0, 0, 0, 40000, 0, 865.22, -1633.84, 14.93, 0, 0, 0, 0, -1, 225.75, 1240, 1082.15, 0, 2, 727, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (628, 4, 'Appartment 2nd Floor In SF', 0, 0, 0, 80000, 0, -2543.56, 922.38, 67.09, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 728, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (629, 4, 'Appartment 1st Floor In SF', 0, 0, 0, 80000, 0, -2545.33, 920.34, 64.98, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 729, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (630, 4, 'Small Nice House In SF', 0, 0, 0, 60000, 0, -2551.82, 920.38, 64.98, 0, 0, 0, 0, -1, 22.93, 1403.32, 1084.43, 0, 5, 730, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (631, 4, 'Small House In SF', 0, 0, 0, 30000, 0, -2562.42, 920.37, 64.98, 0, 0, 0, 0, -1, 261.06, 1284.29, 1080.25, 0, 4, 731, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (632, 4, 'Small House In SF', 0, 0, 0, 30000, 0, -2569.98, 920.36, 64.98, 0, 0, 0, 0, -1, 261.06, 1284.29, 1080.25, 0, 4, 732, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (633, 4, 'Small Nice House In SF', 0, 0, 0, 60000, 0, -2580.92, 920.38, 64.98, 0, 0, 0, 0, -1, 22.93, 1403.32, 1084.43, 0, 5, 733, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (634, 4, 'Medium house at LV', 0, 0, 0, 150000, 0, 1364.51, 1896.76, 11.47, 0, 0, 0, 0, -1, 447, 1397.09, 1084.3, 0, 2, 734, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (635, 4, 'Medium house at LV', 0, 0, 0, 150000, 5, 1363.96, 1931.62, 11.47, 0, 0, 0, 0, -1, 447, 1397.09, 1084.3, 0, 2, 735, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (636, 4, '3 Floor House In SF', 0, 0, 0, 600000, 0, -2641.24, 935.72, 71.95, 0, 0, 0, 0, -1, 226.3, 1114.37, 1080.99, 0, 5, 736, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (637, 4, 'Medium house at LV', 0, 0, 0, 150000, 0, 1412.63, 1951.25, 11.45, 0, 0, 0, 0, -1, 447, 1397.09, 1084.3, 0, 2, 737, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (638, 4, 'Medium house at LV', 0, 0, 0, 150000, 0, 1439.76, 1951.25, 11.46, 0, 0, 0, 0, -1, 447, 1397.09, 1084.3, 0, 2, 738, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (639, 4, 'Medium house at LV', 0, 0, 0, 150000, 0, 1462.3, 1949.81, 11.47, 0, 0, 0, 0, -1, 447, 1397.09, 1084.3, 0, 2, 739, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (640, 4, 'Medium house at LV', 0, 0, 0, 150000, 0, 1464.5, 1919.98, 11.46, 0, 0, 0, 0, -1, 447, 1397.09, 1084.3, 0, 2, 740, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (641, 4, 'Medium house at LV', 0, 0, 0, 150000, 0, 1464.49, 1895.12, 11.46, 0, 0, 0, 0, -1, 447, 1397.09, 1084.3, 0, 2, 741, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (642, 4, 'Medium house at LV', 0, 0, 0, 150000, 0, 1409.36, 1920.01, 11.47, 0, 0, 0, 0, -1, 447, 1397.09, 1084.3, 0, 2, 742, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (643, 4, 'Medium house at LV', 0, 0, 0, 150000, 0, 1365.41, 1974.17, 11.46, 0, 0, 0, 0, -1, 447, 1397.09, 1084.3, 0, 2, 743, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (644, 4, 'Medium house at LV', 0, 0, 0, 150000, 0, 1364.39, 2003.71, 11.46, 0, 0, 0, 0, -1, 447, 1397.09, 1084.3, 0, 2, 744, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (645, 4, 'Large House In SF', 0, 0, 0, 470000, 2500, -2661.96, 876.34, 79.77, 0, 0, 0, 0, -1, 234.22, 1063.89, 1084.21, 0, 6, 745, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (646, 4, 'small project lv', 0, 0, 0, 30000, 0, 1422.26, 2026.93, 14.74, 0, 0, 0, 0, -1, 266.5, 304.99, 999.14, 0, 2, 746, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (647, 4, 'Small Nice House In SF', 0, 0, 0, 60000, 0, -2583.77, 896.25, 64.98, 0, 0, 0, 0, -1, 22.93, 1403.32, 1084.43, 0, 5, 747, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (648, 4, 'small project lv', 0, 0, 0, 30000, 0, 1414.7, 2026.87, 10.82, 0, 0, 0, 0, -1, 266.5, 304.99, 999.14, 0, 2, 748, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (649, 4, 'small project lv', 0, 0, 0, 30000, 0, 1422.25, 2026.95, 10.82, 0, 0, 0, 0, -1, 266.5, 304.99, 999.14, 0, 2, 749, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (650, 4, 'small project lv', 0, 0, 0, 30000, 0, 1414.7, 2033.17, 10.82, 0, 0, 0, 0, -1, 266.5, 304.99, 999.14, 0, 2, 750, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (651, 4, 'small project lv', 0, 0, 0, 30000, 0, 1422.25, 2033.18, 10.82, 0, 0, 0, 0, -1, 266.5, 304.99, 999.14, 0, 2, 751, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (652, 4, 'small project lv', 0, 0, 0, 30000, 0, 1414.7, 2033.13, 14.74, 0, 0, 0, 0, -1, 266.5, 304.99, 999.14, 0, 2, 752, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (653, 4, 'small project lv', 0, 0, 0, 30000, 0, 1422.25, 2033.18, 14.74, 0, 0, 0, 0, -1, 266.5, 304.99, 999.14, 0, 2, 753, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (654, 4, 'small project lv', 0, 0, 0, 30000, 0, 1414.7, 2026.97, 14.74, 0, 0, 0, 0, -1, 266.5, 304.99, 999.14, 0, 2, 754, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (655, 4, 'small project lv', 0, 0, 0, 30000, 0, 1453.72, 2026.92, 10.82, 0, 0, 0, 0, -1, 266.5, 304.99, 999.14, 0, 2, 755, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (656, 4, 'small project lv', 0, 0, 0, 30000, 0, 1461.28, 2026.95, 10.82, 0, 0, 0, 0, -1, 266.5, 304.99, 999.14, 0, 2, 756, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (657, 4, 'small project lv', 0, 0, 0, 30000, 0, 1453.72, 2033.22, 10.82, 0, 0, 0, 0, -1, 266.5, 304.99, 999.14, 0, 2, 757, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (658, 4, 'small project lv', 0, 0, 0, 30000, 0, 1461.28, 2033.19, 10.82, 0, 0, 0, 0, -1, 266.5, 304.99, 999.14, 0, 2, 758, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (659, 4, 'small project lv', 0, 0, 0, 30000, 0, 1453.72, 2033.21, 14.74, 0, 0, 0, 0, -1, 266.5, 304.99, 999.14, 0, 2, 759, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (660, 4, 'small project lv', 0, 0, 0, 30000, 0, 1461.28, 2033.11, 14.74, 0, 0, 0, 0, -1, 266.5, 304.99, 999.14, 0, 2, 760, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (661, 4, 'small project lv', 0, 0, 0, 30000, 0, 1453.72, 2026.95, 14.74, 0, 0, 0, 0, -1, 266.5, 304.99, 999.14, 0, 2, 761, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (662, 4, 'small project lv', 0, 0, 0, 30000, 0, 1461.28, 2026.91, 14.74, 0, 0, 0, 0, -1, 266.5, 304.99, 999.14, 0, 2, 762, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (663, 4, 'Small House In SF', 0, 0, 0, 30000, 0, -2573.13, 896.26, 64.98, 0, 0, 0, 0, -1, 261.06, 1284.29, 1080.25, 0, 4, 763, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (664, 4, 'small project lv', 0, 0, 0, 30000, 0, 1414.53, 2003.91, 10.82, 0, 0, 0, 0, -1, 266.5, 304.99, 999.14, 0, 2, 764, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (665, 4, 'small project lv', 0, 0, 0, 30000, 0, 1414.48, 1996.36, 10.82, 0, 0, 0, 0, -1, 266.5, 304.99, 999.14, 0, 2, 765, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (666, 4, 'Small House In SF', 0, 0, 0, 30000, 0, -2566.5, 896.65, 64.98, 0, 0, 0, 0, -1, 261.06, 1284.29, 1080.25, 0, 4, 766, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (667, 4, 'small project lv', 0, 0, 0, 30000, 0, 1408.26, 2003.91, 10.82, 0, 0, 0, 0, -1, 266.5, 304.99, 999.14, 0, 2, 767, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (668, 4, 'small project lv', 0, 0, 0, 30000, 0, 1408.18, 1996.36, 10.82, 0, 0, 0, 0, -1, 266.5, 304.99, 999.14, 0, 2, 768, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (669, 4, 'small project lv', 0, 0, 0, 30000, 0, 1408.31, 1996.36, 14.74, 0, 0, 0, 0, -1, 266.5, 304.99, 999.14, 0, 2, 769, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (670, 4, 'small project lv', 0, 0, 0, 30000, 0, 1408.35, 2003.91, 14.74, 0, 0, 0, 0, -1, 266.5, 304.99, 999.14, 0, 2, 770, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (671, 4, 'small project lv', 0, 0, 0, 30000, 0, 1414.51, 1996.36, 14.74, 0, 0, 0, 0, -1, 266.5, 304.99, 999.14, 0, 2, 771, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (672, 4, 'small project lv', 0, 0, 0, 30000, 0, 1414.52, 2003.91, 14.74, 0, 0, 0, 0, -1, 266.5, 304.99, 999.14, 0, 2, 772, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (673, 4, 'Small Nice House In SF', 0, 0, 0, 60000, 0, -2556.02, 896.64, 64.98, 0, 0, 0, 0, -1, 22.93, 1403.32, 1084.43, 0, 5, 773, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (674, 4, 'small project lv', 0, 0, 0, 30000, 0, 1495.69, 2026.97, 10.82, 0, 0, 0, 0, -1, 266.5, 304.99, 999.14, 0, 2, 774, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (675, 4, 'small project lv', 0, 0, 0, 30000, 0, 1503.24, 2027.01, 10.82, 0, 0, 0, 0, -1, 266.5, 304.99, 999.14, 0, 2, 775, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (676, 4, 'small project lv', 0, 0, 0, 30000, 0, 1495.69, 2033.25, 10.82, 0, 0, 0, 0, -1, 266.5, 304.99, 999.14, 0, 2, 776, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (677, 4, 'small project lv', 0, 0, 0, 30000, 0, 1503.24, 2033.15, 10.82, 0, 0, 0, 0, -1, 266.5, 304.99, 999.14, 0, 2, 777, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (678, 4, 'small project lv', 0, 0, 0, 30000, 0, 1495.69, 2033.16, 14.74, 0, 0, 0, 0, -1, 266.5, 304.99, 999.14, 0, 2, 778, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (679, 4, 'small project lv', 0, 0, 0, 30000, 0, 1503.25, 2033.2, 14.74, 0, 0, 0, 0, -1, 266.5, 304.99, 999.14, 0, 2, 779, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (680, 4, 'small project lv', 0, 0, 0, 30000, 0, 1495.69, 2027.01, 14.74, 0, 0, 0, 0, -1, 266.5, 304.99, 999.14, 0, 2, 780, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (681, 4, 'small project lv', 0, 0, 0, 30000, 0, 1503.24, 2026.85, 14.74, 0, 0, 0, 0, -1, 266.5, 304.99, 999.14, 0, 2, 781, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (682, 4, 'small project lv', 0, 0, 0, 30000, 0, 1534.72, 2026.98, 10.82, 0, 0, 0, 0, -1, 266.5, 304.99, 999.14, 0, 2, 782, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (683, 4, 'small project lv', 0, 0, 0, 30000, 0, 1542.26, 2026.88, 10.82, 0, 0, 0, 0, -1, 266.5, 304.99, 999.14, 0, 2, 783, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (684, 4, 'small project lv', 0, 0, 0, 30000, 0, 1534.72, 2033.18, 10.82, 0, 0, 0, 0, -1, 266.5, 304.99, 999.14, 0, 2, 784, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (685, 4, 'small project lv', 0, 0, 0, 30000, 0, 1542.27, 2033.22, 10.82, 0, 0, 0, 0, -1, 266.5, 304.99, 999.14, 0, 2, 785, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (686, 4, 'Small House In SF', 0, 0, 0, 30000, 0, -2541.55, 896.64, 64.98, 0, 0, 0, 0, -1, 261.06, 1284.29, 1080.25, 0, 4, 786, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (687, 4, 'small project lv', 0, 0, 0, 30000, 0, 1534.72, 2033.23, 14.74, 0, 0, 0, 0, -1, 266.5, 304.99, 999.14, 0, 2, 787, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (688, 4, 'small project lv', 0, 0, 0, 30000, 0, 1542.27, 2033.12, 14.74, 0, 0, 0, 0, -1, 266.5, 304.99, 999.14, 0, 2, 788, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (689, 4, 'small project lv', 0, 0, 0, 30000, 0, 1534.71, 2027, 14.74, 0, 0, 0, 0, -1, 266.5, 304.99, 999.14, 0, 2, 789, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (690, 4, 'small project lv', 0, 0, 0, 30000, 0, 1542.27, 2026.88, 14.74, 0, 0, 0, 0, -1, 266.5, 304.99, 999.14, 0, 2, 790, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (691, 4, 'small project lv', 0, 0, 0, 30000, 0, 1542.45, 2003.91, 10.82, 0, 0, 0, 0, -1, 266.5, 304.99, 999.14, 0, 2, 791, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (692, 4, 'small project lv', 0, 0, 0, 30000, 0, 1542.49, 1996.36, 10.82, 0, 0, 0, 0, -1, 266.5, 304.99, 999.14, 0, 2, 792, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (693, 4, 'small project lv', 0, 0, 0, 30000, 0, 1548.75, 2003.91, 10.82, 0, 0, 0, 0, -1, 266.5, 304.99, 999.14, 0, 2, 793, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (694, 4, 'small project lv', 0, 0, 0, 30000, 0, 1548.68, 1996.35, 10.82, 0, 0, 0, 0, -1, 266.5, 304.99, 999.14, 0, 2, 794, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (695, 4, 'small project lv', 0, 0, 0, 30000, 0, 1548.7, 2003.91, 14.74, 0, 0, 0, 0, -1, 266.5, 304.99, 999.14, 0, 2, 795, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (696, 4, 'small project lv', 0, 0, 0, 30000, 0, 1548.64, 1996.35, 14.74, 0, 0, 0, 0, -1, 266.5, 304.99, 999.14, 0, 2, 796, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (697, 4, 'small project lv', 0, 0, 0, 30000, 0, 1542.55, 2003.89, 14.74, 0, 0, 0, 0, -1, 266.5, 304.99, 999.14, 0, 2, 797, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (698, 4, 'small project lv', 0, 0, 0, 30000, 0, 1542.41, 1996.35, 14.74, 0, 0, 0, 0, -1, 266.5, 304.99, 999.14, 0, 2, 798, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (699, 4, 'Medium house at LV', 0, 0, 0, 150000, 0, 1595.5, 2038.34, 11.47, 0, 0, 0, 0, -1, 447, 1397.09, 1084.3, 0, 2, 799, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (700, 4, '3 Story Condo In SF', 0, 0, 0, 120000, 0, -2502.88, 921.37, 65.24, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 800, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (701, 4, 'Medium house at LV', 0, 0, 0, 150000, 0, 1641.79, 2044.95, 11.32, 0, 0, 0, 0, -1, 447, 1397.09, 1084.3, 0, 2, 801, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (702, 4, 'Medium house at LV', 0, 0, 0, 150000, 0, 1594.96, 2071.07, 11.32, 0, 0, 0, 0, -1, 447, 1397.09, 1084.3, 0, 2, 802, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (703, 4, '3 Story Condo In SF', 0, 0, 0, 120000, 0, -2471.77, 921.42, 63.16, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 803, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (704, 4, 'Medium house at LV', 0, 0, 0, 150000, 0, 1596.41, 2093.74, 11.31, 0, 0, 0, 0, -1, 447, 1397.09, 1084.3, 0, 2, 804, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (705, 4, 'Medium house at LV', 0, 0, 0, 150000, 0, 1640.35, 2075.67, 11.31, 0, 0, 0, 0, -1, 447, 1397.09, 1084.3, 0, 2, 805, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (706, 4, 'Medium house at LV', 0, 0, 0, 150000, 0, 1640.35, 2102.86, 11.31, 0, 0, 0, 0, -1, 447, 1397.09, 1084.3, 0, 2, 806, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (707, 4, '3 Story Condo In SF', 0, 0, 0, 120000, 0, -2449.79, 921.4, 58.14, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 807, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (708, 4, 'Medium house at LV', 0, 0, 0, 150000, 0, 1645.45, 2127.38, 11.2, 0, 0, 0, 0, -1, 447, 1397.09, 1084.3, 0, 2, 808, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (709, 4, 'Medium house at LV', 0, 0, 0, 150000, 0, 1641.26, 2149.74, 11.31, 0, 0, 0, 0, -1, 447, 1397.09, 1084.3, 0, 2, 809, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (710, 4, '3 Story Condo In SF', 0, 0, 0, 120000, 0, -2431.38, 921.41, 50.58, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 810, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (711, 4, '5 Story Condo In SF', 0, 0, 0, 500000, 0, -2413.09, 921.43, 45.47, 0, 0, 0, 0, -1, 226.3, 1114.37, 1080.99, 0, 5, 811, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (712, 4, 'Medium house at LV', 0, 0, 0, 150000, 0, 1595.5, 2123.37, 11.46, 0, 0, 0, 0, -1, 447, 1397.09, 1084.3, 0, 2, 812, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (713, 4, 'Medium house at LV', 0, 0, 0, 150000, 0, 1596.41, 2147.43, 11.46, 0, 0, 0, 0, -1, 447, 1397.09, 1084.3, 0, 2, 813, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (714, 4, '5 Story Condo In SF', 0, 0, 0, 500000, 0, -2412.98, 895.23, 45.47, 0, 0, 0, 0, -1, 226.3, 1114.37, 1080.99, 0, 5, 814, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (715, 4, 'Medium house at LV', 0, 0, 0, 150000, 0, 1684.51, 2123.46, 11.46, 0, 0, 0, 0, -1, 447, 1397.09, 1084.3, 0, 2, 815, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (716, 4, '3 Story Condo In SF', 0, 0, 0, 120000, 0, -2431.45, 895.25, 50.54, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 816, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (717, 4, 'Medium house at LV', 0, 0, 0, 150000, 0, 1685.42, 2093.88, 11.46, 0, 0, 0, 0, -1, 447, 1397.09, 1084.3, 0, 2, 817, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (718, 4, '3 Story Condo In SF', 0, 0, 0, 120000, 0, -2449.8, 895.24, 58.15, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 818, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (719, 4, 'Medium house at LV', 0, 0, 0, 150000, 0, 1680.26, 2069.24, 11.36, 0, 0, 0, 0, -1, 447, 1397.09, 1084.3, 0, 2, 819, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (720, 4, 'Medium house at LV', 0, 0, 0, 150000, 0, 1684.51, 2046.69, 11.47, 0, 0, 0, 0, -1, 447, 1397.09, 1084.3, 0, 2, 820, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (721, 4, '3 Story Condo In SF', 0, 0, 0, 120000, 0, -2471.93, 895.26, 63.17, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 821, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (722, 4, '3 Story Condo In SF', 0, 0, 0, 120000, 0, -2503.02, 895.26, 65.25, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 822, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (723, 4, '3 Story Condo In SF', 0, 0, 0, 120000, 0, -2585.97, 794.18, 49.42, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 823, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (724, 4, '3 Story Condo In SF', 0, 0, 0, 120000, 0, -2569.11, 794.17, 49.42, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 824, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (725, 4, '3 Story Condo In SF', 0, 0, 0, 120000, 0, -2550.83, 794.17, 49.42, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 825, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (726, 4, 'Nice looking house at lv', 0, 0, 0, 300000, 0, 2056.5, 2665.19, 10.82, 0, 0, 0, 0, -1, 234.22, 1063.89, 1084.21, 0, 6, 826, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (727, 4, 'Nice looking house at lv', 0, 0, 0, 300000, 0, 2037.04, 2664.5, 10.82, 0, 0, 0, 0, -1, 234.22, 1063.89, 1084.21, 0, 6, 827, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (728, 4, 'Nice looking house at lv', 0, 0, 0, 300000, 0, 2018.03, 2664.67, 11.3, 0, 0, 0, 0, -1, 234.22, 1063.89, 1084.21, 0, 6, 828, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (729, 4, 'Small Nice House In SF', 0, 0, 0, 60000, 0, -2548.68, 819.79, 49.98, 0, 0, 0, 0, -1, 22.93, 1403.32, 1084.43, 0, 5, 829, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (730, 4, 'Nice looking house at lv', 0, 0, 0, 300000, 0, 1989.24, 2665.19, 10.82, 0, 0, 0, 0, -1, 234.22, 1063.89, 1084.21, 0, 6, 830, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (731, 4, 'Small House In SF', 0, 0, 0, 30000, 0, -2559.22, 819.79, 49.98, 0, 0, 0, 0, -1, 261.06, 1284.29, 1080.25, 0, 4, 831, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (732, 4, 'Nice looking house at lv', 0, 0, 0, 300000, 0, 1969.62, 2664.5, 10.82, 0, 0, 0, 0, -1, 234.22, 1063.89, 1084.21, 0, 6, 832, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (733, 4, 'Nice looking house at lv', 0, 0, 0, 300000, 0, 1950.53, 2664.67, 11.3, 0, 0, 0, 0, -1, 234.22, 1063.89, 1084.21, 0, 6, 833, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (734, 4, 'Nice looking house at lv', 0, 0, 0, 300000, 0, 1921.7, 2665.19, 10.82, 0, 0, 0, 0, -1, 234.22, 1063.89, 1084.21, 0, 6, 834, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (735, 4, 'Small House In SF', 0, 0, 0, 30000, 0, -2565.91, 819.8, 49.99, 0, 0, 0, 0, -1, 261.06, 1284.29, 1080.25, 0, 4, 835, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (736, 4, 'Small Nice House In SF', 0, 0, 0, 60000, 0, -2576.42, 819.79, 49.98, 0, 0, 0, 0, -1, 22.93, 1403.32, 1084.43, 0, 5, 836, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (737, 4, 'Small House In SF', 0, 0, 0, 30000, 0, -2590.88, 819.8, 49.99, 0, 0, 0, 0, -1, 261.06, 1284.29, 1080.25, 0, 4, 837, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (738, 4, 'Nice looking house at lv', 0, 0, 0, 300000, 5000, 1929.85, 2774.3, 10.82, 0, 0, 0, 0, -1, 234.22, 1063.89, 1084.21, 0, 6, 838, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (739, 4, 'Small House In SF', 0, 0, 0, 30000, 0, -2642.14, 820.32, 49.99, 0, 0, 0, 0, -1, 261.06, 1284.29, 1080.25, 0, 4, 839, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (740, 4, 'Nice looking house at lv', 0, 0, 0, 300000, 0, 1931.29, 2721.26, 10.82, 0, 0, 0, 0, -1, 234.22, 1063.89, 1084.21, 0, 6, 840, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (741, 4, 'Small Nice House In SF', 0, 0, 0, 60000, 0, -2652.47, 820.32, 49.98, 0, 0, 0, 0, -1, 22.93, 1403.32, 1084.43, 0, 5, 841, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (742, 4, 'Nice looking house at lv', 0, 0, 0, 300000, 0, 1950.69, 2721.95, 10.82, 0, 0, 0, 0, -1, 234.22, 1063.89, 1084.21, 0, 6, 842, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (743, 4, 'Small House In SF', 0, 0, 0, 30000, 0, -2666.91, 820.32, 49.98, 0, 0, 0, 0, -1, 261.06, 1284.29, 1080.25, 0, 4, 843, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (744, 4, 'Nice looking house at lv', 0, 0, 0, 300000, 0, 1967.32, 2766.54, 10.83, 0, 0, 0, 0, -1, 234.22, 1063.89, 1084.21, 0, 6, 844, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (745, 4, 'Small House In SF', 0, 0, 0, 30000, 5000, -2645.52, 803.08, 49.98, 0, 0, 0, 0, -1, 261.06, 1284.29, 1080.25, 0, 4, 845, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (746, 4, 'Nice looking house at lv', 0, 0, 0, 300000, 0, 1992.54, 2764.64, 10.82, 0, 0, 0, 0, -1, 234.22, 1063.89, 1084.21, 0, 6, 846, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (747, 4, 'Small Nice House In SF', 0, 0, 0, 60000, 0, -2659.84, 803.09, 49.98, 0, 0, 0, 0, -1, 22.93, 1403.32, 1084.43, 0, 5, 847, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (748, 4, 'Nice looking house at lv', 0, 0, 0, 300000, 0, 1969.78, 2721.78, 11.3, 0, 0, 0, 0, -1, 234.22, 1063.89, 1084.21, 0, 6, 848, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (749, 4, 'Nice looking house at lv', 0, 0, 0, 300000, 0, 1998.72, 2721.26, 10.82, 0, 0, 0, 0, -1, 234.22, 1063.89, 1084.21, 0, 6, 849, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (750, 4, 'Small House In SF', 0, 0, 0, 30000, 0, -2670.57, 803.08, 49.98, 0, 0, 0, 0, -1, 261.06, 1284.29, 1080.25, 0, 4, 850, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (751, 4, 'Nice looking house at lv', 0, 0, 0, 300000, 0, 2018.15, 2721.95, 10.82, 0, 0, 0, 0, -1, 234.22, 1063.89, 1084.21, 0, 6, 851, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (752, 4, 'Small House In SF', 0, 0, 0, 30000, 1000, -2677.16, 803.09, 49.98, 0, 0, 0, 0, -1, 261.06, 1284.29, 1080.25, 0, 4, 852, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (753, 4, 'Nice looking house at lv', 0, 0, 0, 300000, 0, 2018.49, 2766.54, 10.83, 0, 0, 0, 0, -1, 234.22, 1063.89, 1084.21, 0, 6, 853, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (754, 4, 'Nice looking house at lv', 0, 0, 0, 300000, 0, 2039.63, 2766.55, 10.83, 0, 0, 0, 0, -1, 234.22, 1063.89, 1084.21, 0, 6, 854, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (755, 4, 'Small Nice House In SF', 0, 0, 0, 60000, 0, -2687.88, 803.09, 49.98, 0, 0, 0, 0, -1, 22.93, 1403.32, 1084.43, 0, 5, 855, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (756, 4, 'Small Nice House In SF', 0, 0, 0, 60000, 0, -2698.92, 803.1, 49.97, 0, 0, 0, 0, -1, 22.93, 1403.32, 1084.43, 0, 5, 856, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (757, 4, 'Nice looking house at lv', 0, 0, 0, 300000, 0, 2049.62, 2764.29, 10.82, 0, 0, 0, 0, -1, 234.22, 1063.89, 1084.21, 0, 6, 857, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (758, 4, 'Nice looking house at lv', 0, 0, 0, 300000, 0, 2066.01, 2721.26, 10.82, 0, 0, 0, 0, -1, 234.22, 1063.89, 1084.21, 0, 6, 858, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (759, 4, 'Small House In SF', 0, 0, 0, 30000, 0, -2709.85, 803.09, 49.98, 0, 0, 0, 0, -1, 261.06, 1284.29, 1080.25, 0, 4, 859, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (760, 4, '4 Story Condo In SF', 0, 0, 0, 400000, 0, -2685.1, 820.49, 49.98, 0, 0, 0, 0, -1, 234.22, 1063.89, 358.5, 0, 6, 860, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (761, 4, '4 Story Condo In SF', 0, 0, 0, 400000, 0, -2700.38, 820.84, 49.98, 0, 0, 0, 0, -1, 234.22, 1063.89, 358.5, 0, 6, 861, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (762, 4, 'Small Nice House In SF', 0, 0, 0, 60000, 0, -2726.68, 822.98, 53.73, 0, 0, 0, 0, -1, 22.93, 1403.32, 1084.43, 0, 5, 862, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (763, 4, 'Small House In SF', 0, 0, 0, 30000, 0, -2737.25, 822.99, 53.73, 0, 0, 0, 0, -1, 261.06, 1284.29, 1080.25, 0, 4, 863, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (764, 4, '4 Story Condo In SF', 0, 0, 0, 400000, 0, -2409.05, 819.96, 35.18, 0, 0, 0, 0, -1, 234.22, 1063.89, 358.5, 0, 6, 864, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (765, 4, '3 Story Condo In SF', 0, 0, 0, 120000, 0, -2487.47, 821.3, 38.38, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 865, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (766, 4, 'huge 2 floor nice looking house at LV', 0, 0, 0, 500000, 0, 1451.36, 2565.43, 10.83, 0, 0, 0, 0, -1, 226.3, 1114.37, 1080.99, 0, 5, 866, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (767, 4, '3 Story Condo In SF', 0, 0, 0, 120000, 0, -2504.61, 821.31, 45.99, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 867, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (768, 4, 'huge 2 floor nice looking house at LV', 0, 0, 0, 500000, 0, 1441.72, 2567.69, 10.82, 0, 0, 0, 0, -1, 226.3, 1114.37, 1080.99, 0, 5, 868, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (769, 4, 'huge 2 floor nice looking house at LV', 0, 0, 0, 500000, 0, 1417.87, 2567.48, 10.82, 0, 0, 0, 0, -1, 226.3, 1114.37, 1080.99, 0, 5, 869, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (770, 4, 'huge 2 floor nice looking house at LV', 0, 0, 0, 500000, 0, 1359.74, 2565.43, 10.83, 0, 0, 0, 0, -1, 226.3, 1114.37, 1080.99, 0, 5, 870, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (771, 4, 'Nice looking house at lv', 0, 0, 0, 300000, 0, 1344.72, 2610.19, 11.3, 0, 0, 0, 0, -1, 234.22, 1063.89, 1084.21, 0, 6, 871, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (772, 4, 'Normal Size House In SF', 0, 0, 0, 85000, 0, -2731.47, 723.69, 41.27, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 872, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (773, 4, 'huge 2 floor nice looking house at LV', 0, 0, 0, 500000, 0, 1349.6, 2567.69, 10.82, 0, 0, 0, 0, -1, 226.3, 1114.37, 1080.99, 0, 5, 873, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (774, 4, 'Nice looking house at lv', 0, 0, 0, 300000, 0, 1313.84, 2610.19, 11.3, 0, 0, 0, 0, -1, 234.22, 1063.89, 1084.21, 0, 6, 874, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (775, 4, 'huge 2 floor nice looking house at LV', 0, 0, 0, 500000, 0, 1325.61, 2567.34, 10.82, 0, 0, 0, 0, -1, 226.3, 1114.37, 1080.99, 0, 5, 875, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (776, 4, 'Small Nice House In SF', 0, 0, 0, 60000, 0, -2723.45, 722.82, 41.27, 0, 0, 0, 0, -1, 22.93, 1403.32, 1084.43, 0, 5, 876, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (777, 4, 'Small House In SF', 0, 0, 0, 30000, 0, -2710.89, 722.82, 39.72, 0, 0, 0, 0, -1, 261.06, 1284.29, 1080.25, 0, 4, 877, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (778, 4, 'Nice looking house at lv', 0, 0, 0, 300000, 0, 1284.86, 2610.72, 10.82, 0, 0, 0, 0, -1, 234.22, 1063.89, 1084.21, 0, 6, 878, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (779, 4, 'Small House In SF', 0, 0, 0, 30000, 0, -2706.75, 722.85, 37.54, 0, 0, 0, 0, -1, 261.06, 1284.29, 1080.25, 0, 4, 879, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (780, 4, 'Small Nice House In SF', 0, 0, 0, 500000, 0, 1271.88, 2564.57, 10.82, 0, 0, 0, 0, -1, 226.3, 1114.37, 1080.99, 0, 5, 880, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (781, 4, 'Small Nice House In SF', 0, 0, 0, 500000, 0, 1269.62, 2554.43, 10.83, 0, 0, 0, 0, -1, 226.3, 1114.37, 1080.99, 0, 5, 881, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (782, 4, 'Normal Size House In SF', 0, 0, 0, 85000, 0, -2686.04, 722.86, 32.23, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 882, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (783, 4, 'Small Nice House In SF', 0, 0, 0, 500000, 0, 1273.95, 2522.51, 10.82, 0, 0, 0, 0, -1, 226.3, 1114.37, 1080.99, 0, 5, 883, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (784, 4, 'Small Nice House In SF', 0, 0, 0, 500000, 0, 1316.47, 2524.65, 10.82, 0, 0, 0, 0, -1, 226.3, 1114.37, 1080.99, 0, 5, 884, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (785, 4, 'Small Nice House In SF', 0, 0, 0, 60000, 0, -2678.14, 722.25, 28.6, 0, 0, 0, 0, -1, 22.93, 1403.32, 1084.43, 0, 5, 885, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (786, 4, 'Small House In SF', 0, 0, 0, 30000, 0, -2665.49, 722.24, 27.96, 0, 0, 0, 0, -1, 261.06, 1284.29, 1080.25, 0, 4, 886, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (787, 4, 'Small House In SF', 0, 0, 0, 30000, 0, -2661.59, 722.23, 27.96, 0, 0, 0, 0, -1, 261.06, 1284.29, 1080.25, 0, 4, 887, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (788, 4, 'huge 2 floor nice looking house at LV', 0, 0, 0, 500000, 0, 1503.24, 2567.69, 10.82, 0, 0, 0, 0, -1, 226.3, 1114.37, 1080.99, 0, 5, 888, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (789, 4, 'Apartment 1st Floor In SF', 0, 0, 0, 80000, 0, -2642.08, 728.03, 27.96, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 889, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (790, 4, 'Nice looking house at lv', 0, 0, 0, 300000, 0, 1515.71, 2610.19, 11.3, 0, 0, 0, 0, -1, 234.22, 1063.89, 1084.21, 0, 6, 890, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (791, 4, 'Appartment 2nd Floor In SF', 0, 0, 0, 80000, 0, -2640.3, 730.54, 30.07, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 891, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (792, 4, 'huge 2 floor nice looking house at LV', 0, 0, 0, 500000, 0, 1513.38, 2565.43, 10.83, 0, 0, 0, 0, -1, 226.3, 1114.37, 1080.99, 0, 5, 892, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (793, 4, 'huge 2 floor nice looking house at LV', 0, 0, 0, 500000, 0, 1551.49, 2567.34, 10.82, 0, 0, 0, 0, -1, 226.3, 1114.37, 1080.99, 0, 5, 893, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (794, 4, 'Nice looking house at lv', 0, 0, 0, 300000, 0, 1554.45, 2610.72, 10.82, 0, 0, 0, 0, -1, 234.22, 1063.89, 1084.21, 0, 6, 894, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (795, 4, 'huge 2 floor nice looking house at LV', 0, 0, 0, 500000, 3500, 1564.61, 2565.43, 10.83, 0, 0, 0, 0, -1, 226.3, 1114.37, 1080.99, 0, 5, 895, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (796, 4, 'huge 2 floor nice looking house at LV', 0, 0, 0, 500000, 0, 1596.39, 2567.69, 10.82, 0, 0, 0, 0, -1, 226.3, 1114.37, 1080.99, 0, 5, 896, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (797, 4, 'Nice looking house at lv', 0, 0, 0, 300000, 0, 1600.59, 2610.03, 10.82, 0, 0, 0, 0, -1, 234.22, 1063.89, 1084.21, 0, 6, 897, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (798, 4, '3 Story Condo In SF', 0, 0, 0, 120000, 0, -2581.51, 719.02, 27.94, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 898, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (799, 4, 'Nice looking house at lv', 0, 0, 0, 300000, 0, 1618.8, 2610.03, 10.82, 0, 0, 0, 0, -1, 234.22, 1063.89, 1084.21, 0, 6, 899, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (800, 4, 'Nice looking house at lv', 0, 0, 0, 300000, 0, 1638.13, 2610.72, 10.82, 0, 0, 0, 0, -1, 234.22, 1063.89, 1084.21, 0, 6, 900, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (801, 4, 'huge 2 floor nice looking house at LV', 0, 0, 0, 500000, 0, 1623.47, 2567.34, 10.82, 0, 0, 0, 0, -1, 226.3, 1114.37, 1080.99, 0, 5, 901, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (802, 4, '3 Story Condo In SF', 0, 0, 0, 120000, 0, -2553.97, 719.02, 27.95, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 902, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (803, 4, 'Nice looking house at lv', 0, 0, 0, 300000, 0, 1646.59, 2569.58, 10.82, 0, 0, 0, 0, -1, 234.22, 1063.89, 1084.21, 0, 6, 903, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (804, 4, 'Nice looking house at lv', 0, 0, 0, 300000, 0, 1665.56, 2569.42, 11.3, 0, 0, 0, 0, -1, 234.22, 1063.89, 1084.21, 0, 6, 904, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (805, 4, 'Nice looking house at lv', 0, 0, 0, 300000, 0, 1666.95, 2610.19, 11.3, 0, 0, 0, 0, -1, 234.22, 1063.89, 1084.21, 0, 6, 905, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (806, 4, '3 Story Condo In SF', 0, 0, 0, 120000, 0, -2541.27, 733.1, 28.06, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 906, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (807, 4, '3 Story Condo In SF', 0, 0, 0, 120000, 0, -2541.24, 750.92, 33.7, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 907, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (808, 4, 'huge 2 floor nice looking house at LV', 0, 0, 0, 500000, 0, 1678.4, 2690.76, 10.82, 0, 0, 0, 0, -1, 226.3, 1114.37, 1080.99, 0, 5, 908, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (809, 4, '3 Story Condo In SF', 0, 0, 0, 120000, 0, -2541.24, 768.14, 40.02, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 909, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (810, 4, 'huge 2 floor nice looking house at LV', 0, 0, 0, 500000, 0, 1703.71, 2688.86, 10.83, 0, 0, 0, 0, -1, 226.3, 1114.37, 1080.99, 0, 5, 910, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (811, 4, '3 Story Condo In SF', 0, 0, 0, 120000, 0, -2541.24, 785.26, 46.23, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 911, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (812, 4, 'huge 2 floor nice looking house at LV', 0, 0, 0, 500000, 0, 1735.65, 2691.11, 10.82, 0, 0, 0, 0, -1, 226.3, 1114.37, 1080.99, 0, 5, 912, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (813, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 1754.52, 2736.02, 14.27, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 913, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (814, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 1752.26, 2744.57, 14.27, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 914, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (815, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 1751.45, 2747.35, 14.27, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 915, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (816, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 1749.2, 2755.91, 14.27, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 916, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (817, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 1748.42, 2758.69, 14.27, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 917, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (818, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 1745.39, 2770.03, 14.27, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 918, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (819, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 1746.17, 2767.25, 14.27, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 919, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (820, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 1743.04, 2778.56, 14.27, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 920, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (821, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 1746.04, 2767.21, 11.34, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 921, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (822, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 1745.41, 2770.03, 11.34, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 922, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (823, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 1748.48, 2758.71, 11.34, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 923, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (824, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 1749.19, 2755.9, 11.34, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 924, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (825, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 1751.46, 2747.35, 11.34, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 925, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (826, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 1752.22, 2744.56, 11.34, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 926, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (827, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 1780.81, 2744.57, 11.34, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 927, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (828, 4, '6 Story Condo In SF', 0, 0, 0, 450000, 0, -2513.52, 830.84, 50, 0, 0, 0, 0, -1, 226.3, 1114.37, 1080.99, 0, 5, 928, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (829, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 1781.51, 2747.37, 11.34, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 929, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (830, 4, 'lv project apartment small', 0, 0, 0, 40000, 500, 1778.54, 2736.01, 14.27, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 930, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (831, 4, '6 Story Condo In SF', 0, 0, 0, 450000, 0, -2513.5, 849.08, 52.7, 0, 0, 0, 0, -1, 226.3, 1114.37, 1080.99, 0, 5, 931, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (832, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 1781.55, 2747.36, 14.27, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 932, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (833, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 1780.82, 2744.56, 14.27, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 933, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (834, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 1784.62, 2758.69, 14.27, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 934, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (835, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 1783.78, 2755.92, 14.27, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 935, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (836, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 1787.64, 2770.04, 14.27, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 936, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (837, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 1786.83, 2767.26, 14.27, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 937, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (838, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 1789.83, 2778.61, 14.27, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 938, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (839, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 1787.57, 2770.06, 11.34, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 939, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (840, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 1786.89, 2767.25, 11.34, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 940, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (841, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 1784.6, 2758.7, 11.34, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 941, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (842, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 1783.84, 2755.91, 11.34, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 942, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (843, 4, '6 Story Condo In SF', 0, 0, 0, 450000, 0, -2513.53, 867.49, 57.74, 0, 0, 0, 0, -1, 226.3, 1114.37, 1080.99, 0, 5, 943, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (844, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 1789.89, 2778.6, 11.35, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 944, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (845, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 1800.78, 2775.68, 11.34, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 945, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (846, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 1797.69, 2764.35, 14.27, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 946, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (847, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 1798.47, 2767.14, 14.27, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 947, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (848, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 1794.71, 2753, 14.27, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 948, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (849, 4, '6 Story Condo In SF', 0, 0, 0, 450000, 0, -2513.51, 885.73, 62.78, 0, 0, 0, 0, -1, 226.3, 1114.37, 1080.99, 0, 5, 949, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (850, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 1795.38, 2755.81, 14.27, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 950, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (851, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 1791.66, 2741.66, 14.27, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 951, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (852, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 1792.42, 2744.45, 14.27, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 952, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (853, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 1789.49, 2733.08, 14.27, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 953, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (854, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 1792.54, 2744.42, 11.34, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 954, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (855, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 1791.73, 2741.64, 11.34, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 955, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (856, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 1795.42, 2755.8, 11.34, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 956, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (857, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 1794.75, 2752.99, 11.34, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 957, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (858, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 1798.54, 2767.12, 11.34, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 958, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (859, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 1797.78, 2764.33, 11.34, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 959, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (860, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 1800.77, 2775.68, 14.27, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 960, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (861, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 1736.36, 2803.59, 11.34, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 961, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (862, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 1737.11, 2800.79, 11.34, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 962, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (863, 4, 'Appartment 1st Floor In SF', 0, 0, 0, 80000, 0, -2538.73, 830.01, 49.98, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 963, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (864, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 1739.42, 2792.25, 14.27, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 964, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (865, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 1737.08, 2800.78, 14.27, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 965, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (866, 4, 'Appartment 2nd Floor In SF', 0, 0, 0, 80000, 0, -2540.51, 831.95, 52.09, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 966, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (867, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 1736.35, 2803.58, 14.27, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 967, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (868, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 1734.17, 2812.16, 11.34, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 968, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (869, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 1733.35, 2814.93, 11.34, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 969, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (870, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 1734.05, 2812.13, 14.27, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 970, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (871, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 1733.39, 2814.94, 14.27, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 971, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (872, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 1730.34, 2826.28, 14.27, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 972, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (873, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 1731, 2823.47, 14.27, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 973, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (874, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 1728.09, 2834.84, 14.27, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 974, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (875, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 1730.45, 2826.31, 11.34, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 975, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (876, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 1731.09, 2823.49, 11.34, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 976, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (877, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 1727.94, 2834.8, 11.34, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 977, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (878, 4, 'Small House In SF', 0, 0, 0, 30000, 0, -2539.71, 845.18, 50.6, 0, 0, 0, 0, -1, 261.06, 1284.29, 1080.25, 0, 4, 978, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (879, 4, 'Small House In SF', 0, 0, 0, 30000, 0, -2540.67, 855.14, 53.18, 0, 0, 0, 0, -1, 261.06, 1284.29, 1080.25, 0, 4, 979, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (880, 4, 'Small House In SF', 0, 0, 0, 30000, 0, -2540, 874.76, 58.92, 0, 0, 0, 0, -1, 261.06, 1284.29, 1080.25, 0, 4, 980, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (881, 4, 'Normal Size House In SF', 0, 0, 0, 85000, 0, -2540.18, 883.14, 63.25, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 981, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (882, 4, 'Small Nice House In SF', 0, 0, 0, 60000, 0, -2537.09, 929.45, 65.02, 0, 0, 0, 0, -1, 22.93, 1403.32, 1084.43, 0, 5, 982, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (883, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 1717.18, 2831.92, 11.35, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 983, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (884, 4, 'Small House In SF', 0, 0, 0, 30000, 0, -2542.47, 942.63, 64, 0, 0, 0, 0, -1, 261.06, 1284.29, 1080.25, 0, 4, 984, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (885, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 1717.01, 2831.87, 14.27, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 985, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (886, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 1720.19, 2820.57, 14.27, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 986, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (887, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 1719.41, 2823.35, 14.27, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 987, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (888, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 1723.14, 2809.21, 14.27, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 988, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (889, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 1722.45, 2812.01, 14.27, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 989, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (890, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 500, 2514.28, -1691.66, 14.04, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 990, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (891, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 5000, 2523.27, -1679.38, 15.5, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 991, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (892, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 5000, 2524.71, -1658.59, 15.82, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 992, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (893, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 1, 2513.72, -1650.24, 14.35, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 993, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (894, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 0, 2498.47, -1642.25, 14.11, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 994, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (895, 4, 'Ghetto Home LS Medium', 0, 0, 0, 40000, 0, 2486.46, -1644.53, 14.08, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 995, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (896, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 0, 2469.45, -1646.35, 13.78, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 996, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (897, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 0, 2451.91, -1641.41, 14.06, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 997, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (898, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 0, 2413.86, -1646.79, 14.01, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 998, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (899, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 1000, 2409.04, -1674.94, 14.38, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 999, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (900, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 0, 2393.13, -1646.04, 13.9, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 1000, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (901, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 1, 2384.7, -1675.83, 15.24, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 1001, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (902, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 0, 2362.8, -1643.14, 14.35, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 1002, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (903, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 0, 2368.29, -1675.34, 14.17, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 1003, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (904, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 0, 2326.89, -1681.94, 14.93, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 1004, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (905, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 20, 2385.39, -1711.66, 14.24, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 1005, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (906, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 0, 2326.75, -1716.7, 14.24, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 1006, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (907, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 0, 2308.89, -1714.34, 14.98, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 1007, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (908, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 0, 2244.54, -1637.64, 16.24, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 1008, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (909, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 100, 2257.11, -1643.94, 15.81, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 1009, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (910, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 0, 2282.29, -1641.21, 15.89, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 1010, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (911, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 0, 2307, -1679.19, 14.33, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 1011, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (912, 4, 'normal house at ls', 0, 0, 0, 150000, 0, 1928.69, -1915.91, 15.26, 0, 0, 0, 0, -1, 447, 1397.09, 1084.3, 0, 2, 1012, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (913, 4, 'normal house at ls', 0, 0, 0, 150000, 0, 1938.54, -1911.32, 15.26, 0, 0, 0, 0, -1, 447, 1397.09, 1084.3, 0, 2, 1013, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (914, 4, 'normal house at ls', 0, 0, 0, 150000, 0, 1913.47, -1911.9, 15.26, 0, 0, 0, 0, -1, 447, 1397.09, 1084.3, 0, 2, 1014, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (915, 4, 'normal house at ls', 0, 0, 0, 150000, 0, 1891.92, -1914.4, 15.26, 0, 0, 0, 0, -1, 447, 1397.09, 1084.3, 0, 2, 1015, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (916, 4, 'normal house at ls', 0, 0, 0, 150000, 0, 1872.21, -1911.79, 15.26, 0, 0, 0, 0, -1, 447, 1397.09, 1084.3, 0, 2, 1016, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (917, 4, 'normal house at ls', 0, 0, 0, 150000, 0, 1854.06, -1914.26, 15.26, 0, 0, 0, 0, -1, 447, 1397.09, 1084.3, 0, 2, 1017, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (918, 4, 'LS Project', 0, 0, 0, 4000, 0, 1848.15, -1593.75, 19.12, 0, 0, 0, 0, -1, 244.41, 305.03, 999.15, 0, 1, 1018, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (919, 4, 'LS Project', 0, 0, 0, 4000, 0, 1848.15, -1593.6, 23.88, 0, 0, 0, 0, -1, 244.41, 305.03, 999.15, 0, 1, 1019, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (920, 4, 'LS Project', 0, 0, 0, 4000, 0, 1986.75, -1604.9, 13.53, 0, 0, 0, 0, -1, 244.41, 305.03, 999.15, 0, 1, 1020, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (921, 4, 'LS Project', 0, 0, 0, 4000, 0, 1972.98, -1559.83, 13.64, 0, 0, 0, 0, -1, 244.41, 305.03, 999.15, 0, 1, 1021, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (922, 4, 'LS Project', 0, 0, 0, 4000, 0, 1958.67, -1560.35, 13.59, 0, 0, 0, 0, -1, 244.41, 305.03, 999.15, 0, 1, 1022, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (923, 4, 'Ghetto Home LS Medium', 0, 0, 0, 40000, 0, 2139.09, -1697.51, 15.09, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1023, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (924, 4, 'Ghetto Home LS Medium', 0, 0, 0, 40000, 0, 2155.62, -1698.51, 15.09, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1024, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (925, 4, 'Ghetto Home LS Medium', 0, 0, 0, 30000, 0, 2157.15, -1709.21, 15.09, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 1025, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (926, 4, 'Ghetto Home LS Medium', 0, 0, 0, 30000, 0, 2140.57, -1708.3, 15.09, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 1026, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (927, 4, 'Ghetto Home LS Medium', 0, 0, 0, 40000, 0, 2151.71, -1717.83, 15.09, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1027, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (928, 4, 'Ghetto Home LS Medium', 0, 0, 0, 40000, 0, 2168.08, -1718.82, 15.17, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1028, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (929, 4, 'Ghetto Home LS Medium', 0, 0, 0, 30000, 1, 2151.41, -1672.26, 15.09, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 1029, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (930, 4, 'Ghetto Home LS Medium', 0, 0, 0, 40000, 5000, 2143.65, -1662.86, 15.09, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1030, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (932, 4, 'Ghetto Home LS Medium', 0, 0, 0, 60000, 0, 2163.74, -1661.21, 15.09, 0, 0, 0, 0, -1, 22.93, 1403.32, 1084.43, 0, 5, 1032, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (933, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 1793.6, 2792.25, 11.35, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1033, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (934, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 1796.65, 2803.58, 11.34, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1034, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (935, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 1795.83, 2800.81, 11.34, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1035, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (936, 4, 'Small House In SF', 0, 0, 0, 30000, 0, -2510.96, 967.65, 73.53, 0, 0, 0, 0, -1, 261.06, 1284.29, 1080.25, 0, 4, 1036, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (937, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 1799.57, 2814.95, 11.34, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1037, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (938, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 1798.92, 2812.14, 11.34, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1038, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (939, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 1802.77, 2826.25, 11.34, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1039, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (940, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 1801.9, 2823.49, 11.34, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1040, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (941, 4, 'Small House In SF', 0, 0, 0, 30000, 0, -2510.91, 951.26, 65.61, 0, 0, 0, 0, -1, 261.06, 1284.29, 1080.25, 0, 4, 1041, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (942, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 1804.86, 2834.85, 11.35, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1042, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (943, 4, 'Small House In SF', 0, 0, 0, 30000, 0, -2510.93, 942.7, 65.29, 0, 0, 0, 0, -1, 261.06, 1284.29, 1080.25, 0, 4, 1043, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (944, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 1804.96, 2834.82, 14.27, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1044, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (945, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 1802.59, 2826.3, 14.27, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1045, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (946, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 1802.05, 2823.45, 14.27, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1046, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (947, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 1798.8, 2812.17, 14.27, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1047, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (948, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 1799.65, 2814.93, 14.27, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1048, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (949, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 1795.85, 2800.8, 14.27, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1049, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (950, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 1796.69, 2803.57, 14.27, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1050, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (951, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 1793.61, 2792.24, 14.27, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1051, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (952, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 1815.83, 2831.92, 11.34, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1052, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (953, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 1813.61, 2823.34, 11.34, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1053, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (954, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 1812.9, 2820.54, 11.34, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1054, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (955, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 1815.91, 2831.89, 14.27, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1055, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (956, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 1812.82, 2820.57, 14.27, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1056, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (957, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 1813.61, 2823.35, 14.27, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1057, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (958, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 1809.83, 2809.21, 14.27, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1058, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (959, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 1810.53, 2812.02, 14.27, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1059, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (960, 4, 'Small House In SF', 0, 0, 0, 30000, 0, -2596.65, 986.27, 78.27, 0, 0, 0, 0, -1, 261.06, 1284.29, 1080.25, 0, 4, 1060, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (961, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 1806.77, 2797.88, 14.27, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1061, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (962, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 1807.6, 2800.65, 14.27, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1062, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (963, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 1804.57, 2789.3, 14.27, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1063, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (964, 4, 'Small Nice House In SF', 0, 0, 0, 60000, 0, -2597.34, 979.74, 78.27, 0, 0, 0, 0, -1, 22.93, 1403.32, 1084.43, 0, 5, 1064, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (965, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 1806.71, 2797.89, 11.34, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1065, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (966, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 1807.36, 2800.71, 11.34, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1066, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (967, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 1810.61, 2812, 11.34, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1067, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (968, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 1809.62, 2809.27, 11.34, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1068, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (969, 4, 'Small House In SF', 0, 0, 0, 30000, 0, -2597.33, 968.95, 78.28, 0, 0, 0, 0, -1, 261.06, 1284.29, 1080.25, 0, 4, 1069, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (970, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 1832.49, 2742.93, 11.34, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1070, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (971, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 1830.47, 2740.87, 11.34, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1071, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (972, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 1840.84, 2751.18, 11.34, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1072, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (973, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 1838.67, 2749.27, 11.35, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1073, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (974, 4, 'Normal Size House In SF', 0, 0, 0, 85000, 0, -2591.17, 960.76, 78.45, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 1074, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (975, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 1847.08, 2757.45, 11.34, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1075, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (976, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 1849.23, 2759.39, 11.34, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1076, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (977, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 1855.38, 2765.76, 14.27, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1077, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (978, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 1849.09, 2759.53, 14.27, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1078, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (979, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 1847.1, 2757.43, 14.27, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1079, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (980, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 1838.73, 2749.2, 14.27, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1080, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (981, 4, 'Small House In SF', 0, 0, 0, 30000, 0, -2591.19, 944.33, 70.43, 0, 0, 0, 0, -1, 261.06, 1284.29, 1080.25, 0, 4, 1081, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (982, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 1840.84, 2751.19, 14.27, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1082, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (983, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 1830.4, 2740.94, 14.27, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1083, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (984, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 1832.55, 2742.88, 14.27, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1084, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (985, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 1824.22, 2734.61, 14.27, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1085, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (986, 4, 'Small House In SF', 0, 0, 0, 30000, 0, -2591.19, 935.9, 68.93, 0, 0, 0, 0, -1, 261.06, 1284.29, 1080.25, 0, 4, 1086, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (987, 4, 'Small House In SF', 0, 0, 0, 30000, 0, -2591.19, 927.88, 65.02, 0, 0, 0, 0, -1, 261.06, 1284.29, 1080.25, 0, 4, 1087, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (988, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 1855.32, 2765.81, 11.35, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1088, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (989, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 1865.45, 2775.7, 11.34, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1089, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (990, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 1873.69, 2784.06, 11.34, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1090, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (991, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 1871.57, 2782.08, 11.34, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1091, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (992, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 1881.95, 2792.39, 11.34, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1092, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (993, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 1879.89, 2790.37, 11.34, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1093, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (994, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 1890.23, 2800.7, 11.34, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1094, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (995, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 1888.22, 2798.63, 11.34, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1095, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (996, 4, 'Normal Size House In SF', 0, 0, 0, 85000, 0, -2593.26, 883.22, 63.25, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 1096, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (997, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 1896.51, 2806.95, 14.27, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1097, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (998, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 1888.25, 2798.6, 14.27, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1098, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (999, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 1890.32, 2800.62, 14.27, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1099, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1000, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 1879.96, 2790.31, 14.27, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1100, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1001, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 1882.05, 2792.29, 14.27, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1101, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1002, 4, 'Small House In SF', 0, 0, 0, 30000, 0, -2593.42, 874.77, 58.92, 0, 0, 0, 0, -1, 261.06, 1284.29, 1080.25, 0, 4, 1102, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1003, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 1871.62, 2782.03, 14.27, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1103, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1004, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 1873.72, 2784.03, 14.27, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1104, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1005, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 1865.34, 2775.81, 14.27, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1105, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1006, 4, 'Normal Size House In SF', 0, 0, 0, 85000, 0, -2620.21, 883.01, 63.25, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 1106, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1007, 4, 'Small House In SF', 0, 0, 0, 30000, 0, -2620.02, 874.73, 58.92, 0, 0, 0, 0, -1, 261.06, 1284.29, 1080.25, 0, 4, 1107, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1008, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 1896.56, 2806.91, 11.35, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1108, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1009, 4, 'Small House In SF', 0, 0, 0, 30000, 0, -2592.74, 854.98, 53.59, 0, 0, 0, 0, -1, 261.06, 1284.29, 1080.25, 0, 4, 1109, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1010, 4, 'Small House In SF', 0, 0, 0, 30000, 0, -2620.7, 855.15, 53.57, 0, 0, 0, 0, -1, 261.06, 1284.29, 1080.25, 0, 4, 1110, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1011, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 1740.86, 2863.24, 11.34, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1111, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1012, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 1738.45, 2861.53, 11.34, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1112, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1013, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 1751.45, 2868.71, 11.34, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1113, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1014, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 1748.67, 2867.7, 11.34, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1114, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1015, 4, 'Small House In SF', 0, 0, 0, 30000, 0, -2593.7, 845.08, 50.59, 0, 0, 0, 0, -1, 261.06, 1284.29, 1080.25, 0, 4, 1115, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1016, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 1763.1, 2871.36, 11.34, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1116, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1017, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 1760.16, 2870.95, 11.34, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1117, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1018, 4, 'Small House In SF', 0, 0, 0, 30000, 0, -2619.74, 845.31, 50.6, 0, 0, 0, 0, -1, 261.06, 1284.29, 1080.25, 0, 4, 1118, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1019, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 1775, 2870.83, 11.34, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1119, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1020, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 1772.1, 2871.36, 11.34, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1120, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1021, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 1786.52, 2867.69, 11.34, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1121, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1022, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 1783.74, 2868.71, 11.34, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1122, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1023, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 1796.8, 2861.61, 11.34, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1123, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1024, 4, 'Appartment 2nd Floor In SF', 0, 0, 0, 80000, 0, -2592.75, 832.84, 52.09, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1124, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1025, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 1794.42, 2863.38, 11.34, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1125, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1026, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 1731.81, 2855.49, 14.27, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1126, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1027, 4, 'Appartment 1st Floor In SF', 0, 0, 0, 80000, 0, -2594.69, 830.98, 49.98, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1127, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1028, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 1740.84, 2863.27, 14.26, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1128, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1029, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 1738.33, 2861.68, 14.27, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1129, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1030, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 1751.44, 2868.75, 14.27, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1130, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1031, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 1748.65, 2867.74, 14.27, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1131, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1032, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 1763.12, 2871.13, 14.27, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1132, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1033, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 1760.17, 2870.92, 14.27, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1133, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1034, 4, 'Appartment 2nd Floor In SF', 0, 0, 0, 80000, 0, -2620.37, 832.86, 52.09, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1134, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1035, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 1775.01, 2870.88, 14.27, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1135, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1036, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 1772.09, 2871.32, 14.27, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1136, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1037, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 1786.45, 2867.55, 14.27, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1137, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1038, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 1783.76, 2868.77, 14.27, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1138, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1039, 4, 'Appartment 1st Floor In SF', 0, 0, 0, 80000, 0, -2618.75, 831, 49.98, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1139, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1040, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 1796.79, 2861.59, 14.27, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1140, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1041, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 1794.38, 2863.32, 14.27, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1141, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1042, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 1803.38, 2855.49, 14.27, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1142, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1043, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 1789.43, 2733.1, 11.34, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1143, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1044, 4, 'Small House In SF', 0, 0, 0, 30000, 0, -2621.68, 802.98, 49.98, 0, 0, 0, 0, -1, 261.06, 1284.29, 1080.25, 0, 4, 1144, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1045, 4, 'Small Nice House In SF', 0, 0, 0, 60000, 0, -2621.67, 790.74, 48.58, 0, 0, 0, 0, -1, 22.93, 1403.32, 1084.43, 0, 5, 1145, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1046, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 1803.48, 2855.57, 11.34, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1146, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1047, 4, 'Small House In SF', 0, 0, 0, 30000, 0, -2622.51, 782.55, 44.86, 0, 0, 0, 0, -1, 261.06, 1284.29, 1080.25, 0, 4, 1147, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1048, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 1824.3, 2734.53, 11.34, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1148, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1049, 4, 'Small House In SF', 0, 0, 0, 30000, 0, -2622.49, 766.35, 36.84, 0, 0, 0, 0, -1, 261.06, 1284.29, 1080.25, 0, 4, 1149, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1050, 4, 'Small House In SF', 0, 0, 0, 30000, 0, -2622.51, 758.04, 35.33, 0, 0, 0, 0, -1, 261.06, 1284.29, 1080.25, 0, 4, 1150, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1051, 4, 'Small House In SF', 0, 0, 0, 30000, 0, -2622.52, 749.84, 31.42, 0, 0, 0, 0, -1, 261.06, 1284.29, 1080.25, 0, 4, 1151, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1052, 4, 'Nice looking house at lv', 0, 0, 0, 300000, 0, 1663.17, 2754.14, 10.82, 0, 0, 0, 0, -1, 234.22, 1063.89, 1084.21, 0, 6, 1152, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1053, 4, 'huge 2 floor nice looking house at LV', 0, 0, 0, 500000, 0, 1652.51, 2708.85, 10.83, 0, 0, 0, 0, -1, 226.3, 1114.37, 1080.99, 0, 5, 1153, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1054, 4, 'Appartment 2nd Floor In SF', 0, 0, 0, 80000, 0, -2627.54, 735.33, 30.59, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1154, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1055, 4, 'Nice looking house at lv', 0, 0, 0, 300000, 0, 1643.83, 2753.45, 10.82, 0, 0, 0, 0, -1, 234.22, 1063.89, 1084.21, 0, 6, 1155, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1056, 4, 'huge 2 floor nice looking house at LV', 0, 0, 0, 500000, 0, 1627.15, 2710.76, 10.82, 0, 0, 0, 0, -1, 226.3, 1114.37, 1080.99, 0, 5, 1156, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1057, 4, 'Appartment 1st Floor In SF', 0, 0, 0, 80000, 0, -2625.47, 733.21, 28.01, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1157, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1058, 4, 'huge 2 floor nice looking house at LV', 0, 0, 0, 500000, 0, 1626.81, 2754.14, 10.82, 0, 0, 0, 0, -1, 226.3, 1114.37, 1080.99, 0, 5, 1158, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1059, 4, 'Nice looking house at lv', 0, 0, 0, 300000, 0, 1608.72, 2754.14, 10.82, 0, 0, 0, 0, -1, 234.22, 1063.89, 1084.21, 0, 6, 1159, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1060, 4, 'huge 2 floor nice looking house at LV', 0, 0, 0, 500000, 0, 1601.25, 2708.85, 10.83, 0, 0, 0, 0, -1, 226.3, 1114.37, 1080.99, 0, 5, 1160, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1061, 4, 'huge 2 floor nice looking house at LV', 0, 0, 0, 500000, 0, 1599.56, 2757.6, 10.83, 0, 0, 0, 0, -1, 226.3, 1114.37, 1080.99, 0, 5, 1161, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1062, 4, 'huge 2 floor nice looking house at LV', 0, 0, 0, 500000, 0, 1580.26, 2708.85, 10.83, 0, 0, 0, 0, -1, 226.3, 1114.37, 1080.99, 0, 5, 1162, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1063, 4, '3 Story Condo In SF', 0, 0, 0, 120000, 0, -2594.19, 733.11, 28.14, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 1163, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1064, 4, 'huge 2 floor nice looking house at LV', 0, 0, 0, 500000, 0, 1570.28, 2711.11, 10.82, 0, 0, 0, 0, -1, 226.3, 1114.37, 1080.99, 0, 5, 1164, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1065, 4, '3 Story Condo In SF', 0, 0, 0, 120000, 0, -2594.21, 750.87, 33.7, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 1165, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1066, 4, 'Nice looking house at lv', 0, 0, 0, 300000, 0, 1565.47, 2757.04, 10.82, 0, 0, 0, 0, -1, 234.22, 1063.89, 1084.21, 0, 6, 1166, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1067, 4, '3 Story Condo In SF', 0, 0, 0, 120000, 0, -2594.2, 768.05, 40.02, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 1167, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1068, 4, 'Nice looking house at lv', 0, 0, 0, 300000, 0, 1564.78, 2776.51, 10.82, 0, 0, 0, 0, -1, 234.22, 1063.89, 1084.21, 0, 6, 1168, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1069, 4, '3 Story Condo In SF', 0, 0, 0, 120000, 0, -2594.19, 785.26, 46.24, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 1169, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1070, 4, 'Nice looking house at lv', 0, 0, 0, 300000, 0, 1565.47, 2793.43, 10.82, 0, 0, 0, 0, -1, 234.22, 1063.89, 1084.21, 0, 6, 1170, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1071, 4, 'huge 2 floor nice looking house at LV', 0, 0, 0, 500000, 0, 1550.64, 2846.08, 10.83, 0, 0, 0, 0, -1, 226.3, 1114.37, 1080.99, 0, 5, 1171, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1072, 4, 'huge 2 floor nice looking house at LV', 0, 0, 0, 500000, 0, 1575.89, 2844.17, 10.82, 0, 0, 0, 0, -1, 226.3, 1114.37, 1080.99, 0, 5, 1172, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1073, 4, 'huge 2 floor nice looking house at LV', 0, 0, 0, 500000, 0, 1601.78, 2846.08, 10.83, 0, 0, 0, 0, -1, 226.3, 1114.37, 1080.99, 0, 5, 1173, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1074, 4, 'huge 2 floor nice looking house at LV', 0, 0, 0, 500000, 0, 1618.36, 2800.79, 10.82, 0, 0, 0, 0, -1, 226.3, 1114.37, 1080.99, 0, 5, 1174, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1075, 4, 'huge 2 floor nice looking house at LV', 0, 0, 0, 500000, 0, 1622.73, 2846.07, 10.83, 0, 0, 0, 0, -1, 226.3, 1114.37, 1080.99, 0, 5, 1175, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1076, 4, 'huge 2 floor nice looking house at LV', 0, 0, 0, 500000, 0, 1637.79, 2801.48, 10.82, 0, 0, 0, 0, -1, 226.3, 1114.37, 1080.99, 0, 5, 1176, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1077, 4, 'huge 2 floor nice looking house at LV', 0, 0, 0, 500000, 0, 1632.76, 2843.65, 10.82, 0, 0, 0, 0, -1, 226.3, 1114.37, 1080.99, 0, 5, 1177, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1078, 4, 'Nice looking house at lv', 0, 0, 0, 300000, 0, 1654.7, 2800.79, 10.82, 0, 0, 0, 0, -1, 234.22, 1063.89, 1084.21, 0, 6, 1178, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1079, 4, '3 Story Condo In SF', 0, 0, 0, 120000, 0, -2240.52, 753.48, 49.38, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 1179, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1080, 4, 'huge 2 floor nice looking house at LV', 0, 0, 0, 500000, 0, 1664.77, 2846.08, 10.83, 0, 0, 0, 0, -1, 226.3, 1114.37, 1080.99, 0, 5, 1180, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1081, 4, 'Nice looking house at lv', 0, 0, 0, 300000, 0, 1672.95, 2800.79, 10.82, 0, 0, 0, 0, -1, 234.22, 1063.89, 1084.21, 0, 6, 1181, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1082, 4, '3 Story Condo In SF', 0, 0, 0, 120000, 0, -2240.53, 786.16, 49.38, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 1182, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1083, 4, '3 Story Condo In SF', 0, 0, 0, 120000, 0, -2223.7, 795.72, 49.43, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 1183, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1084, 4, 'Nice looking house at lv', 0, 0, 0, 300000, 0, 1555.97, 2658.52, 10.82, 0, 0, 0, 0, -1, 234.22, 1063.89, 1084.21, 0, 6, 1184, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1085, 4, '3 Story Condo In SF', 0, 0, 0, 120000, 0, -2205.42, 795.73, 50.48, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 1185, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1086, 4, 'Nice looking house at lv', 0, 0, 0, 300000, 0, 1573, 2657.83, 10.82, 0, 0, 0, 0, -1, 234.22, 1063.89, 1084.21, 0, 6, 1186, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1087, 4, 'Nice looking house at lv', 0, 0, 0, 300000, 0, 1607.61, 2679.27, 10.82, 0, 0, 0, 0, -1, 234.22, 1063.89, 1084.21, 0, 6, 1187, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1088, 4, '3 Story Condo In SF', 0, 0, 0, 120000, 0, -2187.03, 795.7, 57.56, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 1188, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1089, 4, 'huge 2 floor nice looking house at LV', 0, 0, 0, 500000, 0, 1611.76, 2648.22, 10.83, 0, 0, 0, 0, -1, 226.3, 1114.37, 1080.99, 0, 5, 1189, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1090, 4, '3 Story Condo In SF', 0, 0, 0, 120000, 0, -2168.82, 795.76, 64.97, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 1190, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1091, 4, '3 Story Condo In SF', 0, 0, 0, 120000, 0, -2159.21, 786.09, 69.52, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 1191, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1092, 4, '3 Story Condo In SF', 0, 0, 0, 120000, 0, -2159.18, 770, 69.52, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 1192, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1093, 4, 'Nice looking house at lv', 0, 0, 0, 300000, 0, 1265.47, 2610.03, 10.82, 0, 0, 0, 0, -1, 234.22, 1063.89, 1084.21, 0, 6, 1193, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1094, 4, '3 Story Condo In SF', 0, 0, 0, 120000, 0, -2159.23, 753.49, 69.51, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 1194, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1095, 4, 'huge 2 floor nice looking house at LV', 0, 0, 0, 500000, 0, 1225.27, 2584.94, 10.82, 0, 0, 0, 0, -1, 226.3, 1114.37, 1080.99, 0, 5, 1195, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1096, 4, 'huge 2 floor nice looking house at LV', 0, 0, 0, 500000, 0, 1223.02, 2616.85, 10.83, 0, 0, 0, 0, -1, 226.3, 1114.37, 1080.99, 0, 5, 1196, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1097, 4, '3 Story Condo In SF', 0, 0, 0, 120000, 0, -2168.52, 744.01, 64.98, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 1197, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1098, 4, '3 Story Condo In SF', 0, 0, 0, 120000, 0, -2186.9, 744, 57.55, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 1198, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1099, 4, '3 Story Condo In SF', 0, 0, 0, 120000, 0, -2205.46, 744, 50.48, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 1199, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1100, 4, 'lv project apartment small', 0, 0, 0, 40000, 1, 1731.8, 2855.49, 11.34, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1200, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1101, 4, '3 Story Condo In SF', 0, 0, 0, 120000, 0, -2223.71, 743.99, 49.43, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 1201, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1102, 4, '6 Story Condo In SF', 0, 0, 0, 450000, 0, -2238.31, 1154.14, 59.69, 0, 0, 0, 0, -1, 226.3, 1114.37, 1080.99, 0, 5, 1202, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1103, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 2651.65, 1978.84, 10.82, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1203, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1104, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 2649.77, 1978.84, 10.82, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1204, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1105, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 2642.47, 1978.84, 10.82, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1205, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1106, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 2640.47, 1978.84, 10.82, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1206, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1107, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 2633.06, 1978.84, 10.82, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1207, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1108, 4, '5 Story Condo In SF', 0, 0, 0, 500000, 0, -2238.36, 1135.89, 67.26, 0, 0, 0, 0, -1, 226.3, 1114.37, 1080.99, 0, 5, 1208, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1109, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 2631.15, 1978.84, 10.82, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1209, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1110, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 2623.89, 1978.84, 10.82, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1210, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1111, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 2623.87, 1978.84, 14.12, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1211, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1112, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 2631.33, 1978.84, 14.12, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1212, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1113, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 2633.24, 1978.84, 14.12, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1213, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1114, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 2640.46, 1978.84, 14.12, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1214, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1115, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 2642.55, 1978.84, 14.12, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1215, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1116, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 2649.89, 1978.84, 14.12, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1216, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1117, 4, '3 Story Condo In SF', 0, 0, 0, 120000, 0, -2238.36, 1117.54, 74.82, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 1217, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1118, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 2651.66, 1978.84, 14.12, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1218, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1119, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 2659.23, 1978.84, 14.12, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1219, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1120, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 2656.5, 1968.82, 14.12, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1220, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1121, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 2654.39, 1968.82, 14.12, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1221, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1122, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 2647.14, 1968.82, 14.12, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1222, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1123, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 2645.16, 1968.82, 14.12, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1223, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1124, 4, '3 Story Condo In SF', 0, 0, 0, 120000, 0, -2239.76, 1070.74, 81.02, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 1224, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1125, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 2637.68, 1968.82, 14.12, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1225, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1126, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 2635.83, 1968.82, 14.12, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1226, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1127, 4, '3 Story Condo In SF', 0, 0, 0, 120000, 0, -2239.75, 1054.09, 82.84, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 1227, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1128, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 2628.55, 1968.82, 14.12, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1228, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1129, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 2626.6, 1968.82, 14.12, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1229, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1130, 4, '3 Story Condo In SF', 0, 0, 0, 120000, 0, -2239.75, 1037.69, 83.85, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 1230, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1131, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 2645.48, 2019.21, 10.82, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1231, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1132, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 2643.76, 2019.21, 10.81, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1232, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1133, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 2636.22, 2019.21, 10.82, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1233, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1134, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 2634.43, 2019.21, 10.82, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1234, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1135, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 2626.93, 2019.21, 10.82, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1235, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1136, 4, '3 Story Condo In SF', 0, 0, 0, 120000, 0, -2230.58, 1028, 83.84, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 1236, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1137, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 2625.15, 2019.21, 10.82, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1237, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1138, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 2617.69, 2019.21, 14.12, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1238, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1139, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 2625.16, 2019.21, 14.12, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1239, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1140, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 2627.05, 2019.21, 14.12, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1240, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1141, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 2634.48, 2019.21, 14.12, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1241, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1142, 4, '3 Story Condo In SF', 0, 0, 0, 120000, 0, -2169.63, 1028.01, 80.01, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 1242, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1143, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 2636.22, 2019.21, 14.12, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1243, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1144, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 2643.66, 2019.21, 14.12, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1244, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1145, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 2645.58, 2019.21, 14.12, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1245, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1146, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 2653.25, 2019.21, 14.12, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1246, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1147, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 2650.33, 2029.23, 14.12, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1247, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1148, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 2648.34, 2029.23, 14.12, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1248, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1149, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 2640.71, 2029.23, 14.12, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1249, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1150, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 2638.92, 2029.23, 14.12, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1250, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1151, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 2631.54, 2029.23, 14.12, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1251, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1152, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 2629.68, 2029.23, 14.12, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1252, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1153, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 2622.22, 2029.23, 14.12, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1253, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1154, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 2620.37, 2029.23, 14.12, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1254, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1155, 4, '3 Story Condo In SF', 0, 0, 0, 120000, 0, -2160.15, 1030.61, 80.01, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 1255, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1156, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 2652.92, 2019.21, 10.82, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1256, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1157, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 2617.54, 2019.21, 10.81, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1257, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1158, 4, '3 Story Condo In SF', 0, 0, 0, 120000, 0, -2160.15, 1048.61, 80.01, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 1258, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1159, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 2620.54, 2029.23, 10.82, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1259, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1160, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 2622.34, 2029.23, 10.82, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1260, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1161, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 2629.8, 2029.23, 10.82, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1261, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1162, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 2631.65, 2029.23, 10.82, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1262, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1163, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 2639.07, 2029.23, 10.82, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1263, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1164, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 2641.14, 2029.23, 10.82, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1264, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1165, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 2648.34, 2029.23, 10.82, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1265, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1166, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 2650.35, 2029.23, 10.81, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1266, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1167, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 2623.65, 2039.4, 10.82, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1267, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1168, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 2623.65, 2046.99, 10.81, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1268, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1169, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 2623.65, 2048.81, 10.81, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1269, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1170, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 2623.65, 2056.16, 10.81, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1270, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1171, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 2623.65, 2058.1, 10.81, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1271, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1172, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 2623.65, 2065.44, 10.82, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1272, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1173, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 2623.65, 2067.4, 10.82, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1273, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1174, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 2623.65, 2074.85, 10.81, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1274, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1175, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 2623.65, 2074.93, 14.12, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1275, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1176, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 2623.65, 2067.53, 14.12, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1276, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1177, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 2623.65, 2065.52, 14.12, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1277, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1178, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 2623.65, 2058.19, 14.12, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1278, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1179, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 2623.65, 2056.03, 14.12, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1279, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1180, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 2623.65, 2048.66, 14.12, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1280, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1181, 4, 'Medium house at LV', 0, 0, 0, 150000, 0, 2206.32, 691.25, 11.46, 0, 0, 0, 0, -1, 447, 1397.09, 1084.3, 0, 2, 1281, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1182, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 2623.65, 2046.85, 14.12, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1282, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1183, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 2623.65, 2039.52, 14.12, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1283, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1184, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 2613.64, 2042.23, 14.12, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1284, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1185, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 2613.64, 2044.19, 14.12, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1285, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1186, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 2613.64, 2051.56, 14.12, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1286, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1187, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 2613.64, 2053.43, 14.12, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1287, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1188, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 2613.64, 2060.92, 14.12, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1288, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1189, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 2613.64, 2062.75, 14.12, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1289, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1190, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 2613.64, 2070.18, 14.12, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1290, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1191, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 2613.64, 2072.07, 14.12, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1291, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1192, 4, '3 Story Condo In SF', 0, 0, 0, 120000, 0, -2160.15, 1066.91, 80.01, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 1292, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1193, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 2626.63, 1968.82, 10.82, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1293, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1194, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 2628.41, 1968.82, 10.82, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1294, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1195, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 2635.94, 1968.82, 10.82, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1295, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1196, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 2637.82, 1968.82, 10.82, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1296, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1197, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 2645.3, 1968.82, 10.82, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1297, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1198, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 2647.13, 1968.82, 10.82, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1298, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1199, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 2654.56, 1968.82, 10.82, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1299, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1200, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 2656.5, 1968.82, 10.82, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1300, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1201, 4, '3 Story Condo In SF', 0, 0, 0, 120000, 0, -2158.36, 1117.61, 74.49, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 1301, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1202, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 2659.19, 1978.84, 10.82, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1302, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1203, 4, '5 Story Condo In SF', 0, 0, 0, 500000, 0, -2158.36, 1148.65, 61.85, 0, 0, 0, 0, -1, 226.3, 1114.37, 1080.99, 0, 5, 1303, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1204, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 2613.64, 2071.98, 10.82, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1304, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1205, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 2613.64, 2070.12, 10.82, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1305, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1206, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 2613.64, 2062.79, 10.81, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1306, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1207, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 2613.63, 2060.82, 10.81, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1307, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1208, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 2613.64, 2053.51, 10.81, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1308, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1209, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 2613.64, 2051.58, 10.82, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1309, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1210, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 2613.64, 2044.13, 10.82, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1310, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1211, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 2613.64, 2042.09, 10.82, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1311, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1212, 4, '6 Story Condo In SF', 0, 0, 0, 450000, 0, -2172.59, 1163.75, 55.73, 0, 0, 0, 0, -1, 226.3, 1114.37, 1080.99, 0, 5, 1312, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1213, 4, '6 Story Condo In SF', 0, 0, 0, 450000, 0, -2189.18, 1163.76, 55.73, 0, 0, 0, 0, -1, 226.3, 1114.37, 1080.99, 0, 5, 1313, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1214, 4, '6 Story Condo In SF', 0, 0, 0, 450000, 0, -2205.8, 1163.76, 55.73, 0, 0, 0, 0, -1, 226.3, 1114.37, 1080.99, 0, 5, 1314, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1215, 4, '6 Story Condo In SF', 0, 0, 0, 450000, 0, -2222.19, 1163.75, 55.73, 0, 0, 0, 0, -1, 226.3, 1114.37, 1080.99, 0, 5, 1315, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1216, 4, '3 Story Condo In SF', 0, 0, 0, 120000, 0, -2102.54, 1159.83, 53.27, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 1316, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1217, 4, '3 Story Condo In SF', 0, 0, 0, 120000, 0, -2084.2, 1159.83, 49.95, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 1317, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1218, 4, '3 Story Condo In SF', 0, 0, 0, 120000, 0, -2065.95, 1159.84, 46.65, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 1318, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1219, 4, 'Nice looking house at lv', 0, 0, 0, 300000, 0, 2013.25, 730.36, 11.45, 0, 0, 0, 0, -1, 234.22, 1063.89, 1084.21, 0, 6, 1319, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1220, 4, 'Medium house at LV', 0, 0, 0, 150000, 0, 2014.13, 775.2, 11.46, 0, 0, 0, 0, -1, 447, 1397.09, 1084.3, 0, 2, 1320, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1221, 4, 'Medium house at LV', 0, 0, 0, 150000, 950, 2042.44, 731.26, 11.46, 0, 0, 0, 0, -1, 447, 1397.09, 1084.3, 0, 2, 1321, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1222, 4, 'Medium house at LV', 0, 0, 0, 150000, 0, 2043.24, 776.1, 11.45, 0, 0, 0, 0, -1, 447, 1397.09, 1084.3, 0, 2, 1322, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1223, 4, '5 Story Condo In SF', 0, 0, 0, 500000, 0, -1761.05, 1174.03, 25.13, 0, 0, 0, 0, -1, 226.3, 1114.37, 1080.99, 0, 5, 1323, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1224, 4, 'Medium house at LV', 0, 0, 0, 150000, 0, 2065.13, 729.82, 11.47, 0, 0, 0, 0, -1, 447, 1397.09, 1084.3, 0, 2, 1324, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1225, 4, '6 Story Condo In SF', 0, 0, 0, 450000, 0, -1742.62, 1174.05, 25.13, 0, 0, 0, 0, -1, 226.3, 1114.37, 1080.99, 0, 5, 1325, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1226, 4, 'Medium house at LV', 0, 0, 0, 150000, 0, 2071.62, 776.64, 11.46, 0, 0, 0, 0, -1, 447, 1397.09, 1084.3, 0, 2, 1326, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1227, 4, 'Medium house at LV', 0, 0, 0, 150000, 1500, 2093.41, 730.36, 11.45, 0, 0, 0, 0, -1, 447, 1397.09, 1084.3, 0, 2, 1327, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1228, 4, 'Medium house at LV', 0, 0, 0, 150000, 0, 2094, 775.2, 11.45, 0, 0, 0, 0, -1, 447, 1397.09, 1084.3, 0, 2, 1328, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1229, 4, '5 Story Condo In SF', 0, 0, 0, 500000, 0, -1728.32, 1158.79, 30.45, 0, 0, 0, 0, -1, 226.3, 1114.37, 1080.99, 0, 5, 1329, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1230, 4, 'Medium house at LV', 0, 0, 0, 150000, 500, 2122.3, 731.26, 11.46, 0, 0, 0, 0, -1, 447, 1397.09, 1084.3, 0, 2, 1330, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1231, 4, 'Medium house at LV', 0, 0, 0, 150000, 0, 2123.41, 776.1, 11.44, 0, 0, 0, 0, -1, 447, 1397.09, 1084.3, 0, 2, 1331, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1232, 4, '5 Story Condo In SF', 0, 0, 0, 500000, 0, -1728.31, 1138.95, 38.57, 0, 0, 0, 0, -1, 226.3, 1114.37, 1080.99, 0, 5, 1332, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1233, 4, 'Medium house at LV', 0, 0, 0, 150000, 0, 2169.36, 772.38, 11.46, 0, 0, 0, 0, -1, 447, 1397.09, 1084.3, 0, 2, 1333, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1234, 4, 'Medium house at LV', 0, 0, 0, 150000, 0, 2177.18, 690.35, 11.46, 0, 0, 0, 0, -1, 447, 1397.09, 1084.3, 0, 2, 1334, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1235, 4, 'Medium house at LV', 0, 0, 0, 150000, 5000, 2228.68, 689.81, 11.46, 0, 0, 0, 0, -1, 447, 1397.09, 1084.3, 0, 2, 1335, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1236, 4, 'Medium house at LV', 0, 0, 0, 150000, 0, 2206, 736.63, 11.47, 0, 0, 0, 0, -1, 447, 1397.09, 1084.3, 0, 2, 1336, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1237, 4, 'Medium house at LV', 0, 0, 0, 150000, 0, 2177.61, 736.1, 11.46, 0, 0, 0, 0, -1, 447, 1397.09, 1084.3, 0, 2, 1337, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1238, 4, 'Medium house at LV', 0, 0, 0, 150000, 0, 2228.25, 735.2, 11.46, 0, 0, 0, 0, -1, 447, 1397.09, 1084.3, 0, 2, 1338, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1239, 4, '4 Story Condo In SF', 0, 0, 0, 400000, 0, -1929.89, 1190.53, 45.45, 0, 0, 0, 0, -1, 234.22, 1063.89, 358.5, 0, 6, 1339, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1240, 4, 'Medium house at LV', 0, 0, 0, 150000, 0, 2256.98, 690.34, 11.45, 0, 0, 0, 0, -1, 447, 1397.09, 1084.3, 0, 2, 1340, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1241, 4, '4 Story Condo In SF', 0, 0, 0, 400000, 0, -1915.56, 1190.54, 45.45, 0, 0, 0, 0, -1, 234.22, 1063.89, 358.5, 0, 6, 1341, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1242, 4, 'Medium house at LV', 0, 0, 0, 150000, 0, 2257.52, 736.11, 11.46, 0, 0, 0, 0, -1, 447, 1397.09, 1084.3, 0, 2, 1342, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1243, 4, '4 Story Condo In SF', 0, 0, 0, 400000, 0, -1872.07, 1146.71, 45.45, 0, 0, 0, 0, -1, 234.22, 1063.89, 358.5, 0, 6, 1343, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1244, 4, 'Medium house at LV', 0, 0, 0, 150000, 0, 2317.15, 690.35, 11.46, 0, 0, 0, 0, -1, 447, 1397.09, 1084.3, 0, 2, 1344, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1245, 4, '4 Story Condo In SF', 0, 0, 0, 400000, 0, -1872.08, 1125.38, 45.45, 0, 0, 0, 0, -1, 234.22, 1063.89, 358.5, 0, 6, 1345, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1246, 4, 'Medium house at LV', 0, 0, 0, 150000, 0, 2346.6, 736.63, 11.47, 0, 0, 0, 0, -1, 447, 1397.09, 1084.3, 0, 2, 1346, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1247, 4, 'Medium house at LV', 0, 0, 0, 150000, 0, 2346.35, 691.25, 11.46, 0, 0, 0, 0, -1, 447, 1397.09, 1084.3, 0, 2, 1347, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1248, 4, 'Medium house at LV', 0, 0, 0, 150000, 0, 2369.11, 735.2, 11.46, 0, 0, 0, 0, -1, 447, 1397.09, 1084.3, 0, 2, 1348, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1249, 4, '5 Story Condo In SF', 0, 0, 0, 500000, 0, -1901.41, 1203.19, 42.38, 0, 0, 0, 0, -1, 226.3, 1114.37, 1080.99, 0, 5, 1349, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1250, 4, 'Medium house at LV', 0, 0, 0, 150000, 0, 2368.45, 689.8, 11.46, 0, 0, 0, 0, -1, 447, 1397.09, 1084.3, 0, 2, 1350, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1251, 4, 'Medium house at LV', 0, 0, 0, 150000, 0, 2398.36, 736.1, 11.46, 0, 0, 0, 0, -1, 447, 1397.09, 1084.3, 0, 2, 1351, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1252, 4, 'Medium house at LV', 0, 0, 0, 150000, 0, 2396.96, 690.34, 11.45, 0, 0, 0, 0, -1, 447, 1397.09, 1084.3, 0, 2, 1352, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1253, 4, 'Medium house at LV', 0, 0, 0, 150000, 0, 2450.27, 742.54, 11.46, 0, 0, 0, 0, -1, 447, 1397.09, 1084.3, 0, 2, 1353, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1254, 4, '5 Story Condo In SF', 0, 0, 0, 500000, 0, -1852.62, 1162.22, 40.94, 0, 0, 0, 0, -1, 226.3, 1114.37, 1080.99, 0, 5, 1354, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1255, 4, 'Medium house at LV', 0, 0, 0, 150000, 0, 2450.81, 714.31, 11.47, 0, 0, 0, 0, -1, 447, 1397.09, 1084.3, 0, 2, 1355, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1256, 4, 'Medium house at LV', 0, 0, 0, 150000, 1, 2449.23, 689.74, 11.46, 0, 0, 0, 0, -1, 447, 1397.09, 1084.3, 0, 2, 1356, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1257, 4, 'Medium house at LV', 0, 0, 0, 150000, 0, 2450.27, 662.64, 11.46, 0, 0, 0, 0, -1, 447, 1397.09, 1084.3, 0, 2, 1357, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1258, 4, 'Medium house at LV', 0, 0, 0, 150000, 0, 2397.68, 656.11, 11.46, 0, 0, 0, 0, -1, 447, 1397.09, 1084.3, 0, 2, 1358, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1259, 4, 'Medium house at LV', 0, 0, 0, 150000, 0, 2368.38, 655.21, 11.46, 0, 0, 0, 0, -1, 447, 1397.09, 1084.3, 0, 2, 1359, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1260, 4, 'Medium house at LV', 0, 0, 0, 150000, 0, 2346.09, 656.64, 11.46, 0, 0, 0, 0, -1, 447, 1397.09, 1084.3, 0, 2, 1360, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1261, 4, 'Medium house at LV', 0, 0, 0, 150000, 100, 2317.81, 656.1, 11.45, 0, 0, 0, 0, -1, 447, 1397.09, 1084.3, 0, 2, 1361, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1262, 4, '4 Story Condo In SF', 0, 0, 0, 400000, 0, -1831.8, 1165.88, 33.68, 0, 0, 0, 0, -1, 234.22, 1063.89, 358.5, 0, 6, 1362, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1263, 4, 'Medium house at LV', 0, 0, 0, 150000, 0, 2258.11, 655.98, 11.45, 0, 0, 0, 0, -1, 447, 1397.09, 1084.3, 0, 2, 1363, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1264, 4, 'Medium house at LV', 0, 0, 0, 150000, 0, 2229.04, 655.18, 11.46, 0, 0, 0, 0, -1, 447, 1397.09, 1084.3, 0, 2, 1364, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1265, 4, 'Medium house at LV', 0, 0, 0, 150000, 0, 2206.41, 656.63, 11.47, 0, 0, 0, 0, -1, 447, 1397.09, 1084.3, 0, 2, 1365, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1266, 4, 'Medium house at LV', 0, 0, 0, 150000, 0, 2178.16, 655.99, 11.46, 0, 0, 0, 0, -1, 447, 1397.09, 1084.3, 0, 2, 1366, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1267, 4, '6 Story Condo In SF', 0, 0, 0, 450000, 0, -1732.27, 1115.52, 45.45, 0, 0, 0, 0, -1, 226.3, 1114.37, 1080.99, 0, 5, 1367, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1268, 4, 'Medium house at LV', 0, 0, 0, 150000, 0, 2123.27, 651.31, 11.46, 0, 0, 0, 0, -1, 447, 1397.09, 1084.3, 0, 2, 1368, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1269, 4, 'Medium house at LV', 0, 0, 0, 150000, 0, 2120.44, 696.09, 11.45, 0, 0, 0, 0, -1, 447, 1397.09, 1084.3, 0, 2, 1369, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1270, 4, '6 Story Condo In SF', 0, 0, 0, 450000, 0, -1776.18, 1115.52, 45.45, 0, 0, 0, 0, -1, 226.3, 1114.37, 1080.99, 0, 5, 1370, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1271, 4, 'Medium house at LV', 0, 0, 0, 150000, 0, 2091.24, 695.19, 11.46, 0, 0, 0, 0, -1, 447, 1397.09, 1084.3, 0, 2, 1371, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1272, 4, 'Medium house at LV', 0, 0, 0, 150000, 0, 2094.12, 650.4, 11.46, 0, 0, 0, 0, -1, 447, 1397.09, 1084.3, 0, 2, 1372, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1273, 4, '4 Story Condo In SF', 0, 0, 0, 400000, 0, -1780.11, 1138.79, 38.59, 0, 0, 0, 0, -1, 234.22, 1063.89, 358.5, 0, 6, 1373, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1274, 4, 'Medium house at LV', 0, 0, 0, 150000, 0, 2068.96, 696.63, 11.47, 0, 0, 0, 0, -1, 447, 1397.09, 1084.3, 0, 2, 1374, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1275, 4, '4 Story Condo In SF', 0, 0, 0, 400000, 0, -1780.12, 1158.76, 30.45, 0, 0, 0, 0, -1, 234.22, 1063.89, 358.5, 0, 6, 1375, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1276, 4, 'Medium house at LV', 0, 0, 0, 150000, 0, 2065.82, 649.86, 11.47, 0, 0, 0, 0, -1, 447, 1397.09, 1084.3, 0, 2, 1376, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1277, 4, 'Medium house at LV', 0, 0, 0, 150000, 0, 2040.71, 696.09, 11.45, 0, 0, 0, 0, -1, 447, 1397.09, 1084.3, 0, 2, 1377, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1278, 4, 'Medium house at LV', 0, 0, 0, 150000, 150, 2043.26, 651.31, 11.46, 0, 0, 0, 0, -1, 447, 1397.09, 1084.3, 0, 2, 1378, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1279, 4, 'Medium house at LV', 0, 0, 0, 150000, 400, 2011.61, 695.19, 11.46, 0, 0, 0, 0, -1, 447, 1397.09, 1084.3, 0, 2, 1379, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1280, 4, 'Medium house at LV', 0, 0, 0, 150000, 150, 2013.96, 650.4, 11.46, 0, 0, 0, 0, -1, 447, 1397.09, 1084.3, 0, 2, 1380, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1281, 4, '4 Story Condo In SF', 0, 0, 0, 400000, 0, -1820.68, 1117.26, 46.45, 0, 0, 0, 0, -1, 234.22, 1063.89, 358.5, 0, 6, 1381, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1282, 4, '4 Story Condo In SF', 0, 0, 0, 400000, 0, -1842.59, 1115.52, 45.45, 0, 0, 0, 0, -1, 234.22, 1063.89, 358.5, 0, 6, 1382, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1283, 4, '4 Story Condo In SF', 0, 0, 0, 400000, 0, -1860.83, 1115.51, 45.45, 0, 0, 0, 0, -1, 234.22, 1063.89, 358.5, 0, 6, 1383, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1284, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 2571.53, 719.4, 14.74, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1384, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1285, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 2579.08, 719.48, 14.74, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1385, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1286, 4, '4 Story Condo In SF', 0, 0, 0, 400000, 0, -2024.5, 1275.93, 7.19, 0, 0, 0, 0, -1, 234.22, 1063.89, 358.5, 0, 6, 1386, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1287, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 2571.53, 713.24, 14.74, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1387, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1288, 4, '4 Story Condo In SF', 0, 0, 0, 400000, 0, -2029, 1275.91, 7.19, 0, 0, 0, 0, -1, 234.22, 1063.89, 358.5, 0, 6, 1388, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1289, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 2579.08, 713.23, 14.74, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1389, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1290, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 2579.08, 719.54, 10.82, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1390, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1291, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 2571.7, 719.52, 10.82, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1391, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1292, 4, '3 Story Condo In SF', 0, 0, 0, 120000, 0, -2043.83, 1261.38, 9.2, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 1392, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1293, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 2621.06, 719.54, 10.82, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1393, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1294, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 2613.51, 719.58, 10.82, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1394, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1295, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 2613.51, 719.47, 14.74, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1395, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1296, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 2621.06, 719.4, 14.74, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1396, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1297, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 2613.5, 713.38, 14.74, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1397, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1298, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 2621.06, 713.23, 14.74, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1398, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1299, 4, '3 Story Condo In SF', 0, 0, 0, 120000, 0, -2383.11, 1336.27, 12.8, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 1399, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1300, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 2540.06, 719.54, 10.82, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1400, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1301, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 2532.51, 719.58, 10.82, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1401, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1302, 4, '3 Story Condo In SF', 0, 0, 0, 120000, 0, -2351.14, 1336.15, 12.79, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 1402, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1303, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 2532.5, 719.58, 14.74, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1403, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1304, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 2540.06, 719.53, 14.74, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1404, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1305, 4, 'lv project apartment small', 0, 0, 0, 40000, 1, 2532.51, 713.23, 14.74, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1405, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1306, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 2540.06, 713.2, 14.74, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1406, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1307, 4, '3 Story Condo In SF', 0, 0, 0, 120000, 0, -2351.15, 1318.02, 16.22, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 1407, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1308, 4, '3 Story Condo In SF', 0, 0, 0, 120000, 0, -2351.16, 1299.56, 19.58, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 1408, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1309, 4, '3 Story Condo In SF', 0, 0, 0, 120000, 0, -2351.14, 1281.29, 22.94, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 1409, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1310, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 2660.08, 719.42, 10.82, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1410, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1311, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 2652.53, 719.49, 10.82, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1411, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1312, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 2652.53, 719.52, 14.74, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1412, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1313, 4, '3 Story Condo In SF', 0, 0, 0, 120000, 0, -2351.15, 1262.93, 26.32, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 1413, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1314, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 2660.08, 719.58, 14.74, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1414, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1315, 4, '3 Story Condo In SF', 0, 0, 0, 120000, 0, -2351.15, 1244.69, 29.68, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 1415, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1316, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 2652.53, 713.16, 10.82, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1416, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1317, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 2660.08, 713.32, 10.82, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1417, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1318, 4, '3 Story Condo In SF', 0, 0, 0, 120000, 0, -2351.15, 1226.37, 33.03, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 1418, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1319, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 2652.53, 713.27, 14.74, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1419, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1320, 4, '3 Story Condo In SF', 0, 0, 0, 120000, 0, -2383.13, 1226.35, 33.04, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 1420, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1321, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 2660.08, 713.33, 14.74, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1421, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1322, 4, '3 Story Condo In SF', 0, 0, 0, 120000, 0, -2383.09, 1244.63, 29.69, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 1422, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1323, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 2613.51, 713.39, 10.82, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1423, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1324, 4, '3 Story Condo In SF', 0, 0, 0, 120000, 0, -2383.14, 1262.96, 26.33, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 1424, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1325, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 2621.06, 713.22, 10.82, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1425, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1326, 4, '3 Story Condo In SF', 0, 0, 0, 120000, 0, -2383.12, 1281.31, 22.96, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 1426, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1327, 4, '3 Story Condo In SF', 0, 0, 0, 120000, 0, -2383.14, 1299.71, 19.6, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 1427, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1328, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 2579.08, 713.21, 10.82, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1428, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1329, 4, '3 Story Condo In SF', 0, 0, 0, 120000, 0, -2383.12, 1317.95, 16.24, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 1429, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1330, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 2571.53, 713.25, 10.82, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1430, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1331, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 2540.06, 713.25, 10.82, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1431, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1332, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 2532.51, 713.37, 10.82, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1432, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1333, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 2526.21, 750.1, 10.82, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1433, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1334, 4, 'Normal Size House In SF', 0, 0, 0, 85000, 0, -2433.08, 1338.17, 8.51, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 1434, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1335, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 2526.13, 742.54, 10.82, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1435, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1336, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 2525.97, 742.54, 14.74, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1436, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1337, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 2526.04, 750.09, 14.74, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1437, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1338, 4, 'Small House In SF', 0, 0, 0, 30000, 0, -2433.76, 1318.71, 13.87, 0, 0, 0, 0, -1, 261.06, 1284.29, 1080.25, 0, 4, 1438, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1339, 4, 'Small House In SF', 0, 0, 0, 30000, 0, -2434.02, 1311.06, 15.42, 0, 0, 0, 0, -1, 261.06, 1284.29, 1080.25, 0, 4, 1439, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1340, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 2532.3, 742.54, 10.82, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1440, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1341, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 2532.36, 750.09, 10.82, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1441, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1342, 4, 'Small House In SF', 0, 0, 0, 30000, 0, -2433.07, 1301.14, 18.38, 0, 0, 0, 0, -1, 261.06, 1284.29, 1080.25, 0, 4, 1442, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1343, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 2532.43, 750.09, 14.74, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1443, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1344, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 2532.36, 742.54, 14.74, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1444, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1345, 4, 'Small House In SF', 0, 0, 0, 30000, 0, -2433.77, 1281.61, 23.74, 0, 0, 0, 0, -1, 261.06, 1284.29, 1080.25, 0, 4, 1445, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1346, 4, 'Small House In SF', 0, 0, 0, 30000, 0, -2434, 1274.07, 25.31, 0, 0, 0, 0, -1, 261.06, 1284.29, 1080.25, 0, 4, 1446, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1347, 4, 'Normal Size House In SF', 0, 0, 0, 85000, 0, -2433.06, 1264.12, 28.26, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 1447, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1348, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 2660.31, 750.1, 10.82, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1448, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1349, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 2660.28, 742.54, 10.82, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1449, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1350, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 2666.5, 750.1, 10.82, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1450, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1351, 4, 'Small House In SF', 0, 0, 0, 30000, 0, -2433.72, 1244.43, 33.62, 0, 0, 0, 0, -1, 261.06, 1284.29, 1080.25, 0, 4, 1451, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1352, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 2666.5, 742.54, 10.82, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1452, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1353, 4, 'Small House In SF', 0, 0, 0, 30000, 0, -2477.24, 1244.31, 33.61, 0, 0, 0, 0, -1, 261.06, 1284.29, 1080.25, 0, 4, 1453, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1354, 4, 'Normal Size House In SF', 0, 0, 0, 85000, 0, -2477.93, 1264.22, 28.25, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 1454, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1355, 4, 'Small House In SF', 0, 0, 0, 30000, 0, -2476.93, 1274.28, 25.31, 0, 0, 0, 0, -1, 261.06, 1284.29, 1080.25, 0, 4, 1455, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1356, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 2660.21, 742.55, 14.74, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1456, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1357, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 2660.38, 750.1, 14.74, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1457, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1358, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 2666.43, 742.54, 14.74, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1458, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1359, 4, 'Small House In SF', 0, 0, 0, 30000, 0, -2477.19, 1281.51, 23.73, 0, 0, 0, 0, -1, 261.06, 1284.29, 1080.25, 0, 4, 1459, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1360, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 2666.53, 750.1, 14.74, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1460, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1361, 4, 'Normal Size House In SF', 0, 0, 0, 85000, 0, -2477.88, 1301.24, 18.38, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 1461, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1362, 4, 'Small House In SF', 0, 0, 0, 30000, 0, -2476.93, 1311.23, 15.41, 0, 0, 0, 0, -1, 261.06, 1284.29, 1080.25, 0, 4, 1462, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1363, 4, 'Small House In SF', 0, 0, 0, 30000, 0, -2477.2, 1318.62, 13.85, 0, 0, 0, 0, -1, 261.06, 1284.29, 1080.25, 0, 4, 1463, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1364, 4, 'Normal Size House In SF', 0, 0, 0, 85000, 0, -2477.87, 1338.25, 8.5, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 1464, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1365, 4, 'Medium house at LV', 0, 0, 0, 150000, 5000, 1845.44, 661.13, 11.46, 0, 0, 0, 0, -1, 447, 1397.09, 1084.3, 0, 2, 1465, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1366, 4, 'Medium house at LV', 0, 0, 0, 150000, 200, 1844.53, 690.45, 11.45, 0, 0, 0, 0, -1, 447, 1397.09, 1084.3, 0, 2, 1466, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1367, 4, 'Medium house at LV', 0, 0, 0, 150000, 0, 1843.99, 718.83, 11.47, 0, 0, 0, 0, -1, 447, 1397.09, 1084.3, 0, 2, 1467, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1368, 4, 'Medium house at LV', 0, 0, 0, 150000, 0, 1845.44, 741.39, 11.46, 0, 0, 0, 0, -1, 447, 1397.09, 1084.3, 0, 2, 1468, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1369, 4, '3 Story Condo In SF', 0, 0, 0, 120000, 0, -2126.45, 1087.64, 80.01, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 1469, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1370, 4, '3 Story Condo In SF', 0, 0, 0, 120000, 0, -2126.5, 1069.28, 80.01, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 1470, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1371, 4, '5 Story Condo In SF', 0, 0, 0, 500000, 0, -2126.44, 1050.91, 80.01, 0, 0, 0, 0, -1, 226.3, 1114.37, 1080.99, 0, 5, 1471, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1372, 4, '5 Story Condo In SF', 0, 0, 0, 500000, 0, -2126.47, 1032.53, 80.01, 0, 0, 0, 0, -1, 226.3, 1114.37, 1080.99, 0, 5, 1472, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1373, 4, '3 Story Condo In SF', 0, 0, 0, 120000, 0, -2126.44, 1014.24, 80.01, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 1473, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1374, 4, '3 Story Condo In SF', 0, 0, 0, 120000, 0, -2126.47, 996.32, 80.01, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 1474, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1375, 4, '3 Story Condo In SF', 0, 0, 0, 120000, 0, -2126.44, 978.49, 80.01, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 1475, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1376, 4, '3 Story Condo In SF', 0, 0, 0, 120000, 0, -2129.63, 942.58, 80, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 1476, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1377, 4, '2 Story Condo In SF', 0, 0, 0, 120000, 0, -2116.77, 927.83, 86.08, 0, 0, 0, 0, -1, 447, 1397.09, 1084.3, 0, 2, 1477, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1378, 4, '3 Story Condo In SF', 0, 0, 0, 120000, 0, -2129.25, 895.04, 80, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 1478, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1379, 4, '3 Story Condo In SF', 0, 0, 0, 120000, 0, -2126.4, 832.82, 69.56, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 1479, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1380, 4, '3 Story Condo In SF', 0, 0, 0, 120000, 0, -2126.04, 774.13, 69.56, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 1480, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1381, 4, '3 Story Condo In SF', 0, 0, 0, 120000, 0, -2126.08, 755.7, 69.56, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 1481, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1382, 4, '3 Story Condo In SF', 0, 0, 0, 120000, 0, -2112.56, 746.41, 69.56, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 1482, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1383, 4, '3 Story Condo In SF', 0, 0, 0, 120000, 0, -2094.2, 746.42, 69.56, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 1483, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1384, 4, '3 Story Condo In SF', 0, 0, 0, 120000, 0, -2066.57, 746.06, 64.89, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 1484, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1385, 4, '3 Story Condo In SF', 0, 0, 0, 120000, 0, -2048.12, 746.08, 57.04, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 1485, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1386, 4, '3 Story Condo In SF', 0, 0, 0, 120000, 0, -2029.84, 746.08, 49.46, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 1486, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1387, 4, '3 Story Condo In SF', 0, 0, 0, 120000, 0, -2018.55, 748.04, 45.45, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 1487, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1388, 4, '3 Story Condo In SF', 0, 0, 0, 120000, 0, -2018.54, 766.22, 45.45, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 1488, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1389, 4, '3 Story Condo In SF', 0, 0, 0, 120000, 0, -2018.53, 784.82, 45.45, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 1489, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1390, 4, '3 Story Condo In SF', 0, 0, 0, 120000, 0, -2029.85, 796.12, 49.47, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 1490, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1391, 4, '3 Story Condo In SF', 0, 0, 0, 120000, 0, -2048.22, 796.1, 57.04, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 1491, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1392, 4, '3 Story Condo In SF', 0, 0, 0, 120000, 0, -2066.44, 796.12, 64.92, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 1492, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1393, 4, '3 Story Condo In SF', 0, 0, 0, 120000, 0, -2094.25, 795.75, 69.56, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 1493, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1394, 4, '3 Story Condo In SF', 0, 0, 0, 120000, 0, -2112.67, 795.75, 69.56, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 1494, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1395, 4, '3 Story Condo In SF', 0, 0, 0, 120000, 0, -2112.63, 823.53, 69.56, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 1495, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1396, 4, '3 Story Condo In SF', 0, 0, 0, 120000, 0, -2094.18, 823.55, 69.56, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 1496, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1397, 4, '3 Story Condo In SF', 0, 0, 0, 120000, 0, -2066.48, 820.69, 64.92, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 1497, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1398, 4, '3 Story Condo In SF', 0, 0, 0, 120000, 0, -2048.12, 820.69, 57.03, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 1498, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1399, 4, '3 Story Condo In SF', 0, 0, 0, 120000, 0, -2029.81, 820.68, 49.46, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 1499, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1400, 4, '3 Story Condo In SF', 0, 0, 0, 120000, 0, -2018.54, 832.17, 45.45, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 1500, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1401, 4, '6 Story Condo In SF', 0, 0, 0, 450000, 0, -2018.54, 849.28, 45.45, 0, 0, 0, 0, -1, 226.3, 1114.37, 1080.99, 0, 5, 1501, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1402, 4, '6 Story Condo In SF', 0, 0, 0, 450000, 0, -2018.53, 865.8, 45.44, 0, 0, 0, 0, -1, 226.3, 1114.37, 1080.99, 0, 5, 1502, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1403, 4, '4 Story Condo In SF', 0, 0, 0, 400000, 0, -2016.35, 897.46, 45.45, 0, 0, 0, 0, -1, 234.22, 1063.89, 358.5, 0, 6, 1503, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1404, 4, '3 Story Condo In SF', 0, 0, 0, 120000, 0, -2034.17, 901.47, 50.46, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 1504, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1405, 4, 'Large Condo In SF', 0, 0, 0, 420000, 0, -2075.25, 898.65, 64.13, 0, 0, 0, 0, -1, 234.22, 1063.89, 1084.21, 0, 6, 1505, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1406, 4, 'Large Condo In SF', 0, 0, 0, 420000, 0, -2084.75, 898.65, 64.13, 0, 0, 0, 0, -1, 234.22, 1063.89, 1084.21, 0, 6, 1506, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1407, 4, '3 Story Condo In SF', 0, 0, 0, 120000, 0, -2099.46, 897.38, 76.71, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 1507, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1408, 4, '5 Story Condo In SF', 0, 0, 0, 500000, 0, -2018.29, 970.07, 45.44, 0, 0, 0, 0, -1, 226.3, 1114.37, 1080.99, 0, 5, 1508, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1409, 4, '3 Story Condo In SF', 0, 0, 0, 120000, 0, -2018.3, 982.71, 47.69, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 1509, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1410, 4, '3 Story Condo In SF', 0, 0, 0, 120000, 0, -2018.29, 1000.03, 50.78, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 1510, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1411, 4, '3 Story Condo In SF', 0, 0, 0, 120000, 0, -2018.3, 1016.93, 53.87, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 1511, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1412, 4, 'Medium house at LV', 0, 0, 0, 150000, 0, 984.47, 2343.69, 11.47, 0, 0, 0, 0, -1, 447, 1397.09, 1084.3, 0, 2, 1512, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1413, 4, 'Medium house at LV', 0, 0, 0, 150000, 0, 985.48, 2314.3, 11.46, 0, 0, 0, 0, -1, 447, 1397.09, 1084.3, 0, 2, 1513, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1414, 4, 'Medium house at LV', 0, 0, 0, 150000, 0, 986.49, 2271.25, 11.46, 0, 0, 0, 0, -1, 447, 1397.09, 1084.3, 0, 2, 1514, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1415, 4, 'Medium house at LV', 0, 0, 0, 150000, 1, 956.9, 2270.27, 11.47, 0, 0, 0, 0, -1, 447, 1397.09, 1084.3, 0, 2, 1515, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1416, 4, 'Medium house at LV', 0, 0, 0, 150000, 0, 1030.81, 2028.11, 11.47, 0, 0, 0, 0, -1, 447, 1397.09, 1084.3, 0, 2, 1516, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1417, 4, 'Medium house at LV', 0, 0, 0, 150000, 0, 1029.36, 2005.64, 11.46, 0, 0, 0, 0, -1, 447, 1397.09, 1084.3, 0, 2, 1517, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1418, 4, 'Medium house at LV', 0, 0, 0, 150000, 0, 985.41, 2000.59, 11.46, 0, 0, 0, 0, -1, 447, 1397.09, 1084.3, 0, 2, 1518, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1419, 4, 'Medium house at LV', 0, 0, 0, 150000, 0, 984.51, 2030.18, 11.47, 0, 0, 0, 0, -1, 447, 1397.09, 1084.3, 0, 2, 1519, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1420, 4, 'Small House In SF', 0, 0, 0, 30000, 0, -2905.21, 1154.89, 13.66, 0, 0, 0, 0, -1, 261.06, 1284.29, 1080.25, 0, 4, 1520, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1421, 4, 'Small House In SF', 0, 0, 0, 30000, 0, -2905.16, 1165.04, 13.66, 0, 0, 0, 0, -1, 261.06, 1284.29, 1080.25, 0, 4, 1521, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1422, 4, 'Medium house at LV', 0, 0, 0, 150000, 0, 1030.27, 1976.01, 11.47, 0, 0, 0, 0, -1, 447, 1397.09, 1084.3, 0, 2, 1522, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1423, 4, 'Small House In SF', 0, 0, 0, 30000, 0, -2905.25, 1171.55, 13.66, 0, 0, 0, 0, -1, 261.06, 1284.29, 1080.25, 0, 4, 1523, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1424, 4, 'Small House In SF', 0, 0, 0, 30000, 0, -2905.09, 1178.76, 13.66, 0, 0, 0, 0, -1, 261.06, 1284.29, 1080.25, 0, 4, 1524, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1425, 4, 'Medium house at LV', 0, 0, 0, 150000, 0, 983.97, 1978.2, 11.47, 0, 0, 0, 0, -1, 447, 1397.09, 1084.3, 0, 2, 1525, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1426, 4, 'Medium house at LV', 0, 0, 0, 150000, 0, 984.7, 1930.83, 11.47, 0, 0, 0, 0, -1, 447, 1397.09, 1084.3, 0, 2, 1526, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1427, 4, 'Medium house at LV', 0, 0, 0, 150000, 0, 1030.81, 1928.11, 11.47, 0, 0, 0, 0, -1, 447, 1397.09, 1084.3, 0, 2, 1527, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1428, 4, 'Small Nice House In SF', 0, 0, 0, 60000, 0, -2904.7, 1118.82, 27.07, 0, 0, 0, 0, -1, 22.93, 1403.32, 1084.43, 0, 5, 1528, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1429, 4, 'Medium house at LV', 0, 0, 0, 150000, 500, 1029.36, 1905.92, 11.46, 0, 0, 0, 0, -1, 447, 1397.09, 1084.3, 0, 2, 1529, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1430, 4, 'Small House In SF', 0, 0, 0, 30000, 0, -2904.8, 1111.52, 27.07, 0, 0, 0, 0, -1, 261.06, 1284.29, 1080.25, 0, 4, 1530, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1431, 4, 'Medium house at LV', 0, 0, 0, 150000, 0, 985.41, 1901.04, 11.46, 0, 0, 0, 0, -1, 447, 1397.09, 1084.3, 0, 2, 1531, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1432, 4, 'Small House In SF', 0, 0, 0, 30000, 0, -2904.47, 1101.11, 27.07, 0, 0, 0, 0, -1, 261.06, 1284.29, 1080.25, 0, 4, 1532, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1433, 4, 'Medium house at LV', 0, 0, 0, 150000, 0, 983.97, 1878.94, 11.47, 0, 0, 0, 0, -1, 447, 1397.09, 1084.3, 0, 2, 1533, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1434, 4, 'Medium house at LV', 0, 0, 0, 150000, 0, 1030.37, 1876.35, 11.47, 0, 0, 0, 0, -1, 447, 1397.09, 1084.3, 0, 2, 1534, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1435, 4, 'Medium house at LV', 0, 0, 0, 150000, 0, 1030.81, 1847.93, 11.47, 0, 0, 0, 0, -1, 447, 1397.09, 1084.3, 0, 2, 1535, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1436, 4, 'LS Project', 0, 0, 0, 4000, 1500, 2158.34, -1611.31, 14.35, 0, 0, 0, 0, -1, 244.41, 305.03, 999.15, 0, 1, 1536, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1437, 4, 'LS Project', 0, 0, 0, 4000, 1000, 2129.11, -1663.94, 15.09, 0, 0, 0, 0, -1, 244.41, 305.03, 999.15, 0, 1, 1537, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1438, 4, 'LS Project', 0, 0, 0, 4000, 100, 2141.49, -1652.85, 15.09, 0, 0, 0, 0, -1, 244.41, 305.03, 999.15, 0, 1, 1538, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1439, 4, '*LS Project', 0, 0, 0, 4000, 95, 2172.59, -1615.28, 14.28, 0, 0, 0, 0, -1, 244.41, 305.03, 999.15, 0, 1, 1539, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1440, 4, 'LS Project', 0, 0, 0, 4000, 0, 2179.08, -1600.11, 14.35, 0, 0, 0, 0, -1, 244.41, 305.03, 999.15, 0, 1, 1540, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1441, 4, 'LS Project', 0, 0, 0, 4000, 0, 2165.56, -1590.49, 14.35, 0, 0, 0, 0, -1, 244.41, 305.03, 999.15, 0, 1, 1541, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1442, 4, 'LS Project', 0, 0, 0, 4000, 0, 2151.2, -1598.49, 14.35, 0, 0, 0, 0, -1, 244.41, 305.03, 999.15, 0, 1, 1542, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1443, 4, 'LS Project', 0, 0, 0, 4000, 0, 2150.4, -1583.96, 14.34, 0, 0, 0, 0, -1, 244.41, 305.03, 999.15, 0, 1, 1543, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1444, 4, 'LS Project', 0, 0, 0, 4000, 0, 2136, -1591.98, 14.35, 0, 0, 0, 0, -1, 244.41, 305.03, 999.15, 0, 1, 1544, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1445, 4, 'LS Project', 0, 0, 0, 4000, 0, 2143.29, -1571.2, 14.19, 0, 0, 0, 0, -1, 244.41, 305.03, 999.15, 0, 1, 1545, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1446, 4, 'LS Project', 0, 0, 0, 4000, 0, 2158.51, -1577.71, 14.28, 0, 0, 0, 0, -1, 244.41, 305.03, 999.15, 0, 1, 1546, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1447, 4, 'LS Project', 0, 0, 0, 4000, 0, 2191.91, -1592.97, 14.35, 0, 0, 0, 0, -1, 244.41, 305.03, 999.15, 0, 1, 1547, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1448, 4, 'LS Project', 0, 0, 0, 4000, 0, 2185.31, -1608.14, 14.36, 0, 0, 0, 0, -1, 244.41, 305.03, 999.15, 0, 1, 1548, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1449, 4, 'LS Project', 0, 0, 0, 4000, 0, 2143.12, -1604.72, 14.35, 0, 0, 0, 0, -1, 244.41, 305.03, 999.15, 0, 1, 1549, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1450, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 0, 2068.14, -1588.86, 13.49, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 1550, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1451, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 0, 2073.36, -1583.05, 13.47, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 1551, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1452, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 0, 2065.33, -1583.36, 13.48, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 1552, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1453, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 0, 2076.11, -1588.67, 13.49, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 1553, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1454, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 0, 2072.5, -1559.31, 13.41, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 1554, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1455, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 0, 2066.81, -1554.09, 13.43, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 1555, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1456, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 0, 2066.96, -1562.17, 13.43, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 1556, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1457, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 0, 2072.27, -1551.3, 13.42, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 1557, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1458, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 250, 1852.3, -2019.63, 13.54, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 1558, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1459, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 2000, 1852.33, -2021.36, 13.54, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 1559, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1460, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 0, 1857.1, -2035.08, 13.54, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 1560, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1461, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 0, 1858.71, -2035.04, 13.54, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 1561, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1462, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 0, 1867.87, -2028.42, 13.54, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 1562, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1463, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 500, 1864.98, -2021.37, 13.54, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 1563, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1464, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 0, 1864.95, -2019.64, 13.54, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 1564, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1465, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 50, 1865.96, -2003.88, 13.54, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 1565, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1466, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 500, 1867.77, -2003.87, 13.54, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 1566, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1467, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 0, 1867.88, -2010.06, 13.54, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 1567, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1468, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 0, 1888.93, -2000.94, 13.54, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 1568, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1469, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 0, 1877.32, -2001.01, 13.54, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 1569, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1470, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 0, 1867.75, -1998.07, 13.54, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 1570, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1471, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 0, 1866.01, -1998.09, 13.54, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 1571, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1472, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 200, 1867.79, -1985.4, 13.54, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 1572, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1473, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 0, 1866, -1985.45, 13.54, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 1573, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1474, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 0, 1852.28, -1990.19, 13.54, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 1574, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1475, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 449, 1852.33, -1991.81, 13.54, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 1575, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1476, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 0, 1858.96, -2001, 13.54, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 1576, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1477, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 500, 1849.4, -2010.06, 13.54, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 1577, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1478, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 0, 1895.53, -2019.67, 13.54, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 1578, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1479, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 0, 1895.53, -2021.36, 13.54, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 1579, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1480, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 0, 1898.99, -2037.96, 13.54, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 1580, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1481, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 0, 1898.37, -2028.42, 13.54, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 1581, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1482, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 0, 1905.98, -2035.08, 13.54, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 1582, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1483, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 0, 1907.71, -2035.05, 13.54, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 1583, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1484, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 0, 1913.96, -2021.43, 13.54, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 1584, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1485, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 450, 1913.95, -2019.65, 13.54, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 1585, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1486, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 0, 1901.33, -2019.64, 13.54, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 1586, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1487, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 0, 1901.34, -2021.43, 13.54, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 1587, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1488, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 0, 1916.9, -2028.42, 13.54, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 1588, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1489, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 0, 1919.76, -2021.34, 13.54, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 1589, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1490, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 0, 1919.76, -2019.62, 13.54, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 1590, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1491, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 0, 1916.9, -2000.38, 13.54, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 1591, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1492, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 0, 1916.89, -2010.06, 13.54, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 1592, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1493, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 0, 1907.28, -2001.01, 13.54, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 1593, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1494, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 730, 1913.95, -1993.45, 13.54, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 1594, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1495, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 0, 1913.92, -1991.56, 13.54, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 1595, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1496, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 0, 1907.29, -1982.51, 13.54, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 1596, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1497, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 5000, 1900.31, -1979.61, 13.54, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 1597, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1498, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 0, 1898.66, -1979.62, 13.54, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 1598, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1499, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 0, 1916.76, -1982.03, 13.54, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 1599, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1500, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 0, 1919.72, -1993.24, 13.54, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 1600, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1501, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 0, 1919.72, -1991.62, 13.54, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 1601, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1502, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 0, 1900.21, -1985.39, 13.54, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 1602, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1503, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 145, 1898.54, -1985.42, 13.54, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 1603, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1504, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 0, 1900.25, -1998.04, 13.54, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 1604, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1505, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 0, 1898.49, -1998.06, 13.54, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 1605, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1506, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 0, 1870.76, -2019.59, 13.54, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 1606, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1507, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 0, 1870.76, -2021.39, 13.54, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 1607, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1508, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 100, 1868.35, -2037.97, 13.54, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 1608, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1509, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 0, 1858.79, -2040.85, 13.54, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 1609, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1510, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 0, 1857.02, -2040.85, 13.54, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 1610, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1511, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 0, 1906.17, -2040.85, 13.54, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 1611, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1512, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 0, 1907.74, -2040.85, 13.54, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 1612, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1513, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 0, 1849.99, -2037.92, 13.54, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 1613, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1514, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 0, 1849.42, -2028.42, 13.54, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 1614, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1515, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 0, 1846.53, -2021.35, 13.54, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 1615, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1516, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 0, 1846.53, -2019.77, 13.54, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 1616, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1517, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 0, 1849.45, -2001.46, 13.54, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 1617, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1518, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 0, 1838.7, -1995.85, 13.54, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 1618, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1519, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 0, 1838.7, -1994.18, 13.54, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 1619, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1520, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 500, 1846.53, -1991.87, 13.54, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 1620, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1521, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 500, 1846.53, -1990.15, 13.54, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 1621, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1522, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 0, 1849.35, -1983.11, 13.54, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 1622, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1523, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 0, 1858.96, -1982.62, 13.54, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 1623, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1524, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 0, 1888.93, -1982.5, 13.54, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 1624, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1525, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 0, 1917.35, -2037.98, 13.54, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 1625, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1526, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 0, 1835.86, -2005.48, 13.54, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 1626, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1527, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 0, 1835.93, -1987.13, 13.54, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 1627, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1528, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 0, 1835.24, -1977.53, 13.54, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 1628, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1529, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 1000, 1828.37, -1980.44, 13.54, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 1629, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1530, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 0, 1826.53, -1980.51, 13.54, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 1630, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1531, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 1, 1817.51, -1987.13, 13.55, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 1631, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1532, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 0, 1816.89, -1977.5, 13.54, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 1632, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1533, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 1, 1826.53, -1974.69, 13.54, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 1633, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1534, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 1, 1828.07, -1974.69, 13.54, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 1634, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1535, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 0, 1832.9, -1994.11, 13.54, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 1635, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1536, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 0, 1820.28, -1995.94, 13.55, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 1636, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1537, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 200, 1820.24, -1994.23, 13.55, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 1637, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1538, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 0, 1817.43, -2005.49, 13.55, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 1638, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1539, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 0, 1814.47, -1995.92, 13.55, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 1639, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1540, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 100, 1814.48, -1994.15, 13.55, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 1640, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1541, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 0, 1867.74, -1979.65, 13.54, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 1641, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1542, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 1000, 1865.92, -1979.65, 13.54, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 1642, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1543, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 0, 1877.32, -1982.49, 13.54, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 1643, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1544, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 0, 1801.99, -2098.94, 14.02, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 1644, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1545, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 0, 1804.19, -2124.9, 13.94, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 1645, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1546, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 0, 1781.45, -2101.27, 14.05, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 1646, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1547, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 0, 1782.09, -2126.37, 14.07, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 1647, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1548, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 0, 1761.17, -2125.45, 14.05, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 1648, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1549, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 0, 1762.39, -2101.98, 13.85, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 1649, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1550, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 0, 1734.15, -2097.98, 14.04, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 1650, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1551, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 0, 1734.62, -2130.35, 14.02, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 1651, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1552, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 1000, 1715.06, -2125.45, 14.05, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 1652, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1553, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 1000, 1711.67, -2101.24, 14.02, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 1653, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1554, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 250, 1695.52, -2125.83, 13.81, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 1654, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1555, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 0, 1684.72, -2098.16, 13.83, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 1655, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1556, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 0, 1673.68, -2122.46, 14.14, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 1656, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1557, 4, 'normal house at ls', 0, 0, 0, 150000, 0, 1616.15, -1897.58, 13.55, 0, 0, 0, 0, -1, 447, 1397.09, 1084.3, 0, 2, 1657, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1558, 4, 'normal house at ls', 0, 0, 0, 150000, 0, 1610.88, -1893.88, 13.54, 0, 0, 0, 0, -1, 447, 1397.09, 1084.3, 0, 2, 1658, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1559, 4, 'normal house at ls', 0, 0, 0, 150000, 0, 1628.69, -1903.36, 13.55, 0, 0, 0, 0, -1, 447, 1397.09, 1084.3, 0, 2, 1659, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1560, 4, 'House Near Vinewood', 0, 0, 0, 150000, 100, 1325.95, -1067.65, 31.55, 0, 0, 0, 0, -1, 447, 1397.09, 1084.3, 0, 2, 1660, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1561, 4, 'House Near Vinewood', 0, 0, 0, 150000, 0, 1326.26, -1090.61, 27.98, 0, 0, 0, 0, -1, 447, 1397.09, 1084.3, 0, 2, 1661, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1562, 4, 'House Near Vinewood', 0, 0, 0, 150000, 0, 1285.27, -1090.28, 28.26, 0, 0, 0, 0, -1, 447, 1397.09, 1084.3, 0, 2, 1662, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1563, 4, 'House Near Vinewood', 0, 0, 0, 150000, 0, 1242.26, -1099.51, 27.98, 0, 0, 0, 0, -1, 447, 1397.09, 1084.3, 0, 2, 1663, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1564, 4, 'House Near Vinewood', 0, 0, 0, 150000, 0, 1241.94, -1076.43, 31.55, 0, 0, 0, 0, -1, 447, 1397.09, 1084.3, 0, 2, 1664, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1565, 4, 'House Near Vinewood', 0, 0, 0, 150000, 0, 1285.26, -1067.31, 31.68, 0, 0, 0, 0, -1, 447, 1397.09, 1084.3, 0, 2, 1665, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1566, 4, 'House near vinewood small LS', 0, 0, 0, 100000, 0, 1189.01, -1018.12, 36.23, 0, 0, 0, 0, -1, 447, 1397.09, 1084.3, 0, 2, 1666, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1567, 4, 'House near vinewood small LS', 0, 0, 0, 100000, 5000, 1196.48, -1016.99, 36.23, 0, 0, 0, 0, -1, 447, 1397.09, 1084.3, 0, 2, 1667, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1568, 4, 'House near vinewood small LS', 0, 0, 0, 100000, 0, 1188.19, -1011.88, 36.23, 0, 0, 0, 0, -1, 447, 1397.09, 1084.3, 0, 2, 1668, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1569, 4, 'House near vinewood small LS', 0, 0, 0, 100000, 0, 1195.68, -1010.91, 36.23, 0, 0, 0, 0, -1, 447, 1397.09, 1084.3, 0, 2, 1669, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1570, 4, 'House near vinewood small LS', 0, 0, 0, 100000, 100, 1188.19, -1011.89, 32.55, 0, 0, 0, 0, -1, 447, 1397.09, 1084.3, 0, 2, 1670, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1571, 4, 'House near vinewood small LS', 0, 0, 0, 100000, 0, 1195.69, -1010.93, 32.55, 0, 0, 0, 0, -1, 447, 1397.09, 1084.3, 0, 2, 1671, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1572, 4, 'House near vinewood small LS', 0, 0, 0, 100000, 100, 1189.01, -1018.09, 32.55, 0, 0, 0, 0, -1, 447, 1397.09, 1084.3, 0, 2, 1672, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1573, 4, 'House near vinewood small LS', 0, 0, 0, 100000, 0, 1196.5, -1017.15, 32.55, 0, 0, 0, 0, -1, 447, 1397.09, 1084.3, 0, 2, 1673, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1574, 4, 'House near vinewood small LS', 0, 0, 0, 100000, 500, 1234.73, -1016.13, 32.6, 0, 0, 0, 0, -1, 447, 1397.09, 1084.3, 0, 2, 1674, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1575, 4, 'House near vinewood small LS', 0, 0, 0, 100000, 50, 1227.25, -1017.18, 32.6, 0, 0, 0, 0, -1, 447, 1397.09, 1084.3, 0, 2, 1675, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1576, 4, 'House near vinewood small LS', 0, 0, 0, 100000, 0, 1233.93, -1010.05, 32.6, 0, 0, 0, 0, -1, 447, 1397.09, 1084.3, 0, 2, 1676, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1577, 4, 'House near vinewood small LS', 0, 0, 0, 100000, 0, 1226.44, -1011.03, 32.6, 0, 0, 0, 0, -1, 447, 1397.09, 1084.3, 0, 2, 1677, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1578, 4, 'House near vinewood small LS', 0, 0, 0, 100000, 1500, 1234.73, -1016.15, 36.34, 0, 0, 0, 0, -1, 447, 1397.09, 1084.3, 0, 2, 1678, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1579, 4, 'House near vinewood small LS', 0, 0, 0, 100000, 0, 1227.25, -1017.18, 36.33, 0, 0, 0, 0, -1, 447, 1397.09, 1084.3, 0, 2, 1679, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1580, 4, 'House near vinewood small LS', 0, 0, 0, 100000, 0, 1233.92, -1009.97, 36.33, 0, 0, 0, 0, -1, 447, 1397.09, 1084.3, 0, 2, 1680, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1581, 4, 'House near vinewood small LS', 0, 0, 0, 100000, 0, 1226.44, -1011.01, 36.33, 0, 0, 0, 0, -1, 447, 1397.09, 1084.3, 0, 2, 1681, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1582, 4, 'House Near Vinewood', 0, 0, 0, 150000, 1, 1127.97, -1021.17, 34.99, 0, 0, 0, 0, -1, 447, 1397.09, 1084.3, 0, 2, 1682, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1583, 4, 'House Near Vinewood', 0, 0, 0, 150000, 0, 1118.05, -1021.17, 34.99, 0, 0, 0, 0, -1, 447, 1397.09, 1084.3, 0, 2, 1683, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1584, 4, 'House Near Vinewood', 0, 0, 0, 150000, 500, 1051.03, -1059.3, 34.8, 0, 0, 0, 0, -1, 447, 1397.09, 1084.3, 0, 2, 1684, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1585, 4, 'House Near Vinewood', 0, 0, 0, 150000, 0, 993.76, -1059.03, 33.7, 0, 0, 0, 0, -1, 447, 1397.09, 1084.3, 0, 2, 1685, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1586, 4, 'Mansion', 0, 0, 0, 5250000, 0, 952.61, -909.1, 45.76, 0, 0, 0, 0, -1, 1298.81, -796.66, 1084.01, 0, 5, 1686, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1587, 4, 'House Near Vinewood', 0, 0, 0, 150000, 100, 1411.1, -920.86, 38.42, 0, 0, 0, 0, -1, 447, 1397.09, 1084.3, 0, 2, 1687, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1588, 4, 'House Near Vinewood', 0, 0, 0, 150000, 0, 1440.67, -926.13, 39.65, 0, 0, 0, 0, -1, 447, 1397.09, 1084.3, 0, 2, 1688, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1589, 4, 'small house at vinewood', 0, 0, 0, 150000, 0, 1421.78, -886.23, 50.69, 0, 0, 0, 0, -1, 295.21, 1472.26, 1080.25, 0, 15, 1689, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1590, 4, 'small house at vinewood', 0, 0, 0, 150000, 0, 1468.54, -906.18, 54.83, 0, 0, 0, 0, -1, 295.21, 1472.26, 1080.25, 0, 15, 1690, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1591, 4, 'house at vinewood', 0, 0, 0, 250000, 0, 1535.72, -885.25, 57.66, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 1691, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1592, 4, 'Small House at Vinewood', 0, 0, 0, 400000, 100, 1540.47, -851.44, 64.33, 0, 0, 0, 0, -1, 234.22, 1063.89, 1084.21, 0, 6, 1692, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1593, 4, 'small house at vinewood', 0, 0, 0, 150000, 0, 1535.03, -800.17, 72.85, 0, 0, 0, 0, -1, 295.21, 1472.26, 1080.25, 0, 15, 1693, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1594, 4, 'House', 0, 0, 0, 150000, 0, 1527.88, -772.64, 80.58, 0, 0, 0, 0, -1, 295.21, 1472.26, 1080.25, 0, 15, 1694, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1595, 4, 'House At Vinewood With Swimming Pool', 0, 0, 0, 550000, 0, 1442.68, -628.83, 95.72, 0, 0, 0, 0, -1, 226.3, 1114.37, 1080.99, 0, 5, 1695, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1596, 4, 'Fancy Mansion with swimming pool', 0, 0, 0, 550000, 1500, 1331.99, -633.55, 109.13, 0, 0, 0, 0, -1, 226.3, 1114.37, 1080.99, 0, 5, 1696, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1597, 4, 'House at Vinewood', 0, 0, 0, 400000, 0, 1094.99, -647.91, 113.65, 0, 0, 0, 0, -1, 234.22, 1063.89, 1084.21, 0, 6, 1697, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1598, 4, 'House At Vinewood without swimming pool', 0, 0, 0, 400000, 0, 1045.16, -642.94, 120.11, 0, 0, 0, 0, -1, 234.22, 1063.89, 1084.21, 0, 6, 1698, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1599, 4, 'House At Vinewood With Swimming Pool', 0, 0, 0, 550000, 0, 897.93, -677.11, 116.89, 0, 0, 0, 0, -1, 226.3, 1114.37, 1080.99, 0, 5, 1699, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1600, 4, 'small house at vinewood', 0, 0, 0, 150000, 0, 946.3, -710.69, 122.62, 0, 0, 0, 0, -1, 295.21, 1472.26, 1080.25, 0, 15, 1700, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1601, 4, 'house at vinewood', 0, 0, 0, 250000, 0, 867.49, -717.58, 105.68, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 1701, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1602, 4, 'house at vinewood', 0, 0, 0, 250000, 0, 847.99, -745.51, 94.97, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 1702, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1603, 4, 'House At Vinewood without swimming pool', 0, 0, 0, 400000, 500, 891.14, -783.17, 101.31, 0, 0, 0, 0, -1, 234.22, 1063.89, 1084.21, 0, 6, 1703, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1604, 4, 'House At Vinewood without swimming pool', 0, 0, 0, 400000, 1, 808.26, -759.38, 76.53, 0, 0, 0, 0, -1, 234.22, 1063.89, 1084.21, 0, 6, 1704, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1605, 4, 'house at vinewood', 0, 0, 0, 250000, 0, 785.96, -828.58, 70.29, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 1705, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1606, 4, 'House At Vinewood With Swimming Pool', 0, 0, 0, 550000, 0, 497.37, -1095.07, 82.36, 0, 0, 0, 0, -1, 226.3, 1114.37, 1080.99, 0, 5, 1706, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1607, 4, 'House at Vinewood', 0, 0, 0, 550000, 0, 416.77, -1154.12, 76.68, 0, 0, 0, 0, -1, 226.3, 1114.37, 1080.99, 0, 5, 1707, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1608, 4, 'House At Vinewood without swimming pool', 0, 0, 0, 400000, 1000, 352.32, -1198, 76.51, 0, 0, 0, 0, -1, 234.22, 1063.89, 1084.21, 0, 6, 1708, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1609, 4, 'house at vinewood', 0, 0, 0, 250000, 0, 355.07, -1281.19, 53.7, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 1709, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1610, 4, 'small house at vinewood', 0, 0, 0, 150000, 0, 228.05, -1405.49, 51.61, 0, 0, 0, 0, -1, 295.21, 1472.26, 1080.25, 0, 15, 1710, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1611, 4, 'House At Vinewood without swimming pool', 0, 0, 0, 400000, 0, 470.76, -1163.56, 67.22, 0, 0, 0, 0, -1, 234.22, 1063.89, 1084.21, 0, 6, 1711, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1612, 4, 'small house at vinewood', 0, 0, 0, 150000, 0, 558.76, -1161.09, 54.43, 0, 0, 0, 0, -1, 295.21, 1472.26, 1080.25, 0, 15, 1712, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1613, 4, 'house at vinewood', 0, 0, 0, 250000, 0, 552.94, -1200.28, 44.83, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 1713, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1614, 4, 'small house at vinewood', 0, 0, 0, 150000, 0, 432.03, -1253.96, 51.58, 0, 0, 0, 0, -1, 295.21, 1472.26, 1080.25, 0, 15, 1714, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1615, 4, 'House At Vinewood With Swimming Pool', 0, 0, 0, 550000, 0, 612.17, -1085.92, 58.83, 0, 0, 0, 0, -1, 226.3, 1114.37, 1080.99, 0, 5, 1715, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1616, 4, 'House At Vinewood without swimming pool', 0, 0, 0, 400000, 0, 559.13, -1076.41, 72.92, 0, 0, 0, 0, -1, 234.22, 1063.89, 1084.21, 0, 6, 1716, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1617, 4, 'small house at vinewood', 0, 0, 0, 150000, 5000, 648.31, -1058.72, 52.58, 0, 0, 0, 0, -1, 295.21, 1472.26, 1080.25, 0, 15, 1717, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1618, 4, 'small house at vinewood', 0, 0, 0, 150000, 0, 673.11, -1020.17, 55.76, 0, 0, 0, 0, -1, 295.21, 1472.26, 1080.25, 0, 15, 1718, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1619, 4, 'House At Vinewood With Swimming Pool', 0, 0, 0, 550000, 0, 700.26, -1060.32, 49.42, 0, 0, 0, 0, -1, 226.3, 1114.37, 1080.99, 0, 5, 1719, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1620, 4, 'House At Vinewood without swimming pool', 0, 0, 0, 400000, 0, 724.66, -999.36, 52.73, 0, 0, 0, 0, -1, 234.22, 1063.89, 1084.21, 0, 6, 1720, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1621, 4, 'small house at vinewood', 0, 0, 0, 150000, 0, 923.9, -853.41, 93.46, 0, 0, 0, 0, -1, 295.21, 1472.26, 1080.25, 0, 15, 1721, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1622, 4, 'small house at vinewood', 0, 0, 0, 150000, 100, 937.8, -848.74, 93.58, 0, 0, 0, 0, -1, 295.21, 1472.26, 1080.25, 0, 15, 1722, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1623, 4, 'House At Vinewood without swimming pool', 0, 0, 0, 400000, 0, 910.39, -817.55, 103.13, 0, 0, 0, 0, -1, 234.22, 1063.89, 1084.21, 0, 6, 1723, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1624, 4, 'House At Vinewood without swimming pool', 0, 0, 0, 400000, 0, 977.38, -771.71, 112.2, 0, 0, 0, 0, -1, 234.22, 1063.89, 1084.21, 0, 6, 1724, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1625, 4, 'small house at vinewood', 0, 0, 0, 150000, 0, 1017.02, -763.36, 112.56, 0, 0, 0, 0, -1, 295.21, 1472.26, 1080.25, 0, 15, 1725, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1626, 4, 'small house at vinewood', 0, 0, 0, 150000, 0, 1034.81, -813.18, 101.85, 0, 0, 0, 0, -1, 295.21, 1472.26, 1080.25, 0, 15, 1726, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1627, 4, 'House At Vinewood without swimming Pool', 0, 0, 0, 400000, 1500, 989.74, -828.69, 95.47, 0, 0, 0, 0, -1, 234.22, 1063.89, 1084.21, 0, 6, 1727, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1628, 4, 'UFO House at vinewood', 0, 0, 0, 1000000, 0, 1093.97, -807.13, 107.42, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 1728, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1629, 4, 'House At Vinewood without swimming pool', 0, 0, 0, 400000, 0, 835.97, -894.86, 68.76, 0, 0, 0, 0, -1, 234.22, 1063.89, 1084.21, 0, 6, 1729, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1630, 4, 'small house at vinewood', 0, 0, 0, 150000, 0, 827.82, -857.98, 70.33, 0, 0, 0, 0, -1, 295.21, 1472.26, 1080.25, 0, 15, 1730, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1631, 4, 'House At Vinewood without swimming Pool', 0, 0, 0, 400000, 0, 1112.64, -742.11, 100.13, 0, 0, 0, 0, -1, 234.22, 1063.89, 1084.21, 0, 6, 1731, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1632, 4, 'apartment at the beach ls', 0, 0, 0, 100000, 0, 168.14, -1768.4, 4.49, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1732, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1633, 4, 'Beach House', 0, 0, 0, 100000, 0, 192.81, -1769.39, 4.33, 0, 0, 0, 0, -1, 261.06, 1284.29, 1080.25, 0, 4, 1733, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1634, 4, 'house at the beach', 0, 0, 0, 100000, 0, 206.88, -1768.88, 4.37, 0, 0, 0, 0, -1, 261.06, 1284.29, 1080.25, 0, 4, 1734, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1635, 4, 'house at the beach', 0, 0, 0, 100000, 0, 280.89, -1767.07, 4.55, 0, 0, 0, 0, -1, 261.06, 1284.29, 1080.25, 0, 4, 1735, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1636, 4, 'house at the beach', 0, 0, 0, 100000, 500, 295.24, -1764.12, 4.87, 0, 0, 0, 0, -1, 261.06, 1284.29, 1080.25, 0, 4, 1736, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1637, 4, 'house at the beach', 0, 0, 0, 100000, 0, 305.37, -1770.22, 4.54, 0, 0, 0, 0, -1, 261.06, 1284.29, 1080.25, 0, 4, 1737, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1638, 4, 'Beach House with Garage', 0, 0, 0, 400000, 0, 315.88, -1769.43, 4.62, 0, 0, 0, 0, -1, 226.3, 1114.37, 1080.99, 0, 5, 1738, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1639, 4, 'apartment at the beach ls', 0, 0, 0, 100000, 0, 902.92, -1815.45, 13.3, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1739, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1640, 4, 'apartment at the beach ls', 0, 0, 0, 100000, 1, 905.04, -1815.69, 13.3, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1740, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1641, 4, 'apartment at the beach ls', 0, 0, 0, 100000, 500, 908.59, -1816.07, 13.3, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1741, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1642, 4, 'apartment at the beach ls', 0, 0, 0, 100000, 0, 910.78, -1816.31, 13.3, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1742, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1643, 4, 'apartment at the beach ls', 0, 0, 0, 100000, 0, 914.56, -1816.73, 13.31, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1743, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1644, 4, 'apartment at the beach ls', 0, 0, 0, 100000, 0, 916.72, -1816.97, 13.31, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1744, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1645, 4, 'apartment at the beach ls', 0, 0, 0, 100000, 0, 920.34, -1817.37, 13.31, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1745, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1646, 4, 'apartment at the beach ls', 0, 0, 0, 100000, 0, 922.53, -1817.62, 13.31, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1746, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1647, 4, 'apartment at the beach ls', 0, 0, 0, 100000, 0, 926.28, -1818.04, 13.32, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1747, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1648, 4, 'apartment at the beach ls', 0, 0, 0, 100000, 0, 928.38, -1818.28, 13.32, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1748, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1649, 4, 'apartment at the beach ls', 0, 0, 0, 100000, 0, 931.92, -1818.69, 13.32, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1749, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1650, 4, 'apartment at the beach ls', 0, 0, 0, 100000, 0, 934.05, -1818.93, 13.32, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1750, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1651, 4, 'apartment at the beach ls', 0, 0, 0, 100000, 0, 961.13, -1823.96, 13.33, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1751, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1652, 4, 'apartment at the beach ls', 0, 0, 0, 100000, 0, 963.25, -1824.51, 13.32, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1752, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1653, 4, 'apartment at the beach ls', 0, 0, 0, 100000, 0, 966.74, -1825.36, 13.32, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1753, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1654, 4, 'apartment at the beach ls', 0, 0, 0, 100000, 0, 968.93, -1825.9, 13.32, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1754, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1655, 4, 'apartment at the beach ls', 0, 0, 0, 100000, 0, 972.5, -1826.77, 13.33, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1755, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1656, 4, 'apartment at the beach ls', 0, 0, 0, 100000, 0, 974.56, -1827.28, 13.33, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1756, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1657, 4, 'apartment at the beach ls', 0, 0, 0, 100000, 0, 978.14, -1828.16, 13.33, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1757, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1658, 4, 'apartment at the beach ls', 0, 0, 0, 100000, 0, 980.19, -1828.67, 13.33, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1758, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1659, 4, 'apartment at the beach ls', 0, 0, 0, 100000, 20, 983.92, -1829.58, 13.33, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1759, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1660, 4, 'apartment at the beach ls', 0, 0, 0, 100000, 1000, 985.97, -1830.08, 13.33, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1760, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1661, 4, 'apartment at the beach ls', 0, 0, 0, 100000, 0, 989.48, -1830.95, 13.34, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1761, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1662, 4, 'apartment at the beach ls', 0, 0, 0, 100000, 0, 991.72, -1831.49, 13.34, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 1762, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1663, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 1, 2581.51, -969.3, 81.36, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 1763, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1664, 4, 'house near the beach', 0, 0, 0, 55000, 0, 655.95, -1635.87, 15.86, 0, 0, 0, 0, -1, 261.06, 1284.29, 1080.25, 0, 4, 1764, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1665, 4, 'house near the beach', 0, 0, 0, 55000, 0, 660.41, -1599.85, 15, 0, 0, 0, 0, -1, 261.06, 1284.29, 1080.25, 0, 4, 1765, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1666, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 0, 2388.42, -1279.65, 25.13, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 1766, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1667, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 0, 2387.85, -1328.54, 25.12, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 1767, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1668, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 0, 2389.73, -1346.29, 25.08, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 1768, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1669, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 1, 2383.53, -1366.2, 24.49, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 1769, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1670, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 5000, 2288.22, -1104.66, 38.59, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 1770, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1671, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 0, 2249.32, -1060.31, 55.97, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 1771, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1672, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 0, 2259.52, -1019, 59.3, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 1772, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1673, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 0, 2218.78, -1031.73, 60.26, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 1773, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1674, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 0, 2208.02, -1026.56, 61.35, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 1774, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1675, 4, 'trailer LS', 0, 0, 0, 2000, 200, 2154.11, -979.9, 63.29, 0, 0, 0, 0, -1, 244.41, 305.03, 999.15, 0, 1, 1775, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1676, 4, 'trailer LS', 0, 0, 0, 2000, 100, 2142.69, -978.15, 61.38, 0, 0, 0, 0, -1, 244.41, 305.03, 999.15, 0, 1, 1776, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1677, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 0, 2139.79, -1008.43, 61.99, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 1777, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1678, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 1000, 2108.87, -1000.77, 60.51, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 1778, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1679, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 0, 2089.52, -996.24, 53.06, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 1779, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1680, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 0, 2073.48, -965.18, 49.39, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 1780, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1681, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 0, 2045.18, -965.92, 44.55, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 1781, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1682, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 800, 2049.21, -987.28, 44.98, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 1782, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1683, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 0, 2044.66, -991.32, 43.23, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 1783, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1684, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 1, 2015.59, -977.56, 36.95, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 1784, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1685, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 100, 2007.36, -984.58, 34.46, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 1785, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1686, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 150, 2000.2, -991.65, 32.13, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 1786, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1687, 4, 'trailer LS', 0, 0, 0, 2000, 200, 2131.94, -974, 59.78, 0, 0, 0, 0, -1, 244.41, 305.03, 999.15, 0, 1, 1787, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1688, 4, 'trailer LS', 0, 0, 0, 2000, 0, 2122.04, -970.34, 58.21, 0, 0, 0, 0, -1, 244.41, 305.03, 999.15, 0, 1, 1788, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1689, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 0, 2051.26, -954.76, 48.03, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 1789, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1690, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 1, 2278.66, -1077.38, 48.24, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 1790, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1691, 4, 'trailer LS', 0, 0, 0, 2000, 0, 2355.77, -1058.81, 54.08, 0, 0, 0, 0, -1, 244.41, 305.03, 999.15, 0, 1, 1791, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1692, 4, 'trailer LS', 0, 0, 0, 2000, 0, 2348.01, -1047.59, 53.85, 0, 0, 0, 0, -1, 244.41, 305.03, 999.15, 0, 1, 1792, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1693, 4, 'trailer LS', 0, 0, 0, 2000, 100, 2350.99, -1039.79, 54.33, 0, 0, 0, 0, -1, 244.41, 305.03, 999.15, 0, 1, 1793, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1694, 4, 'trailer LS', 0, 0, 0, 2000, 0, 2355.53, -1038.58, 54.33, 0, 0, 0, 0, -1, 244.41, 305.03, 999.15, 0, 1, 1794, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1695, 4, 'trailer LS', 0, 0, 0, 2000, 250, 2370.25, -1034.55, 54.41, 0, 0, 0, 0, -1, 244.41, 305.03, 999.15, 0, 1, 1795, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1696, 4, 'trailer LS', 0, 0, 0, 2000, 5000, 2362.67, -1046.43, 54.27, 0, 0, 0, 0, -1, 244.41, 305.03, 999.15, 0, 1, 1796, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1697, 4, 'trailer LS', 0, 0, 0, 2000, 0, 2335.19, -1046.01, 52.55, 0, 0, 0, 0, -1, 244.41, 305.03, 999.15, 0, 1, 1797, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1698, 4, 'trailer LS', 0, 0, 0, 2000, 0, 2325.48, -1060.97, 52.47, 0, 0, 0, 0, -1, 244.41, 305.03, 999.15, 0, 1, 1798, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1699, 4, 'trailer LS', 0, 0, 0, 2000, 0, 2330.22, -1060.9, 52.47, 0, 0, 0, 0, -1, 244.41, 305.03, 999.15, 0, 1, 1799, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1700, 4, 'trailer LS', 0, 0, 0, 2000, 0, 2297.73, -1053.08, 49.93, 0, 0, 0, 0, -1, 244.41, 305.03, 999.15, 0, 1, 1800, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1701, 4, 'trailer LS', 0, 0, 0, 2000, 0, 2284.19, -1046.09, 49.89, 0, 0, 0, 0, -1, 244.41, 305.03, 999.15, 0, 1, 1801, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1702, 4, 'trailer LS', 0, 0, 0, 2000, 15, 2319.77, -1053.31, 52.46, 0, 0, 0, 0, -1, 244.41, 305.03, 999.15, 0, 1, 1802, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1703, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 0, 2462.41, -1011.12, 60.11, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 1803, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1704, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 350, 2457.77, -1054.54, 59.96, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 1804, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1705, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 0, 2491.37, -1012.27, 65.4, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 1805, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1706, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 0, 2479.67, -1064.01, 67, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 1806, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1707, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 0, 2512.8, -1027.16, 70.08, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 1807, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1708, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 0, 2526.09, -1060.67, 69.97, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 1808, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1709, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 0, 2534.48, -1063.48, 69.56, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 1809, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1710, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 0, 2526.9, -1033.52, 69.58, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 1810, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1711, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 0, 2470.59, -1105.32, 44.49, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 1811, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1712, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 1000, 2457.08, -1102.5, 43.87, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 1812, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1713, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 0, 2438.62, -1105.78, 43.08, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 1813, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1714, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 0, 2407.91, -1106.97, 40.29, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 1814, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1715, 4, 'LS Project', 0, 0, 0, 4000, 0, 2751.49, -1962.88, 13.54, 0, 0, 0, 0, -1, 244.41, 305.03, 999.15, 0, 1, 1815, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1716, 4, 'LS Project', 0, 0, 0, 4000, 0, 2787.07, -1952.57, 13.54, 0, 0, 0, 0, -1, 244.41, 305.03, 999.15, 0, 1, 1816, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1717, 4, 'LS Project', 0, 0, 0, 4000, 0, 2751.5, -1936.56, 13.54, 0, 0, 0, 0, -1, 244.41, 305.03, 999.15, 0, 1, 1817, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1718, 4, 'LS Project', 0, 0, 0, 4000, 0, 2787.07, -1926.17, 13.54, 0, 0, 0, 0, -1, 244.41, 305.03, 999.15, 0, 1, 1818, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1719, 4, 'LS Project', 0, 0, 0, 4000, 0, 2736.65, -1926.18, 13.54, 0, 0, 0, 0, -1, 244.41, 305.03, 999.15, 0, 1, 1819, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1720, 4, 'LS Project', 0, 0, 0, 4000, 0, 2736.65, -1952.58, 13.54, 0, 0, 0, 0, -1, 244.41, 305.03, 999.15, 0, 1, 1820, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1721, 4, 'LS Project', 0, 0, 0, 4000, 0, 2801.92, -1936.32, 13.54, 0, 0, 0, 0, -1, 244.41, 305.03, 999.15, 0, 1, 1821, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1722, 4, 'LS Project', 0, 0, 0, 4000, 0, 2801.92, -1962.9, 13.54, 0, 0, 0, 0, -1, 244.41, 305.03, 999.15, 0, 1, 1822, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1723, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 0, 2696.39, -1990.36, 14.22, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 1823, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1724, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 0, 2672.71, -1989.47, 14.32, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 1824, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1725, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 0, 2695.24, -2020.55, 14.02, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 1825, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1726, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 0, 2673.27, -2020.29, 14.17, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 1826, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1727, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 0, 2650.7, -2021.8, 14.18, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 1827, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1728, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 100, 2635.61, -2012.93, 14.14, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 1828, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1729, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 1000, 2637.01, -1991.77, 14.32, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 1829, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1730, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 0, 2652.78, -1989.43, 14, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 1830, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1731, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 0, 2486.36, -2021.55, 14, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 1831, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1732, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 0, 2483.52, -1995.34, 13.83, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 1832, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1733, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 0, 2465.22, -2020.79, 14.12, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 1833, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1734, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 0, 2465.1, -1995.75, 14.02, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 1834, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1736, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 0, 2508.32, -1998.36, 13.9, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 1836, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1737, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 4000, 2507.84, -2021.05, 14.21, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 1837, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1738, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 0, 2522.75, -2019, 14.07, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 1838, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1739, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 0, 2524.44, -1998.39, 14.11, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 1839, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1740, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 0, 1667.53, -2106.94, 14.07, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 1840, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1741, 4, 'house at the beach', 0, 0, 0, 100000, 0, 192.78, -1747.76, 4.3, 0, 0, 0, 0, -1, 261.06, 1284.29, 1080.25, 0, 4, 1841, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1742, 4, 'small house at vinewood', 0, 0, 0, 150000, 2000, 142.5, -1470.27, 25.21, 0, 0, 0, 0, -1, 295.21, 1472.26, 1080.25, 0, 15, 1842, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1743, 4, 'House At Vinewood without swimming pool', 0, 0, 0, 400000, 0, 161.45, -1455.95, 32.84, 0, 0, 0, 0, -1, 234.22, 1063.89, 1084.21, 0, 6, 1843, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1744, 4, 'House Near Vinewood', 0, 0, 0, 150000, 0, 1059.16, -1105.14, 28.05, 0, 0, 0, 0, -1, 447, 1397.09, 1084.3, 0, 2, 1844, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1745, 4, 'House Near Vinewood', 0, 0, 0, 150000, 0, 1103.41, -1092.54, 28.47, 0, 0, 0, 0, -1, 447, 1397.09, 1084.3, 0, 2, 1845, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1746, 4, 'House Near Vinewood', 0, 0, 0, 150000, 0, 1103.4, -1069.59, 31.89, 0, 0, 0, 0, -1, 447, 1397.09, 1084.3, 0, 2, 1846, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1747, 4, 'House Near Vinewood', 0, 0, 0, 150000, 5000, 1142.12, -1092.77, 28.19, 0, 0, 0, 0, -1, 447, 1397.09, 1084.3, 0, 2, 1847, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1748, 4, 'House Near Vinewood', 0, 0, 0, 150000, 0, 1183.47, -1098.93, 28.26, 0, 0, 0, 0, -1, 447, 1397.09, 1084.3, 0, 2, 1848, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1749, 4, 'House Near Vinewood', 0, 0, 0, 150000, 0, 1183.47, -1076.04, 31.68, 0, 0, 0, 0, -1, 447, 1397.09, 1084.3, 0, 2, 1849, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1750, 4, 'House Near Vinewood', 0, 0, 0, 150000, 5000, 1141.81, -1069.99, 31.76, 0, 0, 0, 0, -1, 447, 1397.09, 1084.3, 0, 2, 1850, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1751, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 0, 2582.89, -952.93, 81.39, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 1851, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1752, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 0, 2552.05, -958.43, 82.61, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 1852, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1753, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 0, 2517.86, -965.39, 82.33, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 1853, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1754, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 0, 2499.51, -947, 82.47, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 1854, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1755, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 0, 2492.1, -965.64, 82.54, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 1855, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1756, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 0, 2472.35, -962.04, 80.53, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 1856, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1757, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 0, 2454.18, -964.96, 80.07, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 1857, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1758, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 0, 2459.37, -947.7, 80.08, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 1858, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1759, 4, 'house at the beach', 0, 0, 0, 100000, 500, 992.68, -1817.65, 13.89, 0, 0, 0, 0, -1, 261.06, 1284.29, 1080.25, 0, 4, 1859, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1760, 4, 'house at the beach', 0, 0, 0, 100000, 5000, 980.88, -1814.81, 13.89, 0, 0, 0, 0, -1, 261.06, 1284.29, 1080.25, 0, 4, 1860, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1761, 4, 'house at the beach', 0, 0, 0, 100000, 500, 969.6, -1812.02, 13.88, 0, 0, 0, 0, -1, 261.06, 1284.29, 1080.25, 0, 4, 1861, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1762, 4, 'house at the beach', 0, 0, 0, 100000, 0, 958.07, -1809.17, 13.88, 0, 0, 0, 0, -1, 261.06, 1284.29, 1080.25, 0, 4, 1862, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1763, 4, 'house at the beach', 0, 0, 0, 100000, 1000, 933.65, -1805.2, 13.84, 0, 0, 0, 0, -1, 261.06, 1284.29, 1080.25, 0, 4, 1863, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1764, 4, 'house at the beach', 0, 0, 0, 100000, 900, 921.97, -1803.89, 13.84, 0, 0, 0, 0, -1, 261.06, 1284.29, 1080.25, 0, 4, 1864, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1765, 4, 'house at the beach', 0, 0, 0, 100000, 0, 910.27, -1802.69, 13.8, 0, 0, 0, 0, -1, 261.06, 1284.29, 1080.25, 0, 4, 1865, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1766, 4, 'house at the beach', 0, 0, 0, 100000, 0, 883.24, -1800.39, 13.8, 0, 0, 0, 0, -1, 261.06, 1284.29, 1080.25, 0, 4, 1866, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1767, 4, 'house at the beach', 0, 0, 0, 100000, 0, 866.66, -1798.94, 13.81, 0, 0, 0, 0, -1, 261.06, 1284.29, 1080.25, 0, 4, 1867, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1768, 4, 'Little House at Dillimore', 0, 0, 0, 60000, 0, 795.25, -506.15, 18.01, 0, 0, 0, 0, -1, 2282.9, -1139.99, 1050.89, 0, 11, 1868, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1769, 4, 'Little House at Dillimore', 0, 0, 0, 50000, 0, 818.26, -509.32, 18.01, 0, 0, 0, 0, -1, 261.06, 1284.29, 1080.25, 0, 4, 1869, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1770, 4, 'House at Dillimore', 0, 0, 0, 85000, 0, 768.34, -503.48, 18.01, 0, 0, 0, 0, -1, 327.91, 1477.79, 1084.43, 0, 15, 1870, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1771, 4, 'House at Dillimore', 0, 0, 0, 100000, 0, 743.24, -509.32, 18.01, 0, 0, 0, 0, -1, 327.91, 1477.79, 1084.43, 0, 15, 1871, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1772, 4, 'House at Dillimore', 0, 0, 0, 100000, 150, 745.13, -556.78, 18.01, 0, 0, 0, 0, -1, 327.91, 1477.79, 1084.43, 0, 15, 1872, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1773, 4, 'House at Dillimore', 0, 0, 0, 100000, 0, 766.59, -556.78, 18.01, 0, 0, 0, 0, -1, 327.91, 1477.79, 1084.43, 0, 15, 1873, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1774, 4, 'Little House at Dillimore', 0, 0, 0, 70000, 0, 759.29, -592.03, 18.01, 0, 0, 0, 0, -1, 261.06, 1284.29, 1080.25, 0, 4, 1874, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1775, 4, 'Little House at Dillimore', 0, 0, 0, 70000, 0, 745.67, -591.14, 18.01, 0, 0, 0, 0, -1, 261.06, 1284.29, 1080.25, 0, 4, 1875, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1776, 4, 'Trailer at Blue Berry', 0, 0, 0, 20000, 0, 261.96, -269.98, 1.64, 0, 0, 0, 0, -1, 244.41, 305.03, 999.15, 0, 1, 1876, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1777, 4, 'Trailer at Blue Berry', 0, 0, 0, 20000, 0, 264.51, -288.42, 1.73, 0, 0, 0, 0, -1, 244.41, 305.03, 999.15, 0, 1, 1877, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1778, 4, 'Trailer at Blue Berry', 0, 0, 0, 20000, 0, 260.6, -302.99, 1.92, 0, 0, 0, 0, -1, 244.41, 305.03, 999.15, 0, 1, 1878, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1779, 4, 'Trailer at Blue Berry', 0, 0, 0, 20000, 0, 253.25, -289.94, 1.7, 0, 0, 0, 0, -1, 244.41, 305.03, 999.15, 0, 1, 1879, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1780, 4, 'Trailer at Blue Berry', 0, 0, 0, 20000, 0, 255.91, -278.5, 1.66, 0, 0, 0, 0, -1, 244.41, 305.03, 999.15, 0, 1, 1880, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1781, 4, 'Trailer at Blue Berry', 0, 0, 0, 20000, 0, 238.92, -286.29, 1.63, 0, 0, 0, 0, -1, 244.41, 305.03, 999.15, 0, 1, 1881, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1782, 4, 'Trailer at Blue Berry', 0, 0, 0, 20000, 0, 235.13, -309.46, 1.71, 0, 0, 0, 0, -1, 244.41, 305.03, 999.15, 0, 1, 1882, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1783, 4, 'Trailer at Blue Berry', 0, 0, 0, 20000, 0, 226.55, -302.81, 1.93, 0, 0, 0, 0, -1, 244.41, 305.03, 999.15, 0, 1, 1883, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1784, 4, 'Trailer at Blue Berry', 0, 0, 0, 20000, 0, 264.51, -283.67, 1.73, 0, 0, 0, 0, -1, 244.41, 305.03, 999.15, 0, 1, 1884, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1785, 4, 'Trailer at Blue Berry', 0, 0, 0, 20000, 0, 253.53, -274.55, 1.66, 0, 0, 0, 0, -1, 244.41, 305.03, 999.15, 0, 1, 1885, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1786, 4, 'Trailer at Blue Berry', 0, 0, 0, 20000, 0, 242.01, -298.6, 1.69, 0, 0, 0, 0, -1, 244.41, 305.03, 999.15, 0, 1, 1886, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1787, 4, 'Apartment at Blue Berry', 0, 0, 0, 80000, 0, 178.28, -120.23, 1.55, 0, 0, 0, 0, -1, 261.06, 1284.29, 1080.25, 0, 4, 1887, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1788, 4, 'Apartment at Blue Berry', 0, 0, 0, 80000, 0, 189.31, -120.23, 1.55, 0, 0, 0, 0, -1, 261.06, 1284.29, 1080.25, 0, 4, 1888, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1789, 4, 'Apartment at Blue Berry', 0, 0, 0, 80000, 0, 166.3, -120.23, 1.55, 0, 0, 0, 0, -1, 261.06, 1284.29, 1080.25, 0, 4, 1889, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1790, 4, 'Apartment at Blue Berry', 0, 0, 0, 80000, 0, 201.46, -94.97, 1.55, 0, 0, 0, 0, -1, 261.06, 1284.29, 1080.25, 0, 4, 1890, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1791, 4, 'Apartment at Blue Berry', 0, 0, 0, 80000, 0, 160.63, -102.57, 4.9, 0, 0, 0, 0, -1, 261.06, 1284.29, 1080.25, 0, 4, 1891, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1792, 4, 'Apartment at Blue Berry', 0, 0, 0, 80000, 0, 160.63, -112.59, 4.9, 0, 0, 0, 0, -1, 261.06, 1284.29, 1080.25, 0, 4, 1892, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1793, 4, 'Apartment at Blue Berry', 0, 0, 0, 80000, 0, 166.19, -118.23, 4.9, 0, 0, 0, 0, -1, 261.06, 1284.29, 1080.25, 0, 4, 1893, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1794, 4, 'Apartment at Blue Berry', 0, 0, 0, 80000, 0, 178.26, -118.23, 4.9, 0, 0, 0, 0, -1, 261.06, 1284.29, 1080.25, 0, 4, 1894, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1795, 4, 'Apartment at Blue Berry', 0, 0, 0, 80000, 0, 166.25, -96.97, 4.9, 0, 0, 0, 0, -1, 261.06, 1284.29, 1080.25, 0, 4, 1895, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1796, 4, 'Apartment at Blue Berry', 0, 0, 0, 80000, 0, 178.37, -96.97, 4.9, 0, 0, 0, 0, -1, 261.06, 1284.29, 1080.25, 0, 4, 1896, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1797, 4, 'Apartment at Blue Berry', 0, 0, 0, 80000, 0, 166.39, -94.97, 1.55, 0, 0, 0, 0, -1, 261.06, 1284.29, 1080.25, 0, 4, 1897, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1798, 4, 'Apartment at Blue Berry', 0, 0, 0, 80000, 0, 207.07, -112.39, 4.9, 0, 0, 0, 0, -1, 261.06, 1284.29, 1080.25, 0, 4, 1898, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1799, 4, 'Apartment at Blue Berry', 0, 0, 0, 80000, 0, 201.41, -96.97, 4.9, 0, 0, 0, 0, -1, 261.06, 1284.29, 1080.25, 0, 4, 1899, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1800, 4, 'Apartment at Blue Berry', 0, 0, 0, 80000, 0, 189.41, -96.97, 4.9, 0, 0, 0, 0, -1, 261.06, 1284.29, 1080.25, 0, 4, 1900, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1801, 4, 'Apartment at Blue Berry', 0, 0, 0, 80000, 0, 201.37, -118.23, 4.9, 0, 0, 0, 0, -1, 261.06, 1284.29, 1080.25, 0, 4, 1901, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1802, 4, 'Apartment at Blue Berry', 0, 0, 0, 80000, 0, 201.45, -120.23, 1.55, 0, 0, 0, 0, -1, 261.06, 1284.29, 1080.25, 0, 4, 1902, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1803, 4, 'Apartment at Blue Berry', 0, 0, 0, 80000, 0, 158.64, -112.62, 1.56, 0, 0, 0, 0, -1, 261.06, 1284.29, 1080.25, 0, 4, 1903, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1804, 4, 'Apartment at Blue Berry', 0, 0, 0, 80000, 0, 209.08, -112.6, 1.55, 0, 0, 0, 0, -1, 261.06, 1284.29, 1080.25, 0, 4, 1904, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1805, 4, 'House at Blue Berry', 0, 0, 0, 110000, 0, 252.88, -92.42, 3.54, 0, 0, 0, 0, -1, 2282.9, -1139.99, 1050.89, 0, 11, 1905, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1806, 4, 'House at Blue Berry', 0, 0, 0, 110000, 500, 252.89, -121.31, 3.54, 0, 0, 0, 0, -1, 2282.9, -1139.99, 1050.89, 0, 11, 1906, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1807, 4, 'House at Blue Berry', 0, 0, 0, 130000, 0, 267.69, -54.54, 2.78, 0, 0, 0, 0, -1, 2282.9, -1139.99, 1050.89, 0, 11, 1907, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1808, 4, 'House at Blue Berry', 0, 0, 0, 100000, 0, 295.07, -54.55, 2.78, 0, 0, 0, 0, -1, 2282.9, -1139.99, 1050.89, 0, 11, 1908, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1809, 4, 'House at Blue Berry', 0, 0, 0, 100000, 0, 312.72, -92.34, 3.54, 0, 0, 0, 0, -1, 2282.9, -1139.99, 1050.89, 0, 11, 1909, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1810, 4, 'House at Blue Berry', 0, 0, 0, 100000, 0, 312.72, -121.25, 3.54, 0, 0, 0, 0, -1, 2282.9, -1139.99, 1050.89, 0, 11, 1910, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1811, 4, 'Small House near Blue Berry', 0, 0, 0, 40000, 0, 342.63, 62.72, 3.86, 0, 0, 0, 0, -1, 260.77, 1237.26, 1084.25, 0, 9, 1911, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1812, 4, 'Small House near Blue Berry', 0, 0, 0, 60000, 0, 317.74, 54.61, 3.38, 0, 0, 0, 0, -1, 260.77, 1237.26, 1084.25, 0, 9, 1912, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1813, 4, 'Small House near Blue Berry', 0, 0, 0, 60000, 0, 309.11, 44.42, 3.09, 0, 0, 0, 0, -1, 260.77, 1237.26, 1084.25, 0, 9, 1913, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1814, 4, 'Small House near Blue Berry', 0, 0, 0, 60000, 0, 286.06, 41.15, 2.55, 0, 0, 0, 0, -1, 260.77, 1237.26, 1084.25, 0, 9, 1914, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1815, 4, 'Small House near Blue Berry', 0, 0, 0, 60000, 0, 316.56, 18.27, 4.52, 0, 0, 0, 0, -1, 260.77, 1237.26, 1084.25, 0, 9, 1915, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1816, 4, 'Small House near Blue Berry', 0, 0, 0, 60000, 0, 340.2, 33.45, 6.41, 0, 0, 0, 0, -1, 260.77, 1237.26, 1084.25, 0, 9, 1916, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1817, 4, 'House At Palomino Creek', 0, 0, 0, 60000, 0, 2323.84, 162.27, 28.44, 0, 0, 0, 0, -1, 2282.9, -1139.99, 1050.89, 0, 11, 1917, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1818, 4, 'House At Palomino Creek', 0, 0, 0, 100000, 0, 2364, 187.28, 28.44, 0, 0, 0, 0, -1, 327.91, 1477.79, 1084.43, 0, 15, 1918, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1819, 4, 'House At Palomino Creek', 0, 0, 0, 100000, 0, 2364, 166.09, 28.44, 0, 0, 0, 0, -1, 327.91, 1477.79, 1084.43, 0, 15, 1919, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1820, 4, 'House At Palomino Creek', 0, 0, 0, 100000, 1, 2323.84, 191.22, 28.44, 0, 0, 0, 0, -1, 327.91, 1477.79, 1084.43, 0, 15, 1920, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1821, 4, 'House At Palomino Creek', 0, 0, 0, 100000, 1000, 2323.84, 136.42, 28.44, 0, 0, 0, 0, -1, 327.91, 1477.79, 1084.43, 0, 15, 1921, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1822, 4, 'House At Palomino Creek', 0, 0, 0, 60000, 1, 2323.84, 116.14, 28.44, 0, 0, 0, 0, -1, 261.06, 1284.29, 1080.25, 0, 4, 1922, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1823, 4, 'House At Palomino Creek', 0, 0, 0, 60000, 0, 2364, 116.13, 28.44, 0, 0, 0, 0, -1, 261.06, 1284.29, 1080.25, 0, 4, 1923, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1824, 4, 'House At Palomino Creek', 0, 0, 0, 60000, 0, 2373.84, 71.08, 28.44, 0, 0, 0, 0, -1, 261.06, 1284.29, 1080.25, 0, 4, 1924, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1825, 4, 'House At Palomino Creek', 0, 0, 0, 60000, 0, 2373.84, 42.28, 28.44, 0, 0, 0, 0, -1, 261.06, 1284.29, 1080.25, 0, 4, 1925, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1826, 4, 'House At Palomino Creek', 0, 0, 0, 60000, 0, 2373.84, 21.98, 28.44, 0, 0, 0, 0, -1, 261.06, 1284.29, 1080.25, 0, 4, 1926, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1827, 4, 'House At Palomino Creek', 0, 0, 0, 60000, 0, 2373.84, -8.65, 28.44, 0, 0, 0, 0, -1, 261.06, 1284.29, 1080.25, 0, 4, 1927, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1828, 4, 'House At Palomino Creek', 0, 0, 0, 60000, 0, 2367.38, -49.13, 28.15, 0, 0, 0, 0, -1, 261.06, 1284.29, 1080.25, 0, 4, 1928, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1829, 4, 'House At Palomino Creek', 0, 0, 0, 100000, 0, 2392.29, -54.96, 28.15, 0, 0, 0, 0, -1, 327.91, 1477.79, 1084.43, 0, 15, 1929, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1830, 4, 'House At Palomino Creek', 0, 0, 0, 100000, 0, 2415.57, -5.7, 27.68, 0, 0, 0, 0, -1, 327.91, 1477.79, 1084.43, 0, 15, 1930, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1831, 4, 'House At Palomino Creek', 0, 0, 0, 60000, 0, 2438.78, -54.96, 28.15, 0, 0, 0, 0, -1, 260.77, 1237.26, 1084.25, 0, 9, 1931, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1832, 4, 'House At Palomino Creek', 0, 0, 0, 60000, 0, 2442.86, -4.04, 27.68, 0, 0, 0, 0, -1, 260.77, 1237.26, 1084.25, 0, 9, 1932, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1833, 4, 'House At Palomino Creek', 0, 0, 0, 60000, 0, 2488.38, 11.76, 28.44, 0, 0, 0, 0, -1, 260.77, 1237.26, 1084.25, 0, 9, 1933, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1834, 4, 'House At Palomino Creek', 0, 0, 0, 60000, 0, 2484.49, -28.39, 28.44, 0, 0, 0, 0, -1, 260.77, 1237.26, 1084.25, 0, 9, 1934, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1835, 4, 'House At Palomino Creek', 0, 0, 0, 85000, 1000, 2513.28, -28.4, 28.44, 0, 0, 0, 0, -1, 260.77, 1237.26, 1084.25, 0, 9, 1935, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1836, 4, 'House At Palomino Creek', 0, 0, 0, 85000, 1000, 2417.01, 17.88, 27.68, 0, 0, 0, 0, -1, 260.77, 1237.26, 1084.25, 0, 9, 1936, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1837, 4, 'House At Palomino Creek', 0, 0, 0, 150000, 0, 2549.23, 25.14, 27.67, 0, 0, 0, 0, -1, 327.91, 1477.79, 1084.43, 0, 15, 1937, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1838, 4, 'House At Palomino Creek', 0, 0, 0, 150000, 0, 2551.22, -5.51, 27.67, 0, 0, 0, 0, -1, 327.91, 1477.79, 1084.43, 0, 15, 1938, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1839, 4, 'House At Palomino Creek', 0, 0, 0, 110000, 0, 2551.22, 57.14, 27.67, 0, 0, 0, 0, -1, 327.91, 1477.79, 1084.43, 0, 15, 1939, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1840, 4, 'House At Palomino Creek', 0, 0, 0, 110000, 0, 2557.01, 87.89, 27.67, 0, 0, 0, 0, -1, 327.91, 1477.79, 1084.43, 0, 15, 1940, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1841, 4, 'House At Palomino Creek', 0, 0, 0, 110000, 5000, 2536.24, 128.99, 27.68, 0, 0, 0, 0, -1, 327.91, 1477.79, 1084.43, 0, 15, 1941, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1842, 4, 'House At Palomino Creek', 0, 0, 0, 110000, 0, 2518.44, 128.99, 27.68, 0, 0, 0, 0, -1, 327.91, 1477.79, 1084.43, 0, 15, 1942, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1843, 4, 'House At Palomino Creek', 0, 0, 0, 90000, 0, 2514.05, 94.39, 27.68, 0, 0, 0, 0, -1, 260.77, 1237.26, 1084.25, 0, 9, 1943, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1844, 4, 'House At Palomino Creek', 0, 0, 0, 150000, 0, 2480.62, 126.99, 27.67, 0, 0, 0, 0, -1, 327.91, 1477.79, 1084.43, 0, 15, 1944, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1845, 4, 'House At Palomino Creek', 0, 0, 0, 150000, 500, 2462.76, 134.78, 27.68, 0, 0, 0, 0, -1, 327.91, 1477.79, 1084.43, 0, 15, 1945, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1846, 4, 'House At Palomino Creek', 0, 0, 0, 150000, 0, 2443.84, 92.26, 28.44, 0, 0, 0, 0, -1, 327.91, 1477.79, 1084.43, 0, 15, 1946, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1847, 4, 'House At Palomino Creek', 0, 0, 0, 80000, 5000, 2481.22, 64.37, 27.68, 0, 0, 0, 0, -1, 260.77, 1237.26, 1084.25, 0, 9, 1947, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1848, 4, 'House At Palomino Creek', 0, 0, 0, 70000, 0, 2479.34, 94.39, 27.68, 0, 0, 0, 0, -1, 260.77, 1237.26, 1084.25, 0, 9, 1948, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1849, 4, 'House At Palomino Creek', 0, 0, 0, 125000, 0, 2439.56, 24.5, 27.68, 0, 0, 0, 0, -1, 327.91, 1477.79, 1084.43, 0, 15, 1949, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1850, 4, 'House At Palomino Creek', 0, 0, 0, 90000, 1, 2448.42, -11.02, 27.68, 0, 0, 0, 0, -1, 260.77, 1237.26, 1084.25, 0, 9, 1950, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1851, 4, 'House At Palomino Creek', 0, 0, 0, 250000, 0, 2415.44, -52.28, 28.15, 0, 0, 0, 0, -1, 261.06, 1284.29, 1080.25, 0, 4, 1951, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1852, 4, 'House At Palomino Creek', 0, 0, 0, 60000, 0, 2398.34, 111.76, 28.44, 0, 0, 0, 0, -1, 261.06, 1284.29, 1080.25, 0, 4, 1952, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1853, 4, 'House At Palomino Creek', 0, 0, 0, 60000, 0, 2269.5, 111.76, 28.44, 0, 0, 0, 0, -1, 261.06, 1284.29, 1080.25, 0, 4, 1953, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1854, 4, 'House At Palomino Creek', 0, 0, 0, 60000, 0, 2249.3, 111.76, 28.44, 0, 0, 0, 0, -1, 261.06, 1284.29, 1080.25, 0, 4, 1954, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1855, 4, 'House At Palomino Creek', 0, 0, 0, 95000, 0, 2203.84, 106.15, 28.44, 0, 0, 0, 0, -1, 260.77, 1237.26, 1084.25, 0, 9, 1955, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1856, 4, 'House At Palomino Creek', 0, 0, 0, 120000, 0, 2203.84, 62.28, 28.44, 0, 0, 0, 0, -1, 327.91, 1477.79, 1084.43, 0, 15, 1956, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1857, 4, 'House At Palomino Creek', 0, 0, 0, 120000, 0, 2270.49, -7.5, 28.15, 0, 0, 0, 0, -1, 327.91, 1477.79, 1084.43, 0, 15, 1957, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1858, 4, 'House At Palomino Creek', 0, 0, 0, 190000, 0, 2245.52, -1.66, 28.15, 0, 0, 0, 0, -1, 327.91, 1477.79, 1084.43, 0, 15, 1958, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1859, 4, 'House At Palomino Creek', 0, 0, 0, 250000, 0, 2199.95, -37.35, 28.15, 0, 0, 0, 0, -1, 327.91, 1477.79, 1084.43, 0, 15, 1959, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1860, 4, 'House At Palomino Creek', 0, 0, 0, 220000, 0, 2197.27, -60.67, 28.15, 0, 0, 0, 0, -1, 327.91, 1477.79, 1084.43, 0, 15, 1960, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1861, 4, 'House At Palomino Creek', 0, 0, 0, 250000, 0, 2203.1, -89.22, 28.15, 0, 0, 0, 0, -1, 327.91, 1477.79, 1084.43, 0, 15, 1961, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1862, 4, 'House At Palomino Creek', 0, 0, 0, 220000, 0, 2245.53, -122.29, 28.15, 0, 0, 0, 0, -1, 327.91, 1477.79, 1084.43, 0, 15, 1962, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1863, 4, 'House At Palomino Creek', 0, 0, 0, 220000, 0, 2272.45, -119.14, 28.15, 0, 0, 0, 0, -1, 327.91, 1477.79, 1084.43, 0, 15, 1963, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1864, 4, 'House At Palomino Creek', 0, 0, 0, 110000, 0, 2293.74, -124.96, 28.15, 0, 0, 0, 0, -1, 260.77, 1237.26, 1084.25, 0, 9, 1964, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1865, 4, 'House At Palomino Creek', 0, 0, 0, 110000, 0, 2322.25, -124.96, 28.15, 0, 0, 0, 0, -1, 260.77, 1237.26, 1084.25, 0, 9, 1965, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1866, 4, 'House At Palomino Creek', 0, 0, 0, 110000, 0, 2285.84, 161.77, 28.44, 0, 0, 0, 0, -1, 260.77, 1237.26, 1084.25, 0, 9, 1966, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1867, 4, 'House At Palomino Creek', 0, 0, 0, 110000, 0, 2266.49, 168.34, 28.15, 0, 0, 0, 0, -1, 260.77, 1237.26, 1084.25, 0, 9, 1967, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1868, 4, 'House At Palomino Creek', 0, 0, 0, 110000, 0, 2236.53, 168.3, 28.15, 0, 0, 0, 0, -1, 260.77, 1237.26, 1084.25, 0, 9, 1968, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1869, 4, 'House At Palomino Creek', 0, 0, 0, 110000, 0, 2413.54, 61.76, 28.44, 0, 0, 0, 0, -1, 260.77, 1237.26, 1084.25, 0, 9, 1969, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1870, 4, 'House At Palomino Creek', 0, 0, 0, 120000, 0, 2443.41, 61.76, 28.44, 0, 0, 0, 0, -1, 260.77, 1237.26, 1084.25, 0, 9, 1970, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1871, 4, 'House At Palomino Creek', 0, 0, 0, 90000, 1, 2509.5, 11.76, 28.44, 0, 0, 0, 0, -1, 260.77, 1237.26, 1084.25, 0, 9, 1971, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1872, 4, 'House At Palomino Creek', 0, 0, 0, 125000, 0, 2511.69, 57.22, 27.68, 0, 0, 0, 0, -1, 2282.9, -1139.99, 1050.89, 0, 11, 1972, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1873, 4, 'Trailer at Montgomery', 0, 0, 0, 40000, 0, 1283.31, 158.37, 20.79, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 1973, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1874, 4, 'Trailer at Montgomery', 0, 0, 0, 40000, 0, 1295.41, 174.55, 20.91, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 1974, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1875, 4, 'Trailer at Montgomery', 0, 0, 0, 40000, 5000, 1294.51, 157.65, 20.58, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 1975, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1876, 4, 'Trailer at Montgomery', 0, 0, 0, 30000, 0, 1299.14, 140.34, 20.54, 0, 0, 0, 0, -1, 244.41, 305.03, 999.15, 0, 1, 1976, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1877, 4, 'Trailer at Montgomery', 0, 0, 0, 40000, 0, 1303.61, 186.1, 20.54, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 1977, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1878, 4, 'Trailer at Montgomery', 0, 0, 0, 40000, 0, 1300.44, 193.27, 20.52, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 1978, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1879, 4, 'Trailer at Montgomery', 0, 0, 0, 40000, 0, 1315.63, 180.16, 20.55, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 1979, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1880, 4, 'Trailer at Montgomery', 0, 0, 0, 40000, 0, 1311.76, 169.57, 20.63, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 1980, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1881, 4, 'Trailer at Montgomery', 0, 0, 0, 40000, 0, 1307.29, 153.32, 20.49, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 1981, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1882, 4, 'House at Montgomery', 0, 0, 0, 60000, 0, 1409.27, 346.89, 19.25, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 1982, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1883, 4, 'House at Montgomery', 0, 0, 0, 60000, 0, 1403.22, 333.85, 18.91, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 1983, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1884, 4, 'House at Montgomery', 0, 0, 0, 60000, 0, 1415.88, 324.62, 18.84, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 1984, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1885, 4, 'House at Montgomery', 0, 0, 0, 60000, 0, 1428.64, 356.43, 18.88, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 1985, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1886, 4, 'House at Montgomery', 0, 0, 0, 60000, 0, 1413.14, 363.12, 19.2, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 1986, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1887, 4, 'House at Montgomery', 0, 0, 0, 60000, 0, 1419.53, 389.47, 19.33, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 1987, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1888, 4, 'House at Montgomery', 0, 0, 0, 60000, 0, 1475.32, 372.75, 19.66, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 1988, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1889, 4, 'House at Montgomery', 0, 0, 0, 60000, 0, 1465.74, 364.2, 19.26, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 1989, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1890, 4, 'House at Montgomery', 0, 0, 0, 60000, 0, 1469.66, 351.45, 18.92, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 1990, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1891, 4, 'House at Montgomery', 0, 0, 0, 60000, 0, 1451.58, 375.79, 19.4, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 1991, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1892, 4, 'House at Montgomery', 0, 0, 0, 60000, 0, 1447.45, 361.74, 18.91, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 1992, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1893, 4, 'House at Montgomery', 0, 0, 0, 60000, 0, 1461.13, 342.47, 18.95, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 1993, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1894, 4, 'House at Montgomery', 0, 0, 0, 60000, 0, 1434.89, 334.77, 18.95, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 1994, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1895, 4, 'House at Montgomery', 0, 0, 0, 60000, 0, 1488.61, 360.9, 19.41, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 1995, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1896, 4, 'House near Blueberry', 0, 0, 0, 60000, 0, 723.71, 269.67, 22.45, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 1996, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1897, 4, 'House near Blueberry', 0, 0, 0, 60000, 0, 705.47, 292.1, 20.42, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 1997, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1898, 4, 'House near Blueberry', 0, 0, 0, 60000, 0, 719.07, 300.58, 20.38, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 1998, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1899, 4, 'House near Blueberry', 0, 0, 0, 60000, 0, 746.4, 305, 20.23, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 1999, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1900, 4, 'House near Blueberry', 0, 0, 0, 60000, 0, 747.13, 278.17, 27.22, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 2000, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1901, 4, 'House near Blueberry', 0, 0, 0, 60000, 0, 748.16, 257.11, 27.09, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 2001, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1902, 4, 'Trailer near Blueberry', 0, 0, 0, 15000, 1, 748.43, 350.9, 20.59, 0, 0, 0, 0, -1, 244.41, 305.03, 999.15, 0, 1, 2002, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1903, 4, 'Trailer near Blueberry', 0, 0, 0, 15000, 0, 808.07, 372.29, 19.45, 0, 0, 0, 0, -1, 244.41, 305.03, 999.15, 0, 1, 2003, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1904, 4, 'Trailer near Blueberry', 0, 0, 0, 15000, 500, 783.17, 377.56, 21.3, 0, 0, 0, 0, -1, 244.41, 305.03, 999.15, 0, 1, 2004, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1905, 4, 'Trailer near Blueberry', 0, 0, 0, 15000, 5000, 751.72, 375.22, 23.37, 0, 0, 0, 0, -1, 244.41, 305.03, 999.15, 0, 1, 2005, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1906, 4, 'House near Blueberry', 0, 0, 0, 60000, 0, 783.88, 352.59, 19.59, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 2006, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1907, 4, 'House near Blueberry', 0, 0, 0, 60000, 0, 805.33, 358.37, 19.76, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 2007, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1908, 4, 'House near Blueberry', 0, 0, 0, 60000, 0, 758.92, 375.02, 23.39, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 2008, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1909, 4, 'House near Blueberry', 0, 0, 0, 60000, 0, 772.92, 348.27, 20.15, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 2009, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1910, 4, 'Farm', 0, 0, 0, 75000, 0, -1061.35, -1205.56, 129.76, 0, 0, 0, 0, -1, 2317.82, -1024.75, 1050.21, 0, 9, 2010, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1911, 4, 'Shack', 0, 0, 0, 75000, 0, 1566.6, 23.26, 24.16, 0, 0, 0, 0, -1, 422.57, 2536.12, 10, 0, 10, 2011, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1912, 4, 'Ranch', 0, 0, 0, 25000, 0, 870.4, -24.92, 63.99, 0, 0, 0, 0, -1, 422.29, 2536.68, 10, 0, 10, 2012, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1913, 4, 'Shack', 0, 0, 0, 1000000, 0, -1051.73, 1549.97, 33.44, 0, 0, 0, 0, -1, 422.29, 2536.68, 10, 0, 10, 2013, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1914, 1, 'Apartments', 0, 0, 0, 0, 5000, 1108.48, -606.32, 16.53, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2014, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1915, 1, 'Apartments', 0, 0, 0, 0, 5000, 1098.4, -606.33, 16.53, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2015, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1916, 1, 'Apartments', 0, 0, 0, 0, 5000, 1088.51, -606.33, 16.53, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2016, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1917, 1, 'Apartments', 0, 0, 0, 0, 5000, 1078.4, -606.33, 16.53, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2017, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1918, 1, 'Apartments', 0, 0, 0, 0, 5000, 1068.39, -606.33, 16.53, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2018, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1919, 1, 'Apartments', 0, 0, 0, 0, 5000, 1113.51, -556.32, 17.19, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2019, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1920, 1, 'Apartments', 0, 0, 0, 0, 5000, 1113.51, -546.2, 18.19, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2020, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1921, 1, 'Apartments', 0, 0, 0, 0, 5000, 1113.51, -536.26, 19.18, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2021, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1922, 1, 'Apartments', 0, 0, 0, 0, 5000, 1108.68, -516.08, 20.73, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2022, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1923, 1, 'Apartments', 0, 0, 0, 0, 5000, 1098.55, -516.09, 19.74, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2023, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1924, 1, 'Apartments', 0, 0, 0, 0, 5000, 1088.67, -516.08, 18.74, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2024, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1925, 1, 'Apartments', 0, 0, 0, 0, 5000, 1078.69, -516.09, 17.74, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2025, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1926, 1, 'Apartments', 0, 0, 0, 0, 5000, 1068.6, -516.09, 16.74, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2026, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1927, 1, 'Apartments', 0, 0, 0, 0, 5000, 1113.45, -481.08, 21.58, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2027, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1928, 1, 'Apartments', 0, 0, 0, 0, 5000, 1113.45, -466.16, 21.56, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2028, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1929, 1, 'Apartments', 0, 0, 0, 0, 5000, 1113.45, -461.01, 21.56, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2029, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1930, 1, 'Apartments', 0, 0, 0, 0, 5000, 1113.45, -446.14, 21.56, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2030, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1931, 1, 'Apartments', 0, 0, 0, 0, 5000, 1113.45, -441.12, 21.57, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2031, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1932, 1, 'Apartments', 0, 0, 0, 0, 5000, 1140.85, -485.21, 20.48, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2032, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1933, 1, 'Apartments', 0, 0, 0, 0, 5000, 1150.99, -485.21, 21.49, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2033, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1934, 1, 'Apartments', 0, 0, 0, 0, 5000, 1160.85, -485.21, 22.48, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2034, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1935, 1, 'Apartments', 0, 0, 0, 0, 5000, 1170.93, -485.21, 23.49, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2035, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1936, 1, 'Apartments', 0, 0, 0, 0, 5000, 1181.01, -485.21, 24.5, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2036, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1937, 1, 'Apartments', 0, 0, 0, 0, 5000, 1207.81, -556.04, 22.27, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2037, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1938, 1, 'Apartments', 0, 0, 0, 0, 5000, 1207.81, -546.03, 23.27, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2038, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1939, 1, 'Apartments', 0, 0, 0, 0, 5000, 1207.8, -536.01, 24.25, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2039, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1940, 1, 'Apartments', 0, 0, 0, 0, 5000, 1208.62, -515.88, 26.84, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2040, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1941, 1, 'Apartments', 0, 0, 0, 0, 5000, 1218.7, -515.88, 27.84, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2041, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1942, 1, 'Apartments', 0, 0, 0, 0, 5000, 1228.62, -515.88, 28.84, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2042, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1943, 1, 'Apartments', 0, 0, 0, 0, 5000, 1238.57, -515.88, 29.83, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2043, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1944, 1, 'Apartments', 0, 0, 0, 0, 5000, 1248.61, -515.88, 30.82, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2044, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1945, 1, 'Apartments', 0, 0, 0, 0, 5000, 1210.81, -485.21, 25.52, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2045, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1946, 1, 'Apartments', 0, 0, 0, 0, 5000, 1220.87, -485.21, 26.58, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2046, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1947, 1, 'Apartments', 0, 0, 0, 0, 5000, 1230.72, -485.21, 27.57, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2047, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1948, 1, 'Apartments', 0, 0, 0, 0, 5000, 1240.87, -485.21, 28.58, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2048, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1949, 1, 'Apartments', 0, 0, 0, 0, 5000, 1250.85, -485.21, 29.58, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2049, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1950, 1, 'Apartments', 0, 0, 0, 0, 5000, 1260.8, -484.17, 31.06, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2050, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1951, 1, 'Apartments', 0, 0, 0, 0, 5000, 1270.66, -484.16, 33, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2051, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1952, 1, 'Apartments', 0, 0, 0, 0, 5000, 1280.93, -484.16, 35.03, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2052, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1953, 1, 'Apartments', 0, 0, 0, 0, 5000, 1290.9, -484.17, 36.99, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2053, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1954, 1, 'Apartments', 0, 0, 0, 0, 5000, 1300.93, -484.16, 38.97, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2054, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1955, 1, 'Apartments', 0, 0, 0, 0, 5000, 1388.03, -436.17, 51.43, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2055, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1956, 1, 'Apartments', 0, 0, 0, 0, 5000, 1388.03, -426.17, 51.43, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2056, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1957, 1, 'Apartments', 0, 0, 0, 0, 5000, 1388.03, -416.24, 51.43, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2057, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1958, 1, 'Apartments', 0, 0, 0, 0, 5000, 1388.09, -408.74, 51.58, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2058, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1959, 1, 'Apartments', 0, 0, 0, 0, 5000, 1388.09, -398.62, 51.58, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2059, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1960, 1, 'Apartments', 0, 0, 0, 0, 5000, 1388.01, -386.14, 51.17, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2060, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1961, 1, 'Apartments', 0, 0, 0, 0, 5000, 1388.02, -376.26, 51.17, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2061, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1962, 1, 'Apartments', 0, 0, 0, 0, 5000, 1388.02, -366.29, 51.17, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2062, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1963, 1, 'Apartments', 0, 0, 0, 0, 5000, 1388.1, -358.71, 51.61, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2063, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1964, 1, 'Apartments', 0, 0, 0, 0, 5000, 1388.03, -346.21, 51.2, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2064, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1965, 1, 'Apartments', 0, 0, 0, 0, 5000, 1388.03, -336.23, 51.2, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2065, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1966, 1, 'Apartments', 0, 0, 0, 0, 5000, 1388.03, -326.23, 51.2, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2066, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1967, 1, 'Apartments', 0, 0, 0, 0, 5000, 1388.11, -318.79, 51.55, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2067, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1968, 1, 'Apartments', 0, 0, 0, 0, 5000, 1388.11, -308.72, 51.55, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2068, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1969, 1, 'Apartments', 0, 0, 0, 0, 5000, 1388.1, -298.72, 51.55, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2069, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1970, 1, 'Apartments', 0, 0, 0, 0, 5000, 1347.55, -293.39, 48.7, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2070, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1971, 1, 'Apartments', 0, 0, 0, 0, 5000, 1337.53, -293.39, 46.64, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2071, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1972, 1, 'Apartments', 0, 0, 0, 0, 5000, 1327.53, -293.39, 44.59, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2072, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1973, 1, 'Apartments', 0, 0, 0, 0, 5000, 1317.63, -293.39, 42.56, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2073, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1974, 1, 'Apartments', 0, 0, 0, 0, 5000, 1351.08, -274.15, 49.43, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2074, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1975, 1, 'Apartments', 0, 0, 0, 0, 5000, 1340.99, -274.15, 47.36, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2075, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1976, 1, 'Apartments', 0, 0, 0, 0, 5000, 1330.87, -274.16, 45.28, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2076, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1977, 1, 'Apartments', 0, 0, 0, 0, 5000, 1320.77, -274.16, 43.2, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2077, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1978, 1, 'Apartments', 0, 0, 0, 0, 5000, 1310.89, -274.16, 41.17, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2078, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1979, 1, 'Apartments', 0, 0, 0, 0, 5000, 1300.94, -274.17, 39.16, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2079, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1980, 1, 'Apartments', 0, 0, 0, 0, 5000, 1290.84, -274.17, 37.14, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2080, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1981, 1, 'Apartments', 0, 0, 0, 0, 5000, 1280.85, -274.18, 35.14, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2081, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1982, 1, 'Apartments', 0, 0, 0, 0, 5000, 1270.73, -274.17, 33.12, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2082, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1983, 1, 'Apartments', 0, 0, 0, 0, 5000, 1260.86, -274.19, 31.14, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2083, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1984, 1, 'Apartments', 0, 0, 0, 0, 5000, 1250.9, -274.2, 29.64, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2084, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1985, 1, 'Apartments', 0, 0, 0, 0, 5000, 1240.84, -274.2, 28.63, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2085, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1986, 1, 'Apartments', 0, 0, 0, 0, 5000, 1230.75, -274.2, 27.62, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2086, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1987, 1, 'Apartments', 0, 0, 0, 0, 5000, 1220.83, -274.2, 26.63, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2087, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1988, 1, 'Apartments', 0, 0, 0, 0, 5000, 1210.83, -274.21, 25.54, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2088, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1989, 1, 'Apartments', 0, 0, 0, 0, 5000, 1210.82, -293.45, 25.54, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2089, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1990, 1, 'Apartments', 0, 0, 0, 0, 5000, 1220.79, -293.45, 26.63, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2090, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1991, 1, 'Apartments', 0, 0, 0, 0, 5000, 1230.84, -293.45, 27.63, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2091, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1992, 1, 'Apartments', 0, 0, 0, 0, 5000, 1240.67, -293.43, 28.61, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2092, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1993, 1, 'Apartments', 0, 0, 0, 0, 5000, 1250.84, -293.45, 29.63, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2093, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1994, 1, 'Apartments', 0, 0, 0, 0, 5000, 1180.91, -293.45, 24.49, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2094, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1995, 1, 'Apartments', 0, 0, 0, 0, 5000, 1170.65, -293.45, 23.46, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2095, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1996, 1, 'Apartments', 0, 0, 0, 0, 5000, 1160.82, -293.45, 22.48, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2096, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1997, 1, 'Apartments', 0, 0, 0, 0, 5000, 1150.77, -293.45, 21.47, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2097, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1998, 1, 'Apartments', 0, 0, 0, 0, 5000, 1140.81, -293.45, 20.48, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2098, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1999, 1, 'Apartments', 0, 0, 0, 0, 5000, 1111.69, -281.12, 21.74, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2099, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (2000, 1, 'Apartments', 0, 0, 0, 0, 5000, 1111.69, -291.18, 21.74, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2100, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (2001, 1, 'Apartments', 0, 0, 0, 0, 5000, 1111.69, -301.08, 21.74, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2101, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (2002, 1, 'Apartments', 0, 0, 0, 0, 5000, 1113.44, -311.09, 21.55, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2102, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (2003, 1, 'Apartments', 0, 0, 0, 0, 5000, 1113.44, -321.12, 21.55, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2103, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (2004, 1, 'Apartments', 0, 0, 0, 0, 5000, 1113.44, -331.2, 21.55, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2104, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (2005, 1, 'Apartments', 0, 0, 0, 0, 5000, 1113.44, -341.18, 21.55, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2105, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (2006, 1, 'Apartments', 0, 0, 0, 0, 5000, 1113.44, -351.11, 21.55, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2106, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (2007, 1, 'Apartments', 0, 0, 0, 0, 5000, 1138.68, -366.12, 21.75, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2107, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (2008, 1, 'Apartments', 0, 0, 0, 0, 5000, 1148.57, -366.12, 22.75, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2108, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (2009, 1, 'Apartments', 0, 0, 0, 0, 5000, 1158.71, -366.12, 23.75, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2109, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (2010, 1, 'Apartments', 0, 0, 0, 0, 5000, 1168.57, -366.12, 24.75, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2110, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (2011, 1, 'Apartments', 0, 0, 0, 0, 5000, 1178.72, -366.12, 25.74, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2111, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (2012, 1, 'Apartments', 0, 0, 0, 0, 5000, 1180.97, -334.19, 24.49, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2112, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (2013, 1, 'Apartments', 0, 0, 0, 0, 5000, 1170.78, -334.19, 23.47, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2113, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (2014, 1, 'Apartments', 0, 0, 0, 0, 5000, 1160.74, -334.19, 22.47, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2114, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (2015, 1, 'Apartments', 0, 0, 0, 0, 5000, 1150.78, -334.19, 21.47, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2115, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (2016, 1, 'Apartments', 0, 0, 0, 0, 5000, 1140.75, -334.19, 20.47, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2116, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (2017, 1, 'Apartments', 0, 0, 0, 0, 5000, 1116.16, -268.95, 19.5, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2117, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (2018, 1, 'Apartments', 0, 0, 0, 0, 5000, 1116.16, -258.65, 18.5, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2118, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (2019, 1, 'Apartments', 0, 0, 0, 0, 5000, 1116.16, -248.91, 17.56, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2119, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (2020, 1, 'Apartments', 0, 0, 0, 0, 5000, 1116.16, -238.83, 16.58, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2120, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (2021, 1, 'Apartments', 0, 0, 0, 0, 5000, 1116.16, -228.77, 15.51, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2121, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (2022, 1, 'Apartments', 0, 0, 0, 0, 5000, 1116.16, -188.85, 14.48, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2122, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (2023, 1, 'Apartments', 0, 0, 0, 0, 5000, 1116.16, -178.76, 13.47, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2123, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (2024, 1, 'Apartments', 0, 0, 0, 0, 5000, 1116.16, -168.88, 12.48, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2124, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (2025, 1, 'Apartments', 0, 0, 0, 0, 5000, 1116.16, -158.82, 11.47, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2125, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (2026, 1, 'Apartments', 0, 0, 0, 0, 5000, 1116.17, -148.87, 10.48, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2126, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (2027, 1, 'Apartments', 0, 0, 0, 0, 5000, 1138.03, -146.68, 11.71, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2127, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (2028, 1, 'Apartments', 0, 0, 0, 0, 5000, 1138.03, -156.64, 12.71, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2128, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (2029, 1, 'Apartments', 0, 0, 0, 0, 5000, 1138.03, -166.69, 13.71, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2129, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (2030, 1, 'Apartments', 0, 0, 0, 0, 5000, 1138.02, -176.73, 14.71, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2130, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (2031, 1, 'Apartments', 0, 0, 0, 0, 5000, 1138.02, -186.72, 15.7, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2131, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (2032, 1, 'Apartments', 0, 0, 0, 0, 5000, 1068.09, -186.55, 6.56, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2132, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (2033, 1, 'Apartments', 0, 0, 0, 0, 5000, 1068.1, -176.41, 6.56, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2133, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (2034, 1, 'Apartments', 0, 0, 0, 0, 5000, 1068.1, -166.48, 6.56, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2134, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (2035, 1, 'Apartments', 0, 0, 0, 0, 5000, 1068.1, -156.65, 6.56, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2135, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (2036, 1, 'Apartments', 0, 0, 0, 0, 5000, 1068.1, -146.44, 6.56, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2136, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (2037, 1, 'Apartments', 0, 0, 0, 0, 5000, 1068.07, -246.55, 6.69, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2137, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (2038, 1, 'Apartments', 0, 0, 0, 0, 5000, 1068.07, -256.65, 7.68, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2138, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (2039, 1, 'Apartments', 0, 0, 0, 0, 5000, 1068.03, -296.67, 11.72, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2139, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (2040, 1, 'Apartments', 0, 0, 0, 0, 5000, 1068.03, -306.61, 12.72, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2140, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (2041, 1, 'Apartments', 0, 0, 0, 0, 5000, 1068.03, -316.62, 13.72, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2141, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (2042, 1, 'Apartments', 0, 0, 0, 0, 5000, 1068.02, -326.75, 14.72, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2142, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (2043, 1, 'Apartments', 0, 0, 0, 0, 5000, 1068.02, -336.54, 15.71, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2143, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (2044, 1, 'Apartments', 0, 0, 0, 0, 5000, 894.07, -464.94, 14.97, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2144, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (2045, 1, 'Apartments', 0, 0, 0, 0, 5000, 860.88, -463.47, 14.97, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2145, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (2046, 1, 'Apartments', 0, 0, 0, 0, 5000, 845.35, -400.24, 14.97, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2146, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (2047, 1, 'Apartments', 0, 0, 0, 0, 5000, 845.29, -368.99, 12.6, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2147, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (2048, 1, 'Apartments', 0, 0, 0, 0, 5000, 845.29, -350.17, 10.86, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2148, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (2049, 1, 'Apartments', 0, 0, 0, 0, 5000, 845.28, -325.24, 8.37, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2149, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (2050, 1, 'Safehouse', 0, 0, 0, 0, 0, 890.41, -308.33, 8.72, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2150, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (2051, 1, 'Projects', 0, 0, 0, 0, 0, 944.05, -272.57, 4.94, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2151, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (2052, 1, 'Apartments', 0, 0, 0, 0, 5000, 942.95, -348.47, 9.97, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2152, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (2053, 1, 'Apartments', 0, 0, 0, 0, 5000, 867.21, -671.82, 14.97, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2153, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (2054, 1, 'Apartments', 0, 0, 0, 0, 5000, 875.12, -671.3, 14.97, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2154, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (2055, 1, 'Apartments', 0, 0, 0, 0, 5000, 872.96, -659.17, 14.97, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2155, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (2056, 1, 'Apartments', 0, 0, 0, 0, 5000, 882.49, -708.41, 14.97, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2156, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (2057, 1, 'Apartments', 0, 0, 0, 0, 5000, 854.34, -689.18, 14.97, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2157, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (2058, 1, 'Apartments', 0, 0, 0, 0, 5000, 854.23, -759.09, 14.97, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2158, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (2059, 1, 'Apartments', 0, 0, 0, 0, 5000, -119.92, -1379.99, 26.17, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2159, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (2060, 1, 'Apartments', 0, 0, 0, 0, 5000, -129.3, -1380, 26.17, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2160, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (2061, 1, 'Apartments', 0, 0, 0, 0, 5000, -134.95, -1389.72, 26.33, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2161, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (2062, 1, 'Apartments', 0, 0, 0, 0, 5000, -149.13, -1382.05, 26.17, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2162, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (2063, 1, 'Apartments', 0, 0, 0, 0, 5000, -140.61, -1385.4, 26.36, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2163, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (2064, 1, 'Apartments', 0, 0, 0, 0, 5000, -163.41, -1386.55, 26.34, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2164, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (2065, 1, 'Apartments', 0, 0, 0, 0, 5000, -153.9, -1382.77, 26.17, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2165, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (2066, 1, 'Apartments', 0, 0, 0, 0, 5000, -168.32, -1382.13, 26.17, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2166, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (2067, 1, 'Apartments', 0, 0, 0, 0, 5000, -176.51, -1384.51, 26.36, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2167, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (2068, 1, 'Apartments', 0, 0, 0, 0, 5000, -185.88, -1380.46, 26.17, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2168, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (2069, 1, 'Apartments', 0, 0, 0, 0, 5000, -157.18, -1476.82, 26.19, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2169, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (2070, 1, 'Apartments', 0, 0, 0, 0, 5000, -163.18, -1462.64, 26.19, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2170, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (2071, 1, 'Apartments', 0, 0, 0, 0, 5000, -168.42, -1449.97, 26.19, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2171, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (2072, 1, 'Apartments', 0, 0, 0, 0, 5000, -149.72, -1489.55, 26.19, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2172, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (2073, 1, 'Apartments', 0, 0, 0, 0, 5000, -124.5, -1519.6, 26.19, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2173, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (2074, 1, 'Apartments', 0, 0, 0, 0, 5000, -103.41, -1540.97, 26.19, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2174, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (2075, 1, 'Apartments', 0, 0, 0, 0, 5000, -73.55, -1564.37, 26.02, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2175, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (2076, 1, 'Apartments', 0, 0, 0, 0, 5000, -50.96, -1575.5, 26.02, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2176, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (2077, 1, 'Apartments', 0, 0, 0, 0, 5000, -15.36, -1587.86, 26.21, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2177, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (2078, 1, 'Apartments', 0, 0, 0, 0, 5000, 15.51, -1590.52, 26.19, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2178, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (2079, 1, 'Apartments', 0, 0, 0, 0, 5000, 125.07, -1489.57, 26.17, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2179, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (2080, 1, 'Large House', 0, 0, 0, 100000, 0, -742.4, 286.64, 55.29, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2180, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (2081, 1, 'Large House', 0, 0, 0, 100000, 0, -677.95, 307.89, 59.85, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2181, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (2082, 1, 'Large House', 0, 0, 0, 100000, 0, -554.83, 309.9, 70.8, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2182, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (2083, 1, 'Large House', 0, 0, 0, 100000, 0, -491.27, 286.25, 74.15, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2183, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (2084, 1, 'Mansion', 0, 0, 0, 250000, 0, -380.6, 299.86, 63.92, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2184, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (2085, 1, 'Large House', 0, 0, 0, 100000, 0, -832.62, 294.62, 41.48, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2185, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (2086, 1, 'Projects', 0, 0, 0, 0, 0, -458.33, -46.19, 3.93, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2186, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (2087, 1, 'Projects', 0, 0, 0, 0, 0, -501.08, -64.36, 3.93, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2187, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (2088, 1, 'Projects', 0, 0, 0, 0, 0, -521.21, -65.17, 3.93, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2188, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (2089, 1, 'Projects', 0, 0, 0, 0, 0, -459.48, -25.3, 3.93, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2189, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (2090, 1, 'Projects', 0, 0, 0, 0, 0, -468.29, 52.11, 3.93, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2190, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (2091, 1, 'Projects', 0, 0, 0, 0, 0, -488.71, 51.2, 3.93, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2191, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (2092, 1, 'Projects', 0, 0, 0, 0, 0, -546.12, 31.71, 3.93, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2192, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (2093, 1, 'Projects', 0, 0, 0, 0, 0, -545.19, 11.49, 3.93, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2193, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (2094, 2, 'Apartments', 0, 0, 0, 0, 0, -789.686, -1212.64, 11.104, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2194, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (2095, 2, 'Apartments', 0, 0, 0, 0, 0, -797.146, -1213.46, 11.103, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2195, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (2096, 2, 'Apartments', 0, 0, 0, 0, 0, -797.429, -1217.4, 11.1038, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2196, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (2097, 2, 'Apartments', 0, 0, 0, 0, 0, -803.891, -1202.53, 11.1005, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2197, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (2098, 2, 'Apartments', 0, 0, 0, 0, 0, -805.512, -1197.92, 11.1019, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2198, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (2099, 2, 'Apartments', 0, 0, 0, 0, 0, -811.252, -1181.36, 11.1038, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2199, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (2100, 2, 'Apartments', 0, 0, 0, 0, 0, -810.781, -1177.46, 11.1031, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2200, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (2101, 2, 'Apartments', 0, 0, 0, 0, 0, -803.383, -1176.86, 11.104, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2201, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (2102, 2, 'Apartments', 0, 0, 0, 0, 0, -801.069, -1182.84, 11.104, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2202, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (2103, 2, 'Apartments', 0, 0, 0, 0, 0, -807.399, -1187.39, 11.1053, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2203, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (2104, 2, 'Apartments', 0, 0, 0, 0, 0, -817.182, -1166.56, 11.1004, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2204, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (2105, 2, 'Apartments', 0, 0, 0, 0, 0, -818.592, -1161.96, 11.102, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2205, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (2106, 2, 'Apartments', 0, 0, 0, 0, 0, -813.844, -1147.13, 11.1041, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2206, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (2107, 2, 'Apartments', 0, 0, 0, 0, 0, -819.993, -1151.34, 11.1052, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2207, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (2108, 2, 'Apartments', 0, 0, 0, 0, 0, -823.635, -1145.27, 11.1065, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2208, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (2109, 2, 'Apartments', 0, 0, 0, 0, 0, -823.285, -1141.7, 11.1065, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2209, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (2110, 2, 'Apartments', 0, 0, 0, 0, 0, -815.787, -1141.42, 11.1041, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2210, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (2111, 2, 'Apartments', 0, 0, 0, 0, 0, -828.824, -1131.07, 11.1084, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2211, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (2112, 2, 'Apartments', 0, 0, 0, 0, 0, -830.02, -1126.36, 11.1075, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2212, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (2113, 2, 'Apartments', 0, 0, 0, 0, 0, -834.289, -1109.49, 11.1072, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2213, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (2114, 2, 'Apartments', 0, 0, 0, 0, 0, -833.38, -1106.25, 11.1076, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2214, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (2115, 2, 'Apartments', 0, 0, 0, 0, 0, -830.996, -1115.65, 11.1053, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2215, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (2116, 2, 'Apartments', 0, 0, 0, 0, 0, -824.422, -1111.64, 11.1046, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2216, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (2117, 2, 'Apartments', 0, 0, 0, 0, 0, -825.859, -1106.34, 11.1051, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2217, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (2118, 2, 'Apartments', 0, 0, 0, 0, 0, -838.458, -1095.65, 11.1085, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2218, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (2119, 2, 'Apartments', 0, 0, 0, 0, 0, -839.434, -1090.78, 11.105, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2219, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (2120, 2, 'Apartments', 0, 0, 0, 0, 0, -832.835, -1077.57, 11.1032, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2220, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (2121, 2, 'Apartments', 0, 0, 0, 0, 0, -839.619, -1080.14, 11.105, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2221, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (2122, 2, 'Apartments', 0, 0, 0, 0, 0, -842.748, -1074.18, 11.1015, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2222, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (2123, 2, 'Apartments', 0, 0, 0, 0, 0, -841.665, -1071.16, 11.1004, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2223, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (2124, 2, 'Apartments', 0, 0, 0, 0, 0, -834.217, -1071.72, 11.1021, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2224, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (2125, 2, 'Apartments', 0, 0, 0, 0, 0, -846.313, -1034.93, 12.4821, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2225, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (2126, 2, 'Apartments', 0, 0, 0, 0, 0, -847.902, -1018, 12.4821, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2226, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (2127, 2, 'Apartments', 0, 0, 0, 0, 0, -848.655, -1001.6, 12.4821, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2227, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (2128, 2, 'Apartments', 0, 0, 0, 0, 0, -839.554, -988.952, 11.104, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2228, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (2129, 2, 'Apartments', 0, 0, 0, 0, 0, -839.306, -981.231, 11.1038, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2229, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (2130, 2, 'Apartments', 0, 0, 0, 0, 0, -850.774, -968.19, 11.1034, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2230, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (2131, 2, 'Apartments', 0, 0, 0, 0, 0, -849.294, -951.886, 11.1034, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2231, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (2132, 2, 'Apartments', 0, 0, 0, 0, 0, -833.4, -934.169, 11.1037, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2232, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (2133, 2, 'Apartments', 0, 0, 0, 0, 0, -834.59, -940.385, 11.1038, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2233, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (2134, 2, 'Apartments', 0, 0, 0, 0, 0, -844.7, -769.721, 12.6569, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2234, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (2135, 2, 'Apartments', 0, 0, 0, 0, 0, -845.787, -764.262, 12.6569, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2235, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (2136, 2, 'Apartment', 0, 0, 0, 0, 0, -1192.55, -504.653, 10.7961, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2236, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (2137, 2, 'Apartment', 0, 0, 0, 0, 0, -1193.41, -505.949, 13.8026, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2237, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (2138, 2, 'Apartment', 0, 0, 0, 0, 0, -1190.01, -508.944, 10.9041, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2238, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (2139, 2, 'Apartment', 0, 0, 0, 0, 0, -1178.3, -475.482, 10.8063, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2239, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (2140, 2, 'Apartment', 0, 0, 0, 0, 0, -1177.23, -470.624, 10.7556, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2240, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (2141, 2, 'Apartment', 0, 0, 0, 0, 0, -1176.77, -475.231, 13.8029, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2241, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (2142, 2, 'Medium House', 0, 0, 0, 0, 0, -1182.65, -447.053, 11.71, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2242, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (2143, 2, 'Medium House', 0, 0, 0, 0, 0, -1207.93, -477.021, 11.71, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2243, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (2144, 2, 'Apartment', 0, 0, 0, 0, 0, -1215.94, -463.118, 10.7391, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2244, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (2145, 2, 'Apartment', 0, 0, 0, 0, 0, -1214.25, -459.012, 10.7535, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2245, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (2146, 2, 'Apartment', 0, 0, 0, 0, 0, -1215.79, -458.657, 13.8029, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2246, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (2147, 2, 'Medium House', 0, 0, 0, 0, 0, -1214.81, -434.727, 11.71, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2247, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (2148, 2, 'Medium House', 0, 0, 0, 0, 0, -1216.02, -414.291, 11.71, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2248, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (2149, 2, 'Apartment', 0, 0, 0, 0, 0, -1220.18, -394.392, 10.8175, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2249, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (2150, 2, 'Apartment', 0, 0, 0, 0, 0, -1221.87, -398.81, 10.7589, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2250, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (2151, 2, 'Apartment', 0, 0, 0, 0, 0, -1221.73, -394.218, 13.8029, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2251, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (2152, 2, 'Medium House', 0, 0, 0, 0, 0, -1190.03, -392.434, 10.703, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2252, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (2153, 2, 'Apartment', 0, 0, 0, 0, 0, -1195.05, -371.744, 10.9157, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2253, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (2154, 2, 'Apartment', 0, 0, 0, 0, 0, -1193.68, -367.104, 10.8981, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2254, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (2155, 2, 'Apartment', 0, 0, 0, 0, 0, -1193.5, -371.722, 13.9977, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2255, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (2156, 2, 'Medium House', 0, 0, 0, 0, 0, -1186.01, -420.006, 11.71, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2256, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (2157, 2, 'Apartment', 0, 0, 0, 0, 0, -1164.05, -360.161, 13.8029, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2257, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (2158, 2, 'Apartment', 0, 0, 0, 0, 0, -1164.28, -358.389, 10.8758, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2258, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (2159, 2, 'Apartment', 0, 0, 0, 0, 0, -1159.66, -359.92, 10.8091, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2259, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (2160, 2, 'Large House', 0, 0, 0, 0, 0, -1131.96, -356.508, 15.0355, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2260, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (2161, 2, 'Medium House', 0, 0, 0, 0, 0, -1118.77, -424.198, 11.5151, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2261, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (2162, 2, 'Apartment', 0, 0, 0, 0, 0, -1120.06, -394.38, 10.7139, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2262, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (2163, 2, 'Apartment', 0, 0, 0, 0, 0, -1120.34, -389.873, 13.8029, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2263, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (2164, 2, 'Apartment', 0, 0, 0, 0, 0, -1118.81, -389.625, 10.7365, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2264, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (2165, 2, 'Small House', 0, 0, 0, 0, 0, -1050.45, -55.799, 11.3124, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2265, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (2166, 2, 'Small House', 0, 0, 0, 0, 0, -1048.94, -63.3833, 11.0096, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2266, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (2167, 2, 'Small House', 0, 0, 0, 0, 0, -1052.15, -76.7793, 10.9762, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2267, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (2168, 2, 'Small House', 0, 0, 0, 0, 0, -1052.41, -92.2276, 11.025, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2268, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (2169, 2, 'Small House', 0, 0, 0, 0, 0, -1038.58, -110.442, 10.9592, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2269, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (2170, 2, 'Small House', 0, 0, 0, 0, 0, -1025.35, -109.008, 10.9626, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2270, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (2171, 2, 'Small House', 0, 0, 0, 0, 0, -1011.3, -108.897, 10.9648, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2271, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (2172, 2, 'Small House', 0, 0, 0, 0, 0, -969.034, -125.157, 11.5922, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2272, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (2173, 2, 'Small House', 0, 0, 0, 0, 0, -968.423, -141.695, 10.9624, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2273, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (2174, 2, 'Small House', 0, 0, 0, 0, 0, -968.319, -159.961, 10.9425, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2274, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (2175, 2, 'Small House', 0, 0, 0, 0, 0, -968.981, -175.814, 11.5922, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2275, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (2176, 2, 'Small House', 0, 0, 0, 0, 0, -968.931, -194.169, 11.5922, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2276, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (2177, 2, 'Small House', 0, 0, 0, 0, 0, -971.47, -208.899, 11.0095, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2277, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (2178, 2, 'Small House', 0, 0, 0, 0, 0, -970.675, -225.567, 10.9364, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2278, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (2179, 2, 'Small House', 0, 0, 0, 0, 0, -970.984, -243.261, 10.9405, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2279, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (2180, 2, 'Apartment', 0, 0, 0, 0, 0, -998.033, -237.504, 10.9512, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2280, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (2181, 2, 'Apartment', 0, 0, 0, 0, 0, -999.612, -241.489, 10.8656, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2281, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (2182, 2, 'Apartment', 0, 0, 0, 0, 0, -1000.23, -237.578, 13.5635, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2282, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (2183, 2, 'Small House', 0, 0, 0, 0, 0, -1001.8, -220.749, 10.9307, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2283, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (2184, 2, 'Small House', 0, 0, 0, 0, 0, -1002.15, -209.041, 11.3124, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2284, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (2185, 2, 'Small House', 0, 0, 0, 0, 0, -1003.66, -200.929, 11.0054, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2285, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (2186, 2, 'Small House', 0, 0, 0, 0, 0, -1000.5, -187.95, 10.9629, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2286, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (2187, 2, 'Small House', 0, 0, 0, 0, 0, -1000.19, -171.703, 11.0095, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2287, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (2188, 2, 'Small House', 0, 0, 0, 0, 0, -1002.35, -151.916, 11.0095, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2288, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (2189, 2, 'Small House', 0, 0, 0, 0, 0, -968.983, -106.018, 11.592, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2289, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (2190, 2, 'Small House', 0, 0, 0, 0, 0, -968.318, -90.1378, 10.9248, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2290, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (2191, 2, 'Small House', 0, 0, 0, 0, 0, -998.54, -92.4276, 11.0096, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2291, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (2192, 2, 'Small House', 0, 0, 0, 0, 0, -996.836, -77.8641, 10.7369, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2292, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (2193, 2, 'Small House', 0, 0, 0, 0, 0, -996.705, -65.6875, 10.9344, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2293, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (2194, 2, 'Small House', 0, 0, 0, 0, 0, -968.423, -72.0007, 10.9376, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2294, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (2195, 2, 'Small House', 0, 0, 0, 0, 0, -969.904, -56.2967, 10.9389, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2295, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (2196, 2, 'Apartment', 0, 0, 0, 0, 0, -997.373, -21.2493, 10.7531, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2296, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (2197, 2, 'Apartment', 0, 0, 0, 0, 0, -995.381, -17.3917, 10.7332, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2297, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (2198, 2, 'Apartment', 0, 0, 0, 0, 0, -997.564, -17.1247, 13.5635, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2298, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (2199, 2, 'Small House', 0, 0, 0, 0, 0, -969.12, -39.9983, 10.9822, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2299, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (2200, 2, 'Small House', 0, 0, 0, 0, 0, -968.81, -22.6307, 10.9107, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2300, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (2201, 2, 'Small House', 0, 0, 0, 0, 0, -965.655, -6.90707, 11.0095, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2301, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (2202, 2, 'Small House', 0, 0, 0, 0, 0, -967.165, 4.17259, 11.3124, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2302, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (2203, 2, 'Ghetto Shack', 0, 0, 0, 0, 0, -979.657, 86.9908, 10.1164, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2303, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (2204, 2, 'Ghetto Shack', 0, 0, 0, 0, 0, -985.778, 87.1752, 10.1465, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2304, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (2205, 2, 'Ghetto Shack', 0, 0, 0, 0, 0, -993.114, 86.939, 10.1679, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2305, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (2206, 2, 'Ghetto Shack', 0, 0, 0, 0, 0, -1006.07, 87.2455, 10.1885, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2306, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (2207, 2, 'Ghetto Shack', 0, 0, 0, 0, 0, -993.998, 105.068, 9.32741, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2307, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (2208, 2, 'Ghetto Shack', 0, 0, 0, 0, 0, -981.443, 105.089, 9.26985, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2308, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (2209, 2, 'Ghetto Shack', 0, 0, 0, 0, 0, -966.15, 104.862, 9.25201, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2309, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (2210, 2, 'Ghetto Shack', 0, 0, 0, 0, 0, -966.151, 111.282, 9.23218, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2310, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (2211, 2, 'Ghetto Shack', 0, 0, 0, 0, 0, -966.11, 120.721, 9.23597, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2311, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (2212, 2, 'Ghetto Shack', 0, 0, 0, 0, 0, -966.29, 127.41, 9.23936, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2312, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (2213, 2, 'Ghetto Shack', 0, 0, 0, 0, 0, -960.852, 87.1342, 10.2523, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2313, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (2214, 2, 'Ghetto Shack', 0, 0, 0, 0, 0, -967.219, 87.0634, 10.2189, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2314, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (2215, 2, 'Ghetto Shack', 0, 0, 0, 0, 0, -954.898, 87.178, 10.2572, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2315, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (2216, 2, 'Ghetto Shack', 0, 0, 0, 0, 0, -949.212, 86.3268, 10.2938, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2316, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (2217, 2, 'Ghetto Shack', 0, 0, 0, 0, 0, -951.566, 136.682, 9.30252, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2317, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (2218, 2, 'Ghetto Shack', 0, 0, 0, 0, 0, -962.805, 146.105, 9.39548, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2318, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (2219, 2, 'Ghetto Shack', 0, 0, 0, 0, 0, -979.322, 143.394, 9.19588, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2319, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (2220, 2, 'Ghetto Shack', 0, 0, 0, 0, 0, -985.231, 143.575, 9.21788, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2320, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (2221, 2, 'Ghetto Shack', 0, 0, 0, 0, 0, -992.599, 143.342, 9.24397, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2321, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (2222, 2, 'Ghetto Shack', 0, 0, 0, 0, 0, -998.35, 143.679, 9.26586, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2322, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (2223, 2, 'Ghetto Shack', 0, 0, 0, 0, 0, -981.627, 131.177, 9.26542, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2323, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (2224, 2, 'Ghetto Shack', 0, 0, 0, 0, 0, -993.957, 123.36, 9.28282, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2324, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (2225, 2, 'Apartment', 0, 0, 0, 0, 0, -940.064, 201.212, 9.18944, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2325, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (2226, 2, 'Apartment', 0, 0, 0, 0, 0, -948.041, 201.211, 12.5665, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2326, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (2227, 2, 'Apartment', 0, 0, 0, 0, 0, -940.201, 201.217, 12.5683, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2327, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (2228, 2, 'Apartment', 0, 0, 0, 0, 0, -933.921, 209.085, 9.19037, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2328, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (2229, 2, 'Apartment', 0, 0, 0, 0, 0, -931.271, 233.337, 9.18821, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2329, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (2230, 2, 'Apartment', 0, 0, 0, 0, 0, -931.269, 233.303, 12.5683, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2330, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (2231, 2, 'Apartment', 0, 0, 0, 0, 0, -931.269, 247.227, 12.5506, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2331, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (2232, 2, 'Apartment', 0, 0, 0, 0, 0, -931.271, 240.953, 12.5683, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2332, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (2233, 2, 'Apartment', 0, 0, 0, 0, 0, -923.371, 227.095, 9.1842, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 2333, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (2234, 2, 'Mansion', 0, 0, 0, 0, 0, -378.546, -556.097, 19.5742, 0, 0, 0, 0, -1, -379.14, -551.65, 19.32, 0, 2, 100, 0, 0, 1); +/*!40000 ALTER TABLE `house_main` ENABLE KEYS */; + +-- Dumping structure for table db24053.idea_main +CREATE TABLE IF NOT EXISTS `idea_main` ( + `idea_id` int(11) NOT NULL AUTO_INCREMENT, + `idea_server` int(11) NOT NULL DEFAULT '0', + `idea_who_added` int(11) NOT NULL DEFAULT '0', + `idea_when_added` int(32) NOT NULL DEFAULT '0', + `idea_script_ver` varchar(16) NOT NULL DEFAULT '0.0', + `idea_pos_x` float NOT NULL DEFAULT '0', + `idea_pos_y` float NOT NULL DEFAULT '0', + `idea_pos_z` float NOT NULL DEFAULT '0', + `idea_rot_z` float NOT NULL DEFAULT '0', + `idea_message` varchar(256) NOT NULL DEFAULT '(No Message)', + `idea_svr_start` int(32) NOT NULL DEFAULT '0', + `idea_session` int(11) NOT NULL DEFAULT '0', + PRIMARY KEY (`idea_id`), + KEY `idea_server` (`idea_server`), + KEY `idea_who_added` (`idea_who_added`), + CONSTRAINT `fk_idea_server` FOREIGN KEY (`idea_server`) REFERENCES `svr_main` (`svr_id`) ON DELETE CASCADE ON UPDATE CASCADE, + CONSTRAINT `fk_idea_who_added` FOREIGN KEY (`idea_who_added`) REFERENCES `acct_main` (`acct_id`) ON DELETE CASCADE ON UPDATE CASCADE +) ENGINE=InnoDB AUTO_INCREMENT=273 DEFAULT CHARSET=latin1 COMMENT='User Submitted Ideas'; + +-- Dumping data for table db24053.idea_main: ~66 rows (approximately) +/*!40000 ALTER TABLE `idea_main` DISABLE KEYS */; +INSERT INTO `idea_main` (`idea_id`, `idea_server`, `idea_who_added`, `idea_when_added`, `idea_script_ver`, `idea_pos_x`, `idea_pos_y`, `idea_pos_z`, `idea_rot_z`, `idea_message`, `idea_svr_start`, `idea_session`) VALUES + (1, 2, 1, 1609756308, '1.0', 159.124, -437.974, 10.6419, 1.63332, 'loop to set wanted level to 0', 1609756265, 0); +INSERT INTO `idea_main` (`idea_id`, `idea_server`, `idea_who_added`, `idea_when_added`, `idea_script_ver`, `idea_pos_x`, `idea_pos_y`, `idea_pos_z`, `idea_rot_z`, `idea_message`, `idea_svr_start`, `idea_session`) VALUES + (4, 4, 1, 1608262318, '1.0', 2258.62, 2463.1, 10.8203, -0.5, 'Exclude LVPD garage from snow', 2147483647, 0); +INSERT INTO `idea_main` (`idea_id`, `idea_server`, `idea_who_added`, `idea_when_added`, `idea_script_ver`, `idea_pos_x`, `idea_pos_y`, `idea_pos_z`, `idea_rot_z`, `idea_message`, `idea_svr_start`, `idea_session`) VALUES + (5, 4, 1, 1608262432, '1.0', 2179.19, 1766.52, 56.5364, 1.3, 'Exclude LV parking garages from snow', 2147483647, 0); +INSERT INTO `idea_main` (`idea_id`, `idea_server`, `idea_who_added`, `idea_when_added`, `idea_script_ver`, `idea_pos_x`, `idea_pos_y`, `idea_pos_z`, `idea_rot_z`, `idea_message`, `idea_svr_start`, `idea_session`) VALUES + (6, 4, 1, 1608262457, '1.0', 1858.49, 1800.93, 36.5273, 0.5, 'Exclude LV parking garage ramp from snow', 2147483647, 0); +INSERT INTO `idea_main` (`idea_id`, `idea_server`, `idea_who_added`, `idea_when_added`, `idea_script_ver`, `idea_pos_x`, `idea_pos_y`, `idea_pos_z`, `idea_rot_z`, `idea_message`, `idea_svr_start`, `idea_session`) VALUES + (7, 4, 1, 1608262813, '1.0', 1192.94, -1321.7, 13.3984, -0.2, 'Add hospital fees', 2147483647, 0); +INSERT INTO `idea_main` (`idea_id`, `idea_server`, `idea_who_added`, `idea_when_added`, `idea_script_ver`, `idea_pos_x`, `idea_pos_y`, `idea_pos_z`, `idea_rot_z`, `idea_message`, `idea_svr_start`, `idea_session`) VALUES + (10, 4, 1, 1608264374, '1.0', -1983.54, 163.581, 27.6875, 1.02, 'Admin report system', 2147483647, 0); +INSERT INTO `idea_main` (`idea_id`, `idea_server`, `idea_who_added`, `idea_when_added`, `idea_script_ver`, `idea_pos_x`, `idea_pos_y`, `idea_pos_z`, `idea_rot_z`, `idea_message`, `idea_svr_start`, `idea_session`) VALUES + (21, 1, 2, 1608871415, '1.0', 1336.09, -758.642, 14.5972, -2.84, 'Import/Export between different cities, with each city demanding different cars.', 2147483647, 0); +INSERT INTO `idea_main` (`idea_id`, `idea_server`, `idea_who_added`, `idea_when_added`, `idea_script_ver`, `idea_pos_x`, `idea_pos_y`, `idea_pos_z`, `idea_rot_z`, `idea_message`, `idea_svr_start`, `idea_session`) VALUES + (23, 1, 1, 1608871808, '1.0', -597.479, 353.699, 78.4167, -1.8, 'Remove real estate flag on house in cedar grove', 2147483647, 0); +INSERT INTO `idea_main` (`idea_id`, `idea_server`, `idea_who_added`, `idea_when_added`, `idea_script_ver`, `idea_pos_x`, `idea_pos_y`, `idea_pos_z`, `idea_rot_z`, `idea_message`, `idea_svr_start`, `idea_session`) VALUES + (128, 1, 1, 1609102480, '1.0', 1299.98, -993.433, 14.8793, 0.840862, 'Respawn single vehicle command', 2147483647, 0); +INSERT INTO `idea_main` (`idea_id`, `idea_server`, `idea_who_added`, `idea_when_added`, `idea_script_ver`, `idea_pos_x`, `idea_pos_y`, `idea_pos_z`, `idea_rot_z`, `idea_message`, `idea_svr_start`, `idea_session`) VALUES + (129, 1, 1, 1609103197, '1.0', 1057.91, -398.217, 14.6232, -0.0146413, 'Hail a cab', 2147483647, 0); +INSERT INTO `idea_main` (`idea_id`, `idea_server`, `idea_who_added`, `idea_when_added`, `idea_script_ver`, `idea_pos_x`, `idea_pos_y`, `idea_pos_z`, `idea_rot_z`, `idea_message`, `idea_svr_start`, `idea_session`) VALUES + (133, 4, 2, 1609122166, '1.0', 1859.69, -2665.98, 5.75974, 1.57027, 'Airplane services?', 2147483647, 0); +INSERT INTO `idea_main` (`idea_id`, `idea_server`, `idea_who_added`, `idea_when_added`, `idea_script_ver`, `idea_pos_x`, `idea_pos_y`, `idea_pos_z`, `idea_rot_z`, `idea_message`, `idea_svr_start`, `idea_session`) VALUES + (134, 4, 2, 1609122329, '1.0', 1805.22, -2325.19, 13.3369, -0.342691, 'Should tuning shops be usable?', 2147483647, 0); +INSERT INTO `idea_main` (`idea_id`, `idea_server`, `idea_who_added`, `idea_when_added`, `idea_script_ver`, `idea_pos_x`, `idea_pos_y`, `idea_pos_z`, `idea_rot_z`, `idea_message`, `idea_svr_start`, `idea_session`) VALUES + (135, 4, 1, 1609142767, '1.0', 1552.72, -1674.83, 16.1953, 1.76176, 'Block use of usechar cmd while not in switchchar mode', 2147483647, 0); +INSERT INTO `idea_main` (`idea_id`, `idea_server`, `idea_who_added`, `idea_when_added`, `idea_script_ver`, `idea_pos_x`, `idea_pos_y`, `idea_pos_z`, `idea_rot_z`, `idea_message`, `idea_svr_start`, `idea_session`) VALUES + (202, 4, 1, 1609213965, '1.0', 237.392, 75.8236, 1005.04, 0.129586, 'Add helpful info on specific events. Approaching veh or job icon, etc', 2147483647, 0); +INSERT INTO `idea_main` (`idea_id`, `idea_server`, `idea_who_added`, `idea_when_added`, `idea_script_ver`, `idea_pos_x`, `idea_pos_y`, `idea_pos_z`, `idea_rot_z`, `idea_message`, `idea_svr_start`, `idea_session`) VALUES + (203, 2, 1, 1609224894, '1.0', -377.152, -337.399, 11.2356, -3.09393, 'Remove gates at starfish island houses', 2147483647, 0); +INSERT INTO `idea_main` (`idea_id`, `idea_server`, `idea_who_added`, `idea_when_added`, `idea_script_ver`, `idea_pos_x`, `idea_pos_y`, `idea_pos_z`, `idea_rot_z`, `idea_message`, `idea_svr_start`, `idea_session`) VALUES + (204, 1, 1, 1609233851, '1.0', 125.646, -922.827, 25.8177, 1.60839, 'Fix colon being too close to msg in admin chat', 2147483647, 0); +INSERT INTO `idea_main` (`idea_id`, `idea_server`, `idea_who_added`, `idea_when_added`, `idea_script_ver`, `idea_pos_x`, `idea_pos_y`, `idea_pos_z`, `idea_rot_z`, `idea_message`, `idea_svr_start`, `idea_session`) VALUES + (205, 1, 1, 1609233955, '1.0', -149.499, -1378.3, 26.1682, 1.54235, 'Add line of sight check to labels', 2147483647, 0); +INSERT INTO `idea_main` (`idea_id`, `idea_server`, `idea_who_added`, `idea_when_added`, `idea_script_ver`, `idea_pos_x`, `idea_pos_y`, `idea_pos_z`, `idea_rot_z`, `idea_message`, `idea_svr_start`, `idea_session`) VALUES + (206, 1, 1, 1609234666, '1.0', -365.363, 244.853, 60.8601, -0.181428, 'Remove cartel mansion gates in SSV', 2147483647, 0); +INSERT INTO `idea_main` (`idea_id`, `idea_server`, `idea_who_added`, `idea_when_added`, `idea_script_ver`, `idea_pos_x`, `idea_pos_y`, `idea_pos_z`, `idea_rot_z`, `idea_message`, `idea_svr_start`, `idea_session`) VALUES + (207, 1, 1, 1609235429, '1.0', 360.992, -1134.22, 22.9809, 0.125214, 'Delete gates at LCPD staunton station', 2147483647, 0); +INSERT INTO `idea_main` (`idea_id`, `idea_server`, `idea_who_added`, `idea_when_added`, `idea_script_ver`, `idea_pos_x`, `idea_pos_y`, `idea_pos_z`, `idea_rot_z`, `idea_message`, `idea_svr_start`, `idea_session`) VALUES + (208, 1, 1, 1609235439, '1.0', 346.371, -1157.53, 22.9809, 2.41115, 'Lock all job vehicles', 2147483647, 0); +INSERT INTO `idea_main` (`idea_id`, `idea_server`, `idea_who_added`, `idea_when_added`, `idea_script_ver`, `idea_pos_x`, `idea_pos_y`, `idea_pos_z`, `idea_rot_z`, `idea_message`, `idea_svr_start`, `idea_session`) VALUES + (209, 1, 1, 1609235450, '1.0', 334.967, -1187.78, 26.1682, -2.8111, 'Always respawn job vehicles as locked', 2147483647, 0); +INSERT INTO `idea_main` (`idea_id`, `idea_server`, `idea_who_added`, `idea_when_added`, `idea_script_ver`, `idea_pos_x`, `idea_pos_y`, `idea_pos_z`, `idea_rot_z`, `idea_message`, `idea_svr_start`, `idea_session`) VALUES + (210, 2, 1, 1609320596, '1.0', -807.673, -1186.79, 11.1053, -2.71469, 'Use pickup.isOnScreen check for label rendering', 2147483647, 0); +INSERT INTO `idea_main` (`idea_id`, `idea_server`, `idea_who_added`, `idea_when_added`, `idea_script_ver`, `idea_pos_x`, `idea_pos_y`, `idea_pos_z`, `idea_rot_z`, `idea_message`, `idea_svr_start`, `idea_session`) VALUES + (212, 2, 1, 1609322731, '1.0', -757.587, 558.332, 11.0974, -1.12629, 'Add cmds for biz buy/rent price', 2147483647, 0); +INSERT INTO `idea_main` (`idea_id`, `idea_server`, `idea_who_added`, `idea_when_added`, `idea_script_ver`, `idea_pos_x`, `idea_pos_y`, `idea_pos_z`, `idea_rot_z`, `idea_message`, `idea_svr_start`, `idea_session`) VALUES + (213, 2, 1, 1609322736, '1.0', -757.587, 558.332, 11.0974, -1.12629, 'Add cmds for house buy/rent price', 2147483647, 0); +INSERT INTO `idea_main` (`idea_id`, `idea_server`, `idea_who_added`, `idea_when_added`, `idea_script_ver`, `idea_pos_x`, `idea_pos_y`, `idea_pos_z`, `idea_rot_z`, `idea_message`, `idea_svr_start`, `idea_session`) VALUES + (214, 2, 1, 1609322861, '1.0', -877.584, 772.635, 11.0846, 0.274123, '(VC) Music records, record player, 8 track tapes', 2147483647, 0); +INSERT INTO `idea_main` (`idea_id`, `idea_server`, `idea_who_added`, `idea_when_added`, `idea_script_ver`, `idea_pos_x`, `idea_pos_y`, `idea_pos_z`, `idea_rot_z`, `idea_message`, `idea_svr_start`, `idea_session`) VALUES + (215, 1, 1, 1610089522, '1.0', 404.5, -1209.73, 25.8024, 3.13906, 'Staunton Patrol Sector 1', 1610089379, 0); +INSERT INTO `idea_main` (`idea_id`, `idea_server`, `idea_who_added`, `idea_when_added`, `idea_script_ver`, `idea_pos_x`, `idea_pos_y`, `idea_pos_z`, `idea_rot_z`, `idea_message`, `idea_svr_start`, `idea_session`) VALUES + (216, 1, 1, 1610089537, '1.0', 334.831, -1388.93, 25.8005, 1.56349, 'Staunton Patrol Sector 1', 1610089379, 0); +INSERT INTO `idea_main` (`idea_id`, `idea_server`, `idea_who_added`, `idea_when_added`, `idea_script_ver`, `idea_pos_x`, `idea_pos_y`, `idea_pos_z`, `idea_rot_z`, `idea_message`, `idea_svr_start`, `idea_session`) VALUES + (217, 1, 1, 1610089558, '1.0', 143.949, -1433.8, 25.802, -3.13242, 'Staunton Patrol Sector 1', 1610089379, 0); +INSERT INTO `idea_main` (`idea_id`, `idea_server`, `idea_who_added`, `idea_when_added`, `idea_script_ver`, `idea_pos_x`, `idea_pos_y`, `idea_pos_z`, `idea_rot_z`, `idea_message`, `idea_svr_start`, `idea_session`) VALUES + (218, 1, 1, 1610089570, '1.0', 144.79, -1592.07, 25.8019, 3.13841, 'Staunton Patrol Sector 1', 1610089379, 0); +INSERT INTO `idea_main` (`idea_id`, `idea_server`, `idea_who_added`, `idea_when_added`, `idea_script_ver`, `idea_pos_x`, `idea_pos_y`, `idea_pos_z`, `idea_rot_z`, `idea_message`, `idea_svr_start`, `idea_session`) VALUES + (219, 1, 1, 1610089581, '1.0', 49.9422, -1566.3, 25.8021, 0.0172569, 'Staunton Patrol Sector 1', 1610089379, 0); +INSERT INTO `idea_main` (`idea_id`, `idea_server`, `idea_who_added`, `idea_when_added`, `idea_script_ver`, `idea_pos_x`, `idea_pos_y`, `idea_pos_z`, `idea_rot_z`, `idea_message`, `idea_svr_start`, `idea_session`) VALUES + (220, 1, 1, 1610089596, '1.0', 48.9107, -1324.22, 25.8026, 0.00158491, 'Staunton Patrol Sector 1', 1610089379, 0); +INSERT INTO `idea_main` (`idea_id`, `idea_server`, `idea_who_added`, `idea_when_added`, `idea_script_ver`, `idea_pos_x`, `idea_pos_y`, `idea_pos_z`, `idea_rot_z`, `idea_message`, `idea_svr_start`, `idea_session`) VALUES + (221, 1, 1, 1610089611, '1.0', 50.0236, -1101.78, 25.8023, -0.00503862, 'Staunton Patrol Sector 1', 1610089379, 0); +INSERT INTO `idea_main` (`idea_id`, `idea_server`, `idea_who_added`, `idea_when_added`, `idea_script_ver`, `idea_pos_x`, `idea_pos_y`, `idea_pos_z`, `idea_rot_z`, `idea_message`, `idea_svr_start`, `idea_session`) VALUES + (222, 1, 1, 1610089621, '1.0', 131.694, -1111.31, 25.7952, -2.04836, 'Staunton Patrol Sector 1', 1610089379, 0); +INSERT INTO `idea_main` (`idea_id`, `idea_server`, `idea_who_added`, `idea_when_added`, `idea_script_ver`, `idea_pos_x`, `idea_pos_y`, `idea_pos_z`, `idea_rot_z`, `idea_message`, `idea_svr_start`, `idea_session`) VALUES + (223, 1, 1, 1610089630, '1.0', 189.424, -1063.86, 25.7998, -0.0182241, 'Staunton Patrol Sector 1', 1610089379, 0); +INSERT INTO `idea_main` (`idea_id`, `idea_server`, `idea_who_added`, `idea_when_added`, `idea_script_ver`, `idea_pos_x`, `idea_pos_y`, `idea_pos_z`, `idea_rot_z`, `idea_message`, `idea_svr_start`, `idea_session`) VALUES + (224, 1, 1, 1610089639, '1.0', 272.875, -1044.04, 25.8019, -1.59621, 'Staunton Patrol Sector 1', 1610089379, 0); +INSERT INTO `idea_main` (`idea_id`, `idea_server`, `idea_who_added`, `idea_when_added`, `idea_script_ver`, `idea_pos_x`, `idea_pos_y`, `idea_pos_z`, `idea_rot_z`, `idea_message`, `idea_svr_start`, `idea_session`) VALUES + (225, 1, 1, 1610089650, '1.0', 355.409, -847.512, 25.1725, -0.481276, 'Staunton Patrol Sector 1', 1610089379, 0); +INSERT INTO `idea_main` (`idea_id`, `idea_server`, `idea_who_added`, `idea_when_added`, `idea_script_ver`, `idea_pos_x`, `idea_pos_y`, `idea_pos_z`, `idea_rot_z`, `idea_message`, `idea_svr_start`, `idea_session`) VALUES + (226, 1, 1, 1610089671, '1.0', 521.08, -399.068, 20.9302, 1.57934, 'Staunton Patrol Sector 1', 1610089379, 0); +INSERT INTO `idea_main` (`idea_id`, `idea_server`, `idea_who_added`, `idea_when_added`, `idea_script_ver`, `idea_pos_x`, `idea_pos_y`, `idea_pos_z`, `idea_rot_z`, `idea_message`, `idea_svr_start`, `idea_session`) VALUES + (227, 1, 1, 1610089682, '1.0', 403.586, -471.898, 25.8008, -3.13068, 'Staunton Patrol Sector 1', 1610089379, 0); +INSERT INTO `idea_main` (`idea_id`, `idea_server`, `idea_who_added`, `idea_when_added`, `idea_script_ver`, `idea_pos_x`, `idea_pos_y`, `idea_pos_z`, `idea_rot_z`, `idea_message`, `idea_svr_start`, `idea_session`) VALUES + (228, 1, 1, 1610089689, '1.0', 403.915, -608.12, 25.7963, 3.13306, 'Staunton Patrol Sector 1', 1610089379, 0); +INSERT INTO `idea_main` (`idea_id`, `idea_server`, `idea_who_added`, `idea_when_added`, `idea_script_ver`, `idea_pos_x`, `idea_pos_y`, `idea_pos_z`, `idea_rot_z`, `idea_message`, `idea_svr_start`, `idea_session`) VALUES + (229, 1, 1, 1610089699, '1.0', 324.298, -687.727, 25.7945, 1.57342, 'Staunton Patrol Sector 1', 1610089379, 0); +INSERT INTO `idea_main` (`idea_id`, `idea_server`, `idea_who_added`, `idea_when_added`, `idea_script_ver`, `idea_pos_x`, `idea_pos_y`, `idea_pos_z`, `idea_rot_z`, `idea_message`, `idea_svr_start`, `idea_session`) VALUES + (230, 1, 1, 1610089708, '1.0', 230.278, -738.004, 25.8017, 2.5272, 'Staunton Patrol Sector 1', 1610089379, 0); +INSERT INTO `idea_main` (`idea_id`, `idea_server`, `idea_who_added`, `idea_when_added`, `idea_script_ver`, `idea_pos_x`, `idea_pos_y`, `idea_pos_z`, `idea_rot_z`, `idea_message`, `idea_svr_start`, `idea_session`) VALUES + (231, 1, 1, 1610089718, '1.0', 145.977, -907.481, 25.8045, 2.75241, 'Staunton Patrol Sector 1', 1610089379, 0); +INSERT INTO `idea_main` (`idea_id`, `idea_server`, `idea_who_added`, `idea_when_added`, `idea_script_ver`, `idea_pos_x`, `idea_pos_y`, `idea_pos_z`, `idea_rot_z`, `idea_message`, `idea_svr_start`, `idea_session`) VALUES + (232, 1, 1, 1610089735, '1.0', 81.1892, -924.272, 25.8088, 1.64597, 'Staunton Patrol Sector 1', 1610089379, 0); +INSERT INTO `idea_main` (`idea_id`, `idea_server`, `idea_who_added`, `idea_when_added`, `idea_script_ver`, `idea_pos_x`, `idea_pos_y`, `idea_pos_z`, `idea_rot_z`, `idea_message`, `idea_svr_start`, `idea_session`) VALUES + (233, 1, 1, 1610089752, '1.0', 35.0571, -1023.52, 25.7989, -3.13901, 'Staunton Patrol Sector 1', 1610089379, 0); +INSERT INTO `idea_main` (`idea_id`, `idea_server`, `idea_who_added`, `idea_when_added`, `idea_script_ver`, `idea_pos_x`, `idea_pos_y`, `idea_pos_z`, `idea_rot_z`, `idea_message`, `idea_svr_start`, `idea_session`) VALUES + (234, 1, 1, 1610089762, '1.0', 40.047, -1224.51, 25.801, 3.13417, 'Staunton Patrol Sector 1', 1610089379, 0); +INSERT INTO `idea_main` (`idea_id`, `idea_server`, `idea_who_added`, `idea_when_added`, `idea_script_ver`, `idea_pos_x`, `idea_pos_y`, `idea_pos_z`, `idea_rot_z`, `idea_message`, `idea_svr_start`, `idea_session`) VALUES + (235, 1, 1, 1610089771, '1.0', 105.924, -1313.85, 25.7972, -2.03191, 'Staunton Patrol Sector 1', 1610089379, 0); +INSERT INTO `idea_main` (`idea_id`, `idea_server`, `idea_who_added`, `idea_when_added`, `idea_script_ver`, `idea_pos_x`, `idea_pos_y`, `idea_pos_z`, `idea_rot_z`, `idea_message`, `idea_svr_start`, `idea_session`) VALUES + (236, 1, 1, 1610089783, '1.0', 149.367, -1377.78, 25.8016, 3.13387, 'Staunton Patrol Sector 1', 1610089379, 0); +INSERT INTO `idea_main` (`idea_id`, `idea_server`, `idea_who_added`, `idea_when_added`, `idea_script_ver`, `idea_pos_x`, `idea_pos_y`, `idea_pos_z`, `idea_rot_z`, `idea_message`, `idea_svr_start`, `idea_session`) VALUES + (237, 1, 1, 1610089793, '1.0', 271.09, -1399.14, 25.8019, -1.58546, 'Staunton Patrol Sector 1', 1610089379, 0); +INSERT INTO `idea_main` (`idea_id`, `idea_server`, `idea_who_added`, `idea_when_added`, `idea_script_ver`, `idea_pos_x`, `idea_pos_y`, `idea_pos_z`, `idea_rot_z`, `idea_message`, `idea_svr_start`, `idea_session`) VALUES + (238, 1, 1, 1610089820, '1.0', 303.644, -1079.71, 25.8029, -0.0351653, 'Staunton Patrol Sector 1', 1610089379, 0); +INSERT INTO `idea_main` (`idea_id`, `idea_server`, `idea_who_added`, `idea_when_added`, `idea_script_ver`, `idea_pos_x`, `idea_pos_y`, `idea_pos_z`, `idea_rot_z`, `idea_message`, `idea_svr_start`, `idea_session`) VALUES + (239, 1, 1, 1610089829, '1.0', 342.905, -873.693, 22.5513, -0.435446, 'Staunton Patrol Sector 1', 1610089379, 0); +INSERT INTO `idea_main` (`idea_id`, `idea_server`, `idea_who_added`, `idea_when_added`, `idea_script_ver`, `idea_pos_x`, `idea_pos_y`, `idea_pos_z`, `idea_rot_z`, `idea_message`, `idea_svr_start`, `idea_session`) VALUES + (240, 1, 1, 1610089849, '1.0', 542.573, -466.857, 23.3019, -0.472751, 'Staunton Patrol Sector 1', 1610089379, 0); +INSERT INTO `idea_main` (`idea_id`, `idea_server`, `idea_who_added`, `idea_when_added`, `idea_script_ver`, `idea_pos_x`, `idea_pos_y`, `idea_pos_z`, `idea_rot_z`, `idea_message`, `idea_svr_start`, `idea_session`) VALUES + (241, 1, 1, 1610089858, '1.0', 516.223, -398.79, 20.9548, 1.61617, 'Staunton Patrol Sector 1', 1610089379, 0); +INSERT INTO `idea_main` (`idea_id`, `idea_server`, `idea_who_added`, `idea_when_added`, `idea_script_ver`, `idea_pos_x`, `idea_pos_y`, `idea_pos_z`, `idea_rot_z`, `idea_message`, `idea_svr_start`, `idea_session`) VALUES + (242, 1, 1, 1610089867, '1.0', 404.847, -480.079, 25.7463, 3.12883, 'Staunton Patrol Sector 1', 1610089379, 0); +INSERT INTO `idea_main` (`idea_id`, `idea_server`, `idea_who_added`, `idea_when_added`, `idea_script_ver`, `idea_pos_x`, `idea_pos_y`, `idea_pos_z`, `idea_rot_z`, `idea_message`, `idea_svr_start`, `idea_session`) VALUES + (243, 1, 1, 1610089879, '1.0', 404.132, -908.893, 25.7912, 3.13617, 'Staunton Patrol Sector 1', 1610089379, 0); +INSERT INTO `idea_main` (`idea_id`, `idea_server`, `idea_who_added`, `idea_when_added`, `idea_script_ver`, `idea_pos_x`, `idea_pos_y`, `idea_pos_z`, `idea_rot_z`, `idea_message`, `idea_svr_start`, `idea_session`) VALUES + (244, 1, 1, 1610089888, '1.0', 403.389, -1098.75, 25.8034, 3.12562, 'Staunton Patrol Sector 1', 1610089379, 0); +INSERT INTO `idea_main` (`idea_id`, `idea_server`, `idea_who_added`, `idea_when_added`, `idea_script_ver`, `idea_pos_x`, `idea_pos_y`, `idea_pos_z`, `idea_rot_z`, `idea_message`, `idea_svr_start`, `idea_session`) VALUES + (256, 1, 1, 1610251067, '1.0', 928.993, -346.394, 9.86887, 1.77244, 'Add rgba colour picker', 1610250260, 0); +INSERT INTO `idea_main` (`idea_id`, `idea_server`, `idea_who_added`, `idea_when_added`, `idea_script_ver`, `idea_pos_x`, `idea_pos_y`, `idea_pos_z`, `idea_rot_z`, `idea_message`, `idea_svr_start`, `idea_session`) VALUES + (257, 1, 1, 1610251411, '1.0', 1308.86, -1017.92, 14.8858, -0.685351, 'Add RGBA colour saving to vehicle', 1610250260, 0); +INSERT INTO `idea_main` (`idea_id`, `idea_server`, `idea_who_added`, `idea_when_added`, `idea_script_ver`, `idea_pos_x`, `idea_pos_y`, `idea_pos_z`, `idea_rot_z`, `idea_message`, `idea_svr_start`, `idea_session`) VALUES + (258, 1, 4, 1610252071, '1.0', 1046.38, -666.92, 14.8227, 0.180096, 'Add character scale slider to new character window', 1610251764, 0); +INSERT INTO `idea_main` (`idea_id`, `idea_server`, `idea_who_added`, `idea_when_added`, `idea_script_ver`, `idea_pos_x`, `idea_pos_y`, `idea_pos_z`, `idea_rot_z`, `idea_message`, `idea_svr_start`, `idea_session`) VALUES + (259, 1, 4, 1610252083, '1.0', 1046.38, -666.92, 14.8227, 0.180096, 'Show character next to new character window', 1610251764, 0); +INSERT INTO `idea_main` (`idea_id`, `idea_server`, `idea_who_added`, `idea_when_added`, `idea_script_ver`, `idea_pos_x`, `idea_pos_y`, `idea_pos_z`, `idea_rot_z`, `idea_message`, `idea_svr_start`, `idea_session`) VALUES + (262, 1, 1, 1610352865, '1.0', 1166.35, -1106.47, 11.8602, -1.58256, 'Add biz hasGarage with enter/exit pos/int/vw', 1610322516, 0); +INSERT INTO `idea_main` (`idea_id`, `idea_server`, `idea_who_added`, `idea_when_added`, `idea_script_ver`, `idea_pos_x`, `idea_pos_y`, `idea_pos_z`, `idea_rot_z`, `idea_message`, `idea_svr_start`, `idea_session`) VALUES + (263, 1, 1, 1610764681, '1.0', 1132.85, -678.996, 14.9727, -3.12585, 'Command to revert account hotkeys back to default', 1610763688, 0); +INSERT INTO `idea_main` (`idea_id`, `idea_server`, `idea_who_added`, `idea_when_added`, `idea_script_ver`, `idea_pos_x`, `idea_pos_y`, `idea_pos_z`, `idea_rot_z`, `idea_message`, `idea_svr_start`, `idea_session`) VALUES + (264, 1, 2, 1610764796, '1.0', 1134.92, -685.119, 14.9727, 1.70852, 'List of vehicle names (to be used with /addveh, /tempveh).', 1610763688, 0); +INSERT INTO `idea_main` (`idea_id`, `idea_server`, `idea_who_added`, `idea_when_added`, `idea_script_ver`, `idea_pos_x`, `idea_pos_y`, `idea_pos_z`, `idea_rot_z`, `idea_message`, `idea_svr_start`, `idea_session`) VALUES + (265, 1, 1, 1610765130, '1.0', 958.348, -673.949, 14.9727, -0.0243053, 'Add emoji replace', 1610763688, 0); +INSERT INTO `idea_main` (`idea_id`, `idea_server`, `idea_who_added`, `idea_when_added`, `idea_script_ver`, `idea_pos_x`, `idea_pos_y`, `idea_pos_z`, `idea_rot_z`, `idea_message`, `idea_svr_start`, `idea_session`) VALUES + (266, 1, 2, 1610765274, '1.0', 953.956, -685.45, 14.9727, -0.525081, 'Command to open/close a vehicle trunk?', 1610763688, 0); +INSERT INTO `idea_main` (`idea_id`, `idea_server`, `idea_who_added`, `idea_when_added`, `idea_script_ver`, `idea_pos_x`, `idea_pos_y`, `idea_pos_z`, `idea_rot_z`, `idea_message`, `idea_svr_start`, `idea_session`) VALUES + (267, 1, 1, 1610765958, '1.0', 1092.34, -635.6, 14.9727, 1.57098, 'Prevent vehicle burning/exploding. Just disable it', 1610763688, 0); +INSERT INTO `idea_main` (`idea_id`, `idea_server`, `idea_who_added`, `idea_when_added`, `idea_script_ver`, `idea_pos_x`, `idea_pos_y`, `idea_pos_z`, `idea_rot_z`, `idea_message`, `idea_svr_start`, `idea_session`) VALUES + (271, 1, 1, 1610794424, '1.0', 1128.3, -631.851, 14.8227, -3.12625, 'GUI to show list of items and current market info (multipliers and such)', 1610794269, 0); +/*!40000 ALTER TABLE `idea_main` ENABLE KEYS */; + +-- Dumping structure for table db24053.ins_acct +CREATE TABLE IF NOT EXISTS `ins_acct` ( + `ins_acct_id` int(11) NOT NULL AUTO_INCREMENT, + `ins_acct_server` tinyint(2) NOT NULL DEFAULT '0', + `ins_acct_provider` int(11) NOT NULL DEFAULT '0', + `ins_acct_type` tinyint(2) NOT NULL DEFAULT '0', + `ins_acct_plan` int(11) NOT NULL DEFAULT '0', + `ins_acct_owner_type` int(11) NOT NULL DEFAULT '0', + `ins_acct_owner_id` int(11) NOT NULL DEFAULT '0', + `ins_acct_active` tinyint(1) NOT NULL DEFAULT '0', + `ins_acct_entity_type` int(11) NOT NULL DEFAULT '0', + `ins_acct_entity_id` int(11) NOT NULL DEFAULT '0', + PRIMARY KEY (`ins_acct_id`) USING BTREE +) ENGINE=InnoDB DEFAULT CHARSET=latin1 COMMENT='Insurance - Accounts'; + +-- Dumping data for table db24053.ins_acct: ~0 rows (approximately) +/*!40000 ALTER TABLE `ins_acct` DISABLE KEYS */; +/*!40000 ALTER TABLE `ins_acct` ENABLE KEYS */; + +-- Dumping structure for table db24053.ins_acct_history +CREATE TABLE IF NOT EXISTS `ins_acct_history` ( + `ins_acct_history_id` int(11) NOT NULL AUTO_INCREMENT, + `ins_acct_history_acct` int(11) NOT NULL DEFAULT '0', + `ins_acct_history_type` int(11) NOT NULL DEFAULT '0', + `ins_acct_history_paid` int(11) NOT NULL DEFAULT '0', + `ins_acct_history_total` int(11) NOT NULL DEFAULT '0', + `ins_acct_history_deleted` tinyint(1) NOT NULL DEFAULT '0', + `ins_acct_history_comment` varchar(256) NOT NULL DEFAULT '0', + PRIMARY KEY (`ins_acct_history_id`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Insurance - Account History'; + +-- Dumping data for table db24053.ins_acct_history: ~0 rows (approximately) +/*!40000 ALTER TABLE `ins_acct_history` DISABLE KEYS */; +/*!40000 ALTER TABLE `ins_acct_history` ENABLE KEYS */; + +-- Dumping structure for table db24053.ins_plan +CREATE TABLE IF NOT EXISTS `ins_plan` ( + `ins_plan_id` int(11) NOT NULL AUTO_INCREMENT, + `ins_plan_name` varchar(64) NOT NULL DEFAULT 'Unnamed', + `ins_plan_provider` int(11) NOT NULL DEFAULT '0', + `ins_plan_entity_type` int(11) NOT NULL DEFAULT '0', + `ins_plan_enabled` int(11) NOT NULL DEFAULT '0', + `ins_plan_setup_fee` int(11) NOT NULL DEFAULT '0', + `ins_plan_max_coverage` int(11) NOT NULL DEFAULT '0', + `ins_plan_min_coverage` int(11) NOT NULL DEFAULT '0', + `ins_plan_max_payout` int(11) NOT NULL DEFAULT '0', + `ins_plan_rate` int(11) NOT NULL DEFAULT '0', + `ins_plan_rate_multiplier` int(11) NOT NULL DEFAULT '0', + `ins_plan_minscore` int(11) NOT NULL DEFAULT '0', + PRIMARY KEY (`ins_plan_id`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Insurance - Plans'; + +-- Dumping data for table db24053.ins_plan: ~0 rows (approximately) +/*!40000 ALTER TABLE `ins_plan` DISABLE KEYS */; +/*!40000 ALTER TABLE `ins_plan` ENABLE KEYS */; + +-- Dumping structure for table db24053.ins_provider +CREATE TABLE IF NOT EXISTS `ins_provider` ( + `insurance_provider_id` mediumint(9) NOT NULL DEFAULT '0', + `insurance_provider_server` tinyint(2) NOT NULL DEFAULT '0', + `insurance_provider_name` varchar(64) NOT NULL DEFAULT '0', + `insurance_provider_type_flags` int(32) NOT NULL DEFAULT '0', + `insurance_provider_active` tinyint(1) NOT NULL DEFAULT '1', + `insurance_provider_owner_type` tinyint(1) NOT NULL DEFAULT '0', + `insurance_provider_owner_id` mediumint(9) NOT NULL DEFAULT '0', + PRIMARY KEY (`insurance_provider_id`) +) ENGINE=InnoDB DEFAULT CHARSET=latin1 COMMENT='Insurance - Providers'; + +-- Dumping data for table db24053.ins_provider: ~0 rows (approximately) +/*!40000 ALTER TABLE `ins_provider` DISABLE KEYS */; +/*!40000 ALTER TABLE `ins_provider` ENABLE KEYS */; + +-- Dumping structure for table db24053.int_main +CREATE TABLE IF NOT EXISTS `int_main` ( + `int_id` int(11) NOT NULL AUTO_INCREMENT, + `int_server` int(11) NOT NULL DEFAULT '0', + `int_name` varchar(50) NOT NULL DEFAULT 'Unnamed', + `int_type` int(11) NOT NULL DEFAULT '0', + `int_entrance_pos_x` float NOT NULL DEFAULT '0', + `int_entrance_pos_y` float NOT NULL DEFAULT '0', + `int_entrance_pos_z` float NOT NULL DEFAULT '0', + `int_entrance_rot_z` float NOT NULL DEFAULT '0', + `int_entrance_int` int(11) NOT NULL DEFAULT '0', + `int_entrance_vw` int(11) NOT NULL DEFAULT '0', + `int_exit_pos_x` float NOT NULL DEFAULT '0', + `int_exit_pos_y` float NOT NULL DEFAULT '0', + `int_exit_pos_z` float NOT NULL DEFAULT '0', + `int_exit_rot_z` float NOT NULL DEFAULT '0', + `int_exit_int` int(11) NOT NULL DEFAULT '0', + `int_exit_vw` int(11) NOT NULL DEFAULT '0', + PRIMARY KEY (`int_id`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Interiors'; + +-- Dumping data for table db24053.int_main: ~0 rows (approximately) +/*!40000 ALTER TABLE `int_main` DISABLE KEYS */; +/*!40000 ALTER TABLE `int_main` ENABLE KEYS */; + +-- Dumping structure for table db24053.item_main +CREATE TABLE IF NOT EXISTS `item_main` ( + `item_id` int(11) NOT NULL AUTO_INCREMENT, + `item_server` int(11) NOT NULL DEFAULT '0', + `item_type` int(11) NOT NULL DEFAULT '0', + `item_buy_price` int(11) NOT NULL DEFAULT '0', + `item_owner_type` int(11) NOT NULL DEFAULT '0', + `item_owner_id` int(11) NOT NULL DEFAULT '0', + `item_amount` int(11) NOT NULL DEFAULT '0', + `item_pos_x` float NOT NULL DEFAULT '0', + `item_pos_y` float NOT NULL DEFAULT '0', + `item_pos_z` float NOT NULL DEFAULT '0', + `item_int` int(11) NOT NULL DEFAULT '0', + `item_vw` int(11) NOT NULL DEFAULT '0', + `item_value` int(11) NOT NULL DEFAULT '0', + PRIMARY KEY (`item_id`) +) ENGINE=InnoDB AUTO_INCREMENT=3 DEFAULT CHARSET=utf8 COMMENT='Items'; + +-- Dumping data for table db24053.item_main: ~1 rows (approximately) +/*!40000 ALTER TABLE `item_main` DISABLE KEYS */; +INSERT INTO `item_main` (`item_id`, `item_server`, `item_type`, `item_buy_price`, `item_owner_type`, `item_owner_id`, `item_amount`, `item_pos_x`, `item_pos_y`, `item_pos_z`, `item_int`, `item_vw`, `item_value`) VALUES + (2, 4, 208, 0, 1, 8, 1, 0, 0, 0, 0, 0, 788500); +/*!40000 ALTER TABLE `item_main` ENABLE KEYS */; + +-- Dumping structure for table db24053.item_type +CREATE TABLE IF NOT EXISTS `item_type` ( + `item_type_id` int(11) NOT NULL AUTO_INCREMENT, + `item_type_server` int(11) NOT NULL DEFAULT '0', + `item_type_name` varchar(64) NOT NULL DEFAULT '', + `item_type_use_type` int(11) NOT NULL DEFAULT '0', + `item_type_use_id` int(11) NOT NULL DEFAULT '0', + `item_type_use_value` int(11) NOT NULL DEFAULT '0', + `item_type_order_price` int(11) NOT NULL DEFAULT '0', + `item_type_drop_type` int(11) NOT NULL DEFAULT '0', + `item_type_drop_model` int(11) NOT NULL DEFAULT '0', + `item_type_drop_pos_x` float NOT NULL DEFAULT '0', + `item_type_drop_pos_y` float NOT NULL DEFAULT '0', + `item_type_drop_pos_z` float NOT NULL DEFAULT '0', + `item_type_drop_rot_x` float NOT NULL DEFAULT '0', + `item_type_drop_rot_y` float NOT NULL DEFAULT '0', + `item_type_drop_rot_z` float NOT NULL DEFAULT '0', + `item_type_drop_scale_x` float NOT NULL DEFAULT '0', + `item_type_drop_scale_y` float NOT NULL DEFAULT '0', + `item_type_drop_scale_z` float NOT NULL DEFAULT '0', + `item_type_image_small` varchar(50) NOT NULL DEFAULT 'no-image.png', + `item_type_image_large` varchar(50) NOT NULL DEFAULT 'no-image.png', + `item_type_image_hotbar` varchar(50) NOT NULL DEFAULT 'no-image.png', + `item_type_size` int(11) NOT NULL DEFAULT '0', + `item_type_capacity` int(11) NOT NULL DEFAULT '0', + `item_type_demand_multiplier` float NOT NULL DEFAULT '1', + `item_type_supply_multiplier` float NOT NULL DEFAULT '1', + `item_type_risk_multiplier` float NOT NULL DEFAULT '1', + `item_type_enabled` tinyint(4) NOT NULL DEFAULT '1', + `item_type_delay_switch` int(11) NOT NULL DEFAULT '0', + `item_type_delay_use` int(11) NOT NULL DEFAULT '0', + `item_type_delay_pickup` int(11) NOT NULL DEFAULT '0', + `item_type_delay_put` int(11) NOT NULL DEFAULT '0', + `item_type_delay_take` int(11) NOT NULL DEFAULT '0', + `item_type_delay_give` int(11) NOT NULL DEFAULT '0', + `item_type_delay_drop` int(11) NOT NULL DEFAULT '0', + PRIMARY KEY (`item_type_id`), + KEY `item_type_server` (`item_type_server`), + CONSTRAINT `fk_item_type_server` FOREIGN KEY (`item_type_server`) REFERENCES `svr_main` (`svr_id`) ON DELETE CASCADE ON UPDATE CASCADE +) ENGINE=InnoDB AUTO_INCREMENT=212 DEFAULT CHARSET=utf8 COMMENT='Item Types'; + +-- Dumping data for table db24053.item_type: ~194 rows (approximately) +/*!40000 ALTER TABLE `item_type` DISABLE KEYS */; +INSERT INTO `item_type` (`item_type_id`, `item_type_server`, `item_type_name`, `item_type_use_type`, `item_type_use_id`, `item_type_use_value`, `item_type_order_price`, `item_type_drop_type`, `item_type_drop_model`, `item_type_drop_pos_x`, `item_type_drop_pos_y`, `item_type_drop_pos_z`, `item_type_drop_rot_x`, `item_type_drop_rot_y`, `item_type_drop_rot_z`, `item_type_drop_scale_x`, `item_type_drop_scale_y`, `item_type_drop_scale_z`, `item_type_image_small`, `item_type_image_large`, `item_type_image_hotbar`, `item_type_size`, `item_type_capacity`, `item_type_demand_multiplier`, `item_type_supply_multiplier`, `item_type_risk_multiplier`, `item_type_enabled`, `item_type_delay_switch`, `item_type_delay_use`, `item_type_delay_pickup`, `item_type_delay_put`, `item_type_delay_take`, `item_type_delay_give`, `item_type_delay_drop`) VALUES + (1, 1, 'Baseball Bat', 1, 1, 0, 25, 1, 172, 0, 0, -1, 1.6, 0, 0, 0, 0, 0, 'no-image.png', 'no-image.png', 'no-image.png', 0, 0, 1, 1, 1, 1, 500, 1500, 750, 750, 750, 500, 500); +INSERT INTO `item_type` (`item_type_id`, `item_type_server`, `item_type_name`, `item_type_use_type`, `item_type_use_id`, `item_type_use_value`, `item_type_order_price`, `item_type_drop_type`, `item_type_drop_model`, `item_type_drop_pos_x`, `item_type_drop_pos_y`, `item_type_drop_pos_z`, `item_type_drop_rot_x`, `item_type_drop_rot_y`, `item_type_drop_rot_z`, `item_type_drop_scale_x`, `item_type_drop_scale_y`, `item_type_drop_scale_z`, `item_type_image_small`, `item_type_image_large`, `item_type_image_hotbar`, `item_type_size`, `item_type_capacity`, `item_type_demand_multiplier`, `item_type_supply_multiplier`, `item_type_risk_multiplier`, `item_type_enabled`, `item_type_delay_switch`, `item_type_delay_use`, `item_type_delay_pickup`, `item_type_delay_put`, `item_type_delay_take`, `item_type_delay_give`, `item_type_delay_drop`) VALUES + (5, 1, 'Colt 45', 1, 2, 0, 350, 1, 173, 0, 0, -1, 1.6, 0, 0, 0, 0, 0, 'no-image.png', 'no-image.png', 'no-image.png', 0, 0, 1, 1, 2, 1, 500, 1500, 750, 750, 750, 500, 500); +INSERT INTO `item_type` (`item_type_id`, `item_type_server`, `item_type_name`, `item_type_use_type`, `item_type_use_id`, `item_type_use_value`, `item_type_order_price`, `item_type_drop_type`, `item_type_drop_model`, `item_type_drop_pos_x`, `item_type_drop_pos_y`, `item_type_drop_pos_z`, `item_type_drop_rot_x`, `item_type_drop_rot_y`, `item_type_drop_rot_z`, `item_type_drop_scale_x`, `item_type_drop_scale_y`, `item_type_drop_scale_z`, `item_type_image_small`, `item_type_image_large`, `item_type_image_hotbar`, `item_type_size`, `item_type_capacity`, `item_type_demand_multiplier`, `item_type_supply_multiplier`, `item_type_risk_multiplier`, `item_type_enabled`, `item_type_delay_switch`, `item_type_delay_use`, `item_type_delay_pickup`, `item_type_delay_put`, `item_type_delay_take`, `item_type_delay_give`, `item_type_delay_drop`) VALUES + (6, 1, 'Uzi', 1, 3, 0, 500, 1, 178, 0, 0, -1, 1.6, 0, 0, 0, 0, 0, 'no-image.png', 'no-image.png', 'no-image.png', 0, 0, 1, 1, 3, 1, 500, 1500, 750, 750, 750, 500, 500); +INSERT INTO `item_type` (`item_type_id`, `item_type_server`, `item_type_name`, `item_type_use_type`, `item_type_use_id`, `item_type_use_value`, `item_type_order_price`, `item_type_drop_type`, `item_type_drop_model`, `item_type_drop_pos_x`, `item_type_drop_pos_y`, `item_type_drop_pos_z`, `item_type_drop_rot_x`, `item_type_drop_rot_y`, `item_type_drop_rot_z`, `item_type_drop_scale_x`, `item_type_drop_scale_y`, `item_type_drop_scale_z`, `item_type_image_small`, `item_type_image_large`, `item_type_image_hotbar`, `item_type_size`, `item_type_capacity`, `item_type_demand_multiplier`, `item_type_supply_multiplier`, `item_type_risk_multiplier`, `item_type_enabled`, `item_type_delay_switch`, `item_type_delay_use`, `item_type_delay_pickup`, `item_type_delay_put`, `item_type_delay_take`, `item_type_delay_give`, `item_type_delay_drop`) VALUES + (7, 1, 'Shotgun', 1, 4, 0, 450, 1, 176, 0, 0, -1, 1.6, 0, 0, 0, 0, 0, 'no-image.png', 'no-image.png', 'no-image.png', 0, 0, 1, 1, 3, 1, 500, 1500, 750, 750, 750, 500, 500); +INSERT INTO `item_type` (`item_type_id`, `item_type_server`, `item_type_name`, `item_type_use_type`, `item_type_use_id`, `item_type_use_value`, `item_type_order_price`, `item_type_drop_type`, `item_type_drop_model`, `item_type_drop_pos_x`, `item_type_drop_pos_y`, `item_type_drop_pos_z`, `item_type_drop_rot_x`, `item_type_drop_rot_y`, `item_type_drop_rot_z`, `item_type_drop_scale_x`, `item_type_drop_scale_y`, `item_type_drop_scale_z`, `item_type_image_small`, `item_type_image_large`, `item_type_image_hotbar`, `item_type_size`, `item_type_capacity`, `item_type_demand_multiplier`, `item_type_supply_multiplier`, `item_type_risk_multiplier`, `item_type_enabled`, `item_type_delay_switch`, `item_type_delay_use`, `item_type_delay_pickup`, `item_type_delay_put`, `item_type_delay_take`, `item_type_delay_give`, `item_type_delay_drop`) VALUES + (8, 1, 'AK-47', 1, 5, 0, 1000, 1, 171, 0, 0, -1, 1.6, 0, 0, 0, 0, 0, 'no-image.png', 'no-image.png', 'no-image.png', 0, 0, 1, 1, 5, 1, 500, 1500, 750, 750, 750, 500, 500); +INSERT INTO `item_type` (`item_type_id`, `item_type_server`, `item_type_name`, `item_type_use_type`, `item_type_use_id`, `item_type_use_value`, `item_type_order_price`, `item_type_drop_type`, `item_type_drop_model`, `item_type_drop_pos_x`, `item_type_drop_pos_y`, `item_type_drop_pos_z`, `item_type_drop_rot_x`, `item_type_drop_rot_y`, `item_type_drop_rot_z`, `item_type_drop_scale_x`, `item_type_drop_scale_y`, `item_type_drop_scale_z`, `item_type_image_small`, `item_type_image_large`, `item_type_image_hotbar`, `item_type_size`, `item_type_capacity`, `item_type_demand_multiplier`, `item_type_supply_multiplier`, `item_type_risk_multiplier`, `item_type_enabled`, `item_type_delay_switch`, `item_type_delay_use`, `item_type_delay_pickup`, `item_type_delay_put`, `item_type_delay_take`, `item_type_delay_give`, `item_type_delay_drop`) VALUES + (9, 1, 'M16', 1, 6, 0, 2000, 1, 180, 0, 0, -1, 1.6, 0, 0, 0, 0, 0, 'no-image.png', 'no-image.png', 'no-image.png', 0, 0, 1, 1, 5, 1, 500, 1500, 750, 750, 750, 500, 500); +INSERT INTO `item_type` (`item_type_id`, `item_type_server`, `item_type_name`, `item_type_use_type`, `item_type_use_id`, `item_type_use_value`, `item_type_order_price`, `item_type_drop_type`, `item_type_drop_model`, `item_type_drop_pos_x`, `item_type_drop_pos_y`, `item_type_drop_pos_z`, `item_type_drop_rot_x`, `item_type_drop_rot_y`, `item_type_drop_rot_z`, `item_type_drop_scale_x`, `item_type_drop_scale_y`, `item_type_drop_scale_z`, `item_type_image_small`, `item_type_image_large`, `item_type_image_hotbar`, `item_type_size`, `item_type_capacity`, `item_type_demand_multiplier`, `item_type_supply_multiplier`, `item_type_risk_multiplier`, `item_type_enabled`, `item_type_delay_switch`, `item_type_delay_use`, `item_type_delay_pickup`, `item_type_delay_put`, `item_type_delay_take`, `item_type_delay_give`, `item_type_delay_drop`) VALUES + (10, 1, 'Sniper Rifle', 1, 7, 0, 2500, 1, 177, 0, 0, -1, 1.6, 0, 0, 0, 0, 0, 'no-image.png', 'no-image.png', 'no-image.png', 0, 0, 1, 1, 5, 1, 500, 1500, 750, 750, 750, 500, 500); +INSERT INTO `item_type` (`item_type_id`, `item_type_server`, `item_type_name`, `item_type_use_type`, `item_type_use_id`, `item_type_use_value`, `item_type_order_price`, `item_type_drop_type`, `item_type_drop_model`, `item_type_drop_pos_x`, `item_type_drop_pos_y`, `item_type_drop_pos_z`, `item_type_drop_rot_x`, `item_type_drop_rot_y`, `item_type_drop_rot_z`, `item_type_drop_scale_x`, `item_type_drop_scale_y`, `item_type_drop_scale_z`, `item_type_image_small`, `item_type_image_large`, `item_type_image_hotbar`, `item_type_size`, `item_type_capacity`, `item_type_demand_multiplier`, `item_type_supply_multiplier`, `item_type_risk_multiplier`, `item_type_enabled`, `item_type_delay_switch`, `item_type_delay_use`, `item_type_delay_pickup`, `item_type_delay_put`, `item_type_delay_take`, `item_type_delay_give`, `item_type_delay_drop`) VALUES + (11, 1, 'RPG', 1, 8, 0, 10000, 1, 175, 0, 0, -1, 1.6, 0, 0, 0, 0, 0, 'no-image.png', 'no-image.png', 'no-image.png', 0, 0, 1, 1, 8, 1, 500, 1500, 750, 750, 750, 500, 500); +INSERT INTO `item_type` (`item_type_id`, `item_type_server`, `item_type_name`, `item_type_use_type`, `item_type_use_id`, `item_type_use_value`, `item_type_order_price`, `item_type_drop_type`, `item_type_drop_model`, `item_type_drop_pos_x`, `item_type_drop_pos_y`, `item_type_drop_pos_z`, `item_type_drop_rot_x`, `item_type_drop_rot_y`, `item_type_drop_rot_z`, `item_type_drop_scale_x`, `item_type_drop_scale_y`, `item_type_drop_scale_z`, `item_type_image_small`, `item_type_image_large`, `item_type_image_hotbar`, `item_type_size`, `item_type_capacity`, `item_type_demand_multiplier`, `item_type_supply_multiplier`, `item_type_risk_multiplier`, `item_type_enabled`, `item_type_delay_switch`, `item_type_delay_use`, `item_type_delay_pickup`, `item_type_delay_put`, `item_type_delay_take`, `item_type_delay_give`, `item_type_delay_drop`) VALUES + (12, 1, 'Flamethrower', 1, 9, 0, 7500, 1, 181, 0, 0, -1, 1.6, 0, 0, 0, 0, 0, 'no-image.png', 'no-image.png', 'no-image.png', 0, 0, 1, 1, 6, 1, 500, 1500, 750, 750, 750, 500, 500); +INSERT INTO `item_type` (`item_type_id`, `item_type_server`, `item_type_name`, `item_type_use_type`, `item_type_use_id`, `item_type_use_value`, `item_type_order_price`, `item_type_drop_type`, `item_type_drop_model`, `item_type_drop_pos_x`, `item_type_drop_pos_y`, `item_type_drop_pos_z`, `item_type_drop_rot_x`, `item_type_drop_rot_y`, `item_type_drop_rot_z`, `item_type_drop_scale_x`, `item_type_drop_scale_y`, `item_type_drop_scale_z`, `item_type_image_small`, `item_type_image_large`, `item_type_image_hotbar`, `item_type_size`, `item_type_capacity`, `item_type_demand_multiplier`, `item_type_supply_multiplier`, `item_type_risk_multiplier`, `item_type_enabled`, `item_type_delay_switch`, `item_type_delay_use`, `item_type_delay_pickup`, `item_type_delay_put`, `item_type_delay_take`, `item_type_delay_give`, `item_type_delay_drop`) VALUES + (13, 1, 'Molotov', 1, 10, 0, 150, 1, 174, 0, 0, -1, 1.6, 0, 0, 0, 0, 0, 'no-image.png', 'no-image.png', 'no-image.png', 0, 0, 1, 1, 3, 1, 500, 1500, 750, 750, 750, 500, 500); +INSERT INTO `item_type` (`item_type_id`, `item_type_server`, `item_type_name`, `item_type_use_type`, `item_type_use_id`, `item_type_use_value`, `item_type_order_price`, `item_type_drop_type`, `item_type_drop_model`, `item_type_drop_pos_x`, `item_type_drop_pos_y`, `item_type_drop_pos_z`, `item_type_drop_rot_x`, `item_type_drop_rot_y`, `item_type_drop_rot_z`, `item_type_drop_scale_x`, `item_type_drop_scale_y`, `item_type_drop_scale_z`, `item_type_image_small`, `item_type_image_large`, `item_type_image_hotbar`, `item_type_size`, `item_type_capacity`, `item_type_demand_multiplier`, `item_type_supply_multiplier`, `item_type_risk_multiplier`, `item_type_enabled`, `item_type_delay_switch`, `item_type_delay_use`, `item_type_delay_pickup`, `item_type_delay_put`, `item_type_delay_take`, `item_type_delay_give`, `item_type_delay_drop`) VALUES + (14, 1, 'Grenade', 1, 11, 0, 500, 1, 170, 0, 0, -1, 1.6, 0, 0, 0, 0, 0, 'no-image.png', 'no-image.png', 'no-image.png', 0, 0, 1, 1, 5, 1, 500, 1500, 750, 750, 750, 500, 500); +INSERT INTO `item_type` (`item_type_id`, `item_type_server`, `item_type_name`, `item_type_use_type`, `item_type_use_id`, `item_type_use_value`, `item_type_order_price`, `item_type_drop_type`, `item_type_drop_model`, `item_type_drop_pos_x`, `item_type_drop_pos_y`, `item_type_drop_pos_z`, `item_type_drop_rot_x`, `item_type_drop_rot_y`, `item_type_drop_rot_z`, `item_type_drop_scale_x`, `item_type_drop_scale_y`, `item_type_drop_scale_z`, `item_type_image_small`, `item_type_image_large`, `item_type_image_hotbar`, `item_type_size`, `item_type_capacity`, `item_type_demand_multiplier`, `item_type_supply_multiplier`, `item_type_risk_multiplier`, `item_type_enabled`, `item_type_delay_switch`, `item_type_delay_use`, `item_type_delay_pickup`, `item_type_delay_put`, `item_type_delay_take`, `item_type_delay_give`, `item_type_delay_drop`) VALUES + (15, 1, 'Remote', 1, 0, 0, 0, 1, 182, 0, 0, -1, 1.6, 0, 0, 0, 0, 0, 'no-image.png', 'no-image.png', 'no-image.png', 0, 0, 1, 1, 1, 1, 500, 1500, 750, 750, 750, 500, 500); +INSERT INTO `item_type` (`item_type_id`, `item_type_server`, `item_type_name`, `item_type_use_type`, `item_type_use_id`, `item_type_use_value`, `item_type_order_price`, `item_type_drop_type`, `item_type_drop_model`, `item_type_drop_pos_x`, `item_type_drop_pos_y`, `item_type_drop_pos_z`, `item_type_drop_rot_x`, `item_type_drop_rot_y`, `item_type_drop_rot_z`, `item_type_drop_scale_x`, `item_type_drop_scale_y`, `item_type_drop_scale_z`, `item_type_image_small`, `item_type_image_large`, `item_type_image_hotbar`, `item_type_size`, `item_type_capacity`, `item_type_demand_multiplier`, `item_type_supply_multiplier`, `item_type_risk_multiplier`, `item_type_enabled`, `item_type_delay_switch`, `item_type_delay_use`, `item_type_delay_pickup`, `item_type_delay_put`, `item_type_delay_take`, `item_type_delay_give`, `item_type_delay_drop`) VALUES + (16, 1, 'Phone', 3, 0, 0, 250, 1, 182, 0, 0, -1, 1.6, 0, 0, 0, 0.5, 1.3, 'no-image.png', 'no-image.png', 'no-image.png', 0, 0, 1, 1, 1, 1, 500, 1500, 750, 750, 750, 500, 500); +INSERT INTO `item_type` (`item_type_id`, `item_type_server`, `item_type_name`, `item_type_use_type`, `item_type_use_id`, `item_type_use_value`, `item_type_order_price`, `item_type_drop_type`, `item_type_drop_model`, `item_type_drop_pos_x`, `item_type_drop_pos_y`, `item_type_drop_pos_z`, `item_type_drop_rot_x`, `item_type_drop_rot_y`, `item_type_drop_rot_z`, `item_type_drop_scale_x`, `item_type_drop_scale_y`, `item_type_drop_scale_z`, `item_type_image_small`, `item_type_image_large`, `item_type_image_hotbar`, `item_type_size`, `item_type_capacity`, `item_type_demand_multiplier`, `item_type_supply_multiplier`, `item_type_risk_multiplier`, `item_type_enabled`, `item_type_delay_switch`, `item_type_delay_use`, `item_type_delay_pickup`, `item_type_delay_put`, `item_type_delay_take`, `item_type_delay_give`, `item_type_delay_drop`) VALUES + (25, 1, 'Radio', 32, 0, 0, 0, 1, 182, 0, 0, -1, 1.6, 0, 0, 0, 0, 0, 'no-image.png', 'no-image.png', 'no-image.png', 0, 0, 1, 1, 1, 1, 500, 1500, 750, 750, 750, 500, 500); +INSERT INTO `item_type` (`item_type_id`, `item_type_server`, `item_type_name`, `item_type_use_type`, `item_type_use_id`, `item_type_use_value`, `item_type_order_price`, `item_type_drop_type`, `item_type_drop_model`, `item_type_drop_pos_x`, `item_type_drop_pos_y`, `item_type_drop_pos_z`, `item_type_drop_rot_x`, `item_type_drop_rot_y`, `item_type_drop_rot_z`, `item_type_drop_scale_x`, `item_type_drop_scale_y`, `item_type_drop_scale_z`, `item_type_image_small`, `item_type_image_large`, `item_type_image_hotbar`, `item_type_size`, `item_type_capacity`, `item_type_demand_multiplier`, `item_type_supply_multiplier`, `item_type_risk_multiplier`, `item_type_enabled`, `item_type_delay_switch`, `item_type_delay_use`, `item_type_delay_pickup`, `item_type_delay_put`, `item_type_delay_take`, `item_type_delay_give`, `item_type_delay_drop`) VALUES + (29, 1, 'Pot Seed', 13, 0, 0, 2, 1, 1319, 0, 0, -1, 1.6, 0, 0, 0, 0, 0, 'no-image.png', 'no-image.png', 'no-image.png', 0, 0, 1, 1, 1, 1, 500, 1500, 750, 750, 750, 500, 500); +INSERT INTO `item_type` (`item_type_id`, `item_type_server`, `item_type_name`, `item_type_use_type`, `item_type_use_id`, `item_type_use_value`, `item_type_order_price`, `item_type_drop_type`, `item_type_drop_model`, `item_type_drop_pos_x`, `item_type_drop_pos_y`, `item_type_drop_pos_z`, `item_type_drop_rot_x`, `item_type_drop_rot_y`, `item_type_drop_rot_z`, `item_type_drop_scale_x`, `item_type_drop_scale_y`, `item_type_drop_scale_z`, `item_type_image_small`, `item_type_image_large`, `item_type_image_hotbar`, `item_type_size`, `item_type_capacity`, `item_type_demand_multiplier`, `item_type_supply_multiplier`, `item_type_risk_multiplier`, `item_type_enabled`, `item_type_delay_switch`, `item_type_delay_use`, `item_type_delay_pickup`, `item_type_delay_put`, `item_type_delay_take`, `item_type_delay_give`, `item_type_delay_drop`) VALUES + (30, 1, 'Weed', 14, 0, 0, 20, 1, 1319, 0, 0, -1, 1.6, 0, 0, 0.3, 0.3, 0.3, 'no-image.png', 'no-image.png', 'no-image.png', 0, 0, 1, 1, 1, 1, 500, 1500, 750, 750, 750, 500, 500); +INSERT INTO `item_type` (`item_type_id`, `item_type_server`, `item_type_name`, `item_type_use_type`, `item_type_use_id`, `item_type_use_value`, `item_type_order_price`, `item_type_drop_type`, `item_type_drop_model`, `item_type_drop_pos_x`, `item_type_drop_pos_y`, `item_type_drop_pos_z`, `item_type_drop_rot_x`, `item_type_drop_rot_y`, `item_type_drop_rot_z`, `item_type_drop_scale_x`, `item_type_drop_scale_y`, `item_type_drop_scale_z`, `item_type_image_small`, `item_type_image_large`, `item_type_image_hotbar`, `item_type_size`, `item_type_capacity`, `item_type_demand_multiplier`, `item_type_supply_multiplier`, `item_type_risk_multiplier`, `item_type_enabled`, `item_type_delay_switch`, `item_type_delay_use`, `item_type_delay_pickup`, `item_type_delay_put`, `item_type_delay_take`, `item_type_delay_give`, `item_type_delay_drop`) VALUES + (31, 1, 'Meth', 16, 0, 0, 100, 1, 1319, 0, 0, -1, 1.6, 0, 0, 0.3, 0.3, 0.3, 'no-image.png', 'no-image.png', 'no-image.png', 0, 100, 1, 1, 3, 1, 500, 1500, 750, 750, 750, 500, 500); +INSERT INTO `item_type` (`item_type_id`, `item_type_server`, `item_type_name`, `item_type_use_type`, `item_type_use_id`, `item_type_use_value`, `item_type_order_price`, `item_type_drop_type`, `item_type_drop_model`, `item_type_drop_pos_x`, `item_type_drop_pos_y`, `item_type_drop_pos_z`, `item_type_drop_rot_x`, `item_type_drop_rot_y`, `item_type_drop_rot_z`, `item_type_drop_scale_x`, `item_type_drop_scale_y`, `item_type_drop_scale_z`, `item_type_image_small`, `item_type_image_large`, `item_type_image_hotbar`, `item_type_size`, `item_type_capacity`, `item_type_demand_multiplier`, `item_type_supply_multiplier`, `item_type_risk_multiplier`, `item_type_enabled`, `item_type_delay_switch`, `item_type_delay_use`, `item_type_delay_pickup`, `item_type_delay_put`, `item_type_delay_take`, `item_type_delay_give`, `item_type_delay_drop`) VALUES + (32, 1, 'Coke', 15, 0, 0, 250, 1, 1319, 0, 0, -1, 1.6, 0, 0, 0.3, 0.3, 0.3, 'no-image.png', 'no-image.png', 'no-image.png', 0, 100, 1, 1, 4, 1, 500, 1500, 750, 750, 750, 500, 500); +INSERT INTO `item_type` (`item_type_id`, `item_type_server`, `item_type_name`, `item_type_use_type`, `item_type_use_id`, `item_type_use_value`, `item_type_order_price`, `item_type_drop_type`, `item_type_drop_model`, `item_type_drop_pos_x`, `item_type_drop_pos_y`, `item_type_drop_pos_z`, `item_type_drop_rot_x`, `item_type_drop_rot_y`, `item_type_drop_rot_z`, `item_type_drop_scale_x`, `item_type_drop_scale_y`, `item_type_drop_scale_z`, `item_type_image_small`, `item_type_image_large`, `item_type_image_hotbar`, `item_type_size`, `item_type_capacity`, `item_type_demand_multiplier`, `item_type_supply_multiplier`, `item_type_risk_multiplier`, `item_type_enabled`, `item_type_delay_switch`, `item_type_delay_use`, `item_type_delay_pickup`, `item_type_delay_put`, `item_type_delay_take`, `item_type_delay_give`, `item_type_delay_drop`) VALUES + (33, 1, 'Wallet', 9, 0, 0, 10, 1, 1319, 0, 0, -1, 1.6, 0, 0, 0.3, 0.3, 0.2, 'no-image.png', 'no-image.png', 'no-image.png', 0, 0, 1, 1, 1, 1, 500, 1500, 750, 750, 750, 500, 500); +INSERT INTO `item_type` (`item_type_id`, `item_type_server`, `item_type_name`, `item_type_use_type`, `item_type_use_id`, `item_type_use_value`, `item_type_order_price`, `item_type_drop_type`, `item_type_drop_model`, `item_type_drop_pos_x`, `item_type_drop_pos_y`, `item_type_drop_pos_z`, `item_type_drop_rot_x`, `item_type_drop_rot_y`, `item_type_drop_rot_z`, `item_type_drop_scale_x`, `item_type_drop_scale_y`, `item_type_drop_scale_z`, `item_type_image_small`, `item_type_image_large`, `item_type_image_hotbar`, `item_type_size`, `item_type_capacity`, `item_type_demand_multiplier`, `item_type_supply_multiplier`, `item_type_risk_multiplier`, `item_type_enabled`, `item_type_delay_switch`, `item_type_delay_use`, `item_type_delay_pickup`, `item_type_delay_put`, `item_type_delay_take`, `item_type_delay_give`, `item_type_delay_drop`) VALUES + (34, 1, 'Crate', 9, 0, 0, 25, 1, 1343, 0, 0, -1, 1.6, 0, 0, 0, 0, 0, 'no-image.png', 'no-image.png', 'no-image.png', 0, 0, 1, 1, 1, 1, 500, 1500, 750, 750, 750, 500, 500); +INSERT INTO `item_type` (`item_type_id`, `item_type_server`, `item_type_name`, `item_type_use_type`, `item_type_use_id`, `item_type_use_value`, `item_type_order_price`, `item_type_drop_type`, `item_type_drop_model`, `item_type_drop_pos_x`, `item_type_drop_pos_y`, `item_type_drop_pos_z`, `item_type_drop_rot_x`, `item_type_drop_rot_y`, `item_type_drop_rot_z`, `item_type_drop_scale_x`, `item_type_drop_scale_y`, `item_type_drop_scale_z`, `item_type_image_small`, `item_type_image_large`, `item_type_image_hotbar`, `item_type_size`, `item_type_capacity`, `item_type_demand_multiplier`, `item_type_supply_multiplier`, `item_type_risk_multiplier`, `item_type_enabled`, `item_type_delay_switch`, `item_type_delay_use`, `item_type_delay_pickup`, `item_type_delay_put`, `item_type_delay_take`, `item_type_delay_give`, `item_type_delay_drop`) VALUES + (35, 1, 'Outfit', 6, 0, 0, 50, 1, 1319, 0, 0, -1, 1.6, 0, 0, 0, 0, 0, 'no-image.png', 'no-image.png', 'no-image.png', 0, 0, 1, 1, 1, 1, 500, 1500, 750, 750, 750, 500, 500); +INSERT INTO `item_type` (`item_type_id`, `item_type_server`, `item_type_name`, `item_type_use_type`, `item_type_use_id`, `item_type_use_value`, `item_type_order_price`, `item_type_drop_type`, `item_type_drop_model`, `item_type_drop_pos_x`, `item_type_drop_pos_y`, `item_type_drop_pos_z`, `item_type_drop_rot_x`, `item_type_drop_rot_y`, `item_type_drop_rot_z`, `item_type_drop_scale_x`, `item_type_drop_scale_y`, `item_type_drop_scale_z`, `item_type_image_small`, `item_type_image_large`, `item_type_image_hotbar`, `item_type_size`, `item_type_capacity`, `item_type_demand_multiplier`, `item_type_supply_multiplier`, `item_type_risk_multiplier`, `item_type_enabled`, `item_type_delay_switch`, `item_type_delay_use`, `item_type_delay_pickup`, `item_type_delay_put`, `item_type_delay_take`, `item_type_delay_give`, `item_type_delay_drop`) VALUES + (36, 1, 'Megaphone', 15, 0, 0, 35, 1, 1319, 0, 0, -1, 1.6, 0, 0, 0, 0, 0, 'no-image.png', 'no-image.png', 'no-image.png', 0, 100, 1, 1, 1, 1, 500, 1500, 750, 750, 750, 500, 500); +INSERT INTO `item_type` (`item_type_id`, `item_type_server`, `item_type_name`, `item_type_use_type`, `item_type_use_id`, `item_type_use_value`, `item_type_order_price`, `item_type_drop_type`, `item_type_drop_model`, `item_type_drop_pos_x`, `item_type_drop_pos_y`, `item_type_drop_pos_z`, `item_type_drop_rot_x`, `item_type_drop_rot_y`, `item_type_drop_rot_z`, `item_type_drop_scale_x`, `item_type_drop_scale_y`, `item_type_drop_scale_z`, `item_type_image_small`, `item_type_image_large`, `item_type_image_hotbar`, `item_type_size`, `item_type_capacity`, `item_type_demand_multiplier`, `item_type_supply_multiplier`, `item_type_risk_multiplier`, `item_type_enabled`, `item_type_delay_switch`, `item_type_delay_use`, `item_type_delay_pickup`, `item_type_delay_put`, `item_type_delay_take`, `item_type_delay_give`, `item_type_delay_drop`) VALUES + (37, 1, 'Bottle of Water', 18, 1, 10, 3, 1, 1319, 0, 0, -1, 1.6, 0, 0, 0, 0, 0, 'no-image.png', 'no-image.png', 'no-image.png', 0, 100, 1, 1, 1, 1, 500, 1500, 750, 750, 750, 500, 500); +INSERT INTO `item_type` (`item_type_id`, `item_type_server`, `item_type_name`, `item_type_use_type`, `item_type_use_id`, `item_type_use_value`, `item_type_order_price`, `item_type_drop_type`, `item_type_drop_model`, `item_type_drop_pos_x`, `item_type_drop_pos_y`, `item_type_drop_pos_z`, `item_type_drop_rot_x`, `item_type_drop_rot_y`, `item_type_drop_rot_z`, `item_type_drop_scale_x`, `item_type_drop_scale_y`, `item_type_drop_scale_z`, `item_type_image_small`, `item_type_image_large`, `item_type_image_hotbar`, `item_type_size`, `item_type_capacity`, `item_type_demand_multiplier`, `item_type_supply_multiplier`, `item_type_risk_multiplier`, `item_type_enabled`, `item_type_delay_switch`, `item_type_delay_use`, `item_type_delay_pickup`, `item_type_delay_put`, `item_type_delay_take`, `item_type_delay_give`, `item_type_delay_drop`) VALUES + (38, 1, 'Can of Beer', 35, 3, 5, 5, 1, 1319, 0, 0, -1, 1.6, 0, 0, 0, 0, 0, 'no-image.png', 'no-image.png', 'no-image.png', 0, 100, 1, 1, 1, 1, 500, 1500, 750, 750, 750, 500, 500); +INSERT INTO `item_type` (`item_type_id`, `item_type_server`, `item_type_name`, `item_type_use_type`, `item_type_use_id`, `item_type_use_value`, `item_type_order_price`, `item_type_drop_type`, `item_type_drop_model`, `item_type_drop_pos_x`, `item_type_drop_pos_y`, `item_type_drop_pos_z`, `item_type_drop_rot_x`, `item_type_drop_rot_y`, `item_type_drop_rot_z`, `item_type_drop_scale_x`, `item_type_drop_scale_y`, `item_type_drop_scale_z`, `item_type_image_small`, `item_type_image_large`, `item_type_image_hotbar`, `item_type_size`, `item_type_capacity`, `item_type_demand_multiplier`, `item_type_supply_multiplier`, `item_type_risk_multiplier`, `item_type_enabled`, `item_type_delay_switch`, `item_type_delay_use`, `item_type_delay_pickup`, `item_type_delay_put`, `item_type_delay_take`, `item_type_delay_give`, `item_type_delay_drop`) VALUES + (39, 1, 'Bottle of Vodka', 35, 3, 5, 10, 1, 1319, 0, 0, -1, 1.6, 0, 0, 0, 0, 0, 'no-image.png', 'no-image.png', 'no-image.png', 0, 100, 1, 1, 1, 1, 500, 1500, 750, 750, 750, 500, 500); +INSERT INTO `item_type` (`item_type_id`, `item_type_server`, `item_type_name`, `item_type_use_type`, `item_type_use_id`, `item_type_use_value`, `item_type_order_price`, `item_type_drop_type`, `item_type_drop_model`, `item_type_drop_pos_x`, `item_type_drop_pos_y`, `item_type_drop_pos_z`, `item_type_drop_rot_x`, `item_type_drop_rot_y`, `item_type_drop_rot_z`, `item_type_drop_scale_x`, `item_type_drop_scale_y`, `item_type_drop_scale_z`, `item_type_image_small`, `item_type_image_large`, `item_type_image_hotbar`, `item_type_size`, `item_type_capacity`, `item_type_demand_multiplier`, `item_type_supply_multiplier`, `item_type_risk_multiplier`, `item_type_enabled`, `item_type_delay_switch`, `item_type_delay_use`, `item_type_delay_pickup`, `item_type_delay_put`, `item_type_delay_take`, `item_type_delay_give`, `item_type_delay_drop`) VALUES + (40, 1, 'Bottle of Whiskey', 35, 3, 5, 12, 1, 1319, 0, 0, -1, 1.6, 0, 0, 0, 0, 0, 'no-image.png', 'no-image.png', 'no-image.png', 0, 100, 1, 1, 1, 1, 500, 1500, 750, 750, 750, 500, 500); +INSERT INTO `item_type` (`item_type_id`, `item_type_server`, `item_type_name`, `item_type_use_type`, `item_type_use_id`, `item_type_use_value`, `item_type_order_price`, `item_type_drop_type`, `item_type_drop_model`, `item_type_drop_pos_x`, `item_type_drop_pos_y`, `item_type_drop_pos_z`, `item_type_drop_rot_x`, `item_type_drop_rot_y`, `item_type_drop_rot_z`, `item_type_drop_scale_x`, `item_type_drop_scale_y`, `item_type_drop_scale_z`, `item_type_image_small`, `item_type_image_large`, `item_type_image_hotbar`, `item_type_size`, `item_type_capacity`, `item_type_demand_multiplier`, `item_type_supply_multiplier`, `item_type_risk_multiplier`, `item_type_enabled`, `item_type_delay_switch`, `item_type_delay_use`, `item_type_delay_pickup`, `item_type_delay_put`, `item_type_delay_take`, `item_type_delay_give`, `item_type_delay_drop`) VALUES + (41, 1, 'Handcuffs', 24, 0, 0, 100, 0, 1319, 0, 0, -1, 1.6, 0, 0, 0.3, 0.3, 0.2, 'no-image.png', 'no-image.png', 'no-image.png', 0, 0, 1, 1, 1, 1, 500, 1500, 750, 750, 750, 500, 500); +INSERT INTO `item_type` (`item_type_id`, `item_type_server`, `item_type_name`, `item_type_use_type`, `item_type_use_id`, `item_type_use_value`, `item_type_order_price`, `item_type_drop_type`, `item_type_drop_model`, `item_type_drop_pos_x`, `item_type_drop_pos_y`, `item_type_drop_pos_z`, `item_type_drop_rot_x`, `item_type_drop_rot_y`, `item_type_drop_rot_z`, `item_type_drop_scale_x`, `item_type_drop_scale_y`, `item_type_drop_scale_z`, `item_type_image_small`, `item_type_image_large`, `item_type_image_hotbar`, `item_type_size`, `item_type_capacity`, `item_type_demand_multiplier`, `item_type_supply_multiplier`, `item_type_risk_multiplier`, `item_type_enabled`, `item_type_delay_switch`, `item_type_delay_use`, `item_type_delay_pickup`, `item_type_delay_put`, `item_type_delay_take`, `item_type_delay_give`, `item_type_delay_drop`) VALUES + (42, 1, 'Rope', 25, 0, 0, 20, 0, 1319, 0, 0, -1, 1.6, 0, 0, 0, 0, 0, 'no-image.png', 'no-image.png', 'no-image.png', 0, 0, 1, 1, 1, 1, 500, 1500, 750, 750, 750, 500, 500); +INSERT INTO `item_type` (`item_type_id`, `item_type_server`, `item_type_name`, `item_type_use_type`, `item_type_use_id`, `item_type_use_value`, `item_type_order_price`, `item_type_drop_type`, `item_type_drop_model`, `item_type_drop_pos_x`, `item_type_drop_pos_y`, `item_type_drop_pos_z`, `item_type_drop_rot_x`, `item_type_drop_rot_y`, `item_type_drop_rot_z`, `item_type_drop_scale_x`, `item_type_drop_scale_y`, `item_type_drop_scale_z`, `item_type_image_small`, `item_type_image_large`, `item_type_image_hotbar`, `item_type_size`, `item_type_capacity`, `item_type_demand_multiplier`, `item_type_supply_multiplier`, `item_type_risk_multiplier`, `item_type_enabled`, `item_type_delay_switch`, `item_type_delay_use`, `item_type_delay_pickup`, `item_type_delay_put`, `item_type_delay_take`, `item_type_delay_give`, `item_type_delay_drop`) VALUES + (43, 1, 'Blindfold', 26, 0, 0, 20, 0, 1319, 0, 0, -1, 1.6, 0, 0, 0, 0, 0, 'no-image.png', 'no-image.png', 'no-image.png', 0, 0, 1, 1, 1, 1, 500, 1500, 750, 750, 750, 500, 500); +INSERT INTO `item_type` (`item_type_id`, `item_type_server`, `item_type_name`, `item_type_use_type`, `item_type_use_id`, `item_type_use_value`, `item_type_order_price`, `item_type_drop_type`, `item_type_drop_model`, `item_type_drop_pos_x`, `item_type_drop_pos_y`, `item_type_drop_pos_z`, `item_type_drop_rot_x`, `item_type_drop_rot_y`, `item_type_drop_rot_z`, `item_type_drop_scale_x`, `item_type_drop_scale_y`, `item_type_drop_scale_z`, `item_type_image_small`, `item_type_image_large`, `item_type_image_hotbar`, `item_type_size`, `item_type_capacity`, `item_type_demand_multiplier`, `item_type_supply_multiplier`, `item_type_risk_multiplier`, `item_type_enabled`, `item_type_delay_switch`, `item_type_delay_use`, `item_type_delay_pickup`, `item_type_delay_put`, `item_type_delay_take`, `item_type_delay_give`, `item_type_delay_drop`) VALUES + (44, 1, 'Bulletproof Vest', 28, 0, 0, 500, 0, 1319, 0, 0, -1, 1.6, 0, 0, 0, 0, 0, 'no-image.png', 'no-image.png', 'no-image.png', 0, 100, 1, 1, 1, 2, 500, 1500, 750, 750, 750, 500, 500); +INSERT INTO `item_type` (`item_type_id`, `item_type_server`, `item_type_name`, `item_type_use_type`, `item_type_use_id`, `item_type_use_value`, `item_type_order_price`, `item_type_drop_type`, `item_type_drop_model`, `item_type_drop_pos_x`, `item_type_drop_pos_y`, `item_type_drop_pos_z`, `item_type_drop_rot_x`, `item_type_drop_rot_y`, `item_type_drop_rot_z`, `item_type_drop_scale_x`, `item_type_drop_scale_y`, `item_type_drop_scale_z`, `item_type_image_small`, `item_type_image_large`, `item_type_image_hotbar`, `item_type_size`, `item_type_capacity`, `item_type_demand_multiplier`, `item_type_supply_multiplier`, `item_type_risk_multiplier`, `item_type_enabled`, `item_type_delay_switch`, `item_type_delay_use`, `item_type_delay_pickup`, `item_type_delay_put`, `item_type_delay_take`, `item_type_delay_give`, `item_type_delay_drop`) VALUES + (45, 1, 'Uniform', 6, 0, 0, 0, 1, 1319, 0, 0, -1, 1.6, 0, 0, 0, 0, 0, 'no-image.png', 'no-image.png', 'no-image.png', 0, 0, 1, 1, 1, 1, 500, 1500, 750, 750, 750, 500, 500); +INSERT INTO `item_type` (`item_type_id`, `item_type_server`, `item_type_name`, `item_type_use_type`, `item_type_use_id`, `item_type_use_value`, `item_type_order_price`, `item_type_drop_type`, `item_type_drop_model`, `item_type_drop_pos_x`, `item_type_drop_pos_y`, `item_type_drop_pos_z`, `item_type_drop_rot_x`, `item_type_drop_rot_y`, `item_type_drop_rot_z`, `item_type_drop_scale_x`, `item_type_drop_scale_y`, `item_type_drop_scale_z`, `item_type_image_small`, `item_type_image_large`, `item_type_image_hotbar`, `item_type_size`, `item_type_capacity`, `item_type_demand_multiplier`, `item_type_supply_multiplier`, `item_type_risk_multiplier`, `item_type_enabled`, `item_type_delay_switch`, `item_type_delay_use`, `item_type_delay_pickup`, `item_type_delay_put`, `item_type_delay_take`, `item_type_delay_give`, `item_type_delay_drop`) VALUES + (46, 1, 'Fire Extinguisher', 36, 0, 0, 0, 0, 1319, 0, 0, -1, 1.6, 0, 0, 0, 0, 0, 'no-image.png', 'no-image.png', 'no-image.png', 0, 1000, 1, 1, 1, 1, 500, 1500, 750, 750, 750, 500, 500); +INSERT INTO `item_type` (`item_type_id`, `item_type_server`, `item_type_name`, `item_type_use_type`, `item_type_use_id`, `item_type_use_value`, `item_type_order_price`, `item_type_drop_type`, `item_type_drop_model`, `item_type_drop_pos_x`, `item_type_drop_pos_y`, `item_type_drop_pos_z`, `item_type_drop_rot_x`, `item_type_drop_rot_y`, `item_type_drop_rot_z`, `item_type_drop_scale_x`, `item_type_drop_scale_y`, `item_type_drop_scale_z`, `item_type_image_small`, `item_type_image_large`, `item_type_image_hotbar`, `item_type_size`, `item_type_capacity`, `item_type_demand_multiplier`, `item_type_supply_multiplier`, `item_type_risk_multiplier`, `item_type_enabled`, `item_type_delay_switch`, `item_type_delay_use`, `item_type_delay_pickup`, `item_type_delay_put`, `item_type_delay_take`, `item_type_delay_give`, `item_type_delay_drop`) VALUES + (47, 1, 'Tazer', 27, 2, 0, 350, 0, 1319, 0, 0, -1, 1.6, 0, 0, 0, 0, 0, 'no-image.png', 'no-image.png', 'no-image.png', 0, 0, 1, 1, 1, 1, 500, 1500, 750, 750, 750, 500, 500); +INSERT INTO `item_type` (`item_type_id`, `item_type_server`, `item_type_name`, `item_type_use_type`, `item_type_use_id`, `item_type_use_value`, `item_type_order_price`, `item_type_drop_type`, `item_type_drop_model`, `item_type_drop_pos_x`, `item_type_drop_pos_y`, `item_type_drop_pos_z`, `item_type_drop_rot_x`, `item_type_drop_rot_y`, `item_type_drop_rot_z`, `item_type_drop_scale_x`, `item_type_drop_scale_y`, `item_type_drop_scale_z`, `item_type_image_small`, `item_type_image_large`, `item_type_image_hotbar`, `item_type_size`, `item_type_capacity`, `item_type_demand_multiplier`, `item_type_supply_multiplier`, `item_type_risk_multiplier`, `item_type_enabled`, `item_type_delay_switch`, `item_type_delay_use`, `item_type_delay_pickup`, `item_type_delay_put`, `item_type_delay_take`, `item_type_delay_give`, `item_type_delay_drop`) VALUES + (48, 1, 'Pepper Spray', 38, 0, 0, 150, 0, 1319, 0, 0, -1, 1.6, 0, 0, 0, 0, 0, 'no-image.png', 'no-image.png', 'no-image.png', 0, 1000, 1, 1, 1, 1, 500, 1500, 750, 750, 750, 500, 500); +INSERT INTO `item_type` (`item_type_id`, `item_type_server`, `item_type_name`, `item_type_use_type`, `item_type_use_id`, `item_type_use_value`, `item_type_order_price`, `item_type_drop_type`, `item_type_drop_model`, `item_type_drop_pos_x`, `item_type_drop_pos_y`, `item_type_drop_pos_z`, `item_type_drop_rot_x`, `item_type_drop_rot_y`, `item_type_drop_rot_z`, `item_type_drop_scale_x`, `item_type_drop_scale_y`, `item_type_drop_scale_z`, `item_type_image_small`, `item_type_image_large`, `item_type_image_hotbar`, `item_type_size`, `item_type_capacity`, `item_type_demand_multiplier`, `item_type_supply_multiplier`, `item_type_risk_multiplier`, `item_type_enabled`, `item_type_delay_switch`, `item_type_delay_use`, `item_type_delay_pickup`, `item_type_delay_put`, `item_type_delay_take`, `item_type_delay_give`, `item_type_delay_drop`) VALUES + (49, 1, 'Flashlight', 39, 0, 0, 35, 0, 1319, 0, 0, -1, 1.6, 0, 0, 0, 0, 0, 'no-image.png', 'no-image.png', 'no-image.png', 0, 0, 1, 1, 1, 1, 500, 1500, 750, 750, 750, 500, 500); +INSERT INTO `item_type` (`item_type_id`, `item_type_server`, `item_type_name`, `item_type_use_type`, `item_type_use_id`, `item_type_use_value`, `item_type_order_price`, `item_type_drop_type`, `item_type_drop_model`, `item_type_drop_pos_x`, `item_type_drop_pos_y`, `item_type_drop_pos_z`, `item_type_drop_rot_x`, `item_type_drop_rot_y`, `item_type_drop_rot_z`, `item_type_drop_scale_x`, `item_type_drop_scale_y`, `item_type_drop_scale_z`, `item_type_image_small`, `item_type_image_large`, `item_type_image_hotbar`, `item_type_size`, `item_type_capacity`, `item_type_demand_multiplier`, `item_type_supply_multiplier`, `item_type_risk_multiplier`, `item_type_enabled`, `item_type_delay_switch`, `item_type_delay_use`, `item_type_delay_pickup`, `item_type_delay_put`, `item_type_delay_take`, `item_type_delay_give`, `item_type_delay_drop`) VALUES + (50, 1, 'First Aid Kit', 29, 0, 50, 75, 0, 1319, 0, 0, -1, 1.6, 0, 0, 0, 0, 0, 'no-image.png', 'no-image.png', 'no-image.png', 0, 100, 1, 1, 1, 1, 500, 1500, 750, 750, 750, 500, 500); +INSERT INTO `item_type` (`item_type_id`, `item_type_server`, `item_type_name`, `item_type_use_type`, `item_type_use_id`, `item_type_use_value`, `item_type_order_price`, `item_type_drop_type`, `item_type_drop_model`, `item_type_drop_pos_x`, `item_type_drop_pos_y`, `item_type_drop_pos_z`, `item_type_drop_rot_x`, `item_type_drop_rot_y`, `item_type_drop_rot_z`, `item_type_drop_scale_x`, `item_type_drop_scale_y`, `item_type_drop_scale_z`, `item_type_image_small`, `item_type_image_large`, `item_type_image_hotbar`, `item_type_size`, `item_type_capacity`, `item_type_demand_multiplier`, `item_type_supply_multiplier`, `item_type_risk_multiplier`, `item_type_enabled`, `item_type_delay_switch`, `item_type_delay_use`, `item_type_delay_pickup`, `item_type_delay_put`, `item_type_delay_take`, `item_type_delay_give`, `item_type_delay_drop`) VALUES + (51, 1, 'AED', 29, 0, 100, 3000, 0, 1319, 0, 0, -1, 1.6, 0, 0, 0, 0, 0, 'no-image.png', 'no-image.png', 'no-image.png', 0, 100, 1, 1, 1, 1, 500, 1500, 750, 750, 750, 500, 500); +INSERT INTO `item_type` (`item_type_id`, `item_type_server`, `item_type_name`, `item_type_use_type`, `item_type_use_id`, `item_type_use_value`, `item_type_order_price`, `item_type_drop_type`, `item_type_drop_model`, `item_type_drop_pos_x`, `item_type_drop_pos_y`, `item_type_drop_pos_z`, `item_type_drop_rot_x`, `item_type_drop_rot_y`, `item_type_drop_rot_z`, `item_type_drop_scale_x`, `item_type_drop_scale_y`, `item_type_drop_scale_z`, `item_type_image_small`, `item_type_image_large`, `item_type_image_hotbar`, `item_type_size`, `item_type_capacity`, `item_type_demand_multiplier`, `item_type_supply_multiplier`, `item_type_risk_multiplier`, `item_type_enabled`, `item_type_delay_switch`, `item_type_delay_use`, `item_type_delay_pickup`, `item_type_delay_put`, `item_type_delay_take`, `item_type_delay_give`, `item_type_delay_drop`) VALUES + (52, 1, 'Morphine Syringe', 29, 0, 100, 650, 0, 1319, 0, 0, -1, 1.6, 0, 0, 0, 0, 0, 'no-image.png', 'no-image.png', 'no-image.png', 0, 100, 1, 1, 1, 1, 500, 1500, 750, 750, 750, 500, 500); +INSERT INTO `item_type` (`item_type_id`, `item_type_server`, `item_type_name`, `item_type_use_type`, `item_type_use_id`, `item_type_use_value`, `item_type_order_price`, `item_type_drop_type`, `item_type_drop_model`, `item_type_drop_pos_x`, `item_type_drop_pos_y`, `item_type_drop_pos_z`, `item_type_drop_rot_x`, `item_type_drop_rot_y`, `item_type_drop_rot_z`, `item_type_drop_scale_x`, `item_type_drop_scale_y`, `item_type_drop_scale_z`, `item_type_image_small`, `item_type_image_large`, `item_type_image_hotbar`, `item_type_size`, `item_type_capacity`, `item_type_demand_multiplier`, `item_type_supply_multiplier`, `item_type_risk_multiplier`, `item_type_enabled`, `item_type_delay_switch`, `item_type_delay_use`, `item_type_delay_pickup`, `item_type_delay_put`, `item_type_delay_take`, `item_type_delay_give`, `item_type_delay_drop`) VALUES + (54, 1, 'Cheeseburger', 19, 0, 10, 5, 0, 1319, 0, 0, -1, 1.6, 0, 0, 0, 0, 0, 'no-image.png', 'no-image.png', 'no-image.png', 0, 100, 1, 1, 1, 1, 500, 1500, 750, 750, 750, 500, 500); +INSERT INTO `item_type` (`item_type_id`, `item_type_server`, `item_type_name`, `item_type_use_type`, `item_type_use_id`, `item_type_use_value`, `item_type_order_price`, `item_type_drop_type`, `item_type_drop_model`, `item_type_drop_pos_x`, `item_type_drop_pos_y`, `item_type_drop_pos_z`, `item_type_drop_rot_x`, `item_type_drop_rot_y`, `item_type_drop_rot_z`, `item_type_drop_scale_x`, `item_type_drop_scale_y`, `item_type_drop_scale_z`, `item_type_image_small`, `item_type_image_large`, `item_type_image_hotbar`, `item_type_size`, `item_type_capacity`, `item_type_demand_multiplier`, `item_type_supply_multiplier`, `item_type_risk_multiplier`, `item_type_enabled`, `item_type_delay_switch`, `item_type_delay_use`, `item_type_delay_pickup`, `item_type_delay_put`, `item_type_delay_take`, `item_type_delay_give`, `item_type_delay_drop`) VALUES + (55, 1, 'Slice of Pizza', 19, 0, 10, 5, 0, 1319, 0, 0, -1, 1.6, 0, 0, 0, 0, 0, 'no-image.png', 'no-image.png', 'no-image.png', 0, 100, 1, 1, 1, 1, 500, 1500, 750, 750, 750, 500, 500); +INSERT INTO `item_type` (`item_type_id`, `item_type_server`, `item_type_name`, `item_type_use_type`, `item_type_use_id`, `item_type_use_value`, `item_type_order_price`, `item_type_drop_type`, `item_type_drop_model`, `item_type_drop_pos_x`, `item_type_drop_pos_y`, `item_type_drop_pos_z`, `item_type_drop_rot_x`, `item_type_drop_rot_y`, `item_type_drop_rot_z`, `item_type_drop_scale_x`, `item_type_drop_scale_y`, `item_type_drop_scale_z`, `item_type_image_small`, `item_type_image_large`, `item_type_image_hotbar`, `item_type_size`, `item_type_capacity`, `item_type_demand_multiplier`, `item_type_supply_multiplier`, `item_type_risk_multiplier`, `item_type_enabled`, `item_type_delay_switch`, `item_type_delay_use`, `item_type_delay_pickup`, `item_type_delay_put`, `item_type_delay_take`, `item_type_delay_give`, `item_type_delay_drop`) VALUES + (56, 1, 'Chicken Wing', 19, 0, 10, 5, 0, 1319, 0, 0, -1, 1.6, 0, 0, 0.1, 0.1, 0.1, 'no-image.png', 'no-image.png', 'no-image.png', 0, 100, 1, 1, 1, 1, 500, 1500, 750, 750, 750, 500, 500); +INSERT INTO `item_type` (`item_type_id`, `item_type_server`, `item_type_name`, `item_type_use_type`, `item_type_use_id`, `item_type_use_value`, `item_type_order_price`, `item_type_drop_type`, `item_type_drop_model`, `item_type_drop_pos_x`, `item_type_drop_pos_y`, `item_type_drop_pos_z`, `item_type_drop_rot_x`, `item_type_drop_rot_y`, `item_type_drop_rot_z`, `item_type_drop_scale_x`, `item_type_drop_scale_y`, `item_type_drop_scale_z`, `item_type_image_small`, `item_type_image_large`, `item_type_image_hotbar`, `item_type_size`, `item_type_capacity`, `item_type_demand_multiplier`, `item_type_supply_multiplier`, `item_type_risk_multiplier`, `item_type_enabled`, `item_type_delay_switch`, `item_type_delay_use`, `item_type_delay_pickup`, `item_type_delay_put`, `item_type_delay_take`, `item_type_delay_give`, `item_type_delay_drop`) VALUES + (57, 1, 'Pizza', 19, 0, 10, 15, 0, 1319, 0, 0, -1, 1.6, 0, 0, 0.1, 0.1, 0.1, 'no-image.png', 'no-image.png', 'no-image.png', 0, 100, 1, 1, 1, 1, 500, 0, 750, 750, 750, 500, 500); +INSERT INTO `item_type` (`item_type_id`, `item_type_server`, `item_type_name`, `item_type_use_type`, `item_type_use_id`, `item_type_use_value`, `item_type_order_price`, `item_type_drop_type`, `item_type_drop_model`, `item_type_drop_pos_x`, `item_type_drop_pos_y`, `item_type_drop_pos_z`, `item_type_drop_rot_x`, `item_type_drop_rot_y`, `item_type_drop_rot_z`, `item_type_drop_scale_x`, `item_type_drop_scale_y`, `item_type_drop_scale_z`, `item_type_image_small`, `item_type_image_large`, `item_type_image_hotbar`, `item_type_size`, `item_type_capacity`, `item_type_demand_multiplier`, `item_type_supply_multiplier`, `item_type_risk_multiplier`, `item_type_enabled`, `item_type_delay_switch`, `item_type_delay_use`, `item_type_delay_pickup`, `item_type_delay_put`, `item_type_delay_take`, `item_type_delay_give`, `item_type_delay_drop`) VALUES + (58, 1, 'Walkie Talkie', 31, 0, 0, 50, 0, 182, 0, 0, -1, 1.6, 0, 0, 0, 0, 0, 'no-image.png', 'no-image.png', 'no-image.png', 0, 0, 1, 1, 1, 1, 500, 0, 750, 750, 750, 750, 750); +INSERT INTO `item_type` (`item_type_id`, `item_type_server`, `item_type_name`, `item_type_use_type`, `item_type_use_id`, `item_type_use_value`, `item_type_order_price`, `item_type_drop_type`, `item_type_drop_model`, `item_type_drop_pos_x`, `item_type_drop_pos_y`, `item_type_drop_pos_z`, `item_type_drop_rot_x`, `item_type_drop_rot_y`, `item_type_drop_rot_z`, `item_type_drop_scale_x`, `item_type_drop_scale_y`, `item_type_drop_scale_z`, `item_type_image_small`, `item_type_image_large`, `item_type_image_hotbar`, `item_type_size`, `item_type_capacity`, `item_type_demand_multiplier`, `item_type_supply_multiplier`, `item_type_risk_multiplier`, `item_type_enabled`, `item_type_delay_switch`, `item_type_delay_use`, `item_type_delay_pickup`, `item_type_delay_put`, `item_type_delay_take`, `item_type_delay_give`, `item_type_delay_drop`) VALUES + (61, 1, 'Bottle of Soda', 35, 2, 0, 0, 0, 0, 0, 0, -1, 1.6, 0, 0, 0, 0, 0, 'no-image.png', 'no-image.png', 'no-image.png', 0, 100, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `item_type` (`item_type_id`, `item_type_server`, `item_type_name`, `item_type_use_type`, `item_type_use_id`, `item_type_use_value`, `item_type_order_price`, `item_type_drop_type`, `item_type_drop_model`, `item_type_drop_pos_x`, `item_type_drop_pos_y`, `item_type_drop_pos_z`, `item_type_drop_rot_x`, `item_type_drop_rot_y`, `item_type_drop_rot_z`, `item_type_drop_scale_x`, `item_type_drop_scale_y`, `item_type_drop_scale_z`, `item_type_image_small`, `item_type_image_large`, `item_type_image_hotbar`, `item_type_size`, `item_type_capacity`, `item_type_demand_multiplier`, `item_type_supply_multiplier`, `item_type_risk_multiplier`, `item_type_enabled`, `item_type_delay_switch`, `item_type_delay_use`, `item_type_delay_pickup`, `item_type_delay_put`, `item_type_delay_take`, `item_type_delay_give`, `item_type_delay_drop`) VALUES + (62, 1, 'Can of Soda', 35, 2, 0, 0, 0, 0, 0, 0, -1, 1.6, 0, 0, 0, 0, 0, 'no-image.png', 'no-image.png', 'no-image.png', 0, 100, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `item_type` (`item_type_id`, `item_type_server`, `item_type_name`, `item_type_use_type`, `item_type_use_id`, `item_type_use_value`, `item_type_order_price`, `item_type_drop_type`, `item_type_drop_model`, `item_type_drop_pos_x`, `item_type_drop_pos_y`, `item_type_drop_pos_z`, `item_type_drop_rot_x`, `item_type_drop_rot_y`, `item_type_drop_rot_z`, `item_type_drop_scale_x`, `item_type_drop_scale_y`, `item_type_drop_scale_z`, `item_type_image_small`, `item_type_image_large`, `item_type_image_hotbar`, `item_type_size`, `item_type_capacity`, `item_type_demand_multiplier`, `item_type_supply_multiplier`, `item_type_risk_multiplier`, `item_type_enabled`, `item_type_delay_switch`, `item_type_delay_use`, `item_type_delay_pickup`, `item_type_delay_put`, `item_type_delay_take`, `item_type_delay_give`, `item_type_delay_drop`) VALUES + (63, 1, 'Badge', 34, 0, 0, 0, 0, 0, 0, 0, -1, 1.6, 0, 0, 0, 0, 0, 'no-image.png', 'no-image.png', 'no-image.png', 0, 0, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `item_type` (`item_type_id`, `item_type_server`, `item_type_name`, `item_type_use_type`, `item_type_use_id`, `item_type_use_value`, `item_type_order_price`, `item_type_drop_type`, `item_type_drop_model`, `item_type_drop_pos_x`, `item_type_drop_pos_y`, `item_type_drop_pos_z`, `item_type_drop_rot_x`, `item_type_drop_rot_y`, `item_type_drop_rot_z`, `item_type_drop_scale_x`, `item_type_drop_scale_y`, `item_type_drop_scale_z`, `item_type_image_small`, `item_type_image_large`, `item_type_image_hotbar`, `item_type_size`, `item_type_capacity`, `item_type_demand_multiplier`, `item_type_supply_multiplier`, `item_type_risk_multiplier`, `item_type_enabled`, `item_type_delay_switch`, `item_type_delay_use`, `item_type_delay_pickup`, `item_type_delay_put`, `item_type_delay_take`, `item_type_delay_give`, `item_type_delay_drop`) VALUES + (64, 2, 'Brass Knuckles', 1, 1, 0, 25, 0, 259, 0, 0, -1, 1.6, 0, 0, 0, 0, 0, 'no-image.png', 'no-image.png', 'no-image.png', 0, 0, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `item_type` (`item_type_id`, `item_type_server`, `item_type_name`, `item_type_use_type`, `item_type_use_id`, `item_type_use_value`, `item_type_order_price`, `item_type_drop_type`, `item_type_drop_model`, `item_type_drop_pos_x`, `item_type_drop_pos_y`, `item_type_drop_pos_z`, `item_type_drop_rot_x`, `item_type_drop_rot_y`, `item_type_drop_rot_z`, `item_type_drop_scale_x`, `item_type_drop_scale_y`, `item_type_drop_scale_z`, `item_type_image_small`, `item_type_image_large`, `item_type_image_hotbar`, `item_type_size`, `item_type_capacity`, `item_type_demand_multiplier`, `item_type_supply_multiplier`, `item_type_risk_multiplier`, `item_type_enabled`, `item_type_delay_switch`, `item_type_delay_use`, `item_type_delay_pickup`, `item_type_delay_put`, `item_type_delay_take`, `item_type_delay_give`, `item_type_delay_drop`) VALUES + (65, 2, 'Screwdriver', 1, 2, 0, 10, 0, 260, 0, 0, -1, 1.6, 0, 0, 0, 0, 0, 'no-image.png', 'no-image.png', 'no-image.png', 0, 0, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `item_type` (`item_type_id`, `item_type_server`, `item_type_name`, `item_type_use_type`, `item_type_use_id`, `item_type_use_value`, `item_type_order_price`, `item_type_drop_type`, `item_type_drop_model`, `item_type_drop_pos_x`, `item_type_drop_pos_y`, `item_type_drop_pos_z`, `item_type_drop_rot_x`, `item_type_drop_rot_y`, `item_type_drop_rot_z`, `item_type_drop_scale_x`, `item_type_drop_scale_y`, `item_type_drop_scale_z`, `item_type_image_small`, `item_type_image_large`, `item_type_image_hotbar`, `item_type_size`, `item_type_capacity`, `item_type_demand_multiplier`, `item_type_supply_multiplier`, `item_type_risk_multiplier`, `item_type_enabled`, `item_type_delay_switch`, `item_type_delay_use`, `item_type_delay_pickup`, `item_type_delay_put`, `item_type_delay_take`, `item_type_delay_give`, `item_type_delay_drop`) VALUES + (66, 2, 'Golf Club', 1, 3, 0, 40, 0, 261, 0, 0, -1, 1.6, 0, 0, 0, 0, 0, 'no-image.png', 'no-image.png', 'no-image.png', 0, 0, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `item_type` (`item_type_id`, `item_type_server`, `item_type_name`, `item_type_use_type`, `item_type_use_id`, `item_type_use_value`, `item_type_order_price`, `item_type_drop_type`, `item_type_drop_model`, `item_type_drop_pos_x`, `item_type_drop_pos_y`, `item_type_drop_pos_z`, `item_type_drop_rot_x`, `item_type_drop_rot_y`, `item_type_drop_rot_z`, `item_type_drop_scale_x`, `item_type_drop_scale_y`, `item_type_drop_scale_z`, `item_type_image_small`, `item_type_image_large`, `item_type_image_hotbar`, `item_type_size`, `item_type_capacity`, `item_type_demand_multiplier`, `item_type_supply_multiplier`, `item_type_risk_multiplier`, `item_type_enabled`, `item_type_delay_switch`, `item_type_delay_use`, `item_type_delay_pickup`, `item_type_delay_put`, `item_type_delay_take`, `item_type_delay_give`, `item_type_delay_drop`) VALUES + (67, 2, 'Nitestick', 1, 4, 0, 40, 0, 262, 0, 0, -1, 1.6, 0, 0, 0, 0, 0, 'no-image.png', 'no-image.png', 'no-image.png', 0, 0, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `item_type` (`item_type_id`, `item_type_server`, `item_type_name`, `item_type_use_type`, `item_type_use_id`, `item_type_use_value`, `item_type_order_price`, `item_type_drop_type`, `item_type_drop_model`, `item_type_drop_pos_x`, `item_type_drop_pos_y`, `item_type_drop_pos_z`, `item_type_drop_rot_x`, `item_type_drop_rot_y`, `item_type_drop_rot_z`, `item_type_drop_scale_x`, `item_type_drop_scale_y`, `item_type_drop_scale_z`, `item_type_image_small`, `item_type_image_large`, `item_type_image_hotbar`, `item_type_size`, `item_type_capacity`, `item_type_demand_multiplier`, `item_type_supply_multiplier`, `item_type_risk_multiplier`, `item_type_enabled`, `item_type_delay_switch`, `item_type_delay_use`, `item_type_delay_pickup`, `item_type_delay_put`, `item_type_delay_take`, `item_type_delay_give`, `item_type_delay_drop`) VALUES + (68, 2, 'Knife', 1, 5, 0, 35, 0, 263, 0, 0, -1, 1.6, 0, 0, 0, 0, 0, 'no-image.png', 'no-image.png', 'no-image.png', 0, 0, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `item_type` (`item_type_id`, `item_type_server`, `item_type_name`, `item_type_use_type`, `item_type_use_id`, `item_type_use_value`, `item_type_order_price`, `item_type_drop_type`, `item_type_drop_model`, `item_type_drop_pos_x`, `item_type_drop_pos_y`, `item_type_drop_pos_z`, `item_type_drop_rot_x`, `item_type_drop_rot_y`, `item_type_drop_rot_z`, `item_type_drop_scale_x`, `item_type_drop_scale_y`, `item_type_drop_scale_z`, `item_type_image_small`, `item_type_image_large`, `item_type_image_hotbar`, `item_type_size`, `item_type_capacity`, `item_type_demand_multiplier`, `item_type_supply_multiplier`, `item_type_risk_multiplier`, `item_type_enabled`, `item_type_delay_switch`, `item_type_delay_use`, `item_type_delay_pickup`, `item_type_delay_put`, `item_type_delay_take`, `item_type_delay_give`, `item_type_delay_drop`) VALUES + (69, 2, 'Baseball Bat', 1, 6, 0, 25, 0, 264, 0, 0, -1, 1.6, 0, 0, 0, 0, 0, 'no-image.png', 'no-image.png', 'no-image.png', 0, 0, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `item_type` (`item_type_id`, `item_type_server`, `item_type_name`, `item_type_use_type`, `item_type_use_id`, `item_type_use_value`, `item_type_order_price`, `item_type_drop_type`, `item_type_drop_model`, `item_type_drop_pos_x`, `item_type_drop_pos_y`, `item_type_drop_pos_z`, `item_type_drop_rot_x`, `item_type_drop_rot_y`, `item_type_drop_rot_z`, `item_type_drop_scale_x`, `item_type_drop_scale_y`, `item_type_drop_scale_z`, `item_type_image_small`, `item_type_image_large`, `item_type_image_hotbar`, `item_type_size`, `item_type_capacity`, `item_type_demand_multiplier`, `item_type_supply_multiplier`, `item_type_risk_multiplier`, `item_type_enabled`, `item_type_delay_switch`, `item_type_delay_use`, `item_type_delay_pickup`, `item_type_delay_put`, `item_type_delay_take`, `item_type_delay_give`, `item_type_delay_drop`) VALUES + (70, 2, 'Hammer', 1, 7, 0, 12, 0, 265, 0, 0, -1, 1.6, 0, 0, 0, 0, 0, 'no-image.png', 'no-image.png', 'no-image.png', 0, 0, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `item_type` (`item_type_id`, `item_type_server`, `item_type_name`, `item_type_use_type`, `item_type_use_id`, `item_type_use_value`, `item_type_order_price`, `item_type_drop_type`, `item_type_drop_model`, `item_type_drop_pos_x`, `item_type_drop_pos_y`, `item_type_drop_pos_z`, `item_type_drop_rot_x`, `item_type_drop_rot_y`, `item_type_drop_rot_z`, `item_type_drop_scale_x`, `item_type_drop_scale_y`, `item_type_drop_scale_z`, `item_type_image_small`, `item_type_image_large`, `item_type_image_hotbar`, `item_type_size`, `item_type_capacity`, `item_type_demand_multiplier`, `item_type_supply_multiplier`, `item_type_risk_multiplier`, `item_type_enabled`, `item_type_delay_switch`, `item_type_delay_use`, `item_type_delay_pickup`, `item_type_delay_put`, `item_type_delay_take`, `item_type_delay_give`, `item_type_delay_drop`) VALUES + (71, 2, 'Meat Cleaver', 1, 8, 0, 12, 0, 266, 0, 0, -1, 1.6, 0, 0, 0, 0, 0, 'no-image.png', 'no-image.png', 'no-image.png', 0, 0, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `item_type` (`item_type_id`, `item_type_server`, `item_type_name`, `item_type_use_type`, `item_type_use_id`, `item_type_use_value`, `item_type_order_price`, `item_type_drop_type`, `item_type_drop_model`, `item_type_drop_pos_x`, `item_type_drop_pos_y`, `item_type_drop_pos_z`, `item_type_drop_rot_x`, `item_type_drop_rot_y`, `item_type_drop_rot_z`, `item_type_drop_scale_x`, `item_type_drop_scale_y`, `item_type_drop_scale_z`, `item_type_image_small`, `item_type_image_large`, `item_type_image_hotbar`, `item_type_size`, `item_type_capacity`, `item_type_demand_multiplier`, `item_type_supply_multiplier`, `item_type_risk_multiplier`, `item_type_enabled`, `item_type_delay_switch`, `item_type_delay_use`, `item_type_delay_pickup`, `item_type_delay_put`, `item_type_delay_take`, `item_type_delay_give`, `item_type_delay_drop`) VALUES + (72, 2, 'Machete', 1, 9, 0, 100, 0, 267, 0, 0, -1, 1.6, 0, 0, 0, 0, 0, 'no-image.png', 'no-image.png', 'no-image.png', 0, 0, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `item_type` (`item_type_id`, `item_type_server`, `item_type_name`, `item_type_use_type`, `item_type_use_id`, `item_type_use_value`, `item_type_order_price`, `item_type_drop_type`, `item_type_drop_model`, `item_type_drop_pos_x`, `item_type_drop_pos_y`, `item_type_drop_pos_z`, `item_type_drop_rot_x`, `item_type_drop_rot_y`, `item_type_drop_rot_z`, `item_type_drop_scale_x`, `item_type_drop_scale_y`, `item_type_drop_scale_z`, `item_type_image_small`, `item_type_image_large`, `item_type_image_hotbar`, `item_type_size`, `item_type_capacity`, `item_type_demand_multiplier`, `item_type_supply_multiplier`, `item_type_risk_multiplier`, `item_type_enabled`, `item_type_delay_switch`, `item_type_delay_use`, `item_type_delay_pickup`, `item_type_delay_put`, `item_type_delay_take`, `item_type_delay_give`, `item_type_delay_drop`) VALUES + (73, 2, 'Katana', 1, 10, 0, 250, 0, 268, 0, 0, -1, 1.6, 0, 0, 0, 0, 0, 'no-image.png', 'no-image.png', 'no-image.png', 0, 0, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `item_type` (`item_type_id`, `item_type_server`, `item_type_name`, `item_type_use_type`, `item_type_use_id`, `item_type_use_value`, `item_type_order_price`, `item_type_drop_type`, `item_type_drop_model`, `item_type_drop_pos_x`, `item_type_drop_pos_y`, `item_type_drop_pos_z`, `item_type_drop_rot_x`, `item_type_drop_rot_y`, `item_type_drop_rot_z`, `item_type_drop_scale_x`, `item_type_drop_scale_y`, `item_type_drop_scale_z`, `item_type_image_small`, `item_type_image_large`, `item_type_image_hotbar`, `item_type_size`, `item_type_capacity`, `item_type_demand_multiplier`, `item_type_supply_multiplier`, `item_type_risk_multiplier`, `item_type_enabled`, `item_type_delay_switch`, `item_type_delay_use`, `item_type_delay_pickup`, `item_type_delay_put`, `item_type_delay_take`, `item_type_delay_give`, `item_type_delay_drop`) VALUES + (74, 2, 'Chainsaw', 1, 11, 0, 350, 0, 269, 0, 0, -1, 1.6, 0, 0, 0, 0, 0, 'no-image.png', 'no-image.png', 'no-image.png', 0, 0, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `item_type` (`item_type_id`, `item_type_server`, `item_type_name`, `item_type_use_type`, `item_type_use_id`, `item_type_use_value`, `item_type_order_price`, `item_type_drop_type`, `item_type_drop_model`, `item_type_drop_pos_x`, `item_type_drop_pos_y`, `item_type_drop_pos_z`, `item_type_drop_rot_x`, `item_type_drop_rot_y`, `item_type_drop_rot_z`, `item_type_drop_scale_x`, `item_type_drop_scale_y`, `item_type_drop_scale_z`, `item_type_image_small`, `item_type_image_large`, `item_type_image_hotbar`, `item_type_size`, `item_type_capacity`, `item_type_demand_multiplier`, `item_type_supply_multiplier`, `item_type_risk_multiplier`, `item_type_enabled`, `item_type_delay_switch`, `item_type_delay_use`, `item_type_delay_pickup`, `item_type_delay_put`, `item_type_delay_take`, `item_type_delay_give`, `item_type_delay_drop`) VALUES + (75, 2, 'Grenade', 1, 12, 0, 500, 0, 270, 0, 0, -1, 1.6, 0, 0, 0, 0, 0, 'no-image.png', 'no-image.png', 'no-image.png', 0, 0, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `item_type` (`item_type_id`, `item_type_server`, `item_type_name`, `item_type_use_type`, `item_type_use_id`, `item_type_use_value`, `item_type_order_price`, `item_type_drop_type`, `item_type_drop_model`, `item_type_drop_pos_x`, `item_type_drop_pos_y`, `item_type_drop_pos_z`, `item_type_drop_rot_x`, `item_type_drop_rot_y`, `item_type_drop_rot_z`, `item_type_drop_scale_x`, `item_type_drop_scale_y`, `item_type_drop_scale_z`, `item_type_image_small`, `item_type_image_large`, `item_type_image_hotbar`, `item_type_size`, `item_type_capacity`, `item_type_demand_multiplier`, `item_type_supply_multiplier`, `item_type_risk_multiplier`, `item_type_enabled`, `item_type_delay_switch`, `item_type_delay_use`, `item_type_delay_pickup`, `item_type_delay_put`, `item_type_delay_take`, `item_type_delay_give`, `item_type_delay_drop`) VALUES + (76, 2, 'Remote Grenade', 1, 13, 0, 1000, 0, 270, 0, 0, -1, 1.6, 0, 0, 0, 0, 0, 'no-image.png', 'no-image.png', 'no-image.png', 0, 0, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `item_type` (`item_type_id`, `item_type_server`, `item_type_name`, `item_type_use_type`, `item_type_use_id`, `item_type_use_value`, `item_type_order_price`, `item_type_drop_type`, `item_type_drop_model`, `item_type_drop_pos_x`, `item_type_drop_pos_y`, `item_type_drop_pos_z`, `item_type_drop_rot_x`, `item_type_drop_rot_y`, `item_type_drop_rot_z`, `item_type_drop_scale_x`, `item_type_drop_scale_y`, `item_type_drop_scale_z`, `item_type_image_small`, `item_type_image_large`, `item_type_image_hotbar`, `item_type_size`, `item_type_capacity`, `item_type_demand_multiplier`, `item_type_supply_multiplier`, `item_type_risk_multiplier`, `item_type_enabled`, `item_type_delay_switch`, `item_type_delay_use`, `item_type_delay_pickup`, `item_type_delay_put`, `item_type_delay_take`, `item_type_delay_give`, `item_type_delay_drop`) VALUES + (77, 2, 'Teargas', 1, 14, 0, 150, 0, 271, 0, 0, -1, 1.6, 0, 0, 0, 0, 0, 'no-image.png', 'no-image.png', 'no-image.png', 0, 0, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `item_type` (`item_type_id`, `item_type_server`, `item_type_name`, `item_type_use_type`, `item_type_use_id`, `item_type_use_value`, `item_type_order_price`, `item_type_drop_type`, `item_type_drop_model`, `item_type_drop_pos_x`, `item_type_drop_pos_y`, `item_type_drop_pos_z`, `item_type_drop_rot_x`, `item_type_drop_rot_y`, `item_type_drop_rot_z`, `item_type_drop_scale_x`, `item_type_drop_scale_y`, `item_type_drop_scale_z`, `item_type_image_small`, `item_type_image_large`, `item_type_image_hotbar`, `item_type_size`, `item_type_capacity`, `item_type_demand_multiplier`, `item_type_supply_multiplier`, `item_type_risk_multiplier`, `item_type_enabled`, `item_type_delay_switch`, `item_type_delay_use`, `item_type_delay_pickup`, `item_type_delay_put`, `item_type_delay_take`, `item_type_delay_give`, `item_type_delay_drop`) VALUES + (78, 2, 'Molotov Cocktail', 1, 15, 0, 150, 0, 272, 0, 0, -1, 1.6, 0, 0, 0, 0, 0, 'no-image.png', 'no-image.png', 'no-image.png', 0, 0, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `item_type` (`item_type_id`, `item_type_server`, `item_type_name`, `item_type_use_type`, `item_type_use_id`, `item_type_use_value`, `item_type_order_price`, `item_type_drop_type`, `item_type_drop_model`, `item_type_drop_pos_x`, `item_type_drop_pos_y`, `item_type_drop_pos_z`, `item_type_drop_rot_x`, `item_type_drop_rot_y`, `item_type_drop_rot_z`, `item_type_drop_scale_x`, `item_type_drop_scale_y`, `item_type_drop_scale_z`, `item_type_image_small`, `item_type_image_large`, `item_type_image_hotbar`, `item_type_size`, `item_type_capacity`, `item_type_demand_multiplier`, `item_type_supply_multiplier`, `item_type_risk_multiplier`, `item_type_enabled`, `item_type_delay_switch`, `item_type_delay_use`, `item_type_delay_pickup`, `item_type_delay_put`, `item_type_delay_take`, `item_type_delay_give`, `item_type_delay_drop`) VALUES + (79, 2, 'Rocket (Unfirable)', 1, 16, 0, 0, 0, 273, 0, 0, -1, 1.6, 0, 0, 0, 0, 0, 'no-image.png', 'no-image.png', 'no-image.png', 0, 0, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `item_type` (`item_type_id`, `item_type_server`, `item_type_name`, `item_type_use_type`, `item_type_use_id`, `item_type_use_value`, `item_type_order_price`, `item_type_drop_type`, `item_type_drop_model`, `item_type_drop_pos_x`, `item_type_drop_pos_y`, `item_type_drop_pos_z`, `item_type_drop_rot_x`, `item_type_drop_rot_y`, `item_type_drop_rot_z`, `item_type_drop_scale_x`, `item_type_drop_scale_y`, `item_type_drop_scale_z`, `item_type_image_small`, `item_type_image_large`, `item_type_image_hotbar`, `item_type_size`, `item_type_capacity`, `item_type_demand_multiplier`, `item_type_supply_multiplier`, `item_type_risk_multiplier`, `item_type_enabled`, `item_type_delay_switch`, `item_type_delay_use`, `item_type_delay_pickup`, `item_type_delay_put`, `item_type_delay_take`, `item_type_delay_give`, `item_type_delay_drop`) VALUES + (80, 2, 'Colt .45', 1, 17, 0, 350, 0, 274, 0, 0, -1, 1.6, 0, 0, 0, 0, 0, 'no-image.png', 'no-image.png', 'no-image.png', 0, 0, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `item_type` (`item_type_id`, `item_type_server`, `item_type_name`, `item_type_use_type`, `item_type_use_id`, `item_type_use_value`, `item_type_order_price`, `item_type_drop_type`, `item_type_drop_model`, `item_type_drop_pos_x`, `item_type_drop_pos_y`, `item_type_drop_pos_z`, `item_type_drop_rot_x`, `item_type_drop_rot_y`, `item_type_drop_rot_z`, `item_type_drop_scale_x`, `item_type_drop_scale_y`, `item_type_drop_scale_z`, `item_type_image_small`, `item_type_image_large`, `item_type_image_hotbar`, `item_type_size`, `item_type_capacity`, `item_type_demand_multiplier`, `item_type_supply_multiplier`, `item_type_risk_multiplier`, `item_type_enabled`, `item_type_delay_switch`, `item_type_delay_use`, `item_type_delay_pickup`, `item_type_delay_put`, `item_type_delay_take`, `item_type_delay_give`, `item_type_delay_drop`) VALUES + (81, 2, 'Python', 1, 18, 0, 450, 0, 275, 0, 0, -1, 1.6, 0, 0, 0, 0, 0, 'no-image.png', 'no-image.png', 'no-image.png', 0, 0, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `item_type` (`item_type_id`, `item_type_server`, `item_type_name`, `item_type_use_type`, `item_type_use_id`, `item_type_use_value`, `item_type_order_price`, `item_type_drop_type`, `item_type_drop_model`, `item_type_drop_pos_x`, `item_type_drop_pos_y`, `item_type_drop_pos_z`, `item_type_drop_rot_x`, `item_type_drop_rot_y`, `item_type_drop_rot_z`, `item_type_drop_scale_x`, `item_type_drop_scale_y`, `item_type_drop_scale_z`, `item_type_image_small`, `item_type_image_large`, `item_type_image_hotbar`, `item_type_size`, `item_type_capacity`, `item_type_demand_multiplier`, `item_type_supply_multiplier`, `item_type_risk_multiplier`, `item_type_enabled`, `item_type_delay_switch`, `item_type_delay_use`, `item_type_delay_pickup`, `item_type_delay_put`, `item_type_delay_take`, `item_type_delay_give`, `item_type_delay_drop`) VALUES + (82, 2, 'Shotgun', 1, 19, 0, 450, 0, 277, 0, 0, -1, 1.6, 0, 0, 0, 0, 0, 'no-image.png', 'no-image.png', 'no-image.png', 0, 0, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `item_type` (`item_type_id`, `item_type_server`, `item_type_name`, `item_type_use_type`, `item_type_use_id`, `item_type_use_value`, `item_type_order_price`, `item_type_drop_type`, `item_type_drop_model`, `item_type_drop_pos_x`, `item_type_drop_pos_y`, `item_type_drop_pos_z`, `item_type_drop_rot_x`, `item_type_drop_rot_y`, `item_type_drop_rot_z`, `item_type_drop_scale_x`, `item_type_drop_scale_y`, `item_type_drop_scale_z`, `item_type_image_small`, `item_type_image_large`, `item_type_image_hotbar`, `item_type_size`, `item_type_capacity`, `item_type_demand_multiplier`, `item_type_supply_multiplier`, `item_type_risk_multiplier`, `item_type_enabled`, `item_type_delay_switch`, `item_type_delay_use`, `item_type_delay_pickup`, `item_type_delay_put`, `item_type_delay_take`, `item_type_delay_give`, `item_type_delay_drop`) VALUES + (83, 2, 'Spaz Shotgun', 1, 20, 0, 1250, 0, 278, 0, 0, -1, 1.6, 0, 0, 0, 0, 0, 'no-image.png', 'no-image.png', 'no-image.png', 0, 0, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `item_type` (`item_type_id`, `item_type_server`, `item_type_name`, `item_type_use_type`, `item_type_use_id`, `item_type_use_value`, `item_type_order_price`, `item_type_drop_type`, `item_type_drop_model`, `item_type_drop_pos_x`, `item_type_drop_pos_y`, `item_type_drop_pos_z`, `item_type_drop_rot_x`, `item_type_drop_rot_y`, `item_type_drop_rot_z`, `item_type_drop_scale_x`, `item_type_drop_scale_y`, `item_type_drop_scale_z`, `item_type_image_small`, `item_type_image_large`, `item_type_image_hotbar`, `item_type_size`, `item_type_capacity`, `item_type_demand_multiplier`, `item_type_supply_multiplier`, `item_type_risk_multiplier`, `item_type_enabled`, `item_type_delay_switch`, `item_type_delay_use`, `item_type_delay_pickup`, `item_type_delay_put`, `item_type_delay_take`, `item_type_delay_give`, `item_type_delay_drop`) VALUES + (84, 2, 'Stubby Shotgun', 1, 21, 0, 350, 0, 279, 0, 0, -1, 1.6, 0, 0, 0, 0, 0, 'no-image.png', 'no-image.png', 'no-image.png', 0, 0, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `item_type` (`item_type_id`, `item_type_server`, `item_type_name`, `item_type_use_type`, `item_type_use_id`, `item_type_use_value`, `item_type_order_price`, `item_type_drop_type`, `item_type_drop_model`, `item_type_drop_pos_x`, `item_type_drop_pos_y`, `item_type_drop_pos_z`, `item_type_drop_rot_x`, `item_type_drop_rot_y`, `item_type_drop_rot_z`, `item_type_drop_scale_x`, `item_type_drop_scale_y`, `item_type_drop_scale_z`, `item_type_image_small`, `item_type_image_large`, `item_type_image_hotbar`, `item_type_size`, `item_type_capacity`, `item_type_demand_multiplier`, `item_type_supply_multiplier`, `item_type_risk_multiplier`, `item_type_enabled`, `item_type_delay_switch`, `item_type_delay_use`, `item_type_delay_pickup`, `item_type_delay_put`, `item_type_delay_take`, `item_type_delay_give`, `item_type_delay_drop`) VALUES + (85, 2, 'Tec-9', 1, 22, 0, 500, 0, 281, 0, 0, -1, 1.6, 0, 0, 0, 0, 0, 'no-image.png', 'no-image.png', 'no-image.png', 0, 0, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `item_type` (`item_type_id`, `item_type_server`, `item_type_name`, `item_type_use_type`, `item_type_use_id`, `item_type_use_value`, `item_type_order_price`, `item_type_drop_type`, `item_type_drop_model`, `item_type_drop_pos_x`, `item_type_drop_pos_y`, `item_type_drop_pos_z`, `item_type_drop_rot_x`, `item_type_drop_rot_y`, `item_type_drop_rot_z`, `item_type_drop_scale_x`, `item_type_drop_scale_y`, `item_type_drop_scale_z`, `item_type_image_small`, `item_type_image_large`, `item_type_image_hotbar`, `item_type_size`, `item_type_capacity`, `item_type_demand_multiplier`, `item_type_supply_multiplier`, `item_type_risk_multiplier`, `item_type_enabled`, `item_type_delay_switch`, `item_type_delay_use`, `item_type_delay_pickup`, `item_type_delay_put`, `item_type_delay_take`, `item_type_delay_give`, `item_type_delay_drop`) VALUES + (86, 2, 'Uzi', 1, 23, 0, 550, 0, 282, 0, 0, -1, 1.6, 0, 0, 0, 0, 0, 'no-image.png', 'no-image.png', 'no-image.png', 0, 0, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `item_type` (`item_type_id`, `item_type_server`, `item_type_name`, `item_type_use_type`, `item_type_use_id`, `item_type_use_value`, `item_type_order_price`, `item_type_drop_type`, `item_type_drop_model`, `item_type_drop_pos_x`, `item_type_drop_pos_y`, `item_type_drop_pos_z`, `item_type_drop_rot_x`, `item_type_drop_rot_y`, `item_type_drop_rot_z`, `item_type_drop_scale_x`, `item_type_drop_scale_y`, `item_type_drop_scale_z`, `item_type_image_small`, `item_type_image_large`, `item_type_image_hotbar`, `item_type_size`, `item_type_capacity`, `item_type_demand_multiplier`, `item_type_supply_multiplier`, `item_type_risk_multiplier`, `item_type_enabled`, `item_type_delay_switch`, `item_type_delay_use`, `item_type_delay_pickup`, `item_type_delay_put`, `item_type_delay_take`, `item_type_delay_give`, `item_type_delay_drop`) VALUES + (87, 2, 'Ingram', 1, 24, 0, 575, 0, 283, 0, 0, -1, 1.6, 0, 0, 0, 0, 0, 'no-image.png', 'no-image.png', 'no-image.png', 0, 0, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `item_type` (`item_type_id`, `item_type_server`, `item_type_name`, `item_type_use_type`, `item_type_use_id`, `item_type_use_value`, `item_type_order_price`, `item_type_drop_type`, `item_type_drop_model`, `item_type_drop_pos_x`, `item_type_drop_pos_y`, `item_type_drop_pos_z`, `item_type_drop_rot_x`, `item_type_drop_rot_y`, `item_type_drop_rot_z`, `item_type_drop_scale_x`, `item_type_drop_scale_y`, `item_type_drop_scale_z`, `item_type_image_small`, `item_type_image_large`, `item_type_image_hotbar`, `item_type_size`, `item_type_capacity`, `item_type_demand_multiplier`, `item_type_supply_multiplier`, `item_type_risk_multiplier`, `item_type_enabled`, `item_type_delay_switch`, `item_type_delay_use`, `item_type_delay_pickup`, `item_type_delay_put`, `item_type_delay_take`, `item_type_delay_give`, `item_type_delay_drop`) VALUES + (88, 2, 'MP5', 1, 25, 0, 800, 0, 284, 0, 0, -1, 1.6, 0, 0, 0, 0, 0, 'no-image.png', 'no-image.png', 'no-image.png', 0, 0, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `item_type` (`item_type_id`, `item_type_server`, `item_type_name`, `item_type_use_type`, `item_type_use_id`, `item_type_use_value`, `item_type_order_price`, `item_type_drop_type`, `item_type_drop_model`, `item_type_drop_pos_x`, `item_type_drop_pos_y`, `item_type_drop_pos_z`, `item_type_drop_rot_x`, `item_type_drop_rot_y`, `item_type_drop_rot_z`, `item_type_drop_scale_x`, `item_type_drop_scale_y`, `item_type_drop_scale_z`, `item_type_image_small`, `item_type_image_large`, `item_type_image_hotbar`, `item_type_size`, `item_type_capacity`, `item_type_demand_multiplier`, `item_type_supply_multiplier`, `item_type_risk_multiplier`, `item_type_enabled`, `item_type_delay_switch`, `item_type_delay_use`, `item_type_delay_pickup`, `item_type_delay_put`, `item_type_delay_take`, `item_type_delay_give`, `item_type_delay_drop`) VALUES + (89, 2, 'M4', 1, 26, 0, 1500, 0, 280, 0, 0, -1, 1.6, 0, 0, 0, 0, 0, 'no-image.png', 'no-image.png', 'no-image.png', 0, 0, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `item_type` (`item_type_id`, `item_type_server`, `item_type_name`, `item_type_use_type`, `item_type_use_id`, `item_type_use_value`, `item_type_order_price`, `item_type_drop_type`, `item_type_drop_model`, `item_type_drop_pos_x`, `item_type_drop_pos_y`, `item_type_drop_pos_z`, `item_type_drop_rot_x`, `item_type_drop_rot_y`, `item_type_drop_rot_z`, `item_type_drop_scale_x`, `item_type_drop_scale_y`, `item_type_drop_scale_z`, `item_type_image_small`, `item_type_image_large`, `item_type_image_hotbar`, `item_type_size`, `item_type_capacity`, `item_type_demand_multiplier`, `item_type_supply_multiplier`, `item_type_risk_multiplier`, `item_type_enabled`, `item_type_delay_switch`, `item_type_delay_use`, `item_type_delay_pickup`, `item_type_delay_put`, `item_type_delay_take`, `item_type_delay_give`, `item_type_delay_drop`) VALUES + (90, 2, 'Ruger', 1, 27, 0, 1250, 0, 276, 0, 0, -1, 1.6, 0, 0, 0, 0, 0, 'no-image.png', 'no-image.png', 'no-image.png', 0, 0, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `item_type` (`item_type_id`, `item_type_server`, `item_type_name`, `item_type_use_type`, `item_type_use_id`, `item_type_use_value`, `item_type_order_price`, `item_type_drop_type`, `item_type_drop_model`, `item_type_drop_pos_x`, `item_type_drop_pos_y`, `item_type_drop_pos_z`, `item_type_drop_rot_x`, `item_type_drop_rot_y`, `item_type_drop_rot_z`, `item_type_drop_scale_x`, `item_type_drop_scale_y`, `item_type_drop_scale_z`, `item_type_image_small`, `item_type_image_large`, `item_type_image_hotbar`, `item_type_size`, `item_type_capacity`, `item_type_demand_multiplier`, `item_type_supply_multiplier`, `item_type_risk_multiplier`, `item_type_enabled`, `item_type_delay_switch`, `item_type_delay_use`, `item_type_delay_pickup`, `item_type_delay_put`, `item_type_delay_take`, `item_type_delay_give`, `item_type_delay_drop`) VALUES + (91, 2, 'Sniper Rifle', 1, 28, 0, 1500, 0, 285, 0, 0, -1, 1.6, 0, 0, 0, 0, 0, 'no-image.png', 'no-image.png', 'no-image.png', 0, 0, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `item_type` (`item_type_id`, `item_type_server`, `item_type_name`, `item_type_use_type`, `item_type_use_id`, `item_type_use_value`, `item_type_order_price`, `item_type_drop_type`, `item_type_drop_model`, `item_type_drop_pos_x`, `item_type_drop_pos_y`, `item_type_drop_pos_z`, `item_type_drop_rot_x`, `item_type_drop_rot_y`, `item_type_drop_rot_z`, `item_type_drop_scale_x`, `item_type_drop_scale_y`, `item_type_drop_scale_z`, `item_type_image_small`, `item_type_image_large`, `item_type_image_hotbar`, `item_type_size`, `item_type_capacity`, `item_type_demand_multiplier`, `item_type_supply_multiplier`, `item_type_risk_multiplier`, `item_type_enabled`, `item_type_delay_switch`, `item_type_delay_use`, `item_type_delay_pickup`, `item_type_delay_put`, `item_type_delay_take`, `item_type_delay_give`, `item_type_delay_drop`) VALUES + (92, 2, 'Laser Sniper', 1, 29, 0, 2000, 0, 286, 0, 0, -1, 1.6, 0, 0, 0, 0, 0, 'no-image.png', 'no-image.png', 'no-image.png', 0, 0, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `item_type` (`item_type_id`, `item_type_server`, `item_type_name`, `item_type_use_type`, `item_type_use_id`, `item_type_use_value`, `item_type_order_price`, `item_type_drop_type`, `item_type_drop_model`, `item_type_drop_pos_x`, `item_type_drop_pos_y`, `item_type_drop_pos_z`, `item_type_drop_rot_x`, `item_type_drop_rot_y`, `item_type_drop_rot_z`, `item_type_drop_scale_x`, `item_type_drop_scale_y`, `item_type_drop_scale_z`, `item_type_image_small`, `item_type_image_large`, `item_type_image_hotbar`, `item_type_size`, `item_type_capacity`, `item_type_demand_multiplier`, `item_type_supply_multiplier`, `item_type_risk_multiplier`, `item_type_enabled`, `item_type_delay_switch`, `item_type_delay_use`, `item_type_delay_pickup`, `item_type_delay_put`, `item_type_delay_take`, `item_type_delay_give`, `item_type_delay_drop`) VALUES + (93, 2, 'RPG', 1, 30, 0, 5000, 0, 287, 0, 0, -1, 1.6, 0, 0, 0, 0, 0, 'no-image.png', 'no-image.png', 'no-image.png', 0, 0, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `item_type` (`item_type_id`, `item_type_server`, `item_type_name`, `item_type_use_type`, `item_type_use_id`, `item_type_use_value`, `item_type_order_price`, `item_type_drop_type`, `item_type_drop_model`, `item_type_drop_pos_x`, `item_type_drop_pos_y`, `item_type_drop_pos_z`, `item_type_drop_rot_x`, `item_type_drop_rot_y`, `item_type_drop_rot_z`, `item_type_drop_scale_x`, `item_type_drop_scale_y`, `item_type_drop_scale_z`, `item_type_image_small`, `item_type_image_large`, `item_type_image_hotbar`, `item_type_size`, `item_type_capacity`, `item_type_demand_multiplier`, `item_type_supply_multiplier`, `item_type_risk_multiplier`, `item_type_enabled`, `item_type_delay_switch`, `item_type_delay_use`, `item_type_delay_pickup`, `item_type_delay_put`, `item_type_delay_take`, `item_type_delay_give`, `item_type_delay_drop`) VALUES + (94, 2, 'Flame Thrower', 1, 31, 0, 3000, 0, 288, 0, 0, -1, 1.6, 0, 0, 0, 0, 0, 'no-image.png', 'no-image.png', 'no-image.png', 0, 0, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `item_type` (`item_type_id`, `item_type_server`, `item_type_name`, `item_type_use_type`, `item_type_use_id`, `item_type_use_value`, `item_type_order_price`, `item_type_drop_type`, `item_type_drop_model`, `item_type_drop_pos_x`, `item_type_drop_pos_y`, `item_type_drop_pos_z`, `item_type_drop_rot_x`, `item_type_drop_rot_y`, `item_type_drop_rot_z`, `item_type_drop_scale_x`, `item_type_drop_scale_y`, `item_type_drop_scale_z`, `item_type_image_small`, `item_type_image_large`, `item_type_image_hotbar`, `item_type_size`, `item_type_capacity`, `item_type_demand_multiplier`, `item_type_supply_multiplier`, `item_type_risk_multiplier`, `item_type_enabled`, `item_type_delay_switch`, `item_type_delay_use`, `item_type_delay_pickup`, `item_type_delay_put`, `item_type_delay_take`, `item_type_delay_give`, `item_type_delay_drop`) VALUES + (95, 2, 'M60', 1, 32, 0, 10000, 0, 289, 0, 0, -1, 1.6, 0, 0, 0, 0, 0, 'no-image.png', 'no-image.png', 'no-image.png', 0, 0, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `item_type` (`item_type_id`, `item_type_server`, `item_type_name`, `item_type_use_type`, `item_type_use_id`, `item_type_use_value`, `item_type_order_price`, `item_type_drop_type`, `item_type_drop_model`, `item_type_drop_pos_x`, `item_type_drop_pos_y`, `item_type_drop_pos_z`, `item_type_drop_rot_x`, `item_type_drop_rot_y`, `item_type_drop_rot_z`, `item_type_drop_scale_x`, `item_type_drop_scale_y`, `item_type_drop_scale_z`, `item_type_image_small`, `item_type_image_large`, `item_type_image_hotbar`, `item_type_size`, `item_type_capacity`, `item_type_demand_multiplier`, `item_type_supply_multiplier`, `item_type_risk_multiplier`, `item_type_enabled`, `item_type_delay_switch`, `item_type_delay_use`, `item_type_delay_pickup`, `item_type_delay_put`, `item_type_delay_take`, `item_type_delay_give`, `item_type_delay_drop`) VALUES + (96, 2, 'Minigun', 1, 33, 0, 25000, 0, 290, 0, 0, -1, 1.6, 0, 0, 0, 0, 0, 'no-image.png', 'no-image.png', 'no-image.png', 0, 0, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `item_type` (`item_type_id`, `item_type_server`, `item_type_name`, `item_type_use_type`, `item_type_use_id`, `item_type_use_value`, `item_type_order_price`, `item_type_drop_type`, `item_type_drop_model`, `item_type_drop_pos_x`, `item_type_drop_pos_y`, `item_type_drop_pos_z`, `item_type_drop_rot_x`, `item_type_drop_rot_y`, `item_type_drop_rot_z`, `item_type_drop_scale_x`, `item_type_drop_scale_y`, `item_type_drop_scale_z`, `item_type_image_small`, `item_type_image_large`, `item_type_image_hotbar`, `item_type_size`, `item_type_capacity`, `item_type_demand_multiplier`, `item_type_supply_multiplier`, `item_type_risk_multiplier`, `item_type_enabled`, `item_type_delay_switch`, `item_type_delay_use`, `item_type_delay_pickup`, `item_type_delay_put`, `item_type_delay_take`, `item_type_delay_give`, `item_type_delay_drop`) VALUES + (97, 2, 'Camera', 1, 34, 0, 25, 0, 292, 0, 0, -1, 1.6, 0, 0, 0, 0, 0, 'no-image.png', 'no-image.png', 'no-image.png', 0, 0, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `item_type` (`item_type_id`, `item_type_server`, `item_type_name`, `item_type_use_type`, `item_type_use_id`, `item_type_use_value`, `item_type_order_price`, `item_type_drop_type`, `item_type_drop_model`, `item_type_drop_pos_x`, `item_type_drop_pos_y`, `item_type_drop_pos_z`, `item_type_drop_rot_x`, `item_type_drop_rot_y`, `item_type_drop_rot_z`, `item_type_drop_scale_x`, `item_type_drop_scale_y`, `item_type_drop_scale_z`, `item_type_image_small`, `item_type_image_large`, `item_type_image_hotbar`, `item_type_size`, `item_type_capacity`, `item_type_demand_multiplier`, `item_type_supply_multiplier`, `item_type_risk_multiplier`, `item_type_enabled`, `item_type_delay_switch`, `item_type_delay_use`, `item_type_delay_pickup`, `item_type_delay_put`, `item_type_delay_take`, `item_type_delay_give`, `item_type_delay_drop`) VALUES + (98, 2, 'Detonator', 1, 36, 0, 0, 0, 291, 0, 0, -1, 1.6, 0, 0, 0, 0, 0, 'no-image.png', 'no-image.png', 'no-image.png', 0, 0, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `item_type` (`item_type_id`, `item_type_server`, `item_type_name`, `item_type_use_type`, `item_type_use_id`, `item_type_use_value`, `item_type_order_price`, `item_type_drop_type`, `item_type_drop_model`, `item_type_drop_pos_x`, `item_type_drop_pos_y`, `item_type_drop_pos_z`, `item_type_drop_rot_x`, `item_type_drop_rot_y`, `item_type_drop_rot_z`, `item_type_drop_scale_x`, `item_type_drop_scale_y`, `item_type_drop_scale_z`, `item_type_image_small`, `item_type_image_large`, `item_type_image_hotbar`, `item_type_size`, `item_type_capacity`, `item_type_demand_multiplier`, `item_type_supply_multiplier`, `item_type_risk_multiplier`, `item_type_enabled`, `item_type_delay_switch`, `item_type_delay_use`, `item_type_delay_pickup`, `item_type_delay_put`, `item_type_delay_take`, `item_type_delay_give`, `item_type_delay_drop`) VALUES + (99, 2, 'Phone', 3, 0, 0, 250, 1, 258, 0, 0, -1, 1.6, 0, 0, 0, 0, 0, 'no-image.png', 'no-image.png', 'no-image.png', 0, 0, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `item_type` (`item_type_id`, `item_type_server`, `item_type_name`, `item_type_use_type`, `item_type_use_id`, `item_type_use_value`, `item_type_order_price`, `item_type_drop_type`, `item_type_drop_model`, `item_type_drop_pos_x`, `item_type_drop_pos_y`, `item_type_drop_pos_z`, `item_type_drop_rot_x`, `item_type_drop_rot_y`, `item_type_drop_rot_z`, `item_type_drop_scale_x`, `item_type_drop_scale_y`, `item_type_drop_scale_z`, `item_type_image_small`, `item_type_image_large`, `item_type_image_hotbar`, `item_type_size`, `item_type_capacity`, `item_type_demand_multiplier`, `item_type_supply_multiplier`, `item_type_risk_multiplier`, `item_type_enabled`, `item_type_delay_switch`, `item_type_delay_use`, `item_type_delay_pickup`, `item_type_delay_put`, `item_type_delay_take`, `item_type_delay_give`, `item_type_delay_drop`) VALUES + (100, 2, 'Radio', 32, 0, 0, 0, 1, 291, 0, 0, -1, 1.6, 0, 0, 0, 0, 0, 'no-image.png', 'no-image.png', 'no-image.png', 0, 0, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `item_type` (`item_type_id`, `item_type_server`, `item_type_name`, `item_type_use_type`, `item_type_use_id`, `item_type_use_value`, `item_type_order_price`, `item_type_drop_type`, `item_type_drop_model`, `item_type_drop_pos_x`, `item_type_drop_pos_y`, `item_type_drop_pos_z`, `item_type_drop_rot_x`, `item_type_drop_rot_y`, `item_type_drop_rot_z`, `item_type_drop_scale_x`, `item_type_drop_scale_y`, `item_type_drop_scale_z`, `item_type_image_small`, `item_type_image_large`, `item_type_image_hotbar`, `item_type_size`, `item_type_capacity`, `item_type_demand_multiplier`, `item_type_supply_multiplier`, `item_type_risk_multiplier`, `item_type_enabled`, `item_type_delay_switch`, `item_type_delay_use`, `item_type_delay_pickup`, `item_type_delay_put`, `item_type_delay_take`, `item_type_delay_give`, `item_type_delay_drop`) VALUES + (101, 2, 'Pot Seed', 13, 0, 0, 2, 1, 0, 0, 0, -1, 1.6, 0, 0, 0, 0, 0, 'no-image.png', 'no-image.png', 'no-image.png', 0, 0, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `item_type` (`item_type_id`, `item_type_server`, `item_type_name`, `item_type_use_type`, `item_type_use_id`, `item_type_use_value`, `item_type_order_price`, `item_type_drop_type`, `item_type_drop_model`, `item_type_drop_pos_x`, `item_type_drop_pos_y`, `item_type_drop_pos_z`, `item_type_drop_rot_x`, `item_type_drop_rot_y`, `item_type_drop_rot_z`, `item_type_drop_scale_x`, `item_type_drop_scale_y`, `item_type_drop_scale_z`, `item_type_image_small`, `item_type_image_large`, `item_type_image_hotbar`, `item_type_size`, `item_type_capacity`, `item_type_demand_multiplier`, `item_type_supply_multiplier`, `item_type_risk_multiplier`, `item_type_enabled`, `item_type_delay_switch`, `item_type_delay_use`, `item_type_delay_pickup`, `item_type_delay_put`, `item_type_delay_take`, `item_type_delay_give`, `item_type_delay_drop`) VALUES + (102, 2, 'Weed', 14, 0, 0, 20, 1, 0, 0, 0, -1, 1.6, 0, 0, 0.3, 0.3, 0.3, 'no-image.png', 'no-image.png', 'no-image.png', 0, 0, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `item_type` (`item_type_id`, `item_type_server`, `item_type_name`, `item_type_use_type`, `item_type_use_id`, `item_type_use_value`, `item_type_order_price`, `item_type_drop_type`, `item_type_drop_model`, `item_type_drop_pos_x`, `item_type_drop_pos_y`, `item_type_drop_pos_z`, `item_type_drop_rot_x`, `item_type_drop_rot_y`, `item_type_drop_rot_z`, `item_type_drop_scale_x`, `item_type_drop_scale_y`, `item_type_drop_scale_z`, `item_type_image_small`, `item_type_image_large`, `item_type_image_hotbar`, `item_type_size`, `item_type_capacity`, `item_type_demand_multiplier`, `item_type_supply_multiplier`, `item_type_risk_multiplier`, `item_type_enabled`, `item_type_delay_switch`, `item_type_delay_use`, `item_type_delay_pickup`, `item_type_delay_put`, `item_type_delay_take`, `item_type_delay_give`, `item_type_delay_drop`) VALUES + (103, 2, 'Meth', 16, 0, 0, 100, 1, 0, 0, 0, -1, 1.6, 0, 0, 0.3, 0.3, 0.3, 'no-image.png', 'no-image.png', 'no-image.png', 0, 100, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `item_type` (`item_type_id`, `item_type_server`, `item_type_name`, `item_type_use_type`, `item_type_use_id`, `item_type_use_value`, `item_type_order_price`, `item_type_drop_type`, `item_type_drop_model`, `item_type_drop_pos_x`, `item_type_drop_pos_y`, `item_type_drop_pos_z`, `item_type_drop_rot_x`, `item_type_drop_rot_y`, `item_type_drop_rot_z`, `item_type_drop_scale_x`, `item_type_drop_scale_y`, `item_type_drop_scale_z`, `item_type_image_small`, `item_type_image_large`, `item_type_image_hotbar`, `item_type_size`, `item_type_capacity`, `item_type_demand_multiplier`, `item_type_supply_multiplier`, `item_type_risk_multiplier`, `item_type_enabled`, `item_type_delay_switch`, `item_type_delay_use`, `item_type_delay_pickup`, `item_type_delay_put`, `item_type_delay_take`, `item_type_delay_give`, `item_type_delay_drop`) VALUES + (104, 2, 'Coke', 15, 0, 0, 250, 1, 0, 0, 0, -1, 1.6, 0, 0, 0.3, 0.3, 0.3, 'no-image.png', 'no-image.png', 'no-image.png', 0, 100, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `item_type` (`item_type_id`, `item_type_server`, `item_type_name`, `item_type_use_type`, `item_type_use_id`, `item_type_use_value`, `item_type_order_price`, `item_type_drop_type`, `item_type_drop_model`, `item_type_drop_pos_x`, `item_type_drop_pos_y`, `item_type_drop_pos_z`, `item_type_drop_rot_x`, `item_type_drop_rot_y`, `item_type_drop_rot_z`, `item_type_drop_scale_x`, `item_type_drop_scale_y`, `item_type_drop_scale_z`, `item_type_image_small`, `item_type_image_large`, `item_type_image_hotbar`, `item_type_size`, `item_type_capacity`, `item_type_demand_multiplier`, `item_type_supply_multiplier`, `item_type_risk_multiplier`, `item_type_enabled`, `item_type_delay_switch`, `item_type_delay_use`, `item_type_delay_pickup`, `item_type_delay_put`, `item_type_delay_take`, `item_type_delay_give`, `item_type_delay_drop`) VALUES + (105, 2, 'Wallet', 9, 0, 0, 10, 1, 0, 0, 0, -1, 1.6, 0, 0, 0.3, 0.3, 0.2, 'no-image.png', 'no-image.png', 'no-image.png', 0, 0, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `item_type` (`item_type_id`, `item_type_server`, `item_type_name`, `item_type_use_type`, `item_type_use_id`, `item_type_use_value`, `item_type_order_price`, `item_type_drop_type`, `item_type_drop_model`, `item_type_drop_pos_x`, `item_type_drop_pos_y`, `item_type_drop_pos_z`, `item_type_drop_rot_x`, `item_type_drop_rot_y`, `item_type_drop_rot_z`, `item_type_drop_scale_x`, `item_type_drop_scale_y`, `item_type_drop_scale_z`, `item_type_image_small`, `item_type_image_large`, `item_type_image_hotbar`, `item_type_size`, `item_type_capacity`, `item_type_demand_multiplier`, `item_type_supply_multiplier`, `item_type_risk_multiplier`, `item_type_enabled`, `item_type_delay_switch`, `item_type_delay_use`, `item_type_delay_pickup`, `item_type_delay_put`, `item_type_delay_take`, `item_type_delay_give`, `item_type_delay_drop`) VALUES + (106, 2, 'Crate', 9, 0, 0, 25, 1, 349, 0, 0, -1, 1.6, 0, 0, 0, 0, 0, 'no-image.png', 'no-image.png', 'no-image.png', 0, 0, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `item_type` (`item_type_id`, `item_type_server`, `item_type_name`, `item_type_use_type`, `item_type_use_id`, `item_type_use_value`, `item_type_order_price`, `item_type_drop_type`, `item_type_drop_model`, `item_type_drop_pos_x`, `item_type_drop_pos_y`, `item_type_drop_pos_z`, `item_type_drop_rot_x`, `item_type_drop_rot_y`, `item_type_drop_rot_z`, `item_type_drop_scale_x`, `item_type_drop_scale_y`, `item_type_drop_scale_z`, `item_type_image_small`, `item_type_image_large`, `item_type_image_hotbar`, `item_type_size`, `item_type_capacity`, `item_type_demand_multiplier`, `item_type_supply_multiplier`, `item_type_risk_multiplier`, `item_type_enabled`, `item_type_delay_switch`, `item_type_delay_use`, `item_type_delay_pickup`, `item_type_delay_put`, `item_type_delay_take`, `item_type_delay_give`, `item_type_delay_drop`) VALUES + (107, 2, 'Cardboard Box', 9, 0, 0, 25, 1, 346, 0, 0, -1, 1.6, 0, 0, 0, 0, 0, 'no-image.png', 'no-image.png', 'no-image.png', 0, 0, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `item_type` (`item_type_id`, `item_type_server`, `item_type_name`, `item_type_use_type`, `item_type_use_id`, `item_type_use_value`, `item_type_order_price`, `item_type_drop_type`, `item_type_drop_model`, `item_type_drop_pos_x`, `item_type_drop_pos_y`, `item_type_drop_pos_z`, `item_type_drop_rot_x`, `item_type_drop_rot_y`, `item_type_drop_rot_z`, `item_type_drop_scale_x`, `item_type_drop_scale_y`, `item_type_drop_scale_z`, `item_type_image_small`, `item_type_image_large`, `item_type_image_hotbar`, `item_type_size`, `item_type_capacity`, `item_type_demand_multiplier`, `item_type_supply_multiplier`, `item_type_risk_multiplier`, `item_type_enabled`, `item_type_delay_switch`, `item_type_delay_use`, `item_type_delay_pickup`, `item_type_delay_put`, `item_type_delay_take`, `item_type_delay_give`, `item_type_delay_drop`) VALUES + (108, 2, 'Barrel', 9, 0, 0, 25, 1, 342, 0, 0, -1, 1.6, 0, 0, 0, 0, 0, 'no-image.png', 'no-image.png', 'no-image.png', 0, 0, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `item_type` (`item_type_id`, `item_type_server`, `item_type_name`, `item_type_use_type`, `item_type_use_id`, `item_type_use_value`, `item_type_order_price`, `item_type_drop_type`, `item_type_drop_model`, `item_type_drop_pos_x`, `item_type_drop_pos_y`, `item_type_drop_pos_z`, `item_type_drop_rot_x`, `item_type_drop_rot_y`, `item_type_drop_rot_z`, `item_type_drop_scale_x`, `item_type_drop_scale_y`, `item_type_drop_scale_z`, `item_type_image_small`, `item_type_image_large`, `item_type_image_hotbar`, `item_type_size`, `item_type_capacity`, `item_type_demand_multiplier`, `item_type_supply_multiplier`, `item_type_risk_multiplier`, `item_type_enabled`, `item_type_delay_switch`, `item_type_delay_use`, `item_type_delay_pickup`, `item_type_delay_put`, `item_type_delay_take`, `item_type_delay_give`, `item_type_delay_drop`) VALUES + (109, 2, 'Outfit', 6, 0, 0, 50, 1, 502, 0, 0, -1, 1.6, 0, 0, 0, 0, 0, 'no-image.png', 'no-image.png', 'no-image.png', 0, 0, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `item_type` (`item_type_id`, `item_type_server`, `item_type_name`, `item_type_use_type`, `item_type_use_id`, `item_type_use_value`, `item_type_order_price`, `item_type_drop_type`, `item_type_drop_model`, `item_type_drop_pos_x`, `item_type_drop_pos_y`, `item_type_drop_pos_z`, `item_type_drop_rot_x`, `item_type_drop_rot_y`, `item_type_drop_rot_z`, `item_type_drop_scale_x`, `item_type_drop_scale_y`, `item_type_drop_scale_z`, `item_type_image_small`, `item_type_image_large`, `item_type_image_hotbar`, `item_type_size`, `item_type_capacity`, `item_type_demand_multiplier`, `item_type_supply_multiplier`, `item_type_risk_multiplier`, `item_type_enabled`, `item_type_delay_switch`, `item_type_delay_use`, `item_type_delay_pickup`, `item_type_delay_put`, `item_type_delay_take`, `item_type_delay_give`, `item_type_delay_drop`) VALUES + (110, 2, 'Megaphone', 15, 0, 0, 35, 1, 502, 0, 0, -1, 1.6, 0, 0, 0, 0, 0, 'no-image.png', 'no-image.png', 'no-image.png', 0, 100, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `item_type` (`item_type_id`, `item_type_server`, `item_type_name`, `item_type_use_type`, `item_type_use_id`, `item_type_use_value`, `item_type_order_price`, `item_type_drop_type`, `item_type_drop_model`, `item_type_drop_pos_x`, `item_type_drop_pos_y`, `item_type_drop_pos_z`, `item_type_drop_rot_x`, `item_type_drop_rot_y`, `item_type_drop_rot_z`, `item_type_drop_scale_x`, `item_type_drop_scale_y`, `item_type_drop_scale_z`, `item_type_image_small`, `item_type_image_large`, `item_type_image_hotbar`, `item_type_size`, `item_type_capacity`, `item_type_demand_multiplier`, `item_type_supply_multiplier`, `item_type_risk_multiplier`, `item_type_enabled`, `item_type_delay_switch`, `item_type_delay_use`, `item_type_delay_pickup`, `item_type_delay_put`, `item_type_delay_take`, `item_type_delay_give`, `item_type_delay_drop`) VALUES + (111, 2, 'Bottle of Water', 18, 1, 10, 3, 1, 596, 0, 0, -1, 1.6, 0, 0, 0, 0, 0, 'no-image.png', 'no-image.png', 'no-image.png', 0, 100, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `item_type` (`item_type_id`, `item_type_server`, `item_type_name`, `item_type_use_type`, `item_type_use_id`, `item_type_use_value`, `item_type_order_price`, `item_type_drop_type`, `item_type_drop_model`, `item_type_drop_pos_x`, `item_type_drop_pos_y`, `item_type_drop_pos_z`, `item_type_drop_rot_x`, `item_type_drop_rot_y`, `item_type_drop_rot_z`, `item_type_drop_scale_x`, `item_type_drop_scale_y`, `item_type_drop_scale_z`, `item_type_image_small`, `item_type_image_large`, `item_type_image_hotbar`, `item_type_size`, `item_type_capacity`, `item_type_demand_multiplier`, `item_type_supply_multiplier`, `item_type_risk_multiplier`, `item_type_enabled`, `item_type_delay_switch`, `item_type_delay_use`, `item_type_delay_pickup`, `item_type_delay_put`, `item_type_delay_take`, `item_type_delay_give`, `item_type_delay_drop`) VALUES + (112, 2, 'Can of Beer', 35, 3, 5, 5, 1, 594, 0, 0, -1, 1.6, 0, 0, 0, 0, 0, 'no-image.png', 'no-image.png', 'no-image.png', 0, 100, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `item_type` (`item_type_id`, `item_type_server`, `item_type_name`, `item_type_use_type`, `item_type_use_id`, `item_type_use_value`, `item_type_order_price`, `item_type_drop_type`, `item_type_drop_model`, `item_type_drop_pos_x`, `item_type_drop_pos_y`, `item_type_drop_pos_z`, `item_type_drop_rot_x`, `item_type_drop_rot_y`, `item_type_drop_rot_z`, `item_type_drop_scale_x`, `item_type_drop_scale_y`, `item_type_drop_scale_z`, `item_type_image_small`, `item_type_image_large`, `item_type_image_hotbar`, `item_type_size`, `item_type_capacity`, `item_type_demand_multiplier`, `item_type_supply_multiplier`, `item_type_risk_multiplier`, `item_type_enabled`, `item_type_delay_switch`, `item_type_delay_use`, `item_type_delay_pickup`, `item_type_delay_put`, `item_type_delay_take`, `item_type_delay_give`, `item_type_delay_drop`) VALUES + (113, 2, 'Bottle of Vodka', 35, 3, 5, 10, 1, 596, 0, 0, -1, 1.6, 0, 0, 0, 0, 0, 'no-image.png', 'no-image.png', 'no-image.png', 0, 100, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `item_type` (`item_type_id`, `item_type_server`, `item_type_name`, `item_type_use_type`, `item_type_use_id`, `item_type_use_value`, `item_type_order_price`, `item_type_drop_type`, `item_type_drop_model`, `item_type_drop_pos_x`, `item_type_drop_pos_y`, `item_type_drop_pos_z`, `item_type_drop_rot_x`, `item_type_drop_rot_y`, `item_type_drop_rot_z`, `item_type_drop_scale_x`, `item_type_drop_scale_y`, `item_type_drop_scale_z`, `item_type_image_small`, `item_type_image_large`, `item_type_image_hotbar`, `item_type_size`, `item_type_capacity`, `item_type_demand_multiplier`, `item_type_supply_multiplier`, `item_type_risk_multiplier`, `item_type_enabled`, `item_type_delay_switch`, `item_type_delay_use`, `item_type_delay_pickup`, `item_type_delay_put`, `item_type_delay_take`, `item_type_delay_give`, `item_type_delay_drop`) VALUES + (114, 2, 'Bottle of Whiskey', 35, 3, 5, 12, 1, 592, 0, 0, -1, 1.6, 0, 0, 0, 0, 0, 'no-image.png', 'no-image.png', 'no-image.png', 0, 100, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `item_type` (`item_type_id`, `item_type_server`, `item_type_name`, `item_type_use_type`, `item_type_use_id`, `item_type_use_value`, `item_type_order_price`, `item_type_drop_type`, `item_type_drop_model`, `item_type_drop_pos_x`, `item_type_drop_pos_y`, `item_type_drop_pos_z`, `item_type_drop_rot_x`, `item_type_drop_rot_y`, `item_type_drop_rot_z`, `item_type_drop_scale_x`, `item_type_drop_scale_y`, `item_type_drop_scale_z`, `item_type_image_small`, `item_type_image_large`, `item_type_image_hotbar`, `item_type_size`, `item_type_capacity`, `item_type_demand_multiplier`, `item_type_supply_multiplier`, `item_type_risk_multiplier`, `item_type_enabled`, `item_type_delay_switch`, `item_type_delay_use`, `item_type_delay_pickup`, `item_type_delay_put`, `item_type_delay_take`, `item_type_delay_give`, `item_type_delay_drop`) VALUES + (115, 2, 'Handcuffs', 24, 0, 0, 100, 0, 502, 0, 0, -1, 1.6, 0, 0, 0.3, 0.3, 0.2, 'no-image.png', 'no-image.png', 'no-image.png', 0, 0, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `item_type` (`item_type_id`, `item_type_server`, `item_type_name`, `item_type_use_type`, `item_type_use_id`, `item_type_use_value`, `item_type_order_price`, `item_type_drop_type`, `item_type_drop_model`, `item_type_drop_pos_x`, `item_type_drop_pos_y`, `item_type_drop_pos_z`, `item_type_drop_rot_x`, `item_type_drop_rot_y`, `item_type_drop_rot_z`, `item_type_drop_scale_x`, `item_type_drop_scale_y`, `item_type_drop_scale_z`, `item_type_image_small`, `item_type_image_large`, `item_type_image_hotbar`, `item_type_size`, `item_type_capacity`, `item_type_demand_multiplier`, `item_type_supply_multiplier`, `item_type_risk_multiplier`, `item_type_enabled`, `item_type_delay_switch`, `item_type_delay_use`, `item_type_delay_pickup`, `item_type_delay_put`, `item_type_delay_take`, `item_type_delay_give`, `item_type_delay_drop`) VALUES + (116, 2, 'Rope', 25, 0, 0, 20, 0, 502, 0, 0, -1, 1.6, 0, 0, 0, 0, 0, 'no-image.png', 'no-image.png', 'no-image.png', 0, 0, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `item_type` (`item_type_id`, `item_type_server`, `item_type_name`, `item_type_use_type`, `item_type_use_id`, `item_type_use_value`, `item_type_order_price`, `item_type_drop_type`, `item_type_drop_model`, `item_type_drop_pos_x`, `item_type_drop_pos_y`, `item_type_drop_pos_z`, `item_type_drop_rot_x`, `item_type_drop_rot_y`, `item_type_drop_rot_z`, `item_type_drop_scale_x`, `item_type_drop_scale_y`, `item_type_drop_scale_z`, `item_type_image_small`, `item_type_image_large`, `item_type_image_hotbar`, `item_type_size`, `item_type_capacity`, `item_type_demand_multiplier`, `item_type_supply_multiplier`, `item_type_risk_multiplier`, `item_type_enabled`, `item_type_delay_switch`, `item_type_delay_use`, `item_type_delay_pickup`, `item_type_delay_put`, `item_type_delay_take`, `item_type_delay_give`, `item_type_delay_drop`) VALUES + (117, 2, 'Blindfold', 26, 0, 0, 20, 0, 502, 0, 0, -1, 1.6, 0, 0, 0, 0, 0, 'no-image.png', 'no-image.png', 'no-image.png', 0, 0, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `item_type` (`item_type_id`, `item_type_server`, `item_type_name`, `item_type_use_type`, `item_type_use_id`, `item_type_use_value`, `item_type_order_price`, `item_type_drop_type`, `item_type_drop_model`, `item_type_drop_pos_x`, `item_type_drop_pos_y`, `item_type_drop_pos_z`, `item_type_drop_rot_x`, `item_type_drop_rot_y`, `item_type_drop_rot_z`, `item_type_drop_scale_x`, `item_type_drop_scale_y`, `item_type_drop_scale_z`, `item_type_image_small`, `item_type_image_large`, `item_type_image_hotbar`, `item_type_size`, `item_type_capacity`, `item_type_demand_multiplier`, `item_type_supply_multiplier`, `item_type_risk_multiplier`, `item_type_enabled`, `item_type_delay_switch`, `item_type_delay_use`, `item_type_delay_pickup`, `item_type_delay_put`, `item_type_delay_take`, `item_type_delay_give`, `item_type_delay_drop`) VALUES + (118, 2, 'Bulletproof Vest', 28, 0, 0, 0, 1, 500, 0, 0, -1, 1.6, 0, 0, 0, 0, 0, 'no-image.png', 'no-image.png', 'no-image.png', 0, 100, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `item_type` (`item_type_id`, `item_type_server`, `item_type_name`, `item_type_use_type`, `item_type_use_id`, `item_type_use_value`, `item_type_order_price`, `item_type_drop_type`, `item_type_drop_model`, `item_type_drop_pos_x`, `item_type_drop_pos_y`, `item_type_drop_pos_z`, `item_type_drop_rot_x`, `item_type_drop_rot_y`, `item_type_drop_rot_z`, `item_type_drop_scale_x`, `item_type_drop_scale_y`, `item_type_drop_scale_z`, `item_type_image_small`, `item_type_image_large`, `item_type_image_hotbar`, `item_type_size`, `item_type_capacity`, `item_type_demand_multiplier`, `item_type_supply_multiplier`, `item_type_risk_multiplier`, `item_type_enabled`, `item_type_delay_switch`, `item_type_delay_use`, `item_type_delay_pickup`, `item_type_delay_put`, `item_type_delay_take`, `item_type_delay_give`, `item_type_delay_drop`) VALUES + (119, 2, 'Uniform', 6, 0, 0, 0, 1, 502, 0, 0, -1, 1.6, 0, 0, 0, 0, 0, 'no-image.png', 'no-image.png', 'no-image.png', 0, 0, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `item_type` (`item_type_id`, `item_type_server`, `item_type_name`, `item_type_use_type`, `item_type_use_id`, `item_type_use_value`, `item_type_order_price`, `item_type_drop_type`, `item_type_drop_model`, `item_type_drop_pos_x`, `item_type_drop_pos_y`, `item_type_drop_pos_z`, `item_type_drop_rot_x`, `item_type_drop_rot_y`, `item_type_drop_rot_z`, `item_type_drop_scale_x`, `item_type_drop_scale_y`, `item_type_drop_scale_z`, `item_type_image_small`, `item_type_image_large`, `item_type_image_hotbar`, `item_type_size`, `item_type_capacity`, `item_type_demand_multiplier`, `item_type_supply_multiplier`, `item_type_risk_multiplier`, `item_type_enabled`, `item_type_delay_switch`, `item_type_delay_use`, `item_type_delay_pickup`, `item_type_delay_put`, `item_type_delay_take`, `item_type_delay_give`, `item_type_delay_drop`) VALUES + (120, 2, 'Fire Extinguisher', 36, 0, 0, 0, 0, 502, 0, 0, -1, 1.6, 0, 0, 0, 0, 0, 'no-image.png', 'no-image.png', 'no-image.png', 0, 1000, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `item_type` (`item_type_id`, `item_type_server`, `item_type_name`, `item_type_use_type`, `item_type_use_id`, `item_type_use_value`, `item_type_order_price`, `item_type_drop_type`, `item_type_drop_model`, `item_type_drop_pos_x`, `item_type_drop_pos_y`, `item_type_drop_pos_z`, `item_type_drop_rot_x`, `item_type_drop_rot_y`, `item_type_drop_rot_z`, `item_type_drop_scale_x`, `item_type_drop_scale_y`, `item_type_drop_scale_z`, `item_type_image_small`, `item_type_image_large`, `item_type_image_hotbar`, `item_type_size`, `item_type_capacity`, `item_type_demand_multiplier`, `item_type_supply_multiplier`, `item_type_risk_multiplier`, `item_type_enabled`, `item_type_delay_switch`, `item_type_delay_use`, `item_type_delay_pickup`, `item_type_delay_put`, `item_type_delay_take`, `item_type_delay_give`, `item_type_delay_drop`) VALUES + (121, 2, 'Tazer', 27, 17, 0, 350, 0, 502, 0, 0, -1, 1.6, 0, 0, 0, 0, 0, 'no-image.png', 'no-image.png', 'no-image.png', 0, 0, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `item_type` (`item_type_id`, `item_type_server`, `item_type_name`, `item_type_use_type`, `item_type_use_id`, `item_type_use_value`, `item_type_order_price`, `item_type_drop_type`, `item_type_drop_model`, `item_type_drop_pos_x`, `item_type_drop_pos_y`, `item_type_drop_pos_z`, `item_type_drop_rot_x`, `item_type_drop_rot_y`, `item_type_drop_rot_z`, `item_type_drop_scale_x`, `item_type_drop_scale_y`, `item_type_drop_scale_z`, `item_type_image_small`, `item_type_image_large`, `item_type_image_hotbar`, `item_type_size`, `item_type_capacity`, `item_type_demand_multiplier`, `item_type_supply_multiplier`, `item_type_risk_multiplier`, `item_type_enabled`, `item_type_delay_switch`, `item_type_delay_use`, `item_type_delay_pickup`, `item_type_delay_put`, `item_type_delay_take`, `item_type_delay_give`, `item_type_delay_drop`) VALUES + (122, 2, 'Pepper Spray', 38, 0, 0, 150, 0, 502, 0, 0, -1, 1.6, 0, 0, 0, 0, 0, 'no-image.png', 'no-image.png', 'no-image.png', 0, 1000, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `item_type` (`item_type_id`, `item_type_server`, `item_type_name`, `item_type_use_type`, `item_type_use_id`, `item_type_use_value`, `item_type_order_price`, `item_type_drop_type`, `item_type_drop_model`, `item_type_drop_pos_x`, `item_type_drop_pos_y`, `item_type_drop_pos_z`, `item_type_drop_rot_x`, `item_type_drop_rot_y`, `item_type_drop_rot_z`, `item_type_drop_scale_x`, `item_type_drop_scale_y`, `item_type_drop_scale_z`, `item_type_image_small`, `item_type_image_large`, `item_type_image_hotbar`, `item_type_size`, `item_type_capacity`, `item_type_demand_multiplier`, `item_type_supply_multiplier`, `item_type_risk_multiplier`, `item_type_enabled`, `item_type_delay_switch`, `item_type_delay_use`, `item_type_delay_pickup`, `item_type_delay_put`, `item_type_delay_take`, `item_type_delay_give`, `item_type_delay_drop`) VALUES + (123, 2, 'Flashlight', 39, 0, 0, 35, 0, 502, 0, 0, -1, 1.6, 0, 0, 0, 0, 0, 'no-image.png', 'no-image.png', 'no-image.png', 0, 0, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `item_type` (`item_type_id`, `item_type_server`, `item_type_name`, `item_type_use_type`, `item_type_use_id`, `item_type_use_value`, `item_type_order_price`, `item_type_drop_type`, `item_type_drop_model`, `item_type_drop_pos_x`, `item_type_drop_pos_y`, `item_type_drop_pos_z`, `item_type_drop_rot_x`, `item_type_drop_rot_y`, `item_type_drop_rot_z`, `item_type_drop_scale_x`, `item_type_drop_scale_y`, `item_type_drop_scale_z`, `item_type_image_small`, `item_type_image_large`, `item_type_image_hotbar`, `item_type_size`, `item_type_capacity`, `item_type_demand_multiplier`, `item_type_supply_multiplier`, `item_type_risk_multiplier`, `item_type_enabled`, `item_type_delay_switch`, `item_type_delay_use`, `item_type_delay_pickup`, `item_type_delay_put`, `item_type_delay_take`, `item_type_delay_give`, `item_type_delay_drop`) VALUES + (124, 2, 'First Aid Kit', 29, 0, 50, 75, 0, 502, 0, 0, -1, 1.6, 0, 0, 0, 0, 0, 'no-image.png', 'no-image.png', 'no-image.png', 0, 100, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `item_type` (`item_type_id`, `item_type_server`, `item_type_name`, `item_type_use_type`, `item_type_use_id`, `item_type_use_value`, `item_type_order_price`, `item_type_drop_type`, `item_type_drop_model`, `item_type_drop_pos_x`, `item_type_drop_pos_y`, `item_type_drop_pos_z`, `item_type_drop_rot_x`, `item_type_drop_rot_y`, `item_type_drop_rot_z`, `item_type_drop_scale_x`, `item_type_drop_scale_y`, `item_type_drop_scale_z`, `item_type_image_small`, `item_type_image_large`, `item_type_image_hotbar`, `item_type_size`, `item_type_capacity`, `item_type_demand_multiplier`, `item_type_supply_multiplier`, `item_type_risk_multiplier`, `item_type_enabled`, `item_type_delay_switch`, `item_type_delay_use`, `item_type_delay_pickup`, `item_type_delay_put`, `item_type_delay_take`, `item_type_delay_give`, `item_type_delay_drop`) VALUES + (125, 2, 'AED', 29, 0, 100, 3000, 0, 502, 0, 0, -1, 1.6, 0, 0, 0, 0, 0, 'no-image.png', 'no-image.png', 'no-image.png', 0, 100, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `item_type` (`item_type_id`, `item_type_server`, `item_type_name`, `item_type_use_type`, `item_type_use_id`, `item_type_use_value`, `item_type_order_price`, `item_type_drop_type`, `item_type_drop_model`, `item_type_drop_pos_x`, `item_type_drop_pos_y`, `item_type_drop_pos_z`, `item_type_drop_rot_x`, `item_type_drop_rot_y`, `item_type_drop_rot_z`, `item_type_drop_scale_x`, `item_type_drop_scale_y`, `item_type_drop_scale_z`, `item_type_image_small`, `item_type_image_large`, `item_type_image_hotbar`, `item_type_size`, `item_type_capacity`, `item_type_demand_multiplier`, `item_type_supply_multiplier`, `item_type_risk_multiplier`, `item_type_enabled`, `item_type_delay_switch`, `item_type_delay_use`, `item_type_delay_pickup`, `item_type_delay_put`, `item_type_delay_take`, `item_type_delay_give`, `item_type_delay_drop`) VALUES + (126, 2, 'Morphine Syringe', 29, 0, 100, 650, 0, 502, 0, 0, -1, 1.6, 0, 0, 0, 0, 0, 'no-image.png', 'no-image.png', 'no-image.png', 0, 100, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `item_type` (`item_type_id`, `item_type_server`, `item_type_name`, `item_type_use_type`, `item_type_use_id`, `item_type_use_value`, `item_type_order_price`, `item_type_drop_type`, `item_type_drop_model`, `item_type_drop_pos_x`, `item_type_drop_pos_y`, `item_type_drop_pos_z`, `item_type_drop_rot_x`, `item_type_drop_rot_y`, `item_type_drop_rot_z`, `item_type_drop_scale_x`, `item_type_drop_scale_y`, `item_type_drop_scale_z`, `item_type_image_small`, `item_type_image_large`, `item_type_image_hotbar`, `item_type_size`, `item_type_capacity`, `item_type_demand_multiplier`, `item_type_supply_multiplier`, `item_type_risk_multiplier`, `item_type_enabled`, `item_type_delay_switch`, `item_type_delay_use`, `item_type_delay_pickup`, `item_type_delay_put`, `item_type_delay_take`, `item_type_delay_give`, `item_type_delay_drop`) VALUES + (127, 2, 'Cheeseburger', 19, 0, 10, 5, 0, 502, 0, 0, -1, 1.6, 0, 0, 0, 0, 0, 'no-image.png', 'no-image.png', 'no-image.png', 0, 100, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `item_type` (`item_type_id`, `item_type_server`, `item_type_name`, `item_type_use_type`, `item_type_use_id`, `item_type_use_value`, `item_type_order_price`, `item_type_drop_type`, `item_type_drop_model`, `item_type_drop_pos_x`, `item_type_drop_pos_y`, `item_type_drop_pos_z`, `item_type_drop_rot_x`, `item_type_drop_rot_y`, `item_type_drop_rot_z`, `item_type_drop_scale_x`, `item_type_drop_scale_y`, `item_type_drop_scale_z`, `item_type_image_small`, `item_type_image_large`, `item_type_image_hotbar`, `item_type_size`, `item_type_capacity`, `item_type_demand_multiplier`, `item_type_supply_multiplier`, `item_type_risk_multiplier`, `item_type_enabled`, `item_type_delay_switch`, `item_type_delay_use`, `item_type_delay_pickup`, `item_type_delay_put`, `item_type_delay_take`, `item_type_delay_give`, `item_type_delay_drop`) VALUES + (128, 2, 'Slice of Pizza', 19, 0, 10, 5, 0, 502, 0, 0, -1, 1.6, 0, 0, 0, 0, 0, 'no-image.png', 'no-image.png', 'no-image.png', 0, 100, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `item_type` (`item_type_id`, `item_type_server`, `item_type_name`, `item_type_use_type`, `item_type_use_id`, `item_type_use_value`, `item_type_order_price`, `item_type_drop_type`, `item_type_drop_model`, `item_type_drop_pos_x`, `item_type_drop_pos_y`, `item_type_drop_pos_z`, `item_type_drop_rot_x`, `item_type_drop_rot_y`, `item_type_drop_rot_z`, `item_type_drop_scale_x`, `item_type_drop_scale_y`, `item_type_drop_scale_z`, `item_type_image_small`, `item_type_image_large`, `item_type_image_hotbar`, `item_type_size`, `item_type_capacity`, `item_type_demand_multiplier`, `item_type_supply_multiplier`, `item_type_risk_multiplier`, `item_type_enabled`, `item_type_delay_switch`, `item_type_delay_use`, `item_type_delay_pickup`, `item_type_delay_put`, `item_type_delay_take`, `item_type_delay_give`, `item_type_delay_drop`) VALUES + (129, 2, 'Chicken Wing', 19, 0, 10, 5, 0, 502, 0, 0, -1, 1.6, 0, 0, 0.1, 0.1, 0.1, 'no-image.png', 'no-image.png', 'no-image.png', 0, 100, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `item_type` (`item_type_id`, `item_type_server`, `item_type_name`, `item_type_use_type`, `item_type_use_id`, `item_type_use_value`, `item_type_order_price`, `item_type_drop_type`, `item_type_drop_model`, `item_type_drop_pos_x`, `item_type_drop_pos_y`, `item_type_drop_pos_z`, `item_type_drop_rot_x`, `item_type_drop_rot_y`, `item_type_drop_rot_z`, `item_type_drop_scale_x`, `item_type_drop_scale_y`, `item_type_drop_scale_z`, `item_type_image_small`, `item_type_image_large`, `item_type_image_hotbar`, `item_type_size`, `item_type_capacity`, `item_type_demand_multiplier`, `item_type_supply_multiplier`, `item_type_risk_multiplier`, `item_type_enabled`, `item_type_delay_switch`, `item_type_delay_use`, `item_type_delay_pickup`, `item_type_delay_put`, `item_type_delay_take`, `item_type_delay_give`, `item_type_delay_drop`) VALUES + (130, 2, 'Pizza', 19, 0, 10, 15, 0, 510, 0, 0, -1, 1.6, 0, 0, 0, 0, 0, 'no-image.png', 'no-image.png', 'no-image.png', 0, 100, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `item_type` (`item_type_id`, `item_type_server`, `item_type_name`, `item_type_use_type`, `item_type_use_id`, `item_type_use_value`, `item_type_order_price`, `item_type_drop_type`, `item_type_drop_model`, `item_type_drop_pos_x`, `item_type_drop_pos_y`, `item_type_drop_pos_z`, `item_type_drop_rot_x`, `item_type_drop_rot_y`, `item_type_drop_rot_z`, `item_type_drop_scale_x`, `item_type_drop_scale_y`, `item_type_drop_scale_z`, `item_type_image_small`, `item_type_image_large`, `item_type_image_hotbar`, `item_type_size`, `item_type_capacity`, `item_type_demand_multiplier`, `item_type_supply_multiplier`, `item_type_risk_multiplier`, `item_type_enabled`, `item_type_delay_switch`, `item_type_delay_use`, `item_type_delay_pickup`, `item_type_delay_put`, `item_type_delay_take`, `item_type_delay_give`, `item_type_delay_drop`) VALUES + (131, 2, 'Walkie Talkie', 31, 0, 0, 50, 0, 182, 0, 0, -1, 1.6, 0, 0, 0, 0, 0, 'no-image.png', 'no-image.png', 'no-image.png', 0, 0, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `item_type` (`item_type_id`, `item_type_server`, `item_type_name`, `item_type_use_type`, `item_type_use_id`, `item_type_use_value`, `item_type_order_price`, `item_type_drop_type`, `item_type_drop_model`, `item_type_drop_pos_x`, `item_type_drop_pos_y`, `item_type_drop_pos_z`, `item_type_drop_rot_x`, `item_type_drop_rot_y`, `item_type_drop_rot_z`, `item_type_drop_scale_x`, `item_type_drop_scale_y`, `item_type_drop_scale_z`, `item_type_image_small`, `item_type_image_large`, `item_type_image_hotbar`, `item_type_size`, `item_type_capacity`, `item_type_demand_multiplier`, `item_type_supply_multiplier`, `item_type_risk_multiplier`, `item_type_enabled`, `item_type_delay_switch`, `item_type_delay_use`, `item_type_delay_pickup`, `item_type_delay_put`, `item_type_delay_take`, `item_type_delay_give`, `item_type_delay_drop`) VALUES + (132, 2, 'Bottle of Soda', 35, 2, 0, 0, 0, 597, 0, 0, -1, 1.6, 0, 0, 0, 0, 0, 'no-image.png', 'no-image.png', 'no-image.png', 0, 100, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `item_type` (`item_type_id`, `item_type_server`, `item_type_name`, `item_type_use_type`, `item_type_use_id`, `item_type_use_value`, `item_type_order_price`, `item_type_drop_type`, `item_type_drop_model`, `item_type_drop_pos_x`, `item_type_drop_pos_y`, `item_type_drop_pos_z`, `item_type_drop_rot_x`, `item_type_drop_rot_y`, `item_type_drop_rot_z`, `item_type_drop_scale_x`, `item_type_drop_scale_y`, `item_type_drop_scale_z`, `item_type_image_small`, `item_type_image_large`, `item_type_image_hotbar`, `item_type_size`, `item_type_capacity`, `item_type_demand_multiplier`, `item_type_supply_multiplier`, `item_type_risk_multiplier`, `item_type_enabled`, `item_type_delay_switch`, `item_type_delay_use`, `item_type_delay_pickup`, `item_type_delay_put`, `item_type_delay_take`, `item_type_delay_give`, `item_type_delay_drop`) VALUES + (133, 2, 'Can of Soda', 35, 2, 0, 0, 0, 594, 0, 0, -1, 1.6, 0, 0, 0, 0, 0, 'no-image.png', 'no-image.png', 'no-image.png', 0, 100, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `item_type` (`item_type_id`, `item_type_server`, `item_type_name`, `item_type_use_type`, `item_type_use_id`, `item_type_use_value`, `item_type_order_price`, `item_type_drop_type`, `item_type_drop_model`, `item_type_drop_pos_x`, `item_type_drop_pos_y`, `item_type_drop_pos_z`, `item_type_drop_rot_x`, `item_type_drop_rot_y`, `item_type_drop_rot_z`, `item_type_drop_scale_x`, `item_type_drop_scale_y`, `item_type_drop_scale_z`, `item_type_image_small`, `item_type_image_large`, `item_type_image_hotbar`, `item_type_size`, `item_type_capacity`, `item_type_demand_multiplier`, `item_type_supply_multiplier`, `item_type_risk_multiplier`, `item_type_enabled`, `item_type_delay_switch`, `item_type_delay_use`, `item_type_delay_pickup`, `item_type_delay_put`, `item_type_delay_take`, `item_type_delay_give`, `item_type_delay_drop`) VALUES + (134, 2, 'Badge', 34, 0, 0, 0, 0, 0, 0, 0, -1, 1.6, 0, 0, 0, 0, 0, 'no-image.png', 'no-image.png', 'no-image.png', 0, 0, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `item_type` (`item_type_id`, `item_type_server`, `item_type_name`, `item_type_use_type`, `item_type_use_id`, `item_type_use_value`, `item_type_order_price`, `item_type_drop_type`, `item_type_drop_model`, `item_type_drop_pos_x`, `item_type_drop_pos_y`, `item_type_drop_pos_z`, `item_type_drop_rot_x`, `item_type_drop_rot_y`, `item_type_drop_rot_z`, `item_type_drop_scale_x`, `item_type_drop_scale_y`, `item_type_drop_scale_z`, `item_type_image_small`, `item_type_image_large`, `item_type_image_hotbar`, `item_type_size`, `item_type_capacity`, `item_type_demand_multiplier`, `item_type_supply_multiplier`, `item_type_risk_multiplier`, `item_type_enabled`, `item_type_delay_switch`, `item_type_delay_use`, `item_type_delay_pickup`, `item_type_delay_put`, `item_type_delay_take`, `item_type_delay_give`, `item_type_delay_drop`) VALUES + (135, 4, 'Brass Knuckles', 1, 1, 0, 25, 0, 331, 0, 0, -0.95, 1.6, 0, 0, 0, 0, 0, 'no-image.png', 'no-image.png', 'no-image.png', 0, 0, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `item_type` (`item_type_id`, `item_type_server`, `item_type_name`, `item_type_use_type`, `item_type_use_id`, `item_type_use_value`, `item_type_order_price`, `item_type_drop_type`, `item_type_drop_model`, `item_type_drop_pos_x`, `item_type_drop_pos_y`, `item_type_drop_pos_z`, `item_type_drop_rot_x`, `item_type_drop_rot_y`, `item_type_drop_rot_z`, `item_type_drop_scale_x`, `item_type_drop_scale_y`, `item_type_drop_scale_z`, `item_type_image_small`, `item_type_image_large`, `item_type_image_hotbar`, `item_type_size`, `item_type_capacity`, `item_type_demand_multiplier`, `item_type_supply_multiplier`, `item_type_risk_multiplier`, `item_type_enabled`, `item_type_delay_switch`, `item_type_delay_use`, `item_type_delay_pickup`, `item_type_delay_put`, `item_type_delay_take`, `item_type_delay_give`, `item_type_delay_drop`) VALUES + (136, 4, 'Golf Club', 1, 2, 0, 40, 0, 333, 0, 0, -0.95, 1.6, 0, 0, 0, 0, 0, 'no-image.png', 'no-image.png', 'no-image.png', 0, 0, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `item_type` (`item_type_id`, `item_type_server`, `item_type_name`, `item_type_use_type`, `item_type_use_id`, `item_type_use_value`, `item_type_order_price`, `item_type_drop_type`, `item_type_drop_model`, `item_type_drop_pos_x`, `item_type_drop_pos_y`, `item_type_drop_pos_z`, `item_type_drop_rot_x`, `item_type_drop_rot_y`, `item_type_drop_rot_z`, `item_type_drop_scale_x`, `item_type_drop_scale_y`, `item_type_drop_scale_z`, `item_type_image_small`, `item_type_image_large`, `item_type_image_hotbar`, `item_type_size`, `item_type_capacity`, `item_type_demand_multiplier`, `item_type_supply_multiplier`, `item_type_risk_multiplier`, `item_type_enabled`, `item_type_delay_switch`, `item_type_delay_use`, `item_type_delay_pickup`, `item_type_delay_put`, `item_type_delay_take`, `item_type_delay_give`, `item_type_delay_drop`) VALUES + (137, 4, 'Nightstick', 1, 3, 0, 40, 0, 334, 0, 0, -0.95, 1.6, 0, 0, 0, 0, 0, 'no-image.png', 'no-image.png', 'no-image.png', 0, 0, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `item_type` (`item_type_id`, `item_type_server`, `item_type_name`, `item_type_use_type`, `item_type_use_id`, `item_type_use_value`, `item_type_order_price`, `item_type_drop_type`, `item_type_drop_model`, `item_type_drop_pos_x`, `item_type_drop_pos_y`, `item_type_drop_pos_z`, `item_type_drop_rot_x`, `item_type_drop_rot_y`, `item_type_drop_rot_z`, `item_type_drop_scale_x`, `item_type_drop_scale_y`, `item_type_drop_scale_z`, `item_type_image_small`, `item_type_image_large`, `item_type_image_hotbar`, `item_type_size`, `item_type_capacity`, `item_type_demand_multiplier`, `item_type_supply_multiplier`, `item_type_risk_multiplier`, `item_type_enabled`, `item_type_delay_switch`, `item_type_delay_use`, `item_type_delay_pickup`, `item_type_delay_put`, `item_type_delay_take`, `item_type_delay_give`, `item_type_delay_drop`) VALUES + (138, 4, 'Knife', 1, 4, 0, 35, 0, 335, 0, 0, -0.95, 1.6, 0, 0, 0, 0, 0, 'no-image.png', 'no-image.png', 'no-image.png', 0, 0, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `item_type` (`item_type_id`, `item_type_server`, `item_type_name`, `item_type_use_type`, `item_type_use_id`, `item_type_use_value`, `item_type_order_price`, `item_type_drop_type`, `item_type_drop_model`, `item_type_drop_pos_x`, `item_type_drop_pos_y`, `item_type_drop_pos_z`, `item_type_drop_rot_x`, `item_type_drop_rot_y`, `item_type_drop_rot_z`, `item_type_drop_scale_x`, `item_type_drop_scale_y`, `item_type_drop_scale_z`, `item_type_image_small`, `item_type_image_large`, `item_type_image_hotbar`, `item_type_size`, `item_type_capacity`, `item_type_demand_multiplier`, `item_type_supply_multiplier`, `item_type_risk_multiplier`, `item_type_enabled`, `item_type_delay_switch`, `item_type_delay_use`, `item_type_delay_pickup`, `item_type_delay_put`, `item_type_delay_take`, `item_type_delay_give`, `item_type_delay_drop`) VALUES + (139, 4, 'Baseball Bat', 1, 5, 0, 25, 0, 336, 0, 0, -0.95, 1.6, 0, 0, 0, 0, 0, 'no-image.png', 'no-image.png', 'no-image.png', 0, 0, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `item_type` (`item_type_id`, `item_type_server`, `item_type_name`, `item_type_use_type`, `item_type_use_id`, `item_type_use_value`, `item_type_order_price`, `item_type_drop_type`, `item_type_drop_model`, `item_type_drop_pos_x`, `item_type_drop_pos_y`, `item_type_drop_pos_z`, `item_type_drop_rot_x`, `item_type_drop_rot_y`, `item_type_drop_rot_z`, `item_type_drop_scale_x`, `item_type_drop_scale_y`, `item_type_drop_scale_z`, `item_type_image_small`, `item_type_image_large`, `item_type_image_hotbar`, `item_type_size`, `item_type_capacity`, `item_type_demand_multiplier`, `item_type_supply_multiplier`, `item_type_risk_multiplier`, `item_type_enabled`, `item_type_delay_switch`, `item_type_delay_use`, `item_type_delay_pickup`, `item_type_delay_put`, `item_type_delay_take`, `item_type_delay_give`, `item_type_delay_drop`) VALUES + (140, 4, 'Shovel', 1, 6, 0, 10, 0, 337, 0, 0, -0.95, 1.6, 0, 0, 0, 0, 0, 'no-image.png', 'no-image.png', 'no-image.png', 0, 0, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `item_type` (`item_type_id`, `item_type_server`, `item_type_name`, `item_type_use_type`, `item_type_use_id`, `item_type_use_value`, `item_type_order_price`, `item_type_drop_type`, `item_type_drop_model`, `item_type_drop_pos_x`, `item_type_drop_pos_y`, `item_type_drop_pos_z`, `item_type_drop_rot_x`, `item_type_drop_rot_y`, `item_type_drop_rot_z`, `item_type_drop_scale_x`, `item_type_drop_scale_y`, `item_type_drop_scale_z`, `item_type_image_small`, `item_type_image_large`, `item_type_image_hotbar`, `item_type_size`, `item_type_capacity`, `item_type_demand_multiplier`, `item_type_supply_multiplier`, `item_type_risk_multiplier`, `item_type_enabled`, `item_type_delay_switch`, `item_type_delay_use`, `item_type_delay_pickup`, `item_type_delay_put`, `item_type_delay_take`, `item_type_delay_give`, `item_type_delay_drop`) VALUES + (141, 4, 'Pool Cue', 1, 7, 0, 15, 0, 338, 0, 0, -0.95, 1.6, 0, 0, 0, 0, 0, 'no-image.png', 'no-image.png', 'no-image.png', 0, 0, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `item_type` (`item_type_id`, `item_type_server`, `item_type_name`, `item_type_use_type`, `item_type_use_id`, `item_type_use_value`, `item_type_order_price`, `item_type_drop_type`, `item_type_drop_model`, `item_type_drop_pos_x`, `item_type_drop_pos_y`, `item_type_drop_pos_z`, `item_type_drop_rot_x`, `item_type_drop_rot_y`, `item_type_drop_rot_z`, `item_type_drop_scale_x`, `item_type_drop_scale_y`, `item_type_drop_scale_z`, `item_type_image_small`, `item_type_image_large`, `item_type_image_hotbar`, `item_type_size`, `item_type_capacity`, `item_type_demand_multiplier`, `item_type_supply_multiplier`, `item_type_risk_multiplier`, `item_type_enabled`, `item_type_delay_switch`, `item_type_delay_use`, `item_type_delay_pickup`, `item_type_delay_put`, `item_type_delay_take`, `item_type_delay_give`, `item_type_delay_drop`) VALUES + (142, 4, 'Katana', 1, 8, 0, 250, 0, 339, 0, 0, -0.95, 1.6, 0, 0, 0, 0, 0, 'no-image.png', 'no-image.png', 'no-image.png', 0, 0, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `item_type` (`item_type_id`, `item_type_server`, `item_type_name`, `item_type_use_type`, `item_type_use_id`, `item_type_use_value`, `item_type_order_price`, `item_type_drop_type`, `item_type_drop_model`, `item_type_drop_pos_x`, `item_type_drop_pos_y`, `item_type_drop_pos_z`, `item_type_drop_rot_x`, `item_type_drop_rot_y`, `item_type_drop_rot_z`, `item_type_drop_scale_x`, `item_type_drop_scale_y`, `item_type_drop_scale_z`, `item_type_image_small`, `item_type_image_large`, `item_type_image_hotbar`, `item_type_size`, `item_type_capacity`, `item_type_demand_multiplier`, `item_type_supply_multiplier`, `item_type_risk_multiplier`, `item_type_enabled`, `item_type_delay_switch`, `item_type_delay_use`, `item_type_delay_pickup`, `item_type_delay_put`, `item_type_delay_take`, `item_type_delay_give`, `item_type_delay_drop`) VALUES + (143, 4, 'Chainsaw', 1, 9, 0, 350, 0, 341, 0, 0, -0.95, 1.6, 0, 0, 0, 0, 0, 'no-image.png', 'no-image.png', 'no-image.png', 0, 0, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `item_type` (`item_type_id`, `item_type_server`, `item_type_name`, `item_type_use_type`, `item_type_use_id`, `item_type_use_value`, `item_type_order_price`, `item_type_drop_type`, `item_type_drop_model`, `item_type_drop_pos_x`, `item_type_drop_pos_y`, `item_type_drop_pos_z`, `item_type_drop_rot_x`, `item_type_drop_rot_y`, `item_type_drop_rot_z`, `item_type_drop_scale_x`, `item_type_drop_scale_y`, `item_type_drop_scale_z`, `item_type_image_small`, `item_type_image_large`, `item_type_image_hotbar`, `item_type_size`, `item_type_capacity`, `item_type_demand_multiplier`, `item_type_supply_multiplier`, `item_type_risk_multiplier`, `item_type_enabled`, `item_type_delay_switch`, `item_type_delay_use`, `item_type_delay_pickup`, `item_type_delay_put`, `item_type_delay_take`, `item_type_delay_give`, `item_type_delay_drop`) VALUES + (144, 4, 'Purple Dildo', 1, 10, 0, 30, 0, 321, 0, 0, -0.95, 1.6, 0, 0, 0, 0, 0, 'no-image.png', 'no-image.png', 'no-image.png', 0, 0, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `item_type` (`item_type_id`, `item_type_server`, `item_type_name`, `item_type_use_type`, `item_type_use_id`, `item_type_use_value`, `item_type_order_price`, `item_type_drop_type`, `item_type_drop_model`, `item_type_drop_pos_x`, `item_type_drop_pos_y`, `item_type_drop_pos_z`, `item_type_drop_rot_x`, `item_type_drop_rot_y`, `item_type_drop_rot_z`, `item_type_drop_scale_x`, `item_type_drop_scale_y`, `item_type_drop_scale_z`, `item_type_image_small`, `item_type_image_large`, `item_type_image_hotbar`, `item_type_size`, `item_type_capacity`, `item_type_demand_multiplier`, `item_type_supply_multiplier`, `item_type_risk_multiplier`, `item_type_enabled`, `item_type_delay_switch`, `item_type_delay_use`, `item_type_delay_pickup`, `item_type_delay_put`, `item_type_delay_take`, `item_type_delay_give`, `item_type_delay_drop`) VALUES + (145, 4, 'Dildo', 1, 11, 0, 10, 0, 322, 0, 0, -0.95, 1.6, 0, 0, 0, 0, 0, 'no-image.png', 'no-image.png', 'no-image.png', 0, 0, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `item_type` (`item_type_id`, `item_type_server`, `item_type_name`, `item_type_use_type`, `item_type_use_id`, `item_type_use_value`, `item_type_order_price`, `item_type_drop_type`, `item_type_drop_model`, `item_type_drop_pos_x`, `item_type_drop_pos_y`, `item_type_drop_pos_z`, `item_type_drop_rot_x`, `item_type_drop_rot_y`, `item_type_drop_rot_z`, `item_type_drop_scale_x`, `item_type_drop_scale_y`, `item_type_drop_scale_z`, `item_type_image_small`, `item_type_image_large`, `item_type_image_hotbar`, `item_type_size`, `item_type_capacity`, `item_type_demand_multiplier`, `item_type_supply_multiplier`, `item_type_risk_multiplier`, `item_type_enabled`, `item_type_delay_switch`, `item_type_delay_use`, `item_type_delay_pickup`, `item_type_delay_put`, `item_type_delay_take`, `item_type_delay_give`, `item_type_delay_drop`) VALUES + (146, 4, 'Vibrator', 1, 12, 0, 25, 0, 323, 0, 0, -0.95, 1.6, 0, 0, 0, 0, 0, 'no-image.png', 'no-image.png', 'no-image.png', 0, 0, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `item_type` (`item_type_id`, `item_type_server`, `item_type_name`, `item_type_use_type`, `item_type_use_id`, `item_type_use_value`, `item_type_order_price`, `item_type_drop_type`, `item_type_drop_model`, `item_type_drop_pos_x`, `item_type_drop_pos_y`, `item_type_drop_pos_z`, `item_type_drop_rot_x`, `item_type_drop_rot_y`, `item_type_drop_rot_z`, `item_type_drop_scale_x`, `item_type_drop_scale_y`, `item_type_drop_scale_z`, `item_type_image_small`, `item_type_image_large`, `item_type_image_hotbar`, `item_type_size`, `item_type_capacity`, `item_type_demand_multiplier`, `item_type_supply_multiplier`, `item_type_risk_multiplier`, `item_type_enabled`, `item_type_delay_switch`, `item_type_delay_use`, `item_type_delay_pickup`, `item_type_delay_put`, `item_type_delay_take`, `item_type_delay_give`, `item_type_delay_drop`) VALUES + (147, 4, 'Silver Vibrator', 1, 13, 0, 15, 0, 324, 0, 0, -0.95, 1.6, 0, 0, 0, 0, 0, 'no-image.png', 'no-image.png', 'no-image.png', 0, 0, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `item_type` (`item_type_id`, `item_type_server`, `item_type_name`, `item_type_use_type`, `item_type_use_id`, `item_type_use_value`, `item_type_order_price`, `item_type_drop_type`, `item_type_drop_model`, `item_type_drop_pos_x`, `item_type_drop_pos_y`, `item_type_drop_pos_z`, `item_type_drop_rot_x`, `item_type_drop_rot_y`, `item_type_drop_rot_z`, `item_type_drop_scale_x`, `item_type_drop_scale_y`, `item_type_drop_scale_z`, `item_type_image_small`, `item_type_image_large`, `item_type_image_hotbar`, `item_type_size`, `item_type_capacity`, `item_type_demand_multiplier`, `item_type_supply_multiplier`, `item_type_risk_multiplier`, `item_type_enabled`, `item_type_delay_switch`, `item_type_delay_use`, `item_type_delay_pickup`, `item_type_delay_put`, `item_type_delay_take`, `item_type_delay_give`, `item_type_delay_drop`) VALUES + (148, 4, 'Flowers', 1, 14, 0, 10, 0, 325, 0, 0, -0.95, 1.6, 0, 0, 0, 0, 0, 'no-image.png', 'no-image.png', 'no-image.png', 0, 0, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `item_type` (`item_type_id`, `item_type_server`, `item_type_name`, `item_type_use_type`, `item_type_use_id`, `item_type_use_value`, `item_type_order_price`, `item_type_drop_type`, `item_type_drop_model`, `item_type_drop_pos_x`, `item_type_drop_pos_y`, `item_type_drop_pos_z`, `item_type_drop_rot_x`, `item_type_drop_rot_y`, `item_type_drop_rot_z`, `item_type_drop_scale_x`, `item_type_drop_scale_y`, `item_type_drop_scale_z`, `item_type_image_small`, `item_type_image_large`, `item_type_image_hotbar`, `item_type_size`, `item_type_capacity`, `item_type_demand_multiplier`, `item_type_supply_multiplier`, `item_type_risk_multiplier`, `item_type_enabled`, `item_type_delay_switch`, `item_type_delay_use`, `item_type_delay_pickup`, `item_type_delay_put`, `item_type_delay_take`, `item_type_delay_give`, `item_type_delay_drop`) VALUES + (149, 4, 'Cane', 1, 15, 0, 10, 0, 326, 0, 0, -0.95, 1.6, 0, 0, 0, 0, 0, 'no-image.png', 'no-image.png', 'no-image.png', 0, 0, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `item_type` (`item_type_id`, `item_type_server`, `item_type_name`, `item_type_use_type`, `item_type_use_id`, `item_type_use_value`, `item_type_order_price`, `item_type_drop_type`, `item_type_drop_model`, `item_type_drop_pos_x`, `item_type_drop_pos_y`, `item_type_drop_pos_z`, `item_type_drop_rot_x`, `item_type_drop_rot_y`, `item_type_drop_rot_z`, `item_type_drop_scale_x`, `item_type_drop_scale_y`, `item_type_drop_scale_z`, `item_type_image_small`, `item_type_image_large`, `item_type_image_hotbar`, `item_type_size`, `item_type_capacity`, `item_type_demand_multiplier`, `item_type_supply_multiplier`, `item_type_risk_multiplier`, `item_type_enabled`, `item_type_delay_switch`, `item_type_delay_use`, `item_type_delay_pickup`, `item_type_delay_put`, `item_type_delay_take`, `item_type_delay_give`, `item_type_delay_drop`) VALUES + (150, 4, 'Grenade', 1, 16, 0, 500, 0, 342, 0, 0, -0.95, 1.6, 0, 0, 0, 0, 0, 'no-image.png', 'no-image.png', 'no-image.png', 0, 0, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `item_type` (`item_type_id`, `item_type_server`, `item_type_name`, `item_type_use_type`, `item_type_use_id`, `item_type_use_value`, `item_type_order_price`, `item_type_drop_type`, `item_type_drop_model`, `item_type_drop_pos_x`, `item_type_drop_pos_y`, `item_type_drop_pos_z`, `item_type_drop_rot_x`, `item_type_drop_rot_y`, `item_type_drop_rot_z`, `item_type_drop_scale_x`, `item_type_drop_scale_y`, `item_type_drop_scale_z`, `item_type_image_small`, `item_type_image_large`, `item_type_image_hotbar`, `item_type_size`, `item_type_capacity`, `item_type_demand_multiplier`, `item_type_supply_multiplier`, `item_type_risk_multiplier`, `item_type_enabled`, `item_type_delay_switch`, `item_type_delay_use`, `item_type_delay_pickup`, `item_type_delay_put`, `item_type_delay_take`, `item_type_delay_give`, `item_type_delay_drop`) VALUES + (151, 4, 'Tear Gas', 1, 17, 0, 150, 0, 343, 0, 0, -0.95, 1.6, 0, 0, 0, 0, 0, 'no-image.png', 'no-image.png', 'no-image.png', 0, 0, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `item_type` (`item_type_id`, `item_type_server`, `item_type_name`, `item_type_use_type`, `item_type_use_id`, `item_type_use_value`, `item_type_order_price`, `item_type_drop_type`, `item_type_drop_model`, `item_type_drop_pos_x`, `item_type_drop_pos_y`, `item_type_drop_pos_z`, `item_type_drop_rot_x`, `item_type_drop_rot_y`, `item_type_drop_rot_z`, `item_type_drop_scale_x`, `item_type_drop_scale_y`, `item_type_drop_scale_z`, `item_type_image_small`, `item_type_image_large`, `item_type_image_hotbar`, `item_type_size`, `item_type_capacity`, `item_type_demand_multiplier`, `item_type_supply_multiplier`, `item_type_risk_multiplier`, `item_type_enabled`, `item_type_delay_switch`, `item_type_delay_use`, `item_type_delay_pickup`, `item_type_delay_put`, `item_type_delay_take`, `item_type_delay_give`, `item_type_delay_drop`) VALUES + (152, 4, 'Molotov Cocktail', 1, 18, 0, 150, 0, 344, 0, 0, -0.95, 1.6, 0, 0, 0, 0, 0, 'no-image.png', 'no-image.png', 'no-image.png', 0, 0, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `item_type` (`item_type_id`, `item_type_server`, `item_type_name`, `item_type_use_type`, `item_type_use_id`, `item_type_use_value`, `item_type_order_price`, `item_type_drop_type`, `item_type_drop_model`, `item_type_drop_pos_x`, `item_type_drop_pos_y`, `item_type_drop_pos_z`, `item_type_drop_rot_x`, `item_type_drop_rot_y`, `item_type_drop_rot_z`, `item_type_drop_scale_x`, `item_type_drop_scale_y`, `item_type_drop_scale_z`, `item_type_image_small`, `item_type_image_large`, `item_type_image_hotbar`, `item_type_size`, `item_type_capacity`, `item_type_demand_multiplier`, `item_type_supply_multiplier`, `item_type_risk_multiplier`, `item_type_enabled`, `item_type_delay_switch`, `item_type_delay_use`, `item_type_delay_pickup`, `item_type_delay_put`, `item_type_delay_take`, `item_type_delay_give`, `item_type_delay_drop`) VALUES + (153, 4, '9mm', 1, 22, 0, 350, 0, 346, 0, 0, -0.95, 1.6, 0, 0, 0, 0, 0, 'no-image.png', 'no-image.png', 'no-image.png', 0, 0, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `item_type` (`item_type_id`, `item_type_server`, `item_type_name`, `item_type_use_type`, `item_type_use_id`, `item_type_use_value`, `item_type_order_price`, `item_type_drop_type`, `item_type_drop_model`, `item_type_drop_pos_x`, `item_type_drop_pos_y`, `item_type_drop_pos_z`, `item_type_drop_rot_x`, `item_type_drop_rot_y`, `item_type_drop_rot_z`, `item_type_drop_scale_x`, `item_type_drop_scale_y`, `item_type_drop_scale_z`, `item_type_image_small`, `item_type_image_large`, `item_type_image_hotbar`, `item_type_size`, `item_type_capacity`, `item_type_demand_multiplier`, `item_type_supply_multiplier`, `item_type_risk_multiplier`, `item_type_enabled`, `item_type_delay_switch`, `item_type_delay_use`, `item_type_delay_pickup`, `item_type_delay_put`, `item_type_delay_take`, `item_type_delay_give`, `item_type_delay_drop`) VALUES + (154, 4, 'Silenced 9mm', 1, 23, 0, 400, 0, 347, 0, 0, -0.95, 1.6, 0, 0, 0, 0, 0, 'no-image.png', 'no-image.png', 'no-image.png', 0, 0, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `item_type` (`item_type_id`, `item_type_server`, `item_type_name`, `item_type_use_type`, `item_type_use_id`, `item_type_use_value`, `item_type_order_price`, `item_type_drop_type`, `item_type_drop_model`, `item_type_drop_pos_x`, `item_type_drop_pos_y`, `item_type_drop_pos_z`, `item_type_drop_rot_x`, `item_type_drop_rot_y`, `item_type_drop_rot_z`, `item_type_drop_scale_x`, `item_type_drop_scale_y`, `item_type_drop_scale_z`, `item_type_image_small`, `item_type_image_large`, `item_type_image_hotbar`, `item_type_size`, `item_type_capacity`, `item_type_demand_multiplier`, `item_type_supply_multiplier`, `item_type_risk_multiplier`, `item_type_enabled`, `item_type_delay_switch`, `item_type_delay_use`, `item_type_delay_pickup`, `item_type_delay_put`, `item_type_delay_take`, `item_type_delay_give`, `item_type_delay_drop`) VALUES + (155, 4, 'Desert Eagle', 1, 24, 0, 500, 0, 348, 0, 0, -0.95, 1.6, 0, 0, 0, 0, 0, 'no-image.png', 'no-image.png', 'no-image.png', 0, 0, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `item_type` (`item_type_id`, `item_type_server`, `item_type_name`, `item_type_use_type`, `item_type_use_id`, `item_type_use_value`, `item_type_order_price`, `item_type_drop_type`, `item_type_drop_model`, `item_type_drop_pos_x`, `item_type_drop_pos_y`, `item_type_drop_pos_z`, `item_type_drop_rot_x`, `item_type_drop_rot_y`, `item_type_drop_rot_z`, `item_type_drop_scale_x`, `item_type_drop_scale_y`, `item_type_drop_scale_z`, `item_type_image_small`, `item_type_image_large`, `item_type_image_hotbar`, `item_type_size`, `item_type_capacity`, `item_type_demand_multiplier`, `item_type_supply_multiplier`, `item_type_risk_multiplier`, `item_type_enabled`, `item_type_delay_switch`, `item_type_delay_use`, `item_type_delay_pickup`, `item_type_delay_put`, `item_type_delay_take`, `item_type_delay_give`, `item_type_delay_drop`) VALUES + (156, 4, 'Shotgun', 1, 25, 0, 450, 0, 349, 0, 0, -0.95, 1.6, 0, 0, 0, 0, 0, 'no-image.png', 'no-image.png', 'no-image.png', 0, 0, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `item_type` (`item_type_id`, `item_type_server`, `item_type_name`, `item_type_use_type`, `item_type_use_id`, `item_type_use_value`, `item_type_order_price`, `item_type_drop_type`, `item_type_drop_model`, `item_type_drop_pos_x`, `item_type_drop_pos_y`, `item_type_drop_pos_z`, `item_type_drop_rot_x`, `item_type_drop_rot_y`, `item_type_drop_rot_z`, `item_type_drop_scale_x`, `item_type_drop_scale_y`, `item_type_drop_scale_z`, `item_type_image_small`, `item_type_image_large`, `item_type_image_hotbar`, `item_type_size`, `item_type_capacity`, `item_type_demand_multiplier`, `item_type_supply_multiplier`, `item_type_risk_multiplier`, `item_type_enabled`, `item_type_delay_switch`, `item_type_delay_use`, `item_type_delay_pickup`, `item_type_delay_put`, `item_type_delay_take`, `item_type_delay_give`, `item_type_delay_drop`) VALUES + (157, 4, 'Sawnoff Shotgun', 1, 26, 0, 400, 0, 350, 0, 0, -0.95, 1.6, 0, 0, 0, 0, 0, 'no-image.png', 'no-image.png', 'no-image.png', 0, 0, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `item_type` (`item_type_id`, `item_type_server`, `item_type_name`, `item_type_use_type`, `item_type_use_id`, `item_type_use_value`, `item_type_order_price`, `item_type_drop_type`, `item_type_drop_model`, `item_type_drop_pos_x`, `item_type_drop_pos_y`, `item_type_drop_pos_z`, `item_type_drop_rot_x`, `item_type_drop_rot_y`, `item_type_drop_rot_z`, `item_type_drop_scale_x`, `item_type_drop_scale_y`, `item_type_drop_scale_z`, `item_type_image_small`, `item_type_image_large`, `item_type_image_hotbar`, `item_type_size`, `item_type_capacity`, `item_type_demand_multiplier`, `item_type_supply_multiplier`, `item_type_risk_multiplier`, `item_type_enabled`, `item_type_delay_switch`, `item_type_delay_use`, `item_type_delay_pickup`, `item_type_delay_put`, `item_type_delay_take`, `item_type_delay_give`, `item_type_delay_drop`) VALUES + (158, 4, 'Combat Shotgun', 1, 27, 0, 1250, 0, 351, 0, 0, -0.95, 1.6, 0, 0, 0, 0, 0, 'no-image.png', 'no-image.png', 'no-image.png', 0, 0, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `item_type` (`item_type_id`, `item_type_server`, `item_type_name`, `item_type_use_type`, `item_type_use_id`, `item_type_use_value`, `item_type_order_price`, `item_type_drop_type`, `item_type_drop_model`, `item_type_drop_pos_x`, `item_type_drop_pos_y`, `item_type_drop_pos_z`, `item_type_drop_rot_x`, `item_type_drop_rot_y`, `item_type_drop_rot_z`, `item_type_drop_scale_x`, `item_type_drop_scale_y`, `item_type_drop_scale_z`, `item_type_image_small`, `item_type_image_large`, `item_type_image_hotbar`, `item_type_size`, `item_type_capacity`, `item_type_demand_multiplier`, `item_type_supply_multiplier`, `item_type_risk_multiplier`, `item_type_enabled`, `item_type_delay_switch`, `item_type_delay_use`, `item_type_delay_pickup`, `item_type_delay_put`, `item_type_delay_take`, `item_type_delay_give`, `item_type_delay_drop`) VALUES + (159, 4, 'Micro SMG/Uzi', 1, 28, 0, 550, 0, 352, 0, 0, -0.95, 1.6, 0, 0, 0, 0, 0, 'no-image.png', 'no-image.png', 'no-image.png', 0, 0, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `item_type` (`item_type_id`, `item_type_server`, `item_type_name`, `item_type_use_type`, `item_type_use_id`, `item_type_use_value`, `item_type_order_price`, `item_type_drop_type`, `item_type_drop_model`, `item_type_drop_pos_x`, `item_type_drop_pos_y`, `item_type_drop_pos_z`, `item_type_drop_rot_x`, `item_type_drop_rot_y`, `item_type_drop_rot_z`, `item_type_drop_scale_x`, `item_type_drop_scale_y`, `item_type_drop_scale_z`, `item_type_image_small`, `item_type_image_large`, `item_type_image_hotbar`, `item_type_size`, `item_type_capacity`, `item_type_demand_multiplier`, `item_type_supply_multiplier`, `item_type_risk_multiplier`, `item_type_enabled`, `item_type_delay_switch`, `item_type_delay_use`, `item_type_delay_pickup`, `item_type_delay_put`, `item_type_delay_take`, `item_type_delay_give`, `item_type_delay_drop`) VALUES + (160, 4, 'MP5', 1, 29, 0, 800, 0, 353, 0, 0, -0.95, 1.6, 0, 0, 0, 0, 0, 'no-image.png', 'no-image.png', 'no-image.png', 0, 0, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `item_type` (`item_type_id`, `item_type_server`, `item_type_name`, `item_type_use_type`, `item_type_use_id`, `item_type_use_value`, `item_type_order_price`, `item_type_drop_type`, `item_type_drop_model`, `item_type_drop_pos_x`, `item_type_drop_pos_y`, `item_type_drop_pos_z`, `item_type_drop_rot_x`, `item_type_drop_rot_y`, `item_type_drop_rot_z`, `item_type_drop_scale_x`, `item_type_drop_scale_y`, `item_type_drop_scale_z`, `item_type_image_small`, `item_type_image_large`, `item_type_image_hotbar`, `item_type_size`, `item_type_capacity`, `item_type_demand_multiplier`, `item_type_supply_multiplier`, `item_type_risk_multiplier`, `item_type_enabled`, `item_type_delay_switch`, `item_type_delay_use`, `item_type_delay_pickup`, `item_type_delay_put`, `item_type_delay_take`, `item_type_delay_give`, `item_type_delay_drop`) VALUES + (161, 4, 'AK-47', 1, 30, 0, 850, 0, 355, 0, 0, -0.95, 1.6, 0, 0, 0, 0, 0, 'no-image.png', 'no-image.png', 'no-image.png', 0, 0, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `item_type` (`item_type_id`, `item_type_server`, `item_type_name`, `item_type_use_type`, `item_type_use_id`, `item_type_use_value`, `item_type_order_price`, `item_type_drop_type`, `item_type_drop_model`, `item_type_drop_pos_x`, `item_type_drop_pos_y`, `item_type_drop_pos_z`, `item_type_drop_rot_x`, `item_type_drop_rot_y`, `item_type_drop_rot_z`, `item_type_drop_scale_x`, `item_type_drop_scale_y`, `item_type_drop_scale_z`, `item_type_image_small`, `item_type_image_large`, `item_type_image_hotbar`, `item_type_size`, `item_type_capacity`, `item_type_demand_multiplier`, `item_type_supply_multiplier`, `item_type_risk_multiplier`, `item_type_enabled`, `item_type_delay_switch`, `item_type_delay_use`, `item_type_delay_pickup`, `item_type_delay_put`, `item_type_delay_take`, `item_type_delay_give`, `item_type_delay_drop`) VALUES + (162, 4, 'M4', 1, 31, 0, 1500, 0, 356, 0, 0, -0.95, 1.6, 0, 0, 0, 0, 0, 'no-image.png', 'no-image.png', 'no-image.png', 0, 0, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `item_type` (`item_type_id`, `item_type_server`, `item_type_name`, `item_type_use_type`, `item_type_use_id`, `item_type_use_value`, `item_type_order_price`, `item_type_drop_type`, `item_type_drop_model`, `item_type_drop_pos_x`, `item_type_drop_pos_y`, `item_type_drop_pos_z`, `item_type_drop_rot_x`, `item_type_drop_rot_y`, `item_type_drop_rot_z`, `item_type_drop_scale_x`, `item_type_drop_scale_y`, `item_type_drop_scale_z`, `item_type_image_small`, `item_type_image_large`, `item_type_image_hotbar`, `item_type_size`, `item_type_capacity`, `item_type_demand_multiplier`, `item_type_supply_multiplier`, `item_type_risk_multiplier`, `item_type_enabled`, `item_type_delay_switch`, `item_type_delay_use`, `item_type_delay_pickup`, `item_type_delay_put`, `item_type_delay_take`, `item_type_delay_give`, `item_type_delay_drop`) VALUES + (163, 4, 'Tec-9', 1, 32, 0, 500, 0, 372, 0, 0, -0.95, 1.6, 0, 0, 0, 0, 0, 'no-image.png', 'no-image.png', 'no-image.png', 0, 0, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `item_type` (`item_type_id`, `item_type_server`, `item_type_name`, `item_type_use_type`, `item_type_use_id`, `item_type_use_value`, `item_type_order_price`, `item_type_drop_type`, `item_type_drop_model`, `item_type_drop_pos_x`, `item_type_drop_pos_y`, `item_type_drop_pos_z`, `item_type_drop_rot_x`, `item_type_drop_rot_y`, `item_type_drop_rot_z`, `item_type_drop_scale_x`, `item_type_drop_scale_y`, `item_type_drop_scale_z`, `item_type_image_small`, `item_type_image_large`, `item_type_image_hotbar`, `item_type_size`, `item_type_capacity`, `item_type_demand_multiplier`, `item_type_supply_multiplier`, `item_type_risk_multiplier`, `item_type_enabled`, `item_type_delay_switch`, `item_type_delay_use`, `item_type_delay_pickup`, `item_type_delay_put`, `item_type_delay_take`, `item_type_delay_give`, `item_type_delay_drop`) VALUES + (164, 4, 'Country Rifle', 1, 33, 0, 1100, 0, 357, 0, 0, -0.95, 1.6, 0, 0, 0, 0, 0, 'no-image.png', 'no-image.png', 'no-image.png', 0, 0, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `item_type` (`item_type_id`, `item_type_server`, `item_type_name`, `item_type_use_type`, `item_type_use_id`, `item_type_use_value`, `item_type_order_price`, `item_type_drop_type`, `item_type_drop_model`, `item_type_drop_pos_x`, `item_type_drop_pos_y`, `item_type_drop_pos_z`, `item_type_drop_rot_x`, `item_type_drop_rot_y`, `item_type_drop_rot_z`, `item_type_drop_scale_x`, `item_type_drop_scale_y`, `item_type_drop_scale_z`, `item_type_image_small`, `item_type_image_large`, `item_type_image_hotbar`, `item_type_size`, `item_type_capacity`, `item_type_demand_multiplier`, `item_type_supply_multiplier`, `item_type_risk_multiplier`, `item_type_enabled`, `item_type_delay_switch`, `item_type_delay_use`, `item_type_delay_pickup`, `item_type_delay_put`, `item_type_delay_take`, `item_type_delay_give`, `item_type_delay_drop`) VALUES + (165, 4, 'Sniper Rifle', 1, 34, 0, 1500, 0, 358, 0, 0, -0.95, 1.6, 0, 0, 0, 0, 0, 'no-image.png', 'no-image.png', 'no-image.png', 0, 0, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `item_type` (`item_type_id`, `item_type_server`, `item_type_name`, `item_type_use_type`, `item_type_use_id`, `item_type_use_value`, `item_type_order_price`, `item_type_drop_type`, `item_type_drop_model`, `item_type_drop_pos_x`, `item_type_drop_pos_y`, `item_type_drop_pos_z`, `item_type_drop_rot_x`, `item_type_drop_rot_y`, `item_type_drop_rot_z`, `item_type_drop_scale_x`, `item_type_drop_scale_y`, `item_type_drop_scale_z`, `item_type_image_small`, `item_type_image_large`, `item_type_image_hotbar`, `item_type_size`, `item_type_capacity`, `item_type_demand_multiplier`, `item_type_supply_multiplier`, `item_type_risk_multiplier`, `item_type_enabled`, `item_type_delay_switch`, `item_type_delay_use`, `item_type_delay_pickup`, `item_type_delay_put`, `item_type_delay_take`, `item_type_delay_give`, `item_type_delay_drop`) VALUES + (166, 4, 'RPG', 1, 35, 0, 5000, 0, 359, 0, 0, -0.95, 1.6, 0, 0, 0, 0, 0, 'no-image.png', 'no-image.png', 'no-image.png', 0, 0, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `item_type` (`item_type_id`, `item_type_server`, `item_type_name`, `item_type_use_type`, `item_type_use_id`, `item_type_use_value`, `item_type_order_price`, `item_type_drop_type`, `item_type_drop_model`, `item_type_drop_pos_x`, `item_type_drop_pos_y`, `item_type_drop_pos_z`, `item_type_drop_rot_x`, `item_type_drop_rot_y`, `item_type_drop_rot_z`, `item_type_drop_scale_x`, `item_type_drop_scale_y`, `item_type_drop_scale_z`, `item_type_image_small`, `item_type_image_large`, `item_type_image_hotbar`, `item_type_size`, `item_type_capacity`, `item_type_demand_multiplier`, `item_type_supply_multiplier`, `item_type_risk_multiplier`, `item_type_enabled`, `item_type_delay_switch`, `item_type_delay_use`, `item_type_delay_pickup`, `item_type_delay_put`, `item_type_delay_take`, `item_type_delay_give`, `item_type_delay_drop`) VALUES + (167, 4, 'HS Rocket', 1, 36, 0, 7500, 0, 360, 0, 0, -0.95, 1.6, 0, 0, 0, 0, 0, 'no-image.png', 'no-image.png', 'no-image.png', 0, 0, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `item_type` (`item_type_id`, `item_type_server`, `item_type_name`, `item_type_use_type`, `item_type_use_id`, `item_type_use_value`, `item_type_order_price`, `item_type_drop_type`, `item_type_drop_model`, `item_type_drop_pos_x`, `item_type_drop_pos_y`, `item_type_drop_pos_z`, `item_type_drop_rot_x`, `item_type_drop_rot_y`, `item_type_drop_rot_z`, `item_type_drop_scale_x`, `item_type_drop_scale_y`, `item_type_drop_scale_z`, `item_type_image_small`, `item_type_image_large`, `item_type_image_hotbar`, `item_type_size`, `item_type_capacity`, `item_type_demand_multiplier`, `item_type_supply_multiplier`, `item_type_risk_multiplier`, `item_type_enabled`, `item_type_delay_switch`, `item_type_delay_use`, `item_type_delay_pickup`, `item_type_delay_put`, `item_type_delay_take`, `item_type_delay_give`, `item_type_delay_drop`) VALUES + (168, 4, 'Flamethrower', 1, 37, 0, 3000, 0, 361, 0, 0, -0.95, 1.6, 0, 0, 0, 0, 0, 'no-image.png', 'no-image.png', 'no-image.png', 0, 0, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `item_type` (`item_type_id`, `item_type_server`, `item_type_name`, `item_type_use_type`, `item_type_use_id`, `item_type_use_value`, `item_type_order_price`, `item_type_drop_type`, `item_type_drop_model`, `item_type_drop_pos_x`, `item_type_drop_pos_y`, `item_type_drop_pos_z`, `item_type_drop_rot_x`, `item_type_drop_rot_y`, `item_type_drop_rot_z`, `item_type_drop_scale_x`, `item_type_drop_scale_y`, `item_type_drop_scale_z`, `item_type_image_small`, `item_type_image_large`, `item_type_image_hotbar`, `item_type_size`, `item_type_capacity`, `item_type_demand_multiplier`, `item_type_supply_multiplier`, `item_type_risk_multiplier`, `item_type_enabled`, `item_type_delay_switch`, `item_type_delay_use`, `item_type_delay_pickup`, `item_type_delay_put`, `item_type_delay_take`, `item_type_delay_give`, `item_type_delay_drop`) VALUES + (169, 4, 'Minigun', 1, 38, 0, 25000, 0, 362, 0, 0, -0.95, 1.6, 0, 0, 0, 0, 0, 'no-image.png', 'no-image.png', 'no-image.png', 0, 0, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `item_type` (`item_type_id`, `item_type_server`, `item_type_name`, `item_type_use_type`, `item_type_use_id`, `item_type_use_value`, `item_type_order_price`, `item_type_drop_type`, `item_type_drop_model`, `item_type_drop_pos_x`, `item_type_drop_pos_y`, `item_type_drop_pos_z`, `item_type_drop_rot_x`, `item_type_drop_rot_y`, `item_type_drop_rot_z`, `item_type_drop_scale_x`, `item_type_drop_scale_y`, `item_type_drop_scale_z`, `item_type_image_small`, `item_type_image_large`, `item_type_image_hotbar`, `item_type_size`, `item_type_capacity`, `item_type_demand_multiplier`, `item_type_supply_multiplier`, `item_type_risk_multiplier`, `item_type_enabled`, `item_type_delay_switch`, `item_type_delay_use`, `item_type_delay_pickup`, `item_type_delay_put`, `item_type_delay_take`, `item_type_delay_give`, `item_type_delay_drop`) VALUES + (170, 4, 'Satchel Charge', 1, 39, 0, 3000, 0, 363, 0, 0, -0.95, 1.6, 0, 0, 0, 0, 0, 'no-image.png', 'no-image.png', 'no-image.png', 0, 0, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `item_type` (`item_type_id`, `item_type_server`, `item_type_name`, `item_type_use_type`, `item_type_use_id`, `item_type_use_value`, `item_type_order_price`, `item_type_drop_type`, `item_type_drop_model`, `item_type_drop_pos_x`, `item_type_drop_pos_y`, `item_type_drop_pos_z`, `item_type_drop_rot_x`, `item_type_drop_rot_y`, `item_type_drop_rot_z`, `item_type_drop_scale_x`, `item_type_drop_scale_y`, `item_type_drop_scale_z`, `item_type_image_small`, `item_type_image_large`, `item_type_image_hotbar`, `item_type_size`, `item_type_capacity`, `item_type_demand_multiplier`, `item_type_supply_multiplier`, `item_type_risk_multiplier`, `item_type_enabled`, `item_type_delay_switch`, `item_type_delay_use`, `item_type_delay_pickup`, `item_type_delay_put`, `item_type_delay_take`, `item_type_delay_give`, `item_type_delay_drop`) VALUES + (171, 4, 'Detonator', 1, 40, 0, 0, 0, 364, 0, 0, -0.95, 1.6, 0, 0, 0, 0, 0, 'no-image.png', 'no-image.png', 'no-image.png', 0, 0, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `item_type` (`item_type_id`, `item_type_server`, `item_type_name`, `item_type_use_type`, `item_type_use_id`, `item_type_use_value`, `item_type_order_price`, `item_type_drop_type`, `item_type_drop_model`, `item_type_drop_pos_x`, `item_type_drop_pos_y`, `item_type_drop_pos_z`, `item_type_drop_rot_x`, `item_type_drop_rot_y`, `item_type_drop_rot_z`, `item_type_drop_scale_x`, `item_type_drop_scale_y`, `item_type_drop_scale_z`, `item_type_image_small`, `item_type_image_large`, `item_type_image_hotbar`, `item_type_size`, `item_type_capacity`, `item_type_demand_multiplier`, `item_type_supply_multiplier`, `item_type_risk_multiplier`, `item_type_enabled`, `item_type_delay_switch`, `item_type_delay_use`, `item_type_delay_pickup`, `item_type_delay_put`, `item_type_delay_take`, `item_type_delay_give`, `item_type_delay_drop`) VALUES + (172, 4, 'Spraycan', 1, 41, 0, 10, 0, 365, 0, 0, -0.95, 1.6, 0, 0, 0, 0, 0, 'no-image.png', 'no-image.png', 'no-image.png', 0, 0, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `item_type` (`item_type_id`, `item_type_server`, `item_type_name`, `item_type_use_type`, `item_type_use_id`, `item_type_use_value`, `item_type_order_price`, `item_type_drop_type`, `item_type_drop_model`, `item_type_drop_pos_x`, `item_type_drop_pos_y`, `item_type_drop_pos_z`, `item_type_drop_rot_x`, `item_type_drop_rot_y`, `item_type_drop_rot_z`, `item_type_drop_scale_x`, `item_type_drop_scale_y`, `item_type_drop_scale_z`, `item_type_image_small`, `item_type_image_large`, `item_type_image_hotbar`, `item_type_size`, `item_type_capacity`, `item_type_demand_multiplier`, `item_type_supply_multiplier`, `item_type_risk_multiplier`, `item_type_enabled`, `item_type_delay_switch`, `item_type_delay_use`, `item_type_delay_pickup`, `item_type_delay_put`, `item_type_delay_take`, `item_type_delay_give`, `item_type_delay_drop`) VALUES + (173, 4, 'Pepper Spray', 1, 41, 0, 15, 0, 365, 0, 0, -0.95, 1.6, 0, 0, 0, 0, 0, 'no-image.png', 'no-image.png', 'no-image.png', 0, 0, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `item_type` (`item_type_id`, `item_type_server`, `item_type_name`, `item_type_use_type`, `item_type_use_id`, `item_type_use_value`, `item_type_order_price`, `item_type_drop_type`, `item_type_drop_model`, `item_type_drop_pos_x`, `item_type_drop_pos_y`, `item_type_drop_pos_z`, `item_type_drop_rot_x`, `item_type_drop_rot_y`, `item_type_drop_rot_z`, `item_type_drop_scale_x`, `item_type_drop_scale_y`, `item_type_drop_scale_z`, `item_type_image_small`, `item_type_image_large`, `item_type_image_hotbar`, `item_type_size`, `item_type_capacity`, `item_type_demand_multiplier`, `item_type_supply_multiplier`, `item_type_risk_multiplier`, `item_type_enabled`, `item_type_delay_switch`, `item_type_delay_use`, `item_type_delay_pickup`, `item_type_delay_put`, `item_type_delay_take`, `item_type_delay_give`, `item_type_delay_drop`) VALUES + (174, 4, 'Fire Extinguisher', 1, 42, 0, 35, 0, 366, 0, 0, -0.95, 1.6, 0, 0, 0, 0, 0, 'no-image.png', 'no-image.png', 'no-image.png', 0, 0, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `item_type` (`item_type_id`, `item_type_server`, `item_type_name`, `item_type_use_type`, `item_type_use_id`, `item_type_use_value`, `item_type_order_price`, `item_type_drop_type`, `item_type_drop_model`, `item_type_drop_pos_x`, `item_type_drop_pos_y`, `item_type_drop_pos_z`, `item_type_drop_rot_x`, `item_type_drop_rot_y`, `item_type_drop_rot_z`, `item_type_drop_scale_x`, `item_type_drop_scale_y`, `item_type_drop_scale_z`, `item_type_image_small`, `item_type_image_large`, `item_type_image_hotbar`, `item_type_size`, `item_type_capacity`, `item_type_demand_multiplier`, `item_type_supply_multiplier`, `item_type_risk_multiplier`, `item_type_enabled`, `item_type_delay_switch`, `item_type_delay_use`, `item_type_delay_pickup`, `item_type_delay_put`, `item_type_delay_take`, `item_type_delay_give`, `item_type_delay_drop`) VALUES + (175, 4, 'Camera', 1, 43, 0, 25, 0, 367, 0, 0, -0.95, 1.6, 0, 0, 0, 0, 0, 'no-image.png', 'no-image.png', 'no-image.png', 0, 0, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `item_type` (`item_type_id`, `item_type_server`, `item_type_name`, `item_type_use_type`, `item_type_use_id`, `item_type_use_value`, `item_type_order_price`, `item_type_drop_type`, `item_type_drop_model`, `item_type_drop_pos_x`, `item_type_drop_pos_y`, `item_type_drop_pos_z`, `item_type_drop_rot_x`, `item_type_drop_rot_y`, `item_type_drop_rot_z`, `item_type_drop_scale_x`, `item_type_drop_scale_y`, `item_type_drop_scale_z`, `item_type_image_small`, `item_type_image_large`, `item_type_image_hotbar`, `item_type_size`, `item_type_capacity`, `item_type_demand_multiplier`, `item_type_supply_multiplier`, `item_type_risk_multiplier`, `item_type_enabled`, `item_type_delay_switch`, `item_type_delay_use`, `item_type_delay_pickup`, `item_type_delay_put`, `item_type_delay_take`, `item_type_delay_give`, `item_type_delay_drop`) VALUES + (176, 4, 'Night Vision Goggles', 1, 44, 0, 300, 0, 368, 0, 0, -0.95, 1.6, 0, 0, 0, 0, 0, 'no-image.png', 'no-image.png', 'no-image.png', 0, 0, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `item_type` (`item_type_id`, `item_type_server`, `item_type_name`, `item_type_use_type`, `item_type_use_id`, `item_type_use_value`, `item_type_order_price`, `item_type_drop_type`, `item_type_drop_model`, `item_type_drop_pos_x`, `item_type_drop_pos_y`, `item_type_drop_pos_z`, `item_type_drop_rot_x`, `item_type_drop_rot_y`, `item_type_drop_rot_z`, `item_type_drop_scale_x`, `item_type_drop_scale_y`, `item_type_drop_scale_z`, `item_type_image_small`, `item_type_image_large`, `item_type_image_hotbar`, `item_type_size`, `item_type_capacity`, `item_type_demand_multiplier`, `item_type_supply_multiplier`, `item_type_risk_multiplier`, `item_type_enabled`, `item_type_delay_switch`, `item_type_delay_use`, `item_type_delay_pickup`, `item_type_delay_put`, `item_type_delay_take`, `item_type_delay_give`, `item_type_delay_drop`) VALUES + (177, 4, 'Thermal Goggles', 1, 45, 0, 500, 0, 369, 0, 0, -0.95, 1.6, 0, 0, 0, 0, 0, 'no-image.png', 'no-image.png', 'no-image.png', 0, 0, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `item_type` (`item_type_id`, `item_type_server`, `item_type_name`, `item_type_use_type`, `item_type_use_id`, `item_type_use_value`, `item_type_order_price`, `item_type_drop_type`, `item_type_drop_model`, `item_type_drop_pos_x`, `item_type_drop_pos_y`, `item_type_drop_pos_z`, `item_type_drop_rot_x`, `item_type_drop_rot_y`, `item_type_drop_rot_z`, `item_type_drop_scale_x`, `item_type_drop_scale_y`, `item_type_drop_scale_z`, `item_type_image_small`, `item_type_image_large`, `item_type_image_hotbar`, `item_type_size`, `item_type_capacity`, `item_type_demand_multiplier`, `item_type_supply_multiplier`, `item_type_risk_multiplier`, `item_type_enabled`, `item_type_delay_switch`, `item_type_delay_use`, `item_type_delay_pickup`, `item_type_delay_put`, `item_type_delay_take`, `item_type_delay_give`, `item_type_delay_drop`) VALUES + (178, 4, 'Parachute', 1, 46, 0, 100, 0, 371, 0, 0, -0.95, 1.6, 0, 0, 0, 0, 0, 'no-image.png', 'no-image.png', 'no-image.png', 0, 0, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `item_type` (`item_type_id`, `item_type_server`, `item_type_name`, `item_type_use_type`, `item_type_use_id`, `item_type_use_value`, `item_type_order_price`, `item_type_drop_type`, `item_type_drop_model`, `item_type_drop_pos_x`, `item_type_drop_pos_y`, `item_type_drop_pos_z`, `item_type_drop_rot_x`, `item_type_drop_rot_y`, `item_type_drop_rot_z`, `item_type_drop_scale_x`, `item_type_drop_scale_y`, `item_type_drop_scale_z`, `item_type_image_small`, `item_type_image_large`, `item_type_image_hotbar`, `item_type_size`, `item_type_capacity`, `item_type_demand_multiplier`, `item_type_supply_multiplier`, `item_type_risk_multiplier`, `item_type_enabled`, `item_type_delay_switch`, `item_type_delay_use`, `item_type_delay_pickup`, `item_type_delay_put`, `item_type_delay_take`, `item_type_delay_give`, `item_type_delay_drop`) VALUES + (179, 4, 'Phone', 3, 0, 0, 250, 1, 330, 0, 0, -0.95, 1.6, 0, 0, 0, 0, 0, 'no-image.png', 'no-image.png', 'no-image.png', 0, 0, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `item_type` (`item_type_id`, `item_type_server`, `item_type_name`, `item_type_use_type`, `item_type_use_id`, `item_type_use_value`, `item_type_order_price`, `item_type_drop_type`, `item_type_drop_model`, `item_type_drop_pos_x`, `item_type_drop_pos_y`, `item_type_drop_pos_z`, `item_type_drop_rot_x`, `item_type_drop_rot_y`, `item_type_drop_rot_z`, `item_type_drop_scale_x`, `item_type_drop_scale_y`, `item_type_drop_scale_z`, `item_type_image_small`, `item_type_image_large`, `item_type_image_hotbar`, `item_type_size`, `item_type_capacity`, `item_type_demand_multiplier`, `item_type_supply_multiplier`, `item_type_risk_multiplier`, `item_type_enabled`, `item_type_delay_switch`, `item_type_delay_use`, `item_type_delay_pickup`, `item_type_delay_put`, `item_type_delay_take`, `item_type_delay_give`, `item_type_delay_drop`) VALUES + (180, 4, 'Radio', 32, 0, 0, 0, 0, 1279, 0, 0, -0.95, 1.6, 0, 0, 0, 0, 0, 'no-image.png', 'no-image.png', 'no-image.png', 0, 0, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `item_type` (`item_type_id`, `item_type_server`, `item_type_name`, `item_type_use_type`, `item_type_use_id`, `item_type_use_value`, `item_type_order_price`, `item_type_drop_type`, `item_type_drop_model`, `item_type_drop_pos_x`, `item_type_drop_pos_y`, `item_type_drop_pos_z`, `item_type_drop_rot_x`, `item_type_drop_rot_y`, `item_type_drop_rot_z`, `item_type_drop_scale_x`, `item_type_drop_scale_y`, `item_type_drop_scale_z`, `item_type_image_small`, `item_type_image_large`, `item_type_image_hotbar`, `item_type_size`, `item_type_capacity`, `item_type_demand_multiplier`, `item_type_supply_multiplier`, `item_type_risk_multiplier`, `item_type_enabled`, `item_type_delay_switch`, `item_type_delay_use`, `item_type_delay_pickup`, `item_type_delay_put`, `item_type_delay_take`, `item_type_delay_give`, `item_type_delay_drop`) VALUES + (181, 4, 'Pot Seed', 13, 0, 0, 2, 1, 1279, 0, 0, -0.95, 1.6, 0, 0, 0, 0, 0, 'no-image.png', 'no-image.png', 'no-image.png', 0, 0, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `item_type` (`item_type_id`, `item_type_server`, `item_type_name`, `item_type_use_type`, `item_type_use_id`, `item_type_use_value`, `item_type_order_price`, `item_type_drop_type`, `item_type_drop_model`, `item_type_drop_pos_x`, `item_type_drop_pos_y`, `item_type_drop_pos_z`, `item_type_drop_rot_x`, `item_type_drop_rot_y`, `item_type_drop_rot_z`, `item_type_drop_scale_x`, `item_type_drop_scale_y`, `item_type_drop_scale_z`, `item_type_image_small`, `item_type_image_large`, `item_type_image_hotbar`, `item_type_size`, `item_type_capacity`, `item_type_demand_multiplier`, `item_type_supply_multiplier`, `item_type_risk_multiplier`, `item_type_enabled`, `item_type_delay_switch`, `item_type_delay_use`, `item_type_delay_pickup`, `item_type_delay_put`, `item_type_delay_take`, `item_type_delay_give`, `item_type_delay_drop`) VALUES + (182, 4, 'Weed', 14, 0, 0, 20, 1, 1279, 0, 0, -0.95, 1.6, 0, 0, 0.3, 0.3, 0.3, 'no-image.png', 'no-image.png', 'no-image.png', 0, 0, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `item_type` (`item_type_id`, `item_type_server`, `item_type_name`, `item_type_use_type`, `item_type_use_id`, `item_type_use_value`, `item_type_order_price`, `item_type_drop_type`, `item_type_drop_model`, `item_type_drop_pos_x`, `item_type_drop_pos_y`, `item_type_drop_pos_z`, `item_type_drop_rot_x`, `item_type_drop_rot_y`, `item_type_drop_rot_z`, `item_type_drop_scale_x`, `item_type_drop_scale_y`, `item_type_drop_scale_z`, `item_type_image_small`, `item_type_image_large`, `item_type_image_hotbar`, `item_type_size`, `item_type_capacity`, `item_type_demand_multiplier`, `item_type_supply_multiplier`, `item_type_risk_multiplier`, `item_type_enabled`, `item_type_delay_switch`, `item_type_delay_use`, `item_type_delay_pickup`, `item_type_delay_put`, `item_type_delay_take`, `item_type_delay_give`, `item_type_delay_drop`) VALUES + (183, 4, 'Meth', 16, 0, 0, 100, 1, 1279, 0, 0, -0.95, 1.6, 0, 0, 0.3, 0.3, 0.3, 'no-image.png', 'no-image.png', 'no-image.png', 0, 100, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `item_type` (`item_type_id`, `item_type_server`, `item_type_name`, `item_type_use_type`, `item_type_use_id`, `item_type_use_value`, `item_type_order_price`, `item_type_drop_type`, `item_type_drop_model`, `item_type_drop_pos_x`, `item_type_drop_pos_y`, `item_type_drop_pos_z`, `item_type_drop_rot_x`, `item_type_drop_rot_y`, `item_type_drop_rot_z`, `item_type_drop_scale_x`, `item_type_drop_scale_y`, `item_type_drop_scale_z`, `item_type_image_small`, `item_type_image_large`, `item_type_image_hotbar`, `item_type_size`, `item_type_capacity`, `item_type_demand_multiplier`, `item_type_supply_multiplier`, `item_type_risk_multiplier`, `item_type_enabled`, `item_type_delay_switch`, `item_type_delay_use`, `item_type_delay_pickup`, `item_type_delay_put`, `item_type_delay_take`, `item_type_delay_give`, `item_type_delay_drop`) VALUES + (184, 4, 'Coke', 15, 0, 0, 250, 1, 1279, 0, 0, -0.95, 1.6, 0, 0, 0.3, 0.3, 0.3, 'no-image.png', 'no-image.png', 'no-image.png', 0, 100, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `item_type` (`item_type_id`, `item_type_server`, `item_type_name`, `item_type_use_type`, `item_type_use_id`, `item_type_use_value`, `item_type_order_price`, `item_type_drop_type`, `item_type_drop_model`, `item_type_drop_pos_x`, `item_type_drop_pos_y`, `item_type_drop_pos_z`, `item_type_drop_rot_x`, `item_type_drop_rot_y`, `item_type_drop_rot_z`, `item_type_drop_scale_x`, `item_type_drop_scale_y`, `item_type_drop_scale_z`, `item_type_image_small`, `item_type_image_large`, `item_type_image_hotbar`, `item_type_size`, `item_type_capacity`, `item_type_demand_multiplier`, `item_type_supply_multiplier`, `item_type_risk_multiplier`, `item_type_enabled`, `item_type_delay_switch`, `item_type_delay_use`, `item_type_delay_pickup`, `item_type_delay_put`, `item_type_delay_take`, `item_type_delay_give`, `item_type_delay_drop`) VALUES + (185, 4, 'Wallet', 9, 0, 0, 10, 1, 1279, 0, 0, -0.95, 1.6, 0, 0, 0.3, 0.3, 0.2, 'no-image.png', 'no-image.png', 'no-image.png', 0, 0, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `item_type` (`item_type_id`, `item_type_server`, `item_type_name`, `item_type_use_type`, `item_type_use_id`, `item_type_use_value`, `item_type_order_price`, `item_type_drop_type`, `item_type_drop_model`, `item_type_drop_pos_x`, `item_type_drop_pos_y`, `item_type_drop_pos_z`, `item_type_drop_rot_x`, `item_type_drop_rot_y`, `item_type_drop_rot_z`, `item_type_drop_scale_x`, `item_type_drop_scale_y`, `item_type_drop_scale_z`, `item_type_image_small`, `item_type_image_large`, `item_type_image_hotbar`, `item_type_size`, `item_type_capacity`, `item_type_demand_multiplier`, `item_type_supply_multiplier`, `item_type_risk_multiplier`, `item_type_enabled`, `item_type_delay_switch`, `item_type_delay_use`, `item_type_delay_pickup`, `item_type_delay_put`, `item_type_delay_take`, `item_type_delay_give`, `item_type_delay_drop`) VALUES + (186, 4, 'Crate', 9, 0, 0, 25, 1, 1271, 0, 0, -0.95, 1.6, 0, 0, 0, 0, 0, 'no-image.png', 'no-image.png', 'no-image.png', 0, 0, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `item_type` (`item_type_id`, `item_type_server`, `item_type_name`, `item_type_use_type`, `item_type_use_id`, `item_type_use_value`, `item_type_order_price`, `item_type_drop_type`, `item_type_drop_model`, `item_type_drop_pos_x`, `item_type_drop_pos_y`, `item_type_drop_pos_z`, `item_type_drop_rot_x`, `item_type_drop_rot_y`, `item_type_drop_rot_z`, `item_type_drop_scale_x`, `item_type_drop_scale_y`, `item_type_drop_scale_z`, `item_type_image_small`, `item_type_image_large`, `item_type_image_hotbar`, `item_type_size`, `item_type_capacity`, `item_type_demand_multiplier`, `item_type_supply_multiplier`, `item_type_risk_multiplier`, `item_type_enabled`, `item_type_delay_switch`, `item_type_delay_use`, `item_type_delay_pickup`, `item_type_delay_put`, `item_type_delay_take`, `item_type_delay_give`, `item_type_delay_drop`) VALUES + (187, 4, 'Barrel', 9, 0, 0, 25, 1, 3632, 0, 0, -0.95, 1.6, 0, 0, 0, 0, 0, 'no-image.png', 'no-image.png', 'no-image.png', 0, 0, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `item_type` (`item_type_id`, `item_type_server`, `item_type_name`, `item_type_use_type`, `item_type_use_id`, `item_type_use_value`, `item_type_order_price`, `item_type_drop_type`, `item_type_drop_model`, `item_type_drop_pos_x`, `item_type_drop_pos_y`, `item_type_drop_pos_z`, `item_type_drop_rot_x`, `item_type_drop_rot_y`, `item_type_drop_rot_z`, `item_type_drop_scale_x`, `item_type_drop_scale_y`, `item_type_drop_scale_z`, `item_type_image_small`, `item_type_image_large`, `item_type_image_hotbar`, `item_type_size`, `item_type_capacity`, `item_type_demand_multiplier`, `item_type_supply_multiplier`, `item_type_risk_multiplier`, `item_type_enabled`, `item_type_delay_switch`, `item_type_delay_use`, `item_type_delay_pickup`, `item_type_delay_put`, `item_type_delay_take`, `item_type_delay_give`, `item_type_delay_drop`) VALUES + (188, 4, 'Outfit', 6, 0, 0, 50, 1, 1275, 0, 0, -1.1, 1.6, 0, 0, 0, 0, 0, 'no-image.png', 'no-image.png', 'no-image.png', 0, 0, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `item_type` (`item_type_id`, `item_type_server`, `item_type_name`, `item_type_use_type`, `item_type_use_id`, `item_type_use_value`, `item_type_order_price`, `item_type_drop_type`, `item_type_drop_model`, `item_type_drop_pos_x`, `item_type_drop_pos_y`, `item_type_drop_pos_z`, `item_type_drop_rot_x`, `item_type_drop_rot_y`, `item_type_drop_rot_z`, `item_type_drop_scale_x`, `item_type_drop_scale_y`, `item_type_drop_scale_z`, `item_type_image_small`, `item_type_image_large`, `item_type_image_hotbar`, `item_type_size`, `item_type_capacity`, `item_type_demand_multiplier`, `item_type_supply_multiplier`, `item_type_risk_multiplier`, `item_type_enabled`, `item_type_delay_switch`, `item_type_delay_use`, `item_type_delay_pickup`, `item_type_delay_put`, `item_type_delay_take`, `item_type_delay_give`, `item_type_delay_drop`) VALUES + (189, 4, 'Megaphone', 15, 0, 0, 35, 1, 1279, 0, 0, -0.95, 1.6, 0, 0, 0, 0, 0, 'no-image.png', 'no-image.png', 'no-image.png', 0, 100, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `item_type` (`item_type_id`, `item_type_server`, `item_type_name`, `item_type_use_type`, `item_type_use_id`, `item_type_use_value`, `item_type_order_price`, `item_type_drop_type`, `item_type_drop_model`, `item_type_drop_pos_x`, `item_type_drop_pos_y`, `item_type_drop_pos_z`, `item_type_drop_rot_x`, `item_type_drop_rot_y`, `item_type_drop_rot_z`, `item_type_drop_scale_x`, `item_type_drop_scale_y`, `item_type_drop_scale_z`, `item_type_image_small`, `item_type_image_large`, `item_type_image_hotbar`, `item_type_size`, `item_type_capacity`, `item_type_demand_multiplier`, `item_type_supply_multiplier`, `item_type_risk_multiplier`, `item_type_enabled`, `item_type_delay_switch`, `item_type_delay_use`, `item_type_delay_pickup`, `item_type_delay_put`, `item_type_delay_take`, `item_type_delay_give`, `item_type_delay_drop`) VALUES + (190, 4, 'Bottle of Water', 18, 1, 10, 3, 1, 1484, 0, 0, -0.95, 1.6, 0, 0, 0, 0, 0, 'no-image.png', 'no-image.png', 'no-image.png', 0, 100, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `item_type` (`item_type_id`, `item_type_server`, `item_type_name`, `item_type_use_type`, `item_type_use_id`, `item_type_use_value`, `item_type_order_price`, `item_type_drop_type`, `item_type_drop_model`, `item_type_drop_pos_x`, `item_type_drop_pos_y`, `item_type_drop_pos_z`, `item_type_drop_rot_x`, `item_type_drop_rot_y`, `item_type_drop_rot_z`, `item_type_drop_scale_x`, `item_type_drop_scale_y`, `item_type_drop_scale_z`, `item_type_image_small`, `item_type_image_large`, `item_type_image_hotbar`, `item_type_size`, `item_type_capacity`, `item_type_demand_multiplier`, `item_type_supply_multiplier`, `item_type_risk_multiplier`, `item_type_enabled`, `item_type_delay_switch`, `item_type_delay_use`, `item_type_delay_pickup`, `item_type_delay_put`, `item_type_delay_take`, `item_type_delay_give`, `item_type_delay_drop`) VALUES + (191, 4, 'Can of Beer', 35, 3, 5, 5, 1, 594, 0, 0, -0.95, 1.6, 0, 0, 0, 0, 0, 'no-image.png', 'no-image.png', 'no-image.png', 0, 100, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `item_type` (`item_type_id`, `item_type_server`, `item_type_name`, `item_type_use_type`, `item_type_use_id`, `item_type_use_value`, `item_type_order_price`, `item_type_drop_type`, `item_type_drop_model`, `item_type_drop_pos_x`, `item_type_drop_pos_y`, `item_type_drop_pos_z`, `item_type_drop_rot_x`, `item_type_drop_rot_y`, `item_type_drop_rot_z`, `item_type_drop_scale_x`, `item_type_drop_scale_y`, `item_type_drop_scale_z`, `item_type_image_small`, `item_type_image_large`, `item_type_image_hotbar`, `item_type_size`, `item_type_capacity`, `item_type_demand_multiplier`, `item_type_supply_multiplier`, `item_type_risk_multiplier`, `item_type_enabled`, `item_type_delay_switch`, `item_type_delay_use`, `item_type_delay_pickup`, `item_type_delay_put`, `item_type_delay_take`, `item_type_delay_give`, `item_type_delay_drop`) VALUES + (192, 4, 'Bottle of Vodka', 35, 3, 5, 10, 1, 1484, 0, 0, -0.95, 1.6, 0, 0, 0, 0, 0, 'no-image.png', 'no-image.png', 'no-image.png', 0, 100, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `item_type` (`item_type_id`, `item_type_server`, `item_type_name`, `item_type_use_type`, `item_type_use_id`, `item_type_use_value`, `item_type_order_price`, `item_type_drop_type`, `item_type_drop_model`, `item_type_drop_pos_x`, `item_type_drop_pos_y`, `item_type_drop_pos_z`, `item_type_drop_rot_x`, `item_type_drop_rot_y`, `item_type_drop_rot_z`, `item_type_drop_scale_x`, `item_type_drop_scale_y`, `item_type_drop_scale_z`, `item_type_image_small`, `item_type_image_large`, `item_type_image_hotbar`, `item_type_size`, `item_type_capacity`, `item_type_demand_multiplier`, `item_type_supply_multiplier`, `item_type_risk_multiplier`, `item_type_enabled`, `item_type_delay_switch`, `item_type_delay_use`, `item_type_delay_pickup`, `item_type_delay_put`, `item_type_delay_take`, `item_type_delay_give`, `item_type_delay_drop`) VALUES + (193, 4, 'Bottle of Whiskey', 35, 3, 5, 12, 1, 1512, 0, 0, -0.95, 1.6, 0, 0, 0, 0, 0, 'no-image.png', 'no-image.png', 'no-image.png', 0, 100, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `item_type` (`item_type_id`, `item_type_server`, `item_type_name`, `item_type_use_type`, `item_type_use_id`, `item_type_use_value`, `item_type_order_price`, `item_type_drop_type`, `item_type_drop_model`, `item_type_drop_pos_x`, `item_type_drop_pos_y`, `item_type_drop_pos_z`, `item_type_drop_rot_x`, `item_type_drop_rot_y`, `item_type_drop_rot_z`, `item_type_drop_scale_x`, `item_type_drop_scale_y`, `item_type_drop_scale_z`, `item_type_image_small`, `item_type_image_large`, `item_type_image_hotbar`, `item_type_size`, `item_type_capacity`, `item_type_demand_multiplier`, `item_type_supply_multiplier`, `item_type_risk_multiplier`, `item_type_enabled`, `item_type_delay_switch`, `item_type_delay_use`, `item_type_delay_pickup`, `item_type_delay_put`, `item_type_delay_take`, `item_type_delay_give`, `item_type_delay_drop`) VALUES + (194, 4, 'Handcuffs', 24, 0, 0, 100, 0, 1279, 0, 0, -0.95, 1.6, 0, 0, 0.3, 0.3, 0.2, 'no-image.png', 'no-image.png', 'no-image.png', 0, 0, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `item_type` (`item_type_id`, `item_type_server`, `item_type_name`, `item_type_use_type`, `item_type_use_id`, `item_type_use_value`, `item_type_order_price`, `item_type_drop_type`, `item_type_drop_model`, `item_type_drop_pos_x`, `item_type_drop_pos_y`, `item_type_drop_pos_z`, `item_type_drop_rot_x`, `item_type_drop_rot_y`, `item_type_drop_rot_z`, `item_type_drop_scale_x`, `item_type_drop_scale_y`, `item_type_drop_scale_z`, `item_type_image_small`, `item_type_image_large`, `item_type_image_hotbar`, `item_type_size`, `item_type_capacity`, `item_type_demand_multiplier`, `item_type_supply_multiplier`, `item_type_risk_multiplier`, `item_type_enabled`, `item_type_delay_switch`, `item_type_delay_use`, `item_type_delay_pickup`, `item_type_delay_put`, `item_type_delay_take`, `item_type_delay_give`, `item_type_delay_drop`) VALUES + (195, 4, 'Rope', 25, 0, 0, 20, 0, 1279, 0, 0, -0.95, 1.6, 0, 0, 0, 0, 0, 'no-image.png', 'no-image.png', 'no-image.png', 0, 0, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `item_type` (`item_type_id`, `item_type_server`, `item_type_name`, `item_type_use_type`, `item_type_use_id`, `item_type_use_value`, `item_type_order_price`, `item_type_drop_type`, `item_type_drop_model`, `item_type_drop_pos_x`, `item_type_drop_pos_y`, `item_type_drop_pos_z`, `item_type_drop_rot_x`, `item_type_drop_rot_y`, `item_type_drop_rot_z`, `item_type_drop_scale_x`, `item_type_drop_scale_y`, `item_type_drop_scale_z`, `item_type_image_small`, `item_type_image_large`, `item_type_image_hotbar`, `item_type_size`, `item_type_capacity`, `item_type_demand_multiplier`, `item_type_supply_multiplier`, `item_type_risk_multiplier`, `item_type_enabled`, `item_type_delay_switch`, `item_type_delay_use`, `item_type_delay_pickup`, `item_type_delay_put`, `item_type_delay_take`, `item_type_delay_give`, `item_type_delay_drop`) VALUES + (196, 4, 'Blindfold', 26, 0, 0, 20, 0, 1279, 0, 0, -0.95, 1.6, 0, 0, 0, 0, 0, 'no-image.png', 'no-image.png', 'no-image.png', 0, 0, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `item_type` (`item_type_id`, `item_type_server`, `item_type_name`, `item_type_use_type`, `item_type_use_id`, `item_type_use_value`, `item_type_order_price`, `item_type_drop_type`, `item_type_drop_model`, `item_type_drop_pos_x`, `item_type_drop_pos_y`, `item_type_drop_pos_z`, `item_type_drop_rot_x`, `item_type_drop_rot_y`, `item_type_drop_rot_z`, `item_type_drop_scale_x`, `item_type_drop_scale_y`, `item_type_drop_scale_z`, `item_type_image_small`, `item_type_image_large`, `item_type_image_hotbar`, `item_type_size`, `item_type_capacity`, `item_type_demand_multiplier`, `item_type_supply_multiplier`, `item_type_risk_multiplier`, `item_type_enabled`, `item_type_delay_switch`, `item_type_delay_use`, `item_type_delay_pickup`, `item_type_delay_put`, `item_type_delay_take`, `item_type_delay_give`, `item_type_delay_drop`) VALUES + (197, 4, 'Bulletproof Vest', 28, 0, 0, 0, 1, 373, 0, 0, -0.95, 1.6, 0, 0, 0, 0, 0, 'no-image.png', 'no-image.png', 'no-image.png', 0, 100, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `item_type` (`item_type_id`, `item_type_server`, `item_type_name`, `item_type_use_type`, `item_type_use_id`, `item_type_use_value`, `item_type_order_price`, `item_type_drop_type`, `item_type_drop_model`, `item_type_drop_pos_x`, `item_type_drop_pos_y`, `item_type_drop_pos_z`, `item_type_drop_rot_x`, `item_type_drop_rot_y`, `item_type_drop_rot_z`, `item_type_drop_scale_x`, `item_type_drop_scale_y`, `item_type_drop_scale_z`, `item_type_image_small`, `item_type_image_large`, `item_type_image_hotbar`, `item_type_size`, `item_type_capacity`, `item_type_demand_multiplier`, `item_type_supply_multiplier`, `item_type_risk_multiplier`, `item_type_enabled`, `item_type_delay_switch`, `item_type_delay_use`, `item_type_delay_pickup`, `item_type_delay_put`, `item_type_delay_take`, `item_type_delay_give`, `item_type_delay_drop`) VALUES + (198, 4, 'Uniform', 6, 0, 0, 0, 1, 1275, 0, 0, -0.95, 1.6, 0, 0, 0, 0, 0, 'no-image.png', 'no-image.png', 'no-image.png', 0, 0, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `item_type` (`item_type_id`, `item_type_server`, `item_type_name`, `item_type_use_type`, `item_type_use_id`, `item_type_use_value`, `item_type_order_price`, `item_type_drop_type`, `item_type_drop_model`, `item_type_drop_pos_x`, `item_type_drop_pos_y`, `item_type_drop_pos_z`, `item_type_drop_rot_x`, `item_type_drop_rot_y`, `item_type_drop_rot_z`, `item_type_drop_scale_x`, `item_type_drop_scale_y`, `item_type_drop_scale_z`, `item_type_image_small`, `item_type_image_large`, `item_type_image_hotbar`, `item_type_size`, `item_type_capacity`, `item_type_demand_multiplier`, `item_type_supply_multiplier`, `item_type_risk_multiplier`, `item_type_enabled`, `item_type_delay_switch`, `item_type_delay_use`, `item_type_delay_pickup`, `item_type_delay_put`, `item_type_delay_take`, `item_type_delay_give`, `item_type_delay_drop`) VALUES + (199, 4, 'Tazer', 27, 23, 0, 350, 0, 1279, 0, 0, -0.95, 1.6, 0, 0, 0, 0, 0, 'no-image.png', 'no-image.png', 'no-image.png', 0, 0, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `item_type` (`item_type_id`, `item_type_server`, `item_type_name`, `item_type_use_type`, `item_type_use_id`, `item_type_use_value`, `item_type_order_price`, `item_type_drop_type`, `item_type_drop_model`, `item_type_drop_pos_x`, `item_type_drop_pos_y`, `item_type_drop_pos_z`, `item_type_drop_rot_x`, `item_type_drop_rot_y`, `item_type_drop_rot_z`, `item_type_drop_scale_x`, `item_type_drop_scale_y`, `item_type_drop_scale_z`, `item_type_image_small`, `item_type_image_large`, `item_type_image_hotbar`, `item_type_size`, `item_type_capacity`, `item_type_demand_multiplier`, `item_type_supply_multiplier`, `item_type_risk_multiplier`, `item_type_enabled`, `item_type_delay_switch`, `item_type_delay_use`, `item_type_delay_pickup`, `item_type_delay_put`, `item_type_delay_take`, `item_type_delay_give`, `item_type_delay_drop`) VALUES + (200, 4, 'Flashlight', 39, 0, 0, 35, 0, 1279, 0, 0, -0.95, 1.6, 0, 0, 0, 0, 0, 'no-image.png', 'no-image.png', 'no-image.png', 0, 0, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `item_type` (`item_type_id`, `item_type_server`, `item_type_name`, `item_type_use_type`, `item_type_use_id`, `item_type_use_value`, `item_type_order_price`, `item_type_drop_type`, `item_type_drop_model`, `item_type_drop_pos_x`, `item_type_drop_pos_y`, `item_type_drop_pos_z`, `item_type_drop_rot_x`, `item_type_drop_rot_y`, `item_type_drop_rot_z`, `item_type_drop_scale_x`, `item_type_drop_scale_y`, `item_type_drop_scale_z`, `item_type_image_small`, `item_type_image_large`, `item_type_image_hotbar`, `item_type_size`, `item_type_capacity`, `item_type_demand_multiplier`, `item_type_supply_multiplier`, `item_type_risk_multiplier`, `item_type_enabled`, `item_type_delay_switch`, `item_type_delay_use`, `item_type_delay_pickup`, `item_type_delay_put`, `item_type_delay_take`, `item_type_delay_give`, `item_type_delay_drop`) VALUES + (201, 4, 'First Aid Kit', 29, 0, 50, 75, 0, 1279, 0, 0, -0.95, 1.6, 0, 0, 0, 0, 0, 'no-image.png', 'no-image.png', 'no-image.png', 0, 100, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `item_type` (`item_type_id`, `item_type_server`, `item_type_name`, `item_type_use_type`, `item_type_use_id`, `item_type_use_value`, `item_type_order_price`, `item_type_drop_type`, `item_type_drop_model`, `item_type_drop_pos_x`, `item_type_drop_pos_y`, `item_type_drop_pos_z`, `item_type_drop_rot_x`, `item_type_drop_rot_y`, `item_type_drop_rot_z`, `item_type_drop_scale_x`, `item_type_drop_scale_y`, `item_type_drop_scale_z`, `item_type_image_small`, `item_type_image_large`, `item_type_image_hotbar`, `item_type_size`, `item_type_capacity`, `item_type_demand_multiplier`, `item_type_supply_multiplier`, `item_type_risk_multiplier`, `item_type_enabled`, `item_type_delay_switch`, `item_type_delay_use`, `item_type_delay_pickup`, `item_type_delay_put`, `item_type_delay_take`, `item_type_delay_give`, `item_type_delay_drop`) VALUES + (202, 4, 'AED', 29, 0, 100, 3000, 0, 1279, 0, 0, -0.95, 1.6, 0, 0, 0, 0, 0, 'no-image.png', 'no-image.png', 'no-image.png', 0, 100, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `item_type` (`item_type_id`, `item_type_server`, `item_type_name`, `item_type_use_type`, `item_type_use_id`, `item_type_use_value`, `item_type_order_price`, `item_type_drop_type`, `item_type_drop_model`, `item_type_drop_pos_x`, `item_type_drop_pos_y`, `item_type_drop_pos_z`, `item_type_drop_rot_x`, `item_type_drop_rot_y`, `item_type_drop_rot_z`, `item_type_drop_scale_x`, `item_type_drop_scale_y`, `item_type_drop_scale_z`, `item_type_image_small`, `item_type_image_large`, `item_type_image_hotbar`, `item_type_size`, `item_type_capacity`, `item_type_demand_multiplier`, `item_type_supply_multiplier`, `item_type_risk_multiplier`, `item_type_enabled`, `item_type_delay_switch`, `item_type_delay_use`, `item_type_delay_pickup`, `item_type_delay_put`, `item_type_delay_take`, `item_type_delay_give`, `item_type_delay_drop`) VALUES + (203, 4, 'Morphine Syringe', 29, 0, 100, 650, 0, 1279, 0, 0, -0.95, 1.6, 0, 0, 0, 0, 0, 'no-image.png', 'no-image.png', 'no-image.png', 0, 100, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `item_type` (`item_type_id`, `item_type_server`, `item_type_name`, `item_type_use_type`, `item_type_use_id`, `item_type_use_value`, `item_type_order_price`, `item_type_drop_type`, `item_type_drop_model`, `item_type_drop_pos_x`, `item_type_drop_pos_y`, `item_type_drop_pos_z`, `item_type_drop_rot_x`, `item_type_drop_rot_y`, `item_type_drop_rot_z`, `item_type_drop_scale_x`, `item_type_drop_scale_y`, `item_type_drop_scale_z`, `item_type_image_small`, `item_type_image_large`, `item_type_image_hotbar`, `item_type_size`, `item_type_capacity`, `item_type_demand_multiplier`, `item_type_supply_multiplier`, `item_type_risk_multiplier`, `item_type_enabled`, `item_type_delay_switch`, `item_type_delay_use`, `item_type_delay_pickup`, `item_type_delay_put`, `item_type_delay_take`, `item_type_delay_give`, `item_type_delay_drop`) VALUES + (204, 4, 'Cheeseburger', 19, 0, 10, 5, 0, 2880, 0, 0, -0.95, 1.6, 0, 0, 0, 0, 0, 'no-image.png', 'no-image.png', 'no-image.png', 0, 100, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `item_type` (`item_type_id`, `item_type_server`, `item_type_name`, `item_type_use_type`, `item_type_use_id`, `item_type_use_value`, `item_type_order_price`, `item_type_drop_type`, `item_type_drop_model`, `item_type_drop_pos_x`, `item_type_drop_pos_y`, `item_type_drop_pos_z`, `item_type_drop_rot_x`, `item_type_drop_rot_y`, `item_type_drop_rot_z`, `item_type_drop_scale_x`, `item_type_drop_scale_y`, `item_type_drop_scale_z`, `item_type_image_small`, `item_type_image_large`, `item_type_image_hotbar`, `item_type_size`, `item_type_capacity`, `item_type_demand_multiplier`, `item_type_supply_multiplier`, `item_type_risk_multiplier`, `item_type_enabled`, `item_type_delay_switch`, `item_type_delay_use`, `item_type_delay_pickup`, `item_type_delay_put`, `item_type_delay_take`, `item_type_delay_give`, `item_type_delay_drop`) VALUES + (205, 4, 'Slice of Pizza', 19, 0, 10, 5, 0, 1279, 0, 0, -0.95, 1.6, 0, 0, 0, 0, 0, 'no-image.png', 'no-image.png', 'no-image.png', 0, 100, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `item_type` (`item_type_id`, `item_type_server`, `item_type_name`, `item_type_use_type`, `item_type_use_id`, `item_type_use_value`, `item_type_order_price`, `item_type_drop_type`, `item_type_drop_model`, `item_type_drop_pos_x`, `item_type_drop_pos_y`, `item_type_drop_pos_z`, `item_type_drop_rot_x`, `item_type_drop_rot_y`, `item_type_drop_rot_z`, `item_type_drop_scale_x`, `item_type_drop_scale_y`, `item_type_drop_scale_z`, `item_type_image_small`, `item_type_image_large`, `item_type_image_hotbar`, `item_type_size`, `item_type_capacity`, `item_type_demand_multiplier`, `item_type_supply_multiplier`, `item_type_risk_multiplier`, `item_type_enabled`, `item_type_delay_switch`, `item_type_delay_use`, `item_type_delay_pickup`, `item_type_delay_put`, `item_type_delay_take`, `item_type_delay_give`, `item_type_delay_drop`) VALUES + (206, 4, 'Chicken Wing', 19, 0, 10, 5, 0, 1279, 0, 0, -0.95, 1.6, 0, 0, 0.1, 0.1, 0.1, 'no-image.png', 'no-image.png', 'no-image.png', 0, 100, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `item_type` (`item_type_id`, `item_type_server`, `item_type_name`, `item_type_use_type`, `item_type_use_id`, `item_type_use_value`, `item_type_order_price`, `item_type_drop_type`, `item_type_drop_model`, `item_type_drop_pos_x`, `item_type_drop_pos_y`, `item_type_drop_pos_z`, `item_type_drop_rot_x`, `item_type_drop_rot_y`, `item_type_drop_rot_z`, `item_type_drop_scale_x`, `item_type_drop_scale_y`, `item_type_drop_scale_z`, `item_type_image_small`, `item_type_image_large`, `item_type_image_hotbar`, `item_type_size`, `item_type_capacity`, `item_type_demand_multiplier`, `item_type_supply_multiplier`, `item_type_risk_multiplier`, `item_type_enabled`, `item_type_delay_switch`, `item_type_delay_use`, `item_type_delay_pickup`, `item_type_delay_put`, `item_type_delay_take`, `item_type_delay_give`, `item_type_delay_drop`) VALUES + (207, 4, 'Pizza', 19, 0, 10, 15, 0, 1582, 0, 0, -0.95, 1.6, 0, 0, 0, 0, 0, 'no-image.png', 'no-image.png', 'no-image.png', 0, 100, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `item_type` (`item_type_id`, `item_type_server`, `item_type_name`, `item_type_use_type`, `item_type_use_id`, `item_type_use_value`, `item_type_order_price`, `item_type_drop_type`, `item_type_drop_model`, `item_type_drop_pos_x`, `item_type_drop_pos_y`, `item_type_drop_pos_z`, `item_type_drop_rot_x`, `item_type_drop_rot_y`, `item_type_drop_rot_z`, `item_type_drop_scale_x`, `item_type_drop_scale_y`, `item_type_drop_scale_z`, `item_type_image_small`, `item_type_image_large`, `item_type_image_hotbar`, `item_type_size`, `item_type_capacity`, `item_type_demand_multiplier`, `item_type_supply_multiplier`, `item_type_risk_multiplier`, `item_type_enabled`, `item_type_delay_switch`, `item_type_delay_use`, `item_type_delay_pickup`, `item_type_delay_put`, `item_type_delay_take`, `item_type_delay_give`, `item_type_delay_drop`) VALUES + (208, 4, 'Walkie Talkie', 31, 0, 0, 50, 0, 1279, 0, 0, -0.95, 1.6, 0, 0, 0, 0, 0, 'no-image.png', 'no-image.png', 'no-image.png', 0, 0, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `item_type` (`item_type_id`, `item_type_server`, `item_type_name`, `item_type_use_type`, `item_type_use_id`, `item_type_use_value`, `item_type_order_price`, `item_type_drop_type`, `item_type_drop_model`, `item_type_drop_pos_x`, `item_type_drop_pos_y`, `item_type_drop_pos_z`, `item_type_drop_rot_x`, `item_type_drop_rot_y`, `item_type_drop_rot_z`, `item_type_drop_scale_x`, `item_type_drop_scale_y`, `item_type_drop_scale_z`, `item_type_image_small`, `item_type_image_large`, `item_type_image_hotbar`, `item_type_size`, `item_type_capacity`, `item_type_demand_multiplier`, `item_type_supply_multiplier`, `item_type_risk_multiplier`, `item_type_enabled`, `item_type_delay_switch`, `item_type_delay_use`, `item_type_delay_pickup`, `item_type_delay_put`, `item_type_delay_take`, `item_type_delay_give`, `item_type_delay_drop`) VALUES + (209, 4, 'Bottle of Soda', 35, 2, 0, 0, 0, 1544, 0, 0, -0.95, 1.6, 0, 0, 0, 0, 0, 'no-image.png', 'no-image.png', 'no-image.png', 0, 100, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `item_type` (`item_type_id`, `item_type_server`, `item_type_name`, `item_type_use_type`, `item_type_use_id`, `item_type_use_value`, `item_type_order_price`, `item_type_drop_type`, `item_type_drop_model`, `item_type_drop_pos_x`, `item_type_drop_pos_y`, `item_type_drop_pos_z`, `item_type_drop_rot_x`, `item_type_drop_rot_y`, `item_type_drop_rot_z`, `item_type_drop_scale_x`, `item_type_drop_scale_y`, `item_type_drop_scale_z`, `item_type_image_small`, `item_type_image_large`, `item_type_image_hotbar`, `item_type_size`, `item_type_capacity`, `item_type_demand_multiplier`, `item_type_supply_multiplier`, `item_type_risk_multiplier`, `item_type_enabled`, `item_type_delay_switch`, `item_type_delay_use`, `item_type_delay_pickup`, `item_type_delay_put`, `item_type_delay_take`, `item_type_delay_give`, `item_type_delay_drop`) VALUES + (210, 4, 'Can of Soda', 35, 2, 0, 0, 0, 2601, 0, 0, -0.95, 1.6, 0, 0, 0, 0, 0, 'no-image.png', 'no-image.png', 'no-image.png', 0, 100, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `item_type` (`item_type_id`, `item_type_server`, `item_type_name`, `item_type_use_type`, `item_type_use_id`, `item_type_use_value`, `item_type_order_price`, `item_type_drop_type`, `item_type_drop_model`, `item_type_drop_pos_x`, `item_type_drop_pos_y`, `item_type_drop_pos_z`, `item_type_drop_rot_x`, `item_type_drop_rot_y`, `item_type_drop_rot_z`, `item_type_drop_scale_x`, `item_type_drop_scale_y`, `item_type_drop_scale_z`, `item_type_image_small`, `item_type_image_large`, `item_type_image_hotbar`, `item_type_size`, `item_type_capacity`, `item_type_demand_multiplier`, `item_type_supply_multiplier`, `item_type_risk_multiplier`, `item_type_enabled`, `item_type_delay_switch`, `item_type_delay_use`, `item_type_delay_pickup`, `item_type_delay_put`, `item_type_delay_take`, `item_type_delay_give`, `item_type_delay_drop`) VALUES + (211, 4, 'Badge', 34, 0, 0, 0, 0, 1581, 0, 0, -0.95, 1.6, 0, 0, 0, 0, 0, 'no-image.png', 'no-image.png', 'no-image.png', 0, 0, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0); +/*!40000 ALTER TABLE `item_type` ENABLE KEYS */; + +-- Dumping structure for table db24053.job_bl +CREATE TABLE IF NOT EXISTS `job_bl` ( + `job_bl_id` int(11) NOT NULL AUTO_INCREMENT, + `job_bl_job` int(11) NOT NULL DEFAULT '0', + `job_bl_sacct` int(11) NOT NULL DEFAULT '0', + `job_bl_when_added` int(11) NOT NULL DEFAULT '0', + `job_bl_who_added` int(11) NOT NULL DEFAULT '0', + `job_bl_deleted` int(11) NOT NULL DEFAULT '0', + PRIMARY KEY (`job_bl_id`), + KEY `job_bl_job` (`job_bl_job`), + KEY `job_bl_sacct` (`job_bl_sacct`), + KEY `job_bl_who_added` (`job_bl_who_added`), + CONSTRAINT `fk_job_bl_admin` FOREIGN KEY (`job_bl_who_added`) REFERENCES `acct_main` (`acct_id`) ON DELETE CASCADE ON UPDATE CASCADE, + CONSTRAINT `fk_job_bl_job` FOREIGN KEY (`job_bl_job`) REFERENCES `job_main` (`job_id`) ON DELETE CASCADE ON UPDATE CASCADE, + CONSTRAINT `fk_job_bl_sacct` FOREIGN KEY (`job_bl_sacct`) REFERENCES `sacct_main` (`sacct_id`) ON DELETE CASCADE ON UPDATE CASCADE +) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Job - Blacklist'; + +-- Dumping data for table db24053.job_bl: ~0 rows (approximately) +/*!40000 ALTER TABLE `job_bl` DISABLE KEYS */; +/*!40000 ALTER TABLE `job_bl` ENABLE KEYS */; + +-- Dumping structure for table db24053.job_equip +CREATE TABLE IF NOT EXISTS `job_equip` ( + `job_equip_id` int(11) NOT NULL AUTO_INCREMENT, + `job_equip_job` int(11) NOT NULL DEFAULT '0', + `job_equip_minrank` int(11) NOT NULL DEFAULT '0', + `job_equip_name` varchar(50) NOT NULL DEFAULT '0', + `job_equip_enabled` tinyint(1) NOT NULL DEFAULT '1', + PRIMARY KEY (`job_equip_id`), + KEY `job_equip_job` (`job_equip_job`), + CONSTRAINT `fk_job_equip_job` FOREIGN KEY (`job_equip_job`) REFERENCES `job_main` (`job_id`) ON DELETE CASCADE ON UPDATE CASCADE +) ENGINE=InnoDB AUTO_INCREMENT=21 DEFAULT CHARSET=utf8 COMMENT='Job Equipments'; + +-- Dumping data for table db24053.job_equip: ~20 rows (approximately) +/*!40000 ALTER TABLE `job_equip` DISABLE KEYS */; +INSERT INTO `job_equip` (`job_equip_id`, `job_equip_job`, `job_equip_minrank`, `job_equip_name`, `job_equip_enabled`) VALUES + (1, 1, 0, 'Police Officer', 1); +INSERT INTO `job_equip` (`job_equip_id`, `job_equip_job`, `job_equip_minrank`, `job_equip_name`, `job_equip_enabled`) VALUES + (2, 2, 0, 'Police Officer', 1); +INSERT INTO `job_equip` (`job_equip_id`, `job_equip_job`, `job_equip_minrank`, `job_equip_name`, `job_equip_enabled`) VALUES + (3, 3, 0, 'Police Officer', 1); +INSERT INTO `job_equip` (`job_equip_id`, `job_equip_job`, `job_equip_minrank`, `job_equip_name`, `job_equip_enabled`) VALUES + (4, 4, 0, 'Police Officer', 1); +INSERT INTO `job_equip` (`job_equip_id`, `job_equip_job`, `job_equip_minrank`, `job_equip_name`, `job_equip_enabled`) VALUES + (5, 1, 1, 'Detective', 1); +INSERT INTO `job_equip` (`job_equip_id`, `job_equip_job`, `job_equip_minrank`, `job_equip_name`, `job_equip_enabled`) VALUES + (6, 2, 1, 'Detective', 1); +INSERT INTO `job_equip` (`job_equip_id`, `job_equip_job`, `job_equip_minrank`, `job_equip_name`, `job_equip_enabled`) VALUES + (7, 3, 1, 'Detective', 1); +INSERT INTO `job_equip` (`job_equip_id`, `job_equip_job`, `job_equip_minrank`, `job_equip_name`, `job_equip_enabled`) VALUES + (8, 4, 1, 'Detective', 1); +INSERT INTO `job_equip` (`job_equip_id`, `job_equip_job`, `job_equip_minrank`, `job_equip_name`, `job_equip_enabled`) VALUES + (9, 1, 2, 'SWAT', 1); +INSERT INTO `job_equip` (`job_equip_id`, `job_equip_job`, `job_equip_minrank`, `job_equip_name`, `job_equip_enabled`) VALUES + (10, 2, 2, 'SWAT', 1); +INSERT INTO `job_equip` (`job_equip_id`, `job_equip_job`, `job_equip_minrank`, `job_equip_name`, `job_equip_enabled`) VALUES + (11, 3, 2, 'SWAT', 1); +INSERT INTO `job_equip` (`job_equip_id`, `job_equip_job`, `job_equip_minrank`, `job_equip_name`, `job_equip_enabled`) VALUES + (12, 4, 2, 'SWAT', 1); +INSERT INTO `job_equip` (`job_equip_id`, `job_equip_job`, `job_equip_minrank`, `job_equip_name`, `job_equip_enabled`) VALUES + (13, 1, 3, 'Supervisor', 1); +INSERT INTO `job_equip` (`job_equip_id`, `job_equip_job`, `job_equip_minrank`, `job_equip_name`, `job_equip_enabled`) VALUES + (14, 2, 3, 'Supervisor', 1); +INSERT INTO `job_equip` (`job_equip_id`, `job_equip_job`, `job_equip_minrank`, `job_equip_name`, `job_equip_enabled`) VALUES + (15, 3, 3, 'Supervisor', 1); +INSERT INTO `job_equip` (`job_equip_id`, `job_equip_job`, `job_equip_minrank`, `job_equip_name`, `job_equip_enabled`) VALUES + (16, 4, 3, 'Supervisor', 1); +INSERT INTO `job_equip` (`job_equip_id`, `job_equip_job`, `job_equip_minrank`, `job_equip_name`, `job_equip_enabled`) VALUES + (17, 9, 0, 'Firefighter', 1); +INSERT INTO `job_equip` (`job_equip_id`, `job_equip_job`, `job_equip_minrank`, `job_equip_name`, `job_equip_enabled`) VALUES + (18, 10, 0, 'Firefighter', 1); +INSERT INTO `job_equip` (`job_equip_id`, `job_equip_job`, `job_equip_minrank`, `job_equip_name`, `job_equip_enabled`) VALUES + (19, 11, 0, 'Firefighter', 1); +INSERT INTO `job_equip` (`job_equip_id`, `job_equip_job`, `job_equip_minrank`, `job_equip_name`, `job_equip_enabled`) VALUES + (20, 12, 0, 'Firefighter', 1); +/*!40000 ALTER TABLE `job_equip` ENABLE KEYS */; + +-- Dumping structure for table db24053.job_equip_item +CREATE TABLE IF NOT EXISTS `job_equip_item` ( + `job_equip_item_id` int(11) NOT NULL AUTO_INCREMENT, + `job_equip_item_equip` int(11) NOT NULL DEFAULT '0', + `job_equip_item_type` int(11) NOT NULL DEFAULT '0', + `job_equip_item_value` int(11) NOT NULL DEFAULT '0', + `job_equip_item_enabled` tinyint(1) NOT NULL DEFAULT '1', + PRIMARY KEY (`job_equip_item_id`) USING BTREE, + KEY `job_equip_item_equip` (`job_equip_item_equip`), + KEY `job_equip_item_type` (`job_equip_item_type`), + CONSTRAINT `fk_job_equip_item_equip` FOREIGN KEY (`job_equip_item_equip`) REFERENCES `job_equip` (`job_equip_id`) ON DELETE CASCADE ON UPDATE CASCADE, + CONSTRAINT `fk_job_equip_item_item` FOREIGN KEY (`job_equip_item_type`) REFERENCES `item_type` (`item_type_id`) ON DELETE CASCADE ON UPDATE CASCADE +) ENGINE=InnoDB AUTO_INCREMENT=40 DEFAULT CHARSET=utf8 COMMENT='Job Equipments - Items'; + +-- Dumping data for table db24053.job_equip_item: ~36 rows (approximately) +/*!40000 ALTER TABLE `job_equip_item` DISABLE KEYS */; +INSERT INTO `job_equip_item` (`job_equip_item_id`, `job_equip_item_equip`, `job_equip_item_type`, `job_equip_item_value`, `job_equip_item_enabled`) VALUES + (1, 1, 1, 1, 1); +INSERT INTO `job_equip_item` (`job_equip_item_id`, `job_equip_item_equip`, `job_equip_item_type`, `job_equip_item_value`, `job_equip_item_enabled`) VALUES + (2, 1, 5, 50, 1); +INSERT INTO `job_equip_item` (`job_equip_item_id`, `job_equip_item_equip`, `job_equip_item_type`, `job_equip_item_value`, `job_equip_item_enabled`) VALUES + (3, 1, 7, 20, 1); +INSERT INTO `job_equip_item` (`job_equip_item_id`, `job_equip_item_equip`, `job_equip_item_type`, `job_equip_item_value`, `job_equip_item_enabled`) VALUES + (4, 5, 5, 150, 1); +INSERT INTO `job_equip_item` (`job_equip_item_id`, `job_equip_item_equip`, `job_equip_item_type`, `job_equip_item_value`, `job_equip_item_enabled`) VALUES + (5, 9, 1, 1, 1); +INSERT INTO `job_equip_item` (`job_equip_item_id`, `job_equip_item_equip`, `job_equip_item_type`, `job_equip_item_value`, `job_equip_item_enabled`) VALUES + (6, 9, 5, 250, 1); +INSERT INTO `job_equip_item` (`job_equip_item_id`, `job_equip_item_equip`, `job_equip_item_type`, `job_equip_item_value`, `job_equip_item_enabled`) VALUES + (7, 9, 7, 50, 1); +INSERT INTO `job_equip_item` (`job_equip_item_id`, `job_equip_item_equip`, `job_equip_item_type`, `job_equip_item_value`, `job_equip_item_enabled`) VALUES + (8, 9, 9, 500, 1); +INSERT INTO `job_equip_item` (`job_equip_item_id`, `job_equip_item_equip`, `job_equip_item_type`, `job_equip_item_value`, `job_equip_item_enabled`) VALUES + (9, 9, 10, 15, 1); +INSERT INTO `job_equip_item` (`job_equip_item_id`, `job_equip_item_equip`, `job_equip_item_type`, `job_equip_item_value`, `job_equip_item_enabled`) VALUES + (10, 13, 1, 1, 1); +INSERT INTO `job_equip_item` (`job_equip_item_id`, `job_equip_item_equip`, `job_equip_item_type`, `job_equip_item_value`, `job_equip_item_enabled`) VALUES + (11, 13, 5, 50, 1); +INSERT INTO `job_equip_item` (`job_equip_item_id`, `job_equip_item_equip`, `job_equip_item_type`, `job_equip_item_value`, `job_equip_item_enabled`) VALUES + (12, 13, 6, 300, 1); +INSERT INTO `job_equip_item` (`job_equip_item_id`, `job_equip_item_equip`, `job_equip_item_type`, `job_equip_item_value`, `job_equip_item_enabled`) VALUES + (13, 13, 7, 50, 1); +INSERT INTO `job_equip_item` (`job_equip_item_id`, `job_equip_item_equip`, `job_equip_item_type`, `job_equip_item_value`, `job_equip_item_enabled`) VALUES + (14, 17, 46, 500, 1); +INSERT INTO `job_equip_item` (`job_equip_item_id`, `job_equip_item_equip`, `job_equip_item_type`, `job_equip_item_value`, `job_equip_item_enabled`) VALUES + (15, 17, 50, 1, 1); +INSERT INTO `job_equip_item` (`job_equip_item_id`, `job_equip_item_equip`, `job_equip_item_type`, `job_equip_item_value`, `job_equip_item_enabled`) VALUES + (16, 1, 58, 1, 1); +INSERT INTO `job_equip_item` (`job_equip_item_id`, `job_equip_item_equip`, `job_equip_item_type`, `job_equip_item_value`, `job_equip_item_enabled`) VALUES + (18, 4, 137, 1, 1); +INSERT INTO `job_equip_item` (`job_equip_item_id`, `job_equip_item_equip`, `job_equip_item_type`, `job_equip_item_value`, `job_equip_item_enabled`) VALUES + (19, 4, 153, 150, 1); +INSERT INTO `job_equip_item` (`job_equip_item_id`, `job_equip_item_equip`, `job_equip_item_type`, `job_equip_item_value`, `job_equip_item_enabled`) VALUES + (20, 4, 156, 20, 1); +INSERT INTO `job_equip_item` (`job_equip_item_id`, `job_equip_item_equip`, `job_equip_item_type`, `job_equip_item_value`, `job_equip_item_enabled`) VALUES + (21, 8, 155, 150, 1); +INSERT INTO `job_equip_item` (`job_equip_item_id`, `job_equip_item_equip`, `job_equip_item_type`, `job_equip_item_value`, `job_equip_item_enabled`) VALUES + (22, 8, 175, 50, 1); +INSERT INTO `job_equip_item` (`job_equip_item_id`, `job_equip_item_equip`, `job_equip_item_type`, `job_equip_item_value`, `job_equip_item_enabled`) VALUES + (23, 4, 208, 0, 1); +INSERT INTO `job_equip_item` (`job_equip_item_id`, `job_equip_item_equip`, `job_equip_item_type`, `job_equip_item_value`, `job_equip_item_enabled`) VALUES + (24, 4, 194, 1, 1); +INSERT INTO `job_equip_item` (`job_equip_item_id`, `job_equip_item_equip`, `job_equip_item_type`, `job_equip_item_value`, `job_equip_item_enabled`) VALUES + (25, 16, 155, 150, 1); +INSERT INTO `job_equip_item` (`job_equip_item_id`, `job_equip_item_equip`, `job_equip_item_type`, `job_equip_item_value`, `job_equip_item_enabled`) VALUES + (26, 16, 156, 20, 1); +INSERT INTO `job_equip_item` (`job_equip_item_id`, `job_equip_item_equip`, `job_equip_item_type`, `job_equip_item_value`, `job_equip_item_enabled`) VALUES + (27, 16, 160, 300, 1); +INSERT INTO `job_equip_item` (`job_equip_item_id`, `job_equip_item_equip`, `job_equip_item_type`, `job_equip_item_value`, `job_equip_item_enabled`) VALUES + (29, 12, 162, 500, 1); +INSERT INTO `job_equip_item` (`job_equip_item_id`, `job_equip_item_equip`, `job_equip_item_type`, `job_equip_item_value`, `job_equip_item_enabled`) VALUES + (30, 12, 165, 30, 1); +INSERT INTO `job_equip_item` (`job_equip_item_id`, `job_equip_item_equip`, `job_equip_item_type`, `job_equip_item_value`, `job_equip_item_enabled`) VALUES + (31, 16, 158, 100, 1); +INSERT INTO `job_equip_item` (`job_equip_item_id`, `job_equip_item_equip`, `job_equip_item_type`, `job_equip_item_value`, `job_equip_item_enabled`) VALUES + (32, 12, 151, 5, 1); +INSERT INTO `job_equip_item` (`job_equip_item_id`, `job_equip_item_equip`, `job_equip_item_type`, `job_equip_item_value`, `job_equip_item_enabled`) VALUES + (33, 20, 174, 99999, 1); +INSERT INTO `job_equip_item` (`job_equip_item_id`, `job_equip_item_equip`, `job_equip_item_type`, `job_equip_item_value`, `job_equip_item_enabled`) VALUES + (34, 8, 211, 1, 1); +INSERT INTO `job_equip_item` (`job_equip_item_id`, `job_equip_item_equip`, `job_equip_item_type`, `job_equip_item_value`, `job_equip_item_enabled`) VALUES + (35, 16, 211, 1, 1); +INSERT INTO `job_equip_item` (`job_equip_item_id`, `job_equip_item_equip`, `job_equip_item_type`, `job_equip_item_value`, `job_equip_item_enabled`) VALUES + (37, 4, 199, 5, 1); +INSERT INTO `job_equip_item` (`job_equip_item_id`, `job_equip_item_equip`, `job_equip_item_type`, `job_equip_item_value`, `job_equip_item_enabled`) VALUES + (38, 1, 41, 1, 1); +INSERT INTO `job_equip_item` (`job_equip_item_id`, `job_equip_item_equip`, `job_equip_item_type`, `job_equip_item_value`, `job_equip_item_enabled`) VALUES + (39, 1, 47, 5, 1); +/*!40000 ALTER TABLE `job_equip_item` ENABLE KEYS */; + +-- Dumping structure for table db24053.job_loc +CREATE TABLE IF NOT EXISTS `job_loc` ( + `job_loc_id` int(11) NOT NULL AUTO_INCREMENT, + `job_loc_job` int(11) NOT NULL DEFAULT '0', + `job_loc_pos_x` float NOT NULL DEFAULT '0', + `job_loc_pos_y` float NOT NULL DEFAULT '0', + `job_loc_pos_z` float NOT NULL DEFAULT '0', + `job_loc_enabled` float NOT NULL DEFAULT '0', + `job_loc_uniform` int(11) NOT NULL DEFAULT '0', + `job_loc_int` int(11) NOT NULL DEFAULT '0', + `job_loc_vw` int(11) NOT NULL DEFAULT '0', + PRIMARY KEY (`job_loc_id`), + KEY `job_loc_job` (`job_loc_job`), + CONSTRAINT `fk_job_loc_job` FOREIGN KEY (`job_loc_job`) REFERENCES `job_main` (`job_id`) ON DELETE CASCADE ON UPDATE CASCADE +) ENGINE=InnoDB AUTO_INCREMENT=61 DEFAULT CHARSET=utf8 COMMENT='Job - Locations'; + +-- Dumping data for table db24053.job_loc: ~51 rows (approximately) +/*!40000 ALTER TABLE `job_loc` DISABLE KEYS */; +INSERT INTO `job_loc` (`job_loc_id`, `job_loc_job`, `job_loc_pos_x`, `job_loc_pos_y`, `job_loc_pos_z`, `job_loc_enabled`, `job_loc_uniform`, `job_loc_int`, `job_loc_vw`) VALUES + (1, 1, 1143.87, -675.18, 14.97, 1, 1, 0, 0); +INSERT INTO `job_loc` (`job_loc_id`, `job_loc_job`, `job_loc_pos_x`, `job_loc_pos_y`, `job_loc_pos_z`, `job_loc_enabled`, `job_loc_uniform`, `job_loc_int`, `job_loc_vw`) VALUES + (3, 5, -1253, -138.18, 58.75, 1, 0, 0, 0); +INSERT INTO `job_loc` (`job_loc_id`, `job_loc_job`, `job_loc_pos_x`, `job_loc_pos_y`, `job_loc_pos_z`, `job_loc_enabled`, `job_loc_uniform`, `job_loc_int`, `job_loc_vw`) VALUES + (4, 2, 401.94, -482.55, 12.34, 1, 3, 12, 5326); +INSERT INTO `job_loc` (`job_loc_id`, `job_loc_job`, `job_loc_pos_x`, `job_loc_pos_y`, `job_loc_pos_z`, `job_loc_enabled`, `job_loc_uniform`, `job_loc_int`, `job_loc_vw`) VALUES + (5, 2, 508.96, 512.07, 12.1, 1, 3, 0, 0); +INSERT INTO `job_loc` (`job_loc_id`, `job_loc_job`, `job_loc_pos_x`, `job_loc_pos_y`, `job_loc_pos_z`, `job_loc_enabled`, `job_loc_uniform`, `job_loc_int`, `job_loc_vw`) VALUES + (6, 2, -657.43, 762.31, 11.59, 1, 3, 0, 0); +INSERT INTO `job_loc` (`job_loc_id`, `job_loc_job`, `job_loc_pos_x`, `job_loc_pos_y`, `job_loc_pos_z`, `job_loc_enabled`, `job_loc_uniform`, `job_loc_int`, `job_loc_vw`) VALUES + (7, 6, -885.08, -470.44, 13.11, 1, 0, 0, 0); +INSERT INTO `job_loc` (`job_loc_id`, `job_loc_job`, `job_loc_pos_x`, `job_loc_pos_y`, `job_loc_pos_z`, `job_loc_enabled`, `job_loc_uniform`, `job_loc_int`, `job_loc_vw`) VALUES + (8, 4, 254.38, 77.72, 1003.64, 1, 0, 6, 2); +INSERT INTO `job_loc` (`job_loc_id`, `job_loc_job`, `job_loc_pos_x`, `job_loc_pos_y`, `job_loc_pos_z`, `job_loc_enabled`, `job_loc_uniform`, `job_loc_int`, `job_loc_vw`) VALUES + (11, 5, 1144.25, -596.87, 14.97, 1, 0, 0, 0); +INSERT INTO `job_loc` (`job_loc_id`, `job_loc_job`, `job_loc_pos_x`, `job_loc_pos_y`, `job_loc_pos_z`, `job_loc_enabled`, `job_loc_uniform`, `job_loc_int`, `job_loc_vw`) VALUES + (12, 1, -1259.5, -44.5, 58.89, 1, 1, 0, 0); +INSERT INTO `job_loc` (`job_loc_id`, `job_loc_job`, `job_loc_pos_x`, `job_loc_pos_y`, `job_loc_pos_z`, `job_loc_enabled`, `job_loc_uniform`, `job_loc_int`, `job_loc_vw`) VALUES + (13, 5, 183.5, -17.75, 16.21, 1, 0, 0, 0); +INSERT INTO `job_loc` (`job_loc_id`, `job_loc_job`, `job_loc_pos_x`, `job_loc_pos_y`, `job_loc_pos_z`, `job_loc_enabled`, `job_loc_uniform`, `job_loc_int`, `job_loc_vw`) VALUES + (14, 9, 1103.7, -52.45, 7.49, 1, 0, 0, 0); +INSERT INTO `job_loc` (`job_loc_id`, `job_loc_job`, `job_loc_pos_x`, `job_loc_pos_y`, `job_loc_pos_z`, `job_loc_enabled`, `job_loc_uniform`, `job_loc_int`, `job_loc_vw`) VALUES + (15, 9, -78.48, -436.8, 16.17, 1, 0, 0, 0); +INSERT INTO `job_loc` (`job_loc_id`, `job_loc_job`, `job_loc_pos_x`, `job_loc_pos_y`, `job_loc_pos_z`, `job_loc_enabled`, `job_loc_uniform`, `job_loc_int`, `job_loc_vw`) VALUES + (16, 9, -1202.1, -14.67, 53.2, 1, 0, 0, 0); +INSERT INTO `job_loc` (`job_loc_id`, `job_loc_job`, `job_loc_pos_x`, `job_loc_pos_y`, `job_loc_pos_z`, `job_loc_enabled`, `job_loc_uniform`, `job_loc_int`, `job_loc_vw`) VALUES + (17, 13, 1229.2, -740.1, 15.17, 1, 0, 0, 0); +INSERT INTO `job_loc` (`job_loc_id`, `job_loc_job`, `job_loc_pos_x`, `job_loc_pos_y`, `job_loc_pos_z`, `job_loc_enabled`, `job_loc_uniform`, `job_loc_int`, `job_loc_vw`) VALUES + (18, 17, -57.1661, -334.266, 16.9324, 1, 0, 0, 0); +INSERT INTO `job_loc` (`job_loc_id`, `job_loc_job`, `job_loc_pos_x`, `job_loc_pos_y`, `job_loc_pos_z`, `job_loc_enabled`, `job_loc_uniform`, `job_loc_int`, `job_loc_vw`) VALUES + (19, 17, 0, 0, 0, 1, 0, 0, 0); +INSERT INTO `job_loc` (`job_loc_id`, `job_loc_job`, `job_loc_pos_x`, `job_loc_pos_y`, `job_loc_pos_z`, `job_loc_enabled`, `job_loc_uniform`, `job_loc_int`, `job_loc_vw`) VALUES + (20, 17, 1310.2, -1016.3, 14.88, 1, 0, 0, 0); +INSERT INTO `job_loc` (`job_loc_id`, `job_loc_job`, `job_loc_pos_x`, `job_loc_pos_y`, `job_loc_pos_z`, `job_loc_enabled`, `job_loc_uniform`, `job_loc_int`, `job_loc_vw`) VALUES + (21, 21, -66.8, -932.2, 16.47, 1, 0, 0, 0); +INSERT INTO `job_loc` (`job_loc_id`, `job_loc_job`, `job_loc_pos_x`, `job_loc_pos_y`, `job_loc_pos_z`, `job_loc_enabled`, `job_loc_uniform`, `job_loc_int`, `job_loc_vw`) VALUES + (22, 21, 1121.8, 27.8, 1.99, 1, 0, 0, 0); +INSERT INTO `job_loc` (`job_loc_id`, `job_loc_job`, `job_loc_pos_x`, `job_loc_pos_y`, `job_loc_pos_z`, `job_loc_enabled`, `job_loc_uniform`, `job_loc_int`, `job_loc_vw`) VALUES + (23, 3, 894.99, -357.39, 18.185, 1, 0, 0, 0); +INSERT INTO `job_loc` (`job_loc_id`, `job_loc_job`, `job_loc_pos_x`, `job_loc_pos_y`, `job_loc_pos_z`, `job_loc_enabled`, `job_loc_uniform`, `job_loc_int`, `job_loc_vw`) VALUES + (24, 3, 435.4, 1592.29, 17.353, 1, 0, 0, 0); +INSERT INTO `job_loc` (`job_loc_id`, `job_loc_job`, `job_loc_pos_x`, `job_loc_pos_y`, `job_loc_pos_z`, `job_loc_enabled`, `job_loc_uniform`, `job_loc_int`, `job_loc_vw`) VALUES + (25, 3, 974.93, 1870.45, 23.073, 1, 0, 0, 0); +INSERT INTO `job_loc` (`job_loc_id`, `job_loc_job`, `job_loc_pos_x`, `job_loc_pos_y`, `job_loc_pos_z`, `job_loc_enabled`, `job_loc_uniform`, `job_loc_int`, `job_loc_vw`) VALUES + (26, 3, 1233.25, -89.13, 28.034, 1, 0, 0, 0); +INSERT INTO `job_loc` (`job_loc_id`, `job_loc_job`, `job_loc_pos_x`, `job_loc_pos_y`, `job_loc_pos_z`, `job_loc_enabled`, `job_loc_uniform`, `job_loc_int`, `job_loc_vw`) VALUES + (27, 3, 50.12, 679.88, 15.316, 1, 0, 0, 0); +INSERT INTO `job_loc` (`job_loc_id`, `job_loc_job`, `job_loc_pos_x`, `job_loc_pos_y`, `job_loc_pos_z`, `job_loc_enabled`, `job_loc_uniform`, `job_loc_int`, `job_loc_vw`) VALUES + (28, 3, 85.21, 1189.82, 14.755, 1, 0, 0, 0); +INSERT INTO `job_loc` (`job_loc_id`, `job_loc_job`, `job_loc_pos_x`, `job_loc_pos_y`, `job_loc_pos_z`, `job_loc_enabled`, `job_loc_uniform`, `job_loc_int`, `job_loc_vw`) VALUES + (29, 3, 2170.87, 448.87, 6.085, 1, 0, 0, 0); +INSERT INTO `job_loc` (`job_loc_id`, `job_loc_job`, `job_loc_pos_x`, `job_loc_pos_y`, `job_loc_pos_z`, `job_loc_enabled`, `job_loc_uniform`, `job_loc_int`, `job_loc_vw`) VALUES + (30, 3, 213.12, -211.7, 10.752, 1, 0, 0, 0); +INSERT INTO `job_loc` (`job_loc_id`, `job_loc_job`, `job_loc_pos_x`, `job_loc_pos_y`, `job_loc_pos_z`, `job_loc_enabled`, `job_loc_uniform`, `job_loc_int`, `job_loc_vw`) VALUES + (31, 3, -1714.95, 276.31, 22.134, 1, 0, 0, 0); +INSERT INTO `job_loc` (`job_loc_id`, `job_loc_job`, `job_loc_pos_x`, `job_loc_pos_y`, `job_loc_pos_z`, `job_loc_enabled`, `job_loc_uniform`, `job_loc_int`, `job_loc_vw`) VALUES + (32, 3, -1220.73, -231.53, 3.024, 1, 0, 0, 0); +INSERT INTO `job_loc` (`job_loc_id`, `job_loc_job`, `job_loc_pos_x`, `job_loc_pos_y`, `job_loc_pos_z`, `job_loc_enabled`, `job_loc_uniform`, `job_loc_int`, `job_loc_vw`) VALUES + (33, 3, -927.66, 1263.63, 24.587, 1, 0, 0, 0); +INSERT INTO `job_loc` (`job_loc_id`, `job_loc_job`, `job_loc_pos_x`, `job_loc_pos_y`, `job_loc_pos_z`, `job_loc_enabled`, `job_loc_uniform`, `job_loc_int`, `job_loc_vw`) VALUES + (34, 6, -826.06, 1144.41, 12.41, 1, 0, 0, 0); +INSERT INTO `job_loc` (`job_loc_id`, `job_loc_job`, `job_loc_pos_x`, `job_loc_pos_y`, `job_loc_pos_z`, `job_loc_enabled`, `job_loc_uniform`, `job_loc_int`, `job_loc_vw`) VALUES + (35, 2, 401.94, -482.55, 12.34, 1, 3, 12, 5291); +INSERT INTO `job_loc` (`job_loc_id`, `job_loc_job`, `job_loc_pos_x`, `job_loc_pos_y`, `job_loc_pos_z`, `job_loc_enabled`, `job_loc_uniform`, `job_loc_int`, `job_loc_vw`) VALUES + (36, 10, -698.22, 942.38, 11.08, 1, 0, 0, 0); +INSERT INTO `job_loc` (`job_loc_id`, `job_loc_job`, `job_loc_pos_x`, `job_loc_pos_y`, `job_loc_pos_z`, `job_loc_enabled`, `job_loc_uniform`, `job_loc_int`, `job_loc_vw`) VALUES + (37, 18, -1146.06, -285.65, 11.2, 1, 0, 0, 0); +INSERT INTO `job_loc` (`job_loc_id`, `job_loc_job`, `job_loc_pos_x`, `job_loc_pos_y`, `job_loc_pos_z`, `job_loc_enabled`, `job_loc_uniform`, `job_loc_int`, `job_loc_vw`) VALUES + (38, 14, -994.88, 185.1, 12.43, 1, 0, 0, 0); +INSERT INTO `job_loc` (`job_loc_id`, `job_loc_job`, `job_loc_pos_x`, `job_loc_pos_y`, `job_loc_pos_z`, `job_loc_enabled`, `job_loc_uniform`, `job_loc_int`, `job_loc_vw`) VALUES + (39, 6, 493.14, 709.31, 11.8, 1, 0, 0, 0); +INSERT INTO `job_loc` (`job_loc_id`, `job_loc_job`, `job_loc_pos_x`, `job_loc_pos_y`, `job_loc_pos_z`, `job_loc_enabled`, `job_loc_uniform`, `job_loc_int`, `job_loc_vw`) VALUES + (40, 22, -1264.42, 6.05, 11.45, 1, 0, 0, 0); +INSERT INTO `job_loc` (`job_loc_id`, `job_loc_job`, `job_loc_pos_x`, `job_loc_pos_y`, `job_loc_pos_z`, `job_loc_enabled`, `job_loc_uniform`, `job_loc_int`, `job_loc_vw`) VALUES + (41, 8, 1172.96, -1323.42, 15.4, 1, 0, 0, 0); +INSERT INTO `job_loc` (`job_loc_id`, `job_loc_job`, `job_loc_pos_x`, `job_loc_pos_y`, `job_loc_pos_z`, `job_loc_enabled`, `job_loc_uniform`, `job_loc_int`, `job_loc_vw`) VALUES + (42, 8, 2034.04, -1405.07, 17.24, 1, 0, 0, 0); +INSERT INTO `job_loc` (`job_loc_id`, `job_loc_job`, `job_loc_pos_x`, `job_loc_pos_y`, `job_loc_pos_z`, `job_loc_enabled`, `job_loc_uniform`, `job_loc_int`, `job_loc_vw`) VALUES + (43, 24, 2309.22, -2088.32, 13.55, 1, 0, 0, 0); +INSERT INTO `job_loc` (`job_loc_id`, `job_loc_job`, `job_loc_pos_x`, `job_loc_pos_y`, `job_loc_pos_z`, `job_loc_enabled`, `job_loc_uniform`, `job_loc_int`, `job_loc_vw`) VALUES + (44, 20, 1765.89, -1885.48, 13.55, 1, 0, 0, 0); +INSERT INTO `job_loc` (`job_loc_id`, `job_loc_job`, `job_loc_pos_x`, `job_loc_pos_y`, `job_loc_pos_z`, `job_loc_enabled`, `job_loc_uniform`, `job_loc_int`, `job_loc_vw`) VALUES + (45, 16, 1808.64, -1938.58, 13.55, 1, 0, 0, 0); +INSERT INTO `job_loc` (`job_loc_id`, `job_loc_job`, `job_loc_pos_x`, `job_loc_pos_y`, `job_loc_pos_z`, `job_loc_enabled`, `job_loc_uniform`, `job_loc_int`, `job_loc_vw`) VALUES + (46, 12, 1133.7, -1312.92, 13.58, 1, 0, 0, 0); +INSERT INTO `job_loc` (`job_loc_id`, `job_loc_job`, `job_loc_pos_x`, `job_loc_pos_y`, `job_loc_pos_z`, `job_loc_enabled`, `job_loc_uniform`, `job_loc_int`, `job_loc_vw`) VALUES + (47, 4, 2290.49, 2430.09, 10.82, 1, 0, 0, 0); +INSERT INTO `job_loc` (`job_loc_id`, `job_loc_job`, `job_loc_pos_x`, `job_loc_pos_y`, `job_loc_pos_z`, `job_loc_enabled`, `job_loc_uniform`, `job_loc_int`, `job_loc_vw`) VALUES + (48, 12, 1744.95, 2082.8, 10.82, 1, 0, 0, 0); +INSERT INTO `job_loc` (`job_loc_id`, `job_loc_job`, `job_loc_pos_x`, `job_loc_pos_y`, `job_loc_pos_z`, `job_loc_enabled`, `job_loc_uniform`, `job_loc_int`, `job_loc_vw`) VALUES + (49, 4, -1605.38, 711.5, 13.87, 1, 0, 0, 0); +INSERT INTO `job_loc` (`job_loc_id`, `job_loc_job`, `job_loc_pos_x`, `job_loc_pos_y`, `job_loc_pos_z`, `job_loc_enabled`, `job_loc_uniform`, `job_loc_int`, `job_loc_vw`) VALUES + (50, 8, -2655.15, 638.72, 14.45, 1, 0, 0, 0); +INSERT INTO `job_loc` (`job_loc_id`, `job_loc_job`, `job_loc_pos_x`, `job_loc_pos_y`, `job_loc_pos_z`, `job_loc_enabled`, `job_loc_uniform`, `job_loc_int`, `job_loc_vw`) VALUES + (51, 12, -2026.34, 67.17, 28.69, 1, 0, 0, 0); +INSERT INTO `job_loc` (`job_loc_id`, `job_loc_job`, `job_loc_pos_x`, `job_loc_pos_y`, `job_loc_pos_z`, `job_loc_enabled`, `job_loc_uniform`, `job_loc_int`, `job_loc_vw`) VALUES + (52, 17, -1130.99, -177.76, 43.72, 1, 0, 0, 0); +INSERT INTO `job_loc` (`job_loc_id`, `job_loc_job`, `job_loc_pos_x`, `job_loc_pos_y`, `job_loc_pos_z`, `job_loc_enabled`, `job_loc_uniform`, `job_loc_int`, `job_loc_vw`) VALUES + (53, 1, 345.588, -1122.58, 25.9809, 1, 0, 0, 0); +INSERT INTO `job_loc` (`job_loc_id`, `job_loc_job`, `job_loc_pos_x`, `job_loc_pos_y`, `job_loc_pos_z`, `job_loc_enabled`, `job_loc_uniform`, `job_loc_int`, `job_loc_vw`) VALUES + (60, 4, 254.643, 77.1645, 1003.64, 1, 0, 6, 5230); +/*!40000 ALTER TABLE `job_loc` ENABLE KEYS */; + +-- Dumping structure for table db24053.job_main +CREATE TABLE IF NOT EXISTS `job_main` ( + `job_id` int(11) NOT NULL AUTO_INCREMENT, + `job_server` int(11) NOT NULL DEFAULT '0', + `job_enabled` int(11) NOT NULL DEFAULT '1', + `job_name` varchar(50) NOT NULL DEFAULT 'Unnamed', + `job_pickup` int(11) NOT NULL DEFAULT '0', + `job_type` int(11) NOT NULL DEFAULT '0', + `job_blip` int(11) NOT NULL DEFAULT '0', + `job_colour_r` int(11) NOT NULL DEFAULT '255', + `job_colour_g` int(11) NOT NULL DEFAULT '255', + `job_colour_b` int(11) NOT NULL DEFAULT '255', + `job_whitelist` tinyint(1) NOT NULL DEFAULT '0', + `job_blacklist` tinyint(1) NOT NULL DEFAULT '0', + `job_walkietalkiefreq` int(11) NOT NULL DEFAULT '5000', + PRIMARY KEY (`job_id`), + KEY `job_server` (`job_server`), + CONSTRAINT `fk_job_server` FOREIGN KEY (`job_server`) REFERENCES `svr_main` (`svr_id`) ON DELETE CASCADE ON UPDATE CASCADE +) ENGINE=InnoDB AUTO_INCREMENT=25 DEFAULT CHARSET=utf8 COMMENT='Jobs'; + +-- Dumping data for table db24053.job_main: ~24 rows (approximately) +/*!40000 ALTER TABLE `job_main` DISABLE KEYS */; +INSERT INTO `job_main` (`job_id`, `job_server`, `job_enabled`, `job_name`, `job_pickup`, `job_type`, `job_blip`, `job_colour_r`, `job_colour_g`, `job_colour_b`, `job_whitelist`, `job_blacklist`, `job_walkietalkiefreq`) VALUES + (1, 1, 1, 'Police', 1383, 1, 0, 70, 150, 200, 0, 0, 268500); +INSERT INTO `job_main` (`job_id`, `job_server`, `job_enabled`, `job_name`, `job_pickup`, `job_type`, `job_blip`, `job_colour_r`, `job_colour_g`, `job_colour_b`, `job_whitelist`, `job_blacklist`, `job_walkietalkiefreq`) VALUES + (2, 2, 1, 'Police', 375, 1, 0, 70, 130, 180, 0, 0, 233400); +INSERT INTO `job_main` (`job_id`, `job_server`, `job_enabled`, `job_name`, `job_pickup`, `job_type`, `job_blip`, `job_colour_r`, `job_colour_g`, `job_colour_b`, `job_whitelist`, `job_blacklist`, `job_walkietalkiefreq`) VALUES + (3, 3, 1, 'Police', 0, 1, 0, 70, 130, 180, 0, 0, 656700); +INSERT INTO `job_main` (`job_id`, `job_server`, `job_enabled`, `job_name`, `job_pickup`, `job_type`, `job_blip`, `job_colour_r`, `job_colour_g`, `job_colour_b`, `job_whitelist`, `job_blacklist`, `job_walkietalkiefreq`) VALUES + (4, 4, 1, 'Police', 1247, 1, 30, 70, 130, 180, 0, 0, 788500); +INSERT INTO `job_main` (`job_id`, `job_server`, `job_enabled`, `job_name`, `job_pickup`, `job_type`, `job_blip`, `job_colour_r`, `job_colour_g`, `job_colour_b`, `job_whitelist`, `job_blacklist`, `job_walkietalkiefreq`) VALUES + (5, 1, 1, 'Paramedic', 1362, 2, 0, 219, 112, 147, 0, 0, 696500); +INSERT INTO `job_main` (`job_id`, `job_server`, `job_enabled`, `job_name`, `job_pickup`, `job_type`, `job_blip`, `job_colour_r`, `job_colour_g`, `job_colour_b`, `job_whitelist`, `job_blacklist`, `job_walkietalkiefreq`) VALUES + (6, 2, 1, 'Paramedic', 366, 2, 0, 219, 112, 147, 0, 0, 466500); +INSERT INTO `job_main` (`job_id`, `job_server`, `job_enabled`, `job_name`, `job_pickup`, `job_type`, `job_blip`, `job_colour_r`, `job_colour_g`, `job_colour_b`, `job_whitelist`, `job_blacklist`, `job_walkietalkiefreq`) VALUES + (7, 3, 1, 'Paramedic', 0, 2, 0, 219, 112, 147, 0, 0, 855700); +INSERT INTO `job_main` (`job_id`, `job_server`, `job_enabled`, `job_name`, `job_pickup`, `job_type`, `job_blip`, `job_colour_r`, `job_colour_g`, `job_colour_b`, `job_whitelist`, `job_blacklist`, `job_walkietalkiefreq`) VALUES + (8, 4, 1, 'Paramedic', 1240, 2, 22, 219, 112, 147, 0, 0, 239800); +INSERT INTO `job_main` (`job_id`, `job_server`, `job_enabled`, `job_name`, `job_pickup`, `job_type`, `job_blip`, `job_colour_r`, `job_colour_g`, `job_colour_b`, `job_whitelist`, `job_blacklist`, `job_walkietalkiefreq`) VALUES + (9, 1, 1, 'Firefighter', 1364, 3, 0, 205, 92, 92, 0, 0, 0); +INSERT INTO `job_main` (`job_id`, `job_server`, `job_enabled`, `job_name`, `job_pickup`, `job_type`, `job_blip`, `job_colour_r`, `job_colour_g`, `job_colour_b`, `job_whitelist`, `job_blacklist`, `job_walkietalkiefreq`) VALUES + (10, 2, 1, 'Firefighter', 365, 3, 0, 205, 92, 92, 0, 0, 0); +INSERT INTO `job_main` (`job_id`, `job_server`, `job_enabled`, `job_name`, `job_pickup`, `job_type`, `job_blip`, `job_colour_r`, `job_colour_g`, `job_colour_b`, `job_whitelist`, `job_blacklist`, `job_walkietalkiefreq`) VALUES + (11, 3, 1, 'Firefighter', 0, 3, 0, 205, 92, 92, 0, 0, 0); +INSERT INTO `job_main` (`job_id`, `job_server`, `job_enabled`, `job_name`, `job_pickup`, `job_type`, `job_blip`, `job_colour_r`, `job_colour_g`, `job_colour_b`, `job_whitelist`, `job_blacklist`, `job_walkietalkiefreq`) VALUES + (12, 4, 1, 'Firefighter', 1318, 3, 20, 205, 92, 92, 0, 0, 0); +INSERT INTO `job_main` (`job_id`, `job_server`, `job_enabled`, `job_name`, `job_pickup`, `job_type`, `job_blip`, `job_colour_r`, `job_colour_g`, `job_colour_b`, `job_whitelist`, `job_blacklist`, `job_walkietalkiefreq`) VALUES + (13, 1, 1, 'Taxi Driver', 1361, 5, 0, 240, 230, 140, 0, 0, 0); +INSERT INTO `job_main` (`job_id`, `job_server`, `job_enabled`, `job_name`, `job_pickup`, `job_type`, `job_blip`, `job_colour_r`, `job_colour_g`, `job_colour_b`, `job_whitelist`, `job_blacklist`, `job_walkietalkiefreq`) VALUES + (14, 2, 1, 'Taxi Driver', 365, 5, 0, 240, 230, 140, 0, 0, 0); +INSERT INTO `job_main` (`job_id`, `job_server`, `job_enabled`, `job_name`, `job_pickup`, `job_type`, `job_blip`, `job_colour_r`, `job_colour_g`, `job_colour_b`, `job_whitelist`, `job_blacklist`, `job_walkietalkiefreq`) VALUES + (15, 3, 1, 'Taxi Driver', 0, 5, 0, 240, 230, 140, 0, 0, 0); +INSERT INTO `job_main` (`job_id`, `job_server`, `job_enabled`, `job_name`, `job_pickup`, `job_type`, `job_blip`, `job_colour_r`, `job_colour_g`, `job_colour_b`, `job_whitelist`, `job_blacklist`, `job_walkietalkiefreq`) VALUES + (16, 4, 1, 'Taxi Driver', 1318, 5, 0, 240, 230, 140, 0, 0, 0); +INSERT INTO `job_main` (`job_id`, `job_server`, `job_enabled`, `job_name`, `job_pickup`, `job_type`, `job_blip`, `job_colour_r`, `job_colour_g`, `job_colour_b`, `job_whitelist`, `job_blacklist`, `job_walkietalkiefreq`) VALUES + (17, 1, 1, 'Bus Driver', 1361, 4, 0, 50, 205, 50, 0, 0, 0); +INSERT INTO `job_main` (`job_id`, `job_server`, `job_enabled`, `job_name`, `job_pickup`, `job_type`, `job_blip`, `job_colour_r`, `job_colour_g`, `job_colour_b`, `job_whitelist`, `job_blacklist`, `job_walkietalkiefreq`) VALUES + (18, 2, 1, 'Bus Driver', 365, 4, 0, 50, 205, 50, 0, 0, 0); +INSERT INTO `job_main` (`job_id`, `job_server`, `job_enabled`, `job_name`, `job_pickup`, `job_type`, `job_blip`, `job_colour_r`, `job_colour_g`, `job_colour_b`, `job_whitelist`, `job_blacklist`, `job_walkietalkiefreq`) VALUES + (19, 3, 1, 'Bus Driver', 0, 4, 0, 50, 205, 50, 0, 0, 0); +INSERT INTO `job_main` (`job_id`, `job_server`, `job_enabled`, `job_name`, `job_pickup`, `job_type`, `job_blip`, `job_colour_r`, `job_colour_g`, `job_colour_b`, `job_whitelist`, `job_blacklist`, `job_walkietalkiefreq`) VALUES + (20, 4, 1, 'Bus Driver', 1318, 4, 0, 50, 205, 50, 0, 0, 0); +INSERT INTO `job_main` (`job_id`, `job_server`, `job_enabled`, `job_name`, `job_pickup`, `job_type`, `job_blip`, `job_colour_r`, `job_colour_g`, `job_colour_b`, `job_whitelist`, `job_blacklist`, `job_walkietalkiefreq`) VALUES + (21, 1, 1, 'Trash Collector', 1351, 6, 0, 150, 150, 150, 0, 0, 0); +INSERT INTO `job_main` (`job_id`, `job_server`, `job_enabled`, `job_name`, `job_pickup`, `job_type`, `job_blip`, `job_colour_r`, `job_colour_g`, `job_colour_b`, `job_whitelist`, `job_blacklist`, `job_walkietalkiefreq`) VALUES + (22, 2, 1, 'Trash Collector', 365, 6, 0, 150, 150, 150, 0, 0, 0); +INSERT INTO `job_main` (`job_id`, `job_server`, `job_enabled`, `job_name`, `job_pickup`, `job_type`, `job_blip`, `job_colour_r`, `job_colour_g`, `job_colour_b`, `job_whitelist`, `job_blacklist`, `job_walkietalkiefreq`) VALUES + (23, 3, 1, 'Trash Collector', 0, 6, 0, 150, 150, 150, 0, 0, 0); +INSERT INTO `job_main` (`job_id`, `job_server`, `job_enabled`, `job_name`, `job_pickup`, `job_type`, `job_blip`, `job_colour_r`, `job_colour_g`, `job_colour_b`, `job_whitelist`, `job_blacklist`, `job_walkietalkiefreq`) VALUES + (24, 4, 1, 'Trash Collector', 1318, 6, 0, 150, 150, 150, 0, 0, 0); +/*!40000 ALTER TABLE `job_main` ENABLE KEYS */; + +-- Dumping structure for table db24053.job_uniform +CREATE TABLE IF NOT EXISTS `job_uniform` ( + `job_uniform_id` int(11) NOT NULL AUTO_INCREMENT, + `job_uniform_job` int(11) NOT NULL DEFAULT '0', + `job_uniform_skin` int(11) NOT NULL DEFAULT '0', + `job_uniform_enabled` tinyint(1) NOT NULL DEFAULT '0', + `job_uniform_minrank` int(11) NOT NULL DEFAULT '0', + `job_uniform_name` varchar(50) NOT NULL DEFAULT 'Unnamed', + PRIMARY KEY (`job_uniform_id`), + KEY `job_uniform_job` (`job_uniform_job`), + CONSTRAINT `fk_job_uniform_job` FOREIGN KEY (`job_uniform_job`) REFERENCES `job_main` (`job_id`) ON DELETE CASCADE ON UPDATE CASCADE +) ENGINE=InnoDB AUTO_INCREMENT=62 DEFAULT CHARSET=utf8 COMMENT='Jobs - Uniforms'; + +-- Dumping data for table db24053.job_uniform: ~60 rows (approximately) +/*!40000 ALTER TABLE `job_uniform` DISABLE KEYS */; +INSERT INTO `job_uniform` (`job_uniform_id`, `job_uniform_job`, `job_uniform_skin`, `job_uniform_enabled`, `job_uniform_minrank`, `job_uniform_name`) VALUES + (1, 1, 1, 1, 0, 'Police Officer 1'); +INSERT INTO `job_uniform` (`job_uniform_id`, `job_uniform_job`, `job_uniform_skin`, `job_uniform_enabled`, `job_uniform_minrank`, `job_uniform_name`) VALUES + (2, 1, 92, 1, 0, 'Police Officer 2'); +INSERT INTO `job_uniform` (`job_uniform_id`, `job_uniform_job`, `job_uniform_skin`, `job_uniform_enabled`, `job_uniform_minrank`, `job_uniform_name`) VALUES + (3, 2, 1, 1, 0, 'Police Officer 1'); +INSERT INTO `job_uniform` (`job_uniform_id`, `job_uniform_job`, `job_uniform_skin`, `job_uniform_enabled`, `job_uniform_minrank`, `job_uniform_name`) VALUES + (4, 2, 120, 1, 0, 'Officer Lance Vance'); +INSERT INTO `job_uniform` (`job_uniform_id`, `job_uniform_job`, `job_uniform_skin`, `job_uniform_enabled`, `job_uniform_minrank`, `job_uniform_name`) VALUES + (5, 2, 97, 1, 1, 'Detective 1'); +INSERT INTO `job_uniform` (`job_uniform_id`, `job_uniform_job`, `job_uniform_skin`, `job_uniform_enabled`, `job_uniform_minrank`, `job_uniform_name`) VALUES + (6, 2, 98, 1, 1, 'Detective 2'); +INSERT INTO `job_uniform` (`job_uniform_id`, `job_uniform_job`, `job_uniform_skin`, `job_uniform_enabled`, `job_uniform_minrank`, `job_uniform_name`) VALUES + (7, 2, 99, 1, 1, 'Detective 3'); +INSERT INTO `job_uniform` (`job_uniform_id`, `job_uniform_job`, `job_uniform_skin`, `job_uniform_enabled`, `job_uniform_minrank`, `job_uniform_name`) VALUES + (8, 2, 100, 1, 1, 'Detective 4'); +INSERT INTO `job_uniform` (`job_uniform_id`, `job_uniform_job`, `job_uniform_skin`, `job_uniform_enabled`, `job_uniform_minrank`, `job_uniform_name`) VALUES + (9, 2, 101, 1, 1, 'Detective 5'); +INSERT INTO `job_uniform` (`job_uniform_id`, `job_uniform_job`, `job_uniform_skin`, `job_uniform_enabled`, `job_uniform_minrank`, `job_uniform_name`) VALUES + (10, 2, 102, 1, 1, 'Detective 6'); +INSERT INTO `job_uniform` (`job_uniform_id`, `job_uniform_job`, `job_uniform_skin`, `job_uniform_enabled`, `job_uniform_minrank`, `job_uniform_name`) VALUES + (11, 4, 280, 1, 0, 'Los Santos Police Officer'); +INSERT INTO `job_uniform` (`job_uniform_id`, `job_uniform_job`, `job_uniform_skin`, `job_uniform_enabled`, `job_uniform_minrank`, `job_uniform_name`) VALUES + (12, 4, 281, 1, 0, 'San Fierro Police Officer'); +INSERT INTO `job_uniform` (`job_uniform_id`, `job_uniform_job`, `job_uniform_skin`, `job_uniform_enabled`, `job_uniform_minrank`, `job_uniform_name`) VALUES + (13, 4, 282, 1, 0, 'Las Venturas Police Officer'); +INSERT INTO `job_uniform` (`job_uniform_id`, `job_uniform_job`, `job_uniform_skin`, `job_uniform_enabled`, `job_uniform_minrank`, `job_uniform_name`) VALUES + (14, 4, 284, 1, 0, 'Motorcycle Cop'); +INSERT INTO `job_uniform` (`job_uniform_id`, `job_uniform_job`, `job_uniform_skin`, `job_uniform_enabled`, `job_uniform_minrank`, `job_uniform_name`) VALUES + (15, 4, 165, 1, 0, 'Detective 1'); +INSERT INTO `job_uniform` (`job_uniform_id`, `job_uniform_job`, `job_uniform_skin`, `job_uniform_enabled`, `job_uniform_minrank`, `job_uniform_name`) VALUES + (16, 4, 166, 1, 0, 'Detective 2'); +INSERT INTO `job_uniform` (`job_uniform_id`, `job_uniform_job`, `job_uniform_skin`, `job_uniform_enabled`, `job_uniform_minrank`, `job_uniform_name`) VALUES + (17, 4, 285, 1, 2, 'SWAT'); +INSERT INTO `job_uniform` (`job_uniform_id`, `job_uniform_job`, `job_uniform_skin`, `job_uniform_enabled`, `job_uniform_minrank`, `job_uniform_name`) VALUES + (18, 4, 283, 1, 3, 'Sheriff 1'); +INSERT INTO `job_uniform` (`job_uniform_id`, `job_uniform_job`, `job_uniform_skin`, `job_uniform_enabled`, `job_uniform_minrank`, `job_uniform_name`) VALUES + (19, 4, 288, 1, 3, 'Sheriff 2'); +INSERT INTO `job_uniform` (`job_uniform_id`, `job_uniform_job`, `job_uniform_skin`, `job_uniform_enabled`, `job_uniform_minrank`, `job_uniform_name`) VALUES + (20, 4, 265, 1, 0, 'Officer Frank Tenpenny'); +INSERT INTO `job_uniform` (`job_uniform_id`, `job_uniform_job`, `job_uniform_skin`, `job_uniform_enabled`, `job_uniform_minrank`, `job_uniform_name`) VALUES + (21, 4, 266, 1, 0, 'Officer Eddie Pulaski'); +INSERT INTO `job_uniform` (`job_uniform_id`, `job_uniform_job`, `job_uniform_skin`, `job_uniform_enabled`, `job_uniform_minrank`, `job_uniform_name`) VALUES + (22, 4, 267, 1, 0, 'Officer Jimmy Hernandez'); +INSERT INTO `job_uniform` (`job_uniform_id`, `job_uniform_job`, `job_uniform_skin`, `job_uniform_enabled`, `job_uniform_minrank`, `job_uniform_name`) VALUES + (23, 3, -183203150, 1, 0, 'Police Officer 1'); +INSERT INTO `job_uniform` (`job_uniform_id`, `job_uniform_job`, `job_uniform_skin`, `job_uniform_enabled`, `job_uniform_minrank`, `job_uniform_name`) VALUES + (24, 3, -1518937979, 1, 0, 'Police Officer 2'); +INSERT INTO `job_uniform` (`job_uniform_id`, `job_uniform_job`, `job_uniform_skin`, `job_uniform_enabled`, `job_uniform_minrank`, `job_uniform_name`) VALUES + (25, 3, -370395528, 1, 0, 'Fat Police Officer'); +INSERT INTO `job_uniform` (`job_uniform_id`, `job_uniform_job`, `job_uniform_skin`, `job_uniform_enabled`, `job_uniform_minrank`, `job_uniform_name`) VALUES + (26, 3, -999506922, 1, 1, 'Detective 1'); +INSERT INTO `job_uniform` (`job_uniform_id`, `job_uniform_job`, `job_uniform_skin`, `job_uniform_enabled`, `job_uniform_minrank`, `job_uniform_name`) VALUES + (27, 5, 5, 1, 0, 'Paramedic 1'); +INSERT INTO `job_uniform` (`job_uniform_id`, `job_uniform_job`, `job_uniform_skin`, `job_uniform_enabled`, `job_uniform_minrank`, `job_uniform_name`) VALUES + (28, 5, 72, 1, 0, 'Paramedic 2'); +INSERT INTO `job_uniform` (`job_uniform_id`, `job_uniform_job`, `job_uniform_skin`, `job_uniform_enabled`, `job_uniform_minrank`, `job_uniform_name`) VALUES + (29, 5, 73, 1, 0, 'Paramedic 3'); +INSERT INTO `job_uniform` (`job_uniform_id`, `job_uniform_job`, `job_uniform_skin`, `job_uniform_enabled`, `job_uniform_minrank`, `job_uniform_name`) VALUES + (30, 6, 5, 1, 0, 'Paramedic 1'); +INSERT INTO `job_uniform` (`job_uniform_id`, `job_uniform_job`, `job_uniform_skin`, `job_uniform_enabled`, `job_uniform_minrank`, `job_uniform_name`) VALUES + (31, 6, 5, 1, 0, 'Paramedic 1'); +INSERT INTO `job_uniform` (`job_uniform_id`, `job_uniform_job`, `job_uniform_skin`, `job_uniform_enabled`, `job_uniform_minrank`, `job_uniform_name`) VALUES + (32, 7, -1175077216, 1, 0, 'Paramedic 1'); +INSERT INTO `job_uniform` (`job_uniform_id`, `job_uniform_job`, `job_uniform_skin`, `job_uniform_enabled`, `job_uniform_minrank`, `job_uniform_name`) VALUES + (33, 8, 274, 1, 0, 'Paramedic 1'); +INSERT INTO `job_uniform` (`job_uniform_id`, `job_uniform_job`, `job_uniform_skin`, `job_uniform_enabled`, `job_uniform_minrank`, `job_uniform_name`) VALUES + (34, 8, 275, 1, 0, 'Paramedic 2'); +INSERT INTO `job_uniform` (`job_uniform_id`, `job_uniform_job`, `job_uniform_skin`, `job_uniform_enabled`, `job_uniform_minrank`, `job_uniform_name`) VALUES + (35, 8, 276, 1, 0, 'Paramedic 3'); +INSERT INTO `job_uniform` (`job_uniform_id`, `job_uniform_job`, `job_uniform_skin`, `job_uniform_enabled`, `job_uniform_minrank`, `job_uniform_name`) VALUES + (36, 11, -610224615, 1, 0, 'Firefighter'); +INSERT INTO `job_uniform` (`job_uniform_id`, `job_uniform_job`, `job_uniform_skin`, `job_uniform_enabled`, `job_uniform_minrank`, `job_uniform_name`) VALUES + (37, 11, 610888851, 1, 0, 'Fire Chief'); +INSERT INTO `job_uniform` (`job_uniform_id`, `job_uniform_job`, `job_uniform_skin`, `job_uniform_enabled`, `job_uniform_minrank`, `job_uniform_name`) VALUES + (38, 11, 277, 1, 0, 'Firefighter 1'); +INSERT INTO `job_uniform` (`job_uniform_id`, `job_uniform_job`, `job_uniform_skin`, `job_uniform_enabled`, `job_uniform_minrank`, `job_uniform_name`) VALUES + (39, 12, 278, 1, 0, 'Firefighter 2'); +INSERT INTO `job_uniform` (`job_uniform_id`, `job_uniform_job`, `job_uniform_skin`, `job_uniform_enabled`, `job_uniform_minrank`, `job_uniform_name`) VALUES + (40, 12, 279, 1, 0, 'Firefighter 3'); +INSERT INTO `job_uniform` (`job_uniform_id`, `job_uniform_job`, `job_uniform_skin`, `job_uniform_enabled`, `job_uniform_minrank`, `job_uniform_name`) VALUES + (42, 13, 8, 1, 0, 'Taxi Driver 1'); +INSERT INTO `job_uniform` (`job_uniform_id`, `job_uniform_job`, `job_uniform_skin`, `job_uniform_enabled`, `job_uniform_minrank`, `job_uniform_name`) VALUES + (43, 14, 8, 1, 0, 'Taxi Driver 1'); +INSERT INTO `job_uniform` (`job_uniform_id`, `job_uniform_job`, `job_uniform_skin`, `job_uniform_enabled`, `job_uniform_minrank`, `job_uniform_name`) VALUES + (44, 16, 7, 1, 0, 'Taxi Driver 1'); +INSERT INTO `job_uniform` (`job_uniform_id`, `job_uniform_job`, `job_uniform_skin`, `job_uniform_enabled`, `job_uniform_minrank`, `job_uniform_name`) VALUES + (45, 16, 142, 1, 0, 'Taxi Driver 2'); +INSERT INTO `job_uniform` (`job_uniform_id`, `job_uniform_job`, `job_uniform_skin`, `job_uniform_enabled`, `job_uniform_minrank`, `job_uniform_name`) VALUES + (46, 17, 8, 1, 0, 'Bus Driver 1'); +INSERT INTO `job_uniform` (`job_uniform_id`, `job_uniform_job`, `job_uniform_skin`, `job_uniform_enabled`, `job_uniform_minrank`, `job_uniform_name`) VALUES + (47, 18, 8, 1, 0, 'Bus Driver 1'); +INSERT INTO `job_uniform` (`job_uniform_id`, `job_uniform_job`, `job_uniform_skin`, `job_uniform_enabled`, `job_uniform_minrank`, `job_uniform_name`) VALUES + (48, 20, 7, 1, 0, 'Bus Driver 1'); +INSERT INTO `job_uniform` (`job_uniform_id`, `job_uniform_job`, `job_uniform_skin`, `job_uniform_enabled`, `job_uniform_minrank`, `job_uniform_name`) VALUES + (49, 20, 142, 1, 0, 'Bus Driver 2'); +INSERT INTO `job_uniform` (`job_uniform_id`, `job_uniform_job`, `job_uniform_skin`, `job_uniform_enabled`, `job_uniform_minrank`, `job_uniform_name`) VALUES + (50, 21, 53, 1, 0, 'Garbage Collector 1'); +INSERT INTO `job_uniform` (`job_uniform_id`, `job_uniform_job`, `job_uniform_skin`, `job_uniform_enabled`, `job_uniform_minrank`, `job_uniform_name`) VALUES + (51, 21, 54, 1, 0, 'Garbage Collector 2'); +INSERT INTO `job_uniform` (`job_uniform_id`, `job_uniform_job`, `job_uniform_skin`, `job_uniform_enabled`, `job_uniform_minrank`, `job_uniform_name`) VALUES + (52, 22, 53, 1, 0, 'Garbage Collector 1'); +INSERT INTO `job_uniform` (`job_uniform_id`, `job_uniform_job`, `job_uniform_skin`, `job_uniform_enabled`, `job_uniform_minrank`, `job_uniform_name`) VALUES + (53, 22, 54, 1, 0, 'Garbage Collector 2'); +INSERT INTO `job_uniform` (`job_uniform_id`, `job_uniform_job`, `job_uniform_skin`, `job_uniform_enabled`, `job_uniform_minrank`, `job_uniform_name`) VALUES + (54, 24, 16, 1, 0, 'Garbage Collector 1'); +INSERT INTO `job_uniform` (`job_uniform_id`, `job_uniform_job`, `job_uniform_skin`, `job_uniform_enabled`, `job_uniform_minrank`, `job_uniform_name`) VALUES + (55, 23, 1136499716, 1, 0, 'Garbage Collector 1'); +INSERT INTO `job_uniform` (`job_uniform_id`, `job_uniform_job`, `job_uniform_skin`, `job_uniform_enabled`, `job_uniform_minrank`, `job_uniform_name`) VALUES + (56, 19, 134077503, 1, 0, 'Bus Driver 1'); +INSERT INTO `job_uniform` (`job_uniform_id`, `job_uniform_job`, `job_uniform_skin`, `job_uniform_enabled`, `job_uniform_minrank`, `job_uniform_name`) VALUES + (57, 15, 8772846, 1, 0, 'Taxi Driver 1'); +INSERT INTO `job_uniform` (`job_uniform_id`, `job_uniform_job`, `job_uniform_skin`, `job_uniform_enabled`, `job_uniform_minrank`, `job_uniform_name`) VALUES + (58, 3, -89302119, 1, 3, 'State Trooper'); +INSERT INTO `job_uniform` (`job_uniform_id`, `job_uniform_job`, `job_uniform_skin`, `job_uniform_enabled`, `job_uniform_minrank`, `job_uniform_name`) VALUES + (59, 3, -1004762946, 1, 2, 'SWAT'); +INSERT INTO `job_uniform` (`job_uniform_id`, `job_uniform_job`, `job_uniform_skin`, `job_uniform_enabled`, `job_uniform_minrank`, `job_uniform_name`) VALUES + (60, 2, 166, 1, 0, 'Officer Tommy Vercetti'); +INSERT INTO `job_uniform` (`job_uniform_id`, `job_uniform_job`, `job_uniform_skin`, `job_uniform_enabled`, `job_uniform_minrank`, `job_uniform_name`) VALUES + (61, 9, 6, 1, 0, 'Firefighter'); +/*!40000 ALTER TABLE `job_uniform` ENABLE KEYS */; + +-- Dumping structure for table db24053.job_wl +CREATE TABLE IF NOT EXISTS `job_wl` ( + `job_wl_id` int(11) NOT NULL AUTO_INCREMENT, + `job_wl_job` int(11) NOT NULL DEFAULT '0', + `job_wl_sacct` int(11) NOT NULL DEFAULT '0', + `job_wl_who_added` int(11) NOT NULL DEFAULT '0', + `job_wl_when_added` int(11) NOT NULL DEFAULT '0', + `job_wl_enabled` int(11) NOT NULL DEFAULT '1', + PRIMARY KEY (`job_wl_id`), + KEY `job_wl_job` (`job_wl_job`), + KEY `job_wl_sacct` (`job_wl_sacct`), + KEY `job_wl_who_added` (`job_wl_who_added`), + CONSTRAINT `fk_job_wl_admin` FOREIGN KEY (`job_wl_who_added`) REFERENCES `acct_main` (`acct_id`) ON DELETE CASCADE ON UPDATE CASCADE, + CONSTRAINT `fk_job_wl_job` FOREIGN KEY (`job_wl_job`) REFERENCES `job_main` (`job_id`) ON DELETE CASCADE ON UPDATE CASCADE, + CONSTRAINT `fk_job_wl_sacct` FOREIGN KEY (`job_wl_sacct`) REFERENCES `sacct_main` (`sacct_id`) ON DELETE CASCADE ON UPDATE CASCADE +) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Jobs - Whitelist'; + +-- Dumping data for table db24053.job_wl: ~0 rows (approximately) +/*!40000 ALTER TABLE `job_wl` DISABLE KEYS */; +/*!40000 ALTER TABLE `job_wl` ENABLE KEYS */; + +-- Dumping structure for table db24053.log_admin +CREATE TABLE IF NOT EXISTS `log_admin` ( + `log_admin_id` int(11) NOT NULL AUTO_INCREMENT, + `log_admin_target` int(11) NOT NULL DEFAULT '0', + `log_admin_msg` varchar(128) NOT NULL DEFAULT '', + `log_admin_type` int(11) NOT NULL DEFAULT '0', + `log_admin_admin` int(11) NOT NULL DEFAULT '0', + `log_admin_timestamp` int(32) NOT NULL DEFAULT '0', + PRIMARY KEY (`log_admin_id`) +) ENGINE=InnoDB DEFAULT CHARSET=latin1 COMMENT='Log - Admin Actions'; + +-- Dumping data for table db24053.log_admin: ~0 rows (approximately) +/*!40000 ALTER TABLE `log_admin` DISABLE KEYS */; +/*!40000 ALTER TABLE `log_admin` ENABLE KEYS */; + +-- Dumping structure for table db24053.log_chat +CREATE TABLE IF NOT EXISTS `log_chat` ( + `log_chat_id` int(11) NOT NULL AUTO_INCREMENT, + `log_chat_server` int(11) NOT NULL DEFAULT '0', + `log_chat_sacct` int(11) NOT NULL DEFAULT '0', + `log_chat_type` int(11) NOT NULL DEFAULT '0', + `log_chat_msg` varchar(128) NOT NULL DEFAULT '', + `log_chat_timestamp` int(32) NOT NULL DEFAULT '0', + PRIMARY KEY (`log_chat_id`) +) ENGINE=InnoDB DEFAULT CHARSET=latin1 COMMENT='Log - Game Chat'; + +-- Dumping data for table db24053.log_chat: ~0 rows (approximately) +/*!40000 ALTER TABLE `log_chat` DISABLE KEYS */; +/*!40000 ALTER TABLE `log_chat` ENABLE KEYS */; + +-- Dumping structure for table db24053.log_conn +CREATE TABLE IF NOT EXISTS `log_conn` ( + `log_conn_id` int(11) NOT NULL AUTO_INCREMENT, + `log_conn_name` varchar(64) NOT NULL DEFAULT 'Unknown', + `log_conn_server` int(11) NOT NULL DEFAULT '0', + `log_conn_ip` int(11) NOT NULL DEFAULT '0', + `log_conn_when_connect` int(32) NOT NULL DEFAULT '0', + `log_conn_when_disconnect` int(32) NOT NULL DEFAULT '0', + `log_conn_gameversion` int(11) NOT NULL DEFAULT '0', + PRIMARY KEY (`log_conn_id`) +) ENGINE=InnoDB DEFAULT CHARSET=latin1 COMMENT='Log - Connections'; + +-- Dumping data for table db24053.log_conn: ~0 rows (approximately) +/*!40000 ALTER TABLE `log_conn` DISABLE KEYS */; +/*!40000 ALTER TABLE `log_conn` ENABLE KEYS */; + +-- Dumping structure for table db24053.log_death +CREATE TABLE IF NOT EXISTS `log_death` ( + `log_death_id` int(11) NOT NULL AUTO_INCREMENT, + `log_death_server` int(11) NOT NULL DEFAULT '0', + `log_death_who_died` int(11) NOT NULL DEFAULT '0', + `log_death_who_killed` int(11) NOT NULL DEFAULT '0', + `log_death_timestamp` int(32) NOT NULL DEFAULT '0', + `log_death_pedpiece` int(11) NOT NULL DEFAULT '0', + `log_death_weapon` int(11) NOT NULL DEFAULT '0', + PRIMARY KEY (`log_death_id`) +) ENGINE=InnoDB DEFAULT CHARSET=latin1 COMMENT='Log - Deaths'; + +-- Dumping data for table db24053.log_death: ~0 rows (approximately) +/*!40000 ALTER TABLE `log_death` DISABLE KEYS */; +/*!40000 ALTER TABLE `log_death` ENABLE KEYS */; + +-- Dumping structure for table db24053.log_pns +CREATE TABLE IF NOT EXISTS `log_pns` ( + `log_pns_id` int(11) NOT NULL AUTO_INCREMENT, + `log_pns_pns` int(11) DEFAULT '0', + `log_pns_when_used` int(32) DEFAULT '0', + `log_pns_conn` int(11) DEFAULT '0', + `log_pns_veh` int(11) DEFAULT '0', + `log_pns_action` float DEFAULT '0', + `log_pns_paid` int(11) DEFAULT '0', + `log_pns_detail` int(11) DEFAULT '0', + PRIMARY KEY (`log_pns_id`) +) ENGINE=InnoDB DEFAULT CHARSET=latin1 COMMENT='Log - Pay and Spray'; + +-- Dumping data for table db24053.log_pns: ~0 rows (approximately) +/*!40000 ALTER TABLE `log_pns` DISABLE KEYS */; +/*!40000 ALTER TABLE `log_pns` ENABLE KEYS */; + +-- Dumping structure for table db24053.npc_cond +CREATE TABLE IF NOT EXISTS `npc_cond` ( + `npc_cond_id` int(11) NOT NULL AUTO_INCREMENT, + `npc_cond_npc` int(11) NOT NULL DEFAULT '0', + `npc_cond_trig` int(11) NOT NULL DEFAULT '0', + `npc_cond_type` int(11) NOT NULL DEFAULT '0', + `npc_cond_data` varchar(11) NOT NULL DEFAULT '0', + `npc_cond_logic` varchar(11) NOT NULL DEFAULT '0', + `npc_cond_enabled` tinyint(1) NOT NULL DEFAULT '1', + PRIMARY KEY (`npc_cond_id`) +) ENGINE=InnoDB DEFAULT CHARSET=latin1 COMMENT='NPCs - Action Conditions'; + +-- Dumping data for table db24053.npc_cond: ~0 rows (approximately) +/*!40000 ALTER TABLE `npc_cond` DISABLE KEYS */; +/*!40000 ALTER TABLE `npc_cond` ENABLE KEYS */; + +-- Dumping structure for table db24053.npc_main +CREATE TABLE IF NOT EXISTS `npc_main` ( + `npc_id` int(11) NOT NULL AUTO_INCREMENT, + `npc_server` tinyint(2) NOT NULL DEFAULT '0', + `npc_name` varchar(128) NOT NULL DEFAULT '', + `npc_model` int(11) NOT NULL DEFAULT '0', + `npc_type_flags` int(32) NOT NULL DEFAULT '0', + `npc_ped_health` int(4) NOT NULL DEFAULT '100', + `npc_ped_armour` int(4) NOT NULL DEFAULT '0', + `npc_ped_threats` int(32) NOT NULL DEFAULT '0', + `npc_ped_heedthreats` tinyint(1) NOT NULL DEFAULT '0', + `npc_ped_stay` tinyint(1) NOT NULL DEFAULT '1', + `npc_ped_walkstyle` int(11) NOT NULL DEFAULT '0', + `npc_owner_type` int(11) DEFAULT NULL, + `npc_owner_id` int(11) DEFAULT NULL, + PRIMARY KEY (`npc_id`) +) ENGINE=InnoDB DEFAULT CHARSET=latin1 COMMENT='NPCs'; + +-- Dumping data for table db24053.npc_main: ~0 rows (approximately) +/*!40000 ALTER TABLE `npc_main` DISABLE KEYS */; +/*!40000 ALTER TABLE `npc_main` ENABLE KEYS */; + +-- Dumping structure for table db24053.npc_resp +CREATE TABLE IF NOT EXISTS `npc_resp` ( + `npc_resp_id` int(11) NOT NULL AUTO_INCREMENT, + `npc_resp_npc` int(11) NOT NULL DEFAULT '0', + `npc_resp_type` int(11) NOT NULL DEFAULT '0', + `npc_resp_trig` int(11) NOT NULL DEFAULT '0', + `npc_resp_data` varchar(11) NOT NULL DEFAULT '0', + `npc_resp_logic` varchar(11) NOT NULL DEFAULT '0', + `npc_resp_enabled` tinyint(1) NOT NULL DEFAULT '1', + PRIMARY KEY (`npc_resp_id`) +) ENGINE=InnoDB DEFAULT CHARSET=latin1 COMMENT='NPCs - Action Responses'; + +-- Dumping data for table db24053.npc_resp: ~0 rows (approximately) +/*!40000 ALTER TABLE `npc_resp` DISABLE KEYS */; +/*!40000 ALTER TABLE `npc_resp` ENABLE KEYS */; + +-- Dumping structure for table db24053.npc_trig +CREATE TABLE IF NOT EXISTS `npc_trig` ( + `npc_trig_id` int(11) NOT NULL AUTO_INCREMENT, + `npc_trig_npc` int(11) NOT NULL DEFAULT '0', + `npc_trig_type` int(11) NOT NULL DEFAULT '0', + `npc_trig_enabled` tinyint(1) NOT NULL DEFAULT '1', + PRIMARY KEY (`npc_trig_id`) +) ENGINE=InnoDB DEFAULT CHARSET=latin1 COMMENT='NPCs - Action Triggers'; + +-- Dumping data for table db24053.npc_trig: ~0 rows (approximately) +/*!40000 ALTER TABLE `npc_trig` DISABLE KEYS */; +/*!40000 ALTER TABLE `npc_trig` ENABLE KEYS */; + +-- Dumping structure for table db24053.radio_main +CREATE TABLE IF NOT EXISTS `radio_main` ( + `radio_id` smallint(6) NOT NULL DEFAULT '0', + `radio_name` varchar(64) NOT NULL DEFAULT '', + `radio_url` text NOT NULL, + `radio_enabled` tinyint(4) NOT NULL DEFAULT '0' +) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Radio Stations'; + +-- Dumping data for table db24053.radio_main: ~0 rows (approximately) +/*!40000 ALTER TABLE `radio_main` DISABLE KEYS */; +/*!40000 ALTER TABLE `radio_main` ENABLE KEYS */; + +-- Dumping structure for table db24053.sacct_main +CREATE TABLE IF NOT EXISTS `sacct_main` ( + `sacct_id` int(11) NOT NULL AUTO_INCREMENT, + `sacct_acct` int(11) NOT NULL DEFAULT '0', + `sacct_server` int(11) NOT NULL DEFAULT '0', + `sacct_name_first` varchar(50) CHARACTER SET utf16 COLLATE utf16_unicode_ci NOT NULL DEFAULT '', + `sacct_name_last` varchar(50) CHARACTER SET utf16 COLLATE utf16_unicode_ci NOT NULL DEFAULT '', + `sacct_name_middle` varchar(50) CHARACTER SET utf16 COLLATE utf16_unicode_ci NOT NULL DEFAULT '', + `sacct_when_born` varchar(50) NOT NULL DEFAULT '', + `sacct_origin` varchar(50) NOT NULL DEFAULT '', + `sacct_job` int(11) NOT NULL DEFAULT '0', + `sacct_clan` int(11) NOT NULL DEFAULT '0', + `sacct_clan_rank` int(11) NOT NULL DEFAULT '0', + `sacct_clan_flags` int(11) NOT NULL DEFAULT '0', + `sacct_clan_title` varchar(32) NOT NULL DEFAULT '', + `sacct_last_ip` int(11) NOT NULL DEFAULT '0', + `sacct_last_uid` varchar(128) NOT NULL DEFAULT '', + `sacct_total_time` int(11) NOT NULL DEFAULT '0', + `sacct_pos_x` float NOT NULL DEFAULT '0', + `sacct_pos_y` float NOT NULL DEFAULT '0', + `sacct_pos_z` float NOT NULL DEFAULT '0', + `sacct_angle` float NOT NULL DEFAULT '0', + `sacct_cash` int(11) NOT NULL DEFAULT '0', + `sacct_bank` int(11) NOT NULL DEFAULT '0', + `sacct_skin` int(11) NOT NULL DEFAULT '0', + `sacct_health` int(11) NOT NULL DEFAULT '0', + `sacct_armour` int(11) NOT NULL DEFAULT '0', + `sacct_licenses` int(11) NOT NULL DEFAULT '0', + `sacct_last_session` int(11) NOT NULL DEFAULT '0', + `sacct_when_made` int(11) NOT NULL DEFAULT '0', + `sacct_when_lastlogin` int(11) NOT NULL DEFAULT '0', + `sacct_arrest_state` int(11) NOT NULL DEFAULT '0', + `sacct_arrest_time` int(11) NOT NULL DEFAULT '0', + `sacct_iv_head_model` int(11) NOT NULL DEFAULT '0', + `sacct_iv_head_texture` int(11) NOT NULL DEFAULT '0', + `sacct_iv_upper_model` int(11) NOT NULL DEFAULT '0', + `sacct_iv_upper_texture` int(11) NOT NULL DEFAULT '0', + `sacct_iv_lower_model` int(11) NOT NULL DEFAULT '0', + `sacct_iv_lower_texture` int(11) NOT NULL DEFAULT '0', + `sacct_iv_feet_model` int(11) NOT NULL DEFAULT '0', + `sacct_iv_feet_texture` int(11) NOT NULL DEFAULT '0', + `sacct_iv_hands_model` int(11) NOT NULL DEFAULT '0', + `sacct_iv_hands_texture` int(11) NOT NULL DEFAULT '0', + `sacct_int` int(11) NOT NULL DEFAULT '0', + `sacct_vw` int(11) NOT NULL DEFAULT '0', + `sacct_needs_setup` int(11) NOT NULL DEFAULT '0', + `sacct_scale_x` float NOT NULL DEFAULT '1', + `sacct_scale_y` float NOT NULL DEFAULT '1', + `sacct_scale_z` float NOT NULL DEFAULT '1', + PRIMARY KEY (`sacct_id`) +) ENGINE=InnoDB AUTO_INCREMENT=17 DEFAULT CHARSET=latin1 COMMENT='Sub Accounts (Characters)'; + +-- Dumping data for table db24053.sacct_main: ~13 rows (approximately) +/*!40000 ALTER TABLE `sacct_main` DISABLE KEYS */; +INSERT INTO `sacct_main` (`sacct_id`, `sacct_acct`, `sacct_server`, `sacct_name_first`, `sacct_name_last`, `sacct_name_middle`, `sacct_when_born`, `sacct_origin`, `sacct_job`, `sacct_clan`, `sacct_clan_rank`, `sacct_clan_flags`, `sacct_clan_title`, `sacct_last_ip`, `sacct_last_uid`, `sacct_total_time`, `sacct_pos_x`, `sacct_pos_y`, `sacct_pos_z`, `sacct_angle`, `sacct_cash`, `sacct_bank`, `sacct_skin`, `sacct_health`, `sacct_armour`, `sacct_licenses`, `sacct_last_session`, `sacct_when_made`, `sacct_when_lastlogin`, `sacct_arrest_state`, `sacct_arrest_time`, `sacct_iv_head_model`, `sacct_iv_head_texture`, `sacct_iv_upper_model`, `sacct_iv_upper_texture`, `sacct_iv_lower_model`, `sacct_iv_lower_texture`, `sacct_iv_feet_model`, `sacct_iv_feet_texture`, `sacct_iv_hands_model`, `sacct_iv_hands_texture`, `sacct_int`, `sacct_vw`, `sacct_needs_setup`, `sacct_scale_x`, `sacct_scale_y`, `sacct_scale_z`) VALUES + (1, 1, 1, 'Ryan', 'Stokes', '', '3/6/1990', 'San Fierro', 1, 0, 0, 0, '', 0, '', 0, 1142.9, -676.239, 14.9727, 0.646766, 0, 0, 109, 100, 0, 0, 0, 1610246083, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1.5, 1.5, 1.5); +INSERT INTO `sacct_main` (`sacct_id`, `sacct_acct`, `sacct_server`, `sacct_name_first`, `sacct_name_last`, `sacct_name_middle`, `sacct_when_born`, `sacct_origin`, `sacct_job`, `sacct_clan`, `sacct_clan_rank`, `sacct_clan_flags`, `sacct_clan_title`, `sacct_last_ip`, `sacct_last_uid`, `sacct_total_time`, `sacct_pos_x`, `sacct_pos_y`, `sacct_pos_z`, `sacct_angle`, `sacct_cash`, `sacct_bank`, `sacct_skin`, `sacct_health`, `sacct_armour`, `sacct_licenses`, `sacct_last_session`, `sacct_when_made`, `sacct_when_lastlogin`, `sacct_arrest_state`, `sacct_arrest_time`, `sacct_iv_head_model`, `sacct_iv_head_texture`, `sacct_iv_upper_model`, `sacct_iv_upper_texture`, `sacct_iv_lower_model`, `sacct_iv_lower_texture`, `sacct_iv_feet_model`, `sacct_iv_feet_texture`, `sacct_iv_hands_model`, `sacct_iv_hands_texture`, `sacct_int`, `sacct_vw`, `sacct_needs_setup`, `sacct_scale_x`, `sacct_scale_y`, `sacct_scale_z`) VALUES + (2, 2, 1, 'Maxle', 'Face', '', '6/7/2011', 'Las Venturas', 0, 0, 0, 0, '', 0, '', 0, 280.516, -1057.41, 26.1682, 0.0775859, 1000, 0, 33, 100, 0, 0, 0, 1610246162, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1); +INSERT INTO `sacct_main` (`sacct_id`, `sacct_acct`, `sacct_server`, `sacct_name_first`, `sacct_name_last`, `sacct_name_middle`, `sacct_when_born`, `sacct_origin`, `sacct_job`, `sacct_clan`, `sacct_clan_rank`, `sacct_clan_flags`, `sacct_clan_title`, `sacct_last_ip`, `sacct_last_uid`, `sacct_total_time`, `sacct_pos_x`, `sacct_pos_y`, `sacct_pos_z`, `sacct_angle`, `sacct_cash`, `sacct_bank`, `sacct_skin`, `sacct_health`, `sacct_armour`, `sacct_licenses`, `sacct_last_session`, `sacct_when_made`, `sacct_when_lastlogin`, `sacct_arrest_state`, `sacct_arrest_time`, `sacct_iv_head_model`, `sacct_iv_head_texture`, `sacct_iv_upper_model`, `sacct_iv_upper_texture`, `sacct_iv_lower_model`, `sacct_iv_lower_texture`, `sacct_iv_feet_model`, `sacct_iv_feet_texture`, `sacct_iv_hands_model`, `sacct_iv_hands_texture`, `sacct_int`, `sacct_vw`, `sacct_needs_setup`, `sacct_scale_x`, `sacct_scale_y`, `sacct_scale_z`) VALUES + (3, 3, 1, 'Peter', 'Berett', '', '20/1/1992', 'San Andreas', 0, 0, 0, 0, '', 0, '', 0, 1312.31, -1016.42, 14.4717, 2.5633, 0, 0, 10, 100, 0, 0, 0, 1610247697, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1); +INSERT INTO `sacct_main` (`sacct_id`, `sacct_acct`, `sacct_server`, `sacct_name_first`, `sacct_name_last`, `sacct_name_middle`, `sacct_when_born`, `sacct_origin`, `sacct_job`, `sacct_clan`, `sacct_clan_rank`, `sacct_clan_flags`, `sacct_clan_title`, `sacct_last_ip`, `sacct_last_uid`, `sacct_total_time`, `sacct_pos_x`, `sacct_pos_y`, `sacct_pos_z`, `sacct_angle`, `sacct_cash`, `sacct_bank`, `sacct_skin`, `sacct_health`, `sacct_armour`, `sacct_licenses`, `sacct_last_session`, `sacct_when_made`, `sacct_when_lastlogin`, `sacct_arrest_state`, `sacct_arrest_time`, `sacct_iv_head_model`, `sacct_iv_head_texture`, `sacct_iv_upper_model`, `sacct_iv_upper_texture`, `sacct_iv_lower_model`, `sacct_iv_lower_texture`, `sacct_iv_feet_model`, `sacct_iv_feet_texture`, `sacct_iv_hands_model`, `sacct_iv_hands_texture`, `sacct_int`, `sacct_vw`, `sacct_needs_setup`, `sacct_scale_x`, `sacct_scale_y`, `sacct_scale_z`) VALUES + (4, 4, 1, 'Ryan', 'Nashton', '', '30/8/1990', 'Bone County', 0, 0, 0, 0, '', 0, '', 0, 1140.98, -677.149, 14.9727, 0.224663, 1000, 0, 109, 100, 0, 0, 0, 1610251928, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1.5, 1.5, 1.5); +INSERT INTO `sacct_main` (`sacct_id`, `sacct_acct`, `sacct_server`, `sacct_name_first`, `sacct_name_last`, `sacct_name_middle`, `sacct_when_born`, `sacct_origin`, `sacct_job`, `sacct_clan`, `sacct_clan_rank`, `sacct_clan_flags`, `sacct_clan_title`, `sacct_last_ip`, `sacct_last_uid`, `sacct_total_time`, `sacct_pos_x`, `sacct_pos_y`, `sacct_pos_z`, `sacct_angle`, `sacct_cash`, `sacct_bank`, `sacct_skin`, `sacct_health`, `sacct_armour`, `sacct_licenses`, `sacct_last_session`, `sacct_when_made`, `sacct_when_lastlogin`, `sacct_arrest_state`, `sacct_arrest_time`, `sacct_iv_head_model`, `sacct_iv_head_texture`, `sacct_iv_upper_model`, `sacct_iv_upper_texture`, `sacct_iv_lower_model`, `sacct_iv_lower_texture`, `sacct_iv_feet_model`, `sacct_iv_feet_texture`, `sacct_iv_hands_model`, `sacct_iv_hands_texture`, `sacct_int`, `sacct_vw`, `sacct_needs_setup`, `sacct_scale_x`, `sacct_scale_y`, `sacct_scale_z`) VALUES + (5, 1, 4, 'Tom', 'Willard', '', '01/01/1901', 'Liberty City', 4, 0, 0, 0, '', 0, '', 0, 1552.16, -1675.65, 16.1679, 1.51539, 1000, 0, 26, 100, 0, 0, 0, 1610552381, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1); +INSERT INTO `sacct_main` (`sacct_id`, `sacct_acct`, `sacct_server`, `sacct_name_first`, `sacct_name_last`, `sacct_name_middle`, `sacct_when_born`, `sacct_origin`, `sacct_job`, `sacct_clan`, `sacct_clan_rank`, `sacct_clan_flags`, `sacct_clan_title`, `sacct_last_ip`, `sacct_last_uid`, `sacct_total_time`, `sacct_pos_x`, `sacct_pos_y`, `sacct_pos_z`, `sacct_angle`, `sacct_cash`, `sacct_bank`, `sacct_skin`, `sacct_health`, `sacct_armour`, `sacct_licenses`, `sacct_last_session`, `sacct_when_made`, `sacct_when_lastlogin`, `sacct_arrest_state`, `sacct_arrest_time`, `sacct_iv_head_model`, `sacct_iv_head_texture`, `sacct_iv_upper_model`, `sacct_iv_upper_texture`, `sacct_iv_lower_model`, `sacct_iv_lower_texture`, `sacct_iv_feet_model`, `sacct_iv_feet_texture`, `sacct_iv_hands_model`, `sacct_iv_hands_texture`, `sacct_int`, `sacct_vw`, `sacct_needs_setup`, `sacct_scale_x`, `sacct_scale_y`, `sacct_scale_z`) VALUES + (7, 1, 2, 'Ryan', 'Nashton', '', '7/9/1989', 'Los Santos', 0, 0, 0, 0, '', 0, '', 0, -708.918, 179.315, 11.0712, 2.94625, 1000, 0, 94, 100, 0, 0, 0, 1610682051, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1); +INSERT INTO `sacct_main` (`sacct_id`, `sacct_acct`, `sacct_server`, `sacct_name_first`, `sacct_name_last`, `sacct_name_middle`, `sacct_when_born`, `sacct_origin`, `sacct_job`, `sacct_clan`, `sacct_clan_rank`, `sacct_clan_flags`, `sacct_clan_title`, `sacct_last_ip`, `sacct_last_uid`, `sacct_total_time`, `sacct_pos_x`, `sacct_pos_y`, `sacct_pos_z`, `sacct_angle`, `sacct_cash`, `sacct_bank`, `sacct_skin`, `sacct_health`, `sacct_armour`, `sacct_licenses`, `sacct_last_session`, `sacct_when_made`, `sacct_when_lastlogin`, `sacct_arrest_state`, `sacct_arrest_time`, `sacct_iv_head_model`, `sacct_iv_head_texture`, `sacct_iv_upper_model`, `sacct_iv_upper_texture`, `sacct_iv_lower_model`, `sacct_iv_lower_texture`, `sacct_iv_feet_model`, `sacct_iv_feet_texture`, `sacct_iv_hands_model`, `sacct_iv_hands_texture`, `sacct_int`, `sacct_vw`, `sacct_needs_setup`, `sacct_scale_x`, `sacct_scale_y`, `sacct_scale_z`) VALUES + (8, 1, 4, 'Takeshi', 'Mikio', '', '01/01/1901', 'Liberty City', 0, 0, 0, 0, '', 0, '', 0, 1632.49, -2331.96, 13.547, -0.005, 1000, 0, 26, 100, 0, 0, 0, 1611088103, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1); +INSERT INTO `sacct_main` (`sacct_id`, `sacct_acct`, `sacct_server`, `sacct_name_first`, `sacct_name_last`, `sacct_name_middle`, `sacct_when_born`, `sacct_origin`, `sacct_job`, `sacct_clan`, `sacct_clan_rank`, `sacct_clan_flags`, `sacct_clan_title`, `sacct_last_ip`, `sacct_last_uid`, `sacct_total_time`, `sacct_pos_x`, `sacct_pos_y`, `sacct_pos_z`, `sacct_angle`, `sacct_cash`, `sacct_bank`, `sacct_skin`, `sacct_health`, `sacct_armour`, `sacct_licenses`, `sacct_last_session`, `sacct_when_made`, `sacct_when_lastlogin`, `sacct_arrest_state`, `sacct_arrest_time`, `sacct_iv_head_model`, `sacct_iv_head_texture`, `sacct_iv_upper_model`, `sacct_iv_upper_texture`, `sacct_iv_lower_model`, `sacct_iv_lower_texture`, `sacct_iv_feet_model`, `sacct_iv_feet_texture`, `sacct_iv_hands_model`, `sacct_iv_hands_texture`, `sacct_int`, `sacct_vw`, `sacct_needs_setup`, `sacct_scale_x`, `sacct_scale_y`, `sacct_scale_z`) VALUES + (9, 1, 2, 'Toni', 'Salieri', '', '26/7/1990', 'Liberty City', 0, 0, 0, 0, '', 0, '', 0, -708.918, 179.315, 11.0712, 2.94625, 1000, 0, 115, 100, 0, 0, 0, 1611526552, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1); +INSERT INTO `sacct_main` (`sacct_id`, `sacct_acct`, `sacct_server`, `sacct_name_first`, `sacct_name_last`, `sacct_name_middle`, `sacct_when_born`, `sacct_origin`, `sacct_job`, `sacct_clan`, `sacct_clan_rank`, `sacct_clan_flags`, `sacct_clan_title`, `sacct_last_ip`, `sacct_last_uid`, `sacct_total_time`, `sacct_pos_x`, `sacct_pos_y`, `sacct_pos_z`, `sacct_angle`, `sacct_cash`, `sacct_bank`, `sacct_skin`, `sacct_health`, `sacct_armour`, `sacct_licenses`, `sacct_last_session`, `sacct_when_made`, `sacct_when_lastlogin`, `sacct_arrest_state`, `sacct_arrest_time`, `sacct_iv_head_model`, `sacct_iv_head_texture`, `sacct_iv_upper_model`, `sacct_iv_upper_texture`, `sacct_iv_lower_model`, `sacct_iv_lower_texture`, `sacct_iv_feet_model`, `sacct_iv_feet_texture`, `sacct_iv_hands_model`, `sacct_iv_hands_texture`, `sacct_int`, `sacct_vw`, `sacct_needs_setup`, `sacct_scale_x`, `sacct_scale_y`, `sacct_scale_z`) VALUES + (11, 9, 1, 'Jack', 'Powell', '', '1/1/2000', 'Liberty City', 0, 0, 0, 0, '', 0, '', 0, 1038.4, -666.7, 14.97, 1, 1000, 0, 12, 100, 0, 0, 0, 1613340636, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1); +INSERT INTO `sacct_main` (`sacct_id`, `sacct_acct`, `sacct_server`, `sacct_name_first`, `sacct_name_last`, `sacct_name_middle`, `sacct_when_born`, `sacct_origin`, `sacct_job`, `sacct_clan`, `sacct_clan_rank`, `sacct_clan_flags`, `sacct_clan_title`, `sacct_last_ip`, `sacct_last_uid`, `sacct_total_time`, `sacct_pos_x`, `sacct_pos_y`, `sacct_pos_z`, `sacct_angle`, `sacct_cash`, `sacct_bank`, `sacct_skin`, `sacct_health`, `sacct_armour`, `sacct_licenses`, `sacct_last_session`, `sacct_when_made`, `sacct_when_lastlogin`, `sacct_arrest_state`, `sacct_arrest_time`, `sacct_iv_head_model`, `sacct_iv_head_texture`, `sacct_iv_upper_model`, `sacct_iv_upper_texture`, `sacct_iv_lower_model`, `sacct_iv_lower_texture`, `sacct_iv_feet_model`, `sacct_iv_feet_texture`, `sacct_iv_hands_model`, `sacct_iv_hands_texture`, `sacct_int`, `sacct_vw`, `sacct_needs_setup`, `sacct_scale_x`, `sacct_scale_y`, `sacct_scale_z`) VALUES + (12, 9, 4, 'Jack', 'Powell', '', '01/01/1901', 'Liberty City', 0, 0, 0, 0, '', 0, '', 0, 1632.49, -2331.96, 13.547, -0.005, 1000, 0, 26, 100, 0, 0, 0, 1613341663, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1); +INSERT INTO `sacct_main` (`sacct_id`, `sacct_acct`, `sacct_server`, `sacct_name_first`, `sacct_name_last`, `sacct_name_middle`, `sacct_when_born`, `sacct_origin`, `sacct_job`, `sacct_clan`, `sacct_clan_rank`, `sacct_clan_flags`, `sacct_clan_title`, `sacct_last_ip`, `sacct_last_uid`, `sacct_total_time`, `sacct_pos_x`, `sacct_pos_y`, `sacct_pos_z`, `sacct_angle`, `sacct_cash`, `sacct_bank`, `sacct_skin`, `sacct_health`, `sacct_armour`, `sacct_licenses`, `sacct_last_session`, `sacct_when_made`, `sacct_when_lastlogin`, `sacct_arrest_state`, `sacct_arrest_time`, `sacct_iv_head_model`, `sacct_iv_head_texture`, `sacct_iv_upper_model`, `sacct_iv_upper_texture`, `sacct_iv_lower_model`, `sacct_iv_lower_texture`, `sacct_iv_feet_model`, `sacct_iv_feet_texture`, `sacct_iv_hands_model`, `sacct_iv_hands_texture`, `sacct_int`, `sacct_vw`, `sacct_needs_setup`, `sacct_scale_x`, `sacct_scale_y`, `sacct_scale_z`) VALUES + (13, 2, 4, 'Maxle', 'Face', '', '01/01/1901', 'Liberty City', 0, 0, 0, 0, '', 0, '', 0, 1632.49, -2331.96, 13.547, -0.005, 1000, 0, 26, 100, 0, 0, 0, 1613341696, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1); +INSERT INTO `sacct_main` (`sacct_id`, `sacct_acct`, `sacct_server`, `sacct_name_first`, `sacct_name_last`, `sacct_name_middle`, `sacct_when_born`, `sacct_origin`, `sacct_job`, `sacct_clan`, `sacct_clan_rank`, `sacct_clan_flags`, `sacct_clan_title`, `sacct_last_ip`, `sacct_last_uid`, `sacct_total_time`, `sacct_pos_x`, `sacct_pos_y`, `sacct_pos_z`, `sacct_angle`, `sacct_cash`, `sacct_bank`, `sacct_skin`, `sacct_health`, `sacct_armour`, `sacct_licenses`, `sacct_last_session`, `sacct_when_made`, `sacct_when_lastlogin`, `sacct_arrest_state`, `sacct_arrest_time`, `sacct_iv_head_model`, `sacct_iv_head_texture`, `sacct_iv_upper_model`, `sacct_iv_upper_texture`, `sacct_iv_lower_model`, `sacct_iv_lower_texture`, `sacct_iv_feet_model`, `sacct_iv_feet_texture`, `sacct_iv_hands_model`, `sacct_iv_hands_texture`, `sacct_int`, `sacct_vw`, `sacct_needs_setup`, `sacct_scale_x`, `sacct_scale_y`, `sacct_scale_z`) VALUES + (15, 1, 3, 'Takeshi', 'Mikio', '', '24/6/1991', 'Las Venturas', 0, 0, 0, 0, '', 0, '', 0, 2364.28, 387.27, 6.085, 2.434, 1000, 0, -1084007777, 100, 0, 0, 0, 1613344317, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1); +INSERT INTO `sacct_main` (`sacct_id`, `sacct_acct`, `sacct_server`, `sacct_name_first`, `sacct_name_last`, `sacct_name_middle`, `sacct_when_born`, `sacct_origin`, `sacct_job`, `sacct_clan`, `sacct_clan_rank`, `sacct_clan_flags`, `sacct_clan_title`, `sacct_last_ip`, `sacct_last_uid`, `sacct_total_time`, `sacct_pos_x`, `sacct_pos_y`, `sacct_pos_z`, `sacct_angle`, `sacct_cash`, `sacct_bank`, `sacct_skin`, `sacct_health`, `sacct_armour`, `sacct_licenses`, `sacct_last_session`, `sacct_when_made`, `sacct_when_lastlogin`, `sacct_arrest_state`, `sacct_arrest_time`, `sacct_iv_head_model`, `sacct_iv_head_texture`, `sacct_iv_upper_model`, `sacct_iv_upper_texture`, `sacct_iv_lower_model`, `sacct_iv_lower_texture`, `sacct_iv_feet_model`, `sacct_iv_feet_texture`, `sacct_iv_hands_model`, `sacct_iv_hands_texture`, `sacct_int`, `sacct_vw`, `sacct_needs_setup`, `sacct_scale_x`, `sacct_scale_y`, `sacct_scale_z`) VALUES + (16, 2, 3, 'Maxle', 'Face', '', '4/1/2000', 'San Andreas', 0, 0, 0, 0, '', 0, '', 0, 2364.28, 387.27, 6.085, 2.434, 1000, 0, -999506922, 100, 0, 0, 0, 1613344854, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1); +/*!40000 ALTER TABLE `sacct_main` ENABLE KEYS */; + +-- Dumping structure for table db24053.sacct_pay +CREATE TABLE IF NOT EXISTS `sacct_pay` ( + `sacct_pay_id` int(11) NOT NULL AUTO_INCREMENT, + `sacct_pay_server` int(11) NOT NULL DEFAULT '0', + `sacct_pay_from_sacct_id` int(11) NOT NULL DEFAULT '0', + `sacct_pay_to_sacct_id` int(11) NOT NULL DEFAULT '0', + `sacct_pay_amount` int(11) NOT NULL DEFAULT '0', + `sacct_pay_when` int(32) NOT NULL DEFAULT '0', + `sacct_pay_pos_x` float NOT NULL DEFAULT '0', + `sacct_pay_pos_y` float NOT NULL DEFAULT '0', + `sacct_pay_pos_z` float NOT NULL DEFAULT '0', + PRIMARY KEY (`sacct_pay_id`) +) ENGINE=InnoDB DEFAULT CHARSET=latin1 COMMENT='Sub Accounts - Cash Exchanges'; + +-- Dumping data for table db24053.sacct_pay: ~0 rows (approximately) +/*!40000 ALTER TABLE `sacct_pay` DISABLE KEYS */; +/*!40000 ALTER TABLE `sacct_pay` ENABLE KEYS */; + +-- Dumping structure for table db24053.sacct_stat +CREATE TABLE IF NOT EXISTS `sacct_stat` ( + `sacct_stat_id` int(32) NOT NULL DEFAULT '0', + `sacct_stat_sacct` int(32) NOT NULL DEFAULT '0', + `sacct_stat_max_kill_streak` int(32) NOT NULL DEFAULT '0', + `sacct_stat_furthest_headshot` float NOT NULL DEFAULT '0', + `sacct_stat_packages_picked` int(32) NOT NULL DEFAULT '0', + `sacct_stat_health_picked` int(32) NOT NULL DEFAULT '0', + `sacct_stat_weapons_picked` int(32) NOT NULL DEFAULT '0', + `sacct_stat_armour_picked` int(32) NOT NULL DEFAULT '0', + `sacct_stat_distance_foot` float NOT NULL DEFAULT '0', + `sacct_stat_distance_car` float NOT NULL DEFAULT '0', + `sacct_stat_distance_boat` float NOT NULL DEFAULT '0', + `sacct_stat_distance_plane` float NOT NULL DEFAULT '0', + `sacct_stat_longest_server_time` int(32) NOT NULL DEFAULT '0', + `sacct_stat_veh_resprays` int(32) NOT NULL DEFAULT '0', + `sacct_stat_wanted_veh_resprays` int(32) NOT NULL DEFAULT '0', + `sacct_stat_spent_on_weapons` int(32) NOT NULL DEFAULT '0', + `sacct_stat_weapons_purchased` int(32) NOT NULL DEFAULT '0', + `sacct_stat_businesses_purchased` int(32) NOT NULL DEFAULT '0', + `sacct_stat_houses_purchased` int(32) NOT NULL DEFAULT '0', + `sacct_stat_times_busted` int(32) NOT NULL DEFAULT '0', + `sacct_stat_stars_obtained` int(32) NOT NULL DEFAULT '0', + `sacct_stat_stars_evaded` int(32) NOT NULL DEFAULT '0', + `sacct_stat_highest_wanted_level` int(32) NOT NULL DEFAULT '0', + PRIMARY KEY (`sacct_stat_id`) +) ENGINE=InnoDB DEFAULT CHARSET=latin1 COMMENT='Subaccounts - Stats'; + +-- Dumping data for table db24053.sacct_stat: ~0 rows (approximately) +/*!40000 ALTER TABLE `sacct_stat` DISABLE KEYS */; +/*!40000 ALTER TABLE `sacct_stat` ENABLE KEYS */; + +-- Dumping structure for table db24053.sus_main +CREATE TABLE IF NOT EXISTS `sus_main` ( + `sus_id` int(11) NOT NULL AUTO_INCREMENT, + `sus_server` tinyint(2) NOT NULL DEFAULT '0', + `sus_suspect` int(11) NOT NULL DEFAULT '0', + `sus_officer` int(11) NOT NULL DEFAULT '0', + `sus_minutes` int(11) NOT NULL DEFAULT '0', + `sus_reason` varchar(128) NOT NULL DEFAULT '', + `sus_state` int(11) NOT NULL DEFAULT '0', + PRIMARY KEY (`sus_id`) +) ENGINE=InnoDB DEFAULT CHARSET=latin1 COMMENT='Crimes'; + +-- Dumping data for table db24053.sus_main: ~0 rows (approximately) +/*!40000 ALTER TABLE `sus_main` DISABLE KEYS */; +/*!40000 ALTER TABLE `sus_main` ENABLE KEYS */; + +-- Dumping structure for table db24053.svr_main +CREATE TABLE IF NOT EXISTS `svr_main` ( + `svr_id` int(11) NOT NULL AUTO_INCREMENT, + `svr_name` varchar(50) NOT NULL DEFAULT '0', + `svr_game` int(11) NOT NULL DEFAULT '0', + `svr_port` int(11) NOT NULL DEFAULT '0', + `svr_password` varchar(50) NOT NULL DEFAULT '0', + `svr_start_time_hour` int(11) NOT NULL DEFAULT '0', + `svr_start_time_min` int(11) NOT NULL DEFAULT '0', + `svr_start_weather` int(11) NOT NULL DEFAULT '0', + `svr_start_snow_falling` tinyint(1) NOT NULL DEFAULT '0', + `svr_start_snow_ground` tinyint(1) NOT NULL DEFAULT '0', + `svr_newchar_pos_x` float NOT NULL DEFAULT '0', + `svr_newchar_pos_y` float NOT NULL DEFAULT '0', + `svr_newchar_pos_z` float NOT NULL DEFAULT '0', + `svr_newchar_rot_z` float NOT NULL DEFAULT '0', + `svr_newchar_money` int(11) NOT NULL DEFAULT '0', + `svr_newchar_bank` int(11) NOT NULL DEFAULT '0', + `svr_newchar_skin` int(11) NOT NULL DEFAULT '0', + `svr_manager` int(11) NOT NULL DEFAULT '0', + `svr_connectcam_pos_x` float NOT NULL DEFAULT '0', + `svr_connectcam_pos_y` float NOT NULL DEFAULT '0', + `svr_connectcam_pos_z` float NOT NULL DEFAULT '0', + `svr_connectcam_lookat_x` float NOT NULL DEFAULT '0', + `svr_connectcam_lookat_y` float NOT NULL DEFAULT '0', + `svr_connectcam_lookat_z` float NOT NULL DEFAULT '0', + `svr_gui` tinyint(1) NOT NULL DEFAULT '1', + `svr_gui_col1_r` smallint(6) NOT NULL DEFAULT '200', + `svr_gui_col1_g` smallint(6) NOT NULL DEFAULT '200', + `svr_gui_col1_b` smallint(6) NOT NULL DEFAULT '200', + `svr_logo` tinyint(1) NOT NULL DEFAULT '1', + `svr_ac_enabled` tinyint(1) NOT NULL DEFAULT '1', + `svr_ac_check_scripts` tinyint(1) NOT NULL DEFAULT '1', + `svr_ac_script_wl` tinyint(1) NOT NULL DEFAULT '0', + `svr_ac_script_bl` tinyint(1) NOT NULL DEFAULT '1', + `svr_inflation_multiplier` float NOT NULL DEFAULT '1', + `svr_job_pickups` tinyint(1) DEFAULT '1', + `svr_job_blips` tinyint(1) DEFAULT '1', + `svr_biz_pickups` tinyint(1) DEFAULT '1', + `svr_biz_blips` tinyint(1) DEFAULT '1', + `svr_house_pickups` tinyint(1) DEFAULT '1', + `svr_house_blips` tinyint(1) DEFAULT '1', + `svr_discord_bot_enabled` tinyint(1) DEFAULT '0', + `svr_discord_bot` int(11) DEFAULT '0', + `svr_time_min_duration` int(11) NOT NULL DEFAULT '60000', + PRIMARY KEY (`svr_id`) +) ENGINE=InnoDB AUTO_INCREMENT=5 DEFAULT CHARSET=utf8 COMMENT='Servers'; + +-- Dumping data for table db24053.svr_main: ~4 rows (approximately) +/*!40000 ALTER TABLE `svr_main` DISABLE KEYS */; +INSERT INTO `svr_main` (`svr_id`, `svr_name`, `svr_game`, `svr_port`, `svr_password`, `svr_start_time_hour`, `svr_start_time_min`, `svr_start_weather`, `svr_start_snow_falling`, `svr_start_snow_ground`, `svr_newchar_pos_x`, `svr_newchar_pos_y`, `svr_newchar_pos_z`, `svr_newchar_rot_z`, `svr_newchar_money`, `svr_newchar_bank`, `svr_newchar_skin`, `svr_manager`, `svr_connectcam_pos_x`, `svr_connectcam_pos_y`, `svr_connectcam_pos_z`, `svr_connectcam_lookat_x`, `svr_connectcam_lookat_y`, `svr_connectcam_lookat_z`, `svr_gui`, `svr_gui_col1_r`, `svr_gui_col1_g`, `svr_gui_col1_b`, `svr_logo`, `svr_ac_enabled`, `svr_ac_check_scripts`, `svr_ac_script_wl`, `svr_ac_script_bl`, `svr_inflation_multiplier`, `svr_job_pickups`, `svr_job_blips`, `svr_biz_pickups`, `svr_biz_blips`, `svr_house_pickups`, `svr_house_blips`, `svr_discord_bot_enabled`, `svr_discord_bot`, `svr_time_min_duration`) VALUES + (1, 'Asshat Gaming Roleplay', 1, 22000, 'AsshatsUnite!', 0, 0, 0, 0, 0, 1038.4, -666.7, 14.97, 1, 1000, 0, 0, 1, -1176.48, -17.694, 95.992, -1175.73, -17.055, 95.847, 1, 40, 110, 185, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 60000); +INSERT INTO `svr_main` (`svr_id`, `svr_name`, `svr_game`, `svr_port`, `svr_password`, `svr_start_time_hour`, `svr_start_time_min`, `svr_start_weather`, `svr_start_snow_falling`, `svr_start_snow_ground`, `svr_newchar_pos_x`, `svr_newchar_pos_y`, `svr_newchar_pos_z`, `svr_newchar_rot_z`, `svr_newchar_money`, `svr_newchar_bank`, `svr_newchar_skin`, `svr_manager`, `svr_connectcam_pos_x`, `svr_connectcam_pos_y`, `svr_connectcam_pos_z`, `svr_connectcam_lookat_x`, `svr_connectcam_lookat_y`, `svr_connectcam_lookat_z`, `svr_gui`, `svr_gui_col1_r`, `svr_gui_col1_g`, `svr_gui_col1_b`, `svr_logo`, `svr_ac_enabled`, `svr_ac_check_scripts`, `svr_ac_script_wl`, `svr_ac_script_bl`, `svr_inflation_multiplier`, `svr_job_pickups`, `svr_job_blips`, `svr_biz_pickups`, `svr_biz_blips`, `svr_house_pickups`, `svr_house_blips`, `svr_discord_bot_enabled`, `svr_discord_bot`, `svr_time_min_duration`) VALUES + (2, 'Asshat Gaming Roleplay', 2, 22000, 'AsshatsUnite!', 0, 0, 0, 0, 0, -708.918, 179.315, 11.0712, 2.94625, 1000, 0, 15, 1, 210.04, -1492.01, 55.071, 240.19, -1282.52, 10.902, 1, 255, 110, 199, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 60000); +INSERT INTO `svr_main` (`svr_id`, `svr_name`, `svr_game`, `svr_port`, `svr_password`, `svr_start_time_hour`, `svr_start_time_min`, `svr_start_weather`, `svr_start_snow_falling`, `svr_start_snow_ground`, `svr_newchar_pos_x`, `svr_newchar_pos_y`, `svr_newchar_pos_z`, `svr_newchar_rot_z`, `svr_newchar_money`, `svr_newchar_bank`, `svr_newchar_skin`, `svr_manager`, `svr_connectcam_pos_x`, `svr_connectcam_pos_y`, `svr_connectcam_pos_z`, `svr_connectcam_lookat_x`, `svr_connectcam_lookat_y`, `svr_connectcam_lookat_z`, `svr_gui`, `svr_gui_col1_r`, `svr_gui_col1_g`, `svr_gui_col1_b`, `svr_logo`, `svr_ac_enabled`, `svr_ac_check_scripts`, `svr_ac_script_wl`, `svr_ac_script_bl`, `svr_inflation_multiplier`, `svr_job_pickups`, `svr_job_blips`, `svr_biz_pickups`, `svr_biz_blips`, `svr_house_pickups`, `svr_house_blips`, `svr_discord_bot_enabled`, `svr_discord_bot`, `svr_time_min_duration`) VALUES + (3, 'Asshat Gaming Roleplay', 5, 22000, 'AsshatsUnite!', 0, 0, 0, 0, 0, 2364.28, 387.27, 6.085, 2.434, 1000, 0, -2020305438, 1, 8.75, -826.53, 331.072, -63.58, 240.71, 26.373, 1, 128, 128, 128, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 60000); +INSERT INTO `svr_main` (`svr_id`, `svr_name`, `svr_game`, `svr_port`, `svr_password`, `svr_start_time_hour`, `svr_start_time_min`, `svr_start_weather`, `svr_start_snow_falling`, `svr_start_snow_ground`, `svr_newchar_pos_x`, `svr_newchar_pos_y`, `svr_newchar_pos_z`, `svr_newchar_rot_z`, `svr_newchar_money`, `svr_newchar_bank`, `svr_newchar_skin`, `svr_manager`, `svr_connectcam_pos_x`, `svr_connectcam_pos_y`, `svr_connectcam_pos_z`, `svr_connectcam_lookat_x`, `svr_connectcam_lookat_y`, `svr_connectcam_lookat_z`, `svr_gui`, `svr_gui_col1_r`, `svr_gui_col1_g`, `svr_gui_col1_b`, `svr_logo`, `svr_ac_enabled`, `svr_ac_check_scripts`, `svr_ac_script_wl`, `svr_ac_script_bl`, `svr_inflation_multiplier`, `svr_job_pickups`, `svr_job_blips`, `svr_biz_pickups`, `svr_biz_blips`, `svr_house_pickups`, `svr_house_blips`, `svr_discord_bot_enabled`, `svr_discord_bot`, `svr_time_min_duration`) VALUES + (4, 'Asshat Gaming Roleplay', 3, 22000, 'AsshatsUnite!', 0, 0, 0, 0, 0, 1632.49, -2331.96, 13.547, -0.005, 1000, 0, 26, 1, 1292.31, -2037.57, 109.596, 1291.31, -2037.57, 109.171, 0, 64, 64, 64, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 0, 0, 60000); +/*!40000 ALTER TABLE `svr_main` ENABLE KEYS */; + +-- Dumping structure for table db24053.veh_history +CREATE TABLE IF NOT EXISTS `veh_history` ( + `veh_history_id` int(11) NOT NULL AUTO_INCREMENT, + `veh_history_veh` int(11) NOT NULL, + `veh_history_type` int(11) NOT NULL, + `veh_history_when` int(11) NOT NULL, + `veh_history_value` int(11) NOT NULL, + `veh_history_details` varchar(50) NOT NULL DEFAULT '', + PRIMARY KEY (`veh_history_id`), + KEY `veh_history_veh` (`veh_history_veh`), + CONSTRAINT `fk_veh_history_veh` FOREIGN KEY (`veh_history_veh`) REFERENCES `veh_main` (`veh_id`) ON DELETE CASCADE ON UPDATE CASCADE +) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Vehicle - History'; + +-- Dumping data for table db24053.veh_history: ~0 rows (approximately) +/*!40000 ALTER TABLE `veh_history` DISABLE KEYS */; +/*!40000 ALTER TABLE `veh_history` ENABLE KEYS */; + +-- Dumping structure for table db24053.veh_main +CREATE TABLE IF NOT EXISTS `veh_main` ( + `veh_id` int(11) NOT NULL AUTO_INCREMENT, + `veh_server` tinyint(2) NOT NULL DEFAULT '0', + `veh_model` int(11) NOT NULL DEFAULT '0', + `veh_col1_isrgb` tinyint(1) NOT NULL DEFAULT '0', + `veh_col2_isrgb` tinyint(1) NOT NULL DEFAULT '0', + `veh_col3_isrgb` tinyint(1) NOT NULL DEFAULT '0', + `veh_col4_isrgb` tinyint(1) NOT NULL DEFAULT '0', + `veh_col1` smallint(6) NOT NULL DEFAULT '0', + `veh_col2` smallint(6) NOT NULL DEFAULT '0', + `veh_col3` smallint(6) NOT NULL DEFAULT '0', + `veh_col4` smallint(6) NOT NULL DEFAULT '0', + `veh_col1_r` smallint(6) NOT NULL DEFAULT '0', + `veh_col1_g` smallint(6) NOT NULL DEFAULT '0', + `veh_col1_b` smallint(6) NOT NULL DEFAULT '0', + `veh_col1_a` smallint(6) NOT NULL DEFAULT '0', + `veh_col2_r` smallint(6) NOT NULL DEFAULT '0', + `veh_col2_g` smallint(6) NOT NULL DEFAULT '0', + `veh_col2_b` smallint(6) NOT NULL DEFAULT '0', + `veh_col2_a` smallint(6) NOT NULL DEFAULT '0', + `veh_col3_r` smallint(6) NOT NULL DEFAULT '0', + `veh_col3_g` smallint(6) NOT NULL DEFAULT '0', + `veh_col3_b` smallint(6) NOT NULL DEFAULT '0', + `veh_col3_a` smallint(6) NOT NULL DEFAULT '0', + `veh_col4_r` smallint(6) NOT NULL DEFAULT '0', + `veh_col4_g` smallint(6) NOT NULL DEFAULT '0', + `veh_col4_b` smallint(6) NOT NULL DEFAULT '0', + `veh_col4_a` smallint(6) NOT NULL DEFAULT '0', + `veh_locked` tinyint(1) NOT NULL DEFAULT '0', + `veh_health` float NOT NULL DEFAULT '1000', + `veh_pos_x` float NOT NULL DEFAULT '0', + `veh_pos_y` float NOT NULL DEFAULT '0', + `veh_pos_z` float NOT NULL DEFAULT '0', + `veh_rot_x` float NOT NULL DEFAULT '0', + `veh_rot_y` float NOT NULL DEFAULT '0', + `veh_rot_z` float NOT NULL DEFAULT '0', + `veh_owner_type` int(11) NOT NULL DEFAULT '0', + `veh_owner_id` int(11) NOT NULL DEFAULT '0', + `veh_engine` tinyint(1) NOT NULL DEFAULT '0', + `veh_rank` tinyint(1) NOT NULL DEFAULT '0', + `veh_lights` tinyint(1) NOT NULL DEFAULT '0', + `veh_siren` tinyint(1) NOT NULL DEFAULT '0', + `veh_sirenlight` tinyint(1) NOT NULL DEFAULT '0', + `veh_taxilight` tinyint(1) NOT NULL DEFAULT '0', + `veh_radio_custom` tinyint(1) NOT NULL DEFAULT '0', + `veh_radio_station` smallint(6) NOT NULL DEFAULT '0', + `veh_radio_volume` tinyint(4) NOT NULL DEFAULT '0', + `veh_fuel` smallint(6) NOT NULL DEFAULT '0', + `veh_spawned` tinyint(1) NOT NULL DEFAULT '0', + `veh_ins_acct` tinyint(1) NOT NULL DEFAULT '0', + `veh_price` int(8) NOT NULL DEFAULT '0', + `veh_deleted` tinyint(1) NOT NULL DEFAULT '0', + `veh_flags` int(32) NOT NULL DEFAULT '0', + `veh_spawn_lock` tinyint(1) NOT NULL DEFAULT '0', + `veh_buy_price` int(11) NOT NULL DEFAULT '0', + `veh_rent_price` int(11) NOT NULL DEFAULT '0', + `veh_destroyed` tinyint(1) NOT NULL DEFAULT '0', + `veh_mod_enginemult` int(11) NOT NULL DEFAULT '0', + `veh_mod_wheelmult` int(11) NOT NULL DEFAULT '0', + `veh_mod_brakemult` int(11) NOT NULL DEFAULT '0', + `veh_mod_hydraulics` tinyint(1) NOT NULL DEFAULT '0', + `veh_mod_nos` tinyint(1) NOT NULL DEFAULT '0', + `veh_tire_fl` tinyint(1) NOT NULL DEFAULT '0', + `veh_tire_fr` tinyint(1) NOT NULL DEFAULT '0', + `veh_tire_rl` tinyint(1) NOT NULL DEFAULT '0', + `veh_tire_rr` tinyint(1) NOT NULL DEFAULT '0', + `veh_light_fl` tinyint(1) NOT NULL DEFAULT '0', + `veh_light_fr` tinyint(1) NOT NULL DEFAULT '0', + `veh_light_rl` tinyint(1) NOT NULL DEFAULT '0', + `veh_light_rr` tinyint(1) NOT NULL DEFAULT '0', + `veh_door_fl` tinyint(1) NOT NULL DEFAULT '0', + `veh_door_fr` tinyint(1) NOT NULL DEFAULT '0', + `veh_door_rl` tinyint(1) NOT NULL DEFAULT '0', + `veh_door_rr` tinyint(1) NOT NULL DEFAULT '0', + `veh_boot` tinyint(1) NOT NULL DEFAULT '0', + `veh_bonnet` tinyint(1) NOT NULL DEFAULT '0', + `veh_panel_bumper_front` tinyint(1) NOT NULL DEFAULT '0', + `veh_panel_bumper_rear` tinyint(1) NOT NULL DEFAULT '0', + `veh_panel_front_left` tinyint(1) NOT NULL DEFAULT '0', + `veh_panel_front_right` tinyint(1) NOT NULL DEFAULT '0', + `veh_panel_rear_left` tinyint(1) NOT NULL DEFAULT '0', + `veh_panel_rear_right` tinyint(1) NOT NULL DEFAULT '0', + `veh_panel_windshield` tinyint(1) NOT NULL DEFAULT '0', + `veh_dirt_level` int(11) NOT NULL DEFAULT '0', + `veh_damage_visual` int(11) NOT NULL DEFAULT '0', + `veh_damage_engine` float NOT NULL DEFAULT '0', + `veh_damage_normal` float NOT NULL DEFAULT '0', + PRIMARY KEY (`veh_id`), + KEY `veh_server` (`veh_server`), + KEY `veh_owner` (`veh_owner_type`,`veh_owner_id`) +) ENGINE=InnoDB AUTO_INCREMENT=343 DEFAULT CHARSET=latin1 COMMENT='Vehicles'; + +-- Dumping data for table db24053.veh_main: ~316 rows (approximately) +/*!40000 ALTER TABLE `veh_main` DISABLE KEYS */; +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`) VALUES + (1, 1, 116, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1000, 1150.19, -691.413, 14.7679, 0, 0, -0.00433205, 2, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`) VALUES + (2, 1, 116, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1000, 1146.75, -691.522, 14.7632, 0, 0, 0.0311547, 2, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`) VALUES + (3, 1, 116, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1000, 1150.19, -647.976, 14.7432, 0, 0, 1.58688, 2, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`) VALUES + (4, 1, 116, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1000, 1150.05, -644.664, 14.7377, 0, 0, 1.63214, 2, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`) VALUES + (5, 1, 116, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1000, 1150.03, -641.414, 14.7305, 0, 0, 1.58556, 2, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`) VALUES + (6, 1, 116, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1000, 1137.77, -637.964, 14.7565, 0, 0, 3.12411, 2, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`) VALUES + (7, 1, 116, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1000, 1141.03, -637.832, 14.7565, 0, 0, 3.13313, 2, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`) VALUES + (8, 1, 117, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1000, 1167.97, -671.216, 18.9339, 0, 0, -3.12864, 2, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`) VALUES + (9, 1, 117, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1000, 1167.88, -659.962, 18.9344, 0, 0, -3.13742, 2, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`) VALUES + (10, 1, 107, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1000, 1156.99, -648.106, 18.8026, 0, 0, -1.54444, 2, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`) VALUES + (11, 1, 107, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1000, 1156.71, -644.208, 18.8018, 0, 0, -1.56368, 2, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`) VALUES + (12, 1, 106, 0, 0, 0, 0, 1, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1000, 1156.51, -546.982, 21.8099, 0, 0, 1.54116, 2, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`) VALUES + (13, 1, 106, 0, 0, 0, 0, 1, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1000, 1144.34, -526.256, 21.811, 0, 0, 3.10339, 2, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`) VALUES + (14, 1, 106, 0, 0, 0, 0, 1, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1000, 1149.82, -526.413, 21.8051, 0, 0, 3.12915, 2, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`) VALUES + (15, 1, 97, 0, 0, 0, 0, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1000, 1107.33, -47.3277, 7.6909, 0, 0, -1.58177, 2, 9, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`) VALUES + (16, 1, 97, 0, 0, 0, 0, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1000, 1107.44, -56.9672, 7.68915, 0, 0, -1.55498, 2, 9, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`) VALUES + (17, 1, 97, 0, 0, 0, 0, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1000, 1107.07, -36.7668, 7.68907, 0, 0, -1.54614, 2, 9, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`) VALUES + (18, 1, 98, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1000, 1143.85, 24.7314, 0.193595, 0, 0, 0.030849, 2, 21, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`) VALUES + (19, 1, 98, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1000, 1127.04, 42.6658, 0.0965313, 0, 0, -1.59613, 2, 21, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`) VALUES + (20, 1, 98, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1000, 1160.02, 63.4447, 0.0918589, 0, 0, -3.06856, 2, 21, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`) VALUES + (21, 1, 116, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1000, 1139.63, -687.404, 14.7563, 0, 0, -1.5751, 2, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`) VALUES + (22, 1, 127, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1000, 1281.16, -964.567, 15.006, 0, 0, -2.35689, 2, 17, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`) VALUES + (23, 1, 127, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1000, 1274.07, -971.255, 14.9847, 0, 0, -2.36657, 2, 17, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`) VALUES + (24, 1, 127, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1000, 1255.04, -993.608, 14.9642, 0, 0, -0.875785, 2, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`) VALUES + (25, 1, 127, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1000, 1262.9, -1001.84, 14.966, 0, 0, -0.898034, 2, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`) VALUES + (26, 1, 110, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1000, 1226.42, -725.875, 14.9189, 0, 0, -2.34667, 2, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`) VALUES + (27, 1, 110, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1000, 1229.62, -722.578, 14.9188, 0, 0, -2.35245, 2, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`) VALUES + (28, 1, 110, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1000, 1257.41, -752.06, 14.9186, 0, 0, 0.734189, 2, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`) VALUES + (29, 1, 110, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1000, 1254.04, -755.676, 14.9186, 0, 0, 0.767078, 2, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`) VALUES + (30, 1, 128, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1000, 1249.93, -736.377, 15.1166, 0, 0, 2.33642, 2, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`) VALUES + (31, 1, 128, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1000, 1246.99, -733.376, 15.1162, 0, 0, 2.33641, 2, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`) VALUES + (32, 1, 116, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1000, 1139.41, -683.735, 14.7565, 0, 0, -1.55153, 2, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`) VALUES + (33, 1, 116, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1000, 355.017, -1135.91, 22.7644, 0, 0, -2.41669, 2, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`) VALUES + (34, 1, 116, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1000, 350.109, -1135.89, 22.7647, 0, 0, -2.46912, 2, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`) VALUES + (35, 1, 116, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1000, 345.608, -1135.62, 22.7649, 0, 0, -2.53825, 2, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`) VALUES + (36, 1, 116, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1000, 341.261, -1135.68, 22.7642, 0, 0, -2.54692, 2, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`) VALUES + (37, 1, 116, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1000, 336.717, -1135.68, 22.7706, 0, 0, -2.56974, 2, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`) VALUES + (38, 1, 116, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1000, 332.574, -1135.79, 22.7643, 0, 0, -2.54837, 2, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`) VALUES + (39, 1, 116, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1000, 330.361, -1143.6, 22.7644, 0, 0, -1.53463, 2, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`) VALUES + (40, 1, 116, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1000, 330.33, -1147.05, 22.7647, 0, 0, -1.55975, 2, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`) VALUES + (41, 1, 116, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1000, 330.239, -1150.96, 22.7647, 0, 0, -1.59091, 2, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`) VALUES + (42, 1, 116, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1000, 330.082, -1154.76, 22.7643, 0, 0, -1.59227, 2, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`) VALUES + (43, 1, 116, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1000, 330.062, -1158.64, 22.764, 0, 0, -1.56752, 2, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`) VALUES + (44, 1, 116, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1000, 330.123, -1162.56, 22.757, 0, 0, -1.57938, 2, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`) VALUES + (45, 1, 116, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1000, 349.266, -1175.87, 22.7646, 0, 0, 0.0401467, 2, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`) VALUES + (46, 1, 116, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1000, 352.866, -1175.72, 22.7649, 0, 0, 0.0375325, 2, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`) VALUES + (47, 1, 116, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1000, 356.565, -1175.68, 22.7649, 0, 0, 0.0262495, 2, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`) VALUES + (48, 1, 116, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1000, 360.123, -1175.56, 22.765, 0, 0, 0.00383999, 2, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`) VALUES + (49, 1, 116, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1000, 363.628, -1175.71, 22.7647, 0, 0, 0.0135003, 2, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`) VALUES + (50, 1, 116, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1000, 344.813, -1175.93, 22.7648, 0, 0, 0.0261305, 2, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`) VALUES + (51, 1, 117, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1000, 363.039, -1056.26, 26.0159, 0, 0, -3.13414, 2, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`) VALUES + (52, 1, 117, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1000, 357.656, -1056.36, 26.016, 0, 0, 3.12152, 2, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`) VALUES + (53, 1, 117, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1000, 352.455, -1056.27, 26.0166, 0, 0, 3.1086, 2, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`) VALUES + (54, 1, 107, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1000, 346.23, -1055.48, 25.8838, 0, 0, 3.1377, 2, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`) VALUES + (55, 1, 107, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1000, 342.364, -1055.36, 25.8839, 0, 0, 3.12213, 2, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`) VALUES + (56, 1, 107, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1000, 338.239, -1055.29, 25.8841, 0, 0, 3.07547, 2, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`) VALUES + (57, 1, 107, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1000, 333.56, -1055.31, 25.8841, 0, 0, 3.09697, 2, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`) VALUES + (58, 2, 156, 0, 0, 0, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, -863.201, -666.353, 11.0311, 0, 0, -3.04091, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`) VALUES + (59, 2, 156, 0, 0, 0, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, -859.264, -665.929, 11.0121, 0, 0, -3.02909, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`) VALUES + (60, 2, 156, 0, 0, 0, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, -855.519, -665.594, 10.9943, 0, 0, -3.03498, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`) VALUES + (61, 2, 156, 0, 0, 0, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, -851.826, -665.276, 10.9767, 0, 0, -3.02548, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`) VALUES + (62, 2, 156, 0, 0, 0, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, -843.97, -679.789, 10.9396, 0, 0, 1.72875, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`) VALUES + (63, 2, 156, 0, 0, 0, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, -844.578, -675.52, 10.9427, 0, 0, 1.70593, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`) VALUES + (64, 2, 156, 0, 0, 0, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, -845.17, -671.403, 10.9455, 0, 0, 1.69794, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`) VALUES + (65, 2, 157, 0, 0, 0, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, -873.775, -710.286, 11.1915, 0, 0, -2.06147, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`) VALUES + (66, 2, 157, 0, 0, 0, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, -881.43, -705.81, 11.2087, 0, 0, -2.22486, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`) VALUES + (67, 2, 236, 0, 0, 0, 0, 76, 76, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, -897.515, -698.598, 10.9724, 0, 0, -3.01881, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`) VALUES + (68, 2, 236, 0, 0, 0, 0, 76, 76, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, -894.148, -698.128, 10.9701, 0, 0, -3.01433, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`) VALUES + (69, 2, 236, 0, 0, 0, 0, 76, 76, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, -894.135, -719.859, 10.9428, 0, 0, -1.41224, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`) VALUES + (70, 2, 236, 0, 0, 0, 0, 52, 52, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, -894.683, -715.826, 10.9485, 0, 0, -1.42683, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`) VALUES + (71, 2, 156, 0, 0, 0, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, -650.832, 754.237, 11.2032, 0, 0, 1.50302, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`) VALUES + (72, 2, 156, 0, 0, 0, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, -639.172, 753.413, 11.2032, 0, 0, 1.50092, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`) VALUES + (73, 2, 156, 0, 0, 0, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, -621.907, 752.278, 11.2033, 0, 0, 1.49172, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`) VALUES + (74, 2, 156, 0, 0, 0, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, -610.695, 751.54, 11.2031, 0, 0, 1.5242, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`) VALUES + (75, 2, 157, 0, 0, 0, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, -599.312, 812.778, 11.4341, 0, 0, -1.51886, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`) VALUES + (76, 2, 157, 0, 0, 0, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, -599.318, 808.625, 11.4343, 0, 0, -1.54175, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`) VALUES + (77, 2, 157, 0, 0, 0, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, -599.262, 804.179, 11.4321, 0, 0, -1.55996, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`) VALUES + (78, 2, 236, 0, 0, 0, 0, 52, 52, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, -601.455, 777.717, 11.3721, 0, 0, -1.56567, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`) VALUES + (79, 2, 236, 0, 0, 0, 0, 3, 3, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, -601.427, 781.32, 11.372, 0, 0, -1.57976, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`) VALUES + (80, 2, 236, 0, 0, 0, 0, 7, 7, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, -601.614, 785.262, 11.3678, 0, 0, -1.53095, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`) VALUES + (81, 2, 227, 0, 0, 0, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, -614.282, 804.889, 29.667, 0, 0, -3.13458, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`) VALUES + (82, 2, 156, 0, 0, 0, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, -665.011, 766.586, 10.8582, 0, 0, -3.12432, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`) VALUES + (83, 2, 156, 0, 0, 0, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, -665.185, 777.893, 11.0314, 0, 0, 3.13051, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`) VALUES + (84, 2, 156, 0, 0, 0, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, -665.29, 793.478, 11.0371, 0, 0, -3.13675, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`) VALUES + (85, 2, 156, 0, 0, 0, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, -665.178, 804.984, 11.0372, 0, 0, 3.13152, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`) VALUES + (86, 2, 137, 0, 0, 0, 0, 3, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, -695.476, 917.25, 11.193, 0, 0, -1.5752, 2, 10, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`) VALUES + (87, 2, 137, 0, 0, 0, 0, 3, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, -695.799, 933.069, 11.1976, 0, 0, -1.59279, 2, 10, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`) VALUES + (88, 2, 137, 0, 0, 0, 0, 3, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, -751.642, 927.235, 11.2813, 0, 0, 1.58276, 2, 10, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`) VALUES + (89, 2, 156, 0, 0, 0, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 520.53, 503.127, 10.8484, 0, 0, -0.00178437, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`) VALUES + (90, 2, 156, 0, 0, 0, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 516.364, 503.18, 10.9362, 0, 0, -0.0254137, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`) VALUES + (91, 2, 156, 0, 0, 0, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 498.01, 503.081, 11.193, 0, 0, 0.0146382, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`) VALUES + (92, 2, 156, 0, 0, 0, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 502.233, 503.026, 11.1357, 0, 0, 0.0138817, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`) VALUES + (93, 2, 156, 0, 0, 0, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 493.552, 503.077, 11.2541, 0, 0, -0.0044642, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`) VALUES + (94, 2, 236, 0, 0, 0, 0, 52, 52, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 490.796, 528.832, 11.3465, 0, 0, 1.54742, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`) VALUES + (95, 2, 236, 0, 0, 0, 0, 76, 76, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 490.796, 525.464, 11.3455, 0, 0, 1.57115, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`) VALUES + (96, 2, 157, 0, 0, 0, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 490.527, 519.161, 11.6082, 0, 0, 3.12121, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`) VALUES + (97, 2, 156, 0, 0, 0, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 372.272, -526.059, 12.1009, 0, 0, -0.731552, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`) VALUES + (98, 2, 156, 0, 0, 0, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 369.489, -523.585, 12.0988, 0, 0, -0.718855, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`) VALUES + (99, 2, 156, 0, 0, 0, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 366.674, -521.239, 12.0989, 0, 0, -0.712901, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`) VALUES + (100, 2, 156, 0, 0, 0, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 363.691, -518.751, 12.0982, 0, 0, -0.698761, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`) VALUES + (101, 2, 156, 0, 0, 0, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 361.239, -516.717, 12.0989, 0, 0, -0.705683, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`) VALUES + (102, 2, 156, 0, 0, 0, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 358.335, -514.321, 12.0942, 0, 0, -0.696986, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`) VALUES + (103, 2, 156, 0, 0, 0, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 355.575, -511.957, 12.0989, 0, 0, -0.701771, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`) VALUES + (104, 2, 157, 0, 0, 0, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 348.887, -491.942, 12.3596, 0, 0, 2.45143, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`) VALUES + (105, 2, 157, 0, 0, 0, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 351.751, -494.224, 12.3596, 0, 0, 2.44634, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`) VALUES + (106, 2, 146, 0, 0, 0, 0, 1, 3, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, -119.267, -918.579, 10.6751, 0, 0, 1.83377, 2, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`) VALUES + (107, 2, 146, 0, 0, 0, 0, 1, 3, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, -117.954, -924.926, 10.6753, 0, 0, 1.8211, 2, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`) VALUES + (108, 2, 146, 0, 0, 0, 0, 1, 3, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, -116.5, -931.549, 10.6753, 0, 0, 1.76665, 2, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`) VALUES + (129, 2, 146, 0, 0, 0, 0, 1, 3, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, -769.326, 1155.62, 12.6228, 0, 0, -3.14049, 2, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`) VALUES + (130, 2, 146, 0, 0, 0, 0, 1, 3, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, -773.948, 1155.64, 12.6228, 0, 0, 3.13857, 2, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`) VALUES + (131, 2, 146, 0, 0, 0, 0, 1, 3, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, -769.568, 1131.04, 12.6227, 0, 0, -0.010725, 2, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`) VALUES + (132, 2, 146, 0, 0, 0, 0, 1, 3, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, -774.835, 1131.13, 12.6229, 0, 0, -0.0206099, 2, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`) VALUES + (133, 2, 146, 0, 0, 0, 0, 1, 3, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 458.814, 702.22, 11.49, 0, 0, 1.51274, 2, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`) VALUES + (134, 2, 146, 0, 0, 0, 0, 1, 3, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 467.202, 701.723, 11.6151, 0, 0, 1.50174, 2, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`) VALUES + (135, 2, 150, 0, 0, 0, 0, 6, 73, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, -1005.69, 208.713, 11.1279, 0, 0, 3.03758, 2, 14, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`) VALUES + (136, 2, 150, 0, 0, 0, 0, 6, 75, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, -1002.12, 203.73, 11.4539, 0, 0, 3.01694, 2, 14, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`) VALUES + (137, 2, 168, 0, 0, 0, 0, 6, 76, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, -1008.54, 186.246, 11.3789, 0, 0, -0.157828, 2, 14, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`) VALUES + (138, 2, 168, 0, 0, 0, 0, 6, 76, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, -995.796, 193.143, 11.4015, 0, 0, 1.41776, 2, 14, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`) VALUES + (139, 2, 167, 0, 0, 0, 0, 56, 75, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, -1141.98, -283.386, 11.3194, 0, 0, -3.09345, 2, 18, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`) VALUES + (140, 2, 167, 0, 0, 0, 0, 13, 76, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, -1143.05, -270.229, 11.4251, 0, 0, -3.05214, 2, 18, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`) VALUES + (141, 2, 167, 0, 0, 0, 0, 13, 76, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, -1143.99, -256.669, 11.5147, 0, 0, -3.07535, 2, 18, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`) VALUES + (142, 2, 146, 0, 0, 0, 0, 1, 3, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, -873.256, -482.571, 11.3251, 0, 0, -1.5271, 2, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`) VALUES + (143, 2, 146, 0, 0, 0, 0, 1, 3, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, -873.249, -478.507, 11.3193, 0, 0, -1.55587, 2, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`) VALUES + (144, 2, 138, 0, 0, 0, 0, 1, 75, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, -1243.33, 23.4004, 12.013, 0, 0, 3.12587, 2, 22, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`) VALUES + (145, 2, 138, 0, 0, 0, 0, 1, 75, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, -1247.7, 23.4549, 12.0141, 0, 0, 3.1171, 2, 22, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`) VALUES + (146, 2, 138, 0, 0, 0, 0, 1, 75, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, -1251.99, 23.5308, 12.0096, 0, 0, 3.12793, 2, 22, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`) VALUES + (147, 4, 596, 0, 0, 0, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 1602.73, -1703.95, 5.62027, 0, 0, 1.59558, 2, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`) VALUES + (148, 4, 596, 0, 0, 0, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 1602.74, -1700.18, 5.61885, 0, 0, 1.59013, 2, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`) VALUES + (149, 4, 596, 0, 0, 0, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 1602.68, -1696.18, 5.61891, 0, 0, 1.57734, 2, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`) VALUES + (150, 4, 596, 0, 0, 0, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 1602.67, -1691.93, 5.61976, 0, 0, 1.59322, 2, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`) VALUES + (151, 4, 596, 0, 0, 0, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 2083.1, -1706.03, 13.104, 0, 0, 0.635562, 2, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`) VALUES + (152, 4, 596, 0, 0, 0, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 1595.43, -1711.89, 5.61871, 0, 0, -0.0106168, 2, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`) VALUES + (153, 4, 596, 0, 0, 0, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 1591.43, -1711.87, 5.61965, 0, 0, 0.00642908, 2, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`) VALUES + (154, 4, 596, 0, 0, 0, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 1587.33, -1711.86, 5.61184, 0, 0, 0.00975822, 2, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`) VALUES + (155, 4, 427, 0, 0, 0, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 1526.72, -1644.82, 6.02297, 0, 0, -3.13362, 2, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`) VALUES + (156, 4, 427, 0, 0, 0, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 1530.62, -1644.78, 6.02321, 0, 0, -3.11574, 2, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`) VALUES + (157, 4, 427, 0, 0, 0, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 1534.72, -1644.71, 6.03863, 0, 0, -3.13567, 2, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`) VALUES + (158, 4, 599, 0, 0, 0, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 1545.99, -1651.07, 6.08226, 0, 0, 1.56824, 2, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`) VALUES + (159, 4, 599, 0, 0, 0, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 1546.03, -1654.96, 6.03352, 0, 0, 1.54986, 2, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`) VALUES + (160, 4, 426, 0, 0, 0, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 1545.79, -1667.84, 5.62373, 0, 0, 1.56514, 2, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`) VALUES + (161, 4, 426, 0, 0, 0, 0, 10, 10, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 1545.98, -1672.1, 5.63141, 0, 0, 1.5917, 2, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`) VALUES + (162, 2, 131, 0, 0, 0, 0, 5, 62, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, -979.65, -882.122, 12.8471, 0, 0, 0.706624, 6, 201, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`) VALUES + (163, 2, 175, 0, 0, 0, 0, 10, 10, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, -982.328, -884.745, 12.8644, 0, 0, 0.752705, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`) VALUES + (164, 2, 134, 0, 0, 0, 0, 37, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, -984.716, -887.286, 12.7108, 0, 0, 0.798329, 6, 201, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 750, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`) VALUES + (165, 4, 523, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 1526.17, -1680.36, 5.45989, 0, 0, -0.797715, 2, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`) VALUES + (166, 4, 523, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 1526.06, -1674.86, 5.46142, 0, 0, -2.37213, 2, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`) VALUES + (167, 4, 523, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 1529.73, -1674.89, 5.4601, 0, 0, -2.37606, 2, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`) VALUES + (168, 4, 523, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 1529.64, -1680.68, 5.46212, 0, 0, -0.793975, 2, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`) VALUES + (169, 4, 416, 0, 0, 0, 0, 1, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 1178.73, -1338.94, 14.0094, 0, 0, -1.54939, 2, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`) VALUES + (170, 4, 416, 0, 0, 0, 0, 1, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 1178.46, -1308.67, 13.9791, 0, 0, -1.56455, 2, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`) VALUES + (171, 4, 416, 0, 0, 0, 0, 1, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 2036.82, -1425.53, 17.1413, 0, 0, -0.00217407, 2, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`) VALUES + (172, 4, 416, 0, 0, 0, 0, 1, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 2024.7, -1409.68, 17.1419, 0, 0, 1.55537, 2, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`) VALUES + (173, 4, 408, 0, 0, 0, 0, 26, 26, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 2338.19, -2085.52, 14.0841, 0, 0, 1.56666, 2, 24, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`) VALUES + (174, 4, 408, 0, 0, 0, 0, 26, 26, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 2338.24, -2090.4, 14.097, 0, 0, 1.57921, 2, 24, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`) VALUES + (175, 4, 408, 0, 0, 0, 0, 26, 26, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 2338.3, -2095.48, 14.0909, 0, 0, 1.57749, 2, 24, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`) VALUES + (176, 4, 431, 0, 0, 0, 0, 47, 74, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 1781.16, -1887.68, 13.493, 0, 0, -1.54371, 2, 20, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`) VALUES + (177, 4, 431, 0, 0, 0, 0, 92, 72, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 1781.08, -1892.33, 13.492, 0, 0, -1.55517, 2, 20, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`) VALUES + (178, 4, 431, 0, 0, 0, 0, 92, 72, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 1780.83, -1897.52, 13.4905, 0, 0, -1.56997, 2, 20, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`) VALUES + (179, 4, 420, 0, 0, 0, 0, 6, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 1804.27, -1932.53, 13.1664, 0, 0, -0.015131, 2, 16, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`) VALUES + (180, 4, 420, 0, 0, 0, 0, 6, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 1800.35, -1932.4, 13.166, 0, 0, -0.0127972, 2, 16, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`) VALUES + (181, 4, 420, 0, 0, 0, 0, 6, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 1796.72, -1932.55, 13.1653, 0, 0, -0.000382929, 2, 16, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`) VALUES + (182, 4, 438, 0, 0, 0, 0, 6, 76, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 1792.65, -1932.66, 13.3902, 0, 0, 0.00784995, 2, 16, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`) VALUES + (183, 4, 438, 0, 0, 0, 0, 6, 76, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 1788.85, -1932.83, 13.3847, 0, 0, 0.025678, 2, 16, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`) VALUES + (184, 4, 407, 0, 0, 0, 0, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 1147.58, -1295.9, 13.8958, 0, 0, 0.00109566, 2, 12, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`) VALUES + (185, 4, 407, 0, 0, 0, 0, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 1147.58, -1308.6, 13.9144, 0, 0, 0.00538338, 2, 12, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`) VALUES + (186, 4, 598, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 2282.26, 2442.01, 10.5652, 0, 0, -0.0100905, 2, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`) VALUES + (187, 4, 598, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 2277.82, 2441.92, 10.5665, 0, 0, 0.0142917, 2, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`) VALUES + (188, 4, 598, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 2273.75, 2441.84, 10.5656, 0, 0, 0.00445989, 2, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`) VALUES + (189, 4, 598, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 2269.03, 2441.76, 10.565, 0, 0, 0.02489, 2, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`) VALUES + (190, 4, 598, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 2277.94, 2478.61, 10.5693, 0, 0, 3.13522, 2, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`) VALUES + (191, 4, 598, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 2273.44, 2478.64, 10.5671, 0, 0, 3.12822, 2, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`) VALUES + (192, 4, 598, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 2269.09, 2478.64, 10.5649, 0, 0, 3.13244, 2, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`) VALUES + (193, 4, 598, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 2282.15, 2478.59, 10.5668, 0, 0, -3.12538, 2, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`) VALUES + (194, 4, 407, 0, 0, 0, 0, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 1751.1, 2077.36, 11.0579, 0, 0, 3.13707, 2, 12, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`) VALUES + (195, 4, 407, 0, 0, 0, 0, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 1756.99, 2077.55, 11.0555, 0, 0, -3.13337, 2, 12, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`) VALUES + (196, 4, 407, 0, 0, 0, 0, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 1763.96, 2077.97, 11.0573, 0, 0, -3.10259, 2, 12, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`) VALUES + (197, 4, 597, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, -1572.66, 742.629, -5.47258, 0, 0, 1.57093, 2, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`) VALUES + (198, 4, 597, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, -1572.64, 738.657, -5.47407, 0, 0, 1.5799, 2, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`) VALUES + (199, 4, 597, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, -1572.6, 734.641, -5.47307, 0, 0, 1.57367, 2, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`) VALUES + (200, 4, 597, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, -1572.56, 730.619, -5.47164, 0, 0, 1.57203, 2, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`) VALUES + (201, 4, 597, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, -1572.46, 726.494, -5.47229, 0, 0, 1.57229, 2, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`) VALUES + (202, 4, 597, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, -1579.91, 750.258, -5.47212, 0, 0, 3.13972, 2, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`) VALUES + (203, 4, 597, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, -1584.04, 750.231, -5.47137, 0, 0, -3.13672, 2, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`) VALUES + (204, 4, 597, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, -1588.07, 750.247, -5.47243, 0, 0, 3.13574, 2, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`) VALUES + (205, 4, 597, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, -1592.38, 750.296, -5.47143, 0, 0, 3.13692, 2, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`) VALUES + (206, 4, 523, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, -1611.79, 730.701, -5.67174, 0, 0, 0.560641, 2, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`) VALUES + (207, 4, 523, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, -1617.18, 730.908, -5.66764, 0, 0, -0.753548, 2, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`) VALUES + (208, 4, 523, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, -1611.58, 733.413, -5.67532, 0, 0, 0.526106, 2, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`) VALUES + (209, 4, 523, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, -1617.37, 733.199, -5.67666, 0, 0, -0.764526, 2, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`) VALUES + (210, 4, 426, 0, 0, 0, 0, 11, 11, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, -1572.29, 705.876, -5.49726, 0, 0, 1.58725, 2, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`) VALUES + (211, 4, 426, 0, 0, 0, 0, 53, 53, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, -1572.31, 710.11, -5.49697, 0, 0, 1.55664, 2, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`) VALUES + (212, 4, 426, 0, 0, 0, 0, 11, 11, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, -1572.36, 714.22, -5.49761, 0, 0, 1.58512, 2, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`) VALUES + (213, 4, 427, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, -1596.07, 676.545, -5.10801, 0, 0, 0.0186245, 2, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`) VALUES + (214, 4, 427, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, -1600.28, 676.495, -5.10837, 0, 0, 0.0136404, 2, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`) VALUES + (215, 4, 416, 0, 0, 0, 0, 1, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, -2677.4, 630.025, 14.6044, 0, 0, 1.57874, 2, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`) VALUES + (216, 4, 416, 0, 0, 0, 0, 1, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, -2666.93, 629.908, 14.6044, 0, 0, 1.56592, 2, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`) VALUES + (217, 4, 416, 0, 0, 0, 0, 1, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, -2686.18, 628.286, 14.6058, 0, 0, 1.9158, 2, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`) VALUES + (218, 4, 407, 0, 0, 0, 0, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, -2022.76, 75.2526, 28.3631, 0, 0, -1.47777, 2, 12, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`) VALUES + (219, 4, 407, 0, 0, 0, 0, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, -2022.92, 84.3134, 28.3332, 0, 0, -1.5322, 2, 12, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`) VALUES + (220, 4, 407, 0, 0, 0, 0, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, -2022.93, 92.2289, 28.3678, 0, 0, -1.51043, 2, 12, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`) VALUES + (221, 4, 411, 0, 0, 0, 0, 12, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 564.59, -1291.1, 16.9753, 0, 0, 0.0255753, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`) VALUES + (222, 4, 541, 0, 0, 0, 0, 36, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 561, -1291.44, 16.8732, 0, 0, 0.00172557, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`) VALUES + (223, 4, 480, 0, 0, 0, 0, 6, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 557.632, -1291.24, 17.022, 0, 0, 0.0362236, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`) VALUES + (224, 4, 477, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 554.015, -1291.05, 17.0018, 0, 0, -0.0592367, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`) VALUES + (227, 1, 102, 0, 0, 0, 0, 57, 73, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 1209.59, -85.9233, 12.6336, 0, 0, -2.23509, 6, 204, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 2500, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`) VALUES + (228, 1, 129, 0, 0, 0, 0, 25, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 1209.51, -81.4913, 12.1281, 0, 0, -2.20648, 6, 204, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 2100, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`) VALUES + (229, 1, 112, 0, 0, 0, 0, 55, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 1209.65, -77.2701, 11.9, 0, 0, -2.20789, 6, 204, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 2000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`) VALUES + (230, 1, 91, 0, 0, 0, 0, 51, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 1211.41, -66.0152, 10.4973, 0, 0, -2.52612, 6, 204, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1500, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`) VALUES + (231, 1, 100, 0, 0, 0, 0, 69, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 1210.97, -73.589, 11.1925, 0, 0, -2.19468, 6, 204, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`) VALUES + (232, 1, 94, 0, 0, 0, 0, 23, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 1214.52, -63.2275, 10.152, 0, 0, -2.81749, 6, 204, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`) VALUES + (233, 1, 90, 0, 0, 0, 0, 41, 76, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 1218.85, -62.5937, 10.422, 0, 0, 3.0997, 6, 204, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 2500, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`) VALUES + (234, 1, 109, 0, 0, 0, 0, 18, 18, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 1222.63, -63.0764, 10.2099, 0, 0, 3.10392, 6, 204, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1200, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`) VALUES + (235, 1, 105, 0, 0, 0, 0, 51, 77, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 1244.93, -120.808, 14.604, 0, 0, -0.0421777, 6, 204, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 75000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`) VALUES + (236, 1, 101, 0, 0, 0, 0, 57, 74, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 1241.28, -120.641, 14.6288, 0, 0, 0.0264841, 6, 204, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 85000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`) VALUES + (237, 1, 119, 0, 0, 0, 0, 12, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 1237.61, -121, 14.5594, 0, 0, 0.00477941, 6, 204, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 115000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`) VALUES + (238, 1, 92, 0, 0, 0, 0, 53, 73, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 1233.86, -120.93, 14.6328, 0, 0, -0.0198187, 6, 204, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 100000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`) VALUES + (239, 1, 134, 0, 0, 0, 0, 72, 75, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 1247.55, -107.909, 14.7097, 0, 0, 1.50495, 6, 204, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 25000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`) VALUES + (240, 1, 137, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 1247.63, -104.151, 14.2887, 0, 0, 1.54257, 6, 204, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 20000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`) VALUES + (241, 1, 135, 0, 0, 0, 0, 11, 75, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 1247.29, -100.391, 14.0073, 0, 0, 1.52489, 6, 204, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 22000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`) VALUES + (243, 1, 139, 0, 0, 0, 0, 9, 73, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 1247.41, -96.6294, 13.9466, 0, 0, 1.55603, 6, 204, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 25000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`) VALUES + (244, 1, 138, 0, 0, 0, 0, 54, 76, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 1247.62, -92.3873, 13.426, 0, 0, 1.51434, 6, 204, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 27000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`) VALUES + (245, 1, 102, 0, 0, 0, 0, 26, 75, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, -751.01, -535.337, 8.80389, 0, 0, -1.13589, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`) VALUES + (246, 1, 102, 0, 0, 0, 0, 34, 73, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, -750.797, -539.199, 8.80304, 0, 0, -1.10576, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`) VALUES + (247, 1, 102, 0, 0, 0, 0, 44, 74, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, -751.052, -543.618, 8.80374, 0, 0, -1.07295, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`) VALUES + (248, 1, 100, 0, 0, 0, 0, 58, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, -751.566, -552.963, 8.59979, 0, 0, -1.61011, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`) VALUES + (249, 1, 100, 0, 0, 0, 0, 18, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, -751.576, -556.203, 8.59965, 0, 0, -1.59793, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`) VALUES + (250, 1, 100, 0, 0, 0, 0, 58, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, -751.577, -559.737, 8.59964, 0, 0, -1.57346, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`) VALUES + (251, 1, 100, 0, 0, 0, 0, 18, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, -751.575, -563.115, 8.60021, 0, 0, -1.57212, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`) VALUES + (252, 1, 126, 0, 0, 0, 0, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, -1524.37, -927.334, 11.6627, 0, 0, -1.51896, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 100, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`) VALUES + (253, 1, 126, 0, 0, 0, 0, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, -1524.94, -920.765, 11.6717, 0, 0, -1.51945, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 100, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`) VALUES + (254, 1, 126, 0, 0, 0, 0, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, -1525.38, -914.304, 11.6674, 0, 0, -1.49781, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 100, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`) VALUES + (255, 1, 142, 0, 0, 0, 0, 1, 53, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 620.768, -665.364, -0.327586, 0, 0, -0.0217677, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`) VALUES + (256, 1, 143, 0, 0, 0, 0, 12, 35, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 627.834, -666.615, -0.505819, 0, 0, -0.0385386, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 35000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`) VALUES + (258, 1, 146, 0, 0, 0, 0, 34, 74, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 1426.45, -803.581, 11.9599, 0, 0, 1.56821, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 35000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`) VALUES + (259, 1, 104, 0, 0, 0, 0, 52, 74, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 1426.62, -795.533, 11.8912, 0, 0, 1.56813, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 30000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`) VALUES + (260, 1, 93, 0, 0, 0, 0, 39, 78, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 1426.01, -786.663, 12.4028, 0, 0, 1.56679, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 40000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`) VALUES + (261, 4, 547, 0, 0, 0, 0, 10, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 2136.31, -1150.2, 23.9743, 0, 0, 0.748413, 6, 228, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`) VALUES + (262, 4, 516, 0, 0, 0, 0, 122, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 2136.18, -1145.37, 24.6024, 0, 0, 0.789813, 6, 228, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`) VALUES + (263, 4, 466, 0, 0, 0, 0, 78, 76, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 2125.15, -1152.9, 23.7633, 0, 0, -0.783476, 6, 228, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`) VALUES + (264, 4, 410, 0, 0, 0, 0, 10, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 2136.76, -1141.11, 24.8917, 0, 0, 0.786093, 6, 228, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`) VALUES + (265, 4, 445, 0, 0, 0, 0, 45, 45, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 2117.76, -1155.76, 24.126, 0, 0, -0.705611, 6, 228, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`) VALUES + (266, 4, 405, 0, 0, 0, 0, 24, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 2117.4, -1151.21, 24.2249, 0, 0, -0.645516, 6, 228, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`) VALUES + (267, 4, 458, 0, 0, 0, 0, 4, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 2136.36, -1136, 25.5515, 0, 0, 0.777684, 6, 228, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1400, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`) VALUES + (268, 4, 496, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 2118.21, -1145.71, 24.3037, 0, 0, -1.09275, 6, 228, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`) VALUES + (269, 4, 418, 0, 0, 0, 0, 95, 95, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 2118.32, -1141.57, 24.9918, 0, 0, -1.07252, 6, 228, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`) VALUES + (271, 4, 549, 0, 0, 0, 0, 79, 39, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 2136.42, -1131.45, 25.3818, 0, 0, 0.778913, 6, 228, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 750, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`) VALUES + (272, 4, 404, 0, 0, 0, 0, 83, 110, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 2119.1, -1128.71, 25.0533, 0, 0, -1.00972, 6, 228, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1100, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`) VALUES + (273, 4, 422, 0, 0, 0, 0, 113, 36, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 2118.91, -1132.57, 25.2674, 0, 0, -1.04863, 6, 228, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`) VALUES + (274, 4, 419, 0, 0, 0, 0, 47, 76, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 2119.37, -1123.81, 25.1752, 0, 0, -0.824258, 6, 228, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1500, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`) VALUES + (275, 4, 559, 0, 0, 0, 0, 13, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 543.558, -1291.16, 16.8736, 0, 0, -0.140231, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`) VALUES + (276, 4, 506, 0, 0, 0, 0, 76, 76, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 539.57, -1291.52, 16.949, 0, 0, 0.0129029, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`) VALUES + (277, 4, 451, 0, 0, 0, 0, 46, 46, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 529.109, -1291.35, 16.9441, 0, 0, 0.007333, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 130000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`) VALUES + (278, 4, 415, 0, 0, 0, 0, 25, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 532.506, -1291.65, 17.0134, 0, 0, 0.0241039, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`) VALUES + (279, 4, 429, 0, 0, 0, 0, 13, 13, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 535.97, -1291.55, 16.9238, 0, 0, -0.00909396, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`) VALUES + (280, 4, 565, 0, 0, 0, 0, 42, 42, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 525.643, -1291.94, 16.8666, 0, 0, 0.0016915, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`) VALUES + (281, 4, 602, 0, 0, 0, 0, 13, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 522.465, -1291.49, 17.0442, 0, 0, -0.0111869, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 60000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`) VALUES + (282, 4, 589, 0, 0, 0, 0, 114, 114, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 518.795, -1291.31, 16.9074, 0, 0, 0.0178289, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 50000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`) VALUES + (283, 4, 519, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 1995.15, -2367.1, 14.4654, 0, 0, 1.57039, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 750000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`) VALUES + (284, 4, 511, 0, 0, 0, 0, 37, 51, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 1994.14, -2388.79, 14.9204, 0, 0, 1.59079, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 400000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`) VALUES + (285, 4, 593, 0, 0, 0, 0, 2, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 1995.97, -2407.75, 14.0243, 0, 0, 1.54898, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 200000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`) VALUES + (286, 4, 553, 0, 0, 0, 0, 55, 23, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 2025.74, -2418.28, 14.8912, 0, 0, 2.46133, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 500000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`) VALUES + (287, 4, 487, 0, 0, 0, 0, 74, 35, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 1995.52, -2332.31, 13.7254, 0, 0, 1.58853, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 300000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`) VALUES + (288, 4, 548, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 1992.24, -2316.92, 15.1977, 0, 0, 1.58742, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`) VALUES + (289, 4, 469, 0, 0, 0, 0, 1, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 1995.62, -2303.97, 13.5477, 0, 0, 1.53661, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 250000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`) VALUES + (290, 4, 417, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 1992.1, -2255.76, 13.6483, 0, 0, 1.54044, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 900000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`) VALUES + (292, 1, 111, 0, 0, 0, 0, 14, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 1129.34, -112.16, 9.58797, 0, 0, -3.13911, 1, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 2500, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`) VALUES + (293, 1, 127, 0, 0, 0, 0, 44, 27, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 331.266, -1573.11, 26.0381, 0, 0, -0.879107, 2, 17, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`) VALUES + (294, 1, 127, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, -73.1733, -349.082, 16.2603, 0, 0, -0.0165034, 2, 17, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`) VALUES + (295, 1, 127, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, -73.4793, -367.01, 16.2607, 0, 0, -0.0240202, 2, 17, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`) VALUES + (296, 4, 529, 0, 0, 0, 0, 7, 7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 2118.54, -1137.2, 24.7795, 0, 0, -1.06224, 6, 228, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 850, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`) VALUES + (297, 4, 596, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 1583.14, -1711.82, 5.60978, 0, 0, -0.0255531, 2, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`) VALUES + (298, 4, 596, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 1578.54, -1711.84, 5.6025, 0, 0, 0.00653891, 2, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`) VALUES + (299, 4, 596, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 1574.12, -1711.96, 5.61197, 0, 0, 0.00792556, 2, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`) VALUES + (300, 2, 221, 0, 0, 0, 0, 30, 72, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, -987.238, -890.147, 12.7976, 0, 0, 0.861982, 6, 201, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 3500, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`) VALUES + (301, 2, 135, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, -975.756, -878.166, 12.9318, 0, 0, 0.813128, 6, 201, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 7000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`) VALUES + (302, 2, 226, 0, 0, 0, 0, 8, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, -966.656, -864.78, 12.8917, 0, 0, 1.16068, 6, 201, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 4000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`) VALUES + (303, 2, 152, 0, 0, 0, 0, 8, 90, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, -971.067, -873.153, 13.2271, 0, 0, 0.834572, 6, 201, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 3200, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`) VALUES + (304, 2, 130, 0, 0, 0, 0, 41, 76, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, -968.206, -868.967, 13.2656, 0, 0, 1.08971, 6, 201, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 4750, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`) VALUES + (305, 2, 140, 0, 0, 0, 0, 32, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, -973.192, -875.855, 12.8791, 0, 0, 0.822114, 6, 201, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 2400, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`) VALUES + (306, 2, 164, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, -989.644, -824.774, 7.12597, 0, 0, 3.12791, 6, 201, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 15000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`) VALUES + (307, 2, 204, 0, 0, 0, 0, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, -965.592, -860.48, 12.8871, 0, 0, 1.1847, 6, 201, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 2500, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`) VALUES + (308, 2, 149, 0, 0, 0, 0, 59, 75, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, -966.155, -855.875, 12.9219, 0, 0, 1.39879, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 3500, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`) VALUES + (309, 2, 205, 0, 0, 0, 0, 41, 29, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, -965.04, -852.363, 12.8994, 0, 0, 1.44163, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 6000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`) VALUES + (310, 2, 197, 0, 0, 0, 0, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, -965.029, -848.421, 12.8642, 0, 0, 1.43081, 6, 201, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 5250, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`) VALUES + (311, 2, 208, 0, 0, 0, 0, 42, 42, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, -964.721, -844.608, 13.1339, 0, 0, 1.52394, 6, 201, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 3250, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`) VALUES + (312, 2, 209, 0, 0, 0, 0, 14, 32, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, -965.016, -841.054, 12.9559, 0, 0, 1.53651, 6, 201, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 4500, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`) VALUES + (313, 2, 211, 0, 0, 0, 0, 3, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, -964.673, -837.367, 12.8576, 0, 0, 1.51387, 6, 201, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 10000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`) VALUES + (314, 2, 222, 0, 0, 0, 0, 33, 78, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, -964.774, -832.762, 12.8844, 0, 0, 1.51272, 6, 201, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 2000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`) VALUES + (315, 2, 230, 0, 0, 0, 0, 48, 65, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, -964.115, -828.989, 13.2367, 0, 0, 1.55643, 6, 201, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 3000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`) VALUES + (316, 2, 219, 0, 0, 0, 0, 32, 42, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, -964.923, -824.966, 13.3115, 0, 0, 1.56249, 6, 201, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 4750, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`) VALUES + (317, 2, 179, 0, 0, 0, 0, 16, 74, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, -985.562, -824.846, 7.45749, 0, 0, -3.1114, 6, 201, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 27500, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`) VALUES + (318, 2, 174, 0, 0, 0, 0, 64, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, -993.506, -825.182, 7.22026, 0, 0, -3.13612, 6, 201, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 25000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`) VALUES + (319, 2, 142, 0, 0, 0, 0, 13, 72, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, -997.382, -825.397, 7.10469, 0, 0, 3.12664, 6, 201, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 17500, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`) VALUES + (320, 2, 193, 0, 0, 0, 0, 53, 53, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, -967.23, -823.644, 6.2945, 0, 0, 1.56423, 6, 201, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 3500, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`) VALUES + (321, 2, 166, 0, 0, 0, 0, 14, 75, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, -967.043, -825.686, 6.29443, 0, 0, 1.61558, 6, 201, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 4000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`) VALUES + (322, 2, 198, 0, 0, 0, 0, 46, 46, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, -967.063, -827.738, 6.43505, 0, 0, 1.54959, 6, 201, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 3000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`) VALUES + (323, 2, 191, 0, 0, 0, 0, 22, 22, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, -967.07, -829.886, 6.31988, 0, 0, 1.58164, 6, 201, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 4500, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`) VALUES + (324, 2, 192, 0, 0, 0, 0, 33, 37, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, -966.719, -831.972, 6.35928, 0, 0, 1.58748, 6, 201, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`) VALUES + (325, 2, 210, 0, 0, 0, 0, 6, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, -1019.12, -844.436, 12.85, 0, 0, -1.61629, 6, 201, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 85000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`) VALUES + (326, 2, 132, 0, 0, 0, 0, 35, 35, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, -1015.09, -848.702, 12.8354, 0, 0, -1.52303, 6, 201, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 75000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`) VALUES + (327, 2, 141, 0, 0, 0, 0, 11, 11, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, -1010.9, -852.751, 12.7769, 0, 0, -1.23101, 6, 201, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 100000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`) VALUES + (328, 2, 159, 0, 0, 0, 0, 36, 36, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, -1007.32, -856.729, 12.8655, 0, 0, -1.08926, 6, 201, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 80000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`) VALUES + (329, 2, 145, 0, 0, 0, 0, 36, 36, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, -1004.13, -860.21, 12.8584, 0, 0, -0.843169, 6, 201, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 80000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`) VALUES + (330, 1, 106, 0, 0, 0, 0, 1, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 212.281, -41.5702, 16.4286, 0, 0, -0.00175398, 2, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`) VALUES + (331, 1, 106, 0, 0, 0, 0, 1, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 220.664, -41.2063, 16.4286, 0, 0, -0.00824242, 2, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`) VALUES + (332, 1, 106, 0, 0, 0, 0, 1, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 240.307, -41.481, 16.4286, 0, 0, -0.00575317, 2, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`) VALUES + (333, 1, 106, 0, 0, 0, 0, 1, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 248.963, -41.6128, 16.4285, 0, 0, -0.0129603, 2, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`) VALUES + (334, 1, 127, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, -72.9919, -331.528, 16.2616, 0, 0, -0.0204993, 2, 17, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`) VALUES + (335, 1, 97, 0, 0, 0, 0, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, -83.3733, -442.729, 16.3754, 0, 0, 1.53779, 2, 9, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`) VALUES + (336, 1, 97, 0, 0, 0, 0, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, -83.3866, -432.508, 16.3646, 0, 0, 1.56684, 2, 9, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`) VALUES + (337, 1, 116, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, -662.811, -422.455, 18.5614, 0, 0, -0.227887, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`) VALUES + (338, 1, 102, 0, 0, 0, 0, 44, 74, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, -739.187, -576.721, 8.54147, 0, 0, -0.412251, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`) VALUES + (339, 2, 236, 0, 0, 0, 0, 7, 7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 349.923, -507.823, 12.098, 0, 0, -0.695444, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`) VALUES + (340, 2, 236, 0, 0, 0, 0, 3, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 352.536, -509.998, 12.098, 0, 0, -0.71261, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`) VALUES + (341, 1, 111, 0, 0, 0, 0, 34, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 1120.8, -105.232, 9.55985, 0, 0, -3.09175, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_type`, `veh_owner_id`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`) VALUES + (342, 1, 111, 0, 0, 0, 0, 26, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 1209.73, -90.2957, 12.9842, 0, 0, -2.2061, 6, 204, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 2500, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +/*!40000 ALTER TABLE `veh_main` ENABLE KEYS */; + +/*!40101 SET SQL_MODE=IFNULL(@OLD_SQL_MODE, '') */; +/*!40014 SET FOREIGN_KEY_CHECKS=IF(@OLD_FOREIGN_KEY_CHECKS IS NULL, 1, @OLD_FOREIGN_KEY_CHECKS) */; +/*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */; +/*!40111 SET SQL_NOTES=@OLD_SQL_NOTES */; diff --git a/misc/backup/database/asshat-21DEC2020-2350.sql b/misc/backup/database/asshat-21DEC2020-2350.sql new file mode 100644 index 00000000..ef9ac68c --- /dev/null +++ b/misc/backup/database/asshat-21DEC2020-2350.sql @@ -0,0 +1,6205 @@ +-- -------------------------------------------------------- +-- Host: 158.69.238.64 +-- Server version: 5.7.20 - MySQL Community Server (GPL) +-- Server OS: Win64 +-- HeidiSQL Version: 11.1.0.6116 +-- -------------------------------------------------------- + +/*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */; +/*!40101 SET NAMES utf8 */; +/*!50503 SET NAMES utf8mb4 */; +/*!40014 SET @OLD_FOREIGN_KEY_CHECKS=@@FOREIGN_KEY_CHECKS, FOREIGN_KEY_CHECKS=0 */; +/*!40101 SET @OLD_SQL_MODE=@@SQL_MODE, SQL_MODE='NO_AUTO_VALUE_ON_ZERO' */; +/*!40111 SET @OLD_SQL_NOTES=@@SQL_NOTES, SQL_NOTES=0 */; + + +-- Dumping database structure for db24053 +CREATE DATABASE IF NOT EXISTS `db24053` /*!40100 DEFAULT CHARACTER SET utf8 */; +USE `db24053`; + +-- Dumping structure for table db24053.acct_auth +CREATE TABLE IF NOT EXISTS `acct_auth` ( + `acct_auth_id` int(11) NOT NULL AUTO_INCREMENT, + `acct_auth_acct` int(11) NOT NULL DEFAULT '0', + `acct_auth_type` int(11) NOT NULL DEFAULT '0', + `acct_auth_detail` varchar(128) NOT NULL DEFAULT '', + `acct_auth_smscarrier` int(11) NOT NULL, + `acct_auth_verified` tinyint(1) NOT NULL DEFAULT '0', + `acct_auth_when_verified` int(32) NOT NULL DEFAULT '0', + `acct_auth_verifycode` varchar(32) NOT NULL DEFAULT '', + PRIMARY KEY (`acct_auth_id`) +) ENGINE=InnoDB DEFAULT CHARSET=latin1 COMMENT='Accounts - Authentication Methods'; + +-- Dumping data for table db24053.acct_auth: ~0 rows (approximately) +/*!40000 ALTER TABLE `acct_auth` DISABLE KEYS */; +/*!40000 ALTER TABLE `acct_auth` ENABLE KEYS */; + +-- Dumping structure for table db24053.acct_bl +CREATE TABLE IF NOT EXISTS `acct_bl` ( + `acct_bl_id` int(11) NOT NULL, + `acct_bl_ip` int(24) DEFAULT NULL, + `acct_bl_uid` varchar(128) DEFAULT NULL, + `acct_bl_when_added` int(32) DEFAULT NULL, + `acct_bl_acct` int(11) DEFAULT NULL, + `acct_bl_enabled` tinyint(1) DEFAULT '1', + PRIMARY KEY (`acct_bl_id`) +) ENGINE=InnoDB DEFAULT CHARSET=latin1 COMMENT='Accounts - Access Blacklist'; + +-- Dumping data for table db24053.acct_bl: ~0 rows (approximately) +/*!40000 ALTER TABLE `acct_bl` DISABLE KEYS */; +/*!40000 ALTER TABLE `acct_bl` ENABLE KEYS */; + +-- Dumping structure for table db24053.acct_contact +CREATE TABLE IF NOT EXISTS `acct_contact` ( + `acct_contact_id` int(11) NOT NULL AUTO_INCREMENT, + `acct_contact_acct` int(11) NOT NULL DEFAULT '0', + `acct_contact_contact` int(11) NOT NULL DEFAULT '0', + `acct_contact_type` int(11) NOT NULL DEFAULT '0', + `acct_contact_when_added` int(32) NOT NULL DEFAULT '0', + `acct_contact_accepted` tinyint(1) NOT NULL DEFAULT '0', + `acct_contact_when_accepted` int(32) NOT NULL DEFAULT '0', + `acct_contact_deleted` tinyint(1) NOT NULL DEFAULT '0', + PRIMARY KEY (`acct_contact_id`) +) ENGINE=InnoDB DEFAULT CHARSET=latin1 COMMENT='Accounts - Contacts (Friends/Blocked/Etc)'; + +-- Dumping data for table db24053.acct_contact: ~0 rows (approximately) +/*!40000 ALTER TABLE `acct_contact` DISABLE KEYS */; +/*!40000 ALTER TABLE `acct_contact` ENABLE KEYS */; + +-- Dumping structure for table db24053.acct_hotkey +CREATE TABLE IF NOT EXISTS `acct_hotkey` ( + `acct_hotkey_id` int(11) NOT NULL AUTO_INCREMENT, + `acct_hotkey_key` int(11) NOT NULL DEFAULT '0', + `acct_hotkey_cmdstr` varchar(128) NOT NULL DEFAULT '', + `acct_hotkey_enabled` tinyint(1) NOT NULL DEFAULT '1', + `acct_hotkey_when_added` int(32) NOT NULL DEFAULT '0', + `acct_hotkey_acct` int(11) NOT NULL DEFAULT '0', + `acct_hotkey_down` int(11) NOT NULL DEFAULT '0', + PRIMARY KEY (`acct_hotkey_id`) +) ENGINE=InnoDB AUTO_INCREMENT=5 DEFAULT CHARSET=latin1 COMMENT='Accounts - Custom Hotkeys'; + +-- Dumping data for table db24053.acct_hotkey: ~4 rows (approximately) +/*!40000 ALTER TABLE `acct_hotkey` DISABLE KEYS */; +INSERT INTO `acct_hotkey` (`acct_hotkey_id`, `acct_hotkey_key`, `acct_hotkey_cmdstr`, `acct_hotkey_enabled`, `acct_hotkey_when_added`, `acct_hotkey_acct`, `acct_hotkey_down`) VALUES + (1, 105, 'engine', 1, 1608596334, 1, 0); +INSERT INTO `acct_hotkey` (`acct_hotkey_id`, `acct_hotkey_key`, `acct_hotkey_cmdstr`, `acct_hotkey_enabled`, `acct_hotkey_when_added`, `acct_hotkey_acct`, `acct_hotkey_down`) VALUES + (2, 107, 'lights', 1, 1608596334, 1, 0); +INSERT INTO `acct_hotkey` (`acct_hotkey_id`, `acct_hotkey_key`, `acct_hotkey_cmdstr`, `acct_hotkey_enabled`, `acct_hotkey_when_added`, `acct_hotkey_acct`, `acct_hotkey_down`) VALUES + (3, 108, 'lock', 1, 1608596334, 1, 0); +INSERT INTO `acct_hotkey` (`acct_hotkey_id`, `acct_hotkey_key`, `acct_hotkey_cmdstr`, `acct_hotkey_enabled`, `acct_hotkey_when_added`, `acct_hotkey_acct`, `acct_hotkey_down`) VALUES + (4, 102, 'enter', 1, 1608596334, 1, 0); +/*!40000 ALTER TABLE `acct_hotkey` ENABLE KEYS */; + +-- Dumping structure for table db24053.acct_main +CREATE TABLE IF NOT EXISTS `acct_main` ( + `acct_id` int(11) NOT NULL AUTO_INCREMENT, + `acct_name` varchar(32) NOT NULL DEFAULT '', + `acct_pass` varchar(512) NOT NULL DEFAULT '', + `acct_email` varchar(128) NOT NULL DEFAULT '', + `acct_settings` int(11) NOT NULL DEFAULT '0', + `acct_staff_flags` int(11) NOT NULL DEFAULT '0', + `acct_staff_title` varchar(32) NOT NULL DEFAULT '', + `acct_mod_flags` int(11) NOT NULL DEFAULT '0', + `acct_irc` varchar(64) NOT NULL DEFAULT '', + `acct_discord` int(64) NOT NULL DEFAULT '0', + `acct_ip` varchar(50) NOT NULL DEFAULT '', + PRIMARY KEY (`acct_id`) +) ENGINE=InnoDB AUTO_INCREMENT=4 DEFAULT CHARSET=latin1 COMMENT='Accounts'; + +-- Dumping data for table db24053.acct_main: ~3 rows (approximately) +/*!40000 ALTER TABLE `acct_main` DISABLE KEYS */; +INSERT INTO `acct_main` (`acct_id`, `acct_name`, `acct_pass`, `acct_email`, `acct_settings`, `acct_staff_flags`, `acct_staff_title`, `acct_mod_flags`, `acct_irc`, `acct_discord`, `acct_ip`) VALUES + (1, 'Vortrex', '4271461D21D2A465D0FF2B7082A9136F1DACD78127C805E2B33292AAA200E5682F4B7D4AB426224222B24AA1183C4D02FEE983030996CF3963746AE1C46A375D', 'adrianbram@gmail.com', 64, -1, 'Scripter', 0, '', 0, '107.220.15.21'); +INSERT INTO `acct_main` (`acct_id`, `acct_name`, `acct_pass`, `acct_email`, `acct_settings`, `acct_staff_flags`, `acct_staff_title`, `acct_mod_flags`, `acct_irc`, `acct_discord`, `acct_ip`) VALUES + (2, 'maxaxle', '33A31BF6E32BD3BCCE1D2F2AB3B0D0768CEDAD30BC21A2EFA5F8A66BD7333A5545EFC773830E9F0B3C7AA285E3FDF60BADD1E93401AF9FC26CC25BB77238D750', '', 0, 0, '', 0, '', 0, '73.64.156.245'); +INSERT INTO `acct_main` (`acct_id`, `acct_name`, `acct_pass`, `acct_email`, `acct_settings`, `acct_staff_flags`, `acct_staff_title`, `acct_mod_flags`, `acct_irc`, `acct_discord`, `acct_ip`) VALUES + (3, 'Vortrex2', '26B8F7687300F0BF90F79BEC5E84CCD57582DD09C345F256EBE99057595302E25C1958472172D4689D7B2DA607584AC2420D5909FEDB3E2B7A0F73A517A8AC1C', '', 0, 0, '', 0, '', 0, ''); +/*!40000 ALTER TABLE `acct_main` ENABLE KEYS */; + +-- Dumping structure for table db24053.acct_msg +CREATE TABLE IF NOT EXISTS `acct_msg` ( + `acct_msg_id` int(11) NOT NULL AUTO_INCREMENT, + `acct_msg_acct` int(11) NOT NULL DEFAULT '0', + `acct_msg_who_sent` int(11) NOT NULL DEFAULT '0', + `acct_msg_when_sent` int(32) NOT NULL DEFAULT '0', + `acct_msg_when_read` int(32) NOT NULL DEFAULT '0', + `acct_msg_deleted` tinyint(1) NOT NULL DEFAULT '0', + `acct_msg_when_deleted` int(32) NOT NULL DEFAULT '0', + `acct_msg_folder` int(11) NOT NULL DEFAULT '0', + `acct_msg_message` text NOT NULL, + PRIMARY KEY (`acct_msg_id`) +) ENGINE=InnoDB DEFAULT CHARSET=latin1 COMMENT='Accounts - Private Messages (Mail)'; + +-- Dumping data for table db24053.acct_msg: ~0 rows (approximately) +/*!40000 ALTER TABLE `acct_msg` DISABLE KEYS */; +/*!40000 ALTER TABLE `acct_msg` ENABLE KEYS */; + +-- Dumping structure for table db24053.acct_note +CREATE TABLE IF NOT EXISTS `acct_note` ( + `acct_note_id` int(11) NOT NULL AUTO_INCREMENT, + `acct_note_acct` int(11) NOT NULL DEFAULT '0', + `acct_server` int(11) NOT NULL DEFAULT '0', + `acct_note_who_added` int(11) NOT NULL DEFAULT '0', + `acct_note_when_added` int(32) NOT NULL DEFAULT '0', + `acct_note_message` varchar(255) NOT NULL DEFAULT '', + `acct_note_deleted` tinyint(1) NOT NULL DEFAULT '0', + `acct_note_who_deleted` int(11) NOT NULL DEFAULT '0', + `acct_note_when_deleted` int(32) NOT NULL DEFAULT '0', + PRIMARY KEY (`acct_note_id`) +) ENGINE=InnoDB DEFAULT CHARSET=latin1 COMMENT='Accounts - Staff Notes'; + +-- Dumping data for table db24053.acct_note: ~0 rows (approximately) +/*!40000 ALTER TABLE `acct_note` DISABLE KEYS */; +/*!40000 ALTER TABLE `acct_note` ENABLE KEYS */; + +-- Dumping structure for table db24053.acct_wl +CREATE TABLE IF NOT EXISTS `acct_wl` ( + `acct_wl_id` int(11) NOT NULL AUTO_INCREMENT, + `acct_wl_ip` int(24) NOT NULL DEFAULT '0', + `acct_wl_uid` varchar(128) NOT NULL DEFAULT '', + `acct_wl_when_added` int(32) NOT NULL DEFAULT '0', + `acct_wl_acct` int(11) NOT NULL DEFAULT '0', + `acct_wl_enabled` tinyint(1) NOT NULL DEFAULT '0', + PRIMARY KEY (`acct_wl_id`) +) ENGINE=InnoDB DEFAULT CHARSET=latin1 COMMENT='Accounts - Access Whitelist'; + +-- Dumping data for table db24053.acct_wl: ~0 rows (approximately) +/*!40000 ALTER TABLE `acct_wl` DISABLE KEYS */; +/*!40000 ALTER TABLE `acct_wl` ENABLE KEYS */; + +-- Dumping structure for table db24053.ac_script_bl +CREATE TABLE IF NOT EXISTS `ac_script_bl` ( + `ac_script_bl_id` int(11) NOT NULL AUTO_INCREMENT, + `ac_script_bl_server` int(11) NOT NULL DEFAULT '0', + `ac_script_bl_name` varchar(50) NOT NULL DEFAULT '', + `ac_script_bl_enabled` int(11) NOT NULL DEFAULT '0', + PRIMARY KEY (`ac_script_bl_id`) +) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8 COMMENT='Anticheat - Blacklisted Scripts'; + +-- Dumping data for table db24053.ac_script_bl: ~1 rows (approximately) +/*!40000 ALTER TABLE `ac_script_bl` DISABLE KEYS */; +INSERT INTO `ac_script_bl` (`ac_script_bl_id`, `ac_script_bl_server`, `ac_script_bl_name`, `ac_script_bl_enabled`) VALUES + (1, 4, 'load_modmanager', 1); +/*!40000 ALTER TABLE `ac_script_bl` ENABLE KEYS */; + +-- Dumping structure for table db24053.ac_script_wl +CREATE TABLE IF NOT EXISTS `ac_script_wl` ( + `ac_script_wl_id` int(11) NOT NULL AUTO_INCREMENT, + `ac_script_wl_server` int(11) NOT NULL DEFAULT '0', + `ac_script_wl_name` varchar(50) NOT NULL DEFAULT '', + `ac_script_wl_enabled` int(11) NOT NULL DEFAULT '1', + PRIMARY KEY (`ac_script_wl_id`) USING BTREE +) ENGINE=InnoDB AUTO_INCREMENT=7 DEFAULT CHARSET=utf8 COMMENT='Anticheat - Whitelisted Scripts'; + +-- Dumping data for table db24053.ac_script_wl: ~5 rows (approximately) +/*!40000 ALTER TABLE `ac_script_wl` DISABLE KEYS */; +INSERT INTO `ac_script_wl` (`ac_script_wl_id`, `ac_script_wl_server`, `ac_script_wl_name`, `ac_script_wl_enabled`) VALUES + (1, 4, 'sync', 1); +INSERT INTO `ac_script_wl` (`ac_script_wl_id`, `ac_script_wl_server`, `ac_script_wl_name`, `ac_script_wl_enabled`) VALUES + (2, 4, 'gtac', 1); +INSERT INTO `ac_script_wl` (`ac_script_wl_id`, `ac_script_wl_server`, `ac_script_wl_name`, `ac_script_wl_enabled`) VALUES + (3, 4, 'network_main', 1); +INSERT INTO `ac_script_wl` (`ac_script_wl_id`, `ac_script_wl_server`, `ac_script_wl_name`, `ac_script_wl_enabled`) VALUES + (4, 4, 'mpcellphone', 1); +INSERT INTO `ac_script_wl` (`ac_script_wl_id`, `ac_script_wl_server`, `ac_script_wl_name`, `ac_script_wl_enabled`) VALUES + (5, 4, 'speechcontrol_net', 1); +/*!40000 ALTER TABLE `ac_script_wl` ENABLE KEYS */; + +-- Dumping structure for table db24053.atm_main +CREATE TABLE IF NOT EXISTS `atm_main` ( + `atm_id` int(11) NOT NULL AUTO_INCREMENT, + `atm_server` tinyint(2) NOT NULL DEFAULT '0', + `atm_pos_x` float NOT NULL DEFAULT '0', + `atm_pos_y` float NOT NULL DEFAULT '0', + `atm_pos_z` float NOT NULL DEFAULT '0', + `atm_fee` int(11) NOT NULL DEFAULT '0', + `atm_disabled` tinyint(1) NOT NULL DEFAULT '0', + PRIMARY KEY (`atm_id`) +) ENGINE=InnoDB DEFAULT CHARSET=latin1 COMMENT='ATMs'; + +-- Dumping data for table db24053.atm_main: ~0 rows (approximately) +/*!40000 ALTER TABLE `atm_main` DISABLE KEYS */; +/*!40000 ALTER TABLE `atm_main` ENABLE KEYS */; + +-- Dumping structure for table db24053.atm_use +CREATE TABLE IF NOT EXISTS `atm_use` ( + `atm_use_id` int(11) NOT NULL AUTO_INCREMENT, + `atm_use_atm` int(11) NOT NULL DEFAULT '0', + `atm_use_bankacct` int(11) NOT NULL DEFAULT '0', + `atm_use_amount` int(11) NOT NULL DEFAULT '0', + `atm_use_when` int(32) NOT NULL DEFAULT '0', + `atm_use_balance_before` int(11) NOT NULL DEFAULT '0', + `atm_use_balance_after` int(11) NOT NULL DEFAULT '0', + `atm_use_result` int(11) NOT NULL DEFAULT '0', + PRIMARY KEY (`atm_use_id`) +) ENGINE=InnoDB DEFAULT CHARSET=latin1 COMMENT='ATMs - Usage'; + +-- Dumping data for table db24053.atm_use: ~0 rows (approximately) +/*!40000 ALTER TABLE `atm_use` DISABLE KEYS */; +/*!40000 ALTER TABLE `atm_use` ENABLE KEYS */; + +-- Dumping structure for table db24053.bank_main +CREATE TABLE IF NOT EXISTS `bank_main` ( + `bank_id` int(11) NOT NULL AUTO_INCREMENT, + `bank_server` int(11) NOT NULL DEFAULT '0', + `bank_name` varchar(128) NOT NULL DEFAULT 'Unnamed', + `bank_active` tinyint(1) NOT NULL DEFAULT '1', + `ban_try_when_tried` int(32) NOT NULL DEFAULT '0', + `ban_try_ban_id` int(11) NOT NULL DEFAULT '0', + PRIMARY KEY (`bank_id`) +) ENGINE=InnoDB DEFAULT CHARSET=latin1 COMMENT='Bans - Connection Attempts'; + +-- Dumping data for table db24053.bank_main: ~0 rows (approximately) +/*!40000 ALTER TABLE `bank_main` DISABLE KEYS */; +/*!40000 ALTER TABLE `bank_main` ENABLE KEYS */; + +-- Dumping structure for table db24053.ban_main +CREATE TABLE IF NOT EXISTS `ban_main` ( + `ban_id` int(11) NOT NULL AUTO_INCREMENT, + `ban_server` tinyint(2) NOT NULL DEFAULT '0', + `ban_type` tinyint(1) NOT NULL DEFAULT '0', + `ban_ip_start` int(24) NOT NULL DEFAULT '0', + `ban_ip_end` int(24) NOT NULL DEFAULT '0', + `ban_uid` varchar(256) NOT NULL DEFAULT '', + `ban_who_added` int(11) NOT NULL DEFAULT '0', + `ban_when_added` int(32) NOT NULL DEFAULT '0', + `ban_reason` varchar(255) NOT NULL DEFAULT '', + `ban_deleted` tinyint(1) NOT NULL DEFAULT '0', + `ban_who_deleted` int(11) NOT NULL DEFAULT '0', + `ban_when_deleted` int(32) NOT NULL DEFAULT '0', + `ban_when_end` int(32) NOT NULL DEFAULT '0', + PRIMARY KEY (`ban_id`) +) ENGINE=InnoDB DEFAULT CHARSET=latin1 COMMENT='Bans'; + +-- Dumping data for table db24053.ban_main: ~0 rows (approximately) +/*!40000 ALTER TABLE `ban_main` DISABLE KEYS */; +/*!40000 ALTER TABLE `ban_main` ENABLE KEYS */; + +-- Dumping structure for table db24053.ban_try +CREATE TABLE IF NOT EXISTS `ban_try` ( + `ban_try_id` int(11) NOT NULL AUTO_INCREMENT, + `ban_try_server` tinyint(2) NOT NULL DEFAULT '0', + `ban_try_ip` int(24) NOT NULL DEFAULT '0', + `ban_try_uid` varchar(128) NOT NULL DEFAULT '', + `ban_try_when_tried` int(32) NOT NULL DEFAULT '0', + `ban_try_ban_id` int(11) NOT NULL DEFAULT '0', + PRIMARY KEY (`ban_try_id`) +) ENGINE=InnoDB DEFAULT CHARSET=latin1 COMMENT='Bans - Connection Attempts'; + +-- Dumping data for table db24053.ban_try: ~0 rows (approximately) +/*!40000 ALTER TABLE `ban_try` DISABLE KEYS */; +/*!40000 ALTER TABLE `ban_try` ENABLE KEYS */; + +-- Dumping structure for table db24053.biz_buy +CREATE TABLE IF NOT EXISTS `biz_buy` ( + `biz_buy_id` int(11) NOT NULL AUTO_INCREMENT, + `biz_buy_biz` int(11) NOT NULL DEFAULT '0', + `biz_buy_sacct` int(11) NOT NULL DEFAULT '0', + `biz_buy_amount` int(11) NOT NULL DEFAULT '0', + `biz_buy_prod` int(11) NOT NULL DEFAULT '0', + `biz_buy_tip` int(11) NOT NULL DEFAULT '0', + `biz_buy_result` tinyint(4) NOT NULL DEFAULT '0', + PRIMARY KEY (`biz_buy_id`) +) ENGINE=InnoDB DEFAULT CHARSET=latin1 COMMENT='Businesses - Purchases'; + +-- Dumping data for table db24053.biz_buy: ~0 rows (approximately) +/*!40000 ALTER TABLE `biz_buy` DISABLE KEYS */; +/*!40000 ALTER TABLE `biz_buy` ENABLE KEYS */; + +-- Dumping structure for table db24053.biz_loc +CREATE TABLE IF NOT EXISTS `biz_loc` ( + `biz_loc_id` int(11) NOT NULL AUTO_INCREMENT, + `biz_loc_server` int(11) NOT NULL DEFAULT '0', + `biz_loc_name` varchar(128) NOT NULL DEFAULT '', + `biz_loc_type` int(11) NOT NULL DEFAULT '0', + `biz_loc_biz` int(11) NOT NULL DEFAULT '0', + `biz_loc_enabled` int(11) NOT NULL DEFAULT '0', + `biz_loc_pos_x` float NOT NULL DEFAULT '0', + `biz_loc_pos_y` float NOT NULL DEFAULT '0', + `biz_loc_pos_z` float NOT NULL DEFAULT '0', + `biz_loc_rot_z` float NOT NULL DEFAULT '0', + `biz_loc_int` int(11) NOT NULL DEFAULT '0', + `biz_loc_vw` int(11) NOT NULL DEFAULT '0', + PRIMARY KEY (`biz_loc_id`) USING BTREE +) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Businesses - Locations'; + +-- Dumping data for table db24053.biz_loc: ~0 rows (approximately) +/*!40000 ALTER TABLE `biz_loc` DISABLE KEYS */; +/*!40000 ALTER TABLE `biz_loc` ENABLE KEYS */; + +-- Dumping structure for table db24053.biz_main +CREATE TABLE IF NOT EXISTS `biz_main` ( + `biz_id` int(11) NOT NULL AUTO_INCREMENT, + `biz_server` int(11) NOT NULL DEFAULT '0', + `biz_name` varchar(40) NOT NULL DEFAULT 'Unnamed Business', + `biz_type` int(11) NOT NULL DEFAULT '0', + `biz_buy_price` int(11) NOT NULL DEFAULT '0', + `biz_owner_type` int(11) NOT NULL DEFAULT '0', + `biz_owner_id` int(11) NOT NULL DEFAULT '0', + `biz_entrance_pos_x` float NOT NULL DEFAULT '0', + `biz_entrance_pos_y` float NOT NULL DEFAULT '0', + `biz_entrance_pos_z` float NOT NULL DEFAULT '0', + `biz_entrance_rot_z` float NOT NULL DEFAULT '0', + `biz_entrance_int` int(11) NOT NULL DEFAULT '0', + `biz_entrance_vw` int(11) NOT NULL DEFAULT '0', + `biz_entrance_pickup` int(11) NOT NULL, + `biz_entrance_blip` int(11) NOT NULL, + `biz_exit_pos_x` float NOT NULL DEFAULT '0', + `biz_exit_pos_y` float NOT NULL DEFAULT '0', + `biz_exit_pos_z` float NOT NULL DEFAULT '0', + `biz_exit_rot_z` float NOT NULL DEFAULT '0', + `biz_exit_int` int(11) NOT NULL DEFAULT '0', + `biz_exit_vw` int(11) NOT NULL DEFAULT '0', + `biz_exit_pickup` int(11) NOT NULL, + `biz_exit_blip` int(11) NOT NULL, + `biz_misc_customext` int(11) NOT NULL DEFAULT '0', + `biz_misc_customint` int(11) NOT NULL DEFAULT '0', + `biz_supply_pos_x` float NOT NULL DEFAULT '0', + `biz_supply_pos_y` float NOT NULL DEFAULT '0', + `biz_supply_pos_z` float NOT NULL DEFAULT '0', + `biz_buy_pos_x` float NOT NULL DEFAULT '0', + `biz_buy_pos_y` float NOT NULL DEFAULT '0', + `biz_buy_pos_z` float NOT NULL DEFAULT '0', + `biz_buy_rot_z` float NOT NULL DEFAULT '0', + `biz_misc_customvw` int(11) NOT NULL DEFAULT '0', + `biz_locked` int(11) NOT NULL DEFAULT '0', + `biz_till` int(11) NOT NULL DEFAULT '0', + PRIMARY KEY (`biz_id`) USING BTREE +) ENGINE=InnoDB AUTO_INCREMENT=203 DEFAULT CHARSET=latin1 COMMENT='Businesses'; + +-- Dumping data for table db24053.biz_main: ~202 rows (approximately) +/*!40000 ALTER TABLE `biz_main` DISABLE KEYS */; +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`) VALUES + (1, 4, 'Unnamed Business', 5, 25000, 0, 0, -90.2436, -1219.76, 2.71, 350.178, 0, 0, 0, 0, -2026.9, -104.128, 1035.17, 179.07, 3, 0, 0, 0, 0, 0, -93.521, -1241.12, 1.92454, -104.326, -1213.02, 2.76131, 174.391, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`) VALUES + (2, 4, 'Unnamed Business', 8, 25000, 0, 0, 2078.66, -1582.38, 13.4873, 337.053, 0, 0, 0, 0, -25.8433, -187.446, 1003.55, 4.72576, 17, 0, 0, 0, 0, 0, 1795.3, -1166.21, 23.8281, 2127.1, -1134.72, 25.5488, 351.147, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`) VALUES + (3, 4, 'Unnamed Business', 0, 25000, 0, 0, 0, 0, 0, 92.181, 0, 0, 0, 0, -25.722, -187.822, 1003.55, 5.07593, 17, 0, 0, 0, 0, 0, 1774.54, -1723.43, 13.5469, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`) VALUES + (4, 4, 'Unnamed Business', 4, 25000, 0, 0, 984.176, -1336.44, 13.5469, 199.037, 0, 0, 0, 0, 315.799, -143.53, 999.602, 1.01837, 7, 0, 0, 0, 0, 1, 1872.19, -1621.2, 13.5469, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`) VALUES + (5, 4, 'Unnamed Business', 1, 25000, 0, 0, 1653.2, 1470.7, 1152.43, 299.874, 0, 0, 0, 0, -25.9841, -187.986, 1003.55, 357.842, 17, 0, 0, 0, 0, 0, 1837.36, -1434.91, 13.5625, 1704.68, -1587.22, 13.5383, 87.0352, 4, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`) VALUES + (6, 4, 'Unnamed Business', 3, 25000, 0, 0, 1333.37, -1864.21, 13.5469, 154.702, 0, 0, 0, 0, 6.6435, -31.4626, 1003.55, 191.882, 10, 0, 0, 0, 0, 1, 1565.82, -1167.49, 24.0781, 1647.94, -2483.22, 13.5547, 87.3502, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`) VALUES + (7, 4, 'Unnamed Business', 5, 25000, 0, 0, 1026.38, -1927.19, 12.7989, 154.459, 0, 0, 0, 0, 1226.77, -813.652, 1084.01, 353.088, 5, 0, 0, 0, 0, 1, 1915.87, -1790.69, 13.3906, 1026.22, -1915.85, 12.8776, 266.223, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`) VALUES + (8, 4, 'Unnamed Business', 3, 25000, 0, 0, -172.128, -1825.41, 55.408, 215.571, 0, 0, 0, 0, 1445.44, -1294.74, 13.5469, 100.653, 0, 0, 0, 0, 1, 0, 1448.97, -1285.72, 13.5469, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`) VALUES + (9, 4, 'Unnamed Business', 0, 25000, 0, 0, 0, 0, 0, 206.856, 0, 0, 0, 0, 1704.68, 1394.8, 10.6721, 54.1891, 0, 0, 0, 0, 0, 0, 1743.66, -1585.46, 13.5482, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`) VALUES + (10, 4, 'Unnamed Business', 3, 25000, 0, 0, 1525.41, -1671.54, 6.21875, 83.7091, 0, 0, 0, 0, 372.532, -133.314, 1001.49, 359.576, 5, 0, 0, 0, 0, 0, -2434.94, -195.644, 35.3203, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`) VALUES + (11, 4, 'Unnamed Business', 8, 25000, 0, 0, 1070.49, -1873.66, 13.5469, 274.819, 0, 0, 0, 0, -31.0053, -91.6372, 1003.55, 0.680122, 18, 0, 0, 0, 0, 0, -66.1294, -1169.59, 1.86967, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`) VALUES + (12, 4, 'Unnamed Business', 4, 25000, 0, 0, 1368.98, -1279.67, 13.5469, 262.027, 0, 0, 0, 0, 315.902, -143.025, 999.602, 5.53311, 7, 0, 0, 0, 0, 0, 1365.63, -1285.08, 13.5469, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`) VALUES + (13, 4, 'Unnamed Business', 2, 25000, 0, 0, 1709.03, 1443.96, 1145.78, 281.106, 0, 0, 0, 0, -2029.62, -119.618, 1035.17, 1.0423, 3, 0, 0, 0, 0, 0, -1579.28, 2652.63, 55.8359, -1600.75, 2645.28, 57.6595, 120.282, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`) VALUES + (14, 4, 'Unnamed Business', 8, 25000, 0, 0, 1343.73, -1506.56, 13.5469, 234.154, 0, 0, 0, 0, -25.8373, -188.091, 1003.55, 355.897, 17, 0, 0, 0, 0, 0, 2156.02, -1020.91, 62.7113, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`) VALUES + (15, 4, 'Unnamed Business', 0, 25000, 0, 0, 0, 0, 0, 178.341, 0, 0, 0, 0, 493.229, -24.4678, 1000.68, 354.663, 17, 0, 0, 0, 0, 0, 1425.26, -1142.76, 23.9265, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`) VALUES + (16, 4, 'Unnamed Business', 1, 25000, 0, 0, -1676.24, 432.104, 7.17969, 33.0359, 0, 0, 0, 0, -27.3621, -57.8246, 1003.55, 179.037, 6, 0, 0, 0, 1, 0, -1661.84, 442.168, 7.17969, -1591.62, 2657.25, 55.7501, 356.386, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`) VALUES + (17, 4, 'Unnamed Business', 8, 25000, 0, 0, 667.208, -1770.07, 13.6395, 164.522, 0, 0, 0, 0, -25.8373, -188.091, 1003.55, 355.897, 17, 0, 0, 0, 0, 0, 1844.34, -1860.84, 13.3828, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`) VALUES + (18, 4, 'Unnamed Business', 1, 25000, 0, 0, 1000.3, -920.204, 42.3281, 96.2681, 0, 0, 0, 0, -31.1112, -91.8577, 1003.55, 0.052338, 18, 0, 0, 0, 0, 0, 1022.79, -916.642, 42.1797, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`) VALUES + (19, 4, 'Unnamed Business', 2, 25000, 0, 0, 1456.53, -1137.56, 23.9484, 36.7288, 0, 0, 0, 0, 207.615, -111.163, 1005.13, 187.89, 15, 0, 0, 0, 0, 0, 2015.15, -1304.98, 23.986, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`) VALUES + (20, 4, 'Unnamed Business', 8, 25000, 0, 0, -1989.49, 884.844, 46.5406, 98.2134, 0, 0, 0, 0, -31.0061, -91.5664, 1003.55, 0.680122, 18, 0, 0, 0, 1, 0, -1981.44, 905.115, 45.7979, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`) VALUES + (21, 4, 'Unnamed Business', 5, 25000, 0, 0, 1628.75, -1903.4, 13.5532, 84.3039, 0, 0, 0, 0, 1494.8, 1305.13, 1093.29, 65.5664, 3, 0, 0, 0, 0, 0, 904.141, -1333.77, 13.5469, 1636.17, -1893.07, 13.2619, 2.61639, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`) VALUES + (22, 4, 'Unnamed Business', 5, 25000, 0, 0, 1606.29, -2431.95, 13.5547, 1.14757, 0, 0, 0, 0, -30.86, -91.9062, 1003.55, 354.538, 18, 0, 0, 0, 0, 0, 1933.08, -2067.76, 13.5469, 1602.48, -2488.26, 13.5547, 267.485, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`) VALUES + (23, 4, 'Unnamed Business', 0, 25000, 0, 0, 1796.35, -1721.18, 13.5411, 180, 0, 0, 0, 0, -795.014, 489.671, 1376.2, 358.859, 1, 0, 0, 0, 1, 1, 1809.53, -1724.42, 13.5362, 1899.97, -2346.11, 13.5469, 263.56, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`) VALUES + (24, 4, 'Unnamed Business', 1, 25000, 0, 0, 1654.2, 1467.87, 1152.79, 325.41, 0, 0, 0, 0, -30.9635, -91.1079, 1003.55, 4.80216, 18, 0, 0, 0, 0, 0, 1668.04, -1583.68, 13.5469, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`) VALUES + (25, 4, 'Unnamed Business', 3, 25000, 0, 0, 1877.85, -1627.79, 13.3386, 359.503, 0, 0, 0, 0, 460.448, -88.5426, 999.555, 86.9106, 4, 0, 0, 0, 0, 0, 1794.43, -1726.55, 13.5469, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`) VALUES + (26, 4, 'Unnamed Business', 2, 25000, 0, 0, 1704.21, -1578.79, 13.8883, 278.564, 0, 0, 0, 0, 227.075, -7.33794, 1002.21, 91.3542, 5, 0, 0, 0, 0, 0, -1699.21, 954.874, 24.8906, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`) VALUES + (27, 4, 'Unnamed Business', 3, 25000, 0, 0, 2419.8, -1509.08, 24, 268.67, 0, 0, 0, 0, 460.154, -88.5364, 999.555, 88.7906, 4, 0, 0, 0, 0, 0, 2422.79, -1517.02, 24.0069, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`) VALUES + (28, 4, 'Unnamed Business', 4, 25000, 0, 0, 1357.07, 308.062, 19.7473, 338.103, 0, 0, 0, 0, 315.641, -142.827, 999.602, 6.35604, 7, 0, 0, 0, 0, 0, 1365.69, -1283.99, 13.5469, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`) VALUES + (29, 4, 'Unnamed Business', 0, 25000, 0, 0, 0, 0, 0, 122.238, 0, 0, 0, 0, 362.74, -75.0332, 1001.51, 315.782, 10, 0, 0, 0, 0, 1, 1787.26, -1623.64, 13.5185, 0, 0, 0, 0, 77, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`) VALUES + (30, 4, 'Unnamed Business', 8, 25000, 0, 0, 1044.57, -1308.84, 13.5469, 99.115, 0, 0, 0, 0, -25.7453, -188.253, 1003.55, 171.504, 17, 0, 0, 0, 0, 0, 1037.38, -1311.36, 13.5469, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`) VALUES + (31, 4, 'Unnamed Business', 0, 25000, 0, 0, 2247.63, 2396.32, 10.8203, 184.236, 0, 0, 0, 0, 204.462, -168.754, 1000.52, 353.473, 14, 0, 0, 0, 0, 0, 567.646, -1291.5, 17.2422, 561.662, -1292.28, 17.2482, 232.669, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`) VALUES + (32, 4, 'Unnamed Business', 0, 25000, 0, 0, 0, 0, 0, 7.15001, 0, 0, 0, 0, 204.024, -50.6503, 1001.8, 9.60777, 1, 0, 0, 0, 0, 0, 2118.79, -1212.34, 23.9642, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`) VALUES + (33, 4, 'Unnamed Business', 4, 25000, 0, 0, 387.179, -1817.95, 7.84098, 273.117, 0, 0, 0, 0, 315.715, -142.947, 999.602, 0.321425, 7, 0, 0, 0, 0, 1, 2521.73, -1544.98, 24.01, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`) VALUES + (34, 4, 'Unnamed Business', 8, 25000, 0, 0, 1073.21, -1384.87, 13.8698, 144.937, 0, 0, 0, 0, 363.315, -74.8249, 1001.51, 315.517, 10, 0, 0, 0, 0, 0, 1191.5, -891.539, 43.1784, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`) VALUES + (35, 4, 'Unnamed Business', 2, 25000, 0, 0, 1109.27, -301.432, 74.54, 358.887, 0, 0, 0, 0, 203.856, -50.2081, 1001.8, 352.563, 1, 0, 0, 0, 0, 0, -2493.67, -33.0023, 25.7656, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`) VALUES + (36, 4, 'Unnamed Business', 1, 25000, 0, 0, 1799.79, -1696.08, 5.24577, 3.04433, 0, 0, 0, 0, -31.4892, -91.506, 1003.55, 358.788, 18, 0, 0, 0, 0, 0, -1948.43, 826.607, 41.5261, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`) VALUES + (37, 4, 'Unnamed Business', 3, 25000, 0, 0, 1732.86, -1582.03, 14.1555, 1.36931, 0, 0, 0, 0, 460.449, -88.6508, 999.555, 84.9172, 4, 0, 0, 0, 0, 0, 1668.86, -1554.79, 13.5469, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`) VALUES + (38, 4, 'Unnamed Business', 8, 25000, 0, 0, 1673.74, -1170.88, 23.9655, 354.084, 0, 0, 0, 0, 501.926, -67.7462, 998.758, 175.187, 11, 0, 0, 0, 0, 0, 2139.42, -1181.06, 23.9922, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`) VALUES + (39, 4, 'Unnamed Business', 8, 25000, 0, 0, 1670.49, -1582.65, 13.5469, 3.42811, 0, 0, 0, 0, -30.9218, -91.5736, 1003.55, 357.108, 18, 0, 0, 0, 0, 0, 2006.9, -1759.92, 13.5391, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`) VALUES + (40, 4, 'Unnamed Business', 8, 25000, 0, 0, 1833.78, -1842.7, 13.5781, 276.736, 0, 0, 0, 0, -26.4404, -187.648, 1003.55, 1.27901, 17, 0, 0, 0, 0, 0, 2864.77, -1428.47, 10.9952, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`) VALUES + (41, 4, 'Unnamed Business', 1, 25000, 0, 0, 2261.93, 28.0644, 26.5, 339.516, 0, 0, 0, 0, -26.4846, -57.8533, 1003.55, 350.759, 6, 0, 0, 0, 0, 0, -1328.06, 2697.52, 50.0625, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`) VALUES + (42, 4, 'Unnamed Business', 8, 25000, 0, 0, 1154.69, -1458.02, 15.7969, 4.52589, 0, 0, 0, 0, -26.6782, -57.6615, 1003.55, 357.681, 6, 0, 0, 0, 0, 0, 2349.25, -1538.52, 24.0033, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`) VALUES + (43, 4, 'Unnamed Business', 8, 25000, 0, 0, 2318.99, -88.68, 26.4844, 178.446, 0, 0, 0, 0, -26.1985, -187.472, 1003.55, 13.4461, 17, 0, 0, 0, 0, 0, -2790.9, 774.258, 50.5078, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`) VALUES + (44, 4, 'Unnamed Business', 1, 25000, 0, 0, 1739.95, 1440.97, 1145.67, 85.9053, 0, 0, 0, 0, -31.0512, -91.6771, 1003.55, 0.187671, 18, 0, 0, 0, 0, 0, -2235.17, -2563.35, 31.9219, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`) VALUES + (45, 4, 'Unnamed Business', 5, 25000, 0, 0, 2045.5, -1908.06, 13.5469, 174.508, 0, 0, 0, 0, 1169.16, 1361.17, 10.9219, 217.478, 0, 0, 0, 0, 0, 0, 1249.5, -1376.78, 13.3634, 2052.74, -1912.89, 13.252, 358.522, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`) VALUES + (46, 4, 'Unnamed Business', 1, 25000, 0, 0, 1671.24, 1469.42, 1152.6, 286.719, 0, 0, 0, 0, 203.788, -50.2352, 1001.8, 1.30236, 1, 0, 0, 0, 0, 0, 2106.4, -1213.94, 23.9665, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`) VALUES + (47, 4, 'Unnamed Business', 1, 25000, 0, 0, 0, 0, 0, 85.0675, 0, 0, 0, 0, -2026.9, -104.041, 1035.17, 178.871, 3, 0, 0, 0, 0, 0, 1632.31, -1880.36, 13.5469, 1638.55, -1893.52, 13.5557, 12.389, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`) VALUES + (48, 4, 'Unnamed Business', 4, 25000, 0, 0, 2333.4, 61.5421, 26.7058, 91.9637, 0, 0, 0, 0, 315.912, -143.315, 999.602, 358.938, 7, 0, 0, 0, 0, 0, 2023.4, -1077.89, 24.6073, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`) VALUES + (49, 4, 'Unnamed Business', 0, 25000, 0, 0, 0, 0, 0, 169.978, 0, 0, 0, 0, -27.3011, -58.1523, 1003.55, 359.772, 6, 0, 0, 0, 1, 0, 2017.89, -1280.21, 23.979, -4366.43, 866.058, 986.38, 352.289, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`) VALUES + (50, 4, 'Unnamed Business', 2, 25000, 0, 0, 2244.25, -1665.5, 15.4766, 347.07, 0, 0, 0, 0, 203.675, -49.334, 1001.8, 186.433, 1, 0, 0, 0, 0, 0, 492.869, -1359.27, 17.1788, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`) VALUES + (51, 4, 'Unnamed Business', 1, 25000, 0, 0, 1636.1, -1848.45, 13.5394, 0.564751, 0, 0, 0, 0, -30.871, -91.4408, 1003.55, 358.966, 18, 0, 0, 0, 0, 0, -479.786, -566.494, 24.1158, 455.124, -1899.05, 0.78316, 202.97, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`) VALUES + (52, 4, 'Unnamed Business', 12, 25000, 0, 0, 1703.45, 1442.91, 1145.78, 239.473, 0, 0, 0, 0, -2029.66, -119.435, 1035.17, 1.03609, 3, 0, 0, 0, 0, 0, -1936.3, 276.5, 41.0469, -1958.21, 307.691, 35.4688, 6.40909, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`) VALUES + (53, 4, 'Unnamed Business', 5, 25000, 0, 0, 1784.89, 1444.99, 1145.78, 340.115, 0, 0, 0, 0, -2029.56, -119.625, 1035.17, 357.304, 3, 0, 0, 0, 0, 0, -1704.05, 1208.2, 25.1146, 1043.86, -1923.3, 12.9832, 0.44367, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`) VALUES + (54, 4, 'Unnamed Business', 8, 25000, 0, 0, 1413.52, -1696.77, 13.5395, 59.0001, 0, 0, 0, 0, 363.489, -74.6292, 1001.51, 134.772, 10, 0, 0, 0, 0, 0, -1568.91, 674.891, 7.1875, 0, 0, 0, 0, 100053, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`) VALUES + (55, 4, 'Unnamed Business', 7, 25000, 0, 0, 1737.46, 1443.56, 1145.78, 276.704, 0, 0, 0, 0, 1711.71, 1461.59, 1145.78, 257.869, 0, 0, 0, 0, 0, 0, 2087.73, 2077.92, 11.0579, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`) VALUES + (56, 4, 'Unnamed Business', 1, 25000, 0, 0, 661.36, -573.289, 16.3359, 272.013, 0, 0, 0, 0, -13.3403, -91.3059, 1008.03, 357.346, 18, 0, 0, 0, 0, 1, 667.314, -546.236, 16.3359, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`) VALUES + (57, 4, 'Unnamed Business', 0, 25000, 0, 0, 1047.21, -1418.63, 13.5469, 144.195, 0, 0, 0, 0, -30.9934, -91.8355, 1003.55, 358.741, 18, 0, 0, 0, 0, 0, 659.793, -1763.91, 13.5592, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`) VALUES + (58, 4, 'Unnamed Business', 3, 25000, 0, 0, 2105.35, -1806.45, 13.5547, 265.142, 0, 0, 0, 0, 460.507, -88.4769, 999.555, 84.5587, 4, 0, 0, 0, 1, 1, 593.602, -1494.91, 15.2686, 615.481, -1501.39, 14.8747, 277.476, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`) VALUES + (59, 4, 'Unnamed Business', 2, 25000, 0, 0, 1829.57, -1450.66, 13.5911, 359.855, 0, 0, 0, 0, 203.78, -50.5481, 1001.8, 9.98745, 1, 0, 0, 0, 0, 0, 1112.81, -1566.31, 13.5569, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`) VALUES + (60, 4, 'Unnamed Business', 0, 25000, 0, 0, 1744.86, 1443.03, 1145.78, 265.737, 0, 0, 0, 0, -25.7722, -188.055, 1003.55, 356.072, 17, 0, 0, 0, 0, 0, 1061.57, -1484.28, 13.5457, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`) VALUES + (61, 4, 'Unnamed Business', 3, 25000, 0, 0, 1772.23, 1440.43, 1145.69, 81.6088, 0, 0, 0, 0, 372.46, -133.296, 1001.49, 330.82, 5, 0, 0, 0, 0, 0, 2108.98, -1788.67, 13.5608, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`) VALUES + (62, 4, 'Unnamed Business', 8, 25000, 0, 0, 461.205, -1500.79, 31.0598, 279.205, 0, 0, 0, 0, -25.3976, -187.912, 1003.55, 355.95, 17, 0, 0, 0, 0, 0, 712.834, -569.736, 16.3359, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`) VALUES + (63, 4, 'Unnamed Business', 3, 25000, 0, 0, -1721.03, 1360.04, 7.18532, 88.9988, 0, 0, 0, 0, 371.728, -133.508, 1001.49, 2.19321, 5, 0, 0, 0, 0, 0, -1720.56, 1353.78, 7.17902, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`) VALUES + (64, 4, 'Unnamed Business', 5, 25000, 0, 0, 1662.57, 1788.63, 10.8203, 263.499, 0, 0, 0, 0, -221.166, 1411.45, 27.7734, 256.79, 18, 0, 0, 0, 0, 0, 1698.29, 1786.89, 10.8203, 1654.53, 1795.69, 10.8203, 81.85, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`) VALUES + (65, 4, 'Unnamed Business', 1, 25000, 0, 0, 1752.7, 1443.19, 1145.78, 272.004, 0, 0, 0, 0, -27.5021, -57.9044, 1003.55, 7.79304, 6, 0, 0, 0, 0, 0, 1394.87, 457.122, 20.1368, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`) VALUES + (66, 4, 'Unnamed Business', 8, 25000, 0, 0, 2251.11, -1666.85, 15.4766, 347.064, 0, 0, 0, 0, -31.1119, -91.6484, 1003.55, 359.657, 18, 0, 0, 0, 0, 1, 1285.09, -1272.42, 13.5366, 0, 0, 0, 0, 123051, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`) VALUES + (67, 4, 'Unnamed Business', 10, 25000, 0, 0, 1131.71, 1518.63, 5.82031, 107.231, 0, 0, 0, 0, 1601.85, -1467.25, 13.5639, 95.3918, 0, 0, 0, 0, 0, 0, 2341.7, -1314.47, 24.0671, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`) VALUES + (68, 4, 'Unnamed Business', 4, 25000, 0, 0, 1587.5, -1862.96, 13.5305, 349.866, 0, 0, 0, 0, 2134.53, 1599.41, 1008.36, 90.8534, 1, 0, 0, 0, 0, 0, 1602.15, -2434.5, 13.5547, 1602.61, -2451.42, 13.5547, 172.886, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`) VALUES + (69, 4, 'Unnamed Business', 1, 25000, 0, 0, 1929.22, -1776.25, 13.5469, 90.3944, 0, 0, 0, 0, -26.172, -187.877, 1003.55, 355.973, 17, 0, 0, 0, 0, 0, 2654.33, 1132.2, 10.8203, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`) VALUES + (70, 4, 'Unnamed Business', 3, 25000, 0, 0, 1414.53, -1602.64, 13.5469, 175.846, 0, 0, 0, 0, 362.819, -75.1166, 1001.51, 315.914, 10, 0, 0, 0, 0, 1, 1414.03, -1599.29, 13.5469, 1646.94, 1305.67, 10.8203, 98.2638, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`) VALUES + (71, 4, 'Unnamed Business', 2, 25000, 0, 0, -1882.67, 866.226, 35.1719, 135.343, 0, 0, 0, 0, 227.262, -8.33084, 1002.21, 100.274, 5, 0, 0, 0, 0, 0, 1103.75, -1411.33, 13.6187, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`) VALUES + (72, 4, 'Unnamed Business', 5, 25000, 0, 0, -1666.21, 1203.53, 7.25, 159.664, 0, 0, 0, 0, 372.496, -133.417, 1001.49, 356.796, 5, 0, 0, 0, 0, 0, 1381.51, 266.698, 19.5669, -1664.23, 1213, 7.25464, 1.79089, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`) VALUES + (73, 4, 'Unnamed Business', 8, 25000, 0, 0, 1952.4, -2021.57, 13.5469, 90.9127, 0, 0, 0, 0, -30.8758, -91.0564, 1003.55, 357.893, 18, 0, 0, 0, 0, 0, 1672.83, -1583.28, 13.5469, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`) VALUES + (74, 4, 'Unnamed Business', 3, 25000, 0, 0, 928.545, -1353.07, 13.3438, 106.28, 0, 0, 0, 0, 372.501, -132.618, 1001.49, 0.750952, 5, 0, 0, 0, 0, 0, 2428.59, -1940.92, 13.5469, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`) VALUES + (75, 4, 'Unnamed Business', 4, 25000, 0, 0, 1665.3, 1452.63, 1152.58, 275.782, 0, 0, 0, 0, 316.063, -143.426, 999.602, 1.00112, 7, 0, 0, 0, 0, 1, 2227.59, -1697.79, 13.7829, 0, 0, 0, 0, 10, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`) VALUES + (76, 4, 'Unnamed Business', 12, 25000, 0, 0, 1766.45, 1443.67, 1145.78, 272.004, 0, 0, 0, 0, 2916.15, -2275.72, 7.25419, 92.2792, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 6, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`) VALUES + (77, 4, 'Unnamed Business', 12, 25000, 0, 0, 2229.9, -1721.26, 13.5613, 149.746, 0, 0, 0, 0, 2916.03, -2276.33, 7.25419, 84.8808, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 7, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`) VALUES + (78, 4, 'Unnamed Business', 4, 25000, 0, 0, 1649.6, 1467.74, 1151.97, 3.67434, 0, 0, 0, 0, 315.902, -143.025, 999.602, 5.53311, 7, 0, 0, 0, 0, 0, 1013.87, -372.41, 73.5505, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`) VALUES + (79, 4, 'Unnamed Business', 3, 25000, 0, 0, 1038.17, -1340.73, 13.745, 177.513, 0, 0, 0, 0, 376.894, -193.302, 1000.63, 357.573, 17, 0, 0, 0, 0, 0, 1028.2, -1341.19, 13.7266, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`) VALUES + (80, 4, 'Unnamed Business', 3, 25000, 0, 0, 2397.67, -1899.06, 13.5469, 359.769, 0, 0, 0, 0, 364.899, -11.4455, 1001.85, 357.847, 9, 0, 0, 0, 0, 0, 2378.92, -1903.45, 13.3828, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`) VALUES + (81, 4, 'Unnamed Business', 3, 25000, 0, 0, 1774.54, 1440.21, 1145.69, 326.854, 0, 0, 0, 0, 364.92, -11.5076, 1001.85, 1.92061, 9, 0, 0, 0, 0, 0, 2412.69, -1490.4, 24, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`) VALUES + (82, 4, 'Unnamed Business', 3, 25000, 0, 0, 1445.11, -1353.1, 13.5469, 76.8374, 0, 0, 0, 0, 364.786, -11.5863, 1001.85, 359.156, 9, 0, 0, 0, 0, 0, -1810.85, 616.781, 35.1719, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`) VALUES + (83, 4, 'Unnamed Business', 3, 25000, 0, 0, 810.492, -1616.33, 13.5469, 274.543, 0, 0, 0, 0, 364.817, -11.7036, 1001.85, 356.202, 9, 0, 0, 0, 0, 0, -2664.66, 260.562, 4.63281, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`) VALUES + (84, 4, 'Unnamed Business', 2, 25000, 0, 0, 1102.44, -1458.3, 15.7969, 265.057, 0, 0, 0, 0, 227.152, -8.34062, 1002.21, 82.5599, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`) VALUES + (85, 4, 'Unnamed Business', 2, 25000, 0, 0, 1445.12, -1419.06, 13.5411, 65.0882, 0, 0, 0, 0, 227.551, -7.98705, 1002.21, 77.3083, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`) VALUES + (86, 4, 'Unnamed Business', 3, 25000, 0, 0, 2237.88, -1663.56, 15.4766, 344.453, 0, 0, 0, 0, 363.168, -74.7778, 1001.51, 307.153, 10, 0, 0, 0, 0, 0, 785.164, -1632.8, 13.3828, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`) VALUES + (87, 4, 'Unnamed Business', 0, 25000, 0, 0, 0, 0, 0, 356.497, 0, 0, 0, 0, 460.333, -88.562, 999.555, 88.2525, 4, 0, 0, 0, 0, 0, 1696.4, -1584.2, 13.5458, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`) VALUES + (88, 4, 'Unnamed Business', 3, 25000, 0, 0, 1087.72, -295.958, 74.7685, 358.173, 0, 0, 0, 0, 363.226, -75.0796, 1001.51, 311.442, 10, 0, 0, 0, 0, 0, -2794.59, 775.22, 50.4725, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`) VALUES + (89, 4, 'Unnamed Business', 3, 25000, 0, 0, -1912.4, 827.947, 35.2282, 137.415, 0, 0, 0, 0, 362.862, -75.157, 1001.51, 317.474, 10, 0, 0, 0, 0, 0, -2148.97, -2449.25, 30.6328, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`) VALUES + (90, 4, 'Unnamed Business', 3, 25000, 0, 0, 1769.38, -1397.58, 15.7578, 177.249, 0, 0, 0, 0, 460.243, -88.68, 999.555, 92.1094, 4, 0, 0, 0, 0, 0, 711.452, -493.504, 16.3359, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`) VALUES + (91, 4, 'Unnamed Business', 10, 25000, 0, 0, 2421.44, -1219.25, 25.5616, 6.1916, 0, 0, 0, 0, -2158.43, 642.822, 1052.38, 29.1845, 1, 0, 0, 0, 0, 0, 1968.24, -1284.42, 23.9844, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`) VALUES + (92, 4, 'Unnamed Business', 2, 25000, 0, 0, 1405.22, -1881.5, 13.5469, 264.017, 0, 0, 0, 0, 207.556, -111.244, 1005.13, 352.685, 15, 0, 0, 0, 0, 0, 2230.46, -1674.3, 14.8285, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`) VALUES + (93, 4, 'Unnamed Business', 3, 25000, 0, 0, 1200.42, -918.503, 43.1127, 273.646, 0, 0, 0, 0, 372.061, -133.522, 1001.49, 359.863, 5, 0, 0, 0, 0, 0, 1839.22, -1452.28, 13.564, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`) VALUES + (94, 4, 'Unnamed Business', 10, 25000, 0, 0, 1836.65, -1682.52, 13.3391, 95.7087, 0, 0, 0, 0, 1204.98, -13.8471, 1000.92, 7.8813, 2, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`) VALUES + (95, 4, 'Unnamed Business', 8, 25000, 0, 0, 1775.47, 1437.65, 1145.69, 357.587, 0, 0, 0, 0, -25.6475, -188.232, 1003.55, 12.6659, 17, 0, 0, 0, 0, 1, 2006.4, -1760.42, 13.5391, 1034.92, -1935.32, 13.0244, 266.609, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`) VALUES + (96, 4, 'Unnamed Business', 3, 25000, 0, 0, 2332.08, 75.0052, 26.621, 87.2637, 0, 0, 0, 0, 460.545, -88.3984, 999.555, 93.5276, 4, 0, 0, 0, 0, 0, -294.906, 2687.78, 62.6665, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`) VALUES + (97, 4, 'Unnamed Business', 1, 25000, 0, 0, 1574.85, -1637.35, 13.5615, 11.6774, 0, 0, 0, 0, -25.5966, -187.034, 1003.55, 357.071, 17, 0, 0, 0, 0, 0, 1541.46, -1634.66, 13.5469, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`) VALUES + (98, 4, 'Unnamed Business', 3, 25000, 0, 0, 1098.59, -1473.58, 15.7969, 69.6117, 0, 0, 0, 0, 460.244, -88.4067, 999.555, 87.9699, 4, 0, 0, 0, 1, 0, -1741.37, -569.154, 16.4844, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`) VALUES + (99, 4, 'Unnamed Business', 1, 25000, 0, 0, 1445.11, -1426.78, 13.543, 89.005, 0, 0, 0, 0, -27.4883, -57.4702, 1003.55, 0.398602, 6, 0, 0, 0, 0, 0, 1428.99, -1427.96, 13.5547, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`) VALUES + (100, 4, 'Unnamed Business', 1, 25000, 0, 0, 2157.89, -1733.42, 13.5445, 356.464, 0, 0, 0, 0, -27.4883, -57.4702, 1003.55, 0.398602, 6, 0, 0, 0, 0, 0, 1551.73, -1474.28, 13.5481, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`) VALUES + (101, 4, 'Unnamed Business', 0, 25000, 0, 0, 1759.93, 1446.82, 1145.78, 84.942, 0, 0, 0, 0, 5.84083, -31.4701, 1003.55, 0.31898, 10, 0, 0, 0, 0, 0, 637.356, 1678.13, 6.99219, -2395.1, 2222.04, 4.98437, 85.6145, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`) VALUES + (102, 4, 'Unnamed Business', 3, 25000, 0, 0, 671.125, -519.446, 16.3359, 210.161, 0, 0, 0, 0, 460.219, -89.0891, 999.555, 92.4067, 4, 0, 0, 0, 0, 0, 674.514, -514.152, 16.3359, 1626.54, -1137.52, 23.9062, 184.156, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`) VALUES + (103, 4, 'Unnamed Business', 1, 25000, 0, 0, 1757.29, 1446.53, 1145.78, 84.942, 0, 0, 0, 0, 6.22508, -31.3632, 1003.55, 355.899, 10, 0, 0, 0, 0, 0, 2181.8, 2485.08, 10.8203, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`) VALUES + (104, 4, 'Unnamed Business', 8, 25000, 0, 0, 1315.55, -897.924, 39.5781, 355.767, 0, 0, 0, 0, -25.6988, -188.146, 1003.55, 2.25264, 17, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`) VALUES + (105, 4, 'Unnamed Business', 1, 25000, 0, 0, 1753.5, 1446.45, 1145.78, 84.942, 0, 0, 0, 0, -25.8995, -188.249, 1003.55, 359.321, 17, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`) VALUES + (106, 4, 'Unnamed Business', 8, 25000, 0, 0, 1752.19, 1446.37, 1145.78, 93.7154, 0, 0, 0, 0, -31.1422, -92.0064, 1003.55, 350.907, 18, 0, 0, 0, 0, 0, 2007.48, -1759.44, 13.5391, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`) VALUES + (107, 4, 'Unnamed Business', 3, 25000, 0, 0, 2521.18, -1411.62, 28.5312, 80.3432, 0, 0, 0, 0, -228.827, 1400.92, 27.7656, 269.626, 18, 0, 0, 0, 0, 0, -865.274, 1541.22, 22.6826, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`) VALUES + (108, 4, 'Unnamed Business', 8, 25000, 0, 0, 1634.58, -1583.53, 13.6536, 10.9946, 0, 0, 0, 0, 5.90418, -31.5585, 1003.55, 0.568551, 10, 0, 0, 0, 0, 0, -744.555, 1583.71, 26.9609, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`) VALUES + (109, 4, 'Unnamed Business', 1, 25000, 0, 0, 1748.68, 1446.17, 1145.78, 93.0887, 0, 0, 0, 0, 6.21169, -31.3557, 1003.55, 3.26752, 10, 0, 0, 0, 0, 0, -1476.6, 1879.51, 32.6328, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`) VALUES + (110, 4, 'Unnamed Business', 2, 25000, 0, 0, -91.0981, -1592.47, 3.00431, 294.395, 0, 0, 0, 0, 226.882, -8.1384, 1002.21, 269.642, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`) VALUES + (111, 4, 'Unnamed Business', 8, 25000, 0, 0, 1352.52, -1758.82, 13.5078, 180.542, 0, 0, 0, 0, -31.1119, -91.6484, 1003.55, 359.657, 18, 0, 0, 0, 0, 0, 2254.93, -1666.28, 15.469, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`) VALUES + (112, 4, 'Unnamed Business', 3, 25000, 0, 0, 1158.28, -1473.41, 15.7969, 286.459, 0, 0, 0, 0, 364.786, -11.5863, 1001.85, 359.156, 9, 0, 0, 0, 0, 0, 0, 0, 0, 2263.74, 34.2681, 26.4844, 50.0339, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`) VALUES + (113, 4, 'Unnamed Business', 1, 25000, 0, 0, 1743.82, 1445.89, 1145.78, 90.2687, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`) VALUES + (114, 4, 'Unnamed Business', 1, 25000, 0, 0, 1742.45, 1445.89, 1145.78, 90.2687, 0, 0, 0, 0, -25.6442, -188.041, 1003.55, 351.193, 17, 0, 0, 0, 1, 1, 2130.87, 892.924, 10.8203, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`) VALUES + (115, 4, 'Unnamed Business', 3, 25000, 0, 0, 1650.13, 1466.72, 1151.97, 167.935, 0, 0, 0, 0, -794.957, 490.111, 1376.2, 179.811, 1, 0, 0, 0, 1, 1, 0, 0, 0, 1327.28, 1397.33, 10.7512, 93.0638, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`) VALUES + (116, 4, 'Unnamed Business', 8, 25000, 0, 0, 1487.01, -1881.28, 13.5469, 190.48, 0, 0, 0, 0, -25.6959, -187.781, 1003.55, 354.083, 17, 0, 0, 0, 0, 0, 0, 0, 0, 1231.73, -1380.5, 13.3179, 182.887, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`) VALUES + (117, 4, 'Unnamed Business', 10, 25000, 0, 0, 1736.52, 1445.86, 1145.78, 90.2687, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`) VALUES + (118, 4, 'Unnamed Business', 0, 25000, 0, 0, 0, 0, 0, 177.429, 0, 0, 0, 0, 315.835, -142.356, 999.602, 175.862, 7, 0, 0, 0, 0, 0, -98.3232, -1614, 2.74178, 1810.23, -1639.14, 13.5456, 357.773, 117, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`) VALUES + (119, 4, 'Unnamed Business', 2, 25000, 0, 0, 712.172, -498.921, 16.3359, 267.048, 0, 0, 0, 0, 203.747, -50.5602, 1001.8, 348.861, 1, 0, 0, 0, 0, 0, 714.368, -505.379, 16.3359, 1229.06, -1378.47, 13.339, 256.786, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`) VALUES + (120, 4, 'Unnamed Business', 8, 25000, 0, 0, 1721.42, 1424.01, 10.6406, 320.626, 0, 0, 0, 0, 6.13156, -31.3422, 1003.55, 178.952, 10, 0, 0, 0, 0, 0, 1014.04, -1563.83, 13.616, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`) VALUES + (121, 4, 'Unnamed Business', 0, 25000, 0, 0, 0, 0, 0, 90.2687, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2141.72, -1127.27, 25.5294, 2127.96, -1135.77, 25.5732, 341.665, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`) VALUES + (122, 4, 'Unnamed Business', 1, 25000, 0, 0, 1765.16, 1436.69, 1145.69, 93.1964, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`) VALUES + (123, 4, 'Unnamed Business', 4, 25000, 0, 0, 1836.51, -1443.03, 13.5962, 100.976, 0, 0, 0, 0, 284.991, -86.1033, 1001.52, 350.153, 4, 0, 0, 0, 0, 1, 1837.35, -1438.43, 13.563, 0, 0, 0, 0, 1234521, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`) VALUES + (124, 4, 'Unnamed Business', 8, 25000, 0, 0, 1648.6, -1562.17, 13.5398, 98.856, 0, 0, 0, 0, -26.0882, -188.231, 1003.55, 0.687847, 17, 0, 0, 0, 0, 0, 1028.47, -1585.7, 13.5469, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`) VALUES + (125, 4, 'Unnamed Business', 8, 25000, 0, 0, 1565.93, -1171.4, 24.0951, 194.504, 0, 0, 0, 0, -30.7929, -92.0083, 1003.55, 180.866, 18, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`) VALUES + (126, 4, 'Unnamed Business', 0, 25000, 0, 0, 0, 0, 0, 174.97, 0, 0, 0, 0, 1758.32, -1720.22, 13.542, 283.857, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`) VALUES + (127, 4, 'Unnamed Business', 0, 25000, 0, 0, 0, 0, 0, 342.2, 0, 0, 0, 0, 6.05354, -31.7502, 1003.55, 179.289, 10, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`) VALUES + (128, 4, 'Unnamed Business', 0, 25000, 0, 0, 1733.91, 1448.76, 1145.78, 273.547, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`) VALUES + (129, 4, 'Unnamed Business', 0, 25000, 0, 0, 1735.4, 1448.85, 1145.78, 273.547, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`) VALUES + (130, 4, 'Unnamed Business', 0, 25000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`) VALUES + (131, 4, 'Unnamed Business', 0, 25000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`) VALUES + (132, 4, 'Unnamed Business', 0, 25000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`) VALUES + (133, 4, 'Unnamed Business', 0, 25000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`) VALUES + (134, 4, 'Unnamed Business', 0, 25000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`) VALUES + (135, 4, 'Unnamed Business', 0, 25000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`) VALUES + (136, 4, 'Unnamed Business', 0, 25000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`) VALUES + (137, 4, 'Unnamed Business', 0, 25000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`) VALUES + (138, 4, 'Unnamed Business', 0, 25000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`) VALUES + (139, 4, 'Unnamed Business', 0, 25000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`) VALUES + (140, 4, 'Unnamed Business', 0, 25000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`) VALUES + (141, 4, 'Unnamed Business', 0, 25000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`) VALUES + (142, 4, 'Unnamed Business', 0, 25000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`) VALUES + (143, 4, 'Unnamed Business', 0, 25000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`) VALUES + (144, 4, 'Unnamed Business', 0, 25000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`) VALUES + (145, 4, 'Unnamed Business', 4, 25000, 0, 0, 1655.19, 1451.97, 1152.5, 277.616, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`) VALUES + (146, 4, 'Unnamed Business', 0, 25000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`) VALUES + (147, 4, 'Unnamed Business', 0, 25000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`) VALUES + (148, 4, 'Unnamed Business', 0, 25000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`) VALUES + (149, 4, 'Unnamed Business', 0, 25000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`) VALUES + (150, 4, 'Unnamed Business', 0, 25000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`) VALUES + (151, 4, 'Unnamed Business', 0, 25000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`) VALUES + (152, 4, 'Unnamed Business', 0, 25000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`) VALUES + (153, 4, 'Unnamed Business', 0, 25000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`) VALUES + (154, 4, 'Unnamed Business', 0, 25000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`) VALUES + (155, 4, 'Unnamed Business', 0, 25000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`) VALUES + (156, 4, 'Unnamed Business', 0, 25000, 0, 0, 0, 0, 0, 273.86, 0, 0, 0, 0, 1241.84, -1381.07, 13.2184, 258.485, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1741.75, -1718.35, 13.5469, 185.945, 1, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`) VALUES + (157, 4, 'Unnamed Business', 5, 25000, 0, 0, 548.165, -1293.86, 17.2482, 168.94, 0, 0, 0, 0, 1226.48, -813.56, 1084.01, 353.256, 5, 0, 0, 0, 0, 0, 1811.5, -1659.69, 13.5465, 567.705, -1291.27, 17.2422, 70.9165, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`) VALUES + (158, 4, 'Unnamed Business', 0, 25000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`) VALUES + (159, 4, 'Unnamed Business', 0, 25000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`) VALUES + (160, 4, 'Unnamed Business', 0, 25000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`) VALUES + (161, 4, 'Unnamed Business', 0, 25000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`) VALUES + (162, 4, 'Unnamed Business', 0, 25000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`) VALUES + (163, 4, 'Unnamed Business', 0, 25000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`) VALUES + (164, 4, 'Unnamed Business', 0, 25000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`) VALUES + (165, 4, 'Unnamed Business', 0, 25000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`) VALUES + (166, 4, 'Unnamed Business', 0, 25000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`) VALUES + (167, 4, 'Unnamed Business', 0, 25000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`) VALUES + (168, 4, 'Unnamed Business', 0, 25000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`) VALUES + (169, 4, 'Unnamed Business', 0, 25000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`) VALUES + (170, 4, 'Unnamed Business', 0, 25000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`) VALUES + (171, 4, 'Unnamed Business', 0, 25000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`) VALUES + (172, 4, 'Unnamed Business', 0, 25000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`) VALUES + (173, 4, 'Unnamed Business', 0, 25000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`) VALUES + (174, 4, 'Unnamed Business', 0, 25000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`) VALUES + (175, 4, 'Unnamed Business', 0, 25000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`) VALUES + (176, 4, 'Unnamed Business', 0, 25000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`) VALUES + (177, 4, 'Unnamed Business', 0, 25000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`) VALUES + (178, 4, 'Unnamed Business', 0, 25000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`) VALUES + (179, 4, 'Unnamed Business', 0, 25000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`) VALUES + (180, 4, 'Unnamed Business', 0, 25000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`) VALUES + (181, 4, 'Unnamed Business', 0, 25000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`) VALUES + (182, 4, 'Unnamed Business', 0, 25000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`) VALUES + (183, 4, 'Unnamed Business', 0, 25000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`) VALUES + (184, 4, 'Unnamed Business', 0, 25000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`) VALUES + (185, 4, 'Unnamed Business', 0, 25000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`) VALUES + (186, 4, 'Unnamed Business', 0, 25000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`) VALUES + (187, 4, 'Unnamed Business', 0, 25000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`) VALUES + (188, 4, 'Unnamed Business', 0, 25000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`) VALUES + (189, 4, 'Unnamed Business', 0, 25000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`) VALUES + (190, 4, 'Unnamed Business', 0, 25000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`) VALUES + (191, 4, 'Unnamed Business', 0, 25000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`) VALUES + (192, 4, 'Unnamed Business', 3, 25000, 0, 0, -222.752, -1747.06, 1.15469, 331.273, 0, 0, 0, 0, 363.584, -75.38, 1001.51, 313.29, 10, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`) VALUES + (193, 4, 'Unnamed Business', 0, 25000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`) VALUES + (194, 4, 'Unnamed Business', 0, 25000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`) VALUES + (195, 4, 'Unnamed Business', 0, 25000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`) VALUES + (196, 4, 'Unnamed Business', 0, 25000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`) VALUES + (197, 4, 'Unnamed Business', 0, 25000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`) VALUES + (198, 4, 'Unnamed Business', 0, 25000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`) VALUES + (199, 4, 'Unnamed Business', 0, 25000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`) VALUES + (200, 4, 'Unnamed Business', 8, 25000, 0, 0, 1748.23, -1460.31, 13.5288, 182.135, 0, 0, 0, 0, -27.4627, -57.8572, 1003.55, 0.812528, 6, 0, 0, 0, 0, 0, 1014.1, -1563.82, 13.6156, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`) VALUES + (201, 2, 'Unnamed Business', 0, 25000, 0, 0, -1013.1, -861.897, 13.0852, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`) VALUES + (202, 4, 'Unnamed Business', 0, 25000, 0, 0, 549.161, -1293.92, 17.2482, 0, 0, 0, 1272, -1, 0, 0, 0, 0, 0, 0, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +/*!40000 ALTER TABLE `biz_main` ENABLE KEYS */; + +-- Dumping structure for table db24053.bug_main +CREATE TABLE IF NOT EXISTS `bug_main` ( + `bug_id` int(11) NOT NULL AUTO_INCREMENT, + `bug_server` tinyint(2) NOT NULL DEFAULT '0', + `bug_who_added` int(11) NOT NULL DEFAULT '0', + `bug_when_added` int(32) NOT NULL DEFAULT '0', + `bug_script_ver` varchar(16) NOT NULL DEFAULT '0.1', + `bug_pos_x` float NOT NULL DEFAULT '0', + `bug_pos_y` float NOT NULL DEFAULT '0', + `bug_pos_z` float NOT NULL DEFAULT '0', + `bug_rot_z` float NOT NULL DEFAULT '0', + `bug_message` varchar(128) NOT NULL DEFAULT '( No Message )', + `bug_svr_start` int(32) NOT NULL DEFAULT '0', + `bug_session` int(11) NOT NULL DEFAULT '0', + `bug_state` int(11) NOT NULL DEFAULT '0', + `bug_who_state` int(11) NOT NULL DEFAULT '0', + `bug_when_state` int(11) NOT NULL DEFAULT '0', + PRIMARY KEY (`bug_id`) +) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=latin1 COMMENT='User Submitted Bugs'; + +-- Dumping data for table db24053.bug_main: ~1 rows (approximately) +/*!40000 ALTER TABLE `bug_main` DISABLE KEYS */; +INSERT INTO `bug_main` (`bug_id`, `bug_server`, `bug_who_added`, `bug_when_added`, `bug_script_ver`, `bug_pos_x`, `bug_pos_y`, `bug_pos_z`, `bug_rot_z`, `bug_message`, `bug_svr_start`, `bug_session`, `bug_state`, `bug_who_state`, `bug_when_state`) VALUES + (1, 1, -1, 1607368850, '1.0', 0, 0, 0, 0, 'Test', 2147483647, 0, 0, 0, 0); +/*!40000 ALTER TABLE `bug_main` ENABLE KEYS */; + +-- Dumping structure for table db24053.clan_main +CREATE TABLE IF NOT EXISTS `clan_main` ( + `clan_id` int(11) NOT NULL AUTO_INCREMENT, + `clan_server` int(11) NOT NULL DEFAULT '0', + `clan_name` varchar(64) NOT NULL DEFAULT '', + `clan_tag` varchar(16) NOT NULL DEFAULT '', + `clan_owner` int(11) NOT NULL DEFAULT '0', + `clan_created` int(32) NOT NULL DEFAULT '0', + `clan_deleted` tinyint(1) NOT NULL DEFAULT '0', + `clan_who_deleted` int(32) NOT NULL DEFAULT '0', + `clan_when_deleted` int(32) NOT NULL DEFAULT '0', + PRIMARY KEY (`clan_id`) +) ENGINE=InnoDB DEFAULT CHARSET=latin1 COMMENT='Clans'; + +-- Dumping data for table db24053.clan_main: ~0 rows (approximately) +/*!40000 ALTER TABLE `clan_main` DISABLE KEYS */; +/*!40000 ALTER TABLE `clan_main` ENABLE KEYS */; + +-- Dumping structure for table db24053.clan_members +CREATE TABLE IF NOT EXISTS `clan_members` ( + `clan_member_id` int(11) NOT NULL AUTO_INCREMENT, + `clan_rank_server` tinyint(2) NOT NULL DEFAULT '0', + `clan_member_clan` int(11) NOT NULL DEFAULT '0', + `clan_member_acct` int(11) NOT NULL DEFAULT '0', + `clan_member_custom_title` varchar(64) NOT NULL DEFAULT '', + `clan_member_custom_tag` varchar(16) NOT NULL DEFAULT '', + `clan_member_flags` int(32) NOT NULL DEFAULT '0', + `clan_member_rank` int(11) NOT NULL DEFAULT '0', + `clan_member_removed` tinyint(1) NOT NULL DEFAULT '1', + `clan_member_who_removed` int(11) NOT NULL DEFAULT '0', + `clan_member_who_added` int(11) NOT NULL DEFAULT '0', + PRIMARY KEY (`clan_member_id`) +) ENGINE=InnoDB DEFAULT CHARSET=latin1 COMMENT='Clans - Members'; + +-- Dumping data for table db24053.clan_members: ~0 rows (approximately) +/*!40000 ALTER TABLE `clan_members` DISABLE KEYS */; +/*!40000 ALTER TABLE `clan_members` ENABLE KEYS */; + +-- Dumping structure for table db24053.clan_ranks +CREATE TABLE IF NOT EXISTS `clan_ranks` ( + `clan_rank_id` int(11) NOT NULL AUTO_INCREMENT, + `clan_rank_clan` int(11) NOT NULL DEFAULT '0', + `clan_rank_name` varchar(64) NOT NULL DEFAULT '', + `clan_rank_custom_tag` varchar(16) NOT NULL DEFAULT '', + `clan_rank_flags` int(32) NOT NULL DEFAULT '0', + `clan_rank_after_rank_id` int(11) NOT NULL DEFAULT '0', + PRIMARY KEY (`clan_rank_id`) +) ENGINE=InnoDB DEFAULT CHARSET=latin1 COMMENT='Clans - Ranks'; + +-- Dumping data for table db24053.clan_ranks: ~0 rows (approximately) +/*!40000 ALTER TABLE `clan_ranks` DISABLE KEYS */; +/*!40000 ALTER TABLE `clan_ranks` ENABLE KEYS */; + +-- Dumping structure for table db24053.error_main +CREATE TABLE IF NOT EXISTS `error_main` ( + `error_id` int(11) NOT NULL AUTO_INCREMENT, + `error_server` tinyint(2) NOT NULL DEFAULT '0', + `error_when_added` int(32) NOT NULL, + `error_script_ver` varchar(16) NOT NULL DEFAULT '0.0', + `error_module` int(11) NOT NULL DEFAULT '0', + `error_file` text NOT NULL, + `error_line` int(11) NOT NULL DEFAULT '0', + `error_locals` text NOT NULL, + `error_func` varchar(128) NOT NULL DEFAULT 'Unknown', + PRIMARY KEY (`error_id`) +) ENGINE=InnoDB DEFAULT CHARSET=latin1 COMMENT='Error Reports'; + +-- Dumping data for table db24053.error_main: ~0 rows (approximately) +/*!40000 ALTER TABLE `error_main` DISABLE KEYS */; +/*!40000 ALTER TABLE `error_main` ENABLE KEYS */; + +-- Dumping structure for table db24053.house_main +CREATE TABLE IF NOT EXISTS `house_main` ( + `house_id` int(11) NOT NULL AUTO_INCREMENT, + `house_server` int(11) NOT NULL DEFAULT '0', + `house_entrance_pos_x` float NOT NULL, + `house_entrance_pos_y` float NOT NULL, + `house_entrance_pos_z` float NOT NULL, + `house_entrance_rot_z` float NOT NULL, + `house_entrance_int` int(11) NOT NULL, + `house_entrance_vw` int(11) NOT NULL DEFAULT '0', + `house_entrance_pickup` int(11) NOT NULL, + `house_entrance_blip` int(11) NOT NULL, + `house_exit_pos_x` float NOT NULL, + `house_exit_pos_y` float NOT NULL, + `house_exit_pos_z` float NOT NULL, + `house_exit_rot_z` float NOT NULL, + `house_exit_int` int(11) NOT NULL DEFAULT '0', + `house_exit_vw` int(11) NOT NULL, + `house_exit_pickup` int(11) NOT NULL, + `house_exit_blip` int(11) NOT NULL, + `house_description` varchar(64) NOT NULL DEFAULT '', + `house_buy_price` int(11) NOT NULL, + `house_rent_price` int(11) NOT NULL, + `house_owner_type` int(11) NOT NULL, + `house_owner_id` int(11) NOT NULL, + `house_locked` int(11) NOT NULL, + PRIMARY KEY (`house_id`) USING BTREE +) ENGINE=MyISAM AUTO_INCREMENT=1914 DEFAULT CHARSET=latin1 COMMENT='Houses'; + +-- Dumping data for table db24053.house_main: 1,910 rows +/*!40000 ALTER TABLE `house_main` DISABLE KEYS */; +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1, 4, 1298.55, -798.182, 84.138, 0, 0, 0, 0, 0, 1298.81, -796.658, 1084.01, 0, 5, 0, 0, 0, 'Madd Doggs house', 5250000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (2, 4, -418.648, -1759.54, 6.21, 0, 0, 0, 0, 0, 244.41, 305.032, 999.148, 0, 1, 0, 0, 0, 'Small Cottage', 25000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (3, 4, 657.218, -1652.65, 15.399, 0, 0, 0, 0, 0, 2365.27, -1135.59, 1050.88, 0, 8, 0, 0, 0, 'Mexican Style House', 350000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (4, 4, 693.76, -1645.79, 4.09, 0, 0, 0, 0, 0, 2365.27, -1135.59, 1050.88, 0, 8, 0, 0, 0, 'Mexican Style House', 350000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (5, 4, 693.57, -1705.87, 3.809, 0, 0, 0, 0, 0, 2365.27, -1135.59, 1050.88, 0, 8, 0, 0, 0, 'Mexican Style House', 350000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (6, 4, 766.9, -1606.18, 13.8, 0, 0, 0, 0, 0, 2365.27, -1135.59, 1050.88, 0, 8, 0, 0, 0, 'Mexican Style House', 350000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (7, 4, 768.07, -1655.99, 5.598, 0, 0, 0, 0, 0, 2365.27, -1135.59, 1050.88, 0, 8, 0, 0, 0, 'Mexican Style House', 350000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (8, 4, 769.218, -1696.74, 5.15, 0, 0, 0, 0, 0, 2365.27, -1135.59, 1050.88, 0, 8, 0, 0, 0, 'Mexican Style House', 350000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (9, 4, 769.2, -1745.85, 13.069, 0, 0, 0, 0, 0, 2365.27, -1135.59, 1050.88, 0, 8, 0, 0, 0, 'Mexican Style House', 350000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (10, 4, 653.58, -1714, 14.76, 0, 0, 0, 0, 0, 2365.27, -1135.59, 1050.88, 0, 8, 0, 0, 0, 'Mexican Style House', 350000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (11, 4, 1906.04, -1112.94, 26.659, 0, 0, 0, 0, 0, 2365.27, -1135.59, 1050.88, 0, 8, 0, 0, 0, 'Mexican Style House', 350000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (12, 4, 1939.23, -1114.51, 27.45, 0, 0, 0, 0, 0, 2365.27, -1135.59, 1050.88, 0, 8, 0, 0, 0, 'Mexican Style House', 350000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (13, 4, 1999.97, -1114.05, 27.12, 0, 0, 0, 0, 0, 2365.27, -1135.59, 1050.88, 0, 8, 0, 0, 0, 'Mexican Style House', 350000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (14, 4, 2022.92, -1120.26, 26.42, 0, 0, 0, 0, 0, 2365.27, -1135.59, 1050.88, 0, 8, 0, 0, 0, 'Mexican Style House', 350000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (15, 4, 2095.33, -1145.13, 26.59, 0, 0, 0, 0, 0, 2365.27, -1135.59, 1050.88, 0, 8, 0, 0, 0, 'Mexican Style House', 350000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (16, 4, 2092.24, -1166.36, 26.579, 0, 0, 0, 0, 0, 2365.27, -1135.59, 1050.88, 0, 8, 0, 0, 0, 'Mexican Style House', 350000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (17, 4, 793.989, -1707.45, 14.029, 0, 0, 0, 0, 0, 2365.27, -1135.59, 1050.88, 0, 8, 0, 0, 0, 'Mexican Style House', 350000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (18, 4, 1886.26, -1113.66, 26.27, 0, 0, 0, 0, 0, 260.769, 1237.26, 1084.25, 0, 9, 0, 0, 0, 'Simple House', 65000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (19, 4, 1921.35, -1115.18, 27.079, 0, 0, 0, 0, 0, 260.769, 1237.26, 1084.25, 0, 9, 0, 0, 0, 'Simple House', 65000, 100, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (20, 4, 1955.4, -1115.35, 27.829, 0, 0, 0, 0, 0, 260.769, 1237.26, 1084.25, 0, 9, 0, 0, 0, 'Simple House', 65000, 400, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (21, 4, 2045.5, -1116.63, 26.36, 0, 0, 0, 0, 0, 260.769, 1237.26, 1084.25, 0, 9, 0, 0, 0, 'Simple House', 65000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (22, 4, 2093.99, -1122.78, 27.68, 0, 0, 0, 0, 0, 260.769, 1237.26, 1084.25, 0, 9, 0, 0, 0, 'Simple House', 65000, 650, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (23, 4, 2091.67, -1184.45, 27.048, 0, 0, 0, 0, 0, 260.769, 1237.26, 1084.25, 0, 9, 0, 0, 0, 'Simple House', 65000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (24, 4, 769.049, -1726.35, 13.43, 0, 0, 0, 0, 0, 260.769, 1237.26, 1084.25, 0, 9, 0, 0, 0, 'Simple House', 65000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (25, 4, 794.89, -1691.99, 14.46, 0, 0, 0, 0, 0, 260.769, 1237.26, 1084.25, 0, 9, 0, 0, 0, 'Simple House', 65000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (26, 4, 2495.41, -1690.94, 14.76, 0, 0, 0, 0, 0, 2495.97, -1692.08, 1014.74, 0, 3, 0, 0, 0, 'Simple House', 65000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (28, 4, 2126.68, -1320.68, 26.62, 0, 0, 0, 0, 0, 234.162, 1064.23, 1084.21, 0, 6, 0, 0, 0, 'Simple House', 800000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (29, 4, 2091.05, -1278.14, 26.17, 0, 0, 0, 0, 0, 2196.53, -1204.18, 1049.02, 0, 6, 0, 0, 0, '2 Bedroom House', 100000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (30, 4, 2191.64, -1275.82, 25.149, 0, 0, 0, 0, 0, 2196.53, -1204.18, 1049.02, 0, 6, 0, 0, 0, '2 Bedroom House', 100000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (31, 4, 2229.66, -1241.52, 25.649, 0, 0, 0, 0, 0, 2196.53, -1204.18, 1049.02, 0, 6, 0, 0, 0, '2 Bedroom House', 100000, 5, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (32, 4, 2100.94, -1321.8, 25.95, 0, 0, 0, 0, 0, 2269.92, -1210.37, 1047.56, 0, 10, 0, 0, 0, 'Big Living Style', 80000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (33, 4, 2132.32, -1280.12, 25.888, 0, 0, 0, 0, 0, 2269.92, -1210.37, 1047.56, 0, 10, 0, 0, 0, 'Big Living Style', 80000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (34, 4, 2250.2, -1280.32, 25.468, 0, 0, 0, 0, 0, 2269.92, -1210.37, 1047.56, 0, 10, 0, 0, 0, 'Big Living Style', 80000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (35, 4, 2249.92, -1238.89, 25.888, 0, 0, 0, 0, 0, 2269.92, -1210.37, 1047.56, 0, 10, 0, 0, 0, 'Big Living Style', 80000, 1, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (36, 4, 2153.82, -1243.53, 25.36, 0, 0, 0, 0, 0, 2269.92, -1210.37, 1047.56, 0, 10, 0, 0, 0, 'Big Living Style', 80000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (37, 4, 2110.99, -1244.32, 25.85, 0, 0, 0, 0, 0, 2269.92, -1210.37, 1047.56, 0, 10, 0, 0, 0, 'Big Living Style', 80000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (38, 4, 2148.55, -1319.82, 25.739, 0, 0, 0, 0, 0, 2282.9, -1139.99, 1050.89, 0, 11, 0, 0, 0, 'Small House', 45000, 5000, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (39, 4, 2150.21, -1285.45, 24.19, 0, 0, 0, 0, 0, 2282.9, -1139.99, 1050.89, 0, 11, 0, 0, 0, 'Small House', 45000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (40, 4, 2230.1, -1280.56, 25.36, 0, 0, 0, 0, 0, 2282.9, -1139.99, 1050.89, 0, 11, 0, 0, 0, 'Small House', 45000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (41, 4, 2209.74, -1239.99, 24.138, 0, 0, 0, 0, 0, 2282.9, -1139.99, 1050.89, 0, 11, 0, 0, 0, 'Small House', 45000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (42, 4, 2133.39, -1232.84, 24.42, 0, 0, 0, 0, 0, 2333.12, -1077.13, 1049.02, 0, 6, 0, 0, 0, 'Minor Manor', 50000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (43, 4, 2148.73, -1484.85, 26.62, 0, 0, 0, 0, 0, 234.162, 1064.23, 1084.21, 0, 6, 0, 0, 0, 'Minor Manor', 800000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (44, 4, 2023.31, -1053.15, 25.59, 0, 0, 0, 0, 0, 260.769, 1237.26, 1084.25, 0, 9, 0, 0, 0, 'Simple House', 65000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (45, 4, 2036.12, -1059.42, 25.649, 0, 0, 0, 0, 0, 260.769, 1237.26, 1084.25, 0, 9, 0, 0, 0, 'Simple House', 65000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (46, 4, 2050.9, -1065.83, 25.78, 0, 0, 0, 0, 0, 260.769, 1237.26, 1084.25, 0, 9, 0, 0, 0, 'Simple House', 65000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (47, 4, 2150.76, -1400.63, 25.79, 0, 0, 0, 0, 0, 2282.9, -1139.99, 1050.89, 0, 11, 0, 0, 0, 'Small House', 45000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (48, 4, 2151.7, -1446.33, 25.77, 0, 0, 0, 0, 0, 2282.9, -1139.99, 1050.89, 0, 11, 0, 0, 0, 'Small House', 45000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (49, 4, 2190.69, -1487.68, 25.77, 0, 0, 0, 0, 0, 2282.9, -1139.99, 1050.89, 0, 11, 0, 0, 0, 'Small House', 45000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (50, 4, 2196.48, -1404.19, 25.61, 0, 0, 0, 0, 0, 2282.9, -1139.99, 1050.89, 0, 11, 0, 0, 0, 'Small House', 45000, 100, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (51, 4, 2147.69, -1366.65, 25.638, 0, 0, 0, 0, 0, 2282.9, -1139.99, 1050.89, 0, 11, 0, 0, 0, 'Small House', 45000, 200, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (52, 4, 2188.83, -1419.29, 26.149, 0, 0, 0, 0, 0, 2196.53, -1204.18, 1049.02, 0, 6, 0, 0, 0, '2 Bedroom House', 100000, 200, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (53, 4, 2150.8, -1419.01, 25.92, 0, 0, 0, 0, 0, 2269.92, -1210.37, 1047.56, 0, 10, 0, 0, 0, 'Big Living Style', 80000, 1500, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (54, 4, 2190.55, -1470.42, 25.909, 0, 0, 0, 0, 0, 2269.92, -1210.37, 1047.56, 0, 10, 0, 0, 0, 'Big Living Style', 80000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (55, 4, 2149.5, -1433.73, 25.94, 0, 0, 0, 0, 0, 327.91, 1477.79, 1084.43, 0, 15, 0, 0, 0, 'Cheap Stuff', 35000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (56, 4, 2373.97, -1138.92, 29.048, 0, 0, 0, 0, 0, -68.847, 1351.31, 1080.21, 0, 6, 0, 0, 0, 'Cheap Stuff', 25000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (57, 4, 2488.07, -1135.61, 39.43, 0, 0, 0, 0, 0, 327.91, 1477.79, 1084.43, 0, 15, 0, 0, 0, 'Cheap Stuff', 35000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (58, 4, 2394.96, -1133.67, 30.708, 0, 0, 0, 0, 0, 2196.53, -1204.18, 1049.02, 0, 6, 0, 0, 0, '2 Bedroom House', 100000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (59, 4, 2191.74, -1239.03, 24.149, 0, 0, 0, 0, 0, 260.989, 1284.29, 1080.25, 0, 4, 0, 0, 0, 'Hallway House', 70000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (60, 4, 2090.73, -1234.89, 25.68, 0, 0, 0, 0, 0, 260.989, 1284.29, 1080.25, 0, 4, 0, 0, 0, 'Hallway House', 70000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (61, 4, 2207.91, -1281.05, 24.79, 0, 0, 0, 0, 0, 260.989, 1284.29, 1080.25, 0, 4, 0, 0, 0, 'Hallway House', 70000, 100, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (62, 4, 2202.75, -1363.93, 25.86, 0, 0, 0, 0, 0, 260.989, 1284.29, 1080.25, 0, 4, 0, 0, 0, 'Hallway House', 70000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (63, 4, 2129.66, -1361.94, 25.798, 0, 0, 0, 0, 0, 260.989, 1284.29, 1080.25, 0, 4, 0, 0, 0, 'Hallway House', 70000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (64, 4, 2146.49, -1470.47, 25.708, 0, 0, 0, 0, 0, 260.989, 1284.29, 1080.25, 0, 4, 0, 0, 0, 'Hallway House', 70000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (65, 4, 2194.53, -1442.93, 25.739, 0, 0, 0, 0, 0, 260.989, 1284.29, 1080.25, 0, 4, 0, 0, 0, 'Hallway House', 70000, 100, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (66, 4, 2230.44, -1396.88, 24.239, 0, 0, 0, 0, 0, 260.989, 1284.29, 1080.25, 0, 4, 0, 0, 0, 'Hallway House', 70000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (67, 4, 2243.47, -1396.96, 24.239, 0, 0, 0, 0, 0, 260.989, 1284.29, 1080.25, 0, 4, 0, 0, 0, 'Hallway House', 70000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (68, 4, 2256.46, -1396.92, 24.239, 0, 0, 0, 0, 0, 260.989, 1284.29, 1080.25, 0, 4, 0, 0, 0, 'Hallway House', 70000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (69, 4, 2263.89, -1469.58, 24.04, 0, 0, 0, 0, 0, 260.989, 1284.29, 1080.25, 0, 4, 0, 0, 0, 'Hallway House', 70000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (70, 4, 2247.69, -1469.54, 24.138, 0, 0, 0, 0, 0, 260.989, 1284.29, 1080.25, 0, 4, 0, 0, 0, 'Hallway House', 70000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (71, 4, 2232.56, -1469.54, 24.25, 0, 0, 0, 0, 0, 260.989, 1284.29, 1080.25, 0, 4, 0, 0, 0, 'Hallway House', 70000, 100, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (72, 4, 2510.35, -1132.66, 41.29, 0, 0, 0, 0, 0, 260.989, 1284.29, 1080.25, 0, 4, 0, 0, 0, 'Hallway House', 70000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (73, 4, 2185.15, -1364, 25.819, 0, 0, 0, 0, 0, 2282.9, -1139.99, 1050.89, 0, 11, 0, 0, 0, 'Small House', 45000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (74, 4, 2061.06, -1075.35, 25.68, 0, 0, 0, 0, 0, 2218.35, -1076.26, 1050.48, 0, 1, 0, 0, 0, 'Light Living', 48000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (75, 4, 1959.58, -1070.07, 24.79, 0, 0, 0, 0, 0, 243.979, 304.98, 999.14, 0, 1, 0, 0, 0, 'Dirty Laundry', 10500, 500, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (76, 4, 1954.38, -1074.93, 24.79, 0, 0, 0, 0, 0, 243.979, 304.98, 999.14, 0, 1, 0, 0, 0, 'Dirty Laundry', 10500, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (77, 4, 1934.04, -1071.51, 24.409, 0, 0, 0, 0, 0, 243.979, 304.98, 999.14, 0, 1, 0, 0, 0, 'Dirty Laundry', 10500, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (78, 4, 1939.27, -1066.39, 24.409, 0, 0, 0, 0, 0, 243.979, 304.98, 999.14, 0, 1, 0, 0, 0, 'Dirty Laundry', 10500, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (79, 4, 1916.88, -1064.77, 24.12, 0, 0, 0, 0, 0, 243.979, 304.98, 999.14, 0, 1, 0, 0, 0, 'Dirty Laundry', 10500, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (80, 4, 1912.61, -1070.55, 24.229, 0, 0, 0, 0, 0, 243.979, 304.98, 999.14, 0, 1, 0, 0, 0, 'Dirty Laundry', 10500, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (81, 4, 1896.04, -1064.84, 23.93, 0, 0, 0, 0, 0, 243.979, 304.98, 999.14, 0, 1, 0, 0, 0, 'Dirty Laundry', 10500, 500, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (82, 4, 1891.77, -1070.53, 23.93, 0, 0, 0, 0, 0, 243.979, 304.98, 999.14, 0, 1, 0, 0, 0, 'Dirty Laundry', 10500, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (83, 4, 2077.3, -1056.98, 31.34, 0, 0, 0, 0, 0, 2218.35, -1076.26, 1050.48, 0, 1, 0, 0, 0, 'Light Living', 48000, 5000, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (84, 4, 2157.15, -1072.39, 40.49, 0, 0, 0, 0, 0, 2237.51, -1081.64, 1049.02, 0, 2, 0, 0, 0, 'Long John', 80000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (85, 4, 2188.76, -1081.51, 43.83, 0, 0, 0, 0, 0, 2237.51, -1081.64, 1049.02, 0, 2, 0, 0, 0, 'Long John', 80000, 1000, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (86, 4, 2207.5, -1100.43, 31.548, 0, 0, 0, 0, 0, 2237.51, -1081.64, 1049.02, 0, 2, 0, 0, 0, 'Long John', 80000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (87, 4, 2213.22, -1000.31, 68.23, 0, 0, 0, 0, 0, 140.229, 1366, 1083.85, 0, 5, 0, 0, 0, 'Secret Hideout', 1000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (88, 4, 1283.54, -897.848, 42.868, 0, 0, 0, 0, 0, 328.493, 1480.59, 1084.45, 0, 15, 0, 0, 0, 'Little Apartment', 50000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (89, 4, 1291.02, -896.89, 42.88, 0, 0, 0, 0, 0, 328.493, 1480.59, 1084.45, 0, 15, 0, 0, 0, 'Little Apartment', 50000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (90, 4, 1291.02, -896.859, 46.618, 0, 0, 0, 0, 0, 328.493, 1480.59, 1084.45, 0, 15, 0, 0, 0, 'Little Apartment', 50000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (91, 4, 1283.53, -897.82, 46.618, 0, 0, 0, 0, 0, 328.493, 1480.59, 1084.45, 0, 15, 0, 0, 0, 'Little Apartment', 50000, 40, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (92, 4, 1291.82, -903.07, 46.63, 0, 0, 0, 0, 0, 328.493, 1480.59, 1084.45, 0, 15, 0, 0, 0, 'Little Apartment', 50000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (93, 4, 1284.36, -903.979, 46.63, 0, 0, 0, 0, 0, 328.493, 1480.59, 1084.45, 0, 15, 0, 0, 0, 'Little Apartment', 50000, 100, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (94, 4, 1284.34, -904.03, 42.88, 0, 0, 0, 0, 0, 328.493, 1480.59, 1084.45, 0, 15, 0, 0, 0, 'Little Apartment', 50000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (95, 4, 1291.83, -903.03, 42.88, 0, 0, 0, 0, 0, 328.493, 1480.59, 1084.45, 0, 15, 0, 0, 0, 'Little Apartment', 50000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (96, 4, 1288.34, -873.89, 43.06, 0, 0, 0, 0, 0, 328.493, 1480.59, 1084.45, 0, 15, 0, 0, 0, 'Little Apartment', 50000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (97, 4, 1280.86, -874.848, 42.93, 0, 0, 0, 0, 0, 328.493, 1480.59, 1084.45, 0, 15, 0, 0, 0, 'Little Apartment', 50000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (98, 4, 1287.53, -867.679, 43.138, 0, 0, 0, 0, 0, 328.493, 1480.59, 1084.45, 0, 15, 0, 0, 0, 'Little Apartment', 50000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (99, 4, 1280.08, -868.619, 42.916, 0, 0, 0, 0, 0, 328.493, 1480.59, 1084.45, 0, 15, 0, 0, 0, 'Little Apartment', 50000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (100, 4, 1287.53, -867.739, 46.83, 0, 0, 0, 0, 0, 328.493, 1480.59, 1084.45, 0, 15, 0, 0, 0, 'Little Apartment', 50000, 5000, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (101, 4, 1280.04, -868.609, 46.83, 0, 0, 0, 0, 0, 328.493, 1480.59, 1084.45, 0, 15, 0, 0, 0, 'Little Apartment', 50000, 250, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (102, 4, 1288.33, -873.82, 46.84, 0, 0, 0, 0, 0, 328.493, 1480.59, 1084.45, 0, 15, 0, 0, 0, 'Little Apartment', 50000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (103, 4, 1280.86, -874.859, 46.84, 0, 0, 0, 0, 0, 328.493, 1480.59, 1084.45, 0, 15, 0, 0, 0, 'Little Apartment', 50000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (104, 4, 1249.61, -877.299, 42.88, 0, 0, 0, 0, 0, 328.493, 1480.59, 1084.45, 0, 15, 0, 0, 0, 'Little Apartment', 50000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (105, 4, 1242.11, -878.229, 42.868, 0, 0, 0, 0, 0, 328.493, 1480.59, 1084.45, 0, 15, 0, 0, 0, 'Little Apartment', 50000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (106, 4, 1248.8, -871.14, 42.88, 0, 0, 0, 0, 0, 328.493, 1480.59, 1084.45, 0, 15, 0, 0, 0, 'Little Apartment', 50000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (107, 4, 1241.31, -872.09, 42.88, 0, 0, 0, 0, 0, 328.493, 1480.59, 1084.45, 0, 15, 0, 0, 0, 'Little Apartment', 50000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (108, 4, 1248.8, -871.15, 46.63, 0, 0, 0, 0, 0, 328.493, 1480.59, 1084.45, 0, 15, 0, 0, 0, 'Little Apartment', 50000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (109, 4, 1241.3, -872.059, 46.63, 0, 0, 0, 0, 0, 328.493, 1480.59, 1084.45, 0, 15, 0, 0, 0, 'Little Apartment', 50000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (110, 4, 1249.61, -877.28, 46.638, 0, 0, 0, 0, 0, 328.493, 1480.59, 1084.45, 0, 15, 0, 0, 0, 'Little Apartment', 50000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (111, 4, 1242.12, -878.218, 46.638, 0, 0, 0, 0, 0, 328.493, 1480.59, 1084.45, 0, 15, 0, 0, 0, 'Little Apartment', 50000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (112, 4, 1252.88, -901.869, 42.88, 0, 0, 0, 0, 0, 328.493, 1480.59, 1084.45, 0, 15, 0, 0, 0, 'Little Apartment', 50000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (113, 4, 1245.4, -902.83, 42.88, 0, 0, 0, 0, 0, 328.493, 1480.59, 1084.45, 0, 15, 0, 0, 0, 'Little Apartment', 50000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (114, 4, 1253.7, -908.059, 42.88, 0, 0, 0, 0, 0, 328.493, 1480.59, 1084.45, 0, 15, 0, 0, 0, 'Little Apartment', 50000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (115, 4, 1246.24, -909.03, 42.88, 0, 0, 0, 0, 0, 328.493, 1480.59, 1084.45, 0, 15, 0, 0, 0, 'Little Apartment', 50000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (116, 4, 1246.21, -908.979, 46.597, 0, 0, 0, 0, 0, 328.493, 1480.59, 1084.45, 0, 15, 0, 0, 0, 'Little Apartment', 50000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (117, 4, 1253.71, -908.098, 46.597, 0, 0, 0, 0, 0, 328.493, 1480.59, 1084.45, 0, 15, 0, 0, 0, 'Little Apartment', 50000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (118, 4, 1245.4, -902.799, 46.59, 0, 0, 0, 0, 0, 328.493, 1480.59, 1084.45, 0, 15, 0, 0, 0, 'Little Apartment', 50000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (119, 4, 1252.89, -901.88, 46.59, 0, 0, 0, 0, 0, 328.493, 1480.59, 1084.45, 0, 15, 0, 0, 0, 'Little Apartment', 50000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (120, 4, 1111.5, -976.299, 42.756, 0, 0, 0, 0, 0, 2333.12, -1077.13, 1049.02, 0, 6, 0, 0, 0, 'Ugly but Big', 50000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (121, 4, 1496.99, -687.89, 95.555, 0, 0, 0, 0, 0, 225.699, 1021.44, 1084.01, 0, 7, 0, 0, 0, 'Major Manor', 3000000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (122, 4, 980.468, -677.26, 121.97, 0, 0, 0, 0, 0, 225.699, 1021.44, 1084.01, 0, 7, 0, 0, 0, 'Major Manor', 3000000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (123, 4, 251.429, -1220.21, 76.097, 0, 0, 0, 0, 0, 225.699, 1021.44, 1084.01, 0, 7, 0, 0, 0, 'Major Manor', 3000000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (124, 4, 253.179, -1270.01, 74.416, 0, 0, 0, 0, 0, 140.229, 1366, 1083.85, 0, 5, 0, 0, 0, 'Fancy Mansion', 1800000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (125, 4, 300.25, -1154.46, 81.388, 0, 0, 0, 0, 0, 140.229, 1366, 1083.85, 0, 5, 0, 0, 0, 'Major Manor', 1800000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (126, 4, 189.63, -1308.16, 70.236, 0, 0, 0, 0, 0, 140.229, 1366, 1083.85, 0, 5, 0, 0, 0, 'Major Manor', 1800000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (127, 4, 1122.7, -2036.98, 69.888, 0, 0, 0, 0, 0, 1298.8, -796.9, 1084.01, 0, 5, 0, 0, 0, 'Major Manor', 3000000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (128, 4, 1981.07, -1682.85, 17.048, 0, 0, 0, 0, 0, 234.162, 1064.23, 1084.21, 0, 6, 0, 0, 0, 'Major Manor', 800000, 5000, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (129, 4, 1980.37, -1718.91, 17.03, 0, 0, 0, 0, 0, 234.162, 1064.23, 1084.21, 0, 6, 0, 0, 0, 'Minor Manor', 800000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (130, 4, 2015.34, -1732.57, 14.229, 0, 0, 0, 0, 0, 2196.53, -1204.18, 1049.02, 0, 6, 0, 0, 0, 'Idlewood House', 100000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (131, 4, 2017.97, -1703.38, 14.229, 0, 0, 0, 0, 0, 2196.53, -1204.18, 1049.02, 0, 6, 0, 0, 0, '2 Bedroom House', 100000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (132, 4, 2067.42, -1731.62, 13.869, 0, 0, 0, 0, 0, 2282.9, -1139.99, 1050.89, 0, 11, 0, 0, 0, 'Small House', 45000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (133, 4, 2068.06, -1628.89, 13.869, 0, 0, 0, 0, 0, 2282.9, -1139.99, 1050.89, 0, 11, 0, 0, 0, 'Small House', 45000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (134, 4, 2016.21, -1641.67, 13.779, 0, 0, 0, 0, 0, 2282.9, -1139.99, 1050.89, 0, 11, 0, 0, 0, 'Small House', 45000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (135, 4, 2015.82, -1716.99, 13.97, 0, 0, 0, 0, 0, 327.91, 1477.79, 1084.43, 0, 15, 0, 0, 0, 'Cheap Stuff', 35000, 5000, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (136, 4, 2066.97, -1656.47, 14.069, 0, 0, 0, 0, 0, 327.91, 1477.79, 1084.43, 0, 15, 0, 0, 0, 'Cheap Stuff', 35000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (137, 4, 2191.58, -1455.88, 25.79, 0, 0, 0, 0, 0, 327.91, 1477.79, 1084.43, 0, 15, 0, 0, 0, 'Cheap Stuff', 35000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (138, 4, 2067.74, -1643.74, 13.8, 0, 0, 0, 0, 0, 260.989, 1284.29, 1080.25, 0, 4, 0, 0, 0, 'Hallway House', 70000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (139, 4, 2066.42, -1717.06, 13.8, 0, 0, 0, 0, 0, 260.989, 1284.29, 1080.25, 0, 4, 0, 0, 0, 'Hallway House', 70000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (140, 4, 2013.31, -1656.37, 13.8, 0, 0, 0, 0, 0, 260.989, 1284.29, 1080.25, 0, 4, 0, 0, 0, 'Hallway House', 70000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (141, 4, 2017.86, -1629.93, 13.71, 0, 0, 0, 0, 0, 260.989, 1284.29, 1080.25, 0, 4, 0, 0, 0, 'Hallway House', 70000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (142, 4, 2065.24, -1703.52, 14.14, 0, 0, 0, 0, 0, -42.58, 1405.59, 1084.42, 0, 8, 0, 0, 0, 'Low Light Living', 70000, 1, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (143, 4, 1969.35, -1705.42, 15.96, 0, 0, 0, 0, 0, 2218.04, -1076.24, 1050.48, 0, 1, 0, 0, 0, 'Fancy Apartment', 20000, 1500, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (144, 4, 1973.28, -1705.26, 15.96, 0, 0, 0, 0, 0, 2218.04, -1076.24, 1050.48, 0, 1, 0, 0, 0, 'Fancy Apartment', 20000, 2000, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (145, 4, 1969.4, -1654.77, 15.96, 0, 0, 0, 0, 0, 2218.04, -1076.24, 1050.48, 0, 1, 0, 0, 0, 'Fancy Apartment', 20000, 100, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (146, 4, 1973.36, -1654.67, 15.96, 0, 0, 0, 0, 0, 2218.04, -1076.24, 1050.48, 0, 1, 0, 0, 0, 'Fancy Apartment', 20000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (147, 4, 1967.48, -1633.76, 15.96, 0, 0, 0, 0, 0, 2233.68, -1115.06, 1050.88, 0, 5, 0, 0, 0, 'Light Apartment', 20000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (148, 4, 1972.28, -1633.71, 15.96, 0, 0, 0, 0, 0, 2233.68, -1115.06, 1050.88, 0, 5, 0, 0, 0, 'Light Apartment', 20000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (149, 4, 1976.04, -1634.06, 16.208, 0, 0, 0, 0, 0, 2233.68, -1115.06, 1050.88, 0, 5, 0, 0, 0, 'Light Apartment', 20000, 50, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (150, 4, 1967.56, -1633.71, 18.559, 0, 0, 0, 0, 0, 2233.68, -1115.06, 1050.88, 0, 5, 0, 0, 0, 'Light Apartment', 20000, 1, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (151, 4, 1972.32, -1633.71, 18.559, 0, 0, 0, 0, 0, 2233.68, -1115.06, 1050.88, 0, 5, 0, 0, 0, 'Light Apartment', 20000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (152, 4, 1976.13, -1634.05, 18.559, 0, 0, 0, 0, 0, 2233.68, -1115.06, 1050.88, 0, 5, 0, 0, 0, 'Light Apartment', 20000, 50, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (153, 4, 1969.98, -1671.4, 15.96, 0, 0, 0, 0, 0, 2233.68, -1115.06, 1050.88, 0, 5, 0, 0, 0, 'Light Apartment', 20000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (154, 4, 1974.85, -1671.26, 15.96, 0, 0, 0, 0, 0, 2233.68, -1115.06, 1050.88, 0, 5, 0, 0, 0, 'Light Apartment', 20000, 100, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (155, 4, 1978.75, -1671.54, 16.18, 0, 0, 0, 0, 0, 2233.68, -1115.06, 1050.88, 0, 5, 0, 0, 0, 'Light Apartment', 20000, 5, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (156, 4, 1970.06, -1671.19, 18.54, 0, 0, 0, 0, 0, 2233.68, -1115.06, 1050.88, 0, 5, 0, 0, 0, 'Light Apartment', 20000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (157, 4, 1974.86, -1671.2, 18.54, 0, 0, 0, 0, 0, 2233.68, -1115.06, 1050.88, 0, 5, 0, 0, 0, 'Light Apartment', 20000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (158, 4, 1978.74, -1671.51, 18.54, 0, 0, 0, 0, 0, 2233.68, -1115.06, 1050.88, 0, 5, 0, 0, 0, 'Light Apartment', 20000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (159, 4, 2082.44, -1085.14, 25.687, 0, 0, 0, 0, 0, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, 0, 'House Ghetto LS Small', 10000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (160, 4, 2075.29, -1081.9, 25.68, 0, 0, 0, 0, 0, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, 0, 'House Ghetto LS Small', 10000, 10, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (161, 4, 2140.68, -1082.55, 25.034, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0, 'Apartment LS Small', 20000, 500, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (162, 4, 2145.24, -1084.66, 25.034, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0, 'Apartment LS Small', 20000, 1000, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (163, 4, 2334.6, -1203.99, 27.975, 0, 0, 0, 0, 0, 243.72, 304.97, 999.14, 0, 1, 0, 0, 0, 'Ghetto Project Apartment LS Small', 2000, 1, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (164, 4, 2324.33, -1218.84, 27.975, 0, 0, 0, 0, 0, 243.72, 304.97, 999.14, 0, 1, 0, 0, 0, 'Ghetto Project Apartment LS Small', 2000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (165, 4, 2334.65, -1234.66, 27.975, 0, 0, 0, 0, 0, 243.72, 304.97, 999.14, 0, 1, 0, 0, 0, 'Ghetto Project Apartment LS Small', 2000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (166, 4, 2324.47, -1249.51, 27.975, 0, 0, 0, 0, 0, 243.72, 304.97, 999.14, 0, 1, 0, 0, 0, 'Ghetto Project Apartment LS Small', 2000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (167, 4, 2334.7, -1266.12, 27.968, 0, 0, 0, 0, 0, 243.72, 304.97, 999.14, 0, 1, 0, 0, 0, 'Ghetto Project Apartment LS Small', 2000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (168, 4, 2324.44, -1280.97, 27.982, 0, 0, 0, 0, 0, 243.72, 304.97, 999.14, 0, 1, 0, 0, 0, 'Ghetto Project Apartment LS Small', 2000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (169, 4, 2427.38, -1135.77, 34.708, 0, 0, 0, 0, 0, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, 0, 'House Ghetto LS Small', 10000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (170, 4, 2467.56, -1200.41, 36.811, 0, 0, 0, 0, 0, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, 0, 'House Ghetto LS Small', 10000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (171, 4, 2492.17, -1239.01, 37.902, 0, 0, 0, 0, 0, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, 0, 'House Ghetto LS Small', 10000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (172, 4, 2494.1, -1224.25, 37.902, 0, 0, 0, 0, 0, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, 0, 'House Ghetto LS Small', 10000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (173, 4, 2472.9, -1238.12, 32.569, 0, 0, 0, 0, 0, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, 0, 'House Ghetto LS Small', 10000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (174, 4, 2474.9, -1223.36, 32.569, 0, 0, 0, 0, 0, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, 0, 'House Ghetto LS Small', 10000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (175, 4, 2469.18, -1278.36, 30.364, 0, 0, 0, 0, 0, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, 0, 'House Ghetto LS Small', 10000, 5000, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (176, 4, 2470.37, -1295.52, 30.232, 0, 0, 0, 0, 0, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, 0, 'House Ghetto LS Small', 10000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (177, 4, 2434.8, -1289.29, 25.347, 0, 0, 0, 0, 0, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, 0, 'House Ghetto LS Small', 10000, 5, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (178, 4, 2433.94, -1303.35, 25.322, 0, 0, 0, 0, 0, 328.13, 1477.9, 1084.43, 0, 15, 0, 0, 0, 'Medium House Ghetto LS', 12000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (179, 4, 2433.93, -1320.68, 25.322, 0, 0, 0, 0, 0, 328.13, 1477.9, 1084.43, 0, 15, 0, 0, 0, 'Medium House Ghetto LS', 12000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (180, 4, 2439.59, -1338.72, 24.1, 0, 0, 0, 0, 0, 328.13, 1477.9, 1084.43, 0, 15, 0, 0, 0, 'Medium House Ghetto LS', 12000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (181, 4, 2439.59, -1357.14, 24.1, 0, 0, 0, 0, 0, 328.13, 1477.9, 1084.43, 0, 15, 0, 0, 0, 'Medium House Ghetto LS', 12000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (182, 4, -2789.59, -181.41, 10.062, 0, 0, 0, 0, 0, 2196.84, -1204.23, 1049.02, 0, 6, 0, 0, 0, 'Normal Size House In SF', 85000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (183, 4, 2421.23, -1277.2, 24.756, 0, 0, 0, 0, 0, 328.13, 1477.9, 1084.43, 0, 15, 0, 0, 0, 'Medium House Ghetto LS', 12000, 500, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (184, 4, 2420.02, -1287.25, 25.347, 0, 0, 0, 0, 0, 328.13, 1477.9, 1084.43, 0, 15, 0, 0, 0, 'Medium House Ghetto LS', 12000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (185, 4, 2419.23, -1301.95, 25.572, 0, 0, 0, 0, 0, 328.13, 1477.9, 1084.43, 0, 15, 0, 0, 0, 'Medium House Ghetto LS', 12000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (186, 4, 2419.23, -1319.22, 25.572, 0, 0, 0, 0, 0, 328.13, 1477.9, 1084.43, 0, 15, 0, 0, 0, 'Medium House Ghetto LS', 12000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (187, 4, 2424.89, -1336.86, 24.322, 0, 0, 0, 0, 0, 328.13, 1477.9, 1084.43, 0, 15, 0, 0, 0, 'Medium House Ghetto LS', 12000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (188, 4, 2424.89, -1355.15, 24.322, 0, 0, 0, 0, 0, 328.13, 1477.9, 1084.43, 0, 15, 0, 0, 0, 'Medium House Ghetto LS', 12000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (189, 4, -2786.77, -175.214, 10.062, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0, 'Apartment 2nd Floor In SF', 80000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (190, 4, 2487.35, -1398.81, 29.312, 0, 0, 0, 0, 0, 243.72, 304.97, 999.14, 0, 1, 0, 0, 0, 'Ghetto Project Apartment LS Small', 2000, 2000, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (191, 4, 2487.3, -1410.34, 29.312, 0, 0, 0, 0, 0, 243.72, 304.97, 999.14, 0, 1, 0, 0, 0, 'Ghetto Project Apartment LS Small', 2000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (192, 4, 2492.25, -1398.81, 29.312, 0, 0, 0, 0, 0, 243.72, 304.97, 999.14, 0, 1, 0, 0, 0, 'Ghetto Project Apartment LS Small', 2000, 500, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (193, 4, 2495.38, -1398.81, 29.312, 0, 0, 0, 0, 0, 243.72, 304.97, 999.14, 0, 1, 0, 0, 0, 'Ghetto Project Apartment LS Small', 2000, 500, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (194, 4, -2790.4, -168.274, 7.201, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0, 'Appartment 1st Floor In SF', 80000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (195, 4, 2495.29, -1410.34, 29.312, 0, 0, 0, 0, 0, 243.72, 304.97, 999.14, 0, 1, 0, 0, 0, 'Ghetto Project Apartment LS Small', 2000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (196, 4, 2492.18, -1410.34, 29.312, 0, 0, 0, 0, 0, 243.72, 304.97, 999.14, 0, 1, 0, 0, 0, 'Ghetto Project Apartment LS Small', 2000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (197, 4, 2476.27, -1410.34, 29.312, 0, 0, 0, 0, 0, 243.72, 304.97, 999.14, 0, 1, 0, 0, 0, 'Ghetto Project Apartment LS Small', 2000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (198, 4, 2473.14, -1410.34, 29.312, 0, 0, 0, 0, 0, 243.72, 304.97, 999.14, 0, 1, 0, 0, 0, 'Ghetto Project Apartment LS Small', 2000, 500, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (199, 4, 2468.25, -1410.34, 29.312, 0, 0, 0, 0, 0, 243.72, 304.97, 999.14, 0, 1, 0, 0, 0, 'Ghetto Project Apartment LS Small', 2000, 1000, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (200, 4, -2791.99, -160.475, 10.053, 0, 0, 0, 0, 0, 2196.84, -1204.23, 1049.02, 0, 6, 0, 0, 0, 'Normal Size Pink House In SF', 85000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (201, 4, 2476.4, -1398.81, 29.312, 0, 0, 0, 0, 0, 243.72, 304.97, 999.14, 0, 1, 0, 0, 0, 'Ghetto Project Apartment LS Small', 2000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (202, 4, 2476.25, -1391.71, 29.312, 0, 0, 0, 0, 0, 243.72, 304.97, 999.14, 0, 1, 0, 0, 0, 'Ghetto Project Apartment LS Small', 2000, 500, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (203, 4, 2473.12, -1391.71, 29.312, 0, 0, 0, 0, 0, 243.72, 304.97, 999.14, 0, 1, 0, 0, 0, 'Ghetto Project Apartment LS Small', 2000, 200, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (204, 4, 2468.3, -1391.71, 29.312, 0, 0, 0, 0, 0, 243.72, 304.97, 999.14, 0, 1, 0, 0, 0, 'Ghetto Project Apartment LS Small', 2000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (205, 4, 2468.3, -1383.37, 29.312, 0, 0, 0, 0, 0, 243.72, 304.97, 999.14, 0, 1, 0, 0, 0, 'Ghetto Project Apartment LS Small', 2000, 200, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (206, 4, 2473.17, -1383.37, 29.312, 0, 0, 0, 0, 0, 243.72, 304.97, 999.14, 0, 1, 0, 0, 0, 'Ghetto Project Apartment LS Small', 2000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (207, 4, 2476.42, -1383.37, 29.312, 0, 0, 0, 0, 0, 243.72, 304.97, 999.14, 0, 1, 0, 0, 0, 'Ghetto Project Apartment LS Small', 2000, 1, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (208, 4, -2792.89, -153.151, 7.596, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0, 'Normal Size Very Light Green House In SF', 55000, 3000, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (209, 4, 2487.38, -1383.38, 29.312, 0, 0, 0, 0, 0, 243.72, 304.97, 999.14, 0, 1, 0, 0, 0, 'Ghetto Project Apartment LS Small', 2000, 200, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (210, 4, 2492.22, -1383.37, 29.312, 0, 0, 0, 0, 0, 243.72, 304.97, 999.14, 0, 1, 0, 0, 0, 'Ghetto Project Apartment LS Small', 2000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (211, 4, 2495.4, -1383.37, 29.312, 0, 0, 0, 0, 0, 243.72, 304.97, 999.14, 0, 1, 0, 0, 0, 'Ghetto Project Apartment LS Small', 2000, 5000, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (212, 4, 2487.29, -1391.71, 29.312, 0, 0, 0, 0, 0, 243.72, 304.97, 999.14, 0, 1, 0, 0, 0, 'Ghetto Project Apartment LS Small', 2000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (213, 4, 2492.12, -1391.71, 29.312, 0, 0, 0, 0, 0, 243.72, 304.97, 999.14, 0, 1, 0, 0, 0, 'Ghetto Project Apartment LS Small', 2000, 250, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (214, 4, -2791.86, -145.983, 7.859, 0, 0, 0, 0, 0, 2196.84, -1204.23, 1049.02, 0, 6, 0, 0, 0, 'Normal Size Blue House In SF', 85000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (215, 4, 2495.35, -1391.71, 29.312, 0, 0, 0, 0, 0, 243.72, 304.97, 999.14, 0, 1, 0, 0, 0, 'Ghetto Project Apartment LS Small', 2000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (216, 4, 2495.41, -1417.44, 29.312, 0, 0, 0, 0, 0, 243.72, 304.97, 999.14, 0, 1, 0, 0, 0, 'Ghetto Project Apartment LS Small', 2000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (217, 4, -2791.99, -134.462, 10.053, 0, 0, 0, 0, 0, 2196.84, -1204.23, 1049.02, 0, 6, 0, 0, 0, 'Normal Size House In SF', 85000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (218, 4, 2495.3, -1424.58, 29.016, 0, 0, 0, 0, 0, 243.72, 304.97, 999.14, 0, 1, 0, 0, 0, 'Ghetto Project Apartment LS Small', 2000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (219, 4, 2492.09, -1424.58, 29.016, 0, 0, 0, 0, 0, 243.72, 304.97, 999.14, 0, 1, 0, 0, 0, 'Ghetto Project Apartment LS Small', 2000, 500, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (220, 4, 2492.27, -1417.44, 29.312, 0, 0, 0, 0, 0, 243.72, 304.97, 999.14, 0, 1, 0, 0, 0, 'Ghetto Project Apartment LS Small', 2000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (221, 4, 2487.35, -1424.58, 29.016, 0, 0, 0, 0, 0, 243.72, 304.97, 999.14, 0, 1, 0, 0, 0, 'Ghetto Project Apartment LS Small', 2000, 200, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (222, 4, 2487.34, -1417.44, 29.312, 0, 0, 0, 0, 0, 243.72, 304.97, 999.14, 0, 1, 0, 0, 0, 'Ghetto Project Apartment LS Small', 2000, 200, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (223, 4, 2476.25, -1424.58, 29.312, 0, 0, 0, 0, 0, 243.72, 304.97, 999.14, 0, 1, 0, 0, 0, 'Ghetto Project Apartment LS Small', 2000, 50, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (224, 4, 2476.39, -1417.44, 29.312, 0, 0, 0, 0, 0, 243.72, 304.97, 999.14, 0, 1, 0, 0, 0, 'Ghetto Project Apartment LS Small', 2000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (225, 4, 2473.12, -1417.44, 29.312, 0, 0, 0, 0, 0, 243.72, 304.97, 999.14, 0, 1, 0, 0, 0, 'Ghetto Project Apartment LS Small', 2000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (226, 4, 2473.09, -1424.57, 29.312, 0, 0, 0, 0, 0, 243.72, 304.97, 999.14, 0, 1, 0, 0, 0, 'Ghetto Project Apartment LS Small', 2000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (227, 4, 2468.3, -1424.58, 29.312, 0, 0, 0, 0, 0, 243.72, 304.97, 999.14, 0, 1, 0, 0, 0, 'Ghetto Project Apartment LS Small', 2000, 5000, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (228, 4, 2468.34, -1417.45, 29.312, 0, 0, 0, 0, 0, 243.72, 304.97, 999.14, 0, 1, 0, 0, 0, 'Ghetto Project Apartment LS Small', 2000, 200, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (229, 4, 2495.35, -1431.68, 29.016, 0, 0, 0, 0, 0, 243.72, 304.97, 999.14, 0, 1, 0, 0, 0, 'Ghetto Project Apartment LS Small', 2000, 500, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (230, 4, 2492.26, -1431.68, 29.016, 0, 0, 0, 0, 0, 243.72, 304.97, 999.14, 0, 1, 0, 0, 0, 'Ghetto Project Apartment LS Small', 2000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (231, 4, 2487.3, -1431.68, 29.016, 0, 0, 0, 0, 0, 243.72, 304.97, 999.14, 0, 1, 0, 0, 0, 'Ghetto Project Apartment LS Small', 2000, 100, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (232, 4, 2476.45, -1431.68, 29.312, 0, 0, 0, 0, 0, 243.72, 304.97, 999.14, 0, 1, 0, 0, 0, 'Ghetto Project Apartment LS Small', 2000, 200, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (233, 4, -2793.14, -126.986, 7.184, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0, 'Normal Size Light Green House In SF', 55000, 500, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (234, 4, 2473.24, -1431.68, 29.312, 0, 0, 0, 0, 0, 243.72, 304.97, 999.14, 0, 1, 0, 0, 0, 'Ghetto Project Apartment LS Small', 2000, 999, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (235, 4, 2468.35, -1431.68, 29.312, 0, 0, 0, 0, 0, 243.72, 304.97, 999.14, 0, 1, 0, 0, 0, 'Ghetto Project Apartment LS Small', 2000, 5000, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (236, 4, 2473.14, -1398.81, 29.312, 0, 0, 0, 0, 0, 243.72, 304.97, 999.14, 0, 1, 0, 0, 0, 'Ghetto Project Apartment LS Small', 2000, 20, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (237, 4, 2468.39, -1398.81, 29.312, 0, 0, 0, 0, 0, 243.72, 304.97, 999.14, 0, 1, 0, 0, 0, 'Ghetto Project Apartment LS Small', 2000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (238, 4, 2468.32, -1376.27, 29.312, 0, 0, 0, 0, 0, 243.72, 304.97, 999.14, 0, 1, 0, 0, 0, 'Ghetto Project Apartment LS Small', 2000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (239, 4, 2473.15, -1376.27, 29.312, 0, 0, 0, 0, 0, 243.72, 304.97, 999.14, 0, 1, 0, 0, 0, 'Ghetto Project Apartment LS Small', 2000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (240, 4, 2476.3, -1376.27, 29.312, 0, 0, 0, 0, 0, 243.72, 304.97, 999.14, 0, 1, 0, 0, 0, 'Ghetto Project Apartment LS Small', 2000, 200, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (241, 4, -2786.77, -118.259, 10.062, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0, 'Appartment 2nd Floor In SF', 80000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (242, 4, 2473.17, -1366.2, 29.312, 0, 0, 0, 0, 0, 243.72, 304.97, 999.14, 0, 1, 0, 0, 0, 'Ghetto Project Apartment LS Small', 2000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (243, 4, 2468.38, -1366.2, 29.312, 0, 0, 0, 0, 0, 243.72, 304.97, 999.14, 0, 1, 0, 0, 0, 'Ghetto Project Apartment LS Small', 2000, 5000, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (244, 4, 2476.37, -1366.2, 29.312, 0, 0, 0, 0, 0, 243.72, 304.97, 999.14, 0, 1, 0, 0, 0, 'Ghetto Project Apartment LS Small', 2000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (245, 4, 2487.39, -1366.2, 29.312, 0, 0, 0, 0, 0, 243.72, 304.97, 999.14, 0, 1, 0, 0, 0, 'Ghetto Project Apartment LS Small', 2000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (246, 4, -2790.34, -111.142, 7.201, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0, 'Appartment 1st Floor In SF', 80000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (247, 4, 2487.3, -1376.27, 29.312, 0, 0, 0, 0, 0, 243.72, 304.97, 999.14, 0, 1, 0, 0, 0, 'Ghetto Project Apartment LS Small', 2000, 200, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (248, 4, 2492.3, -1366.2, 29.312, 0, 0, 0, 0, 0, 243.72, 304.97, 999.14, 0, 1, 0, 0, 0, 'Ghetto Project Apartment LS Small', 2000, 200, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (249, 4, 2492.08, -1376.27, 29.312, 0, 0, 0, 0, 0, 243.72, 304.97, 999.14, 0, 1, 0, 0, 0, 'Ghetto Project Apartment LS Small', 2000, 1, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (250, 4, 2495.31, -1376.27, 29.312, 0, 0, 0, 0, 0, 243.72, 304.97, 999.14, 0, 1, 0, 0, 0, 'Ghetto Project Apartment LS Small', 2000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (251, 4, 2495.47, -1366.21, 29.312, 0, 0, 0, 0, 0, 243.72, 304.97, 999.14, 0, 1, 0, 0, 0, 'Ghetto Project Apartment LS Small', 2000, 200, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (252, 4, -2791.85, -107.452, 7.859, 0, 0, 0, 0, 0, 2196.84, -1204.23, 1049.02, 0, 6, 0, 0, 0, 'Normal Size Green/Brick House In SF', 120000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (253, 4, -2791.99, -94.976, 10.053, 0, 0, 0, 0, 0, 2196.84, -1204.23, 1049.02, 0, 6, 0, 0, 0, 'Normal Size Pink House In SF', 85000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (254, 4, -2786.77, -89.706, 10.062, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0, 'Appartment 2nd Floor In SF', 80000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (255, 4, -2790.42, -82.527, 7.195, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0, 'Appartment 1st Floor In SF', 80000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (256, 4, 2495.33, -1359.1, 29.312, 0, 0, 0, 0, 0, 243.72, 304.97, 999.14, 0, 1, 0, 0, 0, 'Ghetto Project Apartment LS Small', 2000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (257, 4, 2492.1, -1359.1, 29.312, 0, 0, 0, 0, 0, 243.72, 304.97, 999.14, 0, 1, 0, 0, 0, 'Ghetto Project Apartment LS Small', 2000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (258, 4, 2487.26, -1359.1, 29.312, 0, 0, 0, 0, 0, 243.72, 304.97, 999.14, 0, 1, 0, 0, 0, 'Ghetto Project Apartment LS Small', 2000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (259, 4, 2476.28, -1359.1, 29.312, 0, 0, 0, 0, 0, 243.72, 304.97, 999.14, 0, 1, 0, 0, 0, 'Ghetto Project Apartment LS Small', 2000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (260, 4, 2473.07, -1359.1, 29.312, 0, 0, 0, 0, 0, 243.72, 304.97, 999.14, 0, 1, 0, 0, 0, 'Ghetto Project Apartment LS Small', 2000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (261, 4, 2468.24, -1359.1, 29.312, 0, 0, 0, 0, 0, 243.72, 304.97, 999.14, 0, 1, 0, 0, 0, 'Ghetto Project Apartment LS Small', 2000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (262, 4, -2789.24, -52.58, 10.062, 0, 0, 0, 0, 0, 2196.84, -1204.23, 1049.02, 0, 6, 0, 0, 0, 'Normal Size House In SF', 85000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (263, 4, -2791.91, -41.819, 10.053, 0, 0, 0, 0, 0, 2196.84, -1204.23, 1049.02, 0, 6, 0, 0, 0, 'Normal Size Pink House In SF', 85000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (264, 4, 2483.95, -1280.35, 30.468, 0, 0, 0, 0, 0, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, 0, 'House Ghetto LS Small', 10000, 150, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (265, 4, 2482.75, -1293.35, 30.232, 0, 0, 0, 0, 0, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, 0, 'House Ghetto LS Small', 10000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (266, 4, -2791.83, -35.903, 7.859, 0, 0, 0, 0, 0, 2196.84, -1204.23, 1049.02, 0, 6, 0, 0, 0, 'Normal Size Blue House In SF', 85000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (267, 4, 2529.65, -1243.31, 43.971, 0, 0, 0, 0, 0, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, 0, 'House Ghetto LS Small', 10000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (268, 4, 2531.05, -1228.61, 43.721, 0, 0, 0, 0, 0, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, 0, 'House Ghetto LS Small', 10000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (269, 4, -2791.84, -24.284, 10.053, 0, 0, 0, 0, 0, 2196.84, -1204.23, 1049.02, 0, 6, 0, 0, 0, 'Normal Size Blue House In SF', 85000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (270, 4, 2551.05, -1233.79, 49.331, 0, 0, 0, 0, 0, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, 0, 'House Ghetto LS Small', 10000, 600, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (271, 4, -2791.59, -17.635, 7.859, 0, 0, 0, 0, 0, 2196.84, -1204.23, 1049.02, 0, 6, 0, 0, 0, 'Normal Size Green/Brick House In SF', 120000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (272, 4, 2514.62, -1240.45, 39.34, 0, 0, 0, 0, 0, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, 0, 'House Ghetto LS Small', 10000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (273, 4, 2516.52, -1225.75, 39.09, 0, 0, 0, 0, 0, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, 0, 'House Ghetto LS Small', 10000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (274, 4, -2786.76, 0.266, 10.062, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0, 'Appartment 2nd Floor In SF', 80000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (275, 4, -2790.48, 7.368, 7.195, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0, 'Appartment 1st Floor In SF', 80000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (276, 4, -2793.14, 11.194, 7.431, 0, 0, 0, 0, 0, 2196.84, -1204.23, 1049.02, 0, 6, 0, 0, 0, 'Light Pink/Brick House In SF', 120000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (277, 4, 2550.3, -1209.05, 54.54, 0, 0, 0, 0, 0, 328.13, 1477.9, 1084.43, 0, 15, 0, 0, 0, 'Medium House Ghetto LS', 12000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (278, 4, -2793.15, 21.315, 7.184, 0, 0, 0, 0, 0, 2196.84, -1204.23, 1049.02, 0, 6, 0, 0, 0, 'Green Normal Size House In SF', 120000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (279, 4, 2550.19, -1197.53, 60.84, 0, 0, 0, 0, 0, 328.13, 1477.9, 1084.43, 0, 15, 0, 0, 0, 'Medium House Ghetto LS', 12000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (280, 4, 2520.65, -1209.48, 50.291, 0, 0, 0, 0, 0, 328.13, 1477.9, 1084.43, 0, 15, 0, 0, 0, 'Medium House Ghetto LS', 12000, 5000, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (281, 4, 2520.61, -1198, 56.597, 0, 0, 0, 0, 0, 328.13, 1477.9, 1084.43, 0, 15, 0, 0, 0, 'Medium House Ghetto LS', 12000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (282, 4, -2787, 62.868, 10.062, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0, 'Appartment 2nd Floor In SF', 80000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (283, 4, -2790.53, 69.661, 7.201, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0, 'Appartment 1st Floor In SF', 80000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (284, 4, -2791.79, 77.584, 10.053, 0, 0, 0, 0, 0, 2196.84, -1204.23, 1049.02, 0, 6, 0, 0, 0, 'Normal Size Pink House In SF', 85000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (285, 4, 2601.05, -1200.15, 59.5, 0, 0, 0, 0, 0, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, 0, 'House Ghetto LS Small', 10000, 500, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (286, 4, 2601.05, -1203.08, 58.727, 0, 0, 0, 0, 0, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, 0, 'House Ghetto LS Small', 10000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (287, 4, 2601.05, -1207.58, 57.791, 0, 0, 0, 0, 0, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, 0, 'House Ghetto LS Small', 10000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (288, 4, -2792.85, 84.944, 7.622, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0, 'Normal Size Very Light Green House In SF', 55000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (289, 4, 2594.5, -1207.54, 57.651, 0, 0, 0, 0, 0, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, 0, 'House Ghetto LS Small', 10000, 500, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (290, 4, 2594.5, -1203, 58.576, 0, 0, 0, 0, 0, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, 0, 'House Ghetto LS Small', 10000, 500, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (291, 4, 2594.5, -1200.09, 59.354, 0, 0, 0, 0, 0, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, 0, 'House Ghetto LS Small', 10000, 500, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (292, 4, -2791.59, 92.177, 7.859, 0, 0, 0, 0, 0, 2196.84, -1204.23, 1049.02, 0, 6, 0, 0, 0, 'Normal Size Blue House In SF', 85000, 5000, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (293, 4, 2601.05, -1211.81, 56.659, 0, 0, 0, 0, 0, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, 0, 'House Ghetto LS Small', 10000, 500, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (294, 4, 2594.5, -1211.8, 56.513, 0, 0, 0, 0, 0, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, 0, 'House Ghetto LS Small', 10000, 500, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (295, 4, 2601.05, -1216.41, 55.269, 0, 0, 0, 0, 0, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, 0, 'House Ghetto LS Small', 10000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (296, 4, 2594.5, -1216.38, 55.111, 0, 0, 0, 0, 0, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, 0, 'House Ghetto LS Small', 10000, 500, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (297, 4, -2791.82, 103.598, 10.053, 0, 0, 0, 0, 0, 2196.84, -1204.23, 1049.02, 0, 6, 0, 0, 0, 'Normal Size House In SF', 85000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (298, 4, 2601.05, -1220.59, 53.916, 0, 0, 0, 0, 0, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, 0, 'House Ghetto LS Small', 10000, 120, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (299, 4, 2594.5, -1220.49, 53.763, 0, 0, 0, 0, 0, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, 0, 'House Ghetto LS Small', 10000, 449, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (300, 4, 2601.05, -1224.74, 52.625, 0, 0, 0, 0, 0, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, 0, 'House Ghetto LS Small', 10000, 500, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (301, 4, 2594.5, -1224.71, 52.477, 0, 0, 0, 0, 0, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, 0, 'House Ghetto LS Small', 10000, 500, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (302, 4, 2601.05, -1229.29, 51.34, 0, 0, 0, 0, 0, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, 0, 'House Ghetto LS Small', 10000, 500, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (303, 4, -2793.14, 110.986, 7.184, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0, 'Normal Size Light Green House In SF', 55000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (304, 4, 2594.5, -1229.26, 51.187, 0, 0, 0, 0, 0, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, 0, 'House Ghetto LS Small', 10000, 5000, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (305, 4, 2601.05, -1233.56, 50.111, 0, 0, 0, 0, 0, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, 0, 'House Ghetto LS Small', 10000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (306, 4, 2594.5, -1233.55, 49.962, 0, 0, 0, 0, 0, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, 0, 'House Ghetto LS Small', 10000, 5000, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (307, 4, 2601.05, -1238.12, 48.715, 0, 0, 0, 0, 0, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, 0, 'House Ghetto LS Small', 10000, 10, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (308, 4, 2594.5, -1238.05, 48.562, 0, 0, 0, 0, 0, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, 0, 'House Ghetto LS Small', 10000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (309, 4, -2786.98, 119.901, 10.062, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0, 'Appartment 2nd Floor In SF', 80000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (310, 4, 2608.15, -1200.07, 60.991, 0, 0, 0, 0, 0, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, 0, 'House Ghetto LS Small', 10000, 500, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (311, 4, 2615.11, -1200.1, 60.777, 0, 0, 0, 0, 0, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, 0, 'House Ghetto LS Small', 10000, 500, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (312, 4, -2790.59, 126.902, 7.201, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0, 'Appartment 1st Floor In SF', 80000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (313, 4, 2608.15, -1203, 60.215, 0, 0, 0, 0, 0, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, 0, 'House Ghetto LS Small', 10000, 500, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (314, 4, 2615.11, -1203.1, 60, 0, 0, 0, 0, 0, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, 0, 'House Ghetto LS Small', 10000, 500, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (315, 4, 2608.15, -1207.57, 59.283, 0, 0, 0, 0, 0, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, 0, 'House Ghetto LS Small', 10000, 90, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (316, 4, 2615.11, -1207.64, 59.069, 0, 0, 0, 0, 0, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, 0, 'House Ghetto LS Small', 10000, 500, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (317, 4, 2608.15, -1211.73, 58.147, 0, 0, 0, 0, 0, 222.93, 1287.08, 1082.14, 0, 1, 0, 0, 0, 'House Ghetto LS Small', 10000, 500, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (318, 4, 2615.11, -1211.84, 57.937, 0, 0, 0, 0, 0, 222.93, 1287.08, 1082.14, 0, 1, 0, 0, 0, 'House Ghetto LS Small', 10000, 500, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (319, 4, 2608.15, -1216.28, 56.761, 0, 0, 0, 0, 0, 222.93, 1287.08, 1082.14, 0, 1, 0, 0, 0, 'House Ghetto LS Small', 10000, 1000, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (320, 4, 2615.11, -1216.3, 56.539, 0, 0, 0, 0, 0, 222.93, 1287.08, 1082.14, 0, 1, 0, 0, 0, 'House Ghetto LS Small', 10000, 100, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (321, 4, 2608.15, -1220.51, 55.409, 0, 0, 0, 0, 0, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, 0, 'House Ghetto LS Small', 10000, 1000, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (322, 4, 2615.11, -1220.58, 55.187, 0, 0, 0, 0, 0, 222.93, 1287.08, 1082.14, 0, 1, 0, 0, 0, 'House Ghetto LS Small', 10000, 500, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (323, 4, 2608.15, -1224.64, 54.117, 0, 0, 0, 0, 0, 222.93, 1287.08, 1082.14, 0, 1, 0, 0, 0, 'House Ghetto LS Small', 10000, 500, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (324, 4, -2791.68, 130.617, 7.859, 0, 0, 0, 0, 0, 2196.84, -1204.23, 1049.02, 0, 6, 0, 0, 0, 'Normal Size Green/Brick House In SF', 120000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (325, 4, 2615.11, -1224.75, 53.896, 0, 0, 0, 0, 0, 222.93, 1287.08, 1082.14, 0, 1, 0, 0, 0, 'House Ghetto LS Small', 10000, 500, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (326, 4, 2608.15, -1229.19, 52.832, 0, 0, 0, 0, 0, 222.93, 1287.08, 1082.14, 0, 1, 0, 0, 0, 'House Ghetto LS Small', 10000, 500, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (327, 4, 2615.11, -1229.28, 52.609, 0, 0, 0, 0, 0, 222.93, 1287.08, 1082.14, 0, 1, 0, 0, 0, 'House Ghetto LS Small', 10000, 500, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (328, 4, 2608.15, -1233.42, 51.602, 0, 0, 0, 0, 0, 222.93, 1287.08, 1082.14, 0, 1, 0, 0, 0, 'House Ghetto LS Small', 10000, 5000, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (329, 4, 2615.11, -1233.57, 51.381, 0, 0, 0, 0, 0, 222.93, 1287.08, 1082.14, 0, 1, 0, 0, 0, 'House Ghetto LS Small', 10000, 500, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (330, 4, 2608.15, -1238.01, 50.205, 0, 0, 0, 0, 0, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, 0, 'Safehouse', 10000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (331, 4, 2615.11, -1238.09, 49.984, 0, 0, 0, 0, 0, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, 0, 'House Ghetto LS Small', 10000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (332, 4, -2791.81, 143.255, 10.053, 0, 0, 0, 0, 0, 2196.84, -1204.23, 1049.02, 0, 6, 0, 0, 0, 'Normal Size Pink House In SF', 85000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (333, 4, 2587.4, -1238.14, 48.562, 0, 0, 0, 0, 0, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, 0, 'House Ghetto LS Small', 10000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (334, 4, 2587.4, -1233.59, 49.962, 0, 0, 0, 0, 0, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, 0, 'House Ghetto LS Small', 10000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (335, 4, 2587.4, -1229.28, 51.187, 0, 0, 0, 0, 0, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, 0, 'House Ghetto LS Small', 10000, 500, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (336, 4, 2587.4, -1224.72, 52.477, 0, 0, 0, 0, 0, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, 0, 'House Ghetto LS Small', 10000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (337, 4, 2587.39, -1220.59, 53.763, 0, 0, 0, 0, 0, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, 0, 'House Ghetto LS Small', 10000, 500, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (338, 4, 2587.4, -1216.4, 55.111, 0, 0, 0, 0, 0, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, 0, 'House Ghetto LS Small', 10000, 500, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (339, 4, 2587.4, -1211.86, 56.513, 0, 0, 0, 0, 0, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, 0, 'House Ghetto LS Small', 10000, 1, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (340, 4, 2587.4, -1207.67, 57.651, 0, 0, 0, 0, 0, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, 0, 'House Ghetto LS Small', 10000, 400, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (341, 4, 2587.4, -1203.17, 58.576, 0, 0, 0, 0, 0, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, 0, 'House Ghetto LS Small', 10000, 500, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (342, 4, 2587.4, -1200.11, 59.354, 0, 0, 0, 0, 0, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, 0, 'House Ghetto LS Small', 10000, 500, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (343, 4, -2789.34, 183.695, 10.062, 0, 0, 0, 0, 0, 2196.84, -1204.23, 1049.02, 0, 6, 0, 0, 0, 'Normal Size House In SF', 85000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (344, 4, 2622.21, -1237.97, 51.268, 0, 0, 0, 0, 0, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, 0, 'House Ghetto LS Small', 10000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (345, 4, 2622.21, -1233.49, 52.665, 0, 0, 0, 0, 0, 222.93, 1287.08, 1082.14, 0, 1, 0, 0, 0, 'House Ghetto LS Small', 10000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (346, 4, 2622.21, -1229.17, 53.894, 0, 0, 0, 0, 0, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, 0, 'House Ghetto LS Small', 10000, 1, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (347, 4, 2622.21, -1224.62, 55.18, 0, 0, 0, 0, 0, 222.93, 1287.08, 1082.14, 0, 1, 0, 0, 0, 'House Ghetto LS Small', 10000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (348, 4, 2622.21, -1220.51, 56.472, 0, 0, 0, 0, 0, 222.93, 1287.08, 1082.14, 0, 1, 0, 0, 0, 'House Ghetto LS Small', 10000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (349, 4, 2622.22, -1216.29, 57.823, 0, 0, 0, 0, 0, 222.93, 1287.08, 1082.14, 0, 1, 0, 0, 0, 'House Ghetto LS Small', 10000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (350, 4, 2622.21, -1211.76, 59.209, 0, 0, 0, 0, 0, 222.93, 1287.08, 1082.14, 0, 1, 0, 0, 0, 'House Ghetto LS Small', 10000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (351, 4, -2791.81, 194.57, 10.053, 0, 0, 0, 0, 0, 2196.84, -1204.23, 1049.02, 0, 6, 0, 0, 0, 'Normal Size Pink House In SF', 85000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (352, 4, 2622.22, -1207.58, 60.346, 0, 0, 0, 0, 0, 222.93, 1287.08, 1082.14, 0, 1, 0, 0, 0, 'House Ghetto LS Small', 10000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (353, 4, 2622.22, -1203.05, 61.278, 0, 0, 0, 0, 0, 222.93, 1287.08, 1082.14, 0, 1, 0, 0, 0, 'House Ghetto LS Small', 10000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (354, 4, 2622.22, -1199.95, 62.054, 0, 0, 0, 0, 0, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, 0, 'House Ghetto LS Small', 10000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (355, 4, -2791.65, 200.578, 7.859, 0, 0, 0, 0, 0, 2196.84, -1204.23, 1049.02, 0, 6, 0, 0, 0, 'Normal Size Blue House In SF', 85000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (356, 4, -2791.81, 212, 10.053, 0, 0, 0, 0, 0, 2196.84, -1204.23, 1049.02, 0, 6, 0, 0, 0, 'Normal Size Blue House In SF', 85000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (357, 4, -2791.6, 218.567, 7.859, 0, 0, 0, 0, 0, 2196.84, -1204.23, 1049.02, 0, 6, 0, 0, 0, 'Normal Size Green/Brick House In SF', 120000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (358, 4, 2663.18, -1238.14, 55.673, 0, 0, 0, 0, 0, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, 0, 'House Ghetto LS Small', 10000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (359, 4, 2663.18, -1233.56, 57.069, 0, 0, 0, 0, 0, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, 0, 'House Ghetto LS Small', 10000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (360, 4, 2663.18, -1229.27, 58.298, 0, 0, 0, 0, 0, 222.93, 1287.08, 1082.14, 0, 1, 0, 0, 0, 'House Ghetto LS Small', 10000, 10, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (361, 4, 2663.18, -1224.83, 59.584, 0, 0, 0, 0, 0, 222.93, 1287.08, 1082.14, 0, 1, 0, 0, 0, 'House Ghetto LS Small', 10000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (362, 4, 2663.18, -1220.59, 60.874, 0, 0, 0, 0, 0, 222.93, 1287.08, 1082.14, 0, 1, 0, 0, 0, 'House Ghetto LS Small', 10000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (363, 4, 2663.18, -1216.33, 62.222, 0, 0, 0, 0, 0, 222.93, 1287.08, 1082.14, 0, 1, 0, 0, 0, 'House Ghetto LS Small', 10000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (364, 4, 2663.18, -1211.8, 63.623, 0, 0, 0, 0, 0, 222.93, 1287.08, 1082.14, 0, 1, 0, 0, 0, 'House Ghetto LS Small', 10000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (365, 4, 2663.18, -1207.64, 64.76, 0, 0, 0, 0, 0, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, 0, 'House Ghetto LS Small', 10000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (366, 4, 2663.18, -1203.19, 65.682, 0, 0, 0, 0, 0, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, 0, 'House Ghetto LS Small', 10000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (367, 4, 2663.18, -1200.14, 66.467, 0, 0, 0, 0, 0, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, 0, 'House Ghetto LS Small', 10000, 1000, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (368, 4, 2670.28, -1200.04, 66.496, 0, 0, 0, 0, 0, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, 0, 'House Ghetto LS Small', 10000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (369, 4, 2670.28, -1203.03, 65.727, 0, 0, 0, 0, 0, 222.93, 1287.08, 1082.14, 0, 1, 0, 0, 0, 'House Ghetto LS Small', 10000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (370, 4, 2670.28, -1207.56, 64.804, 0, 0, 0, 0, 0, 222.93, 1287.08, 1082.14, 0, 1, 0, 0, 0, 'House Ghetto LS Small', 10000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (371, 4, 2670.28, -1211.74, 63.666, 0, 0, 0, 0, 0, 222.93, 1287.08, 1082.14, 0, 1, 0, 0, 0, 'House Ghetto LS Small', 10000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (372, 4, 2670.28, -1216.36, 62.262, 0, 0, 0, 0, 0, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, 0, 'House Ghetto LS Small', 10000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (373, 4, 2670.28, -1220.46, 60.923, 0, 0, 0, 0, 0, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, 0, 'House Ghetto LS Small', 10000, 100, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (374, 4, 2670.28, -1224.74, 59.629, 0, 0, 0, 0, 0, 222.93, 1287.08, 1082.14, 0, 1, 0, 0, 0, 'House Ghetto LS Small', 10000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (375, 4, 2670.28, -1229.17, 58.36, 0, 0, 0, 0, 0, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, 0, 'House Ghetto LS Small', 10000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (376, 4, 2670.28, -1233.48, 57.123, 0, 0, 0, 0, 0, 222.93, 1287.08, 1082.14, 0, 1, 0, 0, 0, 'House Ghetto LS Small', 10000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (377, 4, 2670.28, -1238.05, 55.728, 0, 0, 0, 0, 0, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, 0, 'House Ghetto LS Small', 10000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (378, 4, 2683.44, -1238.05, 56.019, 0, 0, 0, 0, 0, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, 0, 'House Ghetto LS Small', 10000, 5000, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (379, 4, 2683.44, -1233.54, 57.416, 0, 0, 0, 0, 0, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, 0, 'House Ghetto LS Small', 10000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (380, 4, 2683.44, -1229.32, 58.645, 0, 0, 0, 0, 0, 222.93, 1287.08, 1082.14, 0, 1, 0, 0, 0, 'House Ghetto LS Small', 10000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (381, 4, 2683.44, -1224.74, 59.93, 0, 0, 0, 0, 0, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, 0, 'House Ghetto LS Small', 10000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (382, 4, 2683.44, -1220.6, 61.222, 0, 0, 0, 0, 0, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, 0, 'House Ghetto LS Small', 10000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (383, 4, 2683.44, -1216.35, 62.574, 0, 0, 0, 0, 0, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, 0, 'House Ghetto LS Small', 10000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (384, 4, 2683.44, -1211.88, 63.963, 0, 0, 0, 0, 0, 222.93, 1287.08, 1082.14, 0, 1, 0, 0, 0, 'House Ghetto LS Small', 10000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (385, 4, 2683.44, -1207.64, 65.097, 0, 0, 0, 0, 0, 222.93, 1287.08, 1082.14, 0, 1, 0, 0, 0, 'House Ghetto LS Small', 10000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (386, 4, 2683.44, -1203.14, 66.029, 0, 0, 0, 0, 0, 222.93, 1287.08, 1082.14, 0, 1, 0, 0, 0, 'House Ghetto LS Small', 10000, 500, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (387, 4, 2683.44, -1200.19, 66.805, 0, 0, 0, 0, 0, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, 0, 'House Ghetto LS Small', 10000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (388, 4, 2690.54, -1200.05, 68.293, 0, 0, 0, 0, 0, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, 0, 'House Ghetto LS Small', 10000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (389, 4, 2700.21, -1200.19, 68.97, 0, 0, 0, 0, 0, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, 0, 'House Ghetto LS Small', 10000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (390, 4, 2690.54, -1202.95, 67.522, 0, 0, 0, 0, 0, 222.93, 1287.08, 1082.14, 0, 1, 0, 0, 0, 'House Ghetto LS Small', 10000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (391, 4, 2700.21, -1203.11, 68.194, 0, 0, 0, 0, 0, 222.93, 1287.08, 1082.14, 0, 1, 0, 0, 0, 'House Ghetto LS Small', 10000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (392, 4, 2690.54, -1207.56, 66.585, 0, 0, 0, 0, 0, 222.93, 1287.08, 1082.14, 0, 1, 0, 0, 0, 'House Ghetto LS Small', 10000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (393, 4, 2700.2, -1207.66, 67.261, 0, 0, 0, 0, 0, 222.93, 1287.08, 1082.14, 0, 1, 0, 0, 0, 'House Ghetto LS Small', 10000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (394, 4, 2700.2, -1211.84, 66.125, 0, 0, 0, 0, 0, 222.93, 1287.08, 1082.14, 0, 1, 0, 0, 0, 'House Ghetto LS Small', 10000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (395, 4, 2690.54, -1211.79, 65.454, 0, 0, 0, 0, 0, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, 0, 'House Ghetto LS Small', 10000, 5000, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (396, 4, 2700.2, -1216.36, 64.736, 0, 0, 0, 0, 0, 222.93, 1287.08, 1082.14, 0, 1, 0, 0, 0, 'House Ghetto LS Small', 10000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (397, 4, 2690.54, -1216.25, 64.065, 0, 0, 0, 0, 0, 222.93, 1287.08, 1082.14, 0, 1, 0, 0, 0, 'House Ghetto LS Small', 10000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (398, 4, 2700.21, -1220.59, 63.388, 0, 0, 0, 0, 0, 222.93, 1287.08, 1082.14, 0, 1, 0, 0, 0, 'House Ghetto LS Small', 10000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (399, 4, -2724.67, -191.322, 4.335, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0, 'Appartment 1st Floor In SF', 80000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (400, 4, 2690.54, -1220.48, 62.715, 0, 0, 0, 0, 0, 222.93, 1287.08, 1082.14, 0, 1, 0, 0, 0, 'House Ghetto LS Small', 10000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (401, 4, 2700.2, -1224.74, 62.095, 0, 0, 0, 0, 0, 222.93, 1287.08, 1082.14, 0, 1, 0, 0, 0, 'House Ghetto LS Small', 10000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (402, 4, 2690.55, -1224.79, 61.423, 0, 0, 0, 0, 0, 222.93, 1287.08, 1082.14, 0, 1, 0, 0, 0, 'House Ghetto LS Small', 10000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (403, 4, 2700.21, -1229.31, 60.81, 0, 0, 0, 0, 0, 222.93, 1287.08, 1082.14, 0, 1, 0, 0, 0, 'House Ghetto LS Small', 10000, 500, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (404, 4, 2690.54, -1229.15, 60.136, 0, 0, 0, 0, 0, 222.93, 1287.08, 1082.14, 0, 1, 0, 0, 0, 'House Ghetto LS Small', 10000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (405, 4, -2728.16, -184.179, 7.203, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0, 'Appartment In SF 2nd Floor', 80000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (406, 4, 2700.21, -1233.57, 59.581, 0, 0, 0, 0, 0, 222.93, 1287.08, 1082.14, 0, 1, 0, 0, 0, 'House Ghetto LS Small', 10000, 5000, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (407, 4, 2690.54, -1233.41, 58.907, 0, 0, 0, 0, 0, 222.93, 1287.08, 1082.14, 0, 1, 0, 0, 0, 'House Ghetto LS Small', 10000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (408, 4, 2700.2, -1238.05, 58.18, 0, 0, 0, 0, 0, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, 0, 'House Ghetto LS Small', 10000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (409, 4, 2690.54, -1238.06, 57.506, 0, 0, 0, 0, 0, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, 0, 'House Ghetto LS Small', 10000, 1, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (410, 4, -2723.15, -179.074, 7.203, 0, 0, 0, 0, 0, 2196.84, -1204.23, 1049.02, 0, 6, 0, 0, 0, 'Normal Size Pink House In SF', 85000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (411, 4, 2707.3, -1237.91, 59.673, 0, 0, 0, 0, 0, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, 0, 'House Ghetto LS Small', 10000, 1, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (412, 4, 2707.31, -1233.54, 61.069, 0, 0, 0, 0, 0, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, 0, 'House Ghetto LS Small', 10000, 500, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (413, 4, 2707.3, -1229.25, 62.298, 0, 0, 0, 0, 0, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, 0, 'House Ghetto LS Small', 10000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (414, 4, 2707.31, -1224.67, 63.583, 0, 0, 0, 0, 0, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, 0, 'House Ghetto LS Small', 10000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (415, 4, 2707.3, -1220.59, 64.877, 0, 0, 0, 0, 0, 222.93, 1287.08, 1082.14, 0, 1, 0, 0, 0, 'House Ghetto LS Small', 10000, 500, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (416, 4, 2707.3, -1216.32, 66.225, 0, 0, 0, 0, 0, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, 0, 'House Ghetto LS Small', 10000, 5000, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (417, 4, 2707.3, -1211.75, 67.614, 0, 0, 0, 0, 0, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, 0, 'House Ghetto LS Small', 10000, 1000, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (418, 4, -2723.32, -166.457, 5, 0, 0, 0, 0, 0, 2196.84, -1204.23, 1049.02, 0, 6, 0, 0, 0, 'Normal Size Green/Brick House In SF', 120000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (419, 4, 2707.31, -1207.58, 68.75, 0, 0, 0, 0, 0, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, 0, 'House Ghetto LS Small', 10000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (420, 4, 2707.31, -1203.04, 69.681, 0, 0, 0, 0, 0, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, 0, 'House Ghetto LS Small', 10000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (421, 4, 2707.31, -1200.06, 70.458, 0, 0, 0, 0, 0, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, 0, 'House Ghetto LS Small', 10000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (422, 4, -2724.67, -162.744, 4.342, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0, 'Appartment 1st Floor In SF', 80000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (423, 4, -2728.16, -155.699, 7.203, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0, 'Appartment 2nd Floor In SF', 80000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (424, 4, -2721.77, -146.755, 4.335, 0, 0, 0, 0, 0, 2196.84, -1204.23, 1049.02, 0, 6, 0, 0, 0, 'Normal Size Green House In SF', 85000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (425, 4, -2723.03, -139.395, 7.203, 0, 0, 0, 0, 0, 2196.84, -1204.23, 1049.02, 0, 6, 0, 0, 0, 'Normal Size House In SF', 85000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (426, 4, -2723.33, -127.869, 5, 0, 0, 0, 0, 0, 2196.84, -1204.23, 1049.02, 0, 6, 0, 0, 0, 'Normal Size Blue House In SF', 85000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (427, 4, 2781.94, -1358.42, 26.37, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0, 'Apartment LS Medium', 25000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (428, 4, -2722.05, -120.75, 4.76, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0, 'Normal Size Very Light Green House In SF', 55000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (429, 4, 2781.94, -1333.42, 32.395, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0, 'Apartment LS Medium', 25000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (430, 4, 2782.15, -1306.33, 38.886, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0, 'Apartment LS Medium', 25000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (431, 4, 2782.15, -1281.21, 44.368, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0, 'Apartment LS Medium', 25000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (432, 4, 2809.53, -1324.86, 33.868, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0, 'Apartment LS Medium', 25000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (433, 4, 2809.53, -1302.93, 38.928, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0, 'Apartment LS Medium', 25000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (434, 4, 2809.53, -1281.04, 43.9, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0, 'Apartment LS Medium', 25000, 1, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (435, 4, -2723.02, -113.389, 7.203, 0, 0, 0, 0, 0, 2196.84, -1204.23, 1049.02, 0, 6, 0, 0, 0, 'Normal Size Pink House In SF', 85000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (436, 4, 2807.98, -1353.99, 27.218, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0, 'Apartment LS Medium', 25000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (437, 4, 2807.98, -1369.6, 23.582, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0, 'Apartment LS Medium', 25000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (438, 4, -2724.65, -105.619, 4.342, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0, 'Appartment 1st Floor In SF', 80000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (439, 4, -2728.17, -98.413, 7.203, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0, 'Appartment 2nd Floor In SF', 80000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (440, 4, 2846.99, -1309.7, 14.704, 0, 0, 0, 0, 0, 261.058, 1284.29, 1080.25, 0, 4, 0, 0, 0, 'Ls House Near Beach Medium', 30000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (441, 4, -2725.75, -92.375, 7.203, 0, 0, 0, 0, 0, 2196.84, -1204.23, 1049.02, 0, 6, 0, 0, 0, 'Normal Size House In SF', 85000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (442, 4, -2724.7, -58.02, 4.342, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0, 'Appartment 1st Floor In SF', 80000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (443, 4, -2728.19, -51.062, 7.203, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0, 'Appartment 2nd Floor In SF', 80000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (444, 4, 2851.85, -1365.97, 14.17, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0, 'Apartment Near the beach LS big', 25000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (445, 4, -2722.11, -44.712, 4.769, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0, 'Normal Size Very Light Green House In SF', 55000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (446, 4, -2725.64, -36.597, 7.195, 0, 0, 0, 0, 0, 2196.84, -1204.23, 1049.02, 0, 6, 0, 0, 0, 'Normal Size House In SF', 85000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (447, 4, -2721.8, -23.27, 4.57, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0, 'Normal Size Pink/Brick House In SF', 55000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (448, 4, 2808.05, -1190.89, 25.34, 0, 0, 0, 0, 0, 225.755, 1240, 1082.15, 0, 2, 0, 0, 0, 'LS Apartment Near Beach Medium', 40000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (449, 4, 2808.01, -1175.92, 25.381, 0, 0, 0, 0, 0, 225.755, 1240, 1082.15, 0, 2, 0, 0, 0, 'LS Apartment Near Beach Medium', 40000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (450, 4, -2723.17, -17.311, 7.203, 0, 0, 0, 0, 0, 2196.84, -1204.23, 1049.02, 0, 6, 0, 0, 0, 'Normal Size Pink House In SF', 85000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (451, 4, -2723.05, 4.473, 7.203, 0, 0, 0, 0, 0, 2196.84, -1204.23, 1049.02, 0, 6, 0, 0, 0, 'Normal Size House In SF', 85000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (452, 4, -2722.1, 14.479, 4.768, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0, 'Normal Size Very Light Green House In SF', 55000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (453, 4, 2842.19, -1334.78, 14.741, 0, 0, 0, 0, 0, 225.755, 1240, 1082.15, 0, 2, 0, 0, 0, 'LS Apartment Near Beach Medium', 40000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (454, 4, -2723.12, 21.927, 7.203, 0, 0, 0, 0, 0, 2196.84, -1204.23, 1049.02, 0, 6, 0, 0, 0, 'Normal Size Pink House In SF', 85000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (455, 4, -2686.82, -188.194, 7.203, 0, 0, 0, 0, 0, 2196.84, -1204.23, 1049.02, 0, 6, 0, 0, 0, 'Normal Size House In SF', 85000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (456, 4, -2684.41, -182.154, 7.203, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0, 'Appartment 2nd Floor In SF', 80000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (457, 4, -2687.89, -175.078, 4.342, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0, 'Appartment 1st Floor In SF', 80000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (458, 4, -2689.4, -167.302, 7.203, 0, 0, 0, 0, 0, 2196.84, -1204.23, 1049.02, 0, 6, 0, 0, 0, 'Normal Size Pink House In SF', 85000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (459, 4, -2690.5, -159.764, 4.764, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0, 'Normal Size Light Green House In SF', 55000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (460, 4, 2755.71, -1400.45, 39.375, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0, 'Apartment Near the beach LS big', 25000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (461, 4, -2689.24, -152.916, 5, 0, 0, 0, 0, 0, 2196.84, -1204.23, 1049.02, 0, 6, 0, 0, 0, 'Normal Size Blue House In SF', 85000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (462, 4, -2689.38, -141.274, 7.203, 0, 0, 0, 0, 0, 2196.84, -1204.23, 1049.02, 0, 6, 0, 0, 0, 'Normal Size House In SF', 85000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (463, 4, 2756.29, -1302.54, 53.09, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0, 'Apartment Near the beach LS big', 25000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (464, 4, 2755.85, -1276.47, 56.59, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0, 'Apartment Near the beach LS big', 25000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (465, 4, -2690.79, -134.054, 4.335, 0, 0, 0, 0, 0, 2196.84, -1204.23, 1049.02, 0, 6, 0, 0, 0, 'Normal Size Green House In SF', 85000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (466, 4, -2684.42, -125.068, 7.203, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0, 'Appartment 2nd Floor In SF', 80000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (467, 4, -2687.9, -118.16, 4.342, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0, 'Appartment 1st Floor In SF', 80000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (468, 4, 2776.06, -1245.37, 49.576, 0, 0, 0, 0, 0, 225.755, 1240, 1082.15, 0, 2, 0, 0, 0, 'LS Apartment Near Beach Medium', 40000, 1000, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (469, 4, 2797.81, -1245.37, 47.381, 0, 0, 0, 0, 0, 225.755, 1240, 1082.15, 0, 2, 0, 0, 0, 'LS Apartment Near Beach Medium', 40000, 500, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (470, 4, -2689.25, -114.135, 5, 0, 0, 0, 0, 0, 2196.84, -1204.23, 1049.02, 0, 6, 0, 0, 0, 'Normal Size Green/Brick House In SF', 120000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (471, 4, -2689.35, -101.62, 7.203, 0, 0, 0, 0, 0, 2196.84, -1204.23, 1049.02, 0, 6, 0, 0, 0, 'Normal Size Pink House In SF', 85000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (472, 4, -2684.55, -96.443, 7.203, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0, 'Appartment 2nd Floor In SF', 80000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (473, 4, -2688.06, -89.444, 4.335, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0, 'Appartment 1st Floor In SF', 80000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (474, 4, 2750.39, -1238.8, 61.52, 0, 0, 0, 0, 0, 225.755, 1240, 1082.15, 0, 2, 0, 0, 0, 'LS Apartment Near Beach Medium', 40000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (475, 4, 2750.39, -1222.23, 64.597, 0, 0, 0, 0, 0, 225.755, 1240, 1082.15, 0, 2, 0, 0, 0, 'LS Apartment Near Beach Medium', 40000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (476, 4, 2750.39, -1205.76, 67.484, 0, 0, 0, 0, 0, 225.755, 1240, 1082.15, 0, 2, 0, 0, 0, 'LS Apartment Near Beach Medium', 40000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (477, 4, 2756.27, -1182.81, 69.402, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0, 'Apartment Near the beach LS big', 25000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (478, 4, -2689.38, 57.087, 7.203, 0, 0, 0, 0, 0, 2196.84, -1204.23, 1049.02, 0, 6, 0, 0, 0, 'Normal Size Pink House In SF', 85000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (479, 4, -2690.49, 64.591, 4.762, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0, 'Normal Size Light Green House In SF', 55000, 1, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (480, 4, -2689.49, 74.558, 7.203, 0, 0, 0, 0, 0, 2196.84, -1204.23, 1049.02, 0, 6, 0, 0, 0, 'Normal Size House In SF', 85000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (481, 4, 2628.09, -1067.86, 69.708, 0, 0, 0, 0, 0, 243.72, 304.97, 999.14, 0, 1, 0, 0, 0, 'Ghetto Project Apartment LS Small', 2000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (482, 4, 2627.64, -1085.13, 69.708, 0, 0, 0, 0, 0, 243.72, 304.97, 999.14, 0, 1, 0, 0, 0, 'Ghetto Project Apartment LS Small', 2000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (483, 4, -2689.33, 96.305, 7.203, 0, 0, 0, 0, 0, 2196.84, -1204.23, 1049.02, 0, 6, 0, 0, 0, 'Normal Size Pink House In SF', 85000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (484, 4, 2625.93, -1098.64, 69.361, 0, 0, 0, 0, 0, 243.72, 304.97, 999.14, 0, 1, 0, 0, 0, 'Ghetto Project Apartment LS Small', 2000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (485, 4, 2625.94, -1112.61, 67.995, 0, 0, 0, 0, 0, 243.72, 304.97, 999.14, 0, 1, 0, 0, 0, 'Ghetto Project Apartment LS Small', 2000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (486, 4, -2690.78, 102.291, 4.566, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0, 'Normal Size Pink/Brick House In SF', 55000, 1500, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (487, 4, 2611.24, -1111.19, 68.245, 0, 0, 0, 0, 0, 243.72, 304.97, 999.14, 0, 1, 0, 0, 0, 'Ghetto Project Apartment LS Small', 2000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (488, 4, 2611.23, -1097.24, 69.6, 0, 0, 0, 0, 0, 243.72, 304.97, 999.14, 0, 1, 0, 0, 0, 'Ghetto Project Apartment LS Small', 2000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (489, 4, 2612.94, -1083.18, 69.958, 0, 0, 0, 0, 0, 243.72, 304.97, 999.14, 0, 1, 0, 0, 0, 'Ghetto Project Apartment LS Small', 2000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (490, 4, -2687.1, 115.56, 7.195, 0, 0, 0, 0, 0, 2196.84, -1204.23, 1049.02, 0, 6, 0, 0, 0, 'Normal Size House In SF', 85000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (491, 4, 2613.39, -1065.9, 69.958, 0, 0, 0, 0, 0, 243.72, 304.97, 999.14, 0, 1, 0, 0, 0, 'Ghetto Project Apartment LS Small', 2000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (492, 4, 2618.94, -1118.48, 67.995, 0, 0, 0, 0, 0, 243.72, 304.97, 999.14, 0, 1, 0, 0, 0, 'Ghetto Project Apartment LS Small', 2000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (493, 4, -2690.51, 123.597, 4.751, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0, 'Normal Size Very Light Green House In SF', 55000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (494, 4, -2684.4, 129.992, 7.203, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0, 'Appartment 2nd Floor In SF', 80000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (495, 4, -2687.88, 137.029, 4.342, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0, 'Appartment 1st Floor In SF', 80000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (496, 4, 2572.3, -1091.85, 67.222, 0, 0, 0, 0, 0, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, 0, 'House Ghetto LS Small', 10000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (497, 4, 2519.02, -1112.99, 56.59, 0, 0, 0, 0, 0, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, 0, 'House Ghetto LS Small', 10000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (498, 4, 2576.68, -1070.67, 69.832, 0, 0, 0, 0, 0, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, 0, 'House Ghetto LS Small', 10000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (499, 4, 2579.61, -1033.2, 69.579, 0, 0, 0, 0, 0, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, 0, 'House Ghetto LS Small', 10000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (500, 4, 2562.11, -1034.28, 69.869, 0, 0, 0, 0, 0, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, 0, 'House Ghetto LS Small', 10000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (501, 4, -2692.95, 189.447, 7.203, 0, 0, 0, 0, 0, 2196.84, -1204.23, 1049.02, 0, 6, 0, 0, 0, 'Normal Size House In SF', 85000, 5000, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (502, 4, 2549.2, -1032.15, 69.578, 0, 0, 0, 0, 0, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, 0, 'House Ghetto LS Small', 10000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (503, 4, -2358.3, 820.033, 38.535, 0, 0, 0, 0, 0, 2196.84, -1204.23, 1049.02, 0, 6, 0, 0, 0, '3 Story Condo In SF', 120000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (504, 4, -2340.18, 819.85, 41.972, 0, 0, 0, 0, 0, 2196.84, -1204.23, 1049.02, 0, 6, 0, 0, 0, '3 Story Condo In SF', 120000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (505, 4, -2321.9, 820, 45.34, 0, 0, 0, 0, 0, 2196.84, -1204.23, 1049.02, 0, 6, 0, 0, 0, '3 Story Condo In SF', 120000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (506, 4, -2303.4, 819.973, 48.696, 0, 0, 0, 0, 0, 2196.84, -1204.23, 1049.02, 0, 6, 0, 0, 0, '3 Story Condo In SF', 120000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (507, 4, -2282.42, 873.144, 66.917, 0, 0, 0, 0, 0, 2196.84, -1204.23, 1049.02, 0, 6, 0, 0, 0, '3 Story Condo In SF', 120000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (508, 4, -2285.08, 849.128, 65.641, 0, 0, 0, 0, 0, 2196.84, -1204.23, 1049.02, 0, 6, 0, 0, 0, '3 Story Condo In SF', 120000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (509, 4, -2285.3, 828.923, 57.17, 0, 0, 0, 0, 0, 2196.84, -1204.23, 1049.02, 0, 6, 0, 0, 0, '3 Story Condo In SF', 120000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (510, 4, -2294.99, 969.981, 65.335, 0, 0, 0, 0, 0, 2196.84, -1204.23, 1049.02, 0, 6, 0, 0, 0, '3 Story Condo In SF', 120000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (511, 4, -2307.55, 944.257, 61.608, 0, 0, 0, 0, 0, 2196.84, -1204.23, 1049.02, 0, 6, 0, 0, 0, '3 Story Condo In SF', 120000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (512, 4, -2325.89, 944.261, 55.32, 0, 0, 0, 0, 0, 2196.84, -1204.23, 1049.02, 0, 6, 0, 0, 0, '3 Story Condo In SF', 120000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (513, 4, -2238.8, 943.844, 66.652, 0, 0, 0, 0, 0, 226.3, 1114.37, 1080.99, 0, 5, 0, 0, 0, '5 Story Condo In SF', 500000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (514, 4, -2238.89, 962.11, 66.652, 0, 0, 0, 0, 0, 226.3, 1114.37, 1080.99, 0, 5, 0, 0, 0, '5 Story Condo In SF', 500000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (515, 4, -2238.82, 980.749, 71.515, 0, 0, 0, 0, 0, 226.3, 1114.37, 1080.99, 0, 5, 0, 0, 0, '5 Story Condo In SF', 500000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (516, 4, -2238.79, 998.812, 78.985, 0, 0, 0, 0, 0, 234.22, 1063.89, 358.5, 0, 6, 0, 0, 0, '4 Story Condo In SF', 400000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (517, 4, -2229.28, 934.381, 66.648, 0, 0, 0, 0, 0, 226.3, 1114.37, 1080.99, 0, 5, 0, 0, 0, '5 Story Condo In SF', 500000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (518, 4, -2210.94, 934.376, 68.97, 0, 0, 0, 0, 0, 226.3, 1114.37, 1080.99, 0, 5, 0, 0, 0, '5 Story Condo In SF', 500000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (519, 4, -2192.54, 934.385, 75.019, 0, 0, 0, 0, 0, 234.22, 1063.89, 358.5, 0, 6, 0, 0, 0, '4 Story Condo In SF', 400000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (520, 4, -2174.13, 934.362, 80, 0, 0, 0, 0, 0, 2196.84, -1204.23, 1049.02, 0, 6, 0, 0, 0, '3 Story Condo In SF', 120000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (521, 4, -2160.15, 947.014, 80, 0, 0, 0, 0, 0, 2196.84, -1204.23, 1049.02, 0, 6, 0, 0, 0, '3 Story Condo In SF', 120000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (522, 4, -2160.14, 965.316, 80, 0, 0, 0, 0, 0, 2196.84, -1204.23, 1049.02, 0, 6, 0, 0, 0, '3 Story Condo In SF', 120000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (523, 4, -2160.15, 983.754, 80, 0, 0, 0, 0, 0, 2196.84, -1204.23, 1049.02, 0, 6, 0, 0, 0, '3 Story Condo In SF', 120000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (524, 4, -2160.11, 1002.05, 80, 0, 0, 0, 0, 0, 2196.84, -1204.23, 1049.02, 0, 6, 0, 0, 0, '3 Story Condo In SF', 120000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (525, 4, 2440.48, -1057.34, 54.736, 0, 0, 0, 0, 0, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, 0, 'House Ghetto LS Small', 10000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (526, 4, -2233.82, 888.805, 66.652, 0, 0, 0, 0, 0, 226.3, 1114.37, 1080.99, 0, 5, 0, 0, 0, '5 Story Condo In SF', 500000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (527, 4, -2233.83, 870.579, 66.64, 0, 0, 0, 0, 0, 2196.84, -1204.23, 1049.02, 0, 6, 0, 0, 0, '3 Story Condo In SF', 120000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (528, 4, -2233.27, 848.861, 61.89, 0, 0, 0, 0, 0, 2196.84, -1204.23, 1049.02, 0, 6, 0, 0, 0, '3 Story Condo In SF', 120000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (529, 4, -2233.27, 830.702, 54.304, 0, 0, 0, 0, 0, 2196.84, -1204.23, 1049.02, 0, 6, 0, 0, 0, '3 Story Condo In SF', 120000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (530, 4, -2223.85, 821.132, 49.438, 0, 0, 0, 0, 0, 234.22, 1063.89, 358.5, 0, 6, 0, 0, 0, '4 Story Condo In SF', 400000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (531, 4, -2205.37, 821.131, 50.486, 0, 0, 0, 0, 0, 2196.84, -1204.23, 1049.02, 0, 6, 0, 0, 0, '3 Story Condo In SF', 120000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (532, 4, -2187.07, 821.128, 57.552, 0, 0, 0, 0, 0, 2196.84, -1204.23, 1049.02, 0, 6, 0, 0, 0, '3 Story Condo In SF', 120000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (533, 4, -2168.71, 821.129, 64.973, 0, 0, 0, 0, 0, 2196.84, -1204.23, 1049.02, 0, 6, 0, 0, 0, '3 Story Condo In SF', 120000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (534, 4, 646.057, -1117.35, 44.207, 0, 0, 0, 0, 0, 491.058, 1400.39, 1080.26, 0, 2, 0, 0, 0, 'Huge house at Vinewood LS', 450000, 1000, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (535, 4, -2159.21, 830.735, 69.523, 0, 0, 0, 0, 0, 2196.84, -1204.23, 1049.02, 0, 6, 0, 0, 0, '3 Story Condo In SF', 120000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (536, 4, 398.165, -1271.36, 50.019, 0, 0, 0, 0, 0, 491.058, 1400.39, 1080.26, 0, 2, 0, 0, 0, 'Huge house at Vinewood LS', 450000, 550, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (537, 4, -2159.22, 866.532, 75.353, 0, 0, 0, 0, 0, 2196.84, -1204.23, 1049.02, 0, 6, 0, 0, 0, '3 Story Condo In SF', 120000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (538, 4, -2158.67, 889.113, 80.007, 0, 0, 0, 0, 0, 2196.84, -1204.23, 1049.02, 0, 6, 0, 0, 0, '3 Story Condo In SF', 120000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (539, 4, -2174.37, 902.73, 80.007, 0, 0, 0, 0, 0, 2196.84, -1204.23, 1049.02, 0, 6, 0, 0, 0, '3 Story Condo In SF', 120000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (540, 4, 298.842, -1338.5, 53.441, 0, 0, 0, 0, 0, 491.058, 1400.39, 1080.26, 0, 2, 0, 0, 0, 'Mansion', 450000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (541, 4, -2192.49, 902.684, 75.037, 0, 0, 0, 0, 0, 234.22, 1063.89, 358.5, 0, 6, 0, 0, 0, '4 Story Condo In SF', 400000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (542, 4, 254.376, -1367.12, 53.109, 0, 0, 0, 0, 0, 491.058, 1400.39, 1080.26, 0, 2, 0, 0, 0, 'Eddie\'s Mansion', 450000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (543, 4, -2211.06, 902.684, 68.93, 0, 0, 0, 0, 0, 226.3, 1114.37, 1080.99, 0, 5, 0, 0, 0, '5 Story Condo In SF', 500000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (544, 4, -2224.88, 902.673, 66.648, 0, 0, 0, 0, 0, 226.3, 1114.37, 1080.99, 0, 5, 0, 0, 0, '5 Story Condo In SF', 500000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (545, 4, -2282.4, 979.395, 70.891, 0, 0, 0, 0, 0, 234.22, 1063.89, 358.5, 0, 6, 0, 0, 0, '4 Story Condo In SF', 400000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (546, 4, -2282.14, 999.631, 79.304, 0, 0, 0, 0, 0, 234.22, 1063.89, 358.5, 0, 6, 0, 0, 0, '4 Story Condo In SF', 400000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (547, 4, -2282.39, 1023.13, 84.11, 0, 0, 0, 0, 0, 2196.84, -1204.23, 1049.02, 0, 6, 0, 0, 0, '3 Story Condo In SF', 120000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (548, 4, -2282.42, 1046.67, 84.12, 0, 0, 0, 0, 0, 2196.84, -1204.23, 1049.02, 0, 6, 0, 0, 0, '3 Story Condo In SF', 120000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (549, 4, -2282.4, 1070.26, 81.701, 0, 0, 0, 0, 0, 2196.84, -1204.23, 1049.02, 0, 6, 0, 0, 0, '3 Story Condo In SF', 120000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (550, 4, -2282.42, 1088.93, 80.405, 0, 0, 0, 0, 0, 2196.84, -1204.23, 1049.02, 0, 6, 0, 0, 0, '3 Story Condo In SF', 120000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (551, 4, -2280.84, 1112.55, 76.984, 0, 0, 0, 0, 0, 226.3, 1114.37, 1080.99, 0, 5, 0, 0, 0, '5 Story Condo In SF', 500000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (552, 4, -2280.83, 1130.83, 69.226, 0, 0, 0, 0, 0, 226.3, 1114.37, 1080.99, 0, 5, 0, 0, 0, '5 Story Condo In SF', 500000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (553, 4, 219.259, -1249.79, 78.333, 0, 0, 0, 0, 0, 226.3, 1114.37, 1080.99, 0, 5, 0, 0, 0, 'Huge house at vinewood with swimming pool', 600000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (554, 4, -2280.83, 1149.17, 61.609, 0, 0, 0, 0, 0, 226.3, 1114.37, 1080.99, 0, 5, 0, 0, 0, '5 Story Condo In SF', 500000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (555, 4, -2358.98, 1118.09, 55.726, 0, 0, 0, 0, 0, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, 0, 'Very Small House In SF', 25000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (556, 4, -2369.4, 1122.32, 55.733, 0, 0, 0, 0, 0, 295.21, 1472.26, 1080.25, 0, 15, 0, 0, 0, 'Small Very Nice House In SF', 55000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (557, 4, 662.432, -1466.81, 14.85, 0, 0, 0, 0, 0, 225.755, 1240, 1082.15, 0, 2, 0, 0, 0, 'LS Apartment Near Beach Medium', 40000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (558, 4, 657.388, -1481.28, 14.85, 0, 0, 0, 0, 0, 225.755, 1240, 1082.15, 0, 2, 0, 0, 0, 'LS Apartment Near Beach Medium', 40000, 500, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (559, 4, 662.434, -1487.5, 14.85, 0, 0, 0, 0, 0, 225.755, 1240, 1082.15, 0, 2, 0, 0, 0, 'LS Apartment Near Beach Medium', 40000, 499, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (560, 4, 648.854, -1489.52, 14.84, 0, 0, 0, 0, 0, 225.755, 1240, 1082.15, 0, 2, 0, 0, 0, 'LS Apartment Near Beach Medium', 40000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (561, 4, 648.856, -1442.35, 14.729, 0, 0, 0, 0, 0, 225.755, 1240, 1082.15, 0, 2, 0, 0, 0, 'LS Apartment Near Beach Medium', 40000, 5000, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (562, 4, 657.348, -1434.11, 14.85, 0, 0, 0, 0, 0, 225.755, 1240, 1082.15, 0, 2, 0, 0, 0, 'LS Apartment Near Beach Medium', 40000, 500, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (563, 4, 662.432, -1440.42, 14.85, 0, 0, 0, 0, 0, 225.755, 1240, 1082.15, 0, 2, 0, 0, 0, 'LS Apartment Near Beach Medium', 40000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (564, 4, 685.53, -1421.91, 14.774, 0, 0, 0, 0, 0, 225.755, 1240, 1082.15, 0, 2, 0, 0, 0, 'LS Apartment Near Beach Medium', 40000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (565, 4, 739.085, -1418.51, 13.522, 0, 0, 0, 0, 0, 225.755, 1240, 1082.15, 0, 2, 0, 0, 0, 'LS Apartment Near Beach Medium', 40000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (566, 4, 738.976, -1428.77, 13.897, 0, 0, 0, 0, 0, 225.755, 1240, 1082.15, 0, 2, 0, 0, 0, 'LS Apartment Near Beach Medium', 40000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (567, 4, 725.603, -1440.45, 13.531, 0, 0, 0, 0, 0, 225.755, 1240, 1082.15, 0, 2, 0, 0, 0, 'LS Apartment Near Beach Medium', 40000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (568, 4, 662.434, -1514.03, 14.85, 0, 0, 0, 0, 0, 225.755, 1240, 1082.15, 0, 2, 0, 0, 0, 'LS Apartment Near Beach Medium', 40000, 500, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (569, 4, 657.434, -1528.46, 14.85, 0, 0, 0, 0, 0, 225.755, 1240, 1082.15, 0, 2, 0, 0, 0, 'LS Apartment Near Beach Medium', 40000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (570, 4, 662.431, -1534.8, 14.85, 0, 0, 0, 0, 0, 225.755, 1240, 1082.15, 0, 2, 0, 0, 0, 'LS Apartment Near Beach Medium', 40000, 3000, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (571, 4, 648.854, -1536.7, 14.932, 0, 0, 0, 0, 0, 225.755, 1240, 1082.15, 0, 2, 0, 0, 0, 'LS Apartment Near Beach Medium', 40000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (572, 4, 653.242, -1619.92, 15, 0, 0, 0, 0, 0, 225.755, 1240, 1082.15, 0, 2, 0, 0, 0, 'LS Apartment Near Beach Medium', 40000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (573, 4, 692.861, -1602.77, 15.045, 0, 0, 0, 0, 0, 225.755, 1240, 1082.15, 0, 2, 0, 0, 0, 'LS Apartment Near Beach Medium', 40000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (574, 4, 697.28, -1627, 3.749, 0, 0, 0, 0, 0, 225.755, 1240, 1082.15, 0, 2, 0, 0, 0, 'LS Apartment Near Beach Medium', 40000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (575, 4, 813.69, -1456.63, 14.222, 0, 0, 0, 0, 0, 225.755, 1240, 1082.15, 0, 2, 0, 0, 0, 'LS Apartment Near Beach Medium', 40000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (576, 4, -2383.75, 1128.1, 55.726, 0, 0, 0, 0, 0, 261.058, 1284.29, 1080.25, 0, 4, 0, 0, 0, 'Small House In SF', 30000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (577, 4, 822.382, -1505.51, 14.397, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0, 'Apartment Near the beach LS big', 25000, 100, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (578, 4, -2396.81, 1132.76, 55.733, 0, 0, 0, 0, 0, 22.93, 1403.32, 1084.43, 0, 5, 0, 0, 0, 'Small Nice House In SF', 60000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (579, 4, 849.591, -1519.96, 14.347, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0, 'Apartment Near the beach LS big', 25000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (580, 4, -2407.02, 1135.82, 55.726, 0, 0, 0, 0, 0, 261.06, 1284.29, 1080.25, 0, 4, 0, 0, 0, 'Small House In SF', 30000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (581, 4, 771.116, -1510.72, 13.545, 0, 0, 0, 0, 0, 225.755, 1240, 1082.15, 0, 2, 0, 0, 0, 'LS Apartment Near Beach Medium', 40000, 5000, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (582, 4, 761.065, -1564.08, 13.928, 0, 0, 0, 0, 0, 225.755, 1240, 1082.15, 0, 2, 0, 0, 0, 'LS Apartment Near Beach Medium', 40000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (583, 4, 841.335, -1471.36, 14.314, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0, 'LS Apartment Near Beach Medium', 25000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (584, 4, 782.789, -1464.49, 13.545, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0, 'Apartment Near the beach LS big', 25000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (585, 4, 824.5, -1424.2, 14.498, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0, 'Apartment Near the beach LS big', 25000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (586, 4, 852.195, -1423.27, 14.135, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0, 'Apartment Near the beach LS big', 25000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (587, 4, -2413.67, 1137.49, 55.726, 0, 0, 0, 0, 0, 261.06, 1284.29, 1080.25, 0, 4, 0, 0, 0, 'Small House In SF', 30000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (588, 4, 880.117, -1424.82, 14.484, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0, 'Apartment Near the beach LS big', 25000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (589, 4, -2424.02, 1139.41, 55.726, 0, 0, 0, 0, 0, 295.21, 1472.26, 1080.25, 0, 15, 0, 0, 0, 'Small Very Nice House In SF', 55000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (590, 4, 900.215, -1447.41, 14.369, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0, 'Apartment Near the beach LS big', 25000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (591, 4, 898.276, -1445.64, 14.364, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0, 'Apartment Near the beach LS big', 25000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (592, 4, -2438.17, 1141, 55.726, 0, 0, 0, 0, 0, 261.06, 1284.29, 1080.25, 0, 4, 0, 0, 0, 'Small House In SF', 30000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (593, 4, 900.197, -1471.03, 14.343, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0, 'Apartment Near the beach LS big', 25000, 4999, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (594, 4, 898.364, -1472.83, 14.34, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0, 'Apartment Near the beach LS big', 25000, 5000, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (595, 4, 852.513, -1436.23, 15.043, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0, 'Apartment Near the beach LS big', 25000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (596, 4, -2451.11, 1141.75, 55.733, 0, 0, 0, 0, 0, 295.21, 1472.26, 1080.25, 0, 15, 0, 0, 0, 'Small Very Nice House In SF', 55000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (597, 4, 784.395, -1436.11, 13.545, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0, 'Apartment Near the beach LS big', 25000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (598, 4, -2461.57, 1141.9, 55.726, 0, 0, 0, 0, 0, 261.06, 1284.29, 1080.25, 0, 4, 0, 0, 0, 'Small House In SF', 30000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (599, 4, 987.497, -1624.49, 14.928, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0, 'Apartment Near the beach LS big', 25000, 1, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (600, 4, -2468.52, 1141.91, 55.733, 0, 0, 0, 0, 0, 261.06, 1284.29, 1080.25, 0, 4, 0, 0, 0, 'Small House In SF', 30000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (601, 4, -2478.92, 1141.96, 55.726, 0, 0, 0, 0, 0, 22.93, 1403.32, 1084.43, 0, 5, 0, 0, 0, 'Small Nice House In SF', 60000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (602, 4, 987.52, -1704.34, 14.928, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0, 'Apartment Near the beach LS big', 25000, 1, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (603, 4, -2493.18, 1141.98, 55.726, 0, 0, 0, 0, 0, 261.06, 1284.29, 1080.25, 0, 4, 0, 0, 0, 'Small House In SF', 30000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (604, 4, -2506.44, 1142.08, 55.726, 0, 0, 0, 0, 0, 22.93, 1403.32, 1084.43, 0, 5, 0, 0, 0, 'Small Nice House In SF', 60000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (605, 4, -2517, 1142.41, 55.726, 0, 0, 0, 0, 0, 261.06, 1284.29, 1080.25, 0, 4, 0, 0, 0, 'Small House In SF', 30000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (606, 4, -2523.88, 1142.67, 55.726, 0, 0, 0, 0, 0, 261.06, 1284.29, 1080.25, 0, 4, 0, 0, 0, 'Small House In SF', 30000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (607, 4, -2534.53, 1143.77, 55.726, 0, 0, 0, 0, 0, 22.93, 1403.32, 1084.43, 0, 5, 0, 0, 0, 'Small Nice House In SF', 60000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (608, 4, -2549.06, 1145.72, 55.726, 0, 0, 0, 0, 0, 261.058, 1284.29, 1080.25, 0, 4, 0, 0, 0, 'Small House In SF', 30000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (609, 4, -2563.2, 1149.12, 55.726, 0, 0, 0, 0, 0, 22.93, 1403.32, 1084.43, 0, 5, 0, 0, 0, 'Small Nice House In SF', 60000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (610, 4, 675.143, -1430.51, 14.85, 0, 0, 0, 0, 0, 225.755, 1240, 1082.15, 0, 2, 0, 0, 0, 'LS Apartment Near Beach Medium', 40000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (611, 4, 683.403, -1435.48, 14.85, 0, 0, 0, 0, 0, 225.755, 1240, 1082.15, 0, 2, 0, 0, 0, 'LS Apartment Near Beach Medium', 40000, 1, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (612, 4, 725.687, -1451.04, 17.694, 0, 0, 0, 0, 0, 225.755, 1240, 1082.15, 0, 2, 0, 0, 0, 'LS Apartment Near Beach Medium', 40000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (613, 4, 877.973, -1514.64, 14.347, 0, 0, 0, 0, 0, 225.755, 1240, 1082.15, 0, 2, 0, 0, 0, 'LS Apartment Near Beach Medium', 40000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (614, 4, 876.205, -1512.7, 14.347, 0, 0, 0, 0, 0, 225.755, 1240, 1082.15, 0, 2, 0, 0, 0, 'LS Apartment Near Beach Medium', 40000, 300, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (615, 4, 901.705, -1514.66, 14.362, 0, 0, 0, 0, 0, 225.755, 1240, 1082.15, 0, 2, 0, 0, 0, 'LS Apartment Near Beach Medium', 40000, 500, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (616, 4, 903.4, -1512.85, 14.362, 0, 0, 0, 0, 0, 225.755, 1240, 1082.15, 0, 2, 0, 0, 0, 'LS Apartment Near Beach Medium', 40000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (617, 4, 797.236, -1729.38, 13.545, 0, 0, 0, 0, 0, 225.755, 1240, 1082.15, 0, 2, 0, 0, 0, 'LS Apartment Near Beach Medium', 40000, 2000, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (618, 4, -2711.23, 967.585, 54.458, 0, 0, 0, 0, 0, 447, 1397.09, 1084.3, 0, 2, 0, 0, 0, 'Medium Size House In SF', 120000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (619, 4, -2656.6, 985.815, 64.986, 0, 0, 0, 0, 0, 447, 1397.09, 1084.3, 0, 2, 0, 0, 0, 'Medium Size House In SF', 120000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (620, 4, -2584.18, 992.255, 78.273, 0, 0, 0, 0, 0, 22.93, 1403.32, 1084.43, 0, 5, 0, 0, 0, 'Small Nice House In SF', 60000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (621, 4, 791.385, -1753.22, 13.46, 0, 0, 0, 0, 0, 225.755, 1240, 1082.15, 0, 2, 0, 0, 0, 'LS Apartment Near Beach Medium', 40000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (622, 4, -2573.6, 992.257, 78.273, 0, 0, 0, 0, 0, 261.058, 1284.29, 1080.25, 0, 4, 0, 0, 0, 'Small House In SF', 30000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (623, 4, 893.638, -1635.7, 14.928, 0, 0, 0, 0, 0, 225.755, 1240, 1082.15, 0, 2, 0, 0, 0, 'LS Apartment Near Beach Medium', 40000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (624, 4, -2564.32, 992.255, 78.273, 0, 0, 0, 0, 0, 261.059, 1284.29, 1080.25, 0, 4, 0, 0, 0, 'Small House In SF', 30000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (625, 4, 846.723, -1717.4, 14.928, 0, 0, 0, 0, 0, 225.755, 1240, 1082.15, 0, 2, 0, 0, 0, 'LS Apartment Near Beach Medium', 40000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (626, 4, -2553.66, 992.255, 78.273, 0, 0, 0, 0, 0, 22.93, 1403.32, 1084.43, 0, 5, 0, 0, 0, 'Small Nice House In SF', 60000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (627, 4, 865.216, -1633.84, 14.928, 0, 0, 0, 0, 0, 225.755, 1240, 1082.15, 0, 2, 0, 0, 0, 'LS Apartment Near Beach Medium', 40000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (628, 4, -2543.56, 922.376, 67.093, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0, 'Appartment 2nd Floor In SF', 80000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (629, 4, -2545.33, 920.34, 64.976, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0, 'Appartment 1st Floor In SF', 80000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (630, 4, -2551.82, 920.377, 64.984, 0, 0, 0, 0, 0, 22.93, 1403.32, 1084.43, 0, 5, 0, 0, 0, 'Small Nice House In SF', 60000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (631, 4, -2562.42, 920.372, 64.984, 0, 0, 0, 0, 0, 261.058, 1284.29, 1080.25, 0, 4, 0, 0, 0, 'Small House In SF', 30000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (632, 4, -2569.98, 920.364, 64.984, 0, 0, 0, 0, 0, 261.059, 1284.29, 1080.25, 0, 4, 0, 0, 0, 'Small House In SF', 30000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (633, 4, -2580.92, 920.376, 64.984, 0, 0, 0, 0, 0, 22.93, 1403.32, 1084.43, 0, 5, 0, 0, 0, 'Small Nice House In SF', 60000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (634, 4, 1364.51, 1896.76, 11.468, 0, 0, 0, 0, 0, 447, 1397.09, 1084.3, 0, 2, 0, 0, 0, 'Medium house at LV', 150000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (635, 4, 1363.96, 1931.62, 11.468, 0, 0, 0, 0, 0, 447, 1397.09, 1084.3, 0, 2, 0, 0, 0, 'Medium house at LV', 150000, 5, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (636, 4, -2641.24, 935.718, 71.953, 0, 0, 0, 0, 0, 226.3, 1114.37, 1080.99, 0, 5, 0, 0, 0, '3 Floor House In SF', 600000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (637, 4, 1412.63, 1951.25, 11.453, 0, 0, 0, 0, 0, 447, 1397.09, 1084.3, 0, 2, 0, 0, 0, 'Medium house at LV', 150000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (638, 4, 1439.76, 1951.25, 11.46, 0, 0, 0, 0, 0, 447, 1397.09, 1084.3, 0, 2, 0, 0, 0, 'Medium house at LV', 150000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (639, 4, 1462.3, 1949.81, 11.468, 0, 0, 0, 0, 0, 447, 1397.09, 1084.3, 0, 2, 0, 0, 0, 'Medium house at LV', 150000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (640, 4, 1464.5, 1919.98, 11.46, 0, 0, 0, 0, 0, 447, 1397.09, 1084.3, 0, 2, 0, 0, 0, 'Medium house at LV', 150000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (641, 4, 1464.49, 1895.12, 11.46, 0, 0, 0, 0, 0, 447, 1397.09, 1084.3, 0, 2, 0, 0, 0, 'Medium house at LV', 150000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (642, 4, 1409.36, 1920.01, 11.468, 0, 0, 0, 0, 0, 447, 1397.09, 1084.3, 0, 2, 0, 0, 0, 'Medium house at LV', 150000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (643, 4, 1365.41, 1974.17, 11.46, 0, 0, 0, 0, 0, 447, 1397.09, 1084.3, 0, 2, 0, 0, 0, 'Medium house at LV', 150000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (644, 4, 1364.39, 2003.71, 11.46, 0, 0, 0, 0, 0, 447, 1397.09, 1084.3, 0, 2, 0, 0, 0, 'Medium house at LV', 150000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (645, 4, -2661.96, 876.338, 79.773, 0, 0, 0, 0, 0, 234.22, 1063.89, 1084.21, 0, 6, 0, 0, 0, 'Large House In SF', 470000, 2500, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (646, 4, 1422.26, 2026.93, 14.739, 0, 0, 0, 0, 0, 266.5, 304.99, 999.14, 0, 2, 0, 0, 0, 'small project lv', 30000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (647, 4, -2583.77, 896.254, 64.984, 0, 0, 0, 0, 0, 22.93, 1403.32, 1084.43, 0, 5, 0, 0, 0, 'Small Nice House In SF', 60000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (648, 4, 1414.7, 2026.87, 10.82, 0, 0, 0, 0, 0, 266.5, 304.99, 999.14, 0, 2, 0, 0, 0, 'small project lv', 30000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (649, 4, 1422.25, 2026.95, 10.82, 0, 0, 0, 0, 0, 266.5, 304.99, 999.14, 0, 2, 0, 0, 0, 'small project lv', 30000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (650, 4, 1414.7, 2033.17, 10.82, 0, 0, 0, 0, 0, 266.5, 304.99, 999.14, 0, 2, 0, 0, 0, 'small project lv', 30000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (651, 4, 1422.25, 2033.18, 10.82, 0, 0, 0, 0, 0, 266.5, 304.99, 999.14, 0, 2, 0, 0, 0, 'small project lv', 30000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (652, 4, 1414.7, 2033.13, 14.739, 0, 0, 0, 0, 0, 266.5, 304.99, 999.14, 0, 2, 0, 0, 0, 'small project lv', 30000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (653, 4, 1422.25, 2033.18, 14.739, 0, 0, 0, 0, 0, 266.5, 304.99, 999.14, 0, 2, 0, 0, 0, 'small project lv', 30000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (654, 4, 1414.7, 2026.97, 14.739, 0, 0, 0, 0, 0, 266.5, 304.99, 999.14, 0, 2, 0, 0, 0, 'small project lv', 30000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (655, 4, 1453.72, 2026.92, 10.819, 0, 0, 0, 0, 0, 266.5, 304.989, 999.14, 0, 2, 0, 0, 0, 'small project lv', 30000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (656, 4, 1461.28, 2026.95, 10.819, 0, 0, 0, 0, 0, 266.5, 304.989, 999.14, 0, 2, 0, 0, 0, 'small project lv', 30000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (657, 4, 1453.72, 2033.22, 10.82, 0, 0, 0, 0, 0, 266.5, 304.99, 999.14, 0, 2, 0, 0, 0, 'small project lv', 30000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (658, 4, 1461.28, 2033.19, 10.82, 0, 0, 0, 0, 0, 266.5, 304.99, 999.14, 0, 2, 0, 0, 0, 'small project lv', 30000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (659, 4, 1453.72, 2033.21, 14.739, 0, 0, 0, 0, 0, 266.5, 304.99, 999.14, 0, 2, 0, 0, 0, 'small project lv', 30000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (660, 4, 1461.28, 2033.11, 14.739, 0, 0, 0, 0, 0, 266.5, 304.99, 999.14, 0, 2, 0, 0, 0, 'small project lv', 30000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (661, 4, 1453.72, 2026.95, 14.739, 0, 0, 0, 0, 0, 266.5, 304.99, 999.14, 0, 2, 0, 0, 0, 'small project lv', 30000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (662, 4, 1461.28, 2026.91, 14.739, 0, 0, 0, 0, 0, 266.5, 304.99, 999.14, 0, 2, 0, 0, 0, 'small project lv', 30000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (663, 4, -2573.13, 896.265, 64.984, 0, 0, 0, 0, 0, 261.06, 1284.29, 1080.25, 0, 4, 0, 0, 0, 'Small House In SF', 30000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (664, 4, 1414.53, 2003.91, 10.82, 0, 0, 0, 0, 0, 266.5, 304.99, 999.14, 0, 2, 0, 0, 0, 'small project lv', 30000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (665, 4, 1414.48, 1996.36, 10.819, 0, 0, 0, 0, 0, 266.5, 304.989, 999.14, 0, 2, 0, 0, 0, 'small project lv', 30000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (666, 4, -2566.5, 896.647, 64.984, 0, 0, 0, 0, 0, 261.06, 1284.29, 1080.25, 0, 4, 0, 0, 0, 'Small House In SF', 30000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (667, 4, 1408.26, 2003.91, 10.82, 0, 0, 0, 0, 0, 266.5, 304.99, 999.14, 0, 2, 0, 0, 0, 'small project lv', 30000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (668, 4, 1408.18, 1996.36, 10.82, 0, 0, 0, 0, 0, 266.5, 304.99, 999.14, 0, 2, 0, 0, 0, 'small project lv', 30000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (669, 4, 1408.31, 1996.36, 14.739, 0, 0, 0, 0, 0, 266.5, 304.99, 999.14, 0, 2, 0, 0, 0, 'small project lv', 30000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (670, 4, 1408.35, 2003.91, 14.739, 0, 0, 0, 0, 0, 266.5, 304.99, 999.14, 0, 2, 0, 0, 0, 'small project lv', 30000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (671, 4, 1414.51, 1996.36, 14.739, 0, 0, 0, 0, 0, 266.5, 304.989, 999.14, 0, 2, 0, 0, 0, 'small project lv', 30000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (672, 4, 1414.52, 2003.91, 14.739, 0, 0, 0, 0, 0, 266.5, 304.989, 999.14, 0, 2, 0, 0, 0, 'small project lv', 30000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (673, 4, -2556.02, 896.643, 64.984, 0, 0, 0, 0, 0, 22.93, 1403.32, 1084.43, 0, 5, 0, 0, 0, 'Small Nice House In SF', 60000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (674, 4, 1495.69, 2026.97, 10.82, 0, 0, 0, 0, 0, 266.5, 304.99, 999.14, 0, 2, 0, 0, 0, 'small project lv', 30000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (675, 4, 1503.24, 2027.01, 10.82, 0, 0, 0, 0, 0, 266.5, 304.99, 999.14, 0, 2, 0, 0, 0, 'small project lv', 30000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (676, 4, 1495.69, 2033.25, 10.82, 0, 0, 0, 0, 0, 266.5, 304.99, 999.14, 0, 2, 0, 0, 0, 'small project lv', 30000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (677, 4, 1503.24, 2033.15, 10.82, 0, 0, 0, 0, 0, 266.5, 304.99, 999.14, 0, 2, 0, 0, 0, 'small project lv', 30000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (678, 4, 1495.69, 2033.16, 14.739, 0, 0, 0, 0, 0, 266.5, 304.99, 999.14, 0, 2, 0, 0, 0, 'small project lv', 30000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (679, 4, 1503.25, 2033.2, 14.739, 0, 0, 0, 0, 0, 266.5, 304.99, 999.14, 0, 2, 0, 0, 0, 'small project lv', 30000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (680, 4, 1495.69, 2027.01, 14.739, 0, 0, 0, 0, 0, 266.5, 304.99, 999.14, 0, 2, 0, 0, 0, 'small project lv', 30000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (681, 4, 1503.24, 2026.85, 14.739, 0, 0, 0, 0, 0, 266.5, 304.989, 999.14, 0, 2, 0, 0, 0, 'small project lv', 30000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (682, 4, 1534.72, 2026.98, 10.82, 0, 0, 0, 0, 0, 266.5, 304.99, 999.14, 0, 2, 0, 0, 0, 'small project lv', 30000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (683, 4, 1542.26, 2026.88, 10.82, 0, 0, 0, 0, 0, 266.5, 304.99, 999.14, 0, 2, 0, 0, 0, 'small project lv', 30000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (684, 4, 1534.72, 2033.18, 10.82, 0, 0, 0, 0, 0, 266.5, 304.99, 999.14, 0, 2, 0, 0, 0, 'small project lv', 30000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (685, 4, 1542.27, 2033.22, 10.82, 0, 0, 0, 0, 0, 266.5, 304.99, 999.14, 0, 2, 0, 0, 0, 'small project lv', 30000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (686, 4, -2541.55, 896.643, 64.984, 0, 0, 0, 0, 0, 261.06, 1284.29, 1080.25, 0, 4, 0, 0, 0, 'Small House In SF', 30000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (687, 4, 1534.72, 2033.23, 14.739, 0, 0, 0, 0, 0, 266.5, 304.99, 999.14, 0, 2, 0, 0, 0, 'small project lv', 30000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (688, 4, 1542.27, 2033.12, 14.739, 0, 0, 0, 0, 0, 266.5, 304.99, 999.14, 0, 2, 0, 0, 0, 'small project lv', 30000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (689, 4, 1534.71, 2027, 14.739, 0, 0, 0, 0, 0, 266.5, 304.99, 999.14, 0, 2, 0, 0, 0, 'small project lv', 30000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (690, 4, 1542.27, 2026.88, 14.739, 0, 0, 0, 0, 0, 266.5, 304.99, 999.14, 0, 2, 0, 0, 0, 'small project lv', 30000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (691, 4, 1542.45, 2003.91, 10.819, 0, 0, 0, 0, 0, 266.5, 304.989, 999.14, 0, 2, 0, 0, 0, 'small project lv', 30000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (692, 4, 1542.49, 1996.36, 10.82, 0, 0, 0, 0, 0, 266.5, 304.99, 999.14, 0, 2, 0, 0, 0, 'small project lv', 30000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (693, 4, 1548.75, 2003.91, 10.82, 0, 0, 0, 0, 0, 266.5, 304.99, 999.14, 0, 2, 0, 0, 0, 'small project lv', 30000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (694, 4, 1548.68, 1996.35, 10.82, 0, 0, 0, 0, 0, 266.5, 304.99, 999.14, 0, 2, 0, 0, 0, 'small project lv', 30000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (695, 4, 1548.7, 2003.91, 14.739, 0, 0, 0, 0, 0, 266.5, 304.99, 999.14, 0, 2, 0, 0, 0, 'small project lv', 30000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (696, 4, 1548.64, 1996.35, 14.739, 0, 0, 0, 0, 0, 266.5, 304.99, 999.14, 0, 2, 0, 0, 0, 'small project lv', 30000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (697, 4, 1542.55, 2003.89, 14.739, 0, 0, 0, 0, 0, 266.5, 304.99, 999.14, 0, 2, 0, 0, 0, 'small project lv', 30000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (698, 4, 1542.41, 1996.35, 14.739, 0, 0, 0, 0, 0, 266.5, 304.99, 999.14, 0, 2, 0, 0, 0, 'small project lv', 30000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (699, 4, 1595.5, 2038.34, 11.468, 0, 0, 0, 0, 0, 447, 1397.09, 1084.3, 0, 2, 0, 0, 0, 'Medium house at LV', 150000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (700, 4, -2502.88, 921.367, 65.239, 0, 0, 0, 0, 0, 2196.84, -1204.23, 1049.02, 0, 6, 0, 0, 0, '3 Story Condo In SF', 120000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (701, 4, 1641.79, 2044.95, 11.319, 0, 0, 0, 0, 0, 447, 1397.09, 1084.3, 0, 2, 0, 0, 0, 'Medium house at LV', 150000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (702, 4, 1594.96, 2071.07, 11.319, 0, 0, 0, 0, 0, 447, 1397.09, 1084.3, 0, 2, 0, 0, 0, 'Medium house at LV', 150000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (703, 4, -2471.77, 921.424, 63.165, 0, 0, 0, 0, 0, 2196.84, -1204.23, 1049.02, 0, 6, 0, 0, 0, '3 Story Condo In SF', 120000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (704, 4, 1596.41, 2093.74, 11.312, 0, 0, 0, 0, 0, 447, 1397.09, 1084.3, 0, 2, 0, 0, 0, 'Medium house at LV', 150000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (705, 4, 1640.35, 2075.67, 11.312, 0, 0, 0, 0, 0, 447, 1397.09, 1084.3, 0, 2, 0, 0, 0, 'Medium house at LV', 150000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (706, 4, 1640.35, 2102.86, 11.312, 0, 0, 0, 0, 0, 447, 1397.09, 1084.3, 0, 2, 0, 0, 0, 'Medium house at LV', 150000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (707, 4, -2449.79, 921.4, 58.143, 0, 0, 0, 0, 0, 2196.84, -1204.23, 1049.02, 0, 6, 0, 0, 0, '3 Story Condo In SF', 120000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (708, 4, 1645.45, 2127.38, 11.203, 0, 0, 0, 0, 0, 447, 1397.09, 1084.3, 0, 2, 0, 0, 0, 'Medium house at LV', 150000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (709, 4, 1641.26, 2149.74, 11.312, 0, 0, 0, 0, 0, 447, 1397.09, 1084.3, 0, 2, 0, 0, 0, 'Medium house at LV', 150000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (710, 4, -2431.38, 921.408, 50.578, 0, 0, 0, 0, 0, 2196.84, -1204.23, 1049.02, 0, 6, 0, 0, 0, '3 Story Condo In SF', 120000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (711, 4, -2413.09, 921.431, 45.468, 0, 0, 0, 0, 0, 226.3, 1114.37, 1080.99, 0, 5, 0, 0, 0, '5 Story Condo In SF', 500000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (712, 4, 1595.5, 2123.37, 11.46, 0, 0, 0, 0, 0, 447, 1397.09, 1084.3, 0, 2, 0, 0, 0, 'Medium house at LV', 150000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (713, 4, 1596.41, 2147.43, 11.46, 0, 0, 0, 0, 0, 447, 1397.09, 1084.3, 0, 2, 0, 0, 0, 'Medium house at LV', 150000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (714, 4, -2412.98, 895.232, 45.466, 0, 0, 0, 0, 0, 226.3, 1114.37, 1080.99, 0, 5, 0, 0, 0, '5 Story Condo In SF', 500000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (715, 4, 1684.51, 2123.46, 11.46, 0, 0, 0, 0, 0, 447, 1397.09, 1084.3, 0, 2, 0, 0, 0, 'Medium house at LV', 150000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (716, 4, -2431.45, 895.249, 50.544, 0, 0, 0, 0, 0, 2196.84, -1204.23, 1049.02, 0, 6, 0, 0, 0, '3 Story Condo In SF', 120000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (717, 4, 1685.42, 2093.88, 11.46, 0, 0, 0, 0, 0, 447, 1397.09, 1084.3, 0, 2, 0, 0, 0, 'Medium house at LV', 150000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (718, 4, -2449.8, 895.235, 58.146, 0, 0, 0, 0, 0, 2196.84, -1204.23, 1049.02, 0, 6, 0, 0, 0, '3 Story Condo In SF', 120000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (719, 4, 1680.26, 2069.24, 11.359, 0, 0, 0, 0, 0, 447, 1397.09, 1084.3, 0, 2, 0, 0, 0, 'Medium house at LV', 150000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (720, 4, 1684.51, 2046.69, 11.468, 0, 0, 0, 0, 0, 447, 1397.09, 1084.3, 0, 2, 0, 0, 0, 'Medium house at LV', 150000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (721, 4, -2471.93, 895.263, 63.168, 0, 0, 0, 0, 0, 2196.84, -1204.23, 1049.02, 0, 6, 0, 0, 0, '3 Story Condo In SF', 120000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (722, 4, -2503.02, 895.258, 65.255, 0, 0, 0, 0, 0, 2196.84, -1204.23, 1049.02, 0, 6, 0, 0, 0, '3 Story Condo In SF', 120000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (723, 4, -2585.97, 794.179, 49.423, 0, 0, 0, 0, 0, 2196.84, -1204.23, 1049.02, 0, 6, 0, 0, 0, '3 Story Condo In SF', 120000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (724, 4, -2569.11, 794.171, 49.423, 0, 0, 0, 0, 0, 2196.84, -1204.23, 1049.02, 0, 6, 0, 0, 0, '3 Story Condo In SF', 120000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (725, 4, -2550.83, 794.174, 49.423, 0, 0, 0, 0, 0, 2196.84, -1204.23, 1049.02, 0, 6, 0, 0, 0, '3 Story Condo In SF', 120000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (726, 4, 2056.5, 2665.19, 10.82, 0, 0, 0, 0, 0, 234.22, 1063.89, 1084.21, 0, 6, 0, 0, 0, 'Nice looking house at lv', 300000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (727, 4, 2037.04, 2664.5, 10.819, 0, 0, 0, 0, 0, 234.22, 1063.89, 1084.21, 0, 6, 0, 0, 0, 'Nice looking house at lv', 300000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (728, 4, 2018.03, 2664.67, 11.298, 0, 0, 0, 0, 0, 234.22, 1063.89, 1084.21, 0, 6, 0, 0, 0, 'Nice looking house at lv', 300000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (729, 4, -2548.68, 819.788, 49.984, 0, 0, 0, 0, 0, 22.93, 1403.32, 1084.43, 0, 5, 0, 0, 0, 'Small Nice House In SF', 60000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (730, 4, 1989.24, 2665.19, 10.82, 0, 0, 0, 0, 0, 234.22, 1063.89, 1084.21, 0, 6, 0, 0, 0, 'Nice looking house at lv', 300000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (731, 4, -2559.22, 819.795, 49.984, 0, 0, 0, 0, 0, 261.06, 1284.29, 1080.25, 0, 4, 0, 0, 0, 'Small House In SF', 30000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (732, 4, 1969.62, 2664.5, 10.82, 0, 0, 0, 0, 0, 234.22, 1063.89, 1084.21, 0, 6, 0, 0, 0, 'Nice looking house at lv', 300000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (733, 4, 1950.53, 2664.67, 11.298, 0, 0, 0, 0, 0, 234.22, 1063.89, 1084.21, 0, 6, 0, 0, 0, 'Nice looking house at lv', 300000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (734, 4, 1921.7, 2665.19, 10.819, 0, 0, 0, 0, 0, 234.22, 1063.89, 1084.21, 0, 6, 0, 0, 0, 'Nice looking house at lv', 300000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (735, 4, -2565.91, 819.796, 49.991, 0, 0, 0, 0, 0, 261.058, 1284.29, 1080.25, 0, 4, 0, 0, 0, 'Small House In SF', 30000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (736, 4, -2576.42, 819.789, 49.984, 0, 0, 0, 0, 0, 22.93, 1403.32, 1084.43, 0, 5, 0, 0, 0, 'Small Nice House In SF', 60000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (737, 4, -2590.88, 819.796, 49.991, 0, 0, 0, 0, 0, 261.058, 1284.29, 1080.25, 0, 4, 0, 0, 0, 'Small House In SF', 30000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (738, 4, 1929.85, 2774.3, 10.819, 0, 0, 0, 0, 0, 234.22, 1063.89, 1084.21, 0, 6, 0, 0, 0, 'Nice looking house at lv', 300000, 5000, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (739, 4, -2642.14, 820.317, 49.991, 0, 0, 0, 0, 0, 261.06, 1284.29, 1080.25, 0, 4, 0, 0, 0, 'Small House In SF', 30000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (740, 4, 1931.29, 2721.26, 10.82, 0, 0, 0, 0, 0, 234.22, 1063.89, 1084.21, 0, 6, 0, 0, 0, 'Nice looking house at lv', 300000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (741, 4, -2652.47, 820.319, 49.984, 0, 0, 0, 0, 0, 22.93, 1403.32, 1084.43, 0, 5, 0, 0, 0, 'Small Nice House In SF', 60000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (742, 4, 1950.69, 2721.95, 10.819, 0, 0, 0, 0, 0, 234.22, 1063.89, 1084.21, 0, 6, 0, 0, 0, 'Nice looking house at lv', 300000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (743, 4, -2666.91, 820.318, 49.984, 0, 0, 0, 0, 0, 261.06, 1284.29, 1080.25, 0, 4, 0, 0, 0, 'Small House In SF', 30000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (744, 4, 1967.32, 2766.54, 10.826, 0, 0, 0, 0, 0, 234.22, 1063.89, 1084.21, 0, 6, 0, 0, 0, 'Nice looking house at lv', 300000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (745, 4, -2645.52, 803.083, 49.976, 0, 0, 0, 0, 0, 261.058, 1284.29, 1080.25, 0, 4, 0, 0, 0, 'Small House In SF', 30000, 5000, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (746, 4, 1992.54, 2764.64, 10.819, 0, 0, 0, 0, 0, 234.22, 1063.89, 1084.21, 0, 6, 0, 0, 0, 'Nice looking house at lv', 300000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (747, 4, -2659.84, 803.092, 49.976, 0, 0, 0, 0, 0, 22.93, 1403.32, 1084.43, 0, 5, 0, 0, 0, 'Small Nice House In SF', 60000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (748, 4, 1969.78, 2721.78, 11.298, 0, 0, 0, 0, 0, 234.22, 1063.89, 1084.21, 0, 6, 0, 0, 0, 'Nice looking house at lv', 300000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (749, 4, 1998.72, 2721.26, 10.82, 0, 0, 0, 0, 0, 234.22, 1063.89, 1084.21, 0, 6, 0, 0, 0, 'Nice looking house at lv', 300000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (750, 4, -2670.57, 803.083, 49.976, 0, 0, 0, 0, 0, 261.06, 1284.29, 1080.25, 0, 4, 0, 0, 0, 'Small House In SF', 30000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (751, 4, 2018.15, 2721.95, 10.819, 0, 0, 0, 0, 0, 234.22, 1063.89, 1084.21, 0, 6, 0, 0, 0, 'Nice looking house at lv', 300000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (752, 4, -2677.16, 803.085, 49.976, 0, 0, 0, 0, 0, 261.059, 1284.29, 1080.25, 0, 4, 0, 0, 0, 'Small House In SF', 30000, 1000, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (753, 4, 2018.49, 2766.54, 10.826, 0, 0, 0, 0, 0, 234.22, 1063.89, 1084.21, 0, 6, 0, 0, 0, 'Nice looking house at lv', 300000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (754, 4, 2039.63, 2766.55, 10.826, 0, 0, 0, 0, 0, 234.22, 1063.89, 1084.21, 0, 6, 0, 0, 0, 'Nice looking house at lv', 300000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (755, 4, -2687.88, 803.088, 49.976, 0, 0, 0, 0, 0, 22.93, 1403.32, 1084.43, 0, 5, 0, 0, 0, 'Small Nice House In SF', 60000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (756, 4, -2698.92, 803.101, 49.97, 0, 0, 0, 0, 0, 22.93, 1403.32, 1084.43, 0, 5, 0, 0, 0, 'Small Nice House In SF', 60000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (757, 4, 2049.62, 2764.29, 10.819, 0, 0, 0, 0, 0, 234.22, 1063.89, 1084.21, 0, 6, 0, 0, 0, 'Nice looking house at lv', 300000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (758, 4, 2066.01, 2721.26, 10.82, 0, 0, 0, 0, 0, 234.22, 1063.89, 1084.21, 0, 6, 0, 0, 0, 'Nice looking house at lv', 300000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (759, 4, -2709.85, 803.085, 49.976, 0, 0, 0, 0, 0, 261.058, 1284.29, 1080.25, 0, 4, 0, 0, 0, 'Small House In SF', 30000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (760, 4, -2685.1, 820.491, 49.984, 0, 0, 0, 0, 0, 234.22, 1063.89, 358.5, 0, 6, 0, 0, 0, '4 Story Condo In SF', 400000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (761, 4, -2700.38, 820.835, 49.984, 0, 0, 0, 0, 0, 234.22, 1063.89, 358.5, 0, 6, 0, 0, 0, '4 Story Condo In SF', 400000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (762, 4, -2726.68, 822.977, 53.727, 0, 0, 0, 0, 0, 22.93, 1403.32, 1084.43, 0, 5, 0, 0, 0, 'Small Nice House In SF', 60000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (763, 4, -2737.25, 822.987, 53.729, 0, 0, 0, 0, 0, 261.06, 1284.29, 1080.25, 0, 4, 0, 0, 0, 'Small House In SF', 30000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (764, 4, -2409.05, 819.96, 35.179, 0, 0, 0, 0, 0, 234.22, 1063.89, 358.5, 0, 6, 0, 0, 0, '4 Story Condo In SF', 400000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (765, 4, -2487.47, 821.302, 38.384, 0, 0, 0, 0, 0, 2196.84, -1204.23, 1049.02, 0, 6, 0, 0, 0, '3 Story Condo In SF', 120000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (766, 4, 1451.36, 2565.43, 10.826, 0, 0, 0, 0, 0, 226.3, 1114.37, 1080.99, 0, 5, 0, 0, 0, 'huge 2 floor nice looking house at LV', 500000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (767, 4, -2504.61, 821.306, 45.987, 0, 0, 0, 0, 0, 2196.84, -1204.23, 1049.02, 0, 6, 0, 0, 0, '3 Story Condo In SF', 120000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (768, 4, 1441.72, 2567.69, 10.82, 0, 0, 0, 0, 0, 226.3, 1114.37, 1080.99, 0, 5, 0, 0, 0, 'huge 2 floor nice looking house at LV', 500000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (769, 4, 1417.87, 2567.48, 10.819, 0, 0, 0, 0, 0, 226.3, 1114.37, 1080.99, 0, 5, 0, 0, 0, 'huge 2 floor nice looking house at LV', 500000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (770, 4, 1359.74, 2565.43, 10.826, 0, 0, 0, 0, 0, 226.3, 1114.37, 1080.99, 0, 5, 0, 0, 0, 'huge 2 floor nice looking house at LV', 500000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (771, 4, 1344.72, 2610.19, 11.298, 0, 0, 0, 0, 0, 234.22, 1063.89, 1084.21, 0, 6, 0, 0, 0, 'Nice looking house at lv', 300000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (772, 4, -2731.47, 723.691, 41.273, 0, 0, 0, 0, 0, 2196.84, -1204.23, 1049.02, 0, 6, 0, 0, 0, 'Normal Size House In SF', 85000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (773, 4, 1349.6, 2567.69, 10.819, 0, 0, 0, 0, 0, 226.3, 1114.37, 1080.99, 0, 5, 0, 0, 0, 'huge 2 floor nice looking house at LV', 500000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (774, 4, 1313.84, 2610.19, 11.298, 0, 0, 0, 0, 0, 234.22, 1063.89, 1084.21, 0, 6, 0, 0, 0, 'Nice looking house at lv', 300000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (775, 4, 1325.61, 2567.34, 10.819, 0, 0, 0, 0, 0, 226.3, 1114.37, 1080.99, 0, 5, 0, 0, 0, 'huge 2 floor nice looking house at LV', 500000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (776, 4, -2723.45, 722.819, 41.265, 0, 0, 0, 0, 0, 22.93, 1403.32, 1084.43, 0, 5, 0, 0, 0, 'Small Nice House In SF', 60000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (777, 4, -2710.89, 722.817, 39.718, 0, 0, 0, 0, 0, 261.06, 1284.29, 1080.25, 0, 4, 0, 0, 0, 'Small House In SF', 30000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (778, 4, 1284.86, 2610.72, 10.819, 0, 0, 0, 0, 0, 234.22, 1063.89, 1084.21, 0, 6, 0, 0, 0, 'Nice looking house at lv', 300000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (779, 4, -2706.75, 722.849, 37.539, 0, 0, 0, 0, 0, 261.06, 1284.29, 1080.25, 0, 4, 0, 0, 0, 'Small House In SF', 30000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (780, 4, 1271.88, 2564.57, 10.819, 0, 0, 0, 0, 0, 226.3, 1114.37, 1080.99, 0, 5, 0, 0, 0, 'Small Nice House In SF', 500000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (781, 4, 1269.62, 2554.43, 10.826, 0, 0, 0, 0, 0, 226.3, 1114.37, 1080.99, 0, 5, 0, 0, 0, 'Small Nice House In SF', 500000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (782, 4, -2686.04, 722.855, 32.225, 0, 0, 0, 0, 0, 2196.84, -1204.23, 1049.02, 0, 6, 0, 0, 0, 'Normal Size House In SF', 85000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (783, 4, 1273.95, 2522.51, 10.819, 0, 0, 0, 0, 0, 226.3, 1114.37, 1080.99, 0, 5, 0, 0, 0, 'Small Nice House In SF', 500000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (784, 4, 1316.47, 2524.65, 10.819, 0, 0, 0, 0, 0, 226.3, 1114.37, 1080.99, 0, 5, 0, 0, 0, 'Small Nice House In SF', 500000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (785, 4, -2678.14, 722.25, 28.596, 0, 0, 0, 0, 0, 22.93, 1403.32, 1084.43, 0, 5, 0, 0, 0, 'Small Nice House In SF', 60000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (786, 4, -2665.49, 722.244, 27.962, 0, 0, 0, 0, 0, 261.06, 1284.29, 1080.25, 0, 4, 0, 0, 0, 'Small House In SF', 30000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (787, 4, -2661.59, 722.225, 27.962, 0, 0, 0, 0, 0, 261.06, 1284.29, 1080.25, 0, 4, 0, 0, 0, 'Small House In SF', 30000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (788, 4, 1503.24, 2567.69, 10.819, 0, 0, 0, 0, 0, 226.3, 1114.37, 1080.99, 0, 5, 0, 0, 0, 'huge 2 floor nice looking house at LV', 500000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (789, 4, -2642.08, 728.034, 27.96, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0, 'Apartment 1st Floor In SF', 80000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (790, 4, 1515.71, 2610.19, 11.298, 0, 0, 0, 0, 0, 234.22, 1063.89, 1084.21, 0, 6, 0, 0, 0, 'Nice looking house at lv', 300000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (791, 4, -2640.3, 730.541, 30.075, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0, 'Appartment 2nd Floor In SF', 80000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (792, 4, 1513.38, 2565.43, 10.826, 0, 0, 0, 0, 0, 226.3, 1114.37, 1080.99, 0, 5, 0, 0, 0, 'huge 2 floor nice looking house at LV', 500000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (793, 4, 1551.49, 2567.34, 10.819, 0, 0, 0, 0, 0, 226.3, 1114.37, 1080.99, 0, 5, 0, 0, 0, 'huge 2 floor nice looking house at LV', 500000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (794, 4, 1554.45, 2610.72, 10.82, 0, 0, 0, 0, 0, 234.22, 1063.89, 1084.21, 0, 6, 0, 0, 0, 'Nice looking house at lv', 300000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (795, 4, 1564.61, 2565.43, 10.826, 0, 0, 0, 0, 0, 226.3, 1114.37, 1080.99, 0, 5, 0, 0, 0, 'huge 2 floor nice looking house at LV', 500000, 3500, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (796, 4, 1596.39, 2567.69, 10.82, 0, 0, 0, 0, 0, 226.3, 1114.37, 1080.99, 0, 5, 0, 0, 0, 'huge 2 floor nice looking house at LV', 500000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (797, 4, 1600.59, 2610.03, 10.82, 0, 0, 0, 0, 0, 234.22, 1063.89, 1084.21, 0, 6, 0, 0, 0, 'Nice looking house at lv', 300000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (798, 4, -2581.51, 719.018, 27.944, 0, 0, 0, 0, 0, 2196.84, -1204.23, 1049.02, 0, 6, 0, 0, 0, '3 Story Condo In SF', 120000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (799, 4, 1618.8, 2610.03, 10.819, 0, 0, 0, 0, 0, 234.22, 1063.89, 1084.21, 0, 6, 0, 0, 0, 'Nice looking house at lv', 300000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (800, 4, 1638.13, 2610.72, 10.82, 0, 0, 0, 0, 0, 234.22, 1063.89, 1084.21, 0, 6, 0, 0, 0, 'Nice looking house at lv', 300000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (801, 4, 1623.47, 2567.34, 10.819, 0, 0, 0, 0, 0, 226.3, 1114.37, 1080.99, 0, 5, 0, 0, 0, 'huge 2 floor nice looking house at LV', 500000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (802, 4, -2553.97, 719.023, 27.945, 0, 0, 0, 0, 0, 2196.84, -1204.23, 1049.02, 0, 6, 0, 0, 0, '3 Story Condo In SF', 120000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (803, 4, 1646.59, 2569.58, 10.819, 0, 0, 0, 0, 0, 234.22, 1063.89, 1084.21, 0, 6, 0, 0, 0, 'Nice looking house at lv', 300000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (804, 4, 1665.56, 2569.42, 11.298, 0, 0, 0, 0, 0, 234.22, 1063.89, 1084.21, 0, 6, 0, 0, 0, 'Nice looking house at lv', 300000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (805, 4, 1666.95, 2610.19, 11.298, 0, 0, 0, 0, 0, 234.22, 1063.89, 1084.21, 0, 6, 0, 0, 0, 'Nice looking house at lv', 300000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (806, 4, -2541.27, 733.097, 28.057, 0, 0, 0, 0, 0, 2196.84, -1204.23, 1049.02, 0, 6, 0, 0, 0, '3 Story Condo In SF', 120000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (807, 4, -2541.24, 750.917, 33.704, 0, 0, 0, 0, 0, 2196.84, -1204.23, 1049.02, 0, 6, 0, 0, 0, '3 Story Condo In SF', 120000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (808, 4, 1678.4, 2690.76, 10.819, 0, 0, 0, 0, 0, 226.3, 1114.37, 1080.99, 0, 5, 0, 0, 0, 'huge 2 floor nice looking house at LV', 500000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (809, 4, -2541.24, 768.138, 40.022, 0, 0, 0, 0, 0, 2196.84, -1204.23, 1049.02, 0, 6, 0, 0, 0, '3 Story Condo In SF', 120000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (810, 4, 1703.71, 2688.86, 10.826, 0, 0, 0, 0, 0, 226.3, 1114.37, 1080.99, 0, 5, 0, 0, 0, 'huge 2 floor nice looking house at LV', 500000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (811, 4, -2541.24, 785.26, 46.232, 0, 0, 0, 0, 0, 2196.84, -1204.23, 1049.02, 0, 6, 0, 0, 0, '3 Story Condo In SF', 120000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (812, 4, 1735.65, 2691.11, 10.82, 0, 0, 0, 0, 0, 226.3, 1114.37, 1080.99, 0, 5, 0, 0, 0, 'huge 2 floor nice looking house at LV', 500000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (813, 4, 1754.52, 2736.02, 14.272, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0, 'lv project apartment small', 40000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (814, 4, 1752.26, 2744.57, 14.273, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0, 'lv project apartment small', 40000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (815, 4, 1751.45, 2747.35, 14.273, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0, 'lv project apartment small', 40000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (816, 4, 1749.2, 2755.91, 14.273, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0, 'lv project apartment small', 40000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (817, 4, 1748.42, 2758.69, 14.273, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0, 'lv project apartment small', 40000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (818, 4, 1745.39, 2770.03, 14.273, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0, 'lv project apartment small', 40000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (819, 4, 1746.17, 2767.25, 14.273, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0, 'lv project apartment small', 40000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (820, 4, 1743.04, 2778.56, 14.273, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0, 'lv project apartment small', 40000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (821, 4, 1746.04, 2767.21, 11.343, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0, 'lv project apartment small', 40000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (822, 4, 1745.41, 2770.03, 11.343, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0, 'lv project apartment small', 40000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (823, 4, 1748.48, 2758.71, 11.343, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0, 'lv project apartment small', 40000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (824, 4, 1749.19, 2755.9, 11.343, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0, 'lv project apartment small', 40000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (825, 4, 1751.46, 2747.35, 11.343, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0, 'lv project apartment small', 40000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (826, 4, 1752.22, 2744.56, 11.343, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0, 'lv project apartment small', 40000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (827, 4, 1780.81, 2744.57, 11.343, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0, 'lv project apartment small', 40000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (828, 4, -2513.52, 830.841, 49.997, 0, 0, 0, 0, 0, 226.3, 1114.37, 1080.99, 0, 5, 0, 0, 0, '6 Story Condo In SF', 450000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (829, 4, 1781.51, 2747.37, 11.343, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0, 'lv project apartment small', 40000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (830, 4, 1778.54, 2736.01, 14.273, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0, 'lv project apartment small', 40000, 500, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (831, 4, -2513.5, 849.084, 52.695, 0, 0, 0, 0, 0, 226.3, 1114.37, 1080.99, 0, 5, 0, 0, 0, '6 Story Condo In SF', 450000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (832, 4, 1781.55, 2747.36, 14.273, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0, 'lv project apartment small', 40000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (833, 4, 1780.82, 2744.56, 14.273, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0, 'lv project apartment small', 40000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (834, 4, 1784.62, 2758.69, 14.273, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0, 'lv project apartment small', 40000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (835, 4, 1783.78, 2755.92, 14.273, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0, 'lv project apartment small', 40000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (836, 4, 1787.64, 2770.04, 14.273, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0, 'lv project apartment small', 40000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (837, 4, 1786.83, 2767.26, 14.273, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0, 'lv project apartment small', 40000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (838, 4, 1789.83, 2778.61, 14.273, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0, 'lv project apartment small', 40000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (839, 4, 1787.57, 2770.06, 11.343, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0, 'lv project apartment small', 40000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (840, 4, 1786.89, 2767.25, 11.343, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0, 'lv project apartment small', 40000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (841, 4, 1784.6, 2758.7, 11.343, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0, 'lv project apartment small', 40000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (842, 4, 1783.84, 2755.91, 11.343, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0, 'lv project apartment small', 40000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (843, 4, -2513.53, 867.493, 57.742, 0, 0, 0, 0, 0, 226.3, 1114.37, 1080.99, 0, 5, 0, 0, 0, '6 Story Condo In SF', 450000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (844, 4, 1789.89, 2778.6, 11.35, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0, 'lv project apartment small', 40000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (845, 4, 1800.78, 2775.68, 11.343, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0, 'lv project apartment small', 40000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (846, 4, 1797.69, 2764.35, 14.273, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0, 'lv project apartment small', 40000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (847, 4, 1798.47, 2767.14, 14.273, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0, 'lv project apartment small', 40000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (848, 4, 1794.71, 2753, 14.273, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0, 'lv project apartment small', 40000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (849, 4, -2513.51, 885.731, 62.777, 0, 0, 0, 0, 0, 226.3, 1114.37, 1080.99, 0, 5, 0, 0, 0, '6 Story Condo In SF', 450000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (850, 4, 1795.38, 2755.81, 14.273, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0, 'lv project apartment small', 40000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (851, 4, 1791.66, 2741.66, 14.273, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0, 'lv project apartment small', 40000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (852, 4, 1792.42, 2744.45, 14.273, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0, 'lv project apartment small', 40000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (853, 4, 1789.49, 2733.08, 14.273, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0, 'lv project apartment small', 40000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (854, 4, 1792.54, 2744.42, 11.343, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0, 'lv project apartment small', 40000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (855, 4, 1791.73, 2741.64, 11.343, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0, 'lv project apartment small', 40000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (856, 4, 1795.42, 2755.8, 11.343, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0, 'lv project apartment small', 40000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (857, 4, 1794.75, 2752.99, 11.343, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0, 'lv project apartment small', 40000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (858, 4, 1798.54, 2767.12, 11.343, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0, 'lv project apartment small', 40000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (859, 4, 1797.78, 2764.33, 11.343, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0, 'lv project apartment small', 40000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (860, 4, 1800.77, 2775.68, 14.273, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0, 'lv project apartment small', 40000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (861, 4, 1736.36, 2803.59, 11.343, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0, 'lv project apartment small', 40000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (862, 4, 1737.11, 2800.79, 11.343, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0, 'lv project apartment small', 40000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (863, 4, -2538.73, 830.008, 49.984, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0, 'Appartment 1st Floor In SF', 80000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (864, 4, 1739.42, 2792.25, 14.273, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0, 'lv project apartment small', 40000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (865, 4, 1737.08, 2800.78, 14.273, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0, 'lv project apartment small', 40000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (866, 4, -2540.51, 831.946, 52.093, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0, 'Appartment 2nd Floor In SF', 80000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (867, 4, 1736.35, 2803.58, 14.273, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0, 'lv project apartment small', 40000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (868, 4, 1734.17, 2812.16, 11.343, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0, 'lv project apartment small', 40000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (869, 4, 1733.35, 2814.93, 11.343, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0, 'lv project apartment small', 40000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (870, 4, 1734.05, 2812.13, 14.273, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0, 'lv project apartment small', 40000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (871, 4, 1733.39, 2814.94, 14.273, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0, 'lv project apartment small', 40000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (872, 4, 1730.34, 2826.28, 14.273, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0, 'lv project apartment small', 40000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (873, 4, 1731, 2823.47, 14.273, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0, 'lv project apartment small', 40000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (874, 4, 1728.09, 2834.84, 14.273, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0, 'lv project apartment small', 40000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (875, 4, 1730.45, 2826.31, 11.343, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0, 'lv project apartment small', 40000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (876, 4, 1731.09, 2823.49, 11.343, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0, 'lv project apartment small', 40000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (877, 4, 1727.94, 2834.8, 11.343, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0, 'lv project apartment small', 40000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (878, 4, -2539.71, 845.176, 50.6, 0, 0, 0, 0, 0, 261.06, 1284.29, 1080.25, 0, 4, 0, 0, 0, 'Small House In SF', 30000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (879, 4, -2540.67, 855.141, 53.179, 0, 0, 0, 0, 0, 261.06, 1284.29, 1080.25, 0, 4, 0, 0, 0, 'Small House In SF', 30000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (880, 4, -2540, 874.764, 58.921, 0, 0, 0, 0, 0, 261.06, 1284.29, 1080.25, 0, 4, 0, 0, 0, 'Small House In SF', 30000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (881, 4, -2540.18, 883.141, 63.25, 0, 0, 0, 0, 0, 2196.84, -1204.23, 1049.02, 0, 6, 0, 0, 0, 'Normal Size House In SF', 85000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (882, 4, -2537.09, 929.446, 65.016, 0, 0, 0, 0, 0, 22.93, 1403.32, 1084.43, 0, 5, 0, 0, 0, 'Small Nice House In SF', 60000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (883, 4, 1717.18, 2831.92, 11.35, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0, 'lv project apartment small', 40000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (884, 4, -2542.47, 942.63, 64, 0, 0, 0, 0, 0, 261.058, 1284.29, 1080.25, 0, 4, 0, 0, 0, 'Small House In SF', 30000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (885, 4, 1717.01, 2831.87, 14.273, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0, 'lv project apartment small', 40000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (886, 4, 1720.19, 2820.57, 14.273, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0, 'lv project apartment small', 40000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (887, 4, 1719.41, 2823.35, 14.273, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0, 'lv project apartment small', 40000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (888, 4, 1723.14, 2809.21, 14.273, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0, 'lv project apartment small', 40000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (889, 4, 1722.45, 2812.01, 14.273, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0, 'lv project apartment small', 40000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (890, 4, 2514.28, -1691.66, 14.045, 0, 0, 0, 0, 0, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, 0, 'Ghetto Home LS Small', 10000, 500, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (891, 4, 2523.27, -1679.38, 15.496, 0, 0, 0, 0, 0, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, 0, 'Ghetto Home LS Small', 10000, 5000, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (892, 4, 2524.71, -1658.59, 15.824, 0, 0, 0, 0, 0, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, 0, 'Ghetto Home LS Small', 10000, 5000, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (893, 4, 2513.72, -1650.24, 14.354, 0, 0, 0, 0, 0, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, 0, 'Ghetto Home LS Small', 10000, 1, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (894, 4, 2498.47, -1642.25, 14.112, 0, 0, 0, 0, 0, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, 0, 'Ghetto Home LS Small', 10000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (895, 4, 2486.46, -1644.53, 14.076, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0, 'Ghetto Home LS Medium', 40000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (896, 4, 2469.45, -1646.35, 13.779, 0, 0, 0, 0, 0, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, 0, 'Ghetto Home LS Small', 10000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (897, 4, 2451.91, -1641.41, 14.064, 0, 0, 0, 0, 0, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, 0, 'Ghetto Home LS Small', 10000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (898, 4, 2413.86, -1646.79, 14.01, 0, 0, 0, 0, 0, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, 0, 'Ghetto Home LS Small', 10000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (899, 4, 2409.04, -1674.94, 14.375, 0, 0, 0, 0, 0, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, 0, 'Ghetto Home LS Small', 10000, 1000, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (900, 4, 2393.13, -1646.04, 13.904, 0, 0, 0, 0, 0, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, 0, 'Ghetto Home LS Small', 10000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (901, 4, 2384.7, -1675.83, 15.244, 0, 0, 0, 0, 0, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, 0, 'Ghetto Home LS Small', 10000, 1, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (902, 4, 2362.8, -1643.14, 14.35, 0, 0, 0, 0, 0, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, 0, 'Ghetto Home LS Small', 10000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (903, 4, 2368.29, -1675.34, 14.168, 0, 0, 0, 0, 0, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, 0, 'Ghetto Home LS Small', 10000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (904, 4, 2326.89, -1681.94, 14.928, 0, 0, 0, 0, 0, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, 0, 'Ghetto Home LS Small', 10000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (905, 4, 2385.39, -1711.66, 14.241, 0, 0, 0, 0, 0, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, 0, 'Ghetto Home LS Small', 10000, 20, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (906, 4, 2326.75, -1716.7, 14.237, 0, 0, 0, 0, 0, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, 0, 'Ghetto Home LS Small', 10000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (907, 4, 2308.89, -1714.34, 14.979, 0, 0, 0, 0, 0, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, 0, 'Ghetto Home LS Small', 10000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (908, 4, 2244.54, -1637.64, 16.236, 0, 0, 0, 0, 0, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, 0, 'Ghetto Home LS Small', 10000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (909, 4, 2257.11, -1643.94, 15.807, 0, 0, 0, 0, 0, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, 0, 'Ghetto Home LS Small', 10000, 100, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (910, 4, 2282.29, -1641.21, 15.887, 0, 0, 0, 0, 0, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, 0, 'Ghetto Home LS Small', 10000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (911, 4, 2307, -1679.19, 14.331, 0, 0, 0, 0, 0, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, 0, 'Ghetto Home LS Small', 10000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (912, 4, 1928.69, -1915.91, 15.255, 0, 0, 0, 0, 0, 447, 1397.09, 1084.3, 0, 2, 0, 0, 0, 'normal house at ls', 150000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (913, 4, 1938.54, -1911.32, 15.255, 0, 0, 0, 0, 0, 447, 1397.09, 1084.3, 0, 2, 0, 0, 0, 'normal house at ls', 150000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (914, 4, 1913.47, -1911.9, 15.255, 0, 0, 0, 0, 0, 447, 1397.09, 1084.3, 0, 2, 0, 0, 0, 'normal house at ls', 150000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (915, 4, 1891.92, -1914.4, 15.255, 0, 0, 0, 0, 0, 447, 1397.09, 1084.3, 0, 2, 0, 0, 0, 'normal house at ls', 150000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (916, 4, 1872.21, -1911.79, 15.255, 0, 0, 0, 0, 0, 447, 1397.09, 1084.3, 0, 2, 0, 0, 0, 'normal house at ls', 150000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (917, 4, 1854.06, -1914.26, 15.255, 0, 0, 0, 0, 0, 447, 1397.09, 1084.3, 0, 2, 0, 0, 0, 'normal house at ls', 150000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (918, 4, 1848.15, -1593.75, 19.124, 0, 0, 0, 0, 0, 244.41, 305.032, 999.148, 0, 1, 0, 0, 0, 'LS Project', 4000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (919, 4, 1848.15, -1593.6, 23.881, 0, 0, 0, 0, 0, 244.41, 305.032, 999.148, 0, 1, 0, 0, 0, 'LS Project', 4000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (920, 4, 1986.75, -1604.9, 13.531, 0, 0, 0, 0, 0, 244.41, 305.032, 999.148, 0, 1, 0, 0, 0, 'LS Project', 4000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (921, 4, 1972.98, -1559.83, 13.637, 0, 0, 0, 0, 0, 244.41, 305.032, 999.148, 0, 1, 0, 0, 0, 'LS Project', 4000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (922, 4, 1958.67, -1560.35, 13.593, 0, 0, 0, 0, 0, 244.41, 305.032, 999.148, 0, 1, 0, 0, 0, 'LS Project', 4000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (923, 4, 2139.09, -1697.51, 15.085, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0, 'Ghetto Home LS Medium', 40000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (924, 4, 2155.62, -1698.51, 15.085, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0, 'Ghetto Home LS Medium', 40000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (925, 4, 2157.15, -1709.21, 15.085, 0, 0, 0, 0, 0, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, 0, 'Ghetto Home LS Medium', 30000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (926, 4, 2140.57, -1708.3, 15.085, 0, 0, 0, 0, 0, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, 0, 'Ghetto Home LS Medium', 30000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (927, 4, 2151.71, -1717.83, 15.085, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0, 'Ghetto Home LS Medium', 40000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (928, 4, 2168.08, -1718.82, 15.166, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0, 'Ghetto Home LS Medium', 40000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (929, 4, 2151.41, -1672.26, 15.085, 0, 0, 0, 0, 0, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, 0, 'Ghetto Home LS Medium', 30000, 1, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (930, 4, 2143.65, -1662.86, 15.085, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0, 'Ghetto Home LS Medium', 40000, 5000, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (932, 4, 2163.74, -1661.21, 15.085, 0, 0, 0, 0, 0, 22.93, 1403.32, 1084.43, 0, 5, 0, 0, 0, 'Ghetto Home LS Medium', 60000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (933, 4, 1793.6, 2792.25, 11.35, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0, 'lv project apartment small', 40000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (934, 4, 1796.65, 2803.58, 11.343, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0, 'lv project apartment small', 40000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (935, 4, 1795.83, 2800.81, 11.343, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0, 'lv project apartment small', 40000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (936, 4, -2510.96, 967.654, 73.532, 0, 0, 0, 0, 0, 261.06, 1284.29, 1080.25, 0, 4, 0, 0, 0, 'Small House In SF', 30000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (937, 4, 1799.57, 2814.95, 11.343, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0, 'lv project apartment small', 40000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (938, 4, 1798.92, 2812.14, 11.343, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0, 'lv project apartment small', 40000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (939, 4, 1802.77, 2826.25, 11.343, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0, 'lv project apartment small', 40000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (940, 4, 1801.9, 2823.49, 11.343, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0, 'lv project apartment small', 40000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (941, 4, -2510.91, 951.258, 65.614, 0, 0, 0, 0, 0, 261.06, 1284.29, 1080.25, 0, 4, 0, 0, 0, 'Small House In SF', 30000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (942, 4, 1804.86, 2834.85, 11.35, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0, 'lv project apartment small', 40000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (943, 4, -2510.93, 942.703, 65.289, 0, 0, 0, 0, 0, 261.059, 1284.29, 1080.25, 0, 4, 0, 0, 0, 'Small House In SF', 30000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (944, 4, 1804.96, 2834.82, 14.272, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0, 'lv project apartment small', 40000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (945, 4, 1802.59, 2826.3, 14.273, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0, 'lv project apartment small', 40000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (946, 4, 1802.05, 2823.45, 14.273, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0, 'lv project apartment small', 40000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (947, 4, 1798.8, 2812.17, 14.273, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0, 'lv project apartment small', 40000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (948, 4, 1799.65, 2814.93, 14.273, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0, 'lv project apartment small', 40000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (949, 4, 1795.85, 2800.8, 14.273, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0, 'lv project apartment small', 40000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (950, 4, 1796.69, 2803.57, 14.273, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0, 'lv project apartment small', 40000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (951, 4, 1793.61, 2792.24, 14.273, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0, 'lv project apartment small', 40000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (952, 4, 1815.83, 2831.92, 11.343, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0, 'lv project apartment small', 40000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (953, 4, 1813.61, 2823.34, 11.343, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0, 'lv project apartment small', 40000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (954, 4, 1812.9, 2820.54, 11.343, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0, 'lv project apartment small', 40000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (955, 4, 1815.91, 2831.89, 14.273, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0, 'lv project apartment small', 40000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (956, 4, 1812.82, 2820.57, 14.273, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0, 'lv project apartment small', 40000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (957, 4, 1813.61, 2823.35, 14.273, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0, 'lv project apartment small', 40000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (958, 4, 1809.83, 2809.21, 14.273, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0, 'lv project apartment small', 40000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (959, 4, 1810.53, 2812.02, 14.273, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0, 'lv project apartment small', 40000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (960, 4, -2596.65, 986.268, 78.273, 0, 0, 0, 0, 0, 261.058, 1284.29, 1080.25, 0, 4, 0, 0, 0, 'Small House In SF', 30000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (961, 4, 1806.77, 2797.88, 14.273, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0, 'lv project apartment small', 40000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (962, 4, 1807.6, 2800.65, 14.273, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0, 'lv project apartment small', 40000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (963, 4, 1804.57, 2789.3, 14.273, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0, 'lv project apartment small', 40000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (964, 4, -2597.34, 979.735, 78.273, 0, 0, 0, 0, 0, 22.93, 1403.32, 1084.43, 0, 5, 0, 0, 0, 'Small Nice House In SF', 60000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (965, 4, 1806.71, 2797.89, 11.343, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0, 'lv project apartment small', 40000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (966, 4, 1807.36, 2800.71, 11.343, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0, 'lv project apartment small', 40000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (967, 4, 1810.61, 2812, 11.343, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0, 'lv project apartment small', 40000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (968, 4, 1809.62, 2809.27, 11.343, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0, 'lv project apartment small', 40000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (969, 4, -2597.33, 968.947, 78.283, 0, 0, 0, 0, 0, 261.059, 1284.29, 1080.25, 0, 4, 0, 0, 0, 'Small House In SF', 30000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (970, 4, 1832.49, 2742.93, 11.343, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0, 'lv project apartment small', 40000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (971, 4, 1830.47, 2740.87, 11.343, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0, 'lv project apartment small', 40000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (972, 4, 1840.84, 2751.18, 11.343, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0, 'lv project apartment small', 40000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (973, 4, 1838.67, 2749.27, 11.35, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0, 'lv project apartment small', 40000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (974, 4, -2591.17, 960.758, 78.453, 0, 0, 0, 0, 0, 2196.84, -1204.23, 1049.02, 0, 6, 0, 0, 0, 'Normal Size House In SF', 85000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (975, 4, 1847.08, 2757.45, 11.343, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0, 'lv project apartment small', 40000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (976, 4, 1849.23, 2759.39, 11.343, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0, 'lv project apartment small', 40000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (977, 4, 1855.38, 2765.76, 14.265, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0, 'lv project apartment small', 40000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (978, 4, 1849.09, 2759.53, 14.273, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0, 'lv project apartment small', 40000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (979, 4, 1847.1, 2757.43, 14.273, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0, 'lv project apartment small', 40000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (980, 4, 1838.73, 2749.2, 14.273, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0, 'lv project apartment small', 40000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (981, 4, -2591.19, 944.325, 70.429, 0, 0, 0, 0, 0, 261.06, 1284.29, 1080.25, 0, 4, 0, 0, 0, 'Small House In SF', 30000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (982, 4, 1840.84, 2751.19, 14.273, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0, 'lv project apartment small', 40000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (983, 4, 1830.4, 2740.94, 14.273, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0, 'lv project apartment small', 40000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (984, 4, 1832.55, 2742.88, 14.273, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0, 'lv project apartment small', 40000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (985, 4, 1824.22, 2734.61, 14.273, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0, 'lv project apartment small', 40000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (986, 4, -2591.19, 935.902, 68.929, 0, 0, 0, 0, 0, 261.06, 1284.29, 1080.25, 0, 4, 0, 0, 0, 'Small House In SF', 30000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (987, 4, -2591.19, 927.88, 65.015, 0, 0, 0, 0, 0, 261.06, 1284.29, 1080.25, 0, 4, 0, 0, 0, 'Small House In SF', 30000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (988, 4, 1855.32, 2765.81, 11.35, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0, 'lv project apartment small', 40000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (989, 4, 1865.45, 2775.7, 11.343, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0, 'lv project apartment small', 40000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (990, 4, 1873.69, 2784.06, 11.343, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0, 'lv project apartment small', 40000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (991, 4, 1871.57, 2782.08, 11.343, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0, 'lv project apartment small', 40000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (992, 4, 1881.95, 2792.39, 11.343, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0, 'lv project apartment small', 40000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (993, 4, 1879.89, 2790.37, 11.343, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0, 'lv project apartment small', 40000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (994, 4, 1890.23, 2800.7, 11.343, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0, 'lv project apartment small', 40000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (995, 4, 1888.22, 2798.63, 11.343, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0, 'lv project apartment small', 40000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (996, 4, -2593.26, 883.218, 63.25, 0, 0, 0, 0, 0, 2196.84, -1204.23, 1049.02, 0, 6, 0, 0, 0, 'Normal Size House In SF', 85000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (997, 4, 1896.51, 2806.95, 14.265, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0, 'lv project apartment small', 40000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (998, 4, 1888.25, 2798.6, 14.273, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0, 'lv project apartment small', 40000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (999, 4, 1890.32, 2800.62, 14.273, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0, 'lv project apartment small', 40000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1000, 4, 1879.96, 2790.31, 14.273, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0, 'lv project apartment small', 40000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1001, 4, 1882.05, 2792.29, 14.273, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0, 'lv project apartment small', 40000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1002, 4, -2593.42, 874.771, 58.921, 0, 0, 0, 0, 0, 261.06, 1284.29, 1080.25, 0, 4, 0, 0, 0, 'Small House In SF', 30000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1003, 4, 1871.62, 2782.03, 14.273, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0, 'lv project apartment small', 40000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1004, 4, 1873.72, 2784.03, 14.273, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0, 'lv project apartment small', 40000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1005, 4, 1865.34, 2775.81, 14.273, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0, 'lv project apartment small', 40000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1006, 4, -2620.21, 883.012, 63.25, 0, 0, 0, 0, 0, 2196.84, -1204.23, 1049.02, 0, 6, 0, 0, 0, 'Normal Size House In SF', 85000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1007, 4, -2620.02, 874.734, 58.921, 0, 0, 0, 0, 0, 261.058, 1284.29, 1080.25, 0, 4, 0, 0, 0, 'Small House In SF', 30000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1008, 4, 1896.56, 2806.91, 11.35, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0, 'lv project apartment small', 40000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1009, 4, -2592.74, 854.975, 53.594, 0, 0, 0, 0, 0, 261.06, 1284.29, 1080.25, 0, 4, 0, 0, 0, 'Small House In SF', 30000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1010, 4, -2620.7, 855.147, 53.568, 0, 0, 0, 0, 0, 261.06, 1284.29, 1080.25, 0, 4, 0, 0, 0, 'Small House In SF', 30000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1011, 4, 1740.86, 2863.24, 11.335, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0, 'lv project apartment small', 40000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1012, 4, 1738.45, 2861.53, 11.335, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0, 'lv project apartment small', 40000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1013, 4, 1751.45, 2868.71, 11.335, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0, 'lv project apartment small', 40000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1014, 4, 1748.67, 2867.7, 11.335, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0, 'lv project apartment small', 40000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1015, 4, -2593.7, 845.077, 50.593, 0, 0, 0, 0, 0, 261.06, 1284.29, 1080.25, 0, 4, 0, 0, 0, 'Small House In SF', 30000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1016, 4, 1763.1, 2871.36, 11.335, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0, 'lv project apartment small', 40000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1017, 4, 1760.16, 2870.95, 11.335, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0, 'lv project apartment small', 40000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1018, 4, -2619.74, 845.313, 50.598, 0, 0, 0, 0, 0, 261.06, 1284.29, 1080.25, 0, 4, 0, 0, 0, 'Small House In SF', 30000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1019, 4, 1775, 2870.83, 11.335, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0, 'lv project apartment small', 40000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1020, 4, 1772.1, 2871.36, 11.335, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0, 'lv project apartment small', 40000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1021, 4, 1786.52, 2867.69, 11.335, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0, 'lv project apartment small', 40000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1022, 4, 1783.74, 2868.71, 11.335, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0, 'lv project apartment small', 40000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1023, 4, 1796.8, 2861.61, 11.335, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0, 'lv project apartment small', 40000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1024, 4, -2592.75, 832.837, 52.093, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0, 'Appartment 2nd Floor In SF', 80000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1025, 4, 1794.42, 2863.38, 11.335, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0, 'lv project apartment small', 40000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1026, 4, 1731.81, 2855.49, 14.265, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0, 'lv project apartment small', 40000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1027, 4, -2594.69, 830.981, 49.984, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0, 'Appartment 1st Floor In SF', 80000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1028, 4, 1740.84, 2863.27, 14.257, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0, 'lv project apartment small', 40000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1029, 4, 1738.33, 2861.68, 14.265, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0, 'lv project apartment small', 40000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1030, 4, 1751.44, 2868.75, 14.265, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0, 'lv project apartment small', 40000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1031, 4, 1748.65, 2867.74, 14.265, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0, 'lv project apartment small', 40000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1032, 4, 1763.12, 2871.13, 14.265, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0, 'lv project apartment small', 40000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1033, 4, 1760.17, 2870.92, 14.265, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0, 'lv project apartment small', 40000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1034, 4, -2620.37, 832.857, 52.093, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0, 'Appartment 2nd Floor In SF', 80000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1035, 4, 1775.01, 2870.88, 14.265, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0, 'lv project apartment small', 40000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1036, 4, 1772.09, 2871.32, 14.265, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0, 'lv project apartment small', 40000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1037, 4, 1786.45, 2867.55, 14.265, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0, 'lv project apartment small', 40000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1038, 4, 1783.76, 2868.77, 14.265, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0, 'lv project apartment small', 40000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1039, 4, -2618.75, 830.996, 49.984, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0, 'Appartment 1st Floor In SF', 80000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1040, 4, 1796.79, 2861.59, 14.265, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0, 'lv project apartment small', 40000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1041, 4, 1794.38, 2863.32, 14.265, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0, 'lv project apartment small', 40000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1042, 4, 1803.38, 2855.49, 14.265, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0, 'lv project apartment small', 40000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1043, 4, 1789.43, 2733.1, 11.343, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0, 'lv project apartment small', 40000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1044, 4, -2621.68, 802.98, 49.984, 0, 0, 0, 0, 0, 261.06, 1284.29, 1080.25, 0, 4, 0, 0, 0, 'Small House In SF', 30000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1045, 4, -2621.67, 790.744, 48.581, 0, 0, 0, 0, 0, 22.93, 1403.32, 1084.43, 0, 5, 0, 0, 0, 'Small Nice House In SF', 60000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1046, 4, 1803.48, 2855.57, 11.335, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0, 'lv project apartment small', 40000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1047, 4, -2622.51, 782.552, 44.859, 0, 0, 0, 0, 0, 261.06, 1284.29, 1080.25, 0, 4, 0, 0, 0, 'Small House In SF', 30000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1048, 4, 1824.3, 2734.53, 11.343, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0, 'lv project apartment small', 40000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1049, 4, -2622.49, 766.352, 36.835, 0, 0, 0, 0, 0, 261.06, 1284.29, 1080.25, 0, 4, 0, 0, 0, 'Small House In SF', 30000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1050, 4, -2622.51, 758.038, 35.328, 0, 0, 0, 0, 0, 261.06, 1284.29, 1080.25, 0, 4, 0, 0, 0, 'Small House In SF', 30000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1051, 4, -2622.52, 749.841, 31.421, 0, 0, 0, 0, 0, 261.06, 1284.29, 1080.25, 0, 4, 0, 0, 0, 'Small House In SF', 30000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1052, 4, 1663.17, 2754.14, 10.82, 0, 0, 0, 0, 0, 234.22, 1063.89, 1084.21, 0, 6, 0, 0, 0, 'Nice looking house at lv', 300000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1053, 4, 1652.51, 2708.85, 10.826, 0, 0, 0, 0, 0, 226.3, 1114.37, 1080.99, 0, 5, 0, 0, 0, 'huge 2 floor nice looking house at LV', 500000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1054, 4, -2627.54, 735.333, 30.585, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0, 'Appartment 2nd Floor In SF', 80000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1055, 4, 1643.83, 2753.45, 10.82, 0, 0, 0, 0, 0, 234.22, 1063.89, 1084.21, 0, 6, 0, 0, 0, 'Nice looking house at lv', 300000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1056, 4, 1627.15, 2710.76, 10.819, 0, 0, 0, 0, 0, 226.3, 1114.37, 1080.99, 0, 5, 0, 0, 0, 'huge 2 floor nice looking house at LV', 500000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1057, 4, -2625.47, 733.211, 28.011, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0, 'Appartment 1st Floor In SF', 80000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1058, 4, 1626.81, 2754.14, 10.82, 0, 0, 0, 0, 0, 226.3, 1114.37, 1080.99, 0, 5, 0, 0, 0, 'huge 2 floor nice looking house at LV', 500000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1059, 4, 1608.72, 2754.14, 10.82, 0, 0, 0, 0, 0, 234.22, 1063.89, 1084.21, 0, 6, 0, 0, 0, 'Nice looking house at lv', 300000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1060, 4, 1601.25, 2708.85, 10.826, 0, 0, 0, 0, 0, 226.3, 1114.37, 1080.99, 0, 5, 0, 0, 0, 'huge 2 floor nice looking house at LV', 500000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1061, 4, 1599.56, 2757.6, 10.826, 0, 0, 0, 0, 0, 226.3, 1114.37, 1080.99, 0, 5, 0, 0, 0, 'huge 2 floor nice looking house at LV', 500000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1062, 4, 1580.26, 2708.85, 10.826, 0, 0, 0, 0, 0, 226.3, 1114.37, 1080.99, 0, 5, 0, 0, 0, 'huge 2 floor nice looking house at LV', 500000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1063, 4, -2594.19, 733.114, 28.138, 0, 0, 0, 0, 0, 2196.84, -1204.23, 1049.02, 0, 6, 0, 0, 0, '3 Story Condo In SF', 120000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1064, 4, 1570.28, 2711.11, 10.819, 0, 0, 0, 0, 0, 226.3, 1114.37, 1080.99, 0, 5, 0, 0, 0, 'huge 2 floor nice looking house at LV', 500000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1065, 4, -2594.21, 750.871, 33.702, 0, 0, 0, 0, 0, 2196.84, -1204.23, 1049.02, 0, 6, 0, 0, 0, '3 Story Condo In SF', 120000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1066, 4, 1565.47, 2757.04, 10.819, 0, 0, 0, 0, 0, 234.22, 1063.89, 1084.21, 0, 6, 0, 0, 0, 'Nice looking house at lv', 300000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1067, 4, -2594.2, 768.05, 40.018, 0, 0, 0, 0, 0, 2196.84, -1204.23, 1049.02, 0, 6, 0, 0, 0, '3 Story Condo In SF', 120000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1068, 4, 1564.78, 2776.51, 10.819, 0, 0, 0, 0, 0, 234.22, 1063.89, 1084.21, 0, 6, 0, 0, 0, 'Nice looking house at lv', 300000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1069, 4, -2594.19, 785.256, 46.236, 0, 0, 0, 0, 0, 2196.84, -1204.23, 1049.02, 0, 6, 0, 0, 0, '3 Story Condo In SF', 120000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1070, 4, 1565.47, 2793.43, 10.819, 0, 0, 0, 0, 0, 234.22, 1063.89, 1084.21, 0, 6, 0, 0, 0, 'Nice looking house at lv', 300000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1071, 4, 1550.64, 2846.08, 10.826, 0, 0, 0, 0, 0, 226.3, 1114.37, 1080.99, 0, 5, 0, 0, 0, 'huge 2 floor nice looking house at LV', 500000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1072, 4, 1575.89, 2844.17, 10.819, 0, 0, 0, 0, 0, 226.3, 1114.37, 1080.99, 0, 5, 0, 0, 0, 'huge 2 floor nice looking house at LV', 500000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1073, 4, 1601.78, 2846.08, 10.826, 0, 0, 0, 0, 0, 226.3, 1114.37, 1080.99, 0, 5, 0, 0, 0, 'huge 2 floor nice looking house at LV', 500000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1074, 4, 1618.36, 2800.79, 10.82, 0, 0, 0, 0, 0, 226.3, 1114.37, 1080.99, 0, 5, 0, 0, 0, 'huge 2 floor nice looking house at LV', 500000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1075, 4, 1622.73, 2846.07, 10.826, 0, 0, 0, 0, 0, 226.3, 1114.37, 1080.99, 0, 5, 0, 0, 0, 'huge 2 floor nice looking house at LV', 500000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1076, 4, 1637.79, 2801.48, 10.82, 0, 0, 0, 0, 0, 226.3, 1114.37, 1080.99, 0, 5, 0, 0, 0, 'huge 2 floor nice looking house at LV', 500000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1077, 4, 1632.76, 2843.65, 10.82, 0, 0, 0, 0, 0, 226.3, 1114.37, 1080.99, 0, 5, 0, 0, 0, 'huge 2 floor nice looking house at LV', 500000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1078, 4, 1654.7, 2800.79, 10.82, 0, 0, 0, 0, 0, 234.22, 1063.89, 1084.21, 0, 6, 0, 0, 0, 'Nice looking house at lv', 300000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1079, 4, -2240.52, 753.484, 49.376, 0, 0, 0, 0, 0, 2196.84, -1204.23, 1049.02, 0, 6, 0, 0, 0, '3 Story Condo In SF', 120000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1080, 4, 1664.77, 2846.08, 10.826, 0, 0, 0, 0, 0, 226.3, 1114.37, 1080.99, 0, 5, 0, 0, 0, 'huge 2 floor nice looking house at LV', 500000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1081, 4, 1672.95, 2800.79, 10.819, 0, 0, 0, 0, 0, 234.22, 1063.89, 1084.21, 0, 6, 0, 0, 0, 'Nice looking house at lv', 300000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1082, 4, -2240.53, 786.156, 49.377, 0, 0, 0, 0, 0, 2196.84, -1204.23, 1049.02, 0, 6, 0, 0, 0, '3 Story Condo In SF', 120000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1083, 4, -2223.7, 795.716, 49.434, 0, 0, 0, 0, 0, 2196.84, -1204.23, 1049.02, 0, 6, 0, 0, 0, '3 Story Condo In SF', 120000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1084, 4, 1555.97, 2658.52, 10.82, 0, 0, 0, 0, 0, 234.22, 1063.89, 1084.21, 0, 6, 0, 0, 0, 'Nice looking house at lv', 300000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1085, 4, -2205.42, 795.726, 50.481, 0, 0, 0, 0, 0, 2196.84, -1204.23, 1049.02, 0, 6, 0, 0, 0, '3 Story Condo In SF', 120000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1086, 4, 1573, 2657.83, 10.82, 0, 0, 0, 0, 0, 234.22, 1063.89, 1084.21, 0, 6, 0, 0, 0, 'Nice looking house at lv', 300000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1087, 4, 1607.61, 2679.27, 10.819, 0, 0, 0, 0, 0, 234.22, 1063.89, 1084.21, 0, 6, 0, 0, 0, 'Nice looking house at lv', 300000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1088, 4, -2187.03, 795.701, 57.556, 0, 0, 0, 0, 0, 2196.84, -1204.23, 1049.02, 0, 6, 0, 0, 0, '3 Story Condo In SF', 120000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1089, 4, 1611.76, 2648.22, 10.826, 0, 0, 0, 0, 0, 226.3, 1114.37, 1080.99, 0, 5, 0, 0, 0, 'huge 2 floor nice looking house at LV', 500000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1090, 4, -2168.82, 795.759, 64.971, 0, 0, 0, 0, 0, 2196.84, -1204.23, 1049.02, 0, 6, 0, 0, 0, '3 Story Condo In SF', 120000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1091, 4, -2159.21, 786.088, 69.515, 0, 0, 0, 0, 0, 2196.84, -1204.23, 1049.02, 0, 6, 0, 0, 0, '3 Story Condo In SF', 120000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1092, 4, -2159.18, 770.001, 69.515, 0, 0, 0, 0, 0, 2196.84, -1204.23, 1049.02, 0, 6, 0, 0, 0, '3 Story Condo In SF', 120000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1093, 4, 1265.47, 2610.03, 10.819, 0, 0, 0, 0, 0, 234.22, 1063.89, 1084.21, 0, 6, 0, 0, 0, 'Nice looking house at lv', 300000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1094, 4, -2159.23, 753.492, 69.514, 0, 0, 0, 0, 0, 2196.84, -1204.23, 1049.02, 0, 6, 0, 0, 0, '3 Story Condo In SF', 120000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1095, 4, 1225.27, 2584.94, 10.819, 0, 0, 0, 0, 0, 226.3, 1114.37, 1080.99, 0, 5, 0, 0, 0, 'huge 2 floor nice looking house at LV', 500000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1096, 4, 1223.02, 2616.85, 10.826, 0, 0, 0, 0, 0, 226.3, 1114.37, 1080.99, 0, 5, 0, 0, 0, 'huge 2 floor nice looking house at LV', 500000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1097, 4, -2168.52, 744.007, 64.976, 0, 0, 0, 0, 0, 2196.84, -1204.23, 1049.02, 0, 6, 0, 0, 0, '3 Story Condo In SF', 120000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1098, 4, -2186.9, 744.005, 57.555, 0, 0, 0, 0, 0, 2196.84, -1204.23, 1049.02, 0, 6, 0, 0, 0, '3 Story Condo In SF', 120000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1099, 4, -2205.46, 744.001, 50.482, 0, 0, 0, 0, 0, 2196.84, -1204.23, 1049.02, 0, 6, 0, 0, 0, '3 Story Condo In SF', 120000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1100, 4, 1731.8, 2855.49, 11.335, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0, 'lv project apartment small', 40000, 1, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1101, 4, -2223.71, 743.986, 49.433, 0, 0, 0, 0, 0, 2196.84, -1204.23, 1049.02, 0, 6, 0, 0, 0, '3 Story Condo In SF', 120000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1102, 4, -2238.31, 1154.14, 59.692, 0, 0, 0, 0, 0, 226.3, 1114.37, 1080.99, 0, 5, 0, 0, 0, '6 Story Condo In SF', 450000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1103, 4, 2651.65, 1978.84, 10.82, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0, 'lv project apartment small', 40000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1104, 4, 2649.77, 1978.84, 10.82, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0, 'lv project apartment small', 40000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1105, 4, 2642.47, 1978.84, 10.82, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0, 'lv project apartment small', 40000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1106, 4, 2640.47, 1978.84, 10.819, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0, 'lv project apartment small', 40000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1107, 4, 2633.06, 1978.84, 10.819, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0, 'lv project apartment small', 40000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1108, 4, -2238.36, 1135.89, 67.256, 0, 0, 0, 0, 0, 226.3, 1114.37, 1080.99, 0, 5, 0, 0, 0, '5 Story Condo In SF', 500000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1109, 4, 2631.15, 1978.84, 10.819, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0, 'lv project apartment small', 40000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1110, 4, 2623.89, 1978.84, 10.819, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0, 'lv project apartment small', 40000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1111, 4, 2623.87, 1978.84, 14.116, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0, 'lv project apartment small', 40000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1112, 4, 2631.33, 1978.84, 14.116, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0, 'lv project apartment small', 40000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1113, 4, 2633.24, 1978.84, 14.116, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0, 'lv project apartment small', 40000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1114, 4, 2640.46, 1978.84, 14.116, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0, 'lv project apartment small', 40000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1115, 4, 2642.55, 1978.84, 14.116, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0, 'lv project apartment small', 40000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1116, 4, 2649.89, 1978.84, 14.116, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0, 'lv project apartment small', 40000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1117, 4, -2238.36, 1117.54, 74.816, 0, 0, 0, 0, 0, 2196.84, -1204.23, 1049.02, 0, 6, 0, 0, 0, '3 Story Condo In SF', 120000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1118, 4, 2651.66, 1978.84, 14.116, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0, 'lv project apartment small', 40000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1119, 4, 2659.23, 1978.84, 14.116, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0, 'lv project apartment small', 40000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1120, 4, 2656.5, 1968.82, 14.116, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0, 'lv project apartment small', 40000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1121, 4, 2654.39, 1968.82, 14.116, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0, 'lv project apartment small', 40000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1122, 4, 2647.14, 1968.82, 14.116, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0, 'lv project apartment small', 40000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1123, 4, 2645.16, 1968.82, 14.116, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0, 'lv project apartment small', 40000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1124, 4, -2239.76, 1070.74, 81.024, 0, 0, 0, 0, 0, 2196.84, -1204.23, 1049.02, 0, 6, 0, 0, 0, '3 Story Condo In SF', 120000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1125, 4, 2637.68, 1968.82, 14.116, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0, 'lv project apartment small', 40000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1126, 4, 2635.83, 1968.82, 14.116, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0, 'lv project apartment small', 40000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1127, 4, -2239.75, 1054.09, 82.845, 0, 0, 0, 0, 0, 2196.84, -1204.23, 1049.02, 0, 6, 0, 0, 0, '3 Story Condo In SF', 120000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1128, 4, 2628.55, 1968.82, 14.116, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0, 'lv project apartment small', 40000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1129, 4, 2626.6, 1968.82, 14.116, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0, 'lv project apartment small', 40000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1130, 4, -2239.75, 1037.69, 83.849, 0, 0, 0, 0, 0, 2196.84, -1204.23, 1049.02, 0, 6, 0, 0, 0, '3 Story Condo In SF', 120000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1131, 4, 2645.48, 2019.21, 10.816, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0, 'lv project apartment small', 40000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1132, 4, 2643.76, 2019.21, 10.815, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0, 'lv project apartment small', 40000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1133, 4, 2636.22, 2019.21, 10.819, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0, 'lv project apartment small', 40000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1134, 4, 2634.43, 2019.21, 10.819, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0, 'lv project apartment small', 40000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1135, 4, 2626.93, 2019.21, 10.819, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0, 'lv project apartment small', 40000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1136, 4, -2230.58, 1028, 83.843, 0, 0, 0, 0, 0, 2196.84, -1204.23, 1049.02, 0, 6, 0, 0, 0, '3 Story Condo In SF', 120000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1137, 4, 2625.15, 2019.21, 10.819, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0, 'lv project apartment small', 40000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1138, 4, 2617.69, 2019.21, 14.116, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0, 'lv project apartment small', 40000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1139, 4, 2625.16, 2019.21, 14.116, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0, 'lv project apartment small', 40000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1140, 4, 2627.05, 2019.21, 14.116, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0, 'lv project apartment small', 40000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1141, 4, 2634.48, 2019.21, 14.116, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0, 'lv project apartment small', 40000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1142, 4, -2169.63, 1028.01, 80.007, 0, 0, 0, 0, 0, 2196.84, -1204.23, 1049.02, 0, 6, 0, 0, 0, '3 Story Condo In SF', 120000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1143, 4, 2636.22, 2019.21, 14.116, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0, 'lv project apartment small', 40000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1144, 4, 2643.66, 2019.21, 14.116, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0, 'lv project apartment small', 40000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1145, 4, 2645.58, 2019.21, 14.116, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0, 'lv project apartment small', 40000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1146, 4, 2653.25, 2019.21, 14.116, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0, 'lv project apartment small', 40000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1147, 4, 2650.33, 2029.23, 14.116, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0, 'lv project apartment small', 40000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1148, 4, 2648.34, 2029.23, 14.116, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0, 'lv project apartment small', 40000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1149, 4, 2640.71, 2029.23, 14.116, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0, 'lv project apartment small', 40000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1150, 4, 2638.92, 2029.23, 14.116, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0, 'lv project apartment small', 40000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1151, 4, 2631.54, 2029.23, 14.116, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0, 'lv project apartment small', 40000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1152, 4, 2629.68, 2029.23, 14.116, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0, 'lv project apartment small', 40000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1153, 4, 2622.22, 2029.23, 14.116, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0, 'lv project apartment small', 40000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1154, 4, 2620.37, 2029.23, 14.116, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0, 'lv project apartment small', 40000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1155, 4, -2160.15, 1030.61, 80.007, 0, 0, 0, 0, 0, 2196.84, -1204.23, 1049.02, 0, 6, 0, 0, 0, '3 Story Condo In SF', 120000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1156, 4, 2652.92, 2019.21, 10.818, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0, 'lv project apartment small', 40000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1157, 4, 2617.54, 2019.21, 10.812, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0, 'lv project apartment small', 40000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1158, 4, -2160.15, 1048.61, 80.007, 0, 0, 0, 0, 0, 2196.84, -1204.23, 1049.02, 0, 6, 0, 0, 0, '3 Story Condo In SF', 120000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1159, 4, 2620.54, 2029.23, 10.82, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0, 'lv project apartment small', 40000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1160, 4, 2622.34, 2029.23, 10.82, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0, 'lv project apartment small', 40000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1161, 4, 2629.8, 2029.23, 10.82, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0, 'lv project apartment small', 40000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1162, 4, 2631.65, 2029.23, 10.82, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0, 'lv project apartment small', 40000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1163, 4, 2639.07, 2029.23, 10.82, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0, 'lv project apartment small', 40000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1164, 4, 2641.14, 2029.23, 10.82, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0, 'lv project apartment small', 40000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1165, 4, 2648.34, 2029.23, 10.82, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0, 'lv project apartment small', 40000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1166, 4, 2650.35, 2029.23, 10.812, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0, 'lv project apartment small', 40000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1167, 4, 2623.65, 2039.4, 10.82, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0, 'lv project apartment small', 40000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1168, 4, 2623.65, 2046.99, 10.812, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0, 'lv project apartment small', 40000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1169, 4, 2623.65, 2048.81, 10.812, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0, 'lv project apartment small', 40000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1170, 4, 2623.65, 2056.16, 10.812, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0, 'lv project apartment small', 40000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1171, 4, 2623.65, 2058.1, 10.812, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0, 'lv project apartment small', 40000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1172, 4, 2623.65, 2065.44, 10.82, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0, 'lv project apartment small', 40000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1173, 4, 2623.65, 2067.4, 10.82, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0, 'lv project apartment small', 40000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1174, 4, 2623.65, 2074.85, 10.812, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0, 'lv project apartment small', 40000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1175, 4, 2623.65, 2074.93, 14.116, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0, 'lv project apartment small', 40000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1176, 4, 2623.65, 2067.53, 14.116, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0, 'lv project apartment small', 40000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1177, 4, 2623.65, 2065.52, 14.116, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0, 'lv project apartment small', 40000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1178, 4, 2623.65, 2058.19, 14.116, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0, 'lv project apartment small', 40000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1179, 4, 2623.65, 2056.03, 14.116, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0, 'lv project apartment small', 40000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1180, 4, 2623.65, 2048.66, 14.116, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0, 'lv project apartment small', 40000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1181, 4, 2206.32, 691.25, 11.46, 0, 0, 0, 0, 0, 447, 1397.09, 1084.3, 0, 2, 0, 0, 0, 'Medium house at LV', 150000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1182, 4, 2623.65, 2046.85, 14.116, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0, 'lv project apartment small', 40000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1183, 4, 2623.65, 2039.52, 14.116, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0, 'lv project apartment small', 40000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1184, 4, 2613.64, 2042.23, 14.116, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0, 'lv project apartment small', 40000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1185, 4, 2613.64, 2044.19, 14.116, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0, 'lv project apartment small', 40000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1186, 4, 2613.64, 2051.56, 14.116, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0, 'lv project apartment small', 40000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1187, 4, 2613.64, 2053.43, 14.116, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0, 'lv project apartment small', 40000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1188, 4, 2613.64, 2060.92, 14.116, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0, 'lv project apartment small', 40000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1189, 4, 2613.64, 2062.75, 14.116, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0, 'lv project apartment small', 40000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1190, 4, 2613.64, 2070.18, 14.116, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0, 'lv project apartment small', 40000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1191, 4, 2613.64, 2072.07, 14.116, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0, 'lv project apartment small', 40000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1192, 4, -2160.15, 1066.91, 80.007, 0, 0, 0, 0, 0, 2196.84, -1204.23, 1049.02, 0, 6, 0, 0, 0, '3 Story Condo In SF', 120000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1193, 4, 2626.63, 1968.82, 10.82, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0, 'lv project apartment small', 40000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1194, 4, 2628.41, 1968.82, 10.82, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0, 'lv project apartment small', 40000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1195, 4, 2635.94, 1968.82, 10.82, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0, 'lv project apartment small', 40000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1196, 4, 2637.82, 1968.82, 10.82, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0, 'lv project apartment small', 40000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1197, 4, 2645.3, 1968.82, 10.82, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0, 'lv project apartment small', 40000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1198, 4, 2647.13, 1968.82, 10.82, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0, 'lv project apartment small', 40000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1199, 4, 2654.56, 1968.82, 10.82, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0, 'lv project apartment small', 40000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1200, 4, 2656.5, 1968.82, 10.82, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0, 'lv project apartment small', 40000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1201, 4, -2158.36, 1117.61, 74.486, 0, 0, 0, 0, 0, 2196.84, -1204.23, 1049.02, 0, 6, 0, 0, 0, '3 Story Condo In SF', 120000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1202, 4, 2659.19, 1978.84, 10.819, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0, 'lv project apartment small', 40000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1203, 4, -2158.36, 1148.65, 61.849, 0, 0, 0, 0, 0, 226.3, 1114.37, 1080.99, 0, 5, 0, 0, 0, '5 Story Condo In SF', 500000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1204, 4, 2613.64, 2071.98, 10.819, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0, 'lv project apartment small', 40000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1205, 4, 2613.64, 2070.12, 10.819, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0, 'lv project apartment small', 40000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1206, 4, 2613.64, 2062.79, 10.812, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0, 'lv project apartment small', 40000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1207, 4, 2613.63, 2060.82, 10.812, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0, 'lv project apartment small', 40000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1208, 4, 2613.64, 2053.51, 10.812, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0, 'lv project apartment small', 40000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1209, 4, 2613.64, 2051.58, 10.819, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0, 'lv project apartment small', 40000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1210, 4, 2613.64, 2044.13, 10.819, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0, 'lv project apartment small', 40000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1211, 4, 2613.64, 2042.09, 10.819, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0, 'lv project apartment small', 40000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1212, 4, -2172.59, 1163.75, 55.726, 0, 0, 0, 0, 0, 226.3, 1114.37, 1080.99, 0, 5, 0, 0, 0, '6 Story Condo In SF', 450000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1213, 4, -2189.18, 1163.76, 55.726, 0, 0, 0, 0, 0, 226.3, 1114.37, 1080.99, 0, 5, 0, 0, 0, '6 Story Condo In SF', 450000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1214, 4, -2205.8, 1163.76, 55.726, 0, 0, 0, 0, 0, 226.3, 1114.37, 1080.99, 0, 5, 0, 0, 0, '6 Story Condo In SF', 450000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1215, 4, -2222.19, 1163.75, 55.726, 0, 0, 0, 0, 0, 226.3, 1114.37, 1080.99, 0, 5, 0, 0, 0, '6 Story Condo In SF', 450000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1216, 4, -2102.54, 1159.83, 53.265, 0, 0, 0, 0, 0, 2196.84, -1204.23, 1049.02, 0, 6, 0, 0, 0, '3 Story Condo In SF', 120000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1217, 4, -2084.2, 1159.83, 49.953, 0, 0, 0, 0, 0, 2196.84, -1204.23, 1049.02, 0, 6, 0, 0, 0, '3 Story Condo In SF', 120000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1218, 4, -2065.95, 1159.84, 46.648, 0, 0, 0, 0, 0, 2196.84, -1204.23, 1049.02, 0, 6, 0, 0, 0, '3 Story Condo In SF', 120000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1219, 4, 2013.25, 730.357, 11.453, 0, 0, 0, 0, 0, 234.22, 1063.89, 1084.21, 0, 6, 0, 0, 0, 'Nice looking house at lv', 300000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1220, 4, 2014.13, 775.195, 11.46, 0, 0, 0, 0, 0, 447, 1397.09, 1084.3, 0, 2, 0, 0, 0, 'Medium house at LV', 150000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1221, 4, 2042.44, 731.265, 11.46, 0, 0, 0, 0, 0, 447, 1397.09, 1084.3, 0, 2, 0, 0, 0, 'Medium house at LV', 150000, 950, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1222, 4, 2043.24, 776.096, 11.453, 0, 0, 0, 0, 0, 447, 1397.09, 1084.3, 0, 2, 0, 0, 0, 'Medium house at LV', 150000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1223, 4, -1761.05, 1174.03, 25.125, 0, 0, 0, 0, 0, 226.3, 1114.37, 1080.99, 0, 5, 0, 0, 0, '5 Story Condo In SF', 500000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1224, 4, 2065.13, 729.822, 11.468, 0, 0, 0, 0, 0, 447, 1397.09, 1084.3, 0, 2, 0, 0, 0, 'Medium house at LV', 150000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1225, 4, -1742.62, 1174.05, 25.125, 0, 0, 0, 0, 0, 226.3, 1114.37, 1080.99, 0, 5, 0, 0, 0, '6 Story Condo In SF', 450000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1226, 4, 2071.62, 776.637, 11.46, 0, 0, 0, 0, 0, 447, 1397.09, 1084.3, 0, 2, 0, 0, 0, 'Medium house at LV', 150000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1227, 4, 2093.41, 730.359, 11.453, 0, 0, 0, 0, 0, 447, 1397.09, 1084.3, 0, 2, 0, 0, 0, 'Medium house at LV', 150000, 1500, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1228, 4, 2094, 775.195, 11.453, 0, 0, 0, 0, 0, 447, 1397.09, 1084.3, 0, 2, 0, 0, 0, 'Medium house at LV', 150000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1229, 4, -1728.32, 1158.79, 30.451, 0, 0, 0, 0, 0, 226.3, 1114.37, 1080.99, 0, 5, 0, 0, 0, '5 Story Condo In SF', 500000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1230, 4, 2122.3, 731.264, 11.46, 0, 0, 0, 0, 0, 447, 1397.09, 1084.3, 0, 2, 0, 0, 0, 'Medium house at LV', 150000, 500, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1231, 4, 2123.41, 776.099, 11.444, 0, 0, 0, 0, 0, 447, 1397.09, 1084.3, 0, 2, 0, 0, 0, 'Medium house at LV', 150000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1232, 4, -1728.31, 1138.95, 38.568, 0, 0, 0, 0, 0, 226.3, 1114.37, 1080.99, 0, 5, 0, 0, 0, '5 Story Condo In SF', 500000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1233, 4, 2169.36, 772.38, 11.46, 0, 0, 0, 0, 0, 447, 1397.09, 1084.3, 0, 2, 0, 0, 0, 'Medium house at LV', 150000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1234, 4, 2177.18, 690.351, 11.46, 0, 0, 0, 0, 0, 447, 1397.09, 1084.3, 0, 2, 0, 0, 0, 'Medium house at LV', 150000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1235, 4, 2228.68, 689.807, 11.46, 0, 0, 0, 0, 0, 447, 1397.09, 1084.3, 0, 2, 0, 0, 0, 'Medium house at LV', 150000, 5000, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1236, 4, 2206, 736.635, 11.468, 0, 0, 0, 0, 0, 447, 1397.09, 1084.3, 0, 2, 0, 0, 0, 'Medium house at LV', 150000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1237, 4, 2177.61, 736.101, 11.46, 0, 0, 0, 0, 0, 447, 1397.09, 1084.3, 0, 2, 0, 0, 0, 'Medium house at LV', 150000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1238, 4, 2228.25, 735.2, 11.46, 0, 0, 0, 0, 0, 447, 1397.09, 1084.3, 0, 2, 0, 0, 0, 'Medium house at LV', 150000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1239, 4, -1929.89, 1190.53, 45.445, 0, 0, 0, 0, 0, 234.22, 1063.89, 358.5, 0, 6, 0, 0, 0, '4 Story Condo In SF', 400000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1240, 4, 2256.98, 690.343, 11.453, 0, 0, 0, 0, 0, 447, 1397.09, 1084.3, 0, 2, 0, 0, 0, 'Medium house at LV', 150000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1241, 4, -1915.56, 1190.54, 45.452, 0, 0, 0, 0, 0, 234.22, 1063.89, 358.5, 0, 6, 0, 0, 0, '4 Story Condo In SF', 400000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1242, 4, 2257.52, 736.108, 11.46, 0, 0, 0, 0, 0, 447, 1397.09, 1084.3, 0, 2, 0, 0, 0, 'Medium house at LV', 150000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1243, 4, -1872.07, 1146.71, 45.445, 0, 0, 0, 0, 0, 234.22, 1063.89, 358.5, 0, 6, 0, 0, 0, '4 Story Condo In SF', 400000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1244, 4, 2317.15, 690.35, 11.46, 0, 0, 0, 0, 0, 447, 1397.09, 1084.3, 0, 2, 0, 0, 0, 'Medium house at LV', 150000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1245, 4, -1872.08, 1125.38, 45.445, 0, 0, 0, 0, 0, 234.22, 1063.89, 358.5, 0, 6, 0, 0, 0, '4 Story Condo In SF', 400000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1246, 4, 2346.6, 736.635, 11.468, 0, 0, 0, 0, 0, 447, 1397.09, 1084.3, 0, 2, 0, 0, 0, 'Medium house at LV', 150000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1247, 4, 2346.35, 691.255, 11.46, 0, 0, 0, 0, 0, 447, 1397.09, 1084.3, 0, 2, 0, 0, 0, 'Medium house at LV', 150000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1248, 4, 2369.11, 735.196, 11.46, 0, 0, 0, 0, 0, 447, 1397.09, 1084.3, 0, 2, 0, 0, 0, 'Medium house at LV', 150000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1249, 4, -1901.41, 1203.19, 42.377, 0, 0, 0, 0, 0, 226.3, 1114.37, 1080.99, 0, 5, 0, 0, 0, '5 Story Condo In SF', 500000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1250, 4, 2368.45, 689.799, 11.46, 0, 0, 0, 0, 0, 447, 1397.09, 1084.3, 0, 2, 0, 0, 0, 'Medium house at LV', 150000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1251, 4, 2398.36, 736.103, 11.46, 0, 0, 0, 0, 0, 447, 1397.09, 1084.3, 0, 2, 0, 0, 0, 'Medium house at LV', 150000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1252, 4, 2396.96, 690.342, 11.453, 0, 0, 0, 0, 0, 447, 1397.09, 1084.3, 0, 2, 0, 0, 0, 'Medium house at LV', 150000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1253, 4, 2450.27, 742.539, 11.46, 0, 0, 0, 0, 0, 447, 1397.09, 1084.3, 0, 2, 0, 0, 0, 'Medium house at LV', 150000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1254, 4, -1852.62, 1162.22, 40.942, 0, 0, 0, 0, 0, 226.3, 1114.37, 1080.99, 0, 5, 0, 0, 0, '5 Story Condo In SF', 500000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1255, 4, 2450.81, 714.308, 11.468, 0, 0, 0, 0, 0, 447, 1397.09, 1084.3, 0, 2, 0, 0, 0, 'Medium house at LV', 150000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1256, 4, 2449.23, 689.736, 11.46, 0, 0, 0, 0, 0, 447, 1397.09, 1084.3, 0, 2, 0, 0, 0, 'Medium house at LV', 150000, 1, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1257, 4, 2450.27, 662.638, 11.46, 0, 0, 0, 0, 0, 447, 1397.09, 1084.3, 0, 2, 0, 0, 0, 'Medium house at LV', 150000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1258, 4, 2397.68, 656.109, 11.46, 0, 0, 0, 0, 0, 447, 1397.09, 1084.3, 0, 2, 0, 0, 0, 'Medium house at LV', 150000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1259, 4, 2368.38, 655.211, 11.46, 0, 0, 0, 0, 0, 447, 1397.09, 1084.3, 0, 2, 0, 0, 0, 'Medium house at LV', 150000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1260, 4, 2346.09, 656.638, 11.46, 0, 0, 0, 0, 0, 447, 1397.09, 1084.3, 0, 2, 0, 0, 0, 'Medium house at LV', 150000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1261, 4, 2317.81, 656.103, 11.453, 0, 0, 0, 0, 0, 447, 1397.09, 1084.3, 0, 2, 0, 0, 0, 'Medium house at LV', 150000, 100, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1262, 4, -1831.8, 1165.88, 33.682, 0, 0, 0, 0, 0, 234.22, 1063.89, 358.5, 0, 6, 0, 0, 0, '4 Story Condo In SF', 400000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1263, 4, 2258.11, 655.978, 11.453, 0, 0, 0, 0, 0, 447, 1397.09, 1084.3, 0, 2, 0, 0, 0, 'Medium house at LV', 150000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1264, 4, 2229.04, 655.184, 11.46, 0, 0, 0, 0, 0, 447, 1397.09, 1084.3, 0, 2, 0, 0, 0, 'Medium house at LV', 150000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1265, 4, 2206.41, 656.63, 11.468, 0, 0, 0, 0, 0, 447, 1397.09, 1084.3, 0, 2, 0, 0, 0, 'Medium house at LV', 150000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1266, 4, 2178.16, 655.993, 11.46, 0, 0, 0, 0, 0, 447, 1397.09, 1084.3, 0, 2, 0, 0, 0, 'Medium house at LV', 150000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1267, 4, -1732.27, 1115.52, 45.445, 0, 0, 0, 0, 0, 226.3, 1114.37, 1080.99, 0, 5, 0, 0, 0, '6 Story Condo In SF', 450000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1268, 4, 2123.27, 651.313, 11.46, 0, 0, 0, 0, 0, 447, 1397.09, 1084.3, 0, 2, 0, 0, 0, 'Medium house at LV', 150000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1269, 4, 2120.44, 696.091, 11.453, 0, 0, 0, 0, 0, 447, 1397.09, 1084.3, 0, 2, 0, 0, 0, 'Medium house at LV', 150000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1270, 4, -1776.18, 1115.52, 45.445, 0, 0, 0, 0, 0, 226.3, 1114.37, 1080.99, 0, 5, 0, 0, 0, '6 Story Condo In SF', 450000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1271, 4, 2091.24, 695.188, 11.46, 0, 0, 0, 0, 0, 447, 1397.09, 1084.3, 0, 2, 0, 0, 0, 'Medium house at LV', 150000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1272, 4, 2094.12, 650.404, 11.46, 0, 0, 0, 0, 0, 447, 1397.09, 1084.3, 0, 2, 0, 0, 0, 'Medium house at LV', 150000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1273, 4, -1780.11, 1138.79, 38.585, 0, 0, 0, 0, 0, 234.22, 1063.89, 358.5, 0, 6, 0, 0, 0, '4 Story Condo In SF', 400000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1274, 4, 2068.96, 696.629, 11.468, 0, 0, 0, 0, 0, 447, 1397.09, 1084.3, 0, 2, 0, 0, 0, 'Medium house at LV', 150000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1275, 4, -1780.12, 1158.76, 30.448, 0, 0, 0, 0, 0, 234.22, 1063.89, 358.5, 0, 6, 0, 0, 0, '4 Story Condo In SF', 400000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1276, 4, 2065.82, 649.861, 11.468, 0, 0, 0, 0, 0, 447, 1397.09, 1084.3, 0, 2, 0, 0, 0, 'Medium house at LV', 150000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1277, 4, 2040.71, 696.086, 11.453, 0, 0, 0, 0, 0, 447, 1397.09, 1084.3, 0, 2, 0, 0, 0, 'Medium house at LV', 150000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1278, 4, 2043.26, 651.311, 11.46, 0, 0, 0, 0, 0, 447, 1397.09, 1084.3, 0, 2, 0, 0, 0, 'Medium house at LV', 150000, 150, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1279, 4, 2011.61, 695.187, 11.46, 0, 0, 0, 0, 0, 447, 1397.09, 1084.3, 0, 2, 0, 0, 0, 'Medium house at LV', 150000, 400, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1280, 4, 2013.96, 650.404, 11.46, 0, 0, 0, 0, 0, 447, 1397.09, 1084.3, 0, 2, 0, 0, 0, 'Medium house at LV', 150000, 150, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1281, 4, -1820.68, 1117.26, 46.445, 0, 0, 0, 0, 0, 234.22, 1063.89, 358.5, 0, 6, 0, 0, 0, '4 Story Condo In SF', 400000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1282, 4, -1842.59, 1115.52, 45.445, 0, 0, 0, 0, 0, 234.22, 1063.89, 358.5, 0, 6, 0, 0, 0, '4 Story Condo In SF', 400000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1283, 4, -1860.83, 1115.51, 45.445, 0, 0, 0, 0, 0, 234.22, 1063.89, 358.5, 0, 6, 0, 0, 0, '4 Story Condo In SF', 400000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1284, 4, 2571.53, 719.404, 14.739, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0, 'lv project apartment small', 40000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1285, 4, 2579.08, 719.478, 14.739, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0, 'lv project apartment small', 40000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1286, 4, -2024.5, 1275.93, 7.187, 0, 0, 0, 0, 0, 234.22, 1063.89, 358.5, 0, 6, 0, 0, 0, '4 Story Condo In SF', 400000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1287, 4, 2571.53, 713.242, 14.739, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0, 'lv project apartment small', 40000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1288, 4, -2029, 1275.91, 7.187, 0, 0, 0, 0, 0, 234.22, 1063.89, 358.5, 0, 6, 0, 0, 0, '4 Story Condo In SF', 400000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1289, 4, 2579.08, 713.231, 14.739, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0, 'lv project apartment small', 40000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1290, 4, 2579.08, 719.545, 10.82, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0, 'lv project apartment small', 40000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1291, 4, 2571.7, 719.518, 10.82, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0, 'lv project apartment small', 40000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1292, 4, -2043.83, 1261.38, 9.204, 0, 0, 0, 0, 0, 2196.84, -1204.23, 1049.02, 0, 6, 0, 0, 0, '3 Story Condo In SF', 120000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1293, 4, 2621.06, 719.538, 10.82, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0, 'lv project apartment small', 40000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1294, 4, 2613.51, 719.58, 10.82, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0, 'lv project apartment small', 40000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1295, 4, 2613.51, 719.468, 14.739, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0, 'lv project apartment small', 40000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1296, 4, 2621.06, 719.403, 14.739, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0, 'lv project apartment small', 40000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1297, 4, 2613.5, 713.375, 14.739, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0, 'lv project apartment small', 40000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1298, 4, 2621.06, 713.229, 14.739, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0, 'lv project apartment small', 40000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1299, 4, -2383.11, 1336.27, 12.805, 0, 0, 0, 0, 0, 2196.84, -1204.23, 1049.02, 0, 6, 0, 0, 0, '3 Story Condo In SF', 120000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1300, 4, 2540.06, 719.542, 10.82, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0, 'lv project apartment small', 40000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1301, 4, 2532.51, 719.578, 10.82, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0, 'lv project apartment small', 40000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1302, 4, -2351.14, 1336.15, 12.786, 0, 0, 0, 0, 0, 2196.84, -1204.23, 1049.02, 0, 6, 0, 0, 0, '3 Story Condo In SF', 120000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1303, 4, 2532.5, 719.581, 14.739, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0, 'lv project apartment small', 40000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1304, 4, 2540.06, 719.528, 14.739, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0, 'lv project apartment small', 40000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1305, 4, 2532.51, 713.226, 14.739, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0, 'lv project apartment small', 40000, 1, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1306, 4, 2540.06, 713.196, 14.739, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0, 'lv project apartment small', 40000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1307, 4, -2351.15, 1318.02, 16.224, 0, 0, 0, 0, 0, 2196.84, -1204.23, 1049.02, 0, 6, 0, 0, 0, '3 Story Condo In SF', 120000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1308, 4, -2351.16, 1299.56, 19.584, 0, 0, 0, 0, 0, 2196.84, -1204.23, 1049.02, 0, 6, 0, 0, 0, '3 Story Condo In SF', 120000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1309, 4, -2351.14, 1281.29, 22.944, 0, 0, 0, 0, 0, 2196.84, -1204.23, 1049.02, 0, 6, 0, 0, 0, '3 Story Condo In SF', 120000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1310, 4, 2660.08, 719.421, 10.819, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0, 'lv project apartment small', 40000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1311, 4, 2652.53, 719.485, 10.82, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0, 'lv project apartment small', 40000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1312, 4, 2652.53, 719.519, 14.739, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0, 'lv project apartment small', 40000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1313, 4, -2351.15, 1262.93, 26.317, 0, 0, 0, 0, 0, 2196.84, -1204.23, 1049.02, 0, 6, 0, 0, 0, '3 Story Condo In SF', 120000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1314, 4, 2660.08, 719.576, 14.739, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0, 'lv project apartment small', 40000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1315, 4, -2351.15, 1244.69, 29.679, 0, 0, 0, 0, 0, 2196.84, -1204.23, 1049.02, 0, 6, 0, 0, 0, '3 Story Condo In SF', 120000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1316, 4, 2652.53, 713.158, 10.82, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0, 'lv project apartment small', 40000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1317, 4, 2660.08, 713.316, 10.82, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0, 'lv project apartment small', 40000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1318, 4, -2351.15, 1226.37, 33.03, 0, 0, 0, 0, 0, 2196.84, -1204.23, 1049.02, 0, 6, 0, 0, 0, '3 Story Condo In SF', 120000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1319, 4, 2652.53, 713.269, 14.739, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0, 'lv project apartment small', 40000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1320, 4, -2383.13, 1226.35, 33.042, 0, 0, 0, 0, 0, 2196.84, -1204.23, 1049.02, 0, 6, 0, 0, 0, '3 Story Condo In SF', 120000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1321, 4, 2660.08, 713.333, 14.739, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0, 'lv project apartment small', 40000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1322, 4, -2383.09, 1244.63, 29.686, 0, 0, 0, 0, 0, 2196.84, -1204.23, 1049.02, 0, 6, 0, 0, 0, '3 Story Condo In SF', 120000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1323, 4, 2613.51, 713.393, 10.82, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0, 'lv project apartment small', 40000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1324, 4, -2383.14, 1262.96, 26.329, 0, 0, 0, 0, 0, 2196.84, -1204.23, 1049.02, 0, 6, 0, 0, 0, '3 Story Condo In SF', 120000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1325, 4, 2621.06, 713.221, 10.82, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0, 'lv project apartment small', 40000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1326, 4, -2383.12, 1281.31, 22.963, 0, 0, 0, 0, 0, 2196.84, -1204.23, 1049.02, 0, 6, 0, 0, 0, '3 Story Condo In SF', 120000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1327, 4, -2383.14, 1299.71, 19.599, 0, 0, 0, 0, 0, 2196.84, -1204.23, 1049.02, 0, 6, 0, 0, 0, '3 Story Condo In SF', 120000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1328, 4, 2579.08, 713.21, 10.82, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0, 'lv project apartment small', 40000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1329, 4, -2383.12, 1317.95, 16.238, 0, 0, 0, 0, 0, 2196.84, -1204.23, 1049.02, 0, 6, 0, 0, 0, '3 Story Condo In SF', 120000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1330, 4, 2571.53, 713.25, 10.82, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0, 'lv project apartment small', 40000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1331, 4, 2540.06, 713.254, 10.82, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0, 'lv project apartment small', 40000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1332, 4, 2532.51, 713.365, 10.82, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0, 'lv project apartment small', 40000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1333, 4, 2526.21, 750.095, 10.82, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0, 'lv project apartment small', 40000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1334, 4, -2433.08, 1338.17, 8.507, 0, 0, 0, 0, 0, 2196.84, -1204.23, 1049.02, 0, 6, 0, 0, 0, 'Normal Size House In SF', 85000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1335, 4, 2526.13, 742.542, 10.82, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0, 'lv project apartment small', 40000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1336, 4, 2525.97, 742.541, 14.739, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0, 'lv project apartment small', 40000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1337, 4, 2526.04, 750.094, 14.739, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0, 'lv project apartment small', 40000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1338, 4, -2433.76, 1318.71, 13.867, 0, 0, 0, 0, 0, 261.06, 1284.29, 1080.25, 0, 4, 0, 0, 0, 'Small House In SF', 30000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1339, 4, -2434.02, 1311.06, 15.418, 0, 0, 0, 0, 0, 261.058, 1284.29, 1080.25, 0, 4, 0, 0, 0, 'Small House In SF', 30000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1340, 4, 2532.3, 742.541, 10.819, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0, 'lv project apartment small', 40000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1341, 4, 2532.36, 750.094, 10.819, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0, 'lv project apartment small', 40000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1342, 4, -2433.07, 1301.14, 18.382, 0, 0, 0, 0, 0, 261.06, 1284.29, 1080.25, 0, 4, 0, 0, 0, 'Small House In SF', 30000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1343, 4, 2532.43, 750.091, 14.739, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0, 'lv project apartment small', 40000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1344, 4, 2532.36, 742.543, 14.739, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0, 'lv project apartment small', 40000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1345, 4, -2433.77, 1281.61, 23.742, 0, 0, 0, 0, 0, 261.06, 1284.29, 1080.25, 0, 4, 0, 0, 0, 'Small House In SF', 30000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1346, 4, -2434, 1274.07, 25.313, 0, 0, 0, 0, 0, 261.06, 1284.29, 1080.25, 0, 4, 0, 0, 0, 'Small House In SF', 30000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1347, 4, -2433.06, 1264.12, 28.257, 0, 0, 0, 0, 0, 2196.84, -1204.23, 1049.02, 0, 6, 0, 0, 0, 'Normal Size House In SF', 85000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1348, 4, 2660.31, 750.098, 10.819, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0, 'lv project apartment small', 40000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1349, 4, 2660.28, 742.544, 10.82, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0, 'lv project apartment small', 40000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1350, 4, 2666.5, 750.095, 10.82, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0, 'lv project apartment small', 40000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1351, 4, -2433.72, 1244.43, 33.617, 0, 0, 0, 0, 0, 261.058, 1284.29, 1080.25, 0, 4, 0, 0, 0, 'Small House In SF', 30000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1352, 4, 2666.5, 742.545, 10.82, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0, 'lv project apartment small', 40000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1353, 4, -2477.24, 1244.31, 33.609, 0, 0, 0, 0, 0, 261.06, 1284.29, 1080.25, 0, 4, 0, 0, 0, 'Small House In SF', 30000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1354, 4, -2477.93, 1264.22, 28.25, 0, 0, 0, 0, 0, 2196.84, -1204.23, 1049.02, 0, 6, 0, 0, 0, 'Normal Size House In SF', 85000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1355, 4, -2476.93, 1274.28, 25.314, 0, 0, 0, 0, 0, 261.06, 1284.29, 1080.25, 0, 4, 0, 0, 0, 'Small House In SF', 30000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1356, 4, 2660.21, 742.546, 14.739, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0, 'lv project apartment small', 40000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1357, 4, 2660.38, 750.098, 14.739, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0, 'lv project apartment small', 40000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1358, 4, 2666.43, 742.544, 14.739, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0, 'lv project apartment small', 40000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1359, 4, -2477.19, 1281.51, 23.726, 0, 0, 0, 0, 0, 261.06, 1284.29, 1080.25, 0, 4, 0, 0, 0, 'Small House In SF', 30000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1360, 4, 2666.53, 750.098, 14.739, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0, 'lv project apartment small', 40000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1361, 4, -2477.88, 1301.24, 18.375, 0, 0, 0, 0, 0, 2196.84, -1204.23, 1049.02, 0, 6, 0, 0, 0, 'Normal Size House In SF', 85000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1362, 4, -2476.93, 1311.23, 15.411, 0, 0, 0, 0, 0, 261.059, 1284.29, 1080.25, 0, 4, 0, 0, 0, 'Small House In SF', 30000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1363, 4, -2477.2, 1318.62, 13.851, 0, 0, 0, 0, 0, 261.06, 1284.29, 1080.25, 0, 4, 0, 0, 0, 'Small House In SF', 30000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1364, 4, -2477.87, 1338.25, 8.503, 0, 0, 0, 0, 0, 2196.84, -1204.23, 1049.02, 0, 6, 0, 0, 0, 'Normal Size House In SF', 85000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1365, 4, 1845.44, 661.125, 11.46, 0, 0, 0, 0, 0, 447, 1397.09, 1084.3, 0, 2, 0, 0, 0, 'Medium house at LV', 150000, 5000, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1366, 4, 1844.53, 690.45, 11.453, 0, 0, 0, 0, 0, 447, 1397.09, 1084.3, 0, 2, 0, 0, 0, 'Medium house at LV', 150000, 200, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1367, 4, 1843.99, 718.83, 11.468, 0, 0, 0, 0, 0, 447, 1397.09, 1084.3, 0, 2, 0, 0, 0, 'Medium house at LV', 150000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1368, 4, 1845.44, 741.387, 11.46, 0, 0, 0, 0, 0, 447, 1397.09, 1084.3, 0, 2, 0, 0, 0, 'Medium house at LV', 150000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1369, 4, -2126.45, 1087.64, 80.007, 0, 0, 0, 0, 0, 2196.84, -1204.23, 1049.02, 0, 6, 0, 0, 0, '3 Story Condo In SF', 120000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1370, 4, -2126.5, 1069.28, 80.007, 0, 0, 0, 0, 0, 2196.84, -1204.23, 1049.02, 0, 6, 0, 0, 0, '3 Story Condo In SF', 120000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1371, 4, -2126.44, 1050.91, 80.007, 0, 0, 0, 0, 0, 226.3, 1114.37, 1080.99, 0, 5, 0, 0, 0, '5 Story Condo In SF', 500000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1372, 4, -2126.47, 1032.53, 80.007, 0, 0, 0, 0, 0, 226.3, 1114.37, 1080.99, 0, 5, 0, 0, 0, '5 Story Condo In SF', 500000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1373, 4, -2126.44, 1014.24, 80.007, 0, 0, 0, 0, 0, 2196.84, -1204.23, 1049.02, 0, 6, 0, 0, 0, '3 Story Condo In SF', 120000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1374, 4, -2126.47, 996.319, 80.007, 0, 0, 0, 0, 0, 2196.84, -1204.23, 1049.02, 0, 6, 0, 0, 0, '3 Story Condo In SF', 120000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1375, 4, -2126.44, 978.493, 80.007, 0, 0, 0, 0, 0, 2196.84, -1204.23, 1049.02, 0, 6, 0, 0, 0, '3 Story Condo In SF', 120000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1376, 4, -2129.63, 942.578, 80, 0, 0, 0, 0, 0, 2196.84, -1204.23, 1049.02, 0, 6, 0, 0, 0, '3 Story Condo In SF', 120000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1377, 4, -2116.77, 927.828, 86.079, 0, 0, 0, 0, 0, 447, 1397.09, 1084.3, 0, 2, 0, 0, 0, '2 Story Condo In SF', 120000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1378, 4, -2129.25, 895.038, 80, 0, 0, 0, 0, 0, 2196.84, -1204.23, 1049.02, 0, 6, 0, 0, 0, '3 Story Condo In SF', 120000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1379, 4, -2126.4, 832.815, 69.562, 0, 0, 0, 0, 0, 2196.84, -1204.23, 1049.02, 0, 6, 0, 0, 0, '3 Story Condo In SF', 120000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1380, 4, -2126.04, 774.131, 69.562, 0, 0, 0, 0, 0, 2196.84, -1204.23, 1049.02, 0, 6, 0, 0, 0, '3 Story Condo In SF', 120000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1381, 4, -2126.08, 755.699, 69.562, 0, 0, 0, 0, 0, 2196.84, -1204.23, 1049.02, 0, 6, 0, 0, 0, '3 Story Condo In SF', 120000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1382, 4, -2112.56, 746.415, 69.562, 0, 0, 0, 0, 0, 2196.84, -1204.23, 1049.02, 0, 6, 0, 0, 0, '3 Story Condo In SF', 120000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1383, 4, -2094.2, 746.424, 69.562, 0, 0, 0, 0, 0, 2196.84, -1204.23, 1049.02, 0, 6, 0, 0, 0, '3 Story Condo In SF', 120000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1384, 4, -2066.57, 746.057, 64.895, 0, 0, 0, 0, 0, 2196.84, -1204.23, 1049.02, 0, 6, 0, 0, 0, '3 Story Condo In SF', 120000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1385, 4, -2048.12, 746.08, 57.042, 0, 0, 0, 0, 0, 2196.84, -1204.23, 1049.02, 0, 6, 0, 0, 0, '3 Story Condo In SF', 120000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1386, 4, -2029.84, 746.08, 49.464, 0, 0, 0, 0, 0, 2196.84, -1204.23, 1049.02, 0, 6, 0, 0, 0, '3 Story Condo In SF', 120000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1387, 4, -2018.55, 748.037, 45.445, 0, 0, 0, 0, 0, 2196.84, -1204.23, 1049.02, 0, 6, 0, 0, 0, '3 Story Condo In SF', 120000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1388, 4, -2018.54, 766.224, 45.445, 0, 0, 0, 0, 0, 2196.84, -1204.23, 1049.02, 0, 6, 0, 0, 0, '3 Story Condo In SF', 120000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1389, 4, -2018.53, 784.821, 45.445, 0, 0, 0, 0, 0, 2196.84, -1204.23, 1049.02, 0, 6, 0, 0, 0, '3 Story Condo In SF', 120000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1390, 4, -2029.85, 796.118, 49.467, 0, 0, 0, 0, 0, 2196.84, -1204.23, 1049.02, 0, 6, 0, 0, 0, '3 Story Condo In SF', 120000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1391, 4, -2048.22, 796.097, 57.039, 0, 0, 0, 0, 0, 2196.84, -1204.23, 1049.02, 0, 6, 0, 0, 0, '3 Story Condo In SF', 120000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1392, 4, -2066.44, 796.124, 64.924, 0, 0, 0, 0, 0, 2196.84, -1204.23, 1049.02, 0, 6, 0, 0, 0, '3 Story Condo In SF', 120000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1393, 4, -2094.25, 795.745, 69.562, 0, 0, 0, 0, 0, 2196.84, -1204.23, 1049.02, 0, 6, 0, 0, 0, '3 Story Condo In SF', 120000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1394, 4, -2112.67, 795.752, 69.562, 0, 0, 0, 0, 0, 2196.84, -1204.23, 1049.02, 0, 6, 0, 0, 0, '3 Story Condo In SF', 120000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1395, 4, -2112.63, 823.535, 69.562, 0, 0, 0, 0, 0, 2196.84, -1204.23, 1049.02, 0, 6, 0, 0, 0, '3 Story Condo In SF', 120000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1396, 4, -2094.18, 823.546, 69.562, 0, 0, 0, 0, 0, 2196.84, -1204.23, 1049.02, 0, 6, 0, 0, 0, '3 Story Condo In SF', 120000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1397, 4, -2066.48, 820.686, 64.923, 0, 0, 0, 0, 0, 2196.84, -1204.23, 1049.02, 0, 6, 0, 0, 0, '3 Story Condo In SF', 120000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1398, 4, -2048.12, 820.692, 57.026, 0, 0, 0, 0, 0, 2196.84, -1204.23, 1049.02, 0, 6, 0, 0, 0, '3 Story Condo In SF', 120000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1399, 4, -2029.81, 820.68, 49.463, 0, 0, 0, 0, 0, 2196.84, -1204.23, 1049.02, 0, 6, 0, 0, 0, '3 Story Condo In SF', 120000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1400, 4, -2018.54, 832.175, 45.445, 0, 0, 0, 0, 0, 2196.84, -1204.23, 1049.02, 0, 6, 0, 0, 0, '3 Story Condo In SF', 120000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1401, 4, -2018.54, 849.283, 45.448, 0, 0, 0, 0, 0, 226.3, 1114.37, 1080.99, 0, 5, 0, 0, 0, '6 Story Condo In SF', 450000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1402, 4, -2018.53, 865.804, 45.444, 0, 0, 0, 0, 0, 226.3, 1114.37, 1080.99, 0, 5, 0, 0, 0, '6 Story Condo In SF', 450000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1403, 4, -2016.35, 897.455, 45.445, 0, 0, 0, 0, 0, 234.22, 1063.89, 358.5, 0, 6, 0, 0, 0, '4 Story Condo In SF', 400000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1404, 4, -2034.17, 901.466, 50.457, 0, 0, 0, 0, 0, 2196.84, -1204.23, 1049.02, 0, 6, 0, 0, 0, '3 Story Condo In SF', 120000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1405, 4, -2075.25, 898.651, 64.132, 0, 0, 0, 0, 0, 234.22, 1063.89, 1084.21, 0, 6, 0, 0, 0, 'Large Condo In SF', 420000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1406, 4, -2084.75, 898.646, 64.132, 0, 0, 0, 0, 0, 234.22, 1063.89, 1084.21, 0, 6, 0, 0, 0, 'Large Condo In SF', 420000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1407, 4, -2099.46, 897.382, 76.708, 0, 0, 0, 0, 0, 2196.84, -1204.23, 1049.02, 0, 6, 0, 0, 0, '3 Story Condo In SF', 120000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1408, 4, -2018.29, 970.072, 45.444, 0, 0, 0, 0, 0, 226.3, 1114.37, 1080.99, 0, 5, 0, 0, 0, '5 Story Condo In SF', 500000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1409, 4, -2018.3, 982.705, 47.685, 0, 0, 0, 0, 0, 2196.84, -1204.23, 1049.02, 0, 6, 0, 0, 0, '3 Story Condo In SF', 120000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1410, 4, -2018.29, 1000.03, 50.778, 0, 0, 0, 0, 0, 2196.84, -1204.23, 1049.02, 0, 6, 0, 0, 0, '3 Story Condo In SF', 120000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1411, 4, -2018.3, 1016.93, 53.866, 0, 0, 0, 0, 0, 2196.84, -1204.23, 1049.02, 0, 6, 0, 0, 0, '3 Story Condo In SF', 120000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1412, 4, 984.466, 2343.69, 11.468, 0, 0, 0, 0, 0, 447, 1397.09, 1084.3, 0, 2, 0, 0, 0, 'Medium house at LV', 150000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1413, 4, 985.477, 2314.3, 11.46, 0, 0, 0, 0, 0, 447, 1397.09, 1084.3, 0, 2, 0, 0, 0, 'Medium house at LV', 150000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1414, 4, 986.487, 2271.25, 11.46, 0, 0, 0, 0, 0, 447, 1397.09, 1084.3, 0, 2, 0, 0, 0, 'Medium house at LV', 150000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1415, 4, 956.897, 2270.27, 11.468, 0, 0, 0, 0, 0, 447, 1397.09, 1084.3, 0, 2, 0, 0, 0, 'Medium house at LV', 150000, 1, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1416, 4, 1030.81, 2028.11, 11.468, 0, 0, 0, 0, 0, 447, 1397.09, 1084.3, 0, 2, 0, 0, 0, 'Medium house at LV', 150000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1417, 4, 1029.36, 2005.64, 11.46, 0, 0, 0, 0, 0, 447, 1397.09, 1084.3, 0, 2, 0, 0, 0, 'Medium house at LV', 150000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1418, 4, 985.411, 2000.59, 11.46, 0, 0, 0, 0, 0, 447, 1397.09, 1084.3, 0, 2, 0, 0, 0, 'Medium house at LV', 150000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1419, 4, 984.508, 2030.18, 11.468, 0, 0, 0, 0, 0, 447, 1397.09, 1084.3, 0, 2, 0, 0, 0, 'Medium house at LV', 150000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1420, 4, -2905.21, 1154.89, 13.663, 0, 0, 0, 0, 0, 261.058, 1284.29, 1080.25, 0, 4, 0, 0, 0, 'Small House In SF', 30000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1421, 4, -2905.16, 1165.04, 13.663, 0, 0, 0, 0, 0, 261.058, 1284.29, 1080.25, 0, 4, 0, 0, 0, 'Small House In SF', 30000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1422, 4, 1030.27, 1976.01, 11.468, 0, 0, 0, 0, 0, 447, 1397.09, 1084.3, 0, 2, 0, 0, 0, 'Medium house at LV', 150000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1423, 4, -2905.25, 1171.55, 13.663, 0, 0, 0, 0, 0, 261.058, 1284.29, 1080.25, 0, 4, 0, 0, 0, 'Small House In SF', 30000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1424, 4, -2905.09, 1178.76, 13.663, 0, 0, 0, 0, 0, 261.058, 1284.29, 1080.25, 0, 4, 0, 0, 0, 'Small House In SF', 30000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1425, 4, 983.971, 1978.2, 11.468, 0, 0, 0, 0, 0, 447, 1397.09, 1084.3, 0, 2, 0, 0, 0, 'Medium house at LV', 150000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1426, 4, 984.703, 1930.83, 11.468, 0, 0, 0, 0, 0, 447, 1397.09, 1084.3, 0, 2, 0, 0, 0, 'Medium house at LV', 150000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1427, 4, 1030.81, 1928.11, 11.468, 0, 0, 0, 0, 0, 447, 1397.09, 1084.3, 0, 2, 0, 0, 0, 'Medium house at LV', 150000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1428, 4, -2904.7, 1118.82, 27.07, 0, 0, 0, 0, 0, 22.93, 1403.32, 1084.43, 0, 5, 0, 0, 0, 'Small Nice House In SF', 60000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1429, 4, 1029.36, 1905.92, 11.46, 0, 0, 0, 0, 0, 447, 1397.09, 1084.3, 0, 2, 0, 0, 0, 'Medium house at LV', 150000, 500, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1430, 4, -2904.8, 1111.52, 27.069, 0, 0, 0, 0, 0, 261.058, 1284.29, 1080.25, 0, 4, 0, 0, 0, 'Small House In SF', 30000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1431, 4, 985.413, 1901.04, 11.46, 0, 0, 0, 0, 0, 447, 1397.09, 1084.3, 0, 2, 0, 0, 0, 'Medium house at LV', 150000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1432, 4, -2904.47, 1101.11, 27.069, 0, 0, 0, 0, 0, 261.058, 1284.29, 1080.25, 0, 4, 0, 0, 0, 'Small House In SF', 30000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1433, 4, 983.971, 1878.94, 11.468, 0, 0, 0, 0, 0, 447, 1397.09, 1084.3, 0, 2, 0, 0, 0, 'Medium house at LV', 150000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1434, 4, 1030.37, 1876.35, 11.468, 0, 0, 0, 0, 0, 447, 1397.09, 1084.3, 0, 2, 0, 0, 0, 'Medium house at LV', 150000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1435, 4, 1030.81, 1847.93, 11.468, 0, 0, 0, 0, 0, 447, 1397.09, 1084.3, 0, 2, 0, 0, 0, 'Medium house at LV', 150000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1436, 4, 2158.34, -1611.31, 14.35, 0, 0, 0, 0, 0, 244.41, 305.032, 999.148, 0, 1, 0, 0, 0, 'LS Project', 4000, 1500, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1437, 4, 2129.11, -1663.94, 15.085, 0, 0, 0, 0, 0, 244.41, 305.032, 999.148, 0, 1, 0, 0, 0, 'LS Project', 4000, 1000, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1438, 4, 2141.49, -1652.85, 15.085, 0, 0, 0, 0, 0, 244.41, 305.032, 999.148, 0, 1, 0, 0, 0, 'LS Project', 4000, 100, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1439, 4, 2172.59, -1615.28, 14.281, 0, 0, 0, 0, 0, 244.41, 305.032, 999.148, 0, 1, 0, 0, 0, '*LS Project', 4000, 95, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1440, 4, 2179.08, -1600.11, 14.345, 0, 0, 0, 0, 0, 244.41, 305.032, 999.148, 0, 1, 0, 0, 0, 'LS Project', 4000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1441, 4, 2165.56, -1590.49, 14.345, 0, 0, 0, 0, 0, 244.41, 305.032, 999.148, 0, 1, 0, 0, 0, 'LS Project', 4000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1442, 4, 2151.2, -1598.49, 14.345, 0, 0, 0, 0, 0, 244.41, 305.032, 999.148, 0, 1, 0, 0, 0, 'LS Project', 4000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1443, 4, 2150.4, -1583.96, 14.336, 0, 0, 0, 0, 0, 244.41, 305.032, 999.148, 0, 1, 0, 0, 0, 'LS Project', 4000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1444, 4, 2136, -1591.98, 14.35, 0, 0, 0, 0, 0, 244.41, 305.032, 999.148, 0, 1, 0, 0, 0, 'LS Project', 4000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1445, 4, 2143.29, -1571.2, 14.192, 0, 0, 0, 0, 0, 244.41, 305.032, 999.148, 0, 1, 0, 0, 0, 'LS Project', 4000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1446, 4, 2158.51, -1577.71, 14.281, 0, 0, 0, 0, 0, 244.41, 305.032, 999.148, 0, 1, 0, 0, 0, 'LS Project', 4000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1447, 4, 2191.91, -1592.97, 14.35, 0, 0, 0, 0, 0, 244.41, 305.032, 999.148, 0, 1, 0, 0, 0, 'LS Project', 4000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1448, 4, 2185.31, -1608.14, 14.359, 0, 0, 0, 0, 0, 244.41, 305.032, 999.148, 0, 1, 0, 0, 0, 'LS Project', 4000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1449, 4, 2143.12, -1604.72, 14.35, 0, 0, 0, 0, 0, 244.41, 305.032, 999.148, 0, 1, 0, 0, 0, 'LS Project', 4000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1450, 4, 2068.14, -1588.86, 13.489, 0, 0, 0, 0, 0, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, 0, 'Ghetto Home LS Small', 10000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1451, 4, 2073.36, -1583.05, 13.472, 0, 0, 0, 0, 0, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, 0, 'Ghetto Home LS Small', 10000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1452, 4, 2065.33, -1583.36, 13.479, 0, 0, 0, 0, 0, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, 0, 'Ghetto Home LS Small', 10000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1453, 4, 2076.11, -1588.67, 13.491, 0, 0, 0, 0, 0, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, 0, 'Ghetto Home LS Small', 10000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1454, 4, 2072.5, -1559.31, 13.409, 0, 0, 0, 0, 0, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, 0, 'Ghetto Home LS Small', 10000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1455, 4, 2066.81, -1554.09, 13.434, 0, 0, 0, 0, 0, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, 0, 'Ghetto Home LS Small', 10000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1456, 4, 2066.96, -1562.17, 13.428, 0, 0, 0, 0, 0, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, 0, 'Ghetto Home LS Small', 10000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1457, 4, 2072.27, -1551.3, 13.423, 0, 0, 0, 0, 0, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, 0, 'Ghetto Home LS Small', 10000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1458, 4, 1852.3, -2019.63, 13.545, 0, 0, 0, 0, 0, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, 0, 'Ghetto Home LS Small', 10000, 250, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1459, 4, 1852.33, -2021.36, 13.545, 0, 0, 0, 0, 0, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, 0, 'Ghetto Home LS Small', 10000, 2000, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1460, 4, 1857.1, -2035.08, 13.545, 0, 0, 0, 0, 0, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, 0, 'Ghetto Home LS Small', 10000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1461, 4, 1858.71, -2035.04, 13.545, 0, 0, 0, 0, 0, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, 0, 'Ghetto Home LS Small', 10000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1462, 4, 1867.87, -2028.42, 13.545, 0, 0, 0, 0, 0, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, 0, 'Ghetto Home LS Small', 10000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1463, 4, 1864.98, -2021.37, 13.545, 0, 0, 0, 0, 0, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, 0, 'Ghetto Home LS Small', 10000, 500, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1464, 4, 1864.95, -2019.64, 13.545, 0, 0, 0, 0, 0, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, 0, 'Ghetto Home LS Small', 10000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1465, 4, 1865.96, -2003.88, 13.545, 0, 0, 0, 0, 0, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, 0, 'Ghetto Home LS Small', 10000, 50, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1466, 4, 1867.77, -2003.87, 13.545, 0, 0, 0, 0, 0, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, 0, 'Ghetto Home LS Small', 10000, 500, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1467, 4, 1867.88, -2010.06, 13.545, 0, 0, 0, 0, 0, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, 0, 'Ghetto Home LS Small', 10000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1468, 4, 1888.93, -2000.94, 13.545, 0, 0, 0, 0, 0, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, 0, 'Ghetto Home LS Small', 10000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1469, 4, 1877.32, -2001.01, 13.545, 0, 0, 0, 0, 0, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, 0, 'Ghetto Home LS Small', 10000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1470, 4, 1867.75, -1998.07, 13.545, 0, 0, 0, 0, 0, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, 0, 'Ghetto Home LS Small', 10000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1471, 4, 1866.01, -1998.09, 13.545, 0, 0, 0, 0, 0, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, 0, 'Ghetto Home LS Small', 10000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1472, 4, 1867.79, -1985.4, 13.545, 0, 0, 0, 0, 0, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, 0, 'Ghetto Home LS Small', 10000, 200, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1473, 4, 1866, -1985.45, 13.545, 0, 0, 0, 0, 0, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, 0, 'Ghetto Home LS Small', 10000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1474, 4, 1852.28, -1990.19, 13.545, 0, 0, 0, 0, 0, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, 0, 'Ghetto Home LS Small', 10000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1475, 4, 1852.33, -1991.81, 13.545, 0, 0, 0, 0, 0, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, 0, 'Ghetto Home LS Small', 10000, 449, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1476, 4, 1858.96, -2001, 13.545, 0, 0, 0, 0, 0, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, 0, 'Ghetto Home LS Small', 10000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1477, 4, 1849.4, -2010.06, 13.545, 0, 0, 0, 0, 0, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, 0, 'Ghetto Home LS Small', 10000, 500, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1478, 4, 1895.53, -2019.67, 13.545, 0, 0, 0, 0, 0, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, 0, 'Ghetto Home LS Small', 10000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1479, 4, 1895.53, -2021.36, 13.545, 0, 0, 0, 0, 0, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, 0, 'Ghetto Home LS Small', 10000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1480, 4, 1898.99, -2037.96, 13.545, 0, 0, 0, 0, 0, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, 0, 'Ghetto Home LS Small', 10000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1481, 4, 1898.37, -2028.42, 13.545, 0, 0, 0, 0, 0, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, 0, 'Ghetto Home LS Small', 10000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1482, 4, 1905.98, -2035.08, 13.545, 0, 0, 0, 0, 0, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, 0, 'Ghetto Home LS Small', 10000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1483, 4, 1907.71, -2035.05, 13.545, 0, 0, 0, 0, 0, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, 0, 'Ghetto Home LS Small', 10000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1484, 4, 1913.96, -2021.43, 13.545, 0, 0, 0, 0, 0, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, 0, 'Ghetto Home LS Small', 10000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1485, 4, 1913.95, -2019.65, 13.545, 0, 0, 0, 0, 0, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, 0, 'Ghetto Home LS Small', 10000, 450, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1486, 4, 1901.33, -2019.64, 13.545, 0, 0, 0, 0, 0, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, 0, 'Ghetto Home LS Small', 10000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1487, 4, 1901.34, -2021.43, 13.545, 0, 0, 0, 0, 0, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, 0, 'Ghetto Home LS Small', 10000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1488, 4, 1916.9, -2028.42, 13.545, 0, 0, 0, 0, 0, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, 0, 'Ghetto Home LS Small', 10000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1489, 4, 1919.76, -2021.34, 13.545, 0, 0, 0, 0, 0, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, 0, 'Ghetto Home LS Small', 10000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1490, 4, 1919.76, -2019.62, 13.545, 0, 0, 0, 0, 0, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, 0, 'Ghetto Home LS Small', 10000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1491, 4, 1916.9, -2000.38, 13.545, 0, 0, 0, 0, 0, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, 0, 'Ghetto Home LS Small', 10000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1492, 4, 1916.89, -2010.06, 13.545, 0, 0, 0, 0, 0, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, 0, 'Ghetto Home LS Small', 10000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1493, 4, 1907.28, -2001.01, 13.545, 0, 0, 0, 0, 0, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, 0, 'Ghetto Home LS Small', 10000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1494, 4, 1913.95, -1993.45, 13.545, 0, 0, 0, 0, 0, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, 0, 'Ghetto Home LS Small', 10000, 730, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1495, 4, 1913.92, -1991.56, 13.545, 0, 0, 0, 0, 0, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, 0, 'Ghetto Home LS Small', 10000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1496, 4, 1907.29, -1982.51, 13.545, 0, 0, 0, 0, 0, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, 0, 'Ghetto Home LS Small', 10000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1497, 4, 1900.31, -1979.61, 13.545, 0, 0, 0, 0, 0, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, 0, 'Ghetto Home LS Small', 10000, 5000, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1498, 4, 1898.66, -1979.62, 13.545, 0, 0, 0, 0, 0, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, 0, 'Ghetto Home LS Small', 10000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1499, 4, 1916.76, -1982.03, 13.545, 0, 0, 0, 0, 0, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, 0, 'Ghetto Home LS Small', 10000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1500, 4, 1919.72, -1993.24, 13.545, 0, 0, 0, 0, 0, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, 0, 'Ghetto Home LS Small', 10000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1501, 4, 1919.72, -1991.62, 13.545, 0, 0, 0, 0, 0, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, 0, 'Ghetto Home LS Small', 10000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1502, 4, 1900.21, -1985.39, 13.545, 0, 0, 0, 0, 0, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, 0, 'Ghetto Home LS Small', 10000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1503, 4, 1898.54, -1985.42, 13.545, 0, 0, 0, 0, 0, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, 0, 'Ghetto Home LS Small', 10000, 145, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1504, 4, 1900.25, -1998.04, 13.545, 0, 0, 0, 0, 0, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, 0, 'Ghetto Home LS Small', 10000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1505, 4, 1898.49, -1998.06, 13.545, 0, 0, 0, 0, 0, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, 0, 'Ghetto Home LS Small', 10000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1506, 4, 1870.76, -2019.59, 13.545, 0, 0, 0, 0, 0, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, 0, 'Ghetto Home LS Small', 10000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1507, 4, 1870.76, -2021.39, 13.545, 0, 0, 0, 0, 0, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, 0, 'Ghetto Home LS Small', 10000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1508, 4, 1868.35, -2037.97, 13.545, 0, 0, 0, 0, 0, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, 0, 'Ghetto Home LS Small', 10000, 100, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1509, 4, 1858.79, -2040.85, 13.545, 0, 0, 0, 0, 0, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, 0, 'Ghetto Home LS Small', 10000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1510, 4, 1857.02, -2040.85, 13.545, 0, 0, 0, 0, 0, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, 0, 'Ghetto Home LS Small', 10000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1511, 4, 1906.17, -2040.85, 13.545, 0, 0, 0, 0, 0, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, 0, 'Ghetto Home LS Small', 10000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1512, 4, 1907.74, -2040.85, 13.545, 0, 0, 0, 0, 0, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, 0, 'Ghetto Home LS Small', 10000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1513, 4, 1849.99, -2037.92, 13.545, 0, 0, 0, 0, 0, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, 0, 'Ghetto Home LS Small', 10000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1514, 4, 1849.42, -2028.42, 13.545, 0, 0, 0, 0, 0, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, 0, 'Ghetto Home LS Small', 10000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1515, 4, 1846.53, -2021.35, 13.545, 0, 0, 0, 0, 0, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, 0, 'Ghetto Home LS Small', 10000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1516, 4, 1846.53, -2019.77, 13.545, 0, 0, 0, 0, 0, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, 0, 'Ghetto Home LS Small', 10000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1517, 4, 1849.45, -2001.46, 13.545, 0, 0, 0, 0, 0, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, 0, 'Ghetto Home LS Small', 10000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1518, 4, 1838.7, -1995.85, 13.545, 0, 0, 0, 0, 0, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, 0, 'Ghetto Home LS Small', 10000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1519, 4, 1838.7, -1994.18, 13.545, 0, 0, 0, 0, 0, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, 0, 'Ghetto Home LS Small', 10000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1520, 4, 1846.53, -1991.87, 13.545, 0, 0, 0, 0, 0, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, 0, 'Ghetto Home LS Small', 10000, 500, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1521, 4, 1846.53, -1990.15, 13.545, 0, 0, 0, 0, 0, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, 0, 'Ghetto Home LS Small', 10000, 500, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1522, 4, 1849.35, -1983.11, 13.545, 0, 0, 0, 0, 0, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, 0, 'Ghetto Home LS Small', 10000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1523, 4, 1858.96, -1982.62, 13.545, 0, 0, 0, 0, 0, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, 0, 'Ghetto Home LS Small', 10000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1524, 4, 1888.93, -1982.5, 13.545, 0, 0, 0, 0, 0, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, 0, 'Ghetto Home LS Small', 10000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1525, 4, 1917.35, -2037.98, 13.545, 0, 0, 0, 0, 0, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, 0, 'Ghetto Home LS Small', 10000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1526, 4, 1835.86, -2005.48, 13.545, 0, 0, 0, 0, 0, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, 0, 'Ghetto Home LS Small', 10000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1527, 4, 1835.93, -1987.13, 13.545, 0, 0, 0, 0, 0, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, 0, 'Ghetto Home LS Small', 10000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1528, 4, 1835.24, -1977.53, 13.545, 0, 0, 0, 0, 0, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, 0, 'Ghetto Home LS Small', 10000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1529, 4, 1828.37, -1980.44, 13.545, 0, 0, 0, 0, 0, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, 0, 'Ghetto Home LS Small', 10000, 1000, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1530, 4, 1826.53, -1980.51, 13.545, 0, 0, 0, 0, 0, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, 0, 'Ghetto Home LS Small', 10000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1531, 4, 1817.51, -1987.13, 13.553, 0, 0, 0, 0, 0, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, 0, 'Ghetto Home LS Small', 10000, 1, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1532, 4, 1816.89, -1977.5, 13.545, 0, 0, 0, 0, 0, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, 0, 'Ghetto Home LS Small', 10000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1533, 4, 1826.53, -1974.69, 13.545, 0, 0, 0, 0, 0, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, 0, 'Ghetto Home LS Small', 10000, 1, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1534, 4, 1828.07, -1974.69, 13.545, 0, 0, 0, 0, 0, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, 0, 'Ghetto Home LS Small', 10000, 1, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1535, 4, 1832.9, -1994.11, 13.545, 0, 0, 0, 0, 0, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, 0, 'Ghetto Home LS Small', 10000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1536, 4, 1820.28, -1995.94, 13.553, 0, 0, 0, 0, 0, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, 0, 'Ghetto Home LS Small', 10000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1537, 4, 1820.24, -1994.23, 13.553, 0, 0, 0, 0, 0, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, 0, 'Ghetto Home LS Small', 10000, 200, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1538, 4, 1817.43, -2005.49, 13.553, 0, 0, 0, 0, 0, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, 0, 'Ghetto Home LS Small', 10000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1539, 4, 1814.47, -1995.92, 13.553, 0, 0, 0, 0, 0, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, 0, 'Ghetto Home LS Small', 10000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1540, 4, 1814.48, -1994.15, 13.553, 0, 0, 0, 0, 0, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, 0, 'Ghetto Home LS Small', 10000, 100, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1541, 4, 1867.74, -1979.65, 13.545, 0, 0, 0, 0, 0, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, 0, 'Ghetto Home LS Small', 10000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1542, 4, 1865.92, -1979.65, 13.545, 0, 0, 0, 0, 0, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, 0, 'Ghetto Home LS Small', 10000, 1000, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1543, 4, 1877.32, -1982.49, 13.545, 0, 0, 0, 0, 0, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, 0, 'Ghetto Home LS Small', 10000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1544, 4, 1801.99, -2098.94, 14.02, 0, 0, 0, 0, 0, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, 0, 'Ghetto Home LS Small', 10000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1545, 4, 1804.19, -2124.9, 13.942, 0, 0, 0, 0, 0, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, 0, 'Ghetto Home LS Small', 10000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1546, 4, 1781.45, -2101.27, 14.055, 0, 0, 0, 0, 0, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, 0, 'Ghetto Home LS Small', 10000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1547, 4, 1782.09, -2126.37, 14.067, 0, 0, 0, 0, 0, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, 0, 'Ghetto Home LS Small', 10000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1548, 4, 1761.17, -2125.45, 14.055, 0, 0, 0, 0, 0, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, 0, 'Ghetto Home LS Small', 10000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1549, 4, 1762.39, -2101.98, 13.854, 0, 0, 0, 0, 0, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, 0, 'Ghetto Home LS Small', 10000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1550, 4, 1734.15, -2097.98, 14.036, 0, 0, 0, 0, 0, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, 0, 'Ghetto Home LS Small', 10000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1551, 4, 1734.62, -2130.35, 14.02, 0, 0, 0, 0, 0, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, 0, 'Ghetto Home LS Small', 10000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1552, 4, 1715.06, -2125.45, 14.055, 0, 0, 0, 0, 0, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, 0, 'Ghetto Home LS Small', 10000, 1000, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1553, 4, 1711.67, -2101.24, 14.02, 0, 0, 0, 0, 0, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, 0, 'Ghetto Home LS Small', 10000, 1000, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1554, 4, 1695.52, -2125.83, 13.81, 0, 0, 0, 0, 0, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, 0, 'Ghetto Home LS Small', 10000, 250, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1555, 4, 1684.72, -2098.16, 13.833, 0, 0, 0, 0, 0, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, 0, 'Ghetto Home LS Small', 10000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1556, 4, 1673.68, -2122.46, 14.145, 0, 0, 0, 0, 0, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, 0, 'Ghetto Home LS Small', 10000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1557, 4, 1616.15, -1897.58, 13.548, 0, 0, 0, 0, 0, 447, 1397.09, 1084.3, 0, 2, 0, 0, 0, 'normal house at ls', 150000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1558, 4, 1610.88, -1893.88, 13.545, 0, 0, 0, 0, 0, 447, 1397.09, 1084.3, 0, 2, 0, 0, 0, 'normal house at ls', 150000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1559, 4, 1628.69, -1903.36, 13.553, 0, 0, 0, 0, 0, 447, 1397.09, 1084.3, 0, 2, 0, 0, 0, 'normal house at ls', 150000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1560, 4, 1325.95, -1067.65, 31.554, 0, 0, 0, 0, 0, 447, 1397.09, 1084.3, 0, 2, 0, 0, 0, 'House Near Vinewood', 150000, 100, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1561, 4, 1326.26, -1090.61, 27.975, 0, 0, 0, 0, 0, 447, 1397.09, 1084.3, 0, 2, 0, 0, 0, 'House Near Vinewood', 150000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1562, 4, 1285.27, -1090.28, 28.256, 0, 0, 0, 0, 0, 447, 1397.09, 1084.3, 0, 2, 0, 0, 0, 'House Near Vinewood', 150000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1563, 4, 1242.26, -1099.51, 27.975, 0, 0, 0, 0, 0, 447, 1397.09, 1084.3, 0, 2, 0, 0, 0, 'House Near Vinewood', 150000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1564, 4, 1241.94, -1076.43, 31.554, 0, 0, 0, 0, 0, 447, 1397.09, 1084.3, 0, 2, 0, 0, 0, 'House Near Vinewood', 150000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1565, 4, 1285.26, -1067.31, 31.677, 0, 0, 0, 0, 0, 447, 1397.09, 1084.3, 0, 2, 0, 0, 0, 'House Near Vinewood', 150000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1566, 4, 1189.01, -1018.12, 36.234, 0, 0, 0, 0, 0, 447, 1397.09, 1084.3, 0, 2, 0, 0, 0, 'House near vinewood small LS', 100000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1567, 4, 1196.48, -1016.99, 36.234, 0, 0, 0, 0, 0, 447, 1397.09, 1084.3, 0, 2, 0, 0, 0, 'House near vinewood small LS', 100000, 5000, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1568, 4, 1188.19, -1011.88, 36.226, 0, 0, 0, 0, 0, 447, 1397.09, 1084.3, 0, 2, 0, 0, 0, 'House near vinewood small LS', 100000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1569, 4, 1195.68, -1010.91, 36.226, 0, 0, 0, 0, 0, 447, 1397.09, 1084.3, 0, 2, 0, 0, 0, 'House near vinewood small LS', 100000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1570, 4, 1188.19, -1011.89, 32.546, 0, 0, 0, 0, 0, 447, 1397.09, 1084.3, 0, 2, 0, 0, 0, 'House near vinewood small LS', 100000, 100, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1571, 4, 1195.69, -1010.93, 32.553, 0, 0, 0, 0, 0, 447, 1397.09, 1084.3, 0, 2, 0, 0, 0, 'House near vinewood small LS', 100000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1572, 4, 1189.01, -1018.09, 32.546, 0, 0, 0, 0, 0, 447, 1397.09, 1084.3, 0, 2, 0, 0, 0, 'House near vinewood small LS', 100000, 100, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1573, 4, 1196.5, -1017.15, 32.546, 0, 0, 0, 0, 0, 447, 1397.09, 1084.3, 0, 2, 0, 0, 0, 'House near vinewood small LS', 100000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1574, 4, 1234.73, -1016.13, 32.604, 0, 0, 0, 0, 0, 447, 1397.09, 1084.3, 0, 2, 0, 0, 0, 'House near vinewood small LS', 100000, 500, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1575, 4, 1227.25, -1017.18, 32.601, 0, 0, 0, 0, 0, 447, 1397.09, 1084.3, 0, 2, 0, 0, 0, 'House near vinewood small LS', 100000, 50, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1576, 4, 1233.93, -1010.05, 32.601, 0, 0, 0, 0, 0, 447, 1397.09, 1084.3, 0, 2, 0, 0, 0, 'House near vinewood small LS', 100000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1577, 4, 1226.44, -1011.03, 32.601, 0, 0, 0, 0, 0, 447, 1397.09, 1084.3, 0, 2, 0, 0, 0, 'House near vinewood small LS', 100000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1578, 4, 1234.73, -1016.15, 36.335, 0, 0, 0, 0, 0, 447, 1397.09, 1084.3, 0, 2, 0, 0, 0, 'House near vinewood small LS', 100000, 1500, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1579, 4, 1227.25, -1017.18, 36.333, 0, 0, 0, 0, 0, 447, 1397.09, 1084.3, 0, 2, 0, 0, 0, 'House near vinewood small LS', 100000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1580, 4, 1233.92, -1009.97, 36.328, 0, 0, 0, 0, 0, 447, 1397.09, 1084.3, 0, 2, 0, 0, 0, 'House near vinewood small LS', 100000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1581, 4, 1226.44, -1011.01, 36.327, 0, 0, 0, 0, 0, 447, 1397.09, 1084.3, 0, 2, 0, 0, 0, 'House near vinewood small LS', 100000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1582, 4, 1127.97, -1021.17, 34.992, 0, 0, 0, 0, 0, 447, 1397.09, 1084.3, 0, 2, 0, 0, 0, 'House Near Vinewood', 150000, 1, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1583, 4, 1118.05, -1021.17, 34.992, 0, 0, 0, 0, 0, 447, 1397.09, 1084.3, 0, 2, 0, 0, 0, 'House Near Vinewood', 150000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1584, 4, 1051.03, -1059.3, 34.796, 0, 0, 0, 0, 0, 447, 1397.09, 1084.3, 0, 2, 0, 0, 0, 'House Near Vinewood', 150000, 500, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1585, 4, 993.757, -1059.03, 33.699, 0, 0, 0, 0, 0, 447, 1397.09, 1084.3, 0, 2, 0, 0, 0, 'House Near Vinewood', 150000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1586, 4, 952.609, -909.104, 45.763, 0, 0, 0, 0, 0, 1298.81, -796.658, 1084.01, 0, 5, 0, 0, 0, 'Mayor\'s Mansion', 5250000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1587, 4, 1411.1, -920.861, 38.421, 0, 0, 0, 0, 0, 447, 1397.09, 1084.3, 0, 2, 0, 0, 0, 'House Near Vinewood', 150000, 100, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1588, 4, 1440.67, -926.135, 39.645, 0, 0, 0, 0, 0, 447, 1397.09, 1084.3, 0, 2, 0, 0, 0, 'House Near Vinewood', 150000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1589, 4, 1421.78, -886.229, 50.686, 0, 0, 0, 0, 0, 295.209, 1472.26, 1080.25, 0, 15, 0, 0, 0, 'small house at vinewood', 150000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1590, 4, 1468.54, -906.181, 54.833, 0, 0, 0, 0, 0, 295.209, 1472.26, 1080.25, 0, 15, 0, 0, 0, 'small house at vinewood', 150000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1591, 4, 1535.72, -885.249, 57.657, 0, 0, 0, 0, 0, 2196.84, -1204.23, 1049.02, 0, 6, 0, 0, 0, 'house at vinewood', 250000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1592, 4, 1540.47, -851.437, 64.333, 0, 0, 0, 0, 0, 234.22, 1063.89, 1084.21, 0, 6, 0, 0, 0, 'Small House at Vinewood', 400000, 100, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1593, 4, 1535.03, -800.169, 72.847, 0, 0, 0, 0, 0, 295.209, 1472.26, 1080.25, 0, 15, 0, 0, 0, 'small house at vinewood', 150000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1594, 4, 1527.88, -772.64, 80.578, 0, 0, 0, 0, 0, 295.209, 1472.26, 1080.25, 0, 15, 0, 0, 0, 'Amri Residence', 150000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1595, 4, 1442.68, -628.83, 95.718, 0, 0, 0, 0, 0, 226.3, 1114.37, 1080.99, 0, 5, 0, 0, 0, 'House At Vinewood With Swimming Pool', 550000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1596, 4, 1331.99, -633.546, 109.134, 0, 0, 0, 0, 0, 226.3, 1114.37, 1080.99, 0, 5, 0, 0, 0, 'Fancy Mansion with swimming pool', 550000, 1500, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1597, 4, 1094.99, -647.906, 113.648, 0, 0, 0, 0, 0, 234.22, 1063.89, 1084.21, 0, 6, 0, 0, 0, 'House at Vinewood', 400000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1598, 4, 1045.16, -642.94, 120.111, 0, 0, 0, 0, 0, 234.22, 1063.89, 1084.21, 0, 6, 0, 0, 0, 'House At Vinewood without swimming pool', 400000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1599, 4, 897.927, -677.106, 116.888, 0, 0, 0, 0, 0, 226.3, 1114.37, 1080.99, 0, 5, 0, 0, 0, 'House At Vinewood With Swimming Pool', 550000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1600, 4, 946.304, -710.692, 122.619, 0, 0, 0, 0, 0, 295.209, 1472.26, 1080.25, 0, 15, 0, 0, 0, 'small house at vinewood', 150000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1601, 4, 867.491, -717.575, 105.679, 0, 0, 0, 0, 0, 2196.84, -1204.23, 1049.02, 0, 6, 0, 0, 0, 'house at vinewood', 250000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1602, 4, 847.994, -745.513, 94.969, 0, 0, 0, 0, 0, 2196.84, -1204.23, 1049.02, 0, 6, 0, 0, 0, 'house at vinewood', 250000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1603, 4, 891.145, -783.174, 101.313, 0, 0, 0, 0, 0, 234.22, 1063.89, 1084.21, 0, 6, 0, 0, 0, 'House At Vinewood without swimming pool', 400000, 500, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1604, 4, 808.26, -759.379, 76.527, 0, 0, 0, 0, 0, 234.22, 1063.89, 1084.21, 0, 6, 0, 0, 0, 'House At Vinewood without swimming pool', 400000, 1, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1605, 4, 785.955, -828.577, 70.289, 0, 0, 0, 0, 0, 2196.84, -1204.23, 1049.02, 0, 6, 0, 0, 0, 'house at vinewood', 250000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1606, 4, 497.367, -1095.07, 82.359, 0, 0, 0, 0, 0, 226.3, 1114.37, 1080.99, 0, 5, 0, 0, 0, 'House At Vinewood With Swimming Pool', 550000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1607, 4, 416.769, -1154.12, 76.68, 0, 0, 0, 0, 0, 226.3, 1114.37, 1080.99, 0, 5, 0, 0, 0, 'House at Vinewood', 550000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1608, 4, 352.325, -1198, 76.513, 0, 0, 0, 0, 0, 234.22, 1063.89, 1084.21, 0, 6, 0, 0, 0, 'House At Vinewood without swimming pool', 400000, 1000, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1609, 4, 355.071, -1281.19, 53.701, 0, 0, 0, 0, 0, 2196.84, -1204.23, 1049.02, 0, 6, 0, 0, 0, 'house at vinewood', 250000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1610, 4, 228.05, -1405.49, 51.609, 0, 0, 0, 0, 0, 295.209, 1472.26, 1080.25, 0, 15, 0, 0, 0, 'small house at vinewood', 150000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1611, 4, 470.756, -1163.56, 67.217, 0, 0, 0, 0, 0, 234.22, 1063.89, 1084.21, 0, 6, 0, 0, 0, 'House At Vinewood without swimming pool', 400000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1612, 4, 558.763, -1161.09, 54.429, 0, 0, 0, 0, 0, 295.209, 1472.26, 1080.25, 0, 15, 0, 0, 0, 'small house at vinewood', 150000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1613, 4, 552.94, -1200.28, 44.831, 0, 0, 0, 0, 0, 2196.84, -1204.23, 1049.02, 0, 6, 0, 0, 0, 'house at vinewood', 250000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1614, 4, 432.028, -1253.96, 51.58, 0, 0, 0, 0, 0, 295.209, 1472.26, 1080.25, 0, 15, 0, 0, 0, 'small house at vinewood', 150000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1615, 4, 612.169, -1085.92, 58.826, 0, 0, 0, 0, 0, 226.3, 1114.37, 1080.99, 0, 5, 0, 0, 0, 'House At Vinewood With Swimming Pool', 550000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1616, 4, 559.125, -1076.41, 72.916, 0, 0, 0, 0, 0, 234.22, 1063.89, 1084.21, 0, 6, 0, 0, 0, 'House At Vinewood without swimming pool', 400000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1617, 4, 648.309, -1058.72, 52.576, 0, 0, 0, 0, 0, 295.209, 1472.26, 1080.25, 0, 15, 0, 0, 0, 'small house at vinewood', 150000, 5000, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1618, 4, 673.114, -1020.17, 55.756, 0, 0, 0, 0, 0, 295.209, 1472.26, 1080.25, 0, 15, 0, 0, 0, 'small house at vinewood', 150000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1619, 4, 700.257, -1060.32, 49.421, 0, 0, 0, 0, 0, 226.3, 1114.37, 1080.99, 0, 5, 0, 0, 0, 'House At Vinewood With Swimming Pool', 550000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1620, 4, 724.663, -999.356, 52.734, 0, 0, 0, 0, 0, 234.22, 1063.89, 1084.21, 0, 6, 0, 0, 0, 'House At Vinewood without swimming pool', 400000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1621, 4, 923.903, -853.408, 93.456, 0, 0, 0, 0, 0, 295.209, 1472.26, 1080.25, 0, 15, 0, 0, 0, 'small house at vinewood', 150000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1622, 4, 937.804, -848.742, 93.577, 0, 0, 0, 0, 0, 295.209, 1472.26, 1080.25, 0, 15, 0, 0, 0, 'small house at vinewood', 150000, 100, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1623, 4, 910.388, -817.546, 103.125, 0, 0, 0, 0, 0, 234.22, 1063.89, 1084.21, 0, 6, 0, 0, 0, 'House At Vinewood without swimming pool', 400000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1624, 4, 977.379, -771.708, 112.202, 0, 0, 0, 0, 0, 234.22, 1063.89, 1084.21, 0, 6, 0, 0, 0, 'House At Vinewood without swimming pool', 400000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1625, 4, 1017.02, -763.361, 112.563, 0, 0, 0, 0, 0, 295.209, 1472.26, 1080.25, 0, 15, 0, 0, 0, 'small house at vinewood', 150000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1626, 4, 1034.81, -813.184, 101.847, 0, 0, 0, 0, 0, 295.209, 1472.26, 1080.25, 0, 15, 0, 0, 0, 'small house at vinewood', 150000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1627, 4, 989.736, -828.69, 95.468, 0, 0, 0, 0, 0, 234.22, 1063.89, 1084.21, 0, 6, 0, 0, 0, 'House At Vinewood without swimming Pool', 400000, 1500, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1628, 4, 1093.97, -807.13, 107.416, 0, 0, 0, 0, 0, 2196.84, -1204.23, 1049.02, 0, 6, 0, 0, 0, 'UFO House at vinewood', 1000000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1629, 4, 835.968, -894.861, 68.763, 0, 0, 0, 0, 0, 234.22, 1063.89, 1084.21, 0, 6, 0, 0, 0, 'House At Vinewood without swimming pool', 400000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1630, 4, 827.822, -857.979, 70.33, 0, 0, 0, 0, 0, 295.209, 1472.26, 1080.25, 0, 15, 0, 0, 0, 'small house at vinewood', 150000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1631, 4, 1112.64, -742.109, 100.132, 0, 0, 0, 0, 0, 234.22, 1063.89, 1084.21, 0, 6, 0, 0, 0, 'House At Vinewood without swimming Pool', 400000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1632, 4, 168.136, -1768.4, 4.486, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0, 'apartment at the beach ls', 100000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1633, 4, 192.811, -1769.39, 4.328, 0, 0, 0, 0, 0, 261.058, 1284.29, 1080.25, 0, 4, 0, 0, 0, 'The OG Beach House', 100000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1634, 4, 206.884, -1768.88, 4.368, 0, 0, 0, 0, 0, 261.058, 1284.29, 1080.25, 0, 4, 0, 0, 0, 'house at the beach', 100000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1635, 4, 280.894, -1767.07, 4.546, 0, 0, 0, 0, 0, 261.058, 1284.29, 1080.25, 0, 4, 0, 0, 0, 'house at the beach', 100000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1636, 4, 295.239, -1764.12, 4.868, 0, 0, 0, 0, 0, 261.058, 1284.29, 1080.25, 0, 4, 0, 0, 0, 'house at the beach', 100000, 500, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1637, 4, 305.371, -1770.22, 4.538, 0, 0, 0, 0, 0, 261.058, 1284.29, 1080.25, 0, 4, 0, 0, 0, 'house at the beach', 100000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1638, 4, 315.877, -1769.43, 4.622, 0, 0, 0, 0, 0, 226.3, 1114.37, 1080.99, 0, 5, 0, 0, 0, 'Beach House with Garage', 400000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1639, 4, 902.924, -1815.45, 13.302, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0, 'apartment at the beach ls', 100000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1640, 4, 905.044, -1815.69, 13.3, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0, 'apartment at the beach ls', 100000, 1, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1641, 4, 908.585, -1816.07, 13.301, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0, 'apartment at the beach ls', 100000, 500, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1642, 4, 910.78, -1816.31, 13.301, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0, 'apartment at the beach ls', 100000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1643, 4, 914.559, -1816.73, 13.307, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0, 'apartment at the beach ls', 100000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1644, 4, 916.719, -1816.97, 13.307, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0, 'apartment at the beach ls', 100000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1645, 4, 920.341, -1817.37, 13.306, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0, 'apartment at the beach ls', 100000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1646, 4, 922.531, -1817.62, 13.306, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0, 'apartment at the beach ls', 100000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1647, 4, 926.278, -1818.04, 13.324, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0, 'apartment at the beach ls', 100000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1648, 4, 928.375, -1818.28, 13.321, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0, 'apartment at the beach ls', 100000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1649, 4, 931.923, -1818.69, 13.321, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0, 'apartment at the beach ls', 100000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1650, 4, 934.049, -1818.93, 13.319, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0, 'apartment at the beach ls', 100000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1651, 4, 961.132, -1823.96, 13.326, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0, 'apartment at the beach ls', 100000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1652, 4, 963.249, -1824.51, 13.325, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0, 'apartment at the beach ls', 100000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1653, 4, 966.735, -1825.36, 13.322, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0, 'apartment at the beach ls', 100000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1654, 4, 968.934, -1825.9, 13.323, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0, 'apartment at the beach ls', 100000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1655, 4, 972.501, -1826.77, 13.333, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0, 'apartment at the beach ls', 100000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1656, 4, 974.557, -1827.28, 13.332, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0, 'apartment at the beach ls', 100000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1657, 4, 978.143, -1828.16, 13.329, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0, 'apartment at the beach ls', 100000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1658, 4, 980.192, -1828.67, 13.328, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0, 'apartment at the beach ls', 100000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1659, 4, 983.918, -1829.58, 13.329, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0, 'apartment at the beach ls', 100000, 20, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1660, 4, 985.973, -1830.08, 13.331, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0, 'apartment at the beach ls', 100000, 1000, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1661, 4, 989.481, -1830.95, 13.336, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0, 'apartment at the beach ls', 100000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1662, 4, 991.721, -1831.49, 13.34, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0, 'apartment at the beach ls', 100000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1663, 4, 2581.51, -969.296, 81.361, 0, 0, 0, 0, 0, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, 0, 'Ghetto Home LS Small', 10000, 1, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1664, 4, 655.947, -1635.87, 15.861, 0, 0, 0, 0, 0, 261.058, 1284.29, 1080.25, 0, 4, 0, 0, 0, 'house near the beach', 55000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1665, 4, 660.406, -1599.85, 15, 0, 0, 0, 0, 0, 261.058, 1284.29, 1080.25, 0, 4, 0, 0, 0, 'house near the beach', 55000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1666, 4, 2388.42, -1279.65, 25.128, 0, 0, 0, 0, 0, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, 0, 'Ghetto Home LS Small', 10000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1667, 4, 2387.85, -1328.54, 25.124, 0, 0, 0, 0, 0, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, 0, 'Ghetto Home LS Small', 10000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1668, 4, 2389.73, -1346.29, 25.076, 0, 0, 0, 0, 0, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, 0, 'Ghetto Home LS Small', 10000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1669, 4, 2383.53, -1366.2, 24.489, 0, 0, 0, 0, 0, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, 0, 'Ghetto Home LS Small', 10000, 1, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1670, 4, 2288.22, -1104.66, 38.594, 0, 0, 0, 0, 0, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, 0, 'Ghetto Home LS Small', 10000, 5000, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1671, 4, 2249.32, -1060.31, 55.965, 0, 0, 0, 0, 0, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, 0, 'Ghetto Home LS Small', 10000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1672, 4, 2259.52, -1019, 59.297, 0, 0, 0, 0, 0, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, 0, 'Ghetto Home LS Small', 10000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1673, 4, 2218.78, -1031.73, 60.263, 0, 0, 0, 0, 0, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, 0, 'Ghetto Home LS Small', 10000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1674, 4, 2208.02, -1026.56, 61.347, 0, 0, 0, 0, 0, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, 0, 'Ghetto Home LS Small', 10000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1675, 4, 2154.11, -979.905, 63.291, 0, 0, 0, 0, 0, 244.41, 305.032, 999.148, 0, 1, 0, 0, 0, 'trailer LS', 2000, 200, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1676, 4, 2142.69, -978.153, 61.379, 0, 0, 0, 0, 0, 244.41, 305.032, 999.148, 0, 1, 0, 0, 0, 'trailer LS', 2000, 100, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1677, 4, 2139.79, -1008.43, 61.986, 0, 0, 0, 0, 0, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, 0, 'Ghetto Home LS Small', 10000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1678, 4, 2108.87, -1000.77, 60.506, 0, 0, 0, 0, 0, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, 0, 'Ghetto Home LS Small', 10000, 1000, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1679, 4, 2089.52, -996.244, 53.062, 0, 0, 0, 0, 0, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, 0, 'Ghetto Home LS Small', 10000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1680, 4, 2073.48, -965.177, 49.388, 0, 0, 0, 0, 0, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, 0, 'Ghetto Home LS Small', 10000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1681, 4, 2045.18, -965.918, 44.555, 0, 0, 0, 0, 0, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, 0, 'Ghetto Home LS Small', 10000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1682, 4, 2049.21, -987.278, 44.979, 0, 0, 0, 0, 0, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, 0, 'Ghetto Home LS Small', 10000, 800, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1683, 4, 2044.66, -991.32, 43.234, 0, 0, 0, 0, 0, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, 0, 'Ghetto Home LS Small', 10000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1684, 4, 2015.59, -977.559, 36.951, 0, 0, 0, 0, 0, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, 0, 'Ghetto Home LS Small', 10000, 1, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1685, 4, 2007.36, -984.58, 34.458, 0, 0, 0, 0, 0, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, 0, 'Ghetto Home LS Small', 10000, 100, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1686, 4, 2000.2, -991.651, 32.131, 0, 0, 0, 0, 0, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, 0, 'Ghetto Home LS Small', 10000, 150, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1687, 4, 2131.94, -974.005, 59.784, 0, 0, 0, 0, 0, 244.41, 305.032, 999.148, 0, 1, 0, 0, 0, 'trailer LS', 2000, 200, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1688, 4, 2122.04, -970.335, 58.207, 0, 0, 0, 0, 0, 244.41, 305.032, 999.148, 0, 1, 0, 0, 0, 'trailer LS', 2000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1689, 4, 2051.26, -954.762, 48.033, 0, 0, 0, 0, 0, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, 0, 'Ghetto Home LS Small', 10000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1690, 4, 2278.66, -1077.38, 48.24, 0, 0, 0, 0, 0, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, 0, 'Ghetto Home LS Small', 10000, 1, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1691, 4, 2355.77, -1058.81, 54.076, 0, 0, 0, 0, 0, 244.41, 305.032, 999.148, 0, 1, 0, 0, 0, 'trailer LS', 2000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1692, 4, 2348.01, -1047.59, 53.847, 0, 0, 0, 0, 0, 244.41, 305.032, 999.148, 0, 1, 0, 0, 0, 'trailer LS', 2000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1693, 4, 2350.99, -1039.79, 54.333, 0, 0, 0, 0, 0, 244.41, 305.032, 999.148, 0, 1, 0, 0, 0, 'trailer LS', 2000, 100, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1694, 4, 2355.53, -1038.58, 54.333, 0, 0, 0, 0, 0, 244.41, 305.032, 999.148, 0, 1, 0, 0, 0, 'trailer LS', 2000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1695, 4, 2370.25, -1034.55, 54.409, 0, 0, 0, 0, 0, 244.41, 305.032, 999.148, 0, 1, 0, 0, 0, 'trailer LS', 2000, 250, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1696, 4, 2362.67, -1046.43, 54.27, 0, 0, 0, 0, 0, 244.41, 305.032, 999.148, 0, 1, 0, 0, 0, 'trailer LS', 2000, 5000, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1697, 4, 2335.19, -1046.01, 52.548, 0, 0, 0, 0, 0, 244.41, 305.032, 999.148, 0, 1, 0, 0, 0, 'trailer LS', 2000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1698, 4, 2325.48, -1060.97, 52.465, 0, 0, 0, 0, 0, 244.41, 305.032, 999.148, 0, 1, 0, 0, 0, 'trailer LS', 2000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1699, 4, 2330.22, -1060.9, 52.465, 0, 0, 0, 0, 0, 244.41, 305.032, 999.148, 0, 1, 0, 0, 0, 'trailer LS', 2000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1700, 4, 2297.73, -1053.08, 49.93, 0, 0, 0, 0, 0, 244.41, 305.032, 999.148, 0, 1, 0, 0, 0, 'trailer LS', 2000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1701, 4, 2284.19, -1046.09, 49.887, 0, 0, 0, 0, 0, 244.41, 305.032, 999.148, 0, 1, 0, 0, 0, 'trailer LS', 2000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1702, 4, 2319.77, -1053.31, 52.458, 0, 0, 0, 0, 0, 244.41, 305.032, 999.148, 0, 1, 0, 0, 0, 'trailer LS', 2000, 15, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1703, 4, 2462.41, -1011.12, 60.111, 0, 0, 0, 0, 0, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, 0, 'Ghetto Home LS Small', 10000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1704, 4, 2457.77, -1054.54, 59.958, 0, 0, 0, 0, 0, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, 0, 'Ghetto Home LS Small', 10000, 350, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1705, 4, 2491.37, -1012.27, 65.398, 0, 0, 0, 0, 0, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, 0, 'Ghetto Home LS Small', 10000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1706, 4, 2479.67, -1064.01, 66.998, 0, 0, 0, 0, 0, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, 0, 'Ghetto Home LS Small', 10000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1707, 4, 2512.8, -1027.16, 70.083, 0, 0, 0, 0, 0, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, 0, 'Ghetto Home LS Small', 10000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1708, 4, 2526.09, -1060.67, 69.97, 0, 0, 0, 0, 0, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, 0, 'Ghetto Home LS Small', 10000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1709, 4, 2534.48, -1063.48, 69.565, 0, 0, 0, 0, 0, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, 0, 'Ghetto Home LS Small', 10000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1710, 4, 2526.9, -1033.52, 69.579, 0, 0, 0, 0, 0, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, 0, 'Ghetto Home LS Small', 10000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1711, 4, 2470.59, -1105.32, 44.486, 0, 0, 0, 0, 0, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, 0, 'Ghetto Home LS Small', 10000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1712, 4, 2457.08, -1102.5, 43.867, 0, 0, 0, 0, 0, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, 0, 'Ghetto Home LS Small', 10000, 1000, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1713, 4, 2438.62, -1105.78, 43.081, 0, 0, 0, 0, 0, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, 0, 'Ghetto Home LS Small', 10000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1714, 4, 2407.91, -1106.97, 40.291, 0, 0, 0, 0, 0, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, 0, 'Ghetto Home LS Small', 10000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1715, 4, 2751.49, -1962.88, 13.545, 0, 0, 0, 0, 0, 244.41, 305.032, 999.148, 0, 1, 0, 0, 0, 'LS Project', 4000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1716, 4, 2787.07, -1952.57, 13.545, 0, 0, 0, 0, 0, 244.41, 305.032, 999.148, 0, 1, 0, 0, 0, 'LS Project', 4000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1717, 4, 2751.5, -1936.56, 13.538, 0, 0, 0, 0, 0, 244.41, 305.032, 999.148, 0, 1, 0, 0, 0, 'LS Project', 4000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1718, 4, 2787.07, -1926.17, 13.545, 0, 0, 0, 0, 0, 244.41, 305.032, 999.148, 0, 1, 0, 0, 0, 'LS Project', 4000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1719, 4, 2736.65, -1926.18, 13.545, 0, 0, 0, 0, 0, 244.41, 305.032, 999.148, 0, 1, 0, 0, 0, 'LS Project', 4000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1720, 4, 2736.65, -1952.58, 13.545, 0, 0, 0, 0, 0, 244.41, 305.032, 999.148, 0, 1, 0, 0, 0, 'LS Project', 4000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1721, 4, 2801.92, -1936.32, 13.545, 0, 0, 0, 0, 0, 244.41, 305.032, 999.148, 0, 1, 0, 0, 0, 'LS Project', 4000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1722, 4, 2801.92, -1962.9, 13.545, 0, 0, 0, 0, 0, 244.41, 305.032, 999.148, 0, 1, 0, 0, 0, 'LS Project', 4000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1723, 4, 2696.39, -1990.36, 14.222, 0, 0, 0, 0, 0, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, 0, 'Ghetto Home LS Small', 10000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1724, 4, 2672.71, -1989.47, 14.324, 0, 0, 0, 0, 0, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, 0, 'Ghetto Home LS Small', 10000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1725, 4, 2695.24, -2020.55, 14.022, 0, 0, 0, 0, 0, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, 0, 'Ghetto Home LS Small', 10000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1726, 4, 2673.27, -2020.29, 14.168, 0, 0, 0, 0, 0, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, 0, 'Ghetto Home LS Small', 10000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1727, 4, 2650.7, -2021.8, 14.175, 0, 0, 0, 0, 0, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, 0, 'Ghetto Home LS Small', 10000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1728, 4, 2635.61, -2012.93, 14.144, 0, 0, 0, 0, 0, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, 0, 'Ghetto Home LS Small', 10000, 100, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1729, 4, 2637.01, -1991.77, 14.324, 0, 0, 0, 0, 0, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, 0, 'Ghetto Home LS Small', 10000, 1000, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1730, 4, 2652.78, -1989.43, 13.998, 0, 0, 0, 0, 0, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, 0, 'Ghetto Home LS Small', 10000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1731, 4, 2486.36, -2021.55, 13.998, 0, 0, 0, 0, 0, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, 0, 'Ghetto Home LS Small', 10000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1732, 4, 2483.52, -1995.34, 13.833, 0, 0, 0, 0, 0, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, 0, 'Ghetto Home LS Small', 10000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1733, 4, 2465.22, -2020.79, 14.123, 0, 0, 0, 0, 0, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, 0, 'Ghetto Home LS Small', 10000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1734, 4, 2465.1, -1995.75, 14.019, 0, 0, 0, 0, 0, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, 0, 'Ghetto Home LS Small', 10000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1736, 4, 2508.32, -1998.36, 13.902, 0, 0, 0, 0, 0, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, 0, 'Ghetto Home LS Small', 10000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1737, 4, 2507.84, -2021.05, 14.21, 0, 0, 0, 0, 0, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, 0, 'Ghetto Home LS Small', 10000, 4000, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1738, 4, 2522.75, -2019, 14.074, 0, 0, 0, 0, 0, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, 0, 'Ghetto Home LS Small', 10000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1739, 4, 2524.44, -1998.39, 14.112, 0, 0, 0, 0, 0, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, 0, 'Ghetto Home LS Small', 10000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1740, 4, 1667.53, -2106.94, 14.071, 0, 0, 0, 0, 0, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, 0, 'Ghetto Home LS Small', 10000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1741, 4, 192.779, -1747.76, 4.302, 0, 0, 0, 0, 0, 261.058, 1284.29, 1080.25, 0, 4, 0, 0, 0, 'house at the beach', 100000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1742, 4, 142.5, -1470.27, 25.208, 0, 0, 0, 0, 0, 295.209, 1472.26, 1080.25, 0, 15, 0, 0, 0, 'small house at vinewood', 150000, 2000, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1743, 4, 161.447, -1455.95, 32.844, 0, 0, 0, 0, 0, 234.22, 1063.89, 1084.21, 0, 6, 0, 0, 0, 'House At Vinewood without swimming pool', 400000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1744, 4, 1059.16, -1105.14, 28.045, 0, 0, 0, 0, 0, 447, 1397.09, 1084.3, 0, 2, 0, 0, 0, 'House Near Vinewood', 150000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1745, 4, 1103.41, -1092.54, 28.468, 0, 0, 0, 0, 0, 447, 1397.09, 1084.3, 0, 2, 0, 0, 0, 'House Near Vinewood', 150000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1746, 4, 1103.4, -1069.59, 31.888, 0, 0, 0, 0, 0, 447, 1397.09, 1084.3, 0, 2, 0, 0, 0, 'House Near Vinewood', 150000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1747, 4, 1142.12, -1092.77, 28.187, 0, 0, 0, 0, 0, 447, 1397.09, 1084.3, 0, 2, 0, 0, 0, 'House Near Vinewood', 150000, 5000, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1748, 4, 1183.47, -1098.93, 28.256, 0, 0, 0, 0, 0, 447, 1397.09, 1084.3, 0, 2, 0, 0, 0, 'House Near Vinewood', 150000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1749, 4, 1183.47, -1076.04, 31.677, 0, 0, 0, 0, 0, 447, 1397.09, 1084.3, 0, 2, 0, 0, 0, 'House Near Vinewood', 150000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1750, 4, 1141.81, -1069.99, 31.763, 0, 0, 0, 0, 0, 447, 1397.09, 1084.3, 0, 2, 0, 0, 0, 'House Near Vinewood', 150000, 5000, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1751, 4, 2582.89, -952.931, 81.388, 0, 0, 0, 0, 0, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, 0, 'Ghetto Home LS Small', 10000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1752, 4, 2552.05, -958.429, 82.611, 0, 0, 0, 0, 0, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, 0, 'Ghetto Home LS Small', 10000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1753, 4, 2517.86, -965.392, 82.328, 0, 0, 0, 0, 0, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, 0, 'Ghetto Home LS Small', 10000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1754, 4, 2499.51, -946.997, 82.47, 0, 0, 0, 0, 0, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, 0, 'Ghetto Home LS Small', 10000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1755, 4, 2492.1, -965.645, 82.541, 0, 0, 0, 0, 0, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, 0, 'Ghetto Home LS Small', 10000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1756, 4, 2472.35, -962.043, 80.525, 0, 0, 0, 0, 0, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, 0, 'Ghetto Home LS Small', 10000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1757, 4, 2454.18, -964.963, 80.069, 0, 0, 0, 0, 0, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, 0, 'Ghetto Home LS Small', 10000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1758, 4, 2459.37, -947.702, 80.082, 0, 0, 0, 0, 0, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, 0, 'Ghetto Home LS Small', 10000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1759, 4, 992.684, -1817.65, 13.894, 0, 0, 0, 0, 0, 261.058, 1284.29, 1080.25, 0, 4, 0, 0, 0, 'house at the beach', 100000, 500, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1760, 4, 980.885, -1814.81, 13.887, 0, 0, 0, 0, 0, 261.058, 1284.29, 1080.25, 0, 4, 0, 0, 0, 'house at the beach', 100000, 5000, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1761, 4, 969.596, -1812.02, 13.883, 0, 0, 0, 0, 0, 261.06, 1284.29, 1080.25, 0, 4, 0, 0, 0, 'house at the beach', 100000, 500, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1762, 4, 958.072, -1809.17, 13.88, 0, 0, 0, 0, 0, 261.058, 1284.29, 1080.25, 0, 4, 0, 0, 0, 'house at the beach', 100000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1763, 4, 933.647, -1805.2, 13.843, 0, 0, 0, 0, 0, 261.06, 1284.29, 1080.25, 0, 4, 0, 0, 0, 'house at the beach', 100000, 1000, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1764, 4, 921.974, -1803.89, 13.837, 0, 0, 0, 0, 0, 261.06, 1284.29, 1080.25, 0, 4, 0, 0, 0, 'house at the beach', 100000, 900, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1765, 4, 910.267, -1802.69, 13.8, 0, 0, 0, 0, 0, 261.058, 1284.29, 1080.25, 0, 4, 0, 0, 0, 'house at the beach', 100000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1766, 4, 883.241, -1800.39, 13.8, 0, 0, 0, 0, 0, 261.058, 1284.29, 1080.25, 0, 4, 0, 0, 0, 'house at the beach', 100000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1767, 4, 866.656, -1798.94, 13.814, 0, 0, 0, 0, 0, 261.058, 1284.29, 1080.25, 0, 4, 0, 0, 0, 'house at the beach', 100000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1768, 4, 795.247, -506.148, 18.01, 0, 0, 0, 0, 0, 2282.9, -1139.99, 1050.89, 0, 11, 0, 0, 0, 'Little House at Dillimore', 60000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1769, 4, 818.257, -509.316, 18.01, 0, 0, 0, 0, 0, 261.058, 1284.29, 1080.25, 0, 4, 0, 0, 0, 'Little House at Dillimore', 50000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1770, 4, 768.341, -503.48, 18.01, 0, 0, 0, 0, 0, 327.91, 1477.79, 1084.43, 0, 15, 0, 0, 0, 'House at Dillimore', 85000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1771, 4, 743.239, -509.316, 18.01, 0, 0, 0, 0, 0, 327.91, 1477.79, 1084.43, 0, 15, 0, 0, 0, 'House at Dillimore', 100000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1772, 4, 745.135, -556.783, 18.01, 0, 0, 0, 0, 0, 327.91, 1477.79, 1084.43, 0, 15, 0, 0, 0, 'House at Dillimore', 100000, 150, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1773, 4, 766.591, -556.783, 18.01, 0, 0, 0, 0, 0, 327.91, 1477.79, 1084.43, 0, 15, 0, 0, 0, 'House at Dillimore', 100000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1774, 4, 759.286, -592.028, 18.013, 0, 0, 0, 0, 0, 261.058, 1284.29, 1080.25, 0, 4, 0, 0, 0, 'Little House at Dillimore', 70000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1775, 4, 745.674, -591.145, 18.01, 0, 0, 0, 0, 0, 261.058, 1284.29, 1080.25, 0, 4, 0, 0, 0, 'Little House at Dillimore', 70000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1776, 4, 261.958, -269.976, 1.639, 0, 0, 0, 0, 0, 244.41, 305.032, 999.148, 0, 1, 0, 0, 0, 'Trailer at Blue Berry', 20000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1777, 4, 264.514, -288.417, 1.72643, 0, 0, 0, 0, 0, 244.41, 305.032, 999.148, 0, 1, 0, 0, 0, 'Trailer at Blue Berry', 20000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1778, 4, 260.596, -302.989, 1.917, 0, 0, 0, 0, 0, 244.41, 305.032, 999.148, 0, 1, 0, 0, 0, 'Trailer at Blue Berry', 20000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1779, 4, 253.248, -289.945, 1.70299, 0, 0, 0, 0, 0, 244.41, 305.032, 999.148, 0, 1, 0, 0, 0, 'Trailer at Blue Berry', 20000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1780, 4, 255.911, -278.502, 1.656, 0, 0, 0, 0, 0, 244.41, 305.032, 999.148, 0, 1, 0, 0, 0, 'Trailer at Blue Berry', 20000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1781, 4, 238.921, -286.288, 1.63268, 0, 0, 0, 0, 0, 244.41, 305.032, 999.148, 0, 1, 0, 0, 0, 'Trailer at Blue Berry', 20000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1782, 4, 235.132, -309.456, 1.7108, 0, 0, 0, 0, 0, 244.41, 305.032, 999.148, 0, 1, 0, 0, 0, 'Trailer at Blue Berry', 20000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1783, 4, 226.549, -302.812, 1.92618, 0, 0, 0, 0, 0, 244.41, 305.032, 999.148, 0, 1, 0, 0, 0, 'Trailer at Blue Berry', 20000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1784, 4, 264.514, -283.665, 1.72643, 0, 0, 0, 0, 0, 244.41, 305.032, 999.148, 0, 1, 0, 0, 0, 'Trailer at Blue Berry', 20000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1785, 4, 253.533, -274.545, 1.656, 0, 0, 0, 0, 0, 244.41, 305.032, 999.148, 0, 1, 0, 0, 0, 'Trailer at Blue Berry', 20000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1786, 4, 242.013, -298.601, 1.687, 0, 0, 0, 0, 0, 244.41, 305.032, 999.148, 0, 1, 0, 0, 0, 'Trailer at Blue Berry', 20000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1787, 4, 178.279, -120.235, 1.54903, 0, 0, 0, 0, 0, 261.059, 1284.29, 1080.25, 0, 4, 0, 0, 0, 'Apartment at Blue Berry', 80000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1788, 4, 189.312, -120.229, 1.54846, 0, 0, 0, 0, 0, 261.059, 1284.29, 1080.25, 0, 4, 0, 0, 0, 'Apartment at Blue Berry', 80000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1789, 4, 166.299, -120.23, 1.55488, 0, 0, 0, 0, 0, 261.059, 1284.29, 1080.25, 0, 4, 0, 0, 0, 'Apartment at Blue Berry', 80000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1790, 4, 201.46, -94.9737, 1.55498, 0, 0, 0, 0, 0, 261.059, 1284.29, 1080.25, 0, 4, 0, 0, 0, 'Apartment at Blue Berry', 80000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1791, 4, 160.633, -102.568, 4.89647, 0, 0, 0, 0, 0, 261.059, 1284.29, 1080.25, 0, 4, 0, 0, 0, 'Apartment at Blue Berry', 80000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1792, 4, 160.632, -112.595, 4.89647, 0, 0, 0, 0, 0, 261.059, 1284.29, 1080.25, 0, 4, 0, 0, 0, 'Apartment at Blue Berry', 80000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1793, 4, 166.187, -118.234, 4.89647, 0, 0, 0, 0, 0, 261.059, 1284.29, 1080.25, 0, 4, 0, 0, 0, 'Apartment at Blue Berry', 80000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1794, 4, 178.265, -118.235, 4.89647, 0, 0, 0, 0, 0, 261.059, 1284.29, 1080.25, 0, 4, 0, 0, 0, 'Apartment at Blue Berry', 80000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1795, 4, 166.246, -96.9721, 4.89647, 0, 0, 0, 0, 0, 261.059, 1284.29, 1080.25, 0, 4, 0, 0, 0, 'Apartment at Blue Berry', 80000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1796, 4, 178.373, -96.973, 4.89647, 0, 0, 0, 0, 0, 261.059, 1284.29, 1080.25, 0, 4, 0, 0, 0, 'Apartment at Blue Berry', 80000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1797, 4, 166.389, -94.9725, 1.55484, 0, 0, 0, 0, 0, 261.059, 1284.29, 1080.25, 0, 4, 0, 0, 0, 'Apartment at Blue Berry', 80000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1798, 4, 207.073, -112.385, 4.89647, 0, 0, 0, 0, 0, 261.059, 1284.29, 1080.25, 0, 4, 0, 0, 0, 'Apartment at Blue Berry', 80000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1799, 4, 201.414, -96.9729, 4.89647, 0, 0, 0, 0, 0, 261.059, 1284.29, 1080.25, 0, 4, 0, 0, 0, 'Apartment at Blue Berry', 80000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1800, 4, 189.413, -96.9718, 4.89647, 0, 0, 0, 0, 0, 261.059, 1284.29, 1080.25, 0, 4, 0, 0, 0, 'Apartment at Blue Berry', 80000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1801, 4, 201.373, -118.234, 4.89647, 0, 0, 0, 0, 0, 261.059, 1284.29, 1080.25, 0, 4, 0, 0, 0, 'Apartment at Blue Berry', 80000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1802, 4, 201.453, -120.234, 1.55143, 0, 0, 0, 0, 0, 261.059, 1284.29, 1080.25, 0, 4, 0, 0, 0, 'Apartment at Blue Berry', 80000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1803, 4, 158.641, -112.616, 1.55671, 0, 0, 0, 0, 0, 261.059, 1284.29, 1080.25, 0, 4, 0, 0, 0, 'Apartment at Blue Berry', 80000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1804, 4, 209.084, -112.603, 1.55078, 0, 0, 0, 0, 0, 261.059, 1284.29, 1080.25, 0, 4, 0, 0, 0, 'Apartment at Blue Berry', 80000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1805, 4, 252.884, -92.418, 3.535, 0, 0, 0, 0, 0, 2282.9, -1139.99, 1050.89, 0, 11, 0, 0, 0, 'House at Blue Berry', 110000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1806, 4, 252.886, -121.314, 3.535, 0, 0, 0, 0, 0, 2282.9, -1139.99, 1050.89, 0, 11, 0, 0, 0, 'House at Blue Berry', 110000, 500, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1807, 4, 267.691, -54.541, 2.776, 0, 0, 0, 0, 0, 2282.9, -1139.99, 1050.89, 0, 11, 0, 0, 0, 'House at Blue Berry', 130000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1808, 4, 295.071, -54.545, 2.777, 0, 0, 0, 0, 0, 2282.9, -1139.99, 1050.89, 0, 11, 0, 0, 0, 'House at Blue Berry', 100000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1809, 4, 312.721, -92.337, 3.535, 0, 0, 0, 0, 0, 2282.9, -1139.99, 1050.89, 0, 11, 0, 0, 0, 'House at Blue Berry', 100000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1810, 4, 312.721, -121.25, 3.535, 0, 0, 0, 0, 0, 2282.9, -1139.99, 1050.89, 0, 11, 0, 0, 0, 'House at Blue Berry', 100000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1811, 4, 342.625, 62.719, 3.861, 0, 0, 0, 0, 0, 260.769, 1237.26, 1084.25, 0, 9, 0, 0, 0, 'Small House near Blue Berry', 40000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1812, 4, 317.737, 54.6055, 3.375, 0, 0, 0, 0, 0, 260.769, 1237.26, 1084.25, 0, 9, 0, 0, 0, 'Small House near Blue Berry', 60000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1813, 4, 309.11, 44.4167, 3.08797, 0, 0, 0, 0, 0, 260.769, 1237.26, 1084.25, 0, 9, 0, 0, 0, 'Small House near Blue Berry', 60000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1814, 4, 286.063, 41.147, 2.54844, 0, 0, 0, 0, 0, 260.769, 1237.26, 1084.25, 0, 9, 0, 0, 0, 'Small House near Blue Berry', 60000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1815, 4, 316.561, 18.2672, 4.51562, 0, 0, 0, 0, 0, 260.769, 1237.26, 1084.25, 0, 9, 0, 0, 0, 'Small House near Blue Berry', 60000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1816, 4, 340.197, 33.4515, 6.40556, 0, 0, 0, 0, 0, 260.769, 1237.26, 1084.25, 0, 9, 0, 0, 0, 'Small House near Blue Berry', 60000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1817, 4, 2323.84, 162.27, 28.44, 0, 0, 0, 0, 0, 2282.9, -1139.99, 1050.89, 0, 11, 0, 0, 0, 'House At Palomino Creek', 60000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1818, 4, 2364, 187.283, 28.44, 0, 0, 0, 0, 0, 327.91, 1477.79, 1084.43, 0, 15, 0, 0, 0, 'House At Palomino Creek', 100000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1819, 4, 2364, 166.093, 28.44, 0, 0, 0, 0, 0, 327.91, 1477.79, 1084.43, 0, 15, 0, 0, 0, 'House At Palomino Creek', 100000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1820, 4, 2323.84, 191.22, 28.44, 0, 0, 0, 0, 0, 327.91, 1477.79, 1084.43, 0, 15, 0, 0, 0, 'House At Palomino Creek', 100000, 1, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1821, 4, 2323.84, 136.421, 28.44, 0, 0, 0, 0, 0, 327.91, 1477.79, 1084.43, 0, 15, 0, 0, 0, 'House At Palomino Creek', 100000, 1000, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1822, 4, 2323.84, 116.138, 28.44, 0, 0, 0, 0, 0, 261.058, 1284.29, 1080.25, 0, 4, 0, 0, 0, 'House At Palomino Creek', 60000, 1, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1823, 4, 2364, 116.125, 28.44, 0, 0, 0, 0, 0, 261.058, 1284.29, 1080.25, 0, 4, 0, 0, 0, 'House At Palomino Creek', 60000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1824, 4, 2373.84, 71.079, 28.44, 0, 0, 0, 0, 0, 261.058, 1284.29, 1080.25, 0, 4, 0, 0, 0, 'House At Palomino Creek', 60000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1825, 4, 2373.84, 42.277, 28.44, 0, 0, 0, 0, 0, 261.058, 1284.29, 1080.25, 0, 4, 0, 0, 0, 'House At Palomino Creek', 60000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1826, 4, 2373.84, 21.978, 28.44, 0, 0, 0, 0, 0, 261.058, 1284.29, 1080.25, 0, 4, 0, 0, 0, 'House At Palomino Creek', 60000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1827, 4, 2373.84, -8.649, 28.44, 0, 0, 0, 0, 0, 261.058, 1284.29, 1080.25, 0, 4, 0, 0, 0, 'House At Palomino Creek', 60000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1828, 4, 2367.38, -49.125, 28.152, 0, 0, 0, 0, 0, 261.058, 1284.29, 1080.25, 0, 4, 0, 0, 0, 'House At Palomino Creek', 60000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1829, 4, 2392.29, -54.964, 28.152, 0, 0, 0, 0, 0, 327.91, 1477.79, 1084.43, 0, 15, 0, 0, 0, 'House At Palomino Creek', 100000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1830, 4, 2415.57, -5.701, 27.683, 0, 0, 0, 0, 0, 327.91, 1477.79, 1084.43, 0, 15, 0, 0, 0, 'House At Palomino Creek', 100000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1831, 4, 2438.78, -54.964, 28.152, 0, 0, 0, 0, 0, 260.769, 1237.26, 1084.25, 0, 9, 0, 0, 0, 'House At Palomino Creek', 60000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1832, 4, 2442.86, -4.038, 27.683, 0, 0, 0, 0, 0, 260.769, 1237.26, 1084.25, 0, 9, 0, 0, 0, 'House At Palomino Creek', 60000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1833, 4, 2488.38, 11.762, 28.44, 0, 0, 0, 0, 0, 260.769, 1237.26, 1084.25, 0, 9, 0, 0, 0, 'House At Palomino Creek', 60000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1834, 4, 2484.49, -28.392, 28.441, 0, 0, 0, 0, 0, 260.769, 1237.26, 1084.25, 0, 9, 0, 0, 0, 'House At Palomino Creek', 60000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1835, 4, 2513.28, -28.402, 28.44, 0, 0, 0, 0, 0, 260.769, 1237.26, 1084.25, 0, 9, 0, 0, 0, 'House At Palomino Creek', 85000, 1000, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1836, 4, 2417.01, 17.878, 27.683, 0, 0, 0, 0, 0, 260.769, 1237.26, 1084.25, 0, 9, 0, 0, 0, 'House At Palomino Creek', 85000, 1000, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1837, 4, 2549.23, 25.145, 27.673, 0, 0, 0, 0, 0, 327.91, 1477.79, 1084.43, 0, 15, 0, 0, 0, 'House At Palomino Creek', 150000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1838, 4, 2551.22, -5.506, 27.673, 0, 0, 0, 0, 0, 327.91, 1477.79, 1084.43, 0, 15, 0, 0, 0, 'House At Palomino Creek', 150000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1839, 4, 2551.22, 57.138, 27.673, 0, 0, 0, 0, 0, 327.91, 1477.79, 1084.43, 0, 15, 0, 0, 0, 'House At Palomino Creek', 110000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1840, 4, 2557.01, 87.888, 27.673, 0, 0, 0, 0, 0, 327.91, 1477.79, 1084.43, 0, 15, 0, 0, 0, 'House At Palomino Creek', 110000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1841, 4, 2536.24, 128.985, 27.683, 0, 0, 0, 0, 0, 327.91, 1477.79, 1084.43, 0, 15, 0, 0, 0, 'House At Palomino Creek', 110000, 5000, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1842, 4, 2518.44, 128.987, 27.675, 0, 0, 0, 0, 0, 327.91, 1477.79, 1084.43, 0, 15, 0, 0, 0, 'House At Palomino Creek', 110000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1843, 4, 2514.05, 94.389, 27.683, 0, 0, 0, 0, 0, 260.769, 1237.26, 1084.25, 0, 9, 0, 0, 0, 'House At Palomino Creek', 90000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1844, 4, 2480.62, 126.994, 27.673, 0, 0, 0, 0, 0, 327.91, 1477.79, 1084.43, 0, 15, 0, 0, 0, 'House At Palomino Creek', 150000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1845, 4, 2462.76, 134.778, 27.675, 0, 0, 0, 0, 0, 327.91, 1477.79, 1084.43, 0, 15, 0, 0, 0, 'House At Palomino Creek', 150000, 500, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1846, 4, 2443.84, 92.263, 28.44, 0, 0, 0, 0, 0, 327.91, 1477.79, 1084.43, 0, 15, 0, 0, 0, 'House At Palomino Creek', 150000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1847, 4, 2481.22, 64.37, 27.683, 0, 0, 0, 0, 0, 260.769, 1237.26, 1084.25, 0, 9, 0, 0, 0, 'House At Palomino Creek', 80000, 5000, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1848, 4, 2479.34, 94.391, 27.683, 0, 0, 0, 0, 0, 260.769, 1237.26, 1084.25, 0, 9, 0, 0, 0, 'House At Palomino Creek', 70000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1849, 4, 2439.56, 24.503, 27.683, 0, 0, 0, 0, 0, 327.91, 1477.79, 1084.43, 0, 15, 0, 0, 0, 'House At Palomino Creek', 125000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1850, 4, 2448.42, -11.019, 27.683, 0, 0, 0, 0, 0, 260.769, 1237.26, 1084.25, 0, 9, 0, 0, 0, 'House At Palomino Creek', 90000, 1, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1851, 4, 2415.44, -52.283, 28.153, 0, 0, 0, 0, 0, 261.058, 1284.29, 1080.25, 0, 4, 0, 0, 0, 'House At Palomino Creek', 250000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1852, 4, 2398.34, 111.76, 28.44, 0, 0, 0, 0, 0, 261.058, 1284.29, 1080.25, 0, 4, 0, 0, 0, 'House At Palomino Creek', 60000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1853, 4, 2269.5, 111.764, 28.44, 0, 0, 0, 0, 0, 261.058, 1284.29, 1080.25, 0, 4, 0, 0, 0, 'House At Palomino Creek', 60000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1854, 4, 2249.3, 111.763, 28.44, 0, 0, 0, 0, 0, 261.058, 1284.29, 1080.25, 0, 4, 0, 0, 0, 'House At Palomino Creek', 60000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1855, 4, 2203.84, 106.152, 28.44, 0, 0, 0, 0, 0, 260.769, 1237.26, 1084.25, 0, 9, 0, 0, 0, 'House At Palomino Creek', 95000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1856, 4, 2203.84, 62.284, 28.44, 0, 0, 0, 0, 0, 327.91, 1477.79, 1084.43, 0, 15, 0, 0, 0, 'House At Palomino Creek', 120000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1857, 4, 2270.49, -7.499, 28.152, 0, 0, 0, 0, 0, 327.91, 1477.79, 1084.43, 0, 15, 0, 0, 0, 'House At Palomino Creek', 120000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1858, 4, 2245.52, -1.661, 28.152, 0, 0, 0, 0, 0, 327.91, 1477.79, 1084.43, 0, 15, 0, 0, 0, 'House At Palomino Creek', 190000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1859, 4, 2199.95, -37.354, 28.152, 0, 0, 0, 0, 0, 327.91, 1477.79, 1084.43, 0, 15, 0, 0, 0, 'House At Palomino Creek', 250000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1860, 4, 2197.27, -60.667, 28.152, 0, 0, 0, 0, 0, 327.91, 1477.79, 1084.43, 0, 15, 0, 0, 0, 'House At Palomino Creek', 220000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1861, 4, 2203.1, -89.224, 28.152, 0, 0, 0, 0, 0, 327.91, 1477.79, 1084.43, 0, 15, 0, 0, 0, 'House At Palomino Creek', 250000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1862, 4, 2245.53, -122.291, 28.153, 0, 0, 0, 0, 0, 327.91, 1477.79, 1084.43, 0, 15, 0, 0, 0, 'House At Palomino Creek', 220000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1863, 4, 2272.45, -119.135, 28.152, 0, 0, 0, 0, 0, 327.91, 1477.79, 1084.43, 0, 15, 0, 0, 0, 'House At Palomino Creek', 220000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1864, 4, 2293.74, -124.958, 28.152, 0, 0, 0, 0, 0, 260.769, 1237.26, 1084.25, 0, 9, 0, 0, 0, 'House At Palomino Creek', 110000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1865, 4, 2322.25, -124.959, 28.152, 0, 0, 0, 0, 0, 260.769, 1237.26, 1084.25, 0, 9, 0, 0, 0, 'House At Palomino Creek', 110000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1866, 4, 2285.84, 161.768, 28.44, 0, 0, 0, 0, 0, 260.769, 1237.26, 1084.25, 0, 9, 0, 0, 0, 'House At Palomino Creek', 110000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1867, 4, 2266.49, 168.339, 28.152, 0, 0, 0, 0, 0, 260.769, 1237.26, 1084.25, 0, 9, 0, 0, 0, 'House At Palomino Creek', 110000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1868, 4, 2236.53, 168.304, 28.152, 0, 0, 0, 0, 0, 260.769, 1237.26, 1084.25, 0, 9, 0, 0, 0, 'House At Palomino Creek', 110000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1869, 4, 2413.54, 61.761, 28.44, 0, 0, 0, 0, 0, 260.769, 1237.26, 1084.25, 0, 9, 0, 0, 0, 'House At Palomino Creek', 110000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1870, 4, 2443.41, 61.762, 28.44, 0, 0, 0, 0, 0, 260.769, 1237.26, 1084.25, 0, 9, 0, 0, 0, 'House At Palomino Creek', 120000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1871, 4, 2509.5, 11.762, 28.44, 0, 0, 0, 0, 0, 260.769, 1237.26, 1084.25, 0, 9, 0, 0, 0, 'House At Palomino Creek', 90000, 1, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1872, 4, 2511.69, 57.215, 27.683, 0, 0, 0, 0, 0, 2282.9, -1139.99, 1050.89, 0, 11, 0, 0, 0, 'House At Palomino Creek', 125000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1873, 4, 1283.31, 158.373, 20.791, 0, 0, 0, 0, 0, 2196.84, -1204.23, 1049.02, 0, 6, 0, 0, 0, 'Trailer at Montgomery', 40000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1874, 4, 1295.41, 174.55, 20.909, 0, 0, 0, 0, 0, 2196.84, -1204.23, 1049.02, 0, 6, 0, 0, 0, 'Trailer at Montgomery', 40000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1875, 4, 1294.51, 157.647, 20.576, 0, 0, 0, 0, 0, 2196.84, -1204.23, 1049.02, 0, 6, 0, 0, 0, 'Trailer at Montgomery', 40000, 5000, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1876, 4, 1299.14, 140.344, 20.538, 0, 0, 0, 0, 0, 244.41, 305.032, 999.148, 0, 1, 0, 0, 0, 'Trailer at Montgomery', 30000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1877, 4, 1303.61, 186.1, 20.5389, 0, 0, 0, 0, 0, 2196.84, -1204.23, 1049.02, 0, 6, 0, 0, 0, 'Trailer at Montgomery', 40000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1878, 4, 1300.44, 193.272, 20.5233, 0, 0, 0, 0, 0, 2196.84, -1204.23, 1049.02, 0, 6, 0, 0, 0, 'Trailer at Montgomery', 40000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1879, 4, 1315.63, 180.156, 20.554, 0, 0, 0, 0, 0, 2196.84, -1204.23, 1049.02, 0, 6, 0, 0, 0, 'Trailer at Montgomery', 40000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1880, 4, 1311.76, 169.572, 20.631, 0, 0, 0, 0, 0, 2196.84, -1204.23, 1049.02, 0, 6, 0, 0, 0, 'Trailer at Montgomery', 40000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1881, 4, 1307.29, 153.318, 20.4921, 0, 0, 0, 0, 0, 2196.84, -1204.23, 1049.02, 0, 6, 0, 0, 0, 'Trailer at Montgomery', 40000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1882, 4, 1409.27, 346.89, 19.252, 0, 0, 0, 0, 0, 2196.84, -1204.23, 1049.02, 0, 6, 0, 0, 0, 'House at Montgomery', 60000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1883, 4, 1403.22, 333.848, 18.9062, 0, 0, 0, 0, 0, 2196.84, -1204.23, 1049.02, 0, 6, 0, 0, 0, 'House at Montgomery', 60000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1884, 4, 1415.88, 324.624, 18.843, 0, 0, 0, 0, 0, 2196.84, -1204.23, 1049.02, 0, 6, 0, 0, 0, 'House at Montgomery', 60000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1885, 4, 1428.64, 356.429, 18.875, 0, 0, 0, 0, 0, 2196.84, -1204.23, 1049.02, 0, 6, 0, 0, 0, 'House at Montgomery', 60000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1886, 4, 1413.14, 363.115, 19.1991, 0, 0, 0, 0, 0, 2196.84, -1204.23, 1049.02, 0, 6, 0, 0, 0, 'House at Montgomery', 60000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1887, 4, 1419.53, 389.472, 19.3297, 0, 0, 0, 0, 0, 2196.84, -1204.23, 1049.02, 0, 6, 0, 0, 0, 'House at Montgomery', 60000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1888, 4, 1475.32, 372.745, 19.6562, 0, 0, 0, 0, 0, 2196.84, -1204.23, 1049.02, 0, 6, 0, 0, 0, 'House at Montgomery', 60000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1889, 4, 1465.74, 364.197, 19.2608, 0, 0, 0, 0, 0, 2196.84, -1204.23, 1049.02, 0, 6, 0, 0, 0, 'House at Montgomery', 60000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1890, 4, 1469.66, 351.454, 18.923, 0, 0, 0, 0, 0, 2196.84, -1204.23, 1049.02, 0, 6, 0, 0, 0, 'House at Montgomery', 60000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1891, 4, 1451.58, 375.788, 19.4005, 0, 0, 0, 0, 0, 2196.84, -1204.23, 1049.02, 0, 6, 0, 0, 0, 'House at Montgomery', 60000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1892, 4, 1447.45, 361.738, 18.9081, 0, 0, 0, 0, 0, 2196.84, -1204.23, 1049.02, 0, 6, 0, 0, 0, 'House at Montgomery', 60000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1893, 4, 1461.13, 342.467, 18.951, 0, 0, 0, 0, 0, 2196.84, -1204.23, 1049.02, 0, 6, 0, 0, 0, 'House at Montgomery', 60000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1894, 4, 1434.89, 334.767, 18.9469, 0, 0, 0, 0, 0, 2196.84, -1204.23, 1049.02, 0, 6, 0, 0, 0, 'House at Montgomery', 60000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1895, 4, 1488.61, 360.899, 19.4108, 0, 0, 0, 0, 0, 2196.84, -1204.23, 1049.02, 0, 6, 0, 0, 0, 'House at Montgomery', 60000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1896, 4, 723.709, 269.671, 22.4531, 0, 0, 0, 0, 0, 2196.84, -1204.23, 1049.02, 0, 6, 0, 0, 0, 'House near Blueberry', 60000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1897, 4, 705.467, 292.096, 20.4219, 0, 0, 0, 0, 0, 2196.84, -1204.23, 1049.02, 0, 6, 0, 0, 0, 'House near Blueberry', 60000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1898, 4, 719.073, 300.585, 20.3766, 0, 0, 0, 0, 0, 2196.84, -1204.23, 1049.02, 0, 6, 0, 0, 0, 'House near Blueberry', 60000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1899, 4, 746.396, 305.002, 20.233, 0, 0, 0, 0, 0, 2196.84, -1204.23, 1049.02, 0, 6, 0, 0, 0, 'House near Blueberry', 60000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1900, 4, 747.132, 278.173, 27.218, 0, 0, 0, 0, 0, 2196.84, -1204.23, 1049.02, 0, 6, 0, 0, 0, 'House near Blueberry', 60000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1901, 4, 748.16, 257.106, 27.0859, 0, 0, 0, 0, 0, 2196.84, -1204.23, 1049.02, 0, 6, 0, 0, 0, 'House near Blueberry', 60000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1902, 4, 748.428, 350.901, 20.5858, 0, 0, 0, 0, 0, 244.41, 305.032, 999.148, 0, 1, 0, 0, 0, 'Trailer near Blueberry', 15000, 1, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1903, 4, 808.065, 372.286, 19.451, 0, 0, 0, 0, 0, 244.41, 305.032, 999.148, 0, 1, 0, 0, 0, 'Trailer near Blueberry', 15000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1904, 4, 783.166, 377.561, 21.2967, 0, 0, 0, 0, 0, 244.41, 305.032, 999.148, 0, 1, 0, 0, 0, 'Trailer near Blueberry', 15000, 500, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1905, 4, 751.723, 375.22, 23.374, 0, 0, 0, 0, 0, 244.41, 305.032, 999.148, 0, 1, 0, 0, 0, 'Trailer near Blueberry', 15000, 5000, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1906, 4, 783.883, 352.588, 19.5938, 0, 0, 0, 0, 0, 2196.84, -1204.23, 1049.02, 0, 6, 0, 0, 0, 'House near Blueberry', 60000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1907, 4, 805.329, 358.37, 19.7621, 0, 0, 0, 0, 0, 2196.84, -1204.23, 1049.02, 0, 6, 0, 0, 0, 'House near Blueberry', 60000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1908, 4, 758.917, 375.023, 23.3922, 0, 0, 0, 0, 0, 2196.84, -1204.23, 1049.02, 0, 6, 0, 0, 0, 'House near Blueberry', 60000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1909, 4, 772.919, 348.266, 20.1527, 0, 0, 0, 0, 0, 2196.84, -1204.23, 1049.02, 0, 6, 0, 0, 0, 'House near Blueberry', 60000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1910, 4, -1061.35, -1205.56, 129.756, 0, 0, 0, 0, 0, 2317.82, -1024.75, 1050.21, 0, 9, 0, 0, 0, 'Weston\'s Farm', 75000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1911, 4, 1566.6, 23.2625, 24.1641, 0, 0, 0, 0, 0, 422.572, 2536.12, 10, 0, 10, 0, 0, 0, 'Swarek Shack.', 75000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1912, 4, 870.399, -24.9238, 63.9856, 0, 0, 0, 0, 0, 422.293, 2536.68, 10, 0, 10, 0, 0, 0, 'Eddie\'s Ranch', 25000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1913, 4, -1051.73, 1549.97, 33.4376, 0, 0, 0, 0, 0, 422.293, 2536.68, 10, 0, 10, 0, 0, 0, 'Ryan\'s Shack', 1000000, 0, 0, 0, 0); +/*!40000 ALTER TABLE `house_main` ENABLE KEYS */; + +-- Dumping structure for table db24053.idea_main +CREATE TABLE IF NOT EXISTS `idea_main` ( + `idea_id` int(11) NOT NULL AUTO_INCREMENT, + `idea_server` tinyint(2) NOT NULL DEFAULT '0', + `idea_who_added` int(11) NOT NULL DEFAULT '0', + `idea_when_added` int(32) NOT NULL DEFAULT '0', + `idea_script_ver` varchar(16) NOT NULL DEFAULT '0.1', + `idea_pos_x` float NOT NULL DEFAULT '0', + `idea_pos_y` float NOT NULL DEFAULT '0', + `idea_pos_z` float NOT NULL DEFAULT '0', + `idea_rot_z` float NOT NULL DEFAULT '0', + `idea_message` varchar(128) NOT NULL DEFAULT '( No Message )', + `idea_svr_start` int(32) NOT NULL DEFAULT '0', + `idea_session` int(11) NOT NULL DEFAULT '0', + PRIMARY KEY (`idea_id`) +) ENGINE=InnoDB AUTO_INCREMENT=16 DEFAULT CHARSET=latin1 COMMENT='User Submitted Ideas'; + +-- Dumping data for table db24053.idea_main: ~15 rows (approximately) +/*!40000 ALTER TABLE `idea_main` DISABLE KEYS */; +INSERT INTO `idea_main` (`idea_id`, `idea_server`, `idea_who_added`, `idea_when_added`, `idea_script_ver`, `idea_pos_x`, `idea_pos_y`, `idea_pos_z`, `idea_rot_z`, `idea_message`, `idea_svr_start`, `idea_session`) VALUES + (1, 1, -1, 1607368777, '1.0', 0, 0, 0, 0, 'Test', 2147483647, 0); +INSERT INTO `idea_main` (`idea_id`, `idea_server`, `idea_who_added`, `idea_when_added`, `idea_script_ver`, `idea_pos_x`, `idea_pos_y`, `idea_pos_z`, `idea_rot_z`, `idea_message`, `idea_svr_start`, `idea_session`) VALUES + (2, 4, 1, 1608259672, '1.0', 1916.14, -1751.69, 13.0561, 1.58, 'Remove built-in interiors from SA', 2147483647, 0); +INSERT INTO `idea_main` (`idea_id`, `idea_server`, `idea_who_added`, `idea_when_added`, `idea_script_ver`, `idea_pos_x`, `idea_pos_y`, `idea_pos_z`, `idea_rot_z`, `idea_message`, `idea_svr_start`, `idea_session`) VALUES + (3, 4, 1, 1608261150, '1.0', 2235.27, 2440.09, 10.8203, 0.03, 'Add equipment weapons for SA', 2147483647, 0); +INSERT INTO `idea_main` (`idea_id`, `idea_server`, `idea_who_added`, `idea_when_added`, `idea_script_ver`, `idea_pos_x`, `idea_pos_y`, `idea_pos_z`, `idea_rot_z`, `idea_message`, `idea_svr_start`, `idea_session`) VALUES + (4, 4, 1, 1608262318, '1.0', 2258.62, 2463.1, 10.8203, -0.5, 'Exclude LVPD garage from snow', 2147483647, 0); +INSERT INTO `idea_main` (`idea_id`, `idea_server`, `idea_who_added`, `idea_when_added`, `idea_script_ver`, `idea_pos_x`, `idea_pos_y`, `idea_pos_z`, `idea_rot_z`, `idea_message`, `idea_svr_start`, `idea_session`) VALUES + (5, 4, 1, 1608262432, '1.0', 2179.19, 1766.52, 56.5364, 1.3, 'Exclude LV parking garages from snow', 2147483647, 0); +INSERT INTO `idea_main` (`idea_id`, `idea_server`, `idea_who_added`, `idea_when_added`, `idea_script_ver`, `idea_pos_x`, `idea_pos_y`, `idea_pos_z`, `idea_rot_z`, `idea_message`, `idea_svr_start`, `idea_session`) VALUES + (6, 4, 1, 1608262457, '1.0', 1858.49, 1800.93, 36.5273, 0.5, 'Exclude LV parking garage ramp from snow', 2147483647, 0); +INSERT INTO `idea_main` (`idea_id`, `idea_server`, `idea_who_added`, `idea_when_added`, `idea_script_ver`, `idea_pos_x`, `idea_pos_y`, `idea_pos_z`, `idea_rot_z`, `idea_message`, `idea_svr_start`, `idea_session`) VALUES + (7, 4, 1, 1608262813, '1.0', 1192.94, -1321.7, 13.3984, -0.2, 'Add hospital fees', 2147483647, 0); +INSERT INTO `idea_main` (`idea_id`, `idea_server`, `idea_who_added`, `idea_when_added`, `idea_script_ver`, `idea_pos_x`, `idea_pos_y`, `idea_pos_z`, `idea_rot_z`, `idea_message`, `idea_svr_start`, `idea_session`) VALUES + (8, 4, 1, 1608263030, '1.0', -1569.29, 681.68, 7.1875, -3.14, 'Add default uniform for job locations', 2147483647, 0); +INSERT INTO `idea_main` (`idea_id`, `idea_server`, `idea_who_added`, `idea_when_added`, `idea_script_ver`, `idea_pos_x`, `idea_pos_y`, `idea_pos_z`, `idea_rot_z`, `idea_message`, `idea_svr_start`, `idea_session`) VALUES + (9, 4, 1, 1608264357, '1.0', -1985.6, 162.528, 27.6875, 3.1, 'Account logo cmd like gui', 2147483647, 0); +INSERT INTO `idea_main` (`idea_id`, `idea_server`, `idea_who_added`, `idea_when_added`, `idea_script_ver`, `idea_pos_x`, `idea_pos_y`, `idea_pos_z`, `idea_rot_z`, `idea_message`, `idea_svr_start`, `idea_session`) VALUES + (10, 4, 1, 1608264374, '1.0', -1983.54, 163.581, 27.6875, 1.02, 'Admin report system', 2147483647, 0); +INSERT INTO `idea_main` (`idea_id`, `idea_server`, `idea_who_added`, `idea_when_added`, `idea_script_ver`, `idea_pos_x`, `idea_pos_y`, `idea_pos_z`, `idea_rot_z`, `idea_message`, `idea_svr_start`, `idea_session`) VALUES + (11, 4, 1, 1608347312, '1.0', 1841.32, -1542.86, 13.5469, -1.34, 'Add message when player connects', 2147483647, 0); +INSERT INTO `idea_main` (`idea_id`, `idea_server`, `idea_who_added`, `idea_when_added`, `idea_script_ver`, `idea_pos_x`, `idea_pos_y`, `idea_pos_z`, `idea_rot_z`, `idea_message`, `idea_svr_start`, `idea_session`) VALUES + (12, 4, 1, 1608347713, '1.0', 1597.3, -1687.64, 5.89062, 1.84, 'Add alias unlock for lock command', 2147483647, 0); +INSERT INTO `idea_main` (`idea_id`, `idea_server`, `idea_who_added`, `idea_when_added`, `idea_script_ver`, `idea_pos_x`, `idea_pos_y`, `idea_pos_z`, `idea_rot_z`, `idea_message`, `idea_svr_start`, `idea_session`) VALUES + (13, 4, 1, 1608348053, '1.0', 1550.96, -1439.45, 12.9606, 1.54, 'Sync skin when using uniform or any skin change', 2147483647, 0); +INSERT INTO `idea_main` (`idea_id`, `idea_server`, `idea_who_added`, `idea_when_added`, `idea_script_ver`, `idea_pos_x`, `idea_pos_y`, `idea_pos_z`, `idea_rot_z`, `idea_message`, `idea_svr_start`, `idea_session`) VALUES + (14, 4, 1, 1608348085, '1.0', 1193.81, -1316.13, 12.9778, 0.06, 'Add nametags', 2147483647, 0); +INSERT INTO `idea_main` (`idea_id`, `idea_server`, `idea_who_added`, `idea_when_added`, `idea_script_ver`, `idea_pos_x`, `idea_pos_y`, `idea_pos_z`, `idea_rot_z`, `idea_message`, `idea_svr_start`, `idea_session`) VALUES + (15, 4, 1, 1608348314, '1.0', 1359.7, -1255.02, 12.96, -0.01, 'Save interior if exit in house or biz', 2147483647, 0); +/*!40000 ALTER TABLE `idea_main` ENABLE KEYS */; + +-- Dumping structure for table db24053.ins_acct +CREATE TABLE IF NOT EXISTS `ins_acct` ( + `insurance_acct_id` int(11) NOT NULL AUTO_INCREMENT, + `insurance_acct_server` tinyint(2) NOT NULL DEFAULT '0', + `insurance_acct_provider` int(11) NOT NULL DEFAULT '0', + `insurance_acct_type` tinyint(2) NOT NULL DEFAULT '0', + `insurance_acct_entity` int(11) NOT NULL DEFAULT '0', + `insurance_acct_hourly_rate` int(11) NOT NULL DEFAULT '0', + `insurance_acct_active` tinyint(1) NOT NULL DEFAULT '0', + `insurance_acct_max_payout` int(11) NOT NULL DEFAULT '0', + PRIMARY KEY (`insurance_acct_id`) +) ENGINE=InnoDB DEFAULT CHARSET=latin1 COMMENT='Insurance - Accounts'; + +-- Dumping data for table db24053.ins_acct: ~0 rows (approximately) +/*!40000 ALTER TABLE `ins_acct` DISABLE KEYS */; +/*!40000 ALTER TABLE `ins_acct` ENABLE KEYS */; + +-- Dumping structure for table db24053.ins_provider +CREATE TABLE IF NOT EXISTS `ins_provider` ( + `insurance_provider_id` int(11) NOT NULL AUTO_INCREMENT, + `insurance_provider_server` tinyint(2) NOT NULL DEFAULT '0', + `insurance_provider_name` varchar(32) NOT NULL DEFAULT '0', + `insurance_provider_type_flags` int(32) NOT NULL DEFAULT '0', + `insurance_provider_active` tinyint(1) NOT NULL DEFAULT '1', + `insurance_provider_owner_type` tinyint(1) NOT NULL DEFAULT '0', + `insurance_provider_owner_id` tinyint(1) NOT NULL DEFAULT '0', + PRIMARY KEY (`insurance_provider_id`) +) ENGINE=InnoDB DEFAULT CHARSET=latin1 COMMENT='Insurance - Providers'; + +-- Dumping data for table db24053.ins_provider: ~0 rows (approximately) +/*!40000 ALTER TABLE `ins_provider` DISABLE KEYS */; +/*!40000 ALTER TABLE `ins_provider` ENABLE KEYS */; + +-- Dumping structure for table db24053.int_main +CREATE TABLE IF NOT EXISTS `int_main` ( + `int_id` int(11) NOT NULL AUTO_INCREMENT, + `int_server` int(11) NOT NULL DEFAULT '0', + `int_name` varchar(50) NOT NULL DEFAULT 'Unnamed', + `int_type` int(11) NOT NULL DEFAULT '0', + `int_entrance_pos_x` float NOT NULL DEFAULT '0', + `int_entrance_pos_y` float NOT NULL DEFAULT '0', + `int_entrance_pos_z` float NOT NULL DEFAULT '0', + `int_entrance_rot_z` float NOT NULL DEFAULT '0', + `int_entrance_int` int(11) NOT NULL DEFAULT '0', + `int_entrance_vw` int(11) NOT NULL DEFAULT '0', + `int_exit_pos_x` float NOT NULL DEFAULT '0', + `int_exit_pos_y` float NOT NULL DEFAULT '0', + `int_exit_pos_z` float NOT NULL DEFAULT '0', + `int_exit_rot_z` float NOT NULL DEFAULT '0', + `int_exit_int` int(11) NOT NULL DEFAULT '0', + `int_exit_vw` int(11) NOT NULL DEFAULT '0', + `int_locked` tinyint(4) NOT NULL DEFAULT '0', + PRIMARY KEY (`int_id`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Interiors'; + +-- Dumping data for table db24053.int_main: ~0 rows (approximately) +/*!40000 ALTER TABLE `int_main` DISABLE KEYS */; +/*!40000 ALTER TABLE `int_main` ENABLE KEYS */; + +-- Dumping structure for table db24053.job_bl +CREATE TABLE IF NOT EXISTS `job_bl` ( + `job_bl_id` int(11) NOT NULL AUTO_INCREMENT, + `job_bl_job` int(11) NOT NULL DEFAULT '0', + `job_bl_acct` int(11) NOT NULL DEFAULT '0', + `job_bl_when_added` int(11) NOT NULL DEFAULT '0', + `job_bl_who_added` int(11) NOT NULL DEFAULT '0', + `job_bl_deleted` int(11) NOT NULL DEFAULT '0', + PRIMARY KEY (`job_bl_id`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Job - Blacklist'; + +-- Dumping data for table db24053.job_bl: ~0 rows (approximately) +/*!40000 ALTER TABLE `job_bl` DISABLE KEYS */; +/*!40000 ALTER TABLE `job_bl` ENABLE KEYS */; + +-- Dumping structure for table db24053.job_equip +CREATE TABLE IF NOT EXISTS `job_equip` ( + `job_equip_id` int(11) NOT NULL AUTO_INCREMENT, + `job_equip_job` int(11) NOT NULL DEFAULT '0', + `job_equip_minrank` int(11) NOT NULL DEFAULT '0', + `job_equip_name` varchar(50) NOT NULL DEFAULT '0', + `job_equip_enabled` int(11) NOT NULL DEFAULT '1', + PRIMARY KEY (`job_equip_id`) +) ENGINE=InnoDB AUTO_INCREMENT=21 DEFAULT CHARSET=utf8 COMMENT='Job Equipments'; + +-- Dumping data for table db24053.job_equip: ~20 rows (approximately) +/*!40000 ALTER TABLE `job_equip` DISABLE KEYS */; +INSERT INTO `job_equip` (`job_equip_id`, `job_equip_job`, `job_equip_minrank`, `job_equip_name`, `job_equip_enabled`) VALUES + (1, 1, 0, 'Patrol', 1); +INSERT INTO `job_equip` (`job_equip_id`, `job_equip_job`, `job_equip_minrank`, `job_equip_name`, `job_equip_enabled`) VALUES + (2, 2, 0, 'Patrol', 1); +INSERT INTO `job_equip` (`job_equip_id`, `job_equip_job`, `job_equip_minrank`, `job_equip_name`, `job_equip_enabled`) VALUES + (3, 3, 0, 'Patrol', 1); +INSERT INTO `job_equip` (`job_equip_id`, `job_equip_job`, `job_equip_minrank`, `job_equip_name`, `job_equip_enabled`) VALUES + (4, 4, 0, 'Patrol', 1); +INSERT INTO `job_equip` (`job_equip_id`, `job_equip_job`, `job_equip_minrank`, `job_equip_name`, `job_equip_enabled`) VALUES + (5, 1, 1, 'Detective', 1); +INSERT INTO `job_equip` (`job_equip_id`, `job_equip_job`, `job_equip_minrank`, `job_equip_name`, `job_equip_enabled`) VALUES + (6, 2, 1, 'Detective', 1); +INSERT INTO `job_equip` (`job_equip_id`, `job_equip_job`, `job_equip_minrank`, `job_equip_name`, `job_equip_enabled`) VALUES + (7, 3, 1, 'Detective', 1); +INSERT INTO `job_equip` (`job_equip_id`, `job_equip_job`, `job_equip_minrank`, `job_equip_name`, `job_equip_enabled`) VALUES + (8, 4, 1, 'Detective', 1); +INSERT INTO `job_equip` (`job_equip_id`, `job_equip_job`, `job_equip_minrank`, `job_equip_name`, `job_equip_enabled`) VALUES + (9, 1, 2, 'SWAT', 1); +INSERT INTO `job_equip` (`job_equip_id`, `job_equip_job`, `job_equip_minrank`, `job_equip_name`, `job_equip_enabled`) VALUES + (10, 2, 2, 'SWAT', 1); +INSERT INTO `job_equip` (`job_equip_id`, `job_equip_job`, `job_equip_minrank`, `job_equip_name`, `job_equip_enabled`) VALUES + (11, 3, 2, 'SWAT', 1); +INSERT INTO `job_equip` (`job_equip_id`, `job_equip_job`, `job_equip_minrank`, `job_equip_name`, `job_equip_enabled`) VALUES + (12, 4, 2, 'SWAT', 1); +INSERT INTO `job_equip` (`job_equip_id`, `job_equip_job`, `job_equip_minrank`, `job_equip_name`, `job_equip_enabled`) VALUES + (13, 1, 3, 'Supervisor', 1); +INSERT INTO `job_equip` (`job_equip_id`, `job_equip_job`, `job_equip_minrank`, `job_equip_name`, `job_equip_enabled`) VALUES + (14, 2, 3, 'Supervisor', 1); +INSERT INTO `job_equip` (`job_equip_id`, `job_equip_job`, `job_equip_minrank`, `job_equip_name`, `job_equip_enabled`) VALUES + (15, 3, 3, 'Supervisor', 1); +INSERT INTO `job_equip` (`job_equip_id`, `job_equip_job`, `job_equip_minrank`, `job_equip_name`, `job_equip_enabled`) VALUES + (16, 4, 3, 'Supervisor', 1); +INSERT INTO `job_equip` (`job_equip_id`, `job_equip_job`, `job_equip_minrank`, `job_equip_name`, `job_equip_enabled`) VALUES + (17, 9, 0, 'Firefighter', 1); +INSERT INTO `job_equip` (`job_equip_id`, `job_equip_job`, `job_equip_minrank`, `job_equip_name`, `job_equip_enabled`) VALUES + (18, 10, 0, 'Firefighter', 1); +INSERT INTO `job_equip` (`job_equip_id`, `job_equip_job`, `job_equip_minrank`, `job_equip_name`, `job_equip_enabled`) VALUES + (19, 11, 0, 'Firefighter', 1); +INSERT INTO `job_equip` (`job_equip_id`, `job_equip_job`, `job_equip_minrank`, `job_equip_name`, `job_equip_enabled`) VALUES + (20, 12, 0, 'Firefighter', 1); +/*!40000 ALTER TABLE `job_equip` ENABLE KEYS */; + +-- Dumping structure for table db24053.job_equip_wep +CREATE TABLE IF NOT EXISTS `job_equip_wep` ( + `job_equip_wep_id` int(11) NOT NULL AUTO_INCREMENT, + `job_equip_wep_equip` int(11) NOT NULL DEFAULT '0', + `job_equip_wep_wep` int(11) NOT NULL DEFAULT '0', + `job_equip_wep_ammo` int(11) NOT NULL DEFAULT '0', + `job_equip_wep_enabled` int(11) NOT NULL DEFAULT '1', + PRIMARY KEY (`job_equip_wep_id`) +) ENGINE=InnoDB AUTO_INCREMENT=53 DEFAULT CHARSET=utf8 COMMENT='Job Equipments - Weapons'; + +-- Dumping data for table db24053.job_equip_wep: ~52 rows (approximately) +/*!40000 ALTER TABLE `job_equip_wep` DISABLE KEYS */; +INSERT INTO `job_equip_wep` (`job_equip_wep_id`, `job_equip_wep_equip`, `job_equip_wep_wep`, `job_equip_wep_ammo`, `job_equip_wep_enabled`) VALUES + (1, 1, 1, 1, 1); +INSERT INTO `job_equip_wep` (`job_equip_wep_id`, `job_equip_wep_equip`, `job_equip_wep_wep`, `job_equip_wep_ammo`, `job_equip_wep_enabled`) VALUES + (2, 1, 2, 150, 1); +INSERT INTO `job_equip_wep` (`job_equip_wep_id`, `job_equip_wep_equip`, `job_equip_wep_wep`, `job_equip_wep_ammo`, `job_equip_wep_enabled`) VALUES + (3, 1, 4, 20, 1); +INSERT INTO `job_equip_wep` (`job_equip_wep_id`, `job_equip_wep_equip`, `job_equip_wep_wep`, `job_equip_wep_ammo`, `job_equip_wep_enabled`) VALUES + (4, 5, 1, 1, 1); +INSERT INTO `job_equip_wep` (`job_equip_wep_id`, `job_equip_wep_equip`, `job_equip_wep_wep`, `job_equip_wep_ammo`, `job_equip_wep_enabled`) VALUES + (5, 5, 2, 150, 1); +INSERT INTO `job_equip_wep` (`job_equip_wep_id`, `job_equip_wep_equip`, `job_equip_wep_wep`, `job_equip_wep_ammo`, `job_equip_wep_enabled`) VALUES + (6, 5, 4, 20, 1); +INSERT INTO `job_equip_wep` (`job_equip_wep_id`, `job_equip_wep_equip`, `job_equip_wep_wep`, `job_equip_wep_ammo`, `job_equip_wep_enabled`) VALUES + (7, 9, 1, 1, 1); +INSERT INTO `job_equip_wep` (`job_equip_wep_id`, `job_equip_wep_equip`, `job_equip_wep_wep`, `job_equip_wep_ammo`, `job_equip_wep_enabled`) VALUES + (8, 9, 2, 150, 1); +INSERT INTO `job_equip_wep` (`job_equip_wep_id`, `job_equip_wep_equip`, `job_equip_wep_wep`, `job_equip_wep_ammo`, `job_equip_wep_enabled`) VALUES + (9, 9, 4, 20, 1); +INSERT INTO `job_equip_wep` (`job_equip_wep_id`, `job_equip_wep_equip`, `job_equip_wep_wep`, `job_equip_wep_ammo`, `job_equip_wep_enabled`) VALUES + (10, 13, 4, 1, 1); +INSERT INTO `job_equip_wep` (`job_equip_wep_id`, `job_equip_wep_equip`, `job_equip_wep_wep`, `job_equip_wep_ammo`, `job_equip_wep_enabled`) VALUES + (11, 13, 17, 150, 1); +INSERT INTO `job_equip_wep` (`job_equip_wep_id`, `job_equip_wep_equip`, `job_equip_wep_wep`, `job_equip_wep_ammo`, `job_equip_wep_enabled`) VALUES + (12, 13, 19, 20, 1); +INSERT INTO `job_equip_wep` (`job_equip_wep_id`, `job_equip_wep_equip`, `job_equip_wep_wep`, `job_equip_wep_ammo`, `job_equip_wep_enabled`) VALUES + (13, 17, 4, 1, 1); +INSERT INTO `job_equip_wep` (`job_equip_wep_id`, `job_equip_wep_equip`, `job_equip_wep_wep`, `job_equip_wep_ammo`, `job_equip_wep_enabled`) VALUES + (14, 17, 17, 150, 1); +INSERT INTO `job_equip_wep` (`job_equip_wep_id`, `job_equip_wep_equip`, `job_equip_wep_wep`, `job_equip_wep_ammo`, `job_equip_wep_enabled`) VALUES + (15, 17, 19, 20, 1); +INSERT INTO `job_equip_wep` (`job_equip_wep_id`, `job_equip_wep_equip`, `job_equip_wep_wep`, `job_equip_wep_ammo`, `job_equip_wep_enabled`) VALUES + (16, 21, 4, 1, 1); +INSERT INTO `job_equip_wep` (`job_equip_wep_id`, `job_equip_wep_equip`, `job_equip_wep_wep`, `job_equip_wep_ammo`, `job_equip_wep_enabled`) VALUES + (17, 21, 17, 150, 1); +INSERT INTO `job_equip_wep` (`job_equip_wep_id`, `job_equip_wep_equip`, `job_equip_wep_wep`, `job_equip_wep_ammo`, `job_equip_wep_enabled`) VALUES + (18, 21, 19, 20, 1); +INSERT INTO `job_equip_wep` (`job_equip_wep_id`, `job_equip_wep_equip`, `job_equip_wep_wep`, `job_equip_wep_ammo`, `job_equip_wep_enabled`) VALUES + (19, 25, 4, 1, 1); +INSERT INTO `job_equip_wep` (`job_equip_wep_id`, `job_equip_wep_equip`, `job_equip_wep_wep`, `job_equip_wep_ammo`, `job_equip_wep_enabled`) VALUES + (20, 25, 17, 150, 1); +INSERT INTO `job_equip_wep` (`job_equip_wep_id`, `job_equip_wep_equip`, `job_equip_wep_wep`, `job_equip_wep_ammo`, `job_equip_wep_enabled`) VALUES + (21, 25, 19, 20, 1); +INSERT INTO `job_equip_wep` (`job_equip_wep_id`, `job_equip_wep_equip`, `job_equip_wep_wep`, `job_equip_wep_ammo`, `job_equip_wep_enabled`) VALUES + (22, 29, 3, 1, 1); +INSERT INTO `job_equip_wep` (`job_equip_wep_id`, `job_equip_wep_equip`, `job_equip_wep_wep`, `job_equip_wep_ammo`, `job_equip_wep_enabled`) VALUES + (23, 29, 24, 150, 1); +INSERT INTO `job_equip_wep` (`job_equip_wep_id`, `job_equip_wep_equip`, `job_equip_wep_wep`, `job_equip_wep_ammo`, `job_equip_wep_enabled`) VALUES + (24, 29, 25, 20, 1); +INSERT INTO `job_equip_wep` (`job_equip_wep_id`, `job_equip_wep_equip`, `job_equip_wep_wep`, `job_equip_wep_ammo`, `job_equip_wep_enabled`) VALUES + (25, 33, 3, 1, 1); +INSERT INTO `job_equip_wep` (`job_equip_wep_id`, `job_equip_wep_equip`, `job_equip_wep_wep`, `job_equip_wep_ammo`, `job_equip_wep_enabled`) VALUES + (26, 33, 24, 150, 1); +INSERT INTO `job_equip_wep` (`job_equip_wep_id`, `job_equip_wep_equip`, `job_equip_wep_wep`, `job_equip_wep_ammo`, `job_equip_wep_enabled`) VALUES + (27, 33, 25, 20, 1); +INSERT INTO `job_equip_wep` (`job_equip_wep_id`, `job_equip_wep_equip`, `job_equip_wep_wep`, `job_equip_wep_ammo`, `job_equip_wep_enabled`) VALUES + (28, 37, 3, 1, 1); +INSERT INTO `job_equip_wep` (`job_equip_wep_id`, `job_equip_wep_equip`, `job_equip_wep_wep`, `job_equip_wep_ammo`, `job_equip_wep_enabled`) VALUES + (29, 37, 24, 150, 1); +INSERT INTO `job_equip_wep` (`job_equip_wep_id`, `job_equip_wep_equip`, `job_equip_wep_wep`, `job_equip_wep_ammo`, `job_equip_wep_enabled`) VALUES + (30, 37, 25, 20, 1); +INSERT INTO `job_equip_wep` (`job_equip_wep_id`, `job_equip_wep_equip`, `job_equip_wep_wep`, `job_equip_wep_ammo`, `job_equip_wep_enabled`) VALUES + (31, 4, 3, 1, 1); +INSERT INTO `job_equip_wep` (`job_equip_wep_id`, `job_equip_wep_equip`, `job_equip_wep_wep`, `job_equip_wep_ammo`, `job_equip_wep_enabled`) VALUES + (32, 4, 22, 150, 1); +INSERT INTO `job_equip_wep` (`job_equip_wep_id`, `job_equip_wep_equip`, `job_equip_wep_wep`, `job_equip_wep_ammo`, `job_equip_wep_enabled`) VALUES + (33, 4, 25, 20, 1); +INSERT INTO `job_equip_wep` (`job_equip_wep_id`, `job_equip_wep_equip`, `job_equip_wep_wep`, `job_equip_wep_ammo`, `job_equip_wep_enabled`) VALUES + (34, 8, 24, 150, 1); +INSERT INTO `job_equip_wep` (`job_equip_wep_id`, `job_equip_wep_equip`, `job_equip_wep_wep`, `job_equip_wep_ammo`, `job_equip_wep_enabled`) VALUES + (35, 8, 43, 150, 1); +INSERT INTO `job_equip_wep` (`job_equip_wep_id`, `job_equip_wep_equip`, `job_equip_wep_wep`, `job_equip_wep_ammo`, `job_equip_wep_enabled`) VALUES + (36, 12, 3, 1, 1); +INSERT INTO `job_equip_wep` (`job_equip_wep_id`, `job_equip_wep_equip`, `job_equip_wep_wep`, `job_equip_wep_ammo`, `job_equip_wep_enabled`) VALUES + (37, 12, 17, 5, 1); +INSERT INTO `job_equip_wep` (`job_equip_wep_id`, `job_equip_wep_equip`, `job_equip_wep_wep`, `job_equip_wep_ammo`, `job_equip_wep_enabled`) VALUES + (38, 12, 24, 150, 1); +INSERT INTO `job_equip_wep` (`job_equip_wep_id`, `job_equip_wep_equip`, `job_equip_wep_wep`, `job_equip_wep_ammo`, `job_equip_wep_enabled`) VALUES + (39, 12, 27, 50, 1); +INSERT INTO `job_equip_wep` (`job_equip_wep_id`, `job_equip_wep_equip`, `job_equip_wep_wep`, `job_equip_wep_ammo`, `job_equip_wep_enabled`) VALUES + (40, 12, 29, 350, 1); +INSERT INTO `job_equip_wep` (`job_equip_wep_id`, `job_equip_wep_equip`, `job_equip_wep_wep`, `job_equip_wep_ammo`, `job_equip_wep_enabled`) VALUES + (41, 12, 31, 350, 1); +INSERT INTO `job_equip_wep` (`job_equip_wep_id`, `job_equip_wep_equip`, `job_equip_wep_wep`, `job_equip_wep_ammo`, `job_equip_wep_enabled`) VALUES + (42, 12, 34, 30, 1); +INSERT INTO `job_equip_wep` (`job_equip_wep_id`, `job_equip_wep_equip`, `job_equip_wep_wep`, `job_equip_wep_ammo`, `job_equip_wep_enabled`) VALUES + (43, 16, 3, 1, 1); +INSERT INTO `job_equip_wep` (`job_equip_wep_id`, `job_equip_wep_equip`, `job_equip_wep_wep`, `job_equip_wep_ammo`, `job_equip_wep_enabled`) VALUES + (44, 16, 24, 150, 1); +INSERT INTO `job_equip_wep` (`job_equip_wep_id`, `job_equip_wep_equip`, `job_equip_wep_wep`, `job_equip_wep_ammo`, `job_equip_wep_enabled`) VALUES + (45, 16, 25, 20, 1); +INSERT INTO `job_equip_wep` (`job_equip_wep_id`, `job_equip_wep_equip`, `job_equip_wep_wep`, `job_equip_wep_ammo`, `job_equip_wep_enabled`) VALUES + (46, 16, 29, 350, 1); +INSERT INTO `job_equip_wep` (`job_equip_wep_id`, `job_equip_wep_equip`, `job_equip_wep_wep`, `job_equip_wep_ammo`, `job_equip_wep_enabled`) VALUES + (47, 17, 9, 500, 1); +INSERT INTO `job_equip_wep` (`job_equip_wep_id`, `job_equip_wep_equip`, `job_equip_wep_wep`, `job_equip_wep_ammo`, `job_equip_wep_enabled`) VALUES + (48, 18, 31, 500, 1); +INSERT INTO `job_equip_wep` (`job_equip_wep_id`, `job_equip_wep_equip`, `job_equip_wep_wep`, `job_equip_wep_ammo`, `job_equip_wep_enabled`) VALUES + (49, 18, 11, 1, 1); +INSERT INTO `job_equip_wep` (`job_equip_wep_id`, `job_equip_wep_equip`, `job_equip_wep_wep`, `job_equip_wep_ammo`, `job_equip_wep_enabled`) VALUES + (50, 20, 42, 99999, 1); +INSERT INTO `job_equip_wep` (`job_equip_wep_id`, `job_equip_wep_equip`, `job_equip_wep_wep`, `job_equip_wep_ammo`, `job_equip_wep_enabled`) VALUES + (51, 20, 37, 500, 1); +INSERT INTO `job_equip_wep` (`job_equip_wep_id`, `job_equip_wep_equip`, `job_equip_wep_wep`, `job_equip_wep_ammo`, `job_equip_wep_enabled`) VALUES + (52, 20, 9, 1, 1); +/*!40000 ALTER TABLE `job_equip_wep` ENABLE KEYS */; + +-- Dumping structure for table db24053.job_loc +CREATE TABLE IF NOT EXISTS `job_loc` ( + `job_loc_id` int(11) NOT NULL AUTO_INCREMENT, + `job_loc_job` int(11) NOT NULL DEFAULT '0', + `job_loc_pos_x` float NOT NULL DEFAULT '0', + `job_loc_pos_y` float NOT NULL DEFAULT '0', + `job_loc_pos_z` float NOT NULL DEFAULT '0', + `job_loc_enabled` float NOT NULL DEFAULT '0', + `job_loc_uniform` int(11) NOT NULL DEFAULT '0', + PRIMARY KEY (`job_loc_id`) +) ENGINE=InnoDB AUTO_INCREMENT=52 DEFAULT CHARSET=utf8 COMMENT='Job - Locations'; + +-- Dumping data for table db24053.job_loc: ~49 rows (approximately) +/*!40000 ALTER TABLE `job_loc` DISABLE KEYS */; +INSERT INTO `job_loc` (`job_loc_id`, `job_loc_job`, `job_loc_pos_x`, `job_loc_pos_y`, `job_loc_pos_z`, `job_loc_enabled`, `job_loc_uniform`) VALUES + (1, 1, 1143.87, -675.18, 14.97, 1, 1); +INSERT INTO `job_loc` (`job_loc_id`, `job_loc_job`, `job_loc_pos_x`, `job_loc_pos_y`, `job_loc_pos_z`, `job_loc_enabled`, `job_loc_uniform`) VALUES + (2, 1, 340.25, -1123.37, 25.98, 1, 1); +INSERT INTO `job_loc` (`job_loc_id`, `job_loc_job`, `job_loc_pos_x`, `job_loc_pos_y`, `job_loc_pos_z`, `job_loc_enabled`, `job_loc_uniform`) VALUES + (3, 5, -1253, -138.18, 58.75, 1, 0); +INSERT INTO `job_loc` (`job_loc_id`, `job_loc_job`, `job_loc_pos_x`, `job_loc_pos_y`, `job_loc_pos_z`, `job_loc_enabled`, `job_loc_uniform`) VALUES + (4, 2, 399.77, -468.9, 11.73, 1, 3); +INSERT INTO `job_loc` (`job_loc_id`, `job_loc_job`, `job_loc_pos_x`, `job_loc_pos_y`, `job_loc_pos_z`, `job_loc_enabled`, `job_loc_uniform`) VALUES + (5, 2, 508.96, 512.07, 12.1, 1, 3); +INSERT INTO `job_loc` (`job_loc_id`, `job_loc_job`, `job_loc_pos_x`, `job_loc_pos_y`, `job_loc_pos_z`, `job_loc_enabled`, `job_loc_uniform`) VALUES + (6, 2, -657.43, 762.31, 11.59, 1, 3); +INSERT INTO `job_loc` (`job_loc_id`, `job_loc_job`, `job_loc_pos_x`, `job_loc_pos_y`, `job_loc_pos_z`, `job_loc_enabled`, `job_loc_uniform`) VALUES + (7, 6, -885.08, -470.44, 13.11, 1, 0); +INSERT INTO `job_loc` (`job_loc_id`, `job_loc_job`, `job_loc_pos_x`, `job_loc_pos_y`, `job_loc_pos_z`, `job_loc_enabled`, `job_loc_uniform`) VALUES + (8, 4, 1545.53, -1675.64, 13.561, 1, 0); +INSERT INTO `job_loc` (`job_loc_id`, `job_loc_job`, `job_loc_pos_x`, `job_loc_pos_y`, `job_loc_pos_z`, `job_loc_enabled`, `job_loc_uniform`) VALUES + (11, 5, 1144.25, -596.87, 14.97, 1, 0); +INSERT INTO `job_loc` (`job_loc_id`, `job_loc_job`, `job_loc_pos_x`, `job_loc_pos_y`, `job_loc_pos_z`, `job_loc_enabled`, `job_loc_uniform`) VALUES + (12, 1, -1259.5, -44.5, 58.89, 1, 1); +INSERT INTO `job_loc` (`job_loc_id`, `job_loc_job`, `job_loc_pos_x`, `job_loc_pos_y`, `job_loc_pos_z`, `job_loc_enabled`, `job_loc_uniform`) VALUES + (13, 5, 183.5, -17.75, 16.21, 1, 0); +INSERT INTO `job_loc` (`job_loc_id`, `job_loc_job`, `job_loc_pos_x`, `job_loc_pos_y`, `job_loc_pos_z`, `job_loc_enabled`, `job_loc_uniform`) VALUES + (14, 9, 1103.7, -52.45, 7.49, 1, 0); +INSERT INTO `job_loc` (`job_loc_id`, `job_loc_job`, `job_loc_pos_x`, `job_loc_pos_y`, `job_loc_pos_z`, `job_loc_enabled`, `job_loc_uniform`) VALUES + (15, 9, -78.48, -436.8, 16.17, 1, 0); +INSERT INTO `job_loc` (`job_loc_id`, `job_loc_job`, `job_loc_pos_x`, `job_loc_pos_y`, `job_loc_pos_z`, `job_loc_enabled`, `job_loc_uniform`) VALUES + (16, 9, -1202.1, -14.67, 53.2, 1, 0); +INSERT INTO `job_loc` (`job_loc_id`, `job_loc_job`, `job_loc_pos_x`, `job_loc_pos_y`, `job_loc_pos_z`, `job_loc_enabled`, `job_loc_uniform`) VALUES + (17, 13, 1229.2, -740.1, 15.17, 1, 0); +INSERT INTO `job_loc` (`job_loc_id`, `job_loc_job`, `job_loc_pos_x`, `job_loc_pos_y`, `job_loc_pos_z`, `job_loc_enabled`, `job_loc_uniform`) VALUES + (18, 17, -57.1661, -334.266, 16.9324, 1, 0); +INSERT INTO `job_loc` (`job_loc_id`, `job_loc_job`, `job_loc_pos_x`, `job_loc_pos_y`, `job_loc_pos_z`, `job_loc_enabled`, `job_loc_uniform`) VALUES + (19, 17, 0, 0, 0, 1, 0); +INSERT INTO `job_loc` (`job_loc_id`, `job_loc_job`, `job_loc_pos_x`, `job_loc_pos_y`, `job_loc_pos_z`, `job_loc_enabled`, `job_loc_uniform`) VALUES + (20, 17, 1310.2, -1016.3, 14.88, 1, 0); +INSERT INTO `job_loc` (`job_loc_id`, `job_loc_job`, `job_loc_pos_x`, `job_loc_pos_y`, `job_loc_pos_z`, `job_loc_enabled`, `job_loc_uniform`) VALUES + (21, 21, -66.8, -932.2, 16.47, 1, 0); +INSERT INTO `job_loc` (`job_loc_id`, `job_loc_job`, `job_loc_pos_x`, `job_loc_pos_y`, `job_loc_pos_z`, `job_loc_enabled`, `job_loc_uniform`) VALUES + (22, 21, 1121.8, 27.8, 1.99, 1, 0); +INSERT INTO `job_loc` (`job_loc_id`, `job_loc_job`, `job_loc_pos_x`, `job_loc_pos_y`, `job_loc_pos_z`, `job_loc_enabled`, `job_loc_uniform`) VALUES + (23, 3, 894.99, -357.39, 18.185, 1, 0); +INSERT INTO `job_loc` (`job_loc_id`, `job_loc_job`, `job_loc_pos_x`, `job_loc_pos_y`, `job_loc_pos_z`, `job_loc_enabled`, `job_loc_uniform`) VALUES + (24, 3, 435.4, 1592.29, 17.353, 1, 0); +INSERT INTO `job_loc` (`job_loc_id`, `job_loc_job`, `job_loc_pos_x`, `job_loc_pos_y`, `job_loc_pos_z`, `job_loc_enabled`, `job_loc_uniform`) VALUES + (25, 3, 974.93, 1870.45, 23.073, 1, 0); +INSERT INTO `job_loc` (`job_loc_id`, `job_loc_job`, `job_loc_pos_x`, `job_loc_pos_y`, `job_loc_pos_z`, `job_loc_enabled`, `job_loc_uniform`) VALUES + (26, 3, 1233.25, -89.13, 28.034, 1, 0); +INSERT INTO `job_loc` (`job_loc_id`, `job_loc_job`, `job_loc_pos_x`, `job_loc_pos_y`, `job_loc_pos_z`, `job_loc_enabled`, `job_loc_uniform`) VALUES + (27, 3, 50.12, 679.88, 15.316, 1, 0); +INSERT INTO `job_loc` (`job_loc_id`, `job_loc_job`, `job_loc_pos_x`, `job_loc_pos_y`, `job_loc_pos_z`, `job_loc_enabled`, `job_loc_uniform`) VALUES + (28, 3, 85.21, 1189.82, 14.755, 1, 0); +INSERT INTO `job_loc` (`job_loc_id`, `job_loc_job`, `job_loc_pos_x`, `job_loc_pos_y`, `job_loc_pos_z`, `job_loc_enabled`, `job_loc_uniform`) VALUES + (29, 3, 2170.87, 448.87, 6.085, 1, 0); +INSERT INTO `job_loc` (`job_loc_id`, `job_loc_job`, `job_loc_pos_x`, `job_loc_pos_y`, `job_loc_pos_z`, `job_loc_enabled`, `job_loc_uniform`) VALUES + (30, 3, 213.12, -211.7, 10.752, 1, 0); +INSERT INTO `job_loc` (`job_loc_id`, `job_loc_job`, `job_loc_pos_x`, `job_loc_pos_y`, `job_loc_pos_z`, `job_loc_enabled`, `job_loc_uniform`) VALUES + (31, 3, -1714.95, 276.31, 22.134, 1, 0); +INSERT INTO `job_loc` (`job_loc_id`, `job_loc_job`, `job_loc_pos_x`, `job_loc_pos_y`, `job_loc_pos_z`, `job_loc_enabled`, `job_loc_uniform`) VALUES + (32, 3, -1220.73, -231.53, 3.024, 1, 0); +INSERT INTO `job_loc` (`job_loc_id`, `job_loc_job`, `job_loc_pos_x`, `job_loc_pos_y`, `job_loc_pos_z`, `job_loc_enabled`, `job_loc_uniform`) VALUES + (33, 3, -927.66, 1263.63, 24.587, 1, 0); +INSERT INTO `job_loc` (`job_loc_id`, `job_loc_job`, `job_loc_pos_x`, `job_loc_pos_y`, `job_loc_pos_z`, `job_loc_enabled`, `job_loc_uniform`) VALUES + (34, 6, -826.06, 1144.41, 12.41, 1, 0); +INSERT INTO `job_loc` (`job_loc_id`, `job_loc_job`, `job_loc_pos_x`, `job_loc_pos_y`, `job_loc_pos_z`, `job_loc_enabled`, `job_loc_uniform`) VALUES + (35, 2, -872.06, -683.19, 11.23, 1, 3); +INSERT INTO `job_loc` (`job_loc_id`, `job_loc_job`, `job_loc_pos_x`, `job_loc_pos_y`, `job_loc_pos_z`, `job_loc_enabled`, `job_loc_uniform`) VALUES + (36, 10, -698.22, 942.38, 11.08, 1, 0); +INSERT INTO `job_loc` (`job_loc_id`, `job_loc_job`, `job_loc_pos_x`, `job_loc_pos_y`, `job_loc_pos_z`, `job_loc_enabled`, `job_loc_uniform`) VALUES + (37, 18, -1146.06, -285.65, 11.2, 1, 0); +INSERT INTO `job_loc` (`job_loc_id`, `job_loc_job`, `job_loc_pos_x`, `job_loc_pos_y`, `job_loc_pos_z`, `job_loc_enabled`, `job_loc_uniform`) VALUES + (38, 14, -994.88, 185.1, 12.43, 1, 0); +INSERT INTO `job_loc` (`job_loc_id`, `job_loc_job`, `job_loc_pos_x`, `job_loc_pos_y`, `job_loc_pos_z`, `job_loc_enabled`, `job_loc_uniform`) VALUES + (39, 6, 493.14, 709.31, 11.8, 1, 0); +INSERT INTO `job_loc` (`job_loc_id`, `job_loc_job`, `job_loc_pos_x`, `job_loc_pos_y`, `job_loc_pos_z`, `job_loc_enabled`, `job_loc_uniform`) VALUES + (40, 22, -1264.42, 6.05, 11.45, 1, 0); +INSERT INTO `job_loc` (`job_loc_id`, `job_loc_job`, `job_loc_pos_x`, `job_loc_pos_y`, `job_loc_pos_z`, `job_loc_enabled`, `job_loc_uniform`) VALUES + (41, 8, 1172.96, -1323.42, 15.4, 1, 0); +INSERT INTO `job_loc` (`job_loc_id`, `job_loc_job`, `job_loc_pos_x`, `job_loc_pos_y`, `job_loc_pos_z`, `job_loc_enabled`, `job_loc_uniform`) VALUES + (42, 8, 2034.04, -1405.07, 17.24, 1, 0); +INSERT INTO `job_loc` (`job_loc_id`, `job_loc_job`, `job_loc_pos_x`, `job_loc_pos_y`, `job_loc_pos_z`, `job_loc_enabled`, `job_loc_uniform`) VALUES + (43, 24, 2309.22, -2088.32, 13.55, 1, 0); +INSERT INTO `job_loc` (`job_loc_id`, `job_loc_job`, `job_loc_pos_x`, `job_loc_pos_y`, `job_loc_pos_z`, `job_loc_enabled`, `job_loc_uniform`) VALUES + (44, 20, 1765.89, -1885.48, 13.55, 1, 0); +INSERT INTO `job_loc` (`job_loc_id`, `job_loc_job`, `job_loc_pos_x`, `job_loc_pos_y`, `job_loc_pos_z`, `job_loc_enabled`, `job_loc_uniform`) VALUES + (45, 16, 1808.64, -1938.58, 13.55, 1, 0); +INSERT INTO `job_loc` (`job_loc_id`, `job_loc_job`, `job_loc_pos_x`, `job_loc_pos_y`, `job_loc_pos_z`, `job_loc_enabled`, `job_loc_uniform`) VALUES + (46, 12, 1133.7, -1312.92, 13.58, 1, 0); +INSERT INTO `job_loc` (`job_loc_id`, `job_loc_job`, `job_loc_pos_x`, `job_loc_pos_y`, `job_loc_pos_z`, `job_loc_enabled`, `job_loc_uniform`) VALUES + (47, 4, 2290.49, 2430.09, 10.82, 1, 0); +INSERT INTO `job_loc` (`job_loc_id`, `job_loc_job`, `job_loc_pos_x`, `job_loc_pos_y`, `job_loc_pos_z`, `job_loc_enabled`, `job_loc_uniform`) VALUES + (48, 12, 1744.95, 2082.8, 10.82, 1, 0); +INSERT INTO `job_loc` (`job_loc_id`, `job_loc_job`, `job_loc_pos_x`, `job_loc_pos_y`, `job_loc_pos_z`, `job_loc_enabled`, `job_loc_uniform`) VALUES + (49, 4, -1605.38, 711.5, 13.87, 1, 0); +INSERT INTO `job_loc` (`job_loc_id`, `job_loc_job`, `job_loc_pos_x`, `job_loc_pos_y`, `job_loc_pos_z`, `job_loc_enabled`, `job_loc_uniform`) VALUES + (50, 8, -2655.15, 638.72, 14.45, 1, 0); +INSERT INTO `job_loc` (`job_loc_id`, `job_loc_job`, `job_loc_pos_x`, `job_loc_pos_y`, `job_loc_pos_z`, `job_loc_enabled`, `job_loc_uniform`) VALUES + (51, 12, -2026.34, 67.17, 28.69, 1, 0); +/*!40000 ALTER TABLE `job_loc` ENABLE KEYS */; + +-- Dumping structure for table db24053.job_main +CREATE TABLE IF NOT EXISTS `job_main` ( + `job_id` int(11) NOT NULL AUTO_INCREMENT, + `job_server` int(11) NOT NULL DEFAULT '0', + `job_enabled` int(11) NOT NULL DEFAULT '1', + `job_name` varchar(50) NOT NULL DEFAULT 'Unnamed', + `job_pickup` int(11) NOT NULL DEFAULT '0', + `job_type` int(11) NOT NULL DEFAULT '0', + `job_blip` int(11) NOT NULL DEFAULT '0', + `job_colour_r` int(11) NOT NULL DEFAULT '255', + `job_colour_g` int(11) NOT NULL DEFAULT '255', + `job_colour_b` int(11) NOT NULL DEFAULT '255', + `job_whitelist` int(11) NOT NULL DEFAULT '0', + PRIMARY KEY (`job_id`) +) ENGINE=InnoDB AUTO_INCREMENT=25 DEFAULT CHARSET=utf8 COMMENT='Jobs'; + +-- Dumping data for table db24053.job_main: ~24 rows (approximately) +/*!40000 ALTER TABLE `job_main` DISABLE KEYS */; +INSERT INTO `job_main` (`job_id`, `job_server`, `job_enabled`, `job_name`, `job_pickup`, `job_type`, `job_blip`, `job_colour_r`, `job_colour_g`, `job_colour_b`, `job_whitelist`) VALUES + (1, 1, 1, 'Police', 1383, 1, 0, 70, 130, 180, 0); +INSERT INTO `job_main` (`job_id`, `job_server`, `job_enabled`, `job_name`, `job_pickup`, `job_type`, `job_blip`, `job_colour_r`, `job_colour_g`, `job_colour_b`, `job_whitelist`) VALUES + (2, 2, 1, 'Police', 375, 1, 0, 70, 130, 180, 0); +INSERT INTO `job_main` (`job_id`, `job_server`, `job_enabled`, `job_name`, `job_pickup`, `job_type`, `job_blip`, `job_colour_r`, `job_colour_g`, `job_colour_b`, `job_whitelist`) VALUES + (3, 3, 1, 'Police', 0, 1, 0, 70, 130, 180, 0); +INSERT INTO `job_main` (`job_id`, `job_server`, `job_enabled`, `job_name`, `job_pickup`, `job_type`, `job_blip`, `job_colour_r`, `job_colour_g`, `job_colour_b`, `job_whitelist`) VALUES + (4, 4, 1, 'Police', 1247, 1, 30, 70, 130, 180, 0); +INSERT INTO `job_main` (`job_id`, `job_server`, `job_enabled`, `job_name`, `job_pickup`, `job_type`, `job_blip`, `job_colour_r`, `job_colour_g`, `job_colour_b`, `job_whitelist`) VALUES + (5, 1, 1, 'Paramedic', 1362, 2, 0, 219, 112, 147, 0); +INSERT INTO `job_main` (`job_id`, `job_server`, `job_enabled`, `job_name`, `job_pickup`, `job_type`, `job_blip`, `job_colour_r`, `job_colour_g`, `job_colour_b`, `job_whitelist`) VALUES + (6, 2, 1, 'Paramedic', 366, 2, 0, 219, 112, 147, 0); +INSERT INTO `job_main` (`job_id`, `job_server`, `job_enabled`, `job_name`, `job_pickup`, `job_type`, `job_blip`, `job_colour_r`, `job_colour_g`, `job_colour_b`, `job_whitelist`) VALUES + (7, 3, 1, 'Paramedic', 0, 2, 0, 219, 112, 147, 0); +INSERT INTO `job_main` (`job_id`, `job_server`, `job_enabled`, `job_name`, `job_pickup`, `job_type`, `job_blip`, `job_colour_r`, `job_colour_g`, `job_colour_b`, `job_whitelist`) VALUES + (8, 4, 1, 'Paramedic', 1240, 2, 22, 219, 112, 147, 0); +INSERT INTO `job_main` (`job_id`, `job_server`, `job_enabled`, `job_name`, `job_pickup`, `job_type`, `job_blip`, `job_colour_r`, `job_colour_g`, `job_colour_b`, `job_whitelist`) VALUES + (9, 1, 1, 'Firefighter', 1364, 3, 0, 205, 92, 92, 0); +INSERT INTO `job_main` (`job_id`, `job_server`, `job_enabled`, `job_name`, `job_pickup`, `job_type`, `job_blip`, `job_colour_r`, `job_colour_g`, `job_colour_b`, `job_whitelist`) VALUES + (10, 2, 1, 'Firefighter', 365, 3, 0, 205, 92, 92, 0); +INSERT INTO `job_main` (`job_id`, `job_server`, `job_enabled`, `job_name`, `job_pickup`, `job_type`, `job_blip`, `job_colour_r`, `job_colour_g`, `job_colour_b`, `job_whitelist`) VALUES + (11, 3, 1, 'Firefighter', 0, 3, 0, 205, 92, 92, 0); +INSERT INTO `job_main` (`job_id`, `job_server`, `job_enabled`, `job_name`, `job_pickup`, `job_type`, `job_blip`, `job_colour_r`, `job_colour_g`, `job_colour_b`, `job_whitelist`) VALUES + (12, 4, 1, 'Firefighter', 1318, 3, 20, 205, 92, 92, 0); +INSERT INTO `job_main` (`job_id`, `job_server`, `job_enabled`, `job_name`, `job_pickup`, `job_type`, `job_blip`, `job_colour_r`, `job_colour_g`, `job_colour_b`, `job_whitelist`) VALUES + (13, 1, 1, 'Taxi Driver', 1361, 5, 0, 240, 230, 140, 0); +INSERT INTO `job_main` (`job_id`, `job_server`, `job_enabled`, `job_name`, `job_pickup`, `job_type`, `job_blip`, `job_colour_r`, `job_colour_g`, `job_colour_b`, `job_whitelist`) VALUES + (14, 2, 1, 'Taxi Driver', 365, 5, 0, 240, 230, 140, 0); +INSERT INTO `job_main` (`job_id`, `job_server`, `job_enabled`, `job_name`, `job_pickup`, `job_type`, `job_blip`, `job_colour_r`, `job_colour_g`, `job_colour_b`, `job_whitelist`) VALUES + (15, 3, 1, 'Taxi Driver', 0, 5, 0, 240, 230, 140, 0); +INSERT INTO `job_main` (`job_id`, `job_server`, `job_enabled`, `job_name`, `job_pickup`, `job_type`, `job_blip`, `job_colour_r`, `job_colour_g`, `job_colour_b`, `job_whitelist`) VALUES + (16, 4, 1, 'Taxi Driver', 1318, 5, 0, 240, 230, 140, 0); +INSERT INTO `job_main` (`job_id`, `job_server`, `job_enabled`, `job_name`, `job_pickup`, `job_type`, `job_blip`, `job_colour_r`, `job_colour_g`, `job_colour_b`, `job_whitelist`) VALUES + (17, 1, 1, 'Bus Driver', 1361, 4, 0, 50, 205, 50, 0); +INSERT INTO `job_main` (`job_id`, `job_server`, `job_enabled`, `job_name`, `job_pickup`, `job_type`, `job_blip`, `job_colour_r`, `job_colour_g`, `job_colour_b`, `job_whitelist`) VALUES + (18, 2, 1, 'Bus Driver', 365, 4, 0, 50, 205, 50, 0); +INSERT INTO `job_main` (`job_id`, `job_server`, `job_enabled`, `job_name`, `job_pickup`, `job_type`, `job_blip`, `job_colour_r`, `job_colour_g`, `job_colour_b`, `job_whitelist`) VALUES + (19, 3, 1, 'Bus Driver', 0, 4, 0, 50, 205, 50, 0); +INSERT INTO `job_main` (`job_id`, `job_server`, `job_enabled`, `job_name`, `job_pickup`, `job_type`, `job_blip`, `job_colour_r`, `job_colour_g`, `job_colour_b`, `job_whitelist`) VALUES + (20, 4, 1, 'Bus Driver', 1318, 4, 0, 50, 205, 50, 0); +INSERT INTO `job_main` (`job_id`, `job_server`, `job_enabled`, `job_name`, `job_pickup`, `job_type`, `job_blip`, `job_colour_r`, `job_colour_g`, `job_colour_b`, `job_whitelist`) VALUES + (21, 1, 1, 'Trash Collector', 1351, 6, 0, 150, 150, 150, 0); +INSERT INTO `job_main` (`job_id`, `job_server`, `job_enabled`, `job_name`, `job_pickup`, `job_type`, `job_blip`, `job_colour_r`, `job_colour_g`, `job_colour_b`, `job_whitelist`) VALUES + (22, 2, 1, 'Trash Collector', 365, 6, 0, 150, 150, 150, 0); +INSERT INTO `job_main` (`job_id`, `job_server`, `job_enabled`, `job_name`, `job_pickup`, `job_type`, `job_blip`, `job_colour_r`, `job_colour_g`, `job_colour_b`, `job_whitelist`) VALUES + (23, 3, 1, 'Trash Collector', 0, 6, 0, 150, 150, 150, 0); +INSERT INTO `job_main` (`job_id`, `job_server`, `job_enabled`, `job_name`, `job_pickup`, `job_type`, `job_blip`, `job_colour_r`, `job_colour_g`, `job_colour_b`, `job_whitelist`) VALUES + (24, 4, 1, 'Trash Collector', 1318, 6, 0, 150, 150, 150, 0); +/*!40000 ALTER TABLE `job_main` ENABLE KEYS */; + +-- Dumping structure for table db24053.job_uniform +CREATE TABLE IF NOT EXISTS `job_uniform` ( + `job_uniform_id` int(11) NOT NULL AUTO_INCREMENT, + `job_uniform_job` int(11) NOT NULL DEFAULT '0', + `job_uniform_skin` int(11) NOT NULL DEFAULT '0', + `job_uniform_enabled` int(11) NOT NULL DEFAULT '0', + `job_uniform_minrank` int(11) NOT NULL DEFAULT '0', + `job_uniform_name` varchar(50) NOT NULL DEFAULT 'Unnamed', + PRIMARY KEY (`job_uniform_id`) +) ENGINE=InnoDB AUTO_INCREMENT=61 DEFAULT CHARSET=utf8 COMMENT='Jobs - Uniforms'; + +-- Dumping data for table db24053.job_uniform: ~59 rows (approximately) +/*!40000 ALTER TABLE `job_uniform` DISABLE KEYS */; +INSERT INTO `job_uniform` (`job_uniform_id`, `job_uniform_job`, `job_uniform_skin`, `job_uniform_enabled`, `job_uniform_minrank`, `job_uniform_name`) VALUES + (1, 1, 1, 1, 0, 'Police Officer 1'); +INSERT INTO `job_uniform` (`job_uniform_id`, `job_uniform_job`, `job_uniform_skin`, `job_uniform_enabled`, `job_uniform_minrank`, `job_uniform_name`) VALUES + (2, 1, 92, 1, 0, 'Police Officer 2'); +INSERT INTO `job_uniform` (`job_uniform_id`, `job_uniform_job`, `job_uniform_skin`, `job_uniform_enabled`, `job_uniform_minrank`, `job_uniform_name`) VALUES + (3, 2, 1, 1, 0, 'Police Officer 1'); +INSERT INTO `job_uniform` (`job_uniform_id`, `job_uniform_job`, `job_uniform_skin`, `job_uniform_enabled`, `job_uniform_minrank`, `job_uniform_name`) VALUES + (4, 2, 120, 1, 0, 'Officer Lance Vance'); +INSERT INTO `job_uniform` (`job_uniform_id`, `job_uniform_job`, `job_uniform_skin`, `job_uniform_enabled`, `job_uniform_minrank`, `job_uniform_name`) VALUES + (5, 2, 97, 1, 1, 'Detective 1'); +INSERT INTO `job_uniform` (`job_uniform_id`, `job_uniform_job`, `job_uniform_skin`, `job_uniform_enabled`, `job_uniform_minrank`, `job_uniform_name`) VALUES + (6, 2, 98, 1, 1, 'Detective 2'); +INSERT INTO `job_uniform` (`job_uniform_id`, `job_uniform_job`, `job_uniform_skin`, `job_uniform_enabled`, `job_uniform_minrank`, `job_uniform_name`) VALUES + (7, 2, 99, 1, 1, 'Detective 3'); +INSERT INTO `job_uniform` (`job_uniform_id`, `job_uniform_job`, `job_uniform_skin`, `job_uniform_enabled`, `job_uniform_minrank`, `job_uniform_name`) VALUES + (8, 2, 100, 1, 1, 'Detective 4'); +INSERT INTO `job_uniform` (`job_uniform_id`, `job_uniform_job`, `job_uniform_skin`, `job_uniform_enabled`, `job_uniform_minrank`, `job_uniform_name`) VALUES + (9, 2, 101, 1, 1, 'Detective 5'); +INSERT INTO `job_uniform` (`job_uniform_id`, `job_uniform_job`, `job_uniform_skin`, `job_uniform_enabled`, `job_uniform_minrank`, `job_uniform_name`) VALUES + (10, 2, 102, 1, 1, 'Detective 6'); +INSERT INTO `job_uniform` (`job_uniform_id`, `job_uniform_job`, `job_uniform_skin`, `job_uniform_enabled`, `job_uniform_minrank`, `job_uniform_name`) VALUES + (11, 4, 280, 1, 0, 'Los Santos Police Officer'); +INSERT INTO `job_uniform` (`job_uniform_id`, `job_uniform_job`, `job_uniform_skin`, `job_uniform_enabled`, `job_uniform_minrank`, `job_uniform_name`) VALUES + (12, 4, 281, 1, 0, 'San Fierro Police Officer'); +INSERT INTO `job_uniform` (`job_uniform_id`, `job_uniform_job`, `job_uniform_skin`, `job_uniform_enabled`, `job_uniform_minrank`, `job_uniform_name`) VALUES + (13, 4, 282, 1, 0, 'Las Venturas Police Officer'); +INSERT INTO `job_uniform` (`job_uniform_id`, `job_uniform_job`, `job_uniform_skin`, `job_uniform_enabled`, `job_uniform_minrank`, `job_uniform_name`) VALUES + (14, 4, 284, 1, 0, 'Motorcycle Cop'); +INSERT INTO `job_uniform` (`job_uniform_id`, `job_uniform_job`, `job_uniform_skin`, `job_uniform_enabled`, `job_uniform_minrank`, `job_uniform_name`) VALUES + (15, 4, 165, 1, 0, 'Detective 1'); +INSERT INTO `job_uniform` (`job_uniform_id`, `job_uniform_job`, `job_uniform_skin`, `job_uniform_enabled`, `job_uniform_minrank`, `job_uniform_name`) VALUES + (16, 4, 166, 1, 0, 'Detective 2'); +INSERT INTO `job_uniform` (`job_uniform_id`, `job_uniform_job`, `job_uniform_skin`, `job_uniform_enabled`, `job_uniform_minrank`, `job_uniform_name`) VALUES + (17, 4, 285, 1, 2, 'SWAT'); +INSERT INTO `job_uniform` (`job_uniform_id`, `job_uniform_job`, `job_uniform_skin`, `job_uniform_enabled`, `job_uniform_minrank`, `job_uniform_name`) VALUES + (18, 4, 283, 1, 3, 'Sheriff 1'); +INSERT INTO `job_uniform` (`job_uniform_id`, `job_uniform_job`, `job_uniform_skin`, `job_uniform_enabled`, `job_uniform_minrank`, `job_uniform_name`) VALUES + (19, 4, 288, 1, 3, 'Sheriff 2'); +INSERT INTO `job_uniform` (`job_uniform_id`, `job_uniform_job`, `job_uniform_skin`, `job_uniform_enabled`, `job_uniform_minrank`, `job_uniform_name`) VALUES + (20, 4, 265, 1, 0, 'Officer Frank Tenpenny'); +INSERT INTO `job_uniform` (`job_uniform_id`, `job_uniform_job`, `job_uniform_skin`, `job_uniform_enabled`, `job_uniform_minrank`, `job_uniform_name`) VALUES + (21, 4, 266, 1, 0, 'Officer Eddie Pulaski'); +INSERT INTO `job_uniform` (`job_uniform_id`, `job_uniform_job`, `job_uniform_skin`, `job_uniform_enabled`, `job_uniform_minrank`, `job_uniform_name`) VALUES + (22, 4, 267, 1, 0, 'Officer Jimmy Hernandez'); +INSERT INTO `job_uniform` (`job_uniform_id`, `job_uniform_job`, `job_uniform_skin`, `job_uniform_enabled`, `job_uniform_minrank`, `job_uniform_name`) VALUES + (23, 3, -183203150, 1, 0, 'Police Officer 1'); +INSERT INTO `job_uniform` (`job_uniform_id`, `job_uniform_job`, `job_uniform_skin`, `job_uniform_enabled`, `job_uniform_minrank`, `job_uniform_name`) VALUES + (24, 3, -1518937979, 1, 0, 'Police Officer 2'); +INSERT INTO `job_uniform` (`job_uniform_id`, `job_uniform_job`, `job_uniform_skin`, `job_uniform_enabled`, `job_uniform_minrank`, `job_uniform_name`) VALUES + (25, 3, -370395528, 1, 0, 'Fat Police Officer'); +INSERT INTO `job_uniform` (`job_uniform_id`, `job_uniform_job`, `job_uniform_skin`, `job_uniform_enabled`, `job_uniform_minrank`, `job_uniform_name`) VALUES + (26, 3, -999506922, 1, 1, 'Detective 1'); +INSERT INTO `job_uniform` (`job_uniform_id`, `job_uniform_job`, `job_uniform_skin`, `job_uniform_enabled`, `job_uniform_minrank`, `job_uniform_name`) VALUES + (27, 5, 5, 1, 0, 'Paramedic 1'); +INSERT INTO `job_uniform` (`job_uniform_id`, `job_uniform_job`, `job_uniform_skin`, `job_uniform_enabled`, `job_uniform_minrank`, `job_uniform_name`) VALUES + (28, 5, 72, 1, 0, 'Paramedic 2'); +INSERT INTO `job_uniform` (`job_uniform_id`, `job_uniform_job`, `job_uniform_skin`, `job_uniform_enabled`, `job_uniform_minrank`, `job_uniform_name`) VALUES + (29, 5, 73, 1, 0, 'Paramedic 3'); +INSERT INTO `job_uniform` (`job_uniform_id`, `job_uniform_job`, `job_uniform_skin`, `job_uniform_enabled`, `job_uniform_minrank`, `job_uniform_name`) VALUES + (30, 6, 5, 1, 0, 'Paramedic 1'); +INSERT INTO `job_uniform` (`job_uniform_id`, `job_uniform_job`, `job_uniform_skin`, `job_uniform_enabled`, `job_uniform_minrank`, `job_uniform_name`) VALUES + (31, 6, 5, 1, 0, 'Paramedic 1'); +INSERT INTO `job_uniform` (`job_uniform_id`, `job_uniform_job`, `job_uniform_skin`, `job_uniform_enabled`, `job_uniform_minrank`, `job_uniform_name`) VALUES + (32, 7, -1175077216, 1, 0, 'Paramedic 1'); +INSERT INTO `job_uniform` (`job_uniform_id`, `job_uniform_job`, `job_uniform_skin`, `job_uniform_enabled`, `job_uniform_minrank`, `job_uniform_name`) VALUES + (33, 8, 274, 1, 0, 'Paramedic 1'); +INSERT INTO `job_uniform` (`job_uniform_id`, `job_uniform_job`, `job_uniform_skin`, `job_uniform_enabled`, `job_uniform_minrank`, `job_uniform_name`) VALUES + (34, 8, 275, 1, 0, 'Paramedic 2'); +INSERT INTO `job_uniform` (`job_uniform_id`, `job_uniform_job`, `job_uniform_skin`, `job_uniform_enabled`, `job_uniform_minrank`, `job_uniform_name`) VALUES + (35, 8, 276, 1, 0, 'Paramedic 3'); +INSERT INTO `job_uniform` (`job_uniform_id`, `job_uniform_job`, `job_uniform_skin`, `job_uniform_enabled`, `job_uniform_minrank`, `job_uniform_name`) VALUES + (36, 11, -610224615, 1, 0, 'Firefighter'); +INSERT INTO `job_uniform` (`job_uniform_id`, `job_uniform_job`, `job_uniform_skin`, `job_uniform_enabled`, `job_uniform_minrank`, `job_uniform_name`) VALUES + (37, 11, 610888851, 1, 0, 'Fire Chief'); +INSERT INTO `job_uniform` (`job_uniform_id`, `job_uniform_job`, `job_uniform_skin`, `job_uniform_enabled`, `job_uniform_minrank`, `job_uniform_name`) VALUES + (38, 11, 277, 1, 0, 'Firefighter 1'); +INSERT INTO `job_uniform` (`job_uniform_id`, `job_uniform_job`, `job_uniform_skin`, `job_uniform_enabled`, `job_uniform_minrank`, `job_uniform_name`) VALUES + (39, 12, 278, 1, 0, 'Firefighter 2'); +INSERT INTO `job_uniform` (`job_uniform_id`, `job_uniform_job`, `job_uniform_skin`, `job_uniform_enabled`, `job_uniform_minrank`, `job_uniform_name`) VALUES + (40, 12, 279, 1, 0, 'Firefighter 3'); +INSERT INTO `job_uniform` (`job_uniform_id`, `job_uniform_job`, `job_uniform_skin`, `job_uniform_enabled`, `job_uniform_minrank`, `job_uniform_name`) VALUES + (42, 13, 8, 1, 0, 'Taxi Driver 1'); +INSERT INTO `job_uniform` (`job_uniform_id`, `job_uniform_job`, `job_uniform_skin`, `job_uniform_enabled`, `job_uniform_minrank`, `job_uniform_name`) VALUES + (43, 14, 8, 1, 0, 'Taxi Driver 1'); +INSERT INTO `job_uniform` (`job_uniform_id`, `job_uniform_job`, `job_uniform_skin`, `job_uniform_enabled`, `job_uniform_minrank`, `job_uniform_name`) VALUES + (44, 16, 7, 1, 0, 'Taxi Driver 1'); +INSERT INTO `job_uniform` (`job_uniform_id`, `job_uniform_job`, `job_uniform_skin`, `job_uniform_enabled`, `job_uniform_minrank`, `job_uniform_name`) VALUES + (45, 16, 142, 1, 0, 'Taxi Driver 2'); +INSERT INTO `job_uniform` (`job_uniform_id`, `job_uniform_job`, `job_uniform_skin`, `job_uniform_enabled`, `job_uniform_minrank`, `job_uniform_name`) VALUES + (46, 17, 8, 1, 0, 'Bus Driver 1'); +INSERT INTO `job_uniform` (`job_uniform_id`, `job_uniform_job`, `job_uniform_skin`, `job_uniform_enabled`, `job_uniform_minrank`, `job_uniform_name`) VALUES + (47, 18, 8, 1, 0, 'Bus Driver 1'); +INSERT INTO `job_uniform` (`job_uniform_id`, `job_uniform_job`, `job_uniform_skin`, `job_uniform_enabled`, `job_uniform_minrank`, `job_uniform_name`) VALUES + (48, 20, 7, 1, 0, 'Bus Driver 1'); +INSERT INTO `job_uniform` (`job_uniform_id`, `job_uniform_job`, `job_uniform_skin`, `job_uniform_enabled`, `job_uniform_minrank`, `job_uniform_name`) VALUES + (49, 20, 142, 1, 0, 'Bus Driver 2'); +INSERT INTO `job_uniform` (`job_uniform_id`, `job_uniform_job`, `job_uniform_skin`, `job_uniform_enabled`, `job_uniform_minrank`, `job_uniform_name`) VALUES + (50, 21, 53, 1, 0, 'Garbage Collector 1'); +INSERT INTO `job_uniform` (`job_uniform_id`, `job_uniform_job`, `job_uniform_skin`, `job_uniform_enabled`, `job_uniform_minrank`, `job_uniform_name`) VALUES + (51, 21, 54, 1, 0, 'Garbage Collector 2'); +INSERT INTO `job_uniform` (`job_uniform_id`, `job_uniform_job`, `job_uniform_skin`, `job_uniform_enabled`, `job_uniform_minrank`, `job_uniform_name`) VALUES + (52, 22, 53, 1, 0, 'Garbage Collector 1'); +INSERT INTO `job_uniform` (`job_uniform_id`, `job_uniform_job`, `job_uniform_skin`, `job_uniform_enabled`, `job_uniform_minrank`, `job_uniform_name`) VALUES + (53, 22, 54, 1, 0, 'Garbage Collector 2'); +INSERT INTO `job_uniform` (`job_uniform_id`, `job_uniform_job`, `job_uniform_skin`, `job_uniform_enabled`, `job_uniform_minrank`, `job_uniform_name`) VALUES + (54, 24, 16, 1, 0, 'Garbage Collector 1'); +INSERT INTO `job_uniform` (`job_uniform_id`, `job_uniform_job`, `job_uniform_skin`, `job_uniform_enabled`, `job_uniform_minrank`, `job_uniform_name`) VALUES + (55, 23, 1136499716, 1, 0, 'Garbage Collector 1'); +INSERT INTO `job_uniform` (`job_uniform_id`, `job_uniform_job`, `job_uniform_skin`, `job_uniform_enabled`, `job_uniform_minrank`, `job_uniform_name`) VALUES + (56, 19, 134077503, 1, 0, 'Bus Driver 1'); +INSERT INTO `job_uniform` (`job_uniform_id`, `job_uniform_job`, `job_uniform_skin`, `job_uniform_enabled`, `job_uniform_minrank`, `job_uniform_name`) VALUES + (57, 15, 8772846, 1, 0, 'Taxi Driver 1'); +INSERT INTO `job_uniform` (`job_uniform_id`, `job_uniform_job`, `job_uniform_skin`, `job_uniform_enabled`, `job_uniform_minrank`, `job_uniform_name`) VALUES + (58, 3, -89302119, 1, 3, 'State Trooper'); +INSERT INTO `job_uniform` (`job_uniform_id`, `job_uniform_job`, `job_uniform_skin`, `job_uniform_enabled`, `job_uniform_minrank`, `job_uniform_name`) VALUES + (59, 3, -1004762946, 1, 2, 'SWAT'); +INSERT INTO `job_uniform` (`job_uniform_id`, `job_uniform_job`, `job_uniform_skin`, `job_uniform_enabled`, `job_uniform_minrank`, `job_uniform_name`) VALUES + (60, 2, 166, 1, 0, 'Officer Tommy Vercetti'); +/*!40000 ALTER TABLE `job_uniform` ENABLE KEYS */; + +-- Dumping structure for table db24053.job_wl +CREATE TABLE IF NOT EXISTS `job_wl` ( + `job_wl_id` int(11) NOT NULL AUTO_INCREMENT, + `job_wl_job` int(11) NOT NULL DEFAULT '0', + `job_wl_acct` int(11) NOT NULL DEFAULT '0', + `job_wl_who_added` int(11) NOT NULL DEFAULT '0', + `job_wl_when_added` int(11) NOT NULL DEFAULT '0', + `job_wl_enabled` int(11) NOT NULL DEFAULT '1', + PRIMARY KEY (`job_wl_id`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Jobs - Whitelist'; + +-- Dumping data for table db24053.job_wl: ~0 rows (approximately) +/*!40000 ALTER TABLE `job_wl` DISABLE KEYS */; +/*!40000 ALTER TABLE `job_wl` ENABLE KEYS */; + +-- Dumping structure for table db24053.log_admin +CREATE TABLE IF NOT EXISTS `log_admin` ( + `log_admin_id` int(11) NOT NULL AUTO_INCREMENT, + `log_admin_target` int(11) NOT NULL DEFAULT '0', + `log_admin_msg` varchar(128) NOT NULL DEFAULT '', + `log_admin_type` int(11) NOT NULL DEFAULT '0', + `log_admin_admin` int(11) NOT NULL DEFAULT '0', + `log_admin_timestamp` int(32) NOT NULL DEFAULT '0', + PRIMARY KEY (`log_admin_id`) +) ENGINE=InnoDB DEFAULT CHARSET=latin1 COMMENT='Log - Admin Actions'; + +-- Dumping data for table db24053.log_admin: ~0 rows (approximately) +/*!40000 ALTER TABLE `log_admin` DISABLE KEYS */; +/*!40000 ALTER TABLE `log_admin` ENABLE KEYS */; + +-- Dumping structure for table db24053.log_chat +CREATE TABLE IF NOT EXISTS `log_chat` ( + `log_chat_id` int(11) NOT NULL AUTO_INCREMENT, + `log_chat_server` int(11) NOT NULL DEFAULT '0', + `log_chat_sacct` int(11) NOT NULL DEFAULT '0', + `log_chat_type` int(11) NOT NULL DEFAULT '0', + `log_chat_msg` varchar(128) NOT NULL DEFAULT '', + `log_chat_timestamp` int(32) NOT NULL DEFAULT '0', + PRIMARY KEY (`log_chat_id`) +) ENGINE=InnoDB DEFAULT CHARSET=latin1 COMMENT='Log - Game Chat'; + +-- Dumping data for table db24053.log_chat: ~0 rows (approximately) +/*!40000 ALTER TABLE `log_chat` DISABLE KEYS */; +/*!40000 ALTER TABLE `log_chat` ENABLE KEYS */; + +-- Dumping structure for table db24053.log_conn +CREATE TABLE IF NOT EXISTS `log_conn` ( + `log_conn_id` int(11) NOT NULL AUTO_INCREMENT, + `log_conn_name` varchar(64) NOT NULL DEFAULT 'Unknown', + `log_conn_server` int(11) NOT NULL DEFAULT '0', + `log_conn_ip` int(11) NOT NULL DEFAULT '0', + `log_conn_when_connect` int(32) NOT NULL DEFAULT '0', + `log_conn_when_disconnect` int(32) NOT NULL DEFAULT '0', + `log_conn_gameversion` int(11) NOT NULL DEFAULT '0', + PRIMARY KEY (`log_conn_id`) +) ENGINE=InnoDB DEFAULT CHARSET=latin1 COMMENT='Log - Connections'; + +-- Dumping data for table db24053.log_conn: ~0 rows (approximately) +/*!40000 ALTER TABLE `log_conn` DISABLE KEYS */; +/*!40000 ALTER TABLE `log_conn` ENABLE KEYS */; + +-- Dumping structure for table db24053.log_death +CREATE TABLE IF NOT EXISTS `log_death` ( + `log_death_id` int(11) NOT NULL AUTO_INCREMENT, + `log_death_server` int(11) NOT NULL DEFAULT '0', + `log_death_who_died` int(11) NOT NULL DEFAULT '0', + `log_death_who_killed` int(11) NOT NULL DEFAULT '0', + `log_death_timestamp` int(32) NOT NULL DEFAULT '0', + `log_death_pedpiece` int(11) NOT NULL DEFAULT '0', + `log_death_weapon` int(11) NOT NULL DEFAULT '0', + PRIMARY KEY (`log_death_id`) +) ENGINE=InnoDB DEFAULT CHARSET=latin1 COMMENT='Log - Deaths'; + +-- Dumping data for table db24053.log_death: ~0 rows (approximately) +/*!40000 ALTER TABLE `log_death` DISABLE KEYS */; +/*!40000 ALTER TABLE `log_death` ENABLE KEYS */; + +-- Dumping structure for table db24053.log_pns +CREATE TABLE IF NOT EXISTS `log_pns` ( + `log_pns_id` int(11) NOT NULL AUTO_INCREMENT, + `log_pns_pns` int(11) DEFAULT '0', + `log_pns_when_used` int(32) DEFAULT '0', + `log_pns_conn` int(11) DEFAULT '0', + `log_pns_veh` int(11) DEFAULT '0', + `log_pns_action` float DEFAULT '0', + `log_pns_paid` int(11) DEFAULT '0', + `log_pns_detail` int(11) DEFAULT '0', + PRIMARY KEY (`log_pns_id`) +) ENGINE=InnoDB DEFAULT CHARSET=latin1 COMMENT='Log - Pay and Spray'; + +-- Dumping data for table db24053.log_pns: ~0 rows (approximately) +/*!40000 ALTER TABLE `log_pns` DISABLE KEYS */; +/*!40000 ALTER TABLE `log_pns` ENABLE KEYS */; + +-- Dumping structure for table db24053.npc_cond +CREATE TABLE IF NOT EXISTS `npc_cond` ( + `npc_cond_id` int(11) NOT NULL AUTO_INCREMENT, + `npc_cond_npc` int(11) NOT NULL DEFAULT '0', + `npc_cond_trig` int(11) NOT NULL DEFAULT '0', + `npc_cond_type` int(11) NOT NULL DEFAULT '0', + `npc_cond_data` varchar(11) NOT NULL DEFAULT '0', + `npc_cond_logic` varchar(11) NOT NULL DEFAULT '0', + `npc_cond_enabled` tinyint(1) NOT NULL DEFAULT '1', + PRIMARY KEY (`npc_cond_id`) +) ENGINE=InnoDB DEFAULT CHARSET=latin1 COMMENT='NPCs - Action Conditions'; + +-- Dumping data for table db24053.npc_cond: ~0 rows (approximately) +/*!40000 ALTER TABLE `npc_cond` DISABLE KEYS */; +/*!40000 ALTER TABLE `npc_cond` ENABLE KEYS */; + +-- Dumping structure for table db24053.npc_main +CREATE TABLE IF NOT EXISTS `npc_main` ( + `npc_id` int(11) NOT NULL AUTO_INCREMENT, + `npc_server` tinyint(2) NOT NULL DEFAULT '0', + `npc_name` varchar(128) NOT NULL DEFAULT '', + `npc_model` int(11) NOT NULL DEFAULT '0', + `npc_type_flags` int(32) NOT NULL DEFAULT '0', + `npc_ped_health` int(4) NOT NULL DEFAULT '100', + `npc_ped_armour` int(4) NOT NULL DEFAULT '0', + `npc_ped_threats` int(32) NOT NULL DEFAULT '0', + `npc_ped_heedthreats` tinyint(1) NOT NULL DEFAULT '0', + `npc_ped_stay` tinyint(1) NOT NULL DEFAULT '1', + `npc_ped_walkstyle` int(11) NOT NULL DEFAULT '0', + `npc_owner_type` int(11) DEFAULT NULL, + `npc_owner_id` int(11) DEFAULT NULL, + PRIMARY KEY (`npc_id`) +) ENGINE=InnoDB DEFAULT CHARSET=latin1 COMMENT='NPCs'; + +-- Dumping data for table db24053.npc_main: ~0 rows (approximately) +/*!40000 ALTER TABLE `npc_main` DISABLE KEYS */; +/*!40000 ALTER TABLE `npc_main` ENABLE KEYS */; + +-- Dumping structure for table db24053.npc_resp +CREATE TABLE IF NOT EXISTS `npc_resp` ( + `npc_resp_id` int(11) NOT NULL AUTO_INCREMENT, + `npc_resp_npc` int(11) NOT NULL DEFAULT '0', + `npc_resp_type` int(11) NOT NULL DEFAULT '0', + `npc_resp_trig` int(11) NOT NULL DEFAULT '0', + `npc_resp_data` varchar(11) NOT NULL DEFAULT '0', + `npc_resp_logic` varchar(11) NOT NULL DEFAULT '0', + `npc_resp_enabled` tinyint(1) NOT NULL DEFAULT '1', + PRIMARY KEY (`npc_resp_id`) +) ENGINE=InnoDB DEFAULT CHARSET=latin1 COMMENT='NPCs - Action Responses'; + +-- Dumping data for table db24053.npc_resp: ~0 rows (approximately) +/*!40000 ALTER TABLE `npc_resp` DISABLE KEYS */; +/*!40000 ALTER TABLE `npc_resp` ENABLE KEYS */; + +-- Dumping structure for table db24053.npc_trig +CREATE TABLE IF NOT EXISTS `npc_trig` ( + `npc_trig_id` int(11) NOT NULL AUTO_INCREMENT, + `npc_trig_npc` int(11) NOT NULL DEFAULT '0', + `npc_trig_type` int(11) NOT NULL DEFAULT '0', + `npc_trig_enabled` tinyint(1) NOT NULL DEFAULT '1', + PRIMARY KEY (`npc_trig_id`) +) ENGINE=InnoDB DEFAULT CHARSET=latin1 COMMENT='NPCs - Action Triggers'; + +-- Dumping data for table db24053.npc_trig: ~0 rows (approximately) +/*!40000 ALTER TABLE `npc_trig` DISABLE KEYS */; +/*!40000 ALTER TABLE `npc_trig` ENABLE KEYS */; + +-- Dumping structure for table db24053.sacct_main +CREATE TABLE IF NOT EXISTS `sacct_main` ( + `sacct_id` int(11) NOT NULL AUTO_INCREMENT, + `sacct_acct` int(11) NOT NULL DEFAULT '0', + `sacct_server` int(11) NOT NULL DEFAULT '0', + `sacct_name_first` varchar(50) NOT NULL DEFAULT '', + `sacct_name_last` varchar(50) NOT NULL DEFAULT '', + `sacct_name_middle` varchar(50) NOT NULL DEFAULT '', + `sacct_when_born` varchar(50) NOT NULL DEFAULT '', + `sacct_origin` varchar(50) NOT NULL DEFAULT '', + `sacct_job` int(11) NOT NULL DEFAULT '0', + `sacct_clan` int(11) NOT NULL DEFAULT '0', + `sacct_clan_rank` int(11) NOT NULL DEFAULT '0', + `sacct_clan_title` varchar(32) NOT NULL DEFAULT '', + `sacct_last_ip` int(11) NOT NULL DEFAULT '0', + `sacct_last_uid` varchar(128) NOT NULL DEFAULT '', + `sacct_total_time` int(11) NOT NULL DEFAULT '0', + `sacct_pos_x` float NOT NULL DEFAULT '0', + `sacct_pos_y` float NOT NULL DEFAULT '0', + `sacct_pos_z` float NOT NULL DEFAULT '0', + `sacct_angle` float NOT NULL DEFAULT '0', + `sacct_cash` int(11) NOT NULL DEFAULT '0', + `sacct_bank` int(11) NOT NULL DEFAULT '0', + `sacct_skin` int(11) NOT NULL DEFAULT '0', + `sacct_health` int(11) NOT NULL DEFAULT '0', + `sacct_armour` int(11) NOT NULL DEFAULT '0', + `sacct_licenses` int(11) NOT NULL DEFAULT '0', + `sacct_last_session` int(11) NOT NULL DEFAULT '0', + `sacct_when_made` int(11) NOT NULL DEFAULT '0', + `sacct_when_lastlogin` int(11) NOT NULL DEFAULT '0', + `sacct_arrest_state` int(11) NOT NULL DEFAULT '0', + `sacct_arrest_time` int(11) NOT NULL DEFAULT '0', + `sacct_iv_head_model` int(11) NOT NULL DEFAULT '0', + `sacct_iv_head_texture` int(11) NOT NULL DEFAULT '0', + `sacct_iv_upper_model` int(11) NOT NULL DEFAULT '0', + `sacct_iv_upper_texture` int(11) NOT NULL DEFAULT '0', + `sacct_iv_lower_model` int(11) NOT NULL DEFAULT '0', + `sacct_iv_lower_texture` int(11) NOT NULL DEFAULT '0', + `sacct_iv_feet_model` int(11) NOT NULL DEFAULT '0', + `sacct_iv_feet_texture` int(11) NOT NULL DEFAULT '0', + `sacct_iv_hands_model` int(11) NOT NULL DEFAULT '0', + `sacct_iv_hands_texture` int(11) NOT NULL DEFAULT '0', + `sacct_int` int(11) NOT NULL DEFAULT '0', + `sacct_vw` int(11) NOT NULL DEFAULT '0', + `sacct_needs_setup` int(11) NOT NULL DEFAULT '0', + PRIMARY KEY (`sacct_id`) +) ENGINE=InnoDB AUTO_INCREMENT=12 DEFAULT CHARSET=latin1 COMMENT='Sub Accounts (Characters)'; + +-- Dumping data for table db24053.sacct_main: ~7 rows (approximately) +/*!40000 ALTER TABLE `sacct_main` DISABLE KEYS */; +INSERT INTO `sacct_main` (`sacct_id`, `sacct_acct`, `sacct_server`, `sacct_name_first`, `sacct_name_last`, `sacct_name_middle`, `sacct_when_born`, `sacct_origin`, `sacct_job`, `sacct_clan`, `sacct_clan_rank`, `sacct_clan_title`, `sacct_last_ip`, `sacct_last_uid`, `sacct_total_time`, `sacct_pos_x`, `sacct_pos_y`, `sacct_pos_z`, `sacct_angle`, `sacct_cash`, `sacct_bank`, `sacct_skin`, `sacct_health`, `sacct_armour`, `sacct_licenses`, `sacct_last_session`, `sacct_when_made`, `sacct_when_lastlogin`, `sacct_arrest_state`, `sacct_arrest_time`, `sacct_iv_head_model`, `sacct_iv_head_texture`, `sacct_iv_upper_model`, `sacct_iv_upper_texture`, `sacct_iv_lower_model`, `sacct_iv_lower_texture`, `sacct_iv_feet_model`, `sacct_iv_feet_texture`, `sacct_iv_hands_model`, `sacct_iv_hands_texture`, `sacct_int`, `sacct_vw`, `sacct_needs_setup`) VALUES + (1, 1, 1, 'Ryan', 'Stokes', '', '1/1/2019', 'San Andreas', 0, 0, 0, '', 0, '', 0, 1093.9, -65.0327, 7.52516, 1.57879, 1000, 0, 109, 100, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `sacct_main` (`sacct_id`, `sacct_acct`, `sacct_server`, `sacct_name_first`, `sacct_name_last`, `sacct_name_middle`, `sacct_when_born`, `sacct_origin`, `sacct_job`, `sacct_clan`, `sacct_clan_rank`, `sacct_clan_title`, `sacct_last_ip`, `sacct_last_uid`, `sacct_total_time`, `sacct_pos_x`, `sacct_pos_y`, `sacct_pos_z`, `sacct_angle`, `sacct_cash`, `sacct_bank`, `sacct_skin`, `sacct_health`, `sacct_armour`, `sacct_licenses`, `sacct_last_session`, `sacct_when_made`, `sacct_when_lastlogin`, `sacct_arrest_state`, `sacct_arrest_time`, `sacct_iv_head_model`, `sacct_iv_head_texture`, `sacct_iv_upper_model`, `sacct_iv_upper_texture`, `sacct_iv_lower_model`, `sacct_iv_lower_texture`, `sacct_iv_feet_model`, `sacct_iv_feet_texture`, `sacct_iv_hands_model`, `sacct_iv_hands_texture`, `sacct_int`, `sacct_vw`, `sacct_needs_setup`) VALUES + (2, 1, 3, 'Takeshi', 'Mikio', '', '01/01/1901', 'Liberty City', 0, 0, 0, '', 0, '', 0, 2333.75, 332.785, 6.08384, 3.02664, 1000, 0, -2020305438, 100, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `sacct_main` (`sacct_id`, `sacct_acct`, `sacct_server`, `sacct_name_first`, `sacct_name_last`, `sacct_name_middle`, `sacct_when_born`, `sacct_origin`, `sacct_job`, `sacct_clan`, `sacct_clan_rank`, `sacct_clan_title`, `sacct_last_ip`, `sacct_last_uid`, `sacct_total_time`, `sacct_pos_x`, `sacct_pos_y`, `sacct_pos_z`, `sacct_angle`, `sacct_cash`, `sacct_bank`, `sacct_skin`, `sacct_health`, `sacct_armour`, `sacct_licenses`, `sacct_last_session`, `sacct_when_made`, `sacct_when_lastlogin`, `sacct_arrest_state`, `sacct_arrest_time`, `sacct_iv_head_model`, `sacct_iv_head_texture`, `sacct_iv_upper_model`, `sacct_iv_upper_texture`, `sacct_iv_lower_model`, `sacct_iv_lower_texture`, `sacct_iv_feet_model`, `sacct_iv_feet_texture`, `sacct_iv_hands_model`, `sacct_iv_hands_texture`, `sacct_int`, `sacct_vw`, `sacct_needs_setup`) VALUES + (3, 1, 2, 'Ryan', 'Nashton', '', '12/7/1990', 'Los Santos', 0, 0, 0, '', 0, '', 0, -1154.97, 6.19507, 10.8889, -1.56933, 1000, 0, 181, 100, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `sacct_main` (`sacct_id`, `sacct_acct`, `sacct_server`, `sacct_name_first`, `sacct_name_last`, `sacct_name_middle`, `sacct_when_born`, `sacct_origin`, `sacct_job`, `sacct_clan`, `sacct_clan_rank`, `sacct_clan_title`, `sacct_last_ip`, `sacct_last_uid`, `sacct_total_time`, `sacct_pos_x`, `sacct_pos_y`, `sacct_pos_z`, `sacct_angle`, `sacct_cash`, `sacct_bank`, `sacct_skin`, `sacct_health`, `sacct_armour`, `sacct_licenses`, `sacct_last_session`, `sacct_when_made`, `sacct_when_lastlogin`, `sacct_arrest_state`, `sacct_arrest_time`, `sacct_iv_head_model`, `sacct_iv_head_texture`, `sacct_iv_upper_model`, `sacct_iv_upper_texture`, `sacct_iv_lower_model`, `sacct_iv_lower_texture`, `sacct_iv_feet_model`, `sacct_iv_feet_texture`, `sacct_iv_hands_model`, `sacct_iv_hands_texture`, `sacct_int`, `sacct_vw`, `sacct_needs_setup`) VALUES + (4, 1, 4, 'Tom', 'Willard', '', '01/01/1901', 'Liberty City', 4, 0, 0, '', 0, '', 0, 550.456, -1288.85, 17.2482, 1.63642, 1000, 0, 240, 100, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `sacct_main` (`sacct_id`, `sacct_acct`, `sacct_server`, `sacct_name_first`, `sacct_name_last`, `sacct_name_middle`, `sacct_when_born`, `sacct_origin`, `sacct_job`, `sacct_clan`, `sacct_clan_rank`, `sacct_clan_title`, `sacct_last_ip`, `sacct_last_uid`, `sacct_total_time`, `sacct_pos_x`, `sacct_pos_y`, `sacct_pos_z`, `sacct_angle`, `sacct_cash`, `sacct_bank`, `sacct_skin`, `sacct_health`, `sacct_armour`, `sacct_licenses`, `sacct_last_session`, `sacct_when_made`, `sacct_when_lastlogin`, `sacct_arrest_state`, `sacct_arrest_time`, `sacct_iv_head_model`, `sacct_iv_head_texture`, `sacct_iv_upper_model`, `sacct_iv_upper_texture`, `sacct_iv_lower_model`, `sacct_iv_lower_texture`, `sacct_iv_feet_model`, `sacct_iv_feet_texture`, `sacct_iv_hands_model`, `sacct_iv_hands_texture`, `sacct_int`, `sacct_vw`, `sacct_needs_setup`) VALUES + (5, 1, 2, 'Tony', 'Martinelli', '', '1/1/2019', 'Los Santos', 0, 0, 0, '', 0, '', 0, -985.508, -888.712, 12.9634, 0.768961, 1000, 0, 15, 100, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `sacct_main` (`sacct_id`, `sacct_acct`, `sacct_server`, `sacct_name_first`, `sacct_name_last`, `sacct_name_middle`, `sacct_when_born`, `sacct_origin`, `sacct_job`, `sacct_clan`, `sacct_clan_rank`, `sacct_clan_title`, `sacct_last_ip`, `sacct_last_uid`, `sacct_total_time`, `sacct_pos_x`, `sacct_pos_y`, `sacct_pos_z`, `sacct_angle`, `sacct_cash`, `sacct_bank`, `sacct_skin`, `sacct_health`, `sacct_armour`, `sacct_licenses`, `sacct_last_session`, `sacct_when_made`, `sacct_when_lastlogin`, `sacct_arrest_state`, `sacct_arrest_time`, `sacct_iv_head_model`, `sacct_iv_head_texture`, `sacct_iv_upper_model`, `sacct_iv_upper_texture`, `sacct_iv_lower_model`, `sacct_iv_lower_texture`, `sacct_iv_feet_model`, `sacct_iv_feet_texture`, `sacct_iv_hands_model`, `sacct_iv_hands_texture`, `sacct_int`, `sacct_vw`, `sacct_needs_setup`) VALUES + (6, 1, 4, 'Paul', 'Wilson', '', '01/01/1901', 'Liberty City', 0, 0, 0, '', 0, '', 0, 1632.49, -2331.96, 13.547, -0.005, 1000, 0, 26, 100, 0, 0, 0, 1608269983, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `sacct_main` (`sacct_id`, `sacct_acct`, `sacct_server`, `sacct_name_first`, `sacct_name_last`, `sacct_name_middle`, `sacct_when_born`, `sacct_origin`, `sacct_job`, `sacct_clan`, `sacct_clan_rank`, `sacct_clan_title`, `sacct_last_ip`, `sacct_last_uid`, `sacct_total_time`, `sacct_pos_x`, `sacct_pos_y`, `sacct_pos_z`, `sacct_angle`, `sacct_cash`, `sacct_bank`, `sacct_skin`, `sacct_health`, `sacct_armour`, `sacct_licenses`, `sacct_last_session`, `sacct_when_made`, `sacct_when_lastlogin`, `sacct_arrest_state`, `sacct_arrest_time`, `sacct_iv_head_model`, `sacct_iv_head_texture`, `sacct_iv_upper_model`, `sacct_iv_upper_texture`, `sacct_iv_lower_model`, `sacct_iv_lower_texture`, `sacct_iv_feet_model`, `sacct_iv_feet_texture`, `sacct_iv_hands_model`, `sacct_iv_hands_texture`, `sacct_int`, `sacct_vw`, `sacct_needs_setup`) VALUES + (11, 2, 4, 'Maxle', 'Face', '', '01/01/1901', 'Liberty City', 4, 0, 0, '', 0, '', 0, 1376, -1231.92, 13.5469, -2.07873, 1000, 0, 26, 100, 0, 0, 0, 1608346070, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +/*!40000 ALTER TABLE `sacct_main` ENABLE KEYS */; + +-- Dumping structure for table db24053.sacct_pay +CREATE TABLE IF NOT EXISTS `sacct_pay` ( + `sacct_pay_id` int(11) NOT NULL AUTO_INCREMENT, + `sacct_pay_server` int(11) NOT NULL DEFAULT '0', + `sacct_pay_from_sacct_id` int(11) NOT NULL DEFAULT '0', + `sacct_pay_to_sacct_id` int(11) NOT NULL DEFAULT '0', + `sacct_pay_amount` int(11) NOT NULL DEFAULT '0', + `sacct_pay_when` int(32) NOT NULL DEFAULT '0', + `sacct_pay_pos_x` float NOT NULL DEFAULT '0', + `sacct_pay_pos_y` float NOT NULL DEFAULT '0', + `sacct_pay_pos_z` float NOT NULL DEFAULT '0', + PRIMARY KEY (`sacct_pay_id`) +) ENGINE=InnoDB DEFAULT CHARSET=latin1 COMMENT='Sub Accounts - Cash Exchanges'; + +-- Dumping data for table db24053.sacct_pay: ~0 rows (approximately) +/*!40000 ALTER TABLE `sacct_pay` DISABLE KEYS */; +/*!40000 ALTER TABLE `sacct_pay` ENABLE KEYS */; + +-- Dumping structure for table db24053.sacct_stat +CREATE TABLE IF NOT EXISTS `sacct_stat` ( + `sacct_stat_id` int(32) NOT NULL DEFAULT '0', + `sacct_stat_sacct` int(32) NOT NULL DEFAULT '0', + `sacct_stat_max_kill_streak` int(32) NOT NULL DEFAULT '0', + `sacct_stat_furthest_headshot` float NOT NULL DEFAULT '0', + `sacct_stat_packages_picked` int(32) NOT NULL DEFAULT '0', + `sacct_stat_health_picked` int(32) NOT NULL DEFAULT '0', + `sacct_stat_weapons_picked` int(32) NOT NULL DEFAULT '0', + `sacct_stat_armour_picked` int(32) NOT NULL DEFAULT '0', + `sacct_stat_distance_foot` float NOT NULL DEFAULT '0', + `sacct_stat_distance_car` float NOT NULL DEFAULT '0', + `sacct_stat_distance_boat` float NOT NULL DEFAULT '0', + `sacct_stat_distance_plane` float NOT NULL DEFAULT '0', + `sacct_stat_longest_server_time` int(32) NOT NULL DEFAULT '0', + `sacct_stat_veh_resprays` int(32) NOT NULL DEFAULT '0', + `sacct_stat_wanted_veh_resprays` int(32) NOT NULL DEFAULT '0', + `sacct_stat_spent_on_weapons` int(32) NOT NULL DEFAULT '0', + `sacct_stat_weapons_purchased` int(32) NOT NULL DEFAULT '0', + `sacct_stat_businesses_purchased` int(32) NOT NULL DEFAULT '0', + `sacct_stat_houses_purchased` int(32) NOT NULL DEFAULT '0', + `sacct_stat_times_busted` int(32) NOT NULL DEFAULT '0', + `sacct_stat_stars_obtained` int(32) NOT NULL DEFAULT '0', + `sacct_stat_stars_evaded` int(32) NOT NULL DEFAULT '0', + `sacct_stat_highest_wanted_level` int(32) NOT NULL DEFAULT '0', + PRIMARY KEY (`sacct_stat_id`) +) ENGINE=InnoDB DEFAULT CHARSET=latin1 COMMENT='Subaccounts - Stats'; + +-- Dumping data for table db24053.sacct_stat: ~0 rows (approximately) +/*!40000 ALTER TABLE `sacct_stat` DISABLE KEYS */; +/*!40000 ALTER TABLE `sacct_stat` ENABLE KEYS */; + +-- Dumping structure for table db24053.sus_main +CREATE TABLE IF NOT EXISTS `sus_main` ( + `sus_id` int(11) NOT NULL AUTO_INCREMENT, + `sus_server` tinyint(2) NOT NULL DEFAULT '0', + `sus_suspect` int(11) NOT NULL DEFAULT '0', + `sus_officer` int(11) NOT NULL DEFAULT '0', + `sus_minutes` int(11) NOT NULL DEFAULT '0', + `sus_reason` varchar(128) NOT NULL DEFAULT '', + `sus_state` int(11) NOT NULL DEFAULT '0', + PRIMARY KEY (`sus_id`) +) ENGINE=InnoDB DEFAULT CHARSET=latin1 COMMENT='Crimes'; + +-- Dumping data for table db24053.sus_main: ~0 rows (approximately) +/*!40000 ALTER TABLE `sus_main` DISABLE KEYS */; +/*!40000 ALTER TABLE `sus_main` ENABLE KEYS */; + +-- Dumping structure for table db24053.svr_main +CREATE TABLE IF NOT EXISTS `svr_main` ( + `svr_id` int(11) NOT NULL AUTO_INCREMENT, + `svr_name` varchar(50) NOT NULL DEFAULT '0', + `svr_game` int(11) NOT NULL DEFAULT '0', + `svr_port` int(11) NOT NULL DEFAULT '0', + `svr_password` varchar(50) NOT NULL DEFAULT '0', + `svr_start_time_hour` int(11) NOT NULL DEFAULT '0', + `svr_start_time_min` int(11) NOT NULL DEFAULT '0', + `svr_start_weather` int(11) NOT NULL DEFAULT '0', + `svr_start_snow_falling` int(11) NOT NULL DEFAULT '0', + `svr_start_snow_ground` float NOT NULL DEFAULT '0', + `svr_newchar_pos_x` float NOT NULL DEFAULT '0', + `svr_newchar_pos_y` float NOT NULL DEFAULT '0', + `svr_newchar_pos_z` float NOT NULL DEFAULT '0', + `svr_newchar_rot_z` float NOT NULL DEFAULT '0', + `svr_newchar_money` int(11) NOT NULL DEFAULT '0', + `svr_newchar_bank` int(11) NOT NULL DEFAULT '0', + `svr_newchar_skin` int(11) NOT NULL DEFAULT '0', + `svr_manager` int(11) NOT NULL DEFAULT '0', + `svr_connectcam_pos_x` float NOT NULL DEFAULT '0', + `svr_connectcam_pos_y` float NOT NULL DEFAULT '0', + `svr_connectcam_pos_z` float NOT NULL DEFAULT '0', + `svr_connectcam_lookat_x` float NOT NULL DEFAULT '0', + `svr_connectcam_lookat_y` float NOT NULL DEFAULT '0', + `svr_connectcam_lookat_z` float NOT NULL DEFAULT '0', + `svr_gui` tinyint(4) NOT NULL DEFAULT '1', + `svr_gui_col1_r` int(11) NOT NULL DEFAULT '200', + `svr_gui_col1_g` int(11) NOT NULL DEFAULT '200', + `svr_gui_col1_b` int(11) NOT NULL DEFAULT '200', + `svr_logo` int(11) NOT NULL DEFAULT '1', + `svr_ac_enabled` int(11) NOT NULL DEFAULT '1', + `svr_ac_check_scripts` int(11) NOT NULL DEFAULT '1', + `svr_ac_script_wl` int(11) NOT NULL DEFAULT '0', + `svr_ac_script_bl` int(11) NOT NULL DEFAULT '1', + PRIMARY KEY (`svr_id`) +) ENGINE=InnoDB AUTO_INCREMENT=5 DEFAULT CHARSET=utf8 COMMENT='Servers'; + +-- Dumping data for table db24053.svr_main: ~4 rows (approximately) +/*!40000 ALTER TABLE `svr_main` DISABLE KEYS */; +INSERT INTO `svr_main` (`svr_id`, `svr_name`, `svr_game`, `svr_port`, `svr_password`, `svr_start_time_hour`, `svr_start_time_min`, `svr_start_weather`, `svr_start_snow_falling`, `svr_start_snow_ground`, `svr_newchar_pos_x`, `svr_newchar_pos_y`, `svr_newchar_pos_z`, `svr_newchar_rot_z`, `svr_newchar_money`, `svr_newchar_bank`, `svr_newchar_skin`, `svr_manager`, `svr_connectcam_pos_x`, `svr_connectcam_pos_y`, `svr_connectcam_pos_z`, `svr_connectcam_lookat_x`, `svr_connectcam_lookat_y`, `svr_connectcam_lookat_z`, `svr_gui`, `svr_gui_col1_r`, `svr_gui_col1_g`, `svr_gui_col1_b`, `svr_logo`, `svr_ac_enabled`, `svr_ac_check_scripts`, `svr_ac_script_wl`, `svr_ac_script_bl`) VALUES + (1, 'Asshat Gaming Roleplay', 1, 22000, 'AsshatsUnite!', 0, 0, 0, 1, 1, 1038.4, -666.7, 14.97, 1, 1000, 0, 0, 1, -1176.48, -17.694, 95.992, -1175.73, -17.055, 95.847, 1, 175, 203, 242, 1, 1, 1, 1, 1); +INSERT INTO `svr_main` (`svr_id`, `svr_name`, `svr_game`, `svr_port`, `svr_password`, `svr_start_time_hour`, `svr_start_time_min`, `svr_start_weather`, `svr_start_snow_falling`, `svr_start_snow_ground`, `svr_newchar_pos_x`, `svr_newchar_pos_y`, `svr_newchar_pos_z`, `svr_newchar_rot_z`, `svr_newchar_money`, `svr_newchar_bank`, `svr_newchar_skin`, `svr_manager`, `svr_connectcam_pos_x`, `svr_connectcam_pos_y`, `svr_connectcam_pos_z`, `svr_connectcam_lookat_x`, `svr_connectcam_lookat_y`, `svr_connectcam_lookat_z`, `svr_gui`, `svr_gui_col1_r`, `svr_gui_col1_g`, `svr_gui_col1_b`, `svr_logo`, `svr_ac_enabled`, `svr_ac_check_scripts`, `svr_ac_script_wl`, `svr_ac_script_bl`) VALUES + (2, 'Asshat Gaming Roleplay', 2, 22000, 'AsshatsUnite!', 0, 0, 0, 1, 1, 1682.68, -2326.8, 13.55, 1, 1000, 0, 15, 1, 210.04, -1492.01, 55.071, 240.19, -1282.52, 10.902, 1, 255, 110, 199, 1, 1, 1, 1, 1); +INSERT INTO `svr_main` (`svr_id`, `svr_name`, `svr_game`, `svr_port`, `svr_password`, `svr_start_time_hour`, `svr_start_time_min`, `svr_start_weather`, `svr_start_snow_falling`, `svr_start_snow_ground`, `svr_newchar_pos_x`, `svr_newchar_pos_y`, `svr_newchar_pos_z`, `svr_newchar_rot_z`, `svr_newchar_money`, `svr_newchar_bank`, `svr_newchar_skin`, `svr_manager`, `svr_connectcam_pos_x`, `svr_connectcam_pos_y`, `svr_connectcam_pos_z`, `svr_connectcam_lookat_x`, `svr_connectcam_lookat_y`, `svr_connectcam_lookat_z`, `svr_gui`, `svr_gui_col1_r`, `svr_gui_col1_g`, `svr_gui_col1_b`, `svr_logo`, `svr_ac_enabled`, `svr_ac_check_scripts`, `svr_ac_script_wl`, `svr_ac_script_bl`) VALUES + (3, 'Asshat Gaming Roleplay', 5, 22000, 'AsshatsUnite!', 0, 0, 0, 0, 0, 2364.28, 387.27, 6.085, 2.434, 1000, 0, -2020305438, 1, 8.75, -826.53, 331.072, -63.58, 240.71, 26.373, 0, 200, 200, 200, 1, 1, 1, 1, 1); +INSERT INTO `svr_main` (`svr_id`, `svr_name`, `svr_game`, `svr_port`, `svr_password`, `svr_start_time_hour`, `svr_start_time_min`, `svr_start_weather`, `svr_start_snow_falling`, `svr_start_snow_ground`, `svr_newchar_pos_x`, `svr_newchar_pos_y`, `svr_newchar_pos_z`, `svr_newchar_rot_z`, `svr_newchar_money`, `svr_newchar_bank`, `svr_newchar_skin`, `svr_manager`, `svr_connectcam_pos_x`, `svr_connectcam_pos_y`, `svr_connectcam_pos_z`, `svr_connectcam_lookat_x`, `svr_connectcam_lookat_y`, `svr_connectcam_lookat_z`, `svr_gui`, `svr_gui_col1_r`, `svr_gui_col1_g`, `svr_gui_col1_b`, `svr_logo`, `svr_ac_enabled`, `svr_ac_check_scripts`, `svr_ac_script_wl`, `svr_ac_script_bl`) VALUES + (4, 'Asshat Gaming Roleplay', 3, 22000, 'AsshatsUnite!', 0, 0, 0, 0, 0, 1632.49, -2331.96, 13.547, -0.005, 1000, 0, 26, 1, 1549.44, -1674.01, 54.86, 1515.02, -1673.76, 18.42, 0, 191, 77, 40, 1, 1, 1, 1, 1); +/*!40000 ALTER TABLE `svr_main` ENABLE KEYS */; + +-- Dumping structure for table db24053.veh_history +CREATE TABLE IF NOT EXISTS `veh_history` ( + `veh_history_id` int(11) NOT NULL AUTO_INCREMENT, + `veh_history_veh` int(11) NOT NULL, + `veh_history_type` int(11) NOT NULL, + `veh_history_when` int(11) NOT NULL, + `veh_history_value` int(11) NOT NULL, + `veh_history_details` varchar(50) NOT NULL DEFAULT '', + PRIMARY KEY (`veh_history_id`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Vehicle - History'; + +-- Dumping data for table db24053.veh_history: ~0 rows (approximately) +/*!40000 ALTER TABLE `veh_history` DISABLE KEYS */; +/*!40000 ALTER TABLE `veh_history` ENABLE KEYS */; + +-- Dumping structure for table db24053.veh_main +CREATE TABLE IF NOT EXISTS `veh_main` ( + `veh_id` int(11) NOT NULL AUTO_INCREMENT, + `veh_server` tinyint(2) NOT NULL DEFAULT '0', + `veh_model` int(11) NOT NULL DEFAULT '0', + `veh_col1_isrgb` tinyint(1) NOT NULL DEFAULT '0', + `veh_col2_isrgb` tinyint(1) NOT NULL DEFAULT '0', + `veh_col3_isrgb` tinyint(1) NOT NULL DEFAULT '0', + `veh_col4_isrgb` tinyint(1) NOT NULL DEFAULT '0', + `veh_col1` int(3) NOT NULL DEFAULT '0', + `veh_col2` int(3) NOT NULL DEFAULT '0', + `veh_col3` int(3) NOT NULL DEFAULT '0', + `veh_col4` int(3) NOT NULL DEFAULT '0', + `veh_col1_r` int(3) NOT NULL DEFAULT '0', + `veh_col1_g` int(3) NOT NULL DEFAULT '0', + `veh_col1_b` int(3) NOT NULL DEFAULT '0', + `veh_col1_a` int(3) NOT NULL DEFAULT '0', + `veh_col2_r` int(3) NOT NULL DEFAULT '0', + `veh_col2_g` int(3) NOT NULL DEFAULT '0', + `veh_col2_b` int(3) NOT NULL DEFAULT '0', + `veh_col2_a` int(3) NOT NULL DEFAULT '0', + `veh_col3_r` int(3) NOT NULL DEFAULT '0', + `veh_col3_g` int(3) NOT NULL DEFAULT '0', + `veh_col3_b` int(3) NOT NULL DEFAULT '0', + `veh_col3_a` int(3) NOT NULL DEFAULT '0', + `veh_col4_r` int(3) NOT NULL DEFAULT '0', + `veh_col4_g` int(3) NOT NULL DEFAULT '0', + `veh_col4_b` int(3) NOT NULL DEFAULT '0', + `veh_col4_a` int(3) NOT NULL DEFAULT '0', + `veh_locked` tinyint(1) NOT NULL DEFAULT '0', + `veh_health` float NOT NULL DEFAULT '1000', + `veh_pos_x` float NOT NULL DEFAULT '0', + `veh_pos_y` float NOT NULL DEFAULT '0', + `veh_pos_z` float NOT NULL DEFAULT '0', + `veh_rot_x` float NOT NULL DEFAULT '0', + `veh_rot_y` float NOT NULL DEFAULT '0', + `veh_rot_z` float NOT NULL DEFAULT '0', + `veh_owner_id` int(11) NOT NULL DEFAULT '0', + `veh_owner_type` int(11) NOT NULL DEFAULT '0', + `veh_engine` tinyint(1) NOT NULL DEFAULT '0', + `veh_lights` tinyint(1) NOT NULL DEFAULT '0', + `veh_siren` tinyint(1) NOT NULL DEFAULT '0', + `veh_sirenlight` tinyint(1) NOT NULL DEFAULT '0', + `veh_taxilight` tinyint(1) NOT NULL DEFAULT '0', + `veh_radio` int(8) NOT NULL DEFAULT '0', + `veh_fuel` int(8) NOT NULL DEFAULT '0', + `veh_spawned` tinyint(1) NOT NULL DEFAULT '0', + `veh_ins_acct` tinyint(1) NOT NULL DEFAULT '0', + `veh_price` int(8) NOT NULL DEFAULT '0', + `veh_deleted` tinyint(1) NOT NULL DEFAULT '0', + `veh_flags` int(32) NOT NULL DEFAULT '0', + `veh_spawn_lock` tinyint(1) NOT NULL DEFAULT '0', + `veh_buy_price` int(11) NOT NULL DEFAULT '0', + `veh_rent_price` int(11) NOT NULL DEFAULT '0', + `veh_destroyed` tinyint(1) NOT NULL DEFAULT '0', + `veh_mod_enginemult` int(11) NOT NULL DEFAULT '0', + `veh_mod_wheelmult` int(11) NOT NULL DEFAULT '0', + `veh_mod_brakemult` int(11) NOT NULL DEFAULT '0', + `veh_mod_hydraulics` tinyint(1) NOT NULL DEFAULT '0', + `veh_mod_nos` tinyint(1) NOT NULL DEFAULT '0', + `veh_tire_fl` tinyint(1) NOT NULL DEFAULT '0', + `veh_tire_fr` tinyint(1) NOT NULL DEFAULT '0', + `veh_tire_rl` tinyint(1) NOT NULL DEFAULT '0', + `veh_tire_rr` tinyint(1) NOT NULL DEFAULT '0', + `veh_light_fl` tinyint(1) NOT NULL DEFAULT '0', + `veh_light_fr` tinyint(1) NOT NULL DEFAULT '0', + `veh_light_rl` tinyint(1) NOT NULL DEFAULT '0', + `veh_light_rr` tinyint(1) NOT NULL DEFAULT '0', + `Column 84` int(11) NOT NULL DEFAULT '100', + `veh_door_fl` tinyint(1) NOT NULL DEFAULT '0', + `veh_door_fr` tinyint(1) NOT NULL DEFAULT '0', + `veh_door_rl` tinyint(1) NOT NULL DEFAULT '0', + `veh_door_rr` tinyint(1) NOT NULL DEFAULT '0', + `veh_boot` tinyint(1) NOT NULL DEFAULT '0', + `veh_bonnet` tinyint(1) NOT NULL DEFAULT '0', + `veh_panel_bumper_front` tinyint(1) NOT NULL DEFAULT '0', + `veh_panel_bumper_rear` tinyint(1) NOT NULL DEFAULT '0', + `veh_panel_front_left` tinyint(1) NOT NULL DEFAULT '0', + `veh_panel_front_right` tinyint(1) NOT NULL DEFAULT '0', + `veh_panel_rear_left` tinyint(1) NOT NULL DEFAULT '0', + `veh_panel_rear_right` tinyint(1) NOT NULL DEFAULT '0', + `veh_panel_windshield` tinyint(1) NOT NULL DEFAULT '0', + `veh_dirt_level` int(11) NOT NULL DEFAULT '0', + `veh_damage_visual` int(11) NOT NULL DEFAULT '0', + `veh_damage_engine` float NOT NULL DEFAULT '0', + `veh_damage_normal` float NOT NULL DEFAULT '0', + `undefined` int(11) NOT NULL DEFAULT '0', + PRIMARY KEY (`veh_id`) +) ENGINE=InnoDB AUTO_INCREMENT=226 DEFAULT CHARSET=latin1 COMMENT='Vehicles'; + +-- Dumping data for table db24053.veh_main: ~205 rows (approximately) +/*!40000 ALTER TABLE `veh_main` DISABLE KEYS */; +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `Column 84`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `undefined`) VALUES + (1, 1, 116, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1000, 1150.19, -691.413, 14.7679, 0, 0, -0.00433205, 1, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `Column 84`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `undefined`) VALUES + (2, 1, 116, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1000, 1146.75, -691.522, 14.7632, 0, 0, 0.0311547, 1, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `Column 84`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `undefined`) VALUES + (3, 1, 116, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1000, 1150.19, -647.976, 14.7432, 0, 0, 1.58688, 1, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `Column 84`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `undefined`) VALUES + (4, 1, 116, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1000, 1150.05, -644.664, 14.7377, 0, 0, 1.63214, 1, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `Column 84`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `undefined`) VALUES + (5, 1, 116, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1000, 1150.03, -641.414, 14.7305, 0, 0, 1.58556, 1, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `Column 84`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `undefined`) VALUES + (6, 1, 116, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1000, 1137.77, -637.964, 14.7565, 0, 0, 3.12411, 1, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `Column 84`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `undefined`) VALUES + (7, 1, 116, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1000, 1141.03, -637.832, 14.7565, 0, 0, 3.13313, 1, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `Column 84`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `undefined`) VALUES + (8, 1, 117, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1000, 1167.97, -671.216, 18.9339, 0, 0, -3.12864, 1, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `Column 84`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `undefined`) VALUES + (9, 1, 117, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1000, 1167.88, -659.962, 18.9344, 0, 0, -3.13742, 1, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `Column 84`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `undefined`) VALUES + (10, 1, 107, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1000, 1156.99, -648.106, 18.8026, 0, 0, -1.54444, 1, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `Column 84`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `undefined`) VALUES + (11, 1, 107, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1000, 1156.71, -644.208, 18.8018, 0, 0, -1.56368, 1, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `Column 84`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `undefined`) VALUES + (12, 1, 106, 0, 0, 0, 0, 1, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1000, 1156.51, -546.982, 21.8099, 0, 0, 1.54116, 5, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `Column 84`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `undefined`) VALUES + (13, 1, 106, 0, 0, 0, 0, 1, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1000, 1144.34, -526.256, 21.811, 0, 0, 3.10339, 5, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `Column 84`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `undefined`) VALUES + (14, 1, 106, 0, 0, 0, 0, 1, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1000, 1149.82, -526.413, 21.8051, 0, 0, 3.12915, 5, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `Column 84`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `undefined`) VALUES + (15, 1, 97, 0, 0, 0, 0, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1000, 1107.33, -47.3277, 7.6909, 0, 0, -1.58177, 9, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `Column 84`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `undefined`) VALUES + (16, 1, 97, 0, 0, 0, 0, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1000, 1107.44, -56.9672, 7.68915, 0, 0, -1.55498, 9, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `Column 84`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `undefined`) VALUES + (17, 1, 97, 0, 0, 0, 0, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1000, 1107.07, -36.7668, 7.68907, 0, 0, -1.54614, 9, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `Column 84`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `undefined`) VALUES + (18, 1, 98, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1000, 1143.85, 24.7314, 0.193595, 0, 0, 0.030849, 21, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `Column 84`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `undefined`) VALUES + (19, 1, 98, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1000, 1127.04, 42.6658, 0.0965313, 0, 0, -1.59613, 21, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `Column 84`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `undefined`) VALUES + (20, 1, 98, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1000, 1160.02, 63.4447, 0.0918589, 0, 0, -3.06856, 21, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `Column 84`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `undefined`) VALUES + (21, 1, 116, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1000, 1139.63, -687.404, 14.7563, 0, 0, -1.5751, 1, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `Column 84`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `undefined`) VALUES + (22, 1, 127, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1000, 1281.16, -964.567, 15.006, 0, 0, -2.35689, 6, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `Column 84`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `undefined`) VALUES + (23, 1, 127, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1000, 1274.07, -971.255, 14.9847, 0, 0, -2.36657, 6, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `Column 84`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `undefined`) VALUES + (24, 1, 127, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1000, 1255.04, -993.608, 14.9642, 0, 0, -0.875785, 6, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `Column 84`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `undefined`) VALUES + (25, 1, 127, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1000, 1262.9, -1001.84, 14.966, 0, 0, -0.898034, 6, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `Column 84`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `undefined`) VALUES + (26, 1, 110, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1000, 1226.42, -725.875, 14.9189, 0, 0, -2.34667, 5, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `Column 84`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `undefined`) VALUES + (27, 1, 110, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1000, 1229.62, -722.578, 14.9188, 0, 0, -2.35245, 5, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `Column 84`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `undefined`) VALUES + (28, 1, 110, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1000, 1257.41, -752.06, 14.9186, 0, 0, 0.734189, 5, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `Column 84`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `undefined`) VALUES + (29, 1, 110, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1000, 1254.04, -755.676, 14.9186, 0, 0, 0.767078, 5, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `Column 84`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `undefined`) VALUES + (30, 1, 128, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1000, 1249.93, -736.377, 15.1166, 0, 0, 2.33642, 5, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `Column 84`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `undefined`) VALUES + (31, 1, 128, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1000, 1246.99, -733.376, 15.1162, 0, 0, 2.33641, 5, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `Column 84`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `undefined`) VALUES + (32, 1, 116, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1000, 1139.41, -683.735, 14.7565, 0, 0, -1.55153, 1, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `Column 84`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `undefined`) VALUES + (33, 1, 116, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1000, 355.017, -1135.91, 22.7644, 0, 0, -2.41669, 1, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `Column 84`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `undefined`) VALUES + (34, 1, 116, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1000, 350.109, -1135.89, 22.7647, 0, 0, -2.46912, 1, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `Column 84`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `undefined`) VALUES + (35, 1, 116, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1000, 345.608, -1135.62, 22.7649, 0, 0, -2.53825, 1, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `Column 84`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `undefined`) VALUES + (36, 1, 116, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1000, 341.261, -1135.68, 22.7642, 0, 0, -2.54692, 1, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `Column 84`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `undefined`) VALUES + (37, 1, 116, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1000, 336.717, -1135.68, 22.7706, 0, 0, -2.56974, 1, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `Column 84`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `undefined`) VALUES + (38, 1, 116, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1000, 332.574, -1135.79, 22.7643, 0, 0, -2.54837, 1, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `Column 84`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `undefined`) VALUES + (39, 1, 116, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1000, 330.361, -1143.6, 22.7644, 0, 0, -1.53463, 1, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `Column 84`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `undefined`) VALUES + (40, 1, 116, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1000, 330.33, -1147.05, 22.7647, 0, 0, -1.55975, 1, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `Column 84`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `undefined`) VALUES + (41, 1, 116, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1000, 330.239, -1150.96, 22.7647, 0, 0, -1.59091, 1, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `Column 84`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `undefined`) VALUES + (42, 1, 116, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1000, 330.082, -1154.76, 22.7643, 0, 0, -1.59227, 1, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `Column 84`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `undefined`) VALUES + (43, 1, 116, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1000, 330.062, -1158.64, 22.764, 0, 0, -1.56752, 1, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `Column 84`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `undefined`) VALUES + (44, 1, 116, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1000, 330.123, -1162.56, 22.757, 0, 0, -1.57938, 1, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `Column 84`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `undefined`) VALUES + (45, 1, 116, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1000, 349.266, -1175.87, 22.7646, 0, 0, 0.0401467, 1, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `Column 84`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `undefined`) VALUES + (46, 1, 116, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1000, 352.866, -1175.72, 22.7649, 0, 0, 0.0375325, 1, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `Column 84`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `undefined`) VALUES + (47, 1, 116, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1000, 356.565, -1175.68, 22.7649, 0, 0, 0.0262495, 1, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `Column 84`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `undefined`) VALUES + (48, 1, 116, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1000, 360.123, -1175.56, 22.765, 0, 0, 0.00383999, 1, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `Column 84`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `undefined`) VALUES + (49, 1, 116, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1000, 363.628, -1175.71, 22.7647, 0, 0, 0.0135003, 1, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `Column 84`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `undefined`) VALUES + (50, 1, 116, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1000, 344.813, -1175.93, 22.7648, 0, 0, 0.0261305, 1, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `Column 84`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `undefined`) VALUES + (51, 1, 117, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1000, 363.039, -1056.26, 26.0159, 0, 0, -3.13414, 1, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `Column 84`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `undefined`) VALUES + (52, 1, 117, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1000, 357.656, -1056.36, 26.016, 0, 0, 3.12152, 1, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `Column 84`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `undefined`) VALUES + (53, 1, 117, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1000, 352.455, -1056.27, 26.0166, 0, 0, 3.1086, 1, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `Column 84`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `undefined`) VALUES + (54, 1, 107, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1000, 346.23, -1055.48, 25.8838, 0, 0, 3.1377, 1, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `Column 84`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `undefined`) VALUES + (55, 1, 107, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1000, 342.364, -1055.36, 25.8839, 0, 0, 3.12213, 1, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `Column 84`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `undefined`) VALUES + (56, 1, 107, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1000, 338.239, -1055.29, 25.8841, 0, 0, 3.07547, 1, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `Column 84`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `undefined`) VALUES + (57, 1, 107, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1000, 333.56, -1055.31, 25.8841, 0, 0, 3.09697, 1, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `Column 84`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `undefined`) VALUES + (58, 2, 156, 0, 0, 0, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, -863.201, -666.353, 11.0311, 0, 0, -3.04091, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `Column 84`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `undefined`) VALUES + (59, 2, 156, 0, 0, 0, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, -859.264, -665.929, 11.0121, 0, 0, -3.02909, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `Column 84`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `undefined`) VALUES + (60, 2, 156, 0, 0, 0, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, -855.519, -665.594, 10.9943, 0, 0, -3.03498, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `Column 84`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `undefined`) VALUES + (61, 2, 156, 0, 0, 0, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, -851.826, -665.276, 10.9767, 0, 0, -3.02548, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `Column 84`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `undefined`) VALUES + (62, 2, 156, 0, 0, 0, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, -843.97, -679.789, 10.9396, 0, 0, 1.72875, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `Column 84`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `undefined`) VALUES + (63, 2, 156, 0, 0, 0, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, -844.578, -675.52, 10.9427, 0, 0, 1.70593, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `Column 84`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `undefined`) VALUES + (64, 2, 156, 0, 0, 0, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, -845.17, -671.403, 10.9455, 0, 0, 1.69794, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `Column 84`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `undefined`) VALUES + (65, 2, 157, 0, 0, 0, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, -873.775, -710.286, 11.1915, 0, 0, -2.06147, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `Column 84`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `undefined`) VALUES + (66, 2, 157, 0, 0, 0, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, -881.43, -705.81, 11.2087, 0, 0, -2.22486, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `Column 84`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `undefined`) VALUES + (67, 2, 236, 0, 0, 0, 0, 76, 76, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, -897.515, -698.598, 10.9724, 0, 0, -3.01881, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `Column 84`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `undefined`) VALUES + (68, 2, 236, 0, 0, 0, 0, 76, 76, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, -894.148, -698.128, 10.9701, 0, 0, -3.01433, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `Column 84`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `undefined`) VALUES + (69, 2, 236, 0, 0, 0, 0, 76, 76, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, -894.135, -719.859, 10.9428, 0, 0, -1.41224, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `Column 84`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `undefined`) VALUES + (70, 2, 236, 0, 0, 0, 0, 52, 52, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, -894.683, -715.826, 10.9485, 0, 0, -1.42683, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `Column 84`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `undefined`) VALUES + (71, 2, 156, 0, 0, 0, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, -650.832, 754.237, 11.2032, 0, 0, 1.50302, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `Column 84`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `undefined`) VALUES + (72, 2, 156, 0, 0, 0, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, -639.172, 753.413, 11.2032, 0, 0, 1.50092, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `Column 84`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `undefined`) VALUES + (73, 2, 156, 0, 0, 0, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, -621.907, 752.278, 11.2033, 0, 0, 1.49172, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `Column 84`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `undefined`) VALUES + (74, 2, 156, 0, 0, 0, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, -610.695, 751.54, 11.2031, 0, 0, 1.5242, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `Column 84`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `undefined`) VALUES + (75, 2, 157, 0, 0, 0, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, -599.312, 812.778, 11.4341, 0, 0, -1.51886, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `Column 84`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `undefined`) VALUES + (76, 2, 157, 0, 0, 0, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, -599.318, 808.625, 11.4343, 0, 0, -1.54175, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `Column 84`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `undefined`) VALUES + (77, 2, 157, 0, 0, 0, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, -599.262, 804.179, 11.4321, 0, 0, -1.55996, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `Column 84`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `undefined`) VALUES + (78, 2, 236, 0, 0, 0, 0, 52, 52, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, -601.455, 777.717, 11.3721, 0, 0, -1.56567, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `Column 84`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `undefined`) VALUES + (79, 2, 236, 0, 0, 0, 0, 3, 3, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, -601.427, 781.32, 11.372, 0, 0, -1.57976, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `Column 84`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `undefined`) VALUES + (80, 2, 236, 0, 0, 0, 0, 7, 7, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, -601.614, 785.262, 11.3678, 0, 0, -1.53095, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `Column 84`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `undefined`) VALUES + (81, 2, 227, 0, 0, 0, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, -614.282, 804.889, 29.667, 0, 0, -3.13458, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `Column 84`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `undefined`) VALUES + (82, 2, 156, 0, 0, 0, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, -665.011, 766.586, 10.8582, 0, 0, -3.12432, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `Column 84`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `undefined`) VALUES + (83, 2, 156, 0, 0, 0, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, -665.185, 777.893, 11.0314, 0, 0, 3.13051, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `Column 84`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `undefined`) VALUES + (84, 2, 156, 0, 0, 0, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, -665.29, 793.478, 11.0371, 0, 0, -3.13675, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `Column 84`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `undefined`) VALUES + (85, 2, 156, 0, 0, 0, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, -665.178, 804.984, 11.0372, 0, 0, 3.13152, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `Column 84`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `undefined`) VALUES + (86, 2, 137, 0, 0, 0, 0, 3, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, -695.476, 917.25, 11.193, 0, 0, -1.5752, 10, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `Column 84`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `undefined`) VALUES + (87, 2, 137, 0, 0, 0, 0, 3, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, -695.799, 933.069, 11.1976, 0, 0, -1.59279, 10, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `Column 84`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `undefined`) VALUES + (88, 2, 137, 0, 0, 0, 0, 3, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, -751.642, 927.235, 11.2813, 0, 0, 1.58276, 10, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `Column 84`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `undefined`) VALUES + (89, 2, 156, 0, 0, 0, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 520.53, 503.127, 10.8484, 0, 0, -0.00178437, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `Column 84`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `undefined`) VALUES + (90, 2, 156, 0, 0, 0, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 516.364, 503.18, 10.9362, 0, 0, -0.0254137, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `Column 84`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `undefined`) VALUES + (91, 2, 156, 0, 0, 0, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 498.01, 503.081, 11.193, 0, 0, 0.0146382, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `Column 84`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `undefined`) VALUES + (92, 2, 156, 0, 0, 0, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 502.233, 503.026, 11.1357, 0, 0, 0.0138817, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `Column 84`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `undefined`) VALUES + (93, 2, 156, 0, 0, 0, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 493.552, 503.077, 11.2541, 0, 0, -0.0044642, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `Column 84`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `undefined`) VALUES + (94, 2, 236, 0, 0, 0, 0, 52, 52, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 490.796, 528.832, 11.3465, 0, 0, 1.54742, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `Column 84`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `undefined`) VALUES + (95, 2, 236, 0, 0, 0, 0, 76, 76, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 490.796, 525.464, 11.3455, 0, 0, 1.57115, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `Column 84`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `undefined`) VALUES + (96, 2, 157, 0, 0, 0, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 490.527, 519.161, 11.6082, 0, 0, 3.12121, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `Column 84`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `undefined`) VALUES + (97, 2, 156, 0, 0, 0, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 372.272, -526.059, 12.1009, 0, 0, -0.731552, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `Column 84`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `undefined`) VALUES + (98, 2, 156, 0, 0, 0, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 369.489, -523.585, 12.0988, 0, 0, -0.718855, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `Column 84`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `undefined`) VALUES + (99, 2, 156, 0, 0, 0, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 366.674, -521.239, 12.0989, 0, 0, -0.712901, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `Column 84`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `undefined`) VALUES + (100, 2, 156, 0, 0, 0, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 363.691, -518.751, 12.0982, 0, 0, -0.698761, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `Column 84`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `undefined`) VALUES + (101, 2, 156, 0, 0, 0, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 361.239, -516.717, 12.0989, 0, 0, -0.705683, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `Column 84`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `undefined`) VALUES + (102, 2, 156, 0, 0, 0, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 358.335, -514.321, 12.0942, 0, 0, -0.696986, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `Column 84`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `undefined`) VALUES + (103, 2, 156, 0, 0, 0, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 355.575, -511.957, 12.0989, 0, 0, -0.701771, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `Column 84`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `undefined`) VALUES + (104, 2, 157, 0, 0, 0, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 348.887, -491.942, 12.3596, 0, 0, 2.45143, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `Column 84`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `undefined`) VALUES + (105, 2, 157, 0, 0, 0, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 351.751, -494.224, 12.3596, 0, 0, 2.44634, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `Column 84`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `undefined`) VALUES + (106, 2, 146, 0, 0, 0, 0, 1, 3, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, -119.267, -918.579, 10.6751, 0, 0, 1.83377, 6, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `Column 84`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `undefined`) VALUES + (107, 2, 146, 0, 0, 0, 0, 1, 3, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, -117.954, -924.926, 10.6753, 0, 0, 1.8211, 6, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `Column 84`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `undefined`) VALUES + (108, 2, 146, 0, 0, 0, 0, 1, 3, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, -116.5, -931.549, 10.6753, 0, 0, 1.76665, 6, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `Column 84`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `undefined`) VALUES + (129, 2, 146, 0, 0, 0, 0, 1, 3, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, -769.326, 1155.62, 12.6228, 0, 0, -3.14049, 6, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 100, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `Column 84`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `undefined`) VALUES + (130, 2, 146, 0, 0, 0, 0, 1, 3, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, -773.948, 1155.64, 12.6228, 0, 0, 3.13857, 6, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 100, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `Column 84`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `undefined`) VALUES + (131, 2, 146, 0, 0, 0, 0, 1, 3, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, -769.568, 1131.04, 12.6227, 0, 0, -0.010725, 6, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 100, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `Column 84`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `undefined`) VALUES + (132, 2, 146, 0, 0, 0, 0, 1, 3, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, -774.835, 1131.13, 12.6229, 0, 0, -0.0206099, 6, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 100, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `Column 84`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `undefined`) VALUES + (133, 2, 146, 0, 0, 0, 0, 1, 3, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 458.814, 702.22, 11.49, 0, 0, 1.51274, 6, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 100, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `Column 84`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `undefined`) VALUES + (134, 2, 146, 0, 0, 0, 0, 1, 3, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 467.202, 701.723, 11.6151, 0, 0, 1.50174, 6, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 100, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `Column 84`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `undefined`) VALUES + (135, 2, 150, 0, 0, 0, 0, 6, 73, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, -1005.69, 208.713, 11.1279, 0, 0, 3.03758, 14, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 100, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `Column 84`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `undefined`) VALUES + (136, 2, 150, 0, 0, 0, 0, 6, 75, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, -1002.12, 203.73, 11.4539, 0, 0, 3.01694, 14, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 100, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `Column 84`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `undefined`) VALUES + (137, 2, 168, 0, 0, 0, 0, 6, 76, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, -1008.54, 186.246, 11.3789, 0, 0, -0.157828, 14, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 100, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `Column 84`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `undefined`) VALUES + (138, 2, 168, 0, 0, 0, 0, 6, 76, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, -995.796, 193.143, 11.4015, 0, 0, 1.41776, 14, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 100, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `Column 84`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `undefined`) VALUES + (139, 2, 167, 0, 0, 0, 0, 56, 75, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, -1141.98, -283.386, 11.3194, 0, 0, -3.09345, 18, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 100, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `Column 84`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `undefined`) VALUES + (140, 2, 167, 0, 0, 0, 0, 13, 76, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, -1143.05, -270.229, 11.4251, 0, 0, -3.05214, 18, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 100, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `Column 84`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `undefined`) VALUES + (141, 2, 167, 0, 0, 0, 0, 13, 76, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, -1143.99, -256.669, 11.5147, 0, 0, -3.07535, 18, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 100, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `Column 84`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `undefined`) VALUES + (142, 2, 146, 0, 0, 0, 0, 1, 3, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, -873.256, -482.571, 11.3251, 0, 0, -1.5271, 6, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 100, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `Column 84`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `undefined`) VALUES + (143, 2, 146, 0, 0, 0, 0, 1, 3, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, -873.249, -478.507, 11.3193, 0, 0, -1.55587, 6, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 100, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `Column 84`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `undefined`) VALUES + (144, 2, 138, 0, 0, 0, 0, 1, 75, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, -1243.33, 23.4004, 12.013, 0, 0, 3.12587, 22, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 100, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `Column 84`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `undefined`) VALUES + (145, 2, 138, 0, 0, 0, 0, 1, 75, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, -1247.7, 23.4549, 12.0141, 0, 0, 3.1171, 22, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 100, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `Column 84`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `undefined`) VALUES + (146, 2, 138, 0, 0, 0, 0, 1, 75, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, -1251.99, 23.5308, 12.0096, 0, 0, 3.12793, 22, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 100, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `Column 84`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `undefined`) VALUES + (147, 4, 596, 0, 0, 0, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 1602.73, -1703.95, 5.62027, 0, 0, 1.59558, 4, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 100, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `Column 84`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `undefined`) VALUES + (148, 4, 596, 0, 0, 0, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 1602.74, -1700.18, 5.61885, 0, 0, 1.59013, 4, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 100, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `Column 84`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `undefined`) VALUES + (149, 4, 596, 0, 0, 0, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 1602.68, -1696.18, 5.61891, 0, 0, 1.57734, 4, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 100, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `Column 84`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `undefined`) VALUES + (150, 4, 596, 0, 0, 0, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 1602.67, -1691.93, 5.61976, 0, 0, 1.59322, 4, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 100, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `Column 84`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `undefined`) VALUES + (151, 4, 596, 0, 0, 0, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 2083.1, -1706.03, 13.104, 0, 0, 0.635562, 4, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 100, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `Column 84`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `undefined`) VALUES + (152, 4, 596, 0, 0, 0, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 1595.43, -1711.89, 5.61871, 0, 0, -0.0106168, 4, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 100, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `Column 84`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `undefined`) VALUES + (153, 4, 596, 0, 0, 0, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 1591.43, -1711.87, 5.61965, 0, 0, 0.00642908, 4, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 100, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `Column 84`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `undefined`) VALUES + (154, 4, 596, 0, 0, 0, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 1587.33, -1711.86, 5.61184, 0, 0, 0.00975822, 4, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 100, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `Column 84`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `undefined`) VALUES + (155, 4, 427, 0, 0, 0, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 1526.72, -1644.82, 6.02297, 0, 0, -3.13362, 4, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 100, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `Column 84`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `undefined`) VALUES + (156, 4, 427, 0, 0, 0, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 1530.62, -1644.78, 6.02321, 0, 0, -3.11574, 4, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 100, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `Column 84`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `undefined`) VALUES + (157, 4, 427, 0, 0, 0, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 1534.72, -1644.71, 6.03863, 0, 0, -3.13567, 4, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 100, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `Column 84`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `undefined`) VALUES + (158, 4, 599, 0, 0, 0, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 1545.99, -1651.07, 6.08226, 0, 0, 1.56824, 4, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 100, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `Column 84`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `undefined`) VALUES + (159, 4, 599, 0, 0, 0, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 1546.03, -1654.96, 6.03352, 0, 0, 1.54986, 4, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 100, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `Column 84`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `undefined`) VALUES + (160, 4, 426, 0, 0, 0, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 1545.79, -1667.84, 5.62373, 0, 0, 1.56514, 4, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 100, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `Column 84`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `undefined`) VALUES + (161, 4, 426, 0, 0, 0, 0, 10, 10, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 1545.98, -1672.1, 5.63141, 0, 0, 1.5917, 4, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 100, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `Column 84`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `undefined`) VALUES + (162, 2, 131, 0, 0, 0, 0, 5, 62, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, -979.696, -882.141, 12.8471, 0, 0, 0.747823, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 100, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `Column 84`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `undefined`) VALUES + (163, 2, 175, 0, 0, 0, 0, 10, 10, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, -982.322, -884.732, 12.8645, 0, 0, 0.762973, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 100, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `Column 84`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `undefined`) VALUES + (164, 2, 134, 0, 0, 0, 0, 37, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, -984.723, -887.279, 12.7096, 0, 0, 0.816305, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 750, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 100, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `Column 84`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `undefined`) VALUES + (165, 4, 523, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 1526.17, -1680.36, 5.45989, 0, 0, -0.797715, 4, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 100, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `Column 84`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `undefined`) VALUES + (166, 4, 523, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 1526.06, -1674.86, 5.46142, 0, 0, -2.37213, 4, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 100, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `Column 84`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `undefined`) VALUES + (167, 4, 523, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 1529.73, -1674.89, 5.4601, 0, 0, -2.37606, 4, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 100, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `Column 84`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `undefined`) VALUES + (168, 4, 523, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 1529.64, -1680.68, 5.46212, 0, 0, -0.793975, 4, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 100, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `Column 84`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `undefined`) VALUES + (169, 4, 416, 0, 0, 0, 0, 1, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 1178.73, -1338.94, 14.0094, 0, 0, -1.54939, 8, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 100, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `Column 84`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `undefined`) VALUES + (170, 4, 416, 0, 0, 0, 0, 1, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 1178.46, -1308.67, 13.9791, 0, 0, -1.56455, 8, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 100, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `Column 84`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `undefined`) VALUES + (171, 4, 416, 0, 0, 0, 0, 1, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 2036.82, -1425.53, 17.1413, 0, 0, -0.00217407, 8, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 100, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `Column 84`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `undefined`) VALUES + (172, 4, 416, 0, 0, 0, 0, 1, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 2024.7, -1409.68, 17.1419, 0, 0, 1.55537, 8, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 100, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `Column 84`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `undefined`) VALUES + (173, 4, 408, 0, 0, 0, 0, 26, 26, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 2338.19, -2085.52, 14.0841, 0, 0, 1.56666, 24, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 100, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `Column 84`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `undefined`) VALUES + (174, 4, 408, 0, 0, 0, 0, 26, 26, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 2338.24, -2090.4, 14.097, 0, 0, 1.57921, 24, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 100, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `Column 84`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `undefined`) VALUES + (175, 4, 408, 0, 0, 0, 0, 26, 26, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 2338.3, -2095.48, 14.0909, 0, 0, 1.57749, 24, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 100, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `Column 84`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `undefined`) VALUES + (176, 4, 431, 0, 0, 0, 0, 47, 74, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 1781.16, -1887.68, 13.493, 0, 0, -1.54371, 20, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 100, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `Column 84`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `undefined`) VALUES + (177, 4, 431, 0, 0, 0, 0, 92, 72, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 1781.08, -1892.33, 13.492, 0, 0, -1.55517, 20, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 100, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `Column 84`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `undefined`) VALUES + (178, 4, 431, 0, 0, 0, 0, 92, 72, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 1780.83, -1897.52, 13.4905, 0, 0, -1.56997, 20, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 100, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `Column 84`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `undefined`) VALUES + (179, 4, 420, 0, 0, 0, 0, 6, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 1804.27, -1932.53, 13.1664, 0, 0, -0.015131, 16, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 100, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `Column 84`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `undefined`) VALUES + (180, 4, 420, 0, 0, 0, 0, 6, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 1800.35, -1932.4, 13.166, 0, 0, -0.0127972, 16, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 100, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `Column 84`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `undefined`) VALUES + (181, 4, 420, 0, 0, 0, 0, 6, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 1796.72, -1932.55, 13.1653, 0, 0, -0.000382929, 16, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 100, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `Column 84`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `undefined`) VALUES + (182, 4, 438, 0, 0, 0, 0, 6, 76, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 1792.65, -1932.66, 13.3902, 0, 0, 0.00784995, 16, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 100, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `Column 84`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `undefined`) VALUES + (183, 4, 438, 0, 0, 0, 0, 6, 76, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 1788.85, -1932.83, 13.3847, 0, 0, 0.025678, 16, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 100, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `Column 84`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `undefined`) VALUES + (184, 4, 407, 0, 0, 0, 0, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 1147.58, -1295.9, 13.8958, 0, 0, 0.00109566, 12, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 100, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `Column 84`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `undefined`) VALUES + (185, 4, 407, 0, 0, 0, 0, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 1147.58, -1308.6, 13.9144, 0, 0, 0.00538338, 12, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 100, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `Column 84`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `undefined`) VALUES + (186, 4, 598, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 2282.26, 2442.01, 10.5652, 0, 0, -0.0100905, 4, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 100, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `Column 84`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `undefined`) VALUES + (187, 4, 598, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 2277.82, 2441.92, 10.5665, 0, 0, 0.0142917, 4, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 100, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `Column 84`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `undefined`) VALUES + (188, 4, 598, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 2273.75, 2441.84, 10.5656, 0, 0, 0.00445989, 4, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 100, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `Column 84`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `undefined`) VALUES + (189, 4, 598, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 2269.03, 2441.76, 10.565, 0, 0, 0.02489, 4, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 100, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `Column 84`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `undefined`) VALUES + (190, 4, 598, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 2277.94, 2478.61, 10.5693, 0, 0, 3.13522, 4, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 100, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `Column 84`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `undefined`) VALUES + (191, 4, 598, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 2273.44, 2478.64, 10.5671, 0, 0, 3.12822, 4, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 100, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `Column 84`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `undefined`) VALUES + (192, 4, 598, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 2269.09, 2478.64, 10.5649, 0, 0, 3.13244, 4, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 100, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `Column 84`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `undefined`) VALUES + (193, 4, 598, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 2282.15, 2478.59, 10.5668, 0, 0, -3.12538, 4, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 100, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `Column 84`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `undefined`) VALUES + (194, 4, 407, 0, 0, 0, 0, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 1751.1, 2077.36, 11.0579, 0, 0, 3.13707, 12, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 100, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `Column 84`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `undefined`) VALUES + (195, 4, 407, 0, 0, 0, 0, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 1756.99, 2077.55, 11.0555, 0, 0, -3.13337, 12, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 100, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `Column 84`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `undefined`) VALUES + (196, 4, 407, 0, 0, 0, 0, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 1763.96, 2077.97, 11.0573, 0, 0, -3.10259, 12, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 100, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `Column 84`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `undefined`) VALUES + (197, 4, 597, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, -1572.66, 742.629, -5.47258, 0, 0, 1.57093, 4, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 100, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `Column 84`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `undefined`) VALUES + (198, 4, 597, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, -1572.64, 738.657, -5.47407, 0, 0, 1.5799, 4, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 100, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `Column 84`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `undefined`) VALUES + (199, 4, 597, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, -1572.6, 734.641, -5.47307, 0, 0, 1.57367, 4, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 100, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `Column 84`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `undefined`) VALUES + (200, 4, 597, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, -1572.56, 730.619, -5.47164, 0, 0, 1.57203, 4, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 100, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `Column 84`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `undefined`) VALUES + (201, 4, 597, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, -1572.46, 726.494, -5.47229, 0, 0, 1.57229, 4, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 100, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `Column 84`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `undefined`) VALUES + (202, 4, 597, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, -1579.91, 750.258, -5.47212, 0, 0, 3.13972, 4, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 100, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `Column 84`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `undefined`) VALUES + (203, 4, 597, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, -1584.04, 750.231, -5.47137, 0, 0, -3.13672, 4, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 100, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `Column 84`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `undefined`) VALUES + (204, 4, 597, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, -1588.07, 750.247, -5.47243, 0, 0, 3.13574, 4, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 100, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `Column 84`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `undefined`) VALUES + (205, 4, 597, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, -1592.38, 750.296, -5.47143, 0, 0, 3.13692, 4, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 100, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `Column 84`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `undefined`) VALUES + (206, 4, 523, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, -1611.79, 730.701, -5.67174, 0, 0, 0.560641, 4, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 100, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `Column 84`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `undefined`) VALUES + (207, 4, 523, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, -1617.18, 730.908, -5.66764, 0, 0, -0.753548, 4, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 100, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `Column 84`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `undefined`) VALUES + (208, 4, 523, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, -1611.58, 733.413, -5.67532, 0, 0, 0.526106, 4, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 100, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `Column 84`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `undefined`) VALUES + (209, 4, 523, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, -1617.37, 733.199, -5.67666, 0, 0, -0.764526, 4, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 100, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `Column 84`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `undefined`) VALUES + (210, 4, 426, 0, 0, 0, 0, 11, 11, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, -1572.29, 705.876, -5.49726, 0, 0, 1.58725, 4, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 100, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `Column 84`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `undefined`) VALUES + (211, 4, 426, 0, 0, 0, 0, 53, 53, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, -1572.31, 710.11, -5.49697, 0, 0, 1.55664, 4, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 100, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `Column 84`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `undefined`) VALUES + (212, 4, 426, 0, 0, 0, 0, 11, 11, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, -1572.36, 714.22, -5.49761, 0, 0, 1.58512, 4, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 100, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `Column 84`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `undefined`) VALUES + (213, 4, 427, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, -1596.07, 676.545, -5.10801, 0, 0, 0.0186245, 4, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 100, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `Column 84`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `undefined`) VALUES + (214, 4, 427, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, -1600.28, 676.495, -5.10837, 0, 0, 0.0136404, 4, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 100, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `Column 84`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `undefined`) VALUES + (215, 4, 416, 0, 0, 0, 0, 1, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, -2677.4, 630.025, 14.6044, 0, 0, 1.57874, 8, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 100, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `Column 84`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `undefined`) VALUES + (216, 4, 416, 0, 0, 0, 0, 1, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, -2666.93, 629.908, 14.6044, 0, 0, 1.56592, 8, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 100, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `Column 84`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `undefined`) VALUES + (217, 4, 416, 0, 0, 0, 0, 1, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, -2686.18, 628.286, 14.6058, 0, 0, 1.9158, 8, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 100, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `Column 84`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `undefined`) VALUES + (218, 4, 407, 0, 0, 0, 0, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, -2022.76, 75.2526, 28.3631, 0, 0, -1.47777, 12, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 100, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `Column 84`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `undefined`) VALUES + (219, 4, 407, 0, 0, 0, 0, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, -2022.92, 84.3134, 28.3332, 0, 0, -1.5322, 12, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 100, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `Column 84`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `undefined`) VALUES + (220, 4, 407, 0, 0, 0, 0, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, -2022.93, 92.2289, 28.3678, 0, 0, -1.51043, 12, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 100, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `Column 84`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `undefined`) VALUES + (221, 4, 411, 0, 0, 0, 0, 12, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 564.59, -1291.1, 16.9753, 0, 0, 0.0255753, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 100, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `Column 84`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `undefined`) VALUES + (222, 4, 541, 0, 0, 0, 0, 36, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 561, -1291.44, 16.8732, 0, 0, 0.00172557, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 100, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `Column 84`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `undefined`) VALUES + (223, 4, 480, 0, 0, 0, 0, 6, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 557.632, -1291.24, 17.022, 0, 0, 0.0362236, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 100, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `Column 84`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `undefined`) VALUES + (224, 4, 477, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 554.015, -1291.05, 17.0018, 0, 0, -0.0592367, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 100, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `Column 84`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `undefined`) VALUES + (225, 2, 131, 0, 0, 0, 0, 62, 37, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, -1154.93, 5.74538, 11.2258, 0, 0, -1.56933, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 100, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +/*!40000 ALTER TABLE `veh_main` ENABLE KEYS */; + +/*!40101 SET SQL_MODE=IFNULL(@OLD_SQL_MODE, '') */; +/*!40014 SET FOREIGN_KEY_CHECKS=IF(@OLD_FOREIGN_KEY_CHECKS IS NULL, 1, @OLD_FOREIGN_KEY_CHECKS) */; +/*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */; +/*!40111 SET SQL_NOTES=@OLD_SQL_NOTES */; diff --git a/misc/backup/database/asshat-29DEC2020-0403.sql b/misc/backup/database/asshat-29DEC2020-0403.sql new file mode 100644 index 00000000..0298f53b --- /dev/null +++ b/misc/backup/database/asshat-29DEC2020-0403.sql @@ -0,0 +1,6977 @@ +-- -------------------------------------------------------- +-- Host: 158.69.238.64 +-- Server version: 5.7.20 - MySQL Community Server (GPL) +-- Server OS: Win64 +-- HeidiSQL Version: 11.1.0.6116 +-- -------------------------------------------------------- + +/*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */; +/*!40101 SET NAMES utf8 */; +/*!50503 SET NAMES utf8mb4 */; +/*!40014 SET @OLD_FOREIGN_KEY_CHECKS=@@FOREIGN_KEY_CHECKS, FOREIGN_KEY_CHECKS=0 */; +/*!40101 SET @OLD_SQL_MODE=@@SQL_MODE, SQL_MODE='NO_AUTO_VALUE_ON_ZERO' */; +/*!40111 SET @OLD_SQL_NOTES=@@SQL_NOTES, SQL_NOTES=0 */; + + +-- Dumping database structure for db24053 +CREATE DATABASE IF NOT EXISTS `db24053` /*!40100 DEFAULT CHARACTER SET utf8 */; +USE `db24053`; + +-- Dumping structure for table db24053.acct_auth +CREATE TABLE IF NOT EXISTS `acct_auth` ( + `acct_auth_id` int(11) NOT NULL AUTO_INCREMENT, + `acct_auth_acct` int(11) NOT NULL DEFAULT '0', + `acct_auth_type` int(11) NOT NULL DEFAULT '0', + `acct_auth_detail` varchar(128) NOT NULL DEFAULT '', + `acct_auth_smscarrier` int(11) NOT NULL, + `acct_auth_verified` tinyint(1) NOT NULL DEFAULT '0', + `acct_auth_when_verified` int(32) NOT NULL DEFAULT '0', + `acct_auth_verifycode` varchar(32) NOT NULL DEFAULT '', + PRIMARY KEY (`acct_auth_id`) +) ENGINE=InnoDB DEFAULT CHARSET=latin1 COMMENT='Accounts - Authentication Methods'; + +-- Dumping data for table db24053.acct_auth: ~0 rows (approximately) +/*!40000 ALTER TABLE `acct_auth` DISABLE KEYS */; +/*!40000 ALTER TABLE `acct_auth` ENABLE KEYS */; + +-- Dumping structure for table db24053.acct_bl +CREATE TABLE IF NOT EXISTS `acct_bl` ( + `acct_bl_id` int(11) NOT NULL, + `acct_bl_ip` int(24) DEFAULT NULL, + `acct_bl_uid` varchar(128) DEFAULT NULL, + `acct_bl_when_added` int(32) DEFAULT NULL, + `acct_bl_acct` int(11) DEFAULT NULL, + `acct_bl_enabled` tinyint(1) DEFAULT '1', + PRIMARY KEY (`acct_bl_id`) +) ENGINE=InnoDB DEFAULT CHARSET=latin1 COMMENT='Accounts - Access Blacklist'; + +-- Dumping data for table db24053.acct_bl: ~0 rows (approximately) +/*!40000 ALTER TABLE `acct_bl` DISABLE KEYS */; +/*!40000 ALTER TABLE `acct_bl` ENABLE KEYS */; + +-- Dumping structure for table db24053.acct_contact +CREATE TABLE IF NOT EXISTS `acct_contact` ( + `acct_contact_id` int(11) NOT NULL AUTO_INCREMENT, + `acct_contact_acct` int(11) NOT NULL DEFAULT '0', + `acct_contact_contact` int(11) NOT NULL DEFAULT '0', + `acct_contact_type` int(11) NOT NULL DEFAULT '0', + `acct_contact_when_added` int(32) NOT NULL DEFAULT '0', + `acct_contact_accepted` tinyint(1) NOT NULL DEFAULT '0', + `acct_contact_when_accepted` int(32) NOT NULL DEFAULT '0', + `acct_contact_deleted` tinyint(1) NOT NULL DEFAULT '0', + PRIMARY KEY (`acct_contact_id`) +) ENGINE=InnoDB DEFAULT CHARSET=latin1 COMMENT='Accounts - Contacts (Friends/Blocked/Etc)'; + +-- Dumping data for table db24053.acct_contact: ~0 rows (approximately) +/*!40000 ALTER TABLE `acct_contact` DISABLE KEYS */; +/*!40000 ALTER TABLE `acct_contact` ENABLE KEYS */; + +-- Dumping structure for table db24053.acct_hotkey +CREATE TABLE IF NOT EXISTS `acct_hotkey` ( + `acct_hotkey_id` int(11) NOT NULL AUTO_INCREMENT, + `acct_hotkey_key` int(11) NOT NULL DEFAULT '0', + `acct_hotkey_cmdstr` varchar(128) NOT NULL DEFAULT '', + `acct_hotkey_enabled` tinyint(1) NOT NULL DEFAULT '1', + `acct_hotkey_when_added` int(32) NOT NULL DEFAULT '0', + `acct_hotkey_acct` int(11) NOT NULL DEFAULT '0', + `acct_hotkey_down` int(11) NOT NULL DEFAULT '0', + PRIMARY KEY (`acct_hotkey_id`) +) ENGINE=InnoDB AUTO_INCREMENT=37 DEFAULT CHARSET=latin1 COMMENT='Accounts - Custom Hotkeys'; + +-- Dumping data for table db24053.acct_hotkey: ~36 rows (approximately) +/*!40000 ALTER TABLE `acct_hotkey` DISABLE KEYS */; +INSERT INTO `acct_hotkey` (`acct_hotkey_id`, `acct_hotkey_key`, `acct_hotkey_cmdstr`, `acct_hotkey_enabled`, `acct_hotkey_when_added`, `acct_hotkey_acct`, `acct_hotkey_down`) VALUES + (1, 105, 'engine', 1, 1609095426, 1, 0); +INSERT INTO `acct_hotkey` (`acct_hotkey_id`, `acct_hotkey_key`, `acct_hotkey_cmdstr`, `acct_hotkey_enabled`, `acct_hotkey_when_added`, `acct_hotkey_acct`, `acct_hotkey_down`) VALUES + (2, 107, 'lights', 1, 1609095427, 1, 0); +INSERT INTO `acct_hotkey` (`acct_hotkey_id`, `acct_hotkey_key`, `acct_hotkey_cmdstr`, `acct_hotkey_enabled`, `acct_hotkey_when_added`, `acct_hotkey_acct`, `acct_hotkey_down`) VALUES + (3, 108, 'lock', 1, 1609095427, 1, 0); +INSERT INTO `acct_hotkey` (`acct_hotkey_id`, `acct_hotkey_key`, `acct_hotkey_cmdstr`, `acct_hotkey_enabled`, `acct_hotkey_when_added`, `acct_hotkey_acct`, `acct_hotkey_down`) VALUES + (4, 102, 'enter', 1, 1609095427, 1, 0); +INSERT INTO `acct_hotkey` (`acct_hotkey_id`, `acct_hotkey_key`, `acct_hotkey_cmdstr`, `acct_hotkey_enabled`, `acct_hotkey_when_added`, `acct_hotkey_acct`, `acct_hotkey_down`) VALUES + (5, 103, 'passenger', 1, 1609095427, 1, 0); +INSERT INTO `acct_hotkey` (`acct_hotkey_id`, `acct_hotkey_key`, `acct_hotkey_cmdstr`, `acct_hotkey_enabled`, `acct_hotkey_when_added`, `acct_hotkey_acct`, `acct_hotkey_down`) VALUES + (6, 105, 'engine', 1, 1609095427, 2, 0); +INSERT INTO `acct_hotkey` (`acct_hotkey_id`, `acct_hotkey_key`, `acct_hotkey_cmdstr`, `acct_hotkey_enabled`, `acct_hotkey_when_added`, `acct_hotkey_acct`, `acct_hotkey_down`) VALUES + (7, 107, 'lights', 1, 1609095427, 2, 0); +INSERT INTO `acct_hotkey` (`acct_hotkey_id`, `acct_hotkey_key`, `acct_hotkey_cmdstr`, `acct_hotkey_enabled`, `acct_hotkey_when_added`, `acct_hotkey_acct`, `acct_hotkey_down`) VALUES + (8, 108, 'lock', 1, 1609095427, 2, 0); +INSERT INTO `acct_hotkey` (`acct_hotkey_id`, `acct_hotkey_key`, `acct_hotkey_cmdstr`, `acct_hotkey_enabled`, `acct_hotkey_when_added`, `acct_hotkey_acct`, `acct_hotkey_down`) VALUES + (9, 102, 'enter', 1, 1609095427, 2, 0); +INSERT INTO `acct_hotkey` (`acct_hotkey_id`, `acct_hotkey_key`, `acct_hotkey_cmdstr`, `acct_hotkey_enabled`, `acct_hotkey_when_added`, `acct_hotkey_acct`, `acct_hotkey_down`) VALUES + (10, 103, 'passenger', 1, 1609095427, 2, 0); +INSERT INTO `acct_hotkey` (`acct_hotkey_id`, `acct_hotkey_key`, `acct_hotkey_cmdstr`, `acct_hotkey_enabled`, `acct_hotkey_when_added`, `acct_hotkey_acct`, `acct_hotkey_down`) VALUES + (11, 105, 'engine', 1, 1609095427, 3, 0); +INSERT INTO `acct_hotkey` (`acct_hotkey_id`, `acct_hotkey_key`, `acct_hotkey_cmdstr`, `acct_hotkey_enabled`, `acct_hotkey_when_added`, `acct_hotkey_acct`, `acct_hotkey_down`) VALUES + (12, 107, 'lights', 1, 1609095427, 3, 0); +INSERT INTO `acct_hotkey` (`acct_hotkey_id`, `acct_hotkey_key`, `acct_hotkey_cmdstr`, `acct_hotkey_enabled`, `acct_hotkey_when_added`, `acct_hotkey_acct`, `acct_hotkey_down`) VALUES + (13, 108, 'lock', 1, 1609095427, 3, 0); +INSERT INTO `acct_hotkey` (`acct_hotkey_id`, `acct_hotkey_key`, `acct_hotkey_cmdstr`, `acct_hotkey_enabled`, `acct_hotkey_when_added`, `acct_hotkey_acct`, `acct_hotkey_down`) VALUES + (14, 102, 'enter', 1, 1609095427, 3, 0); +INSERT INTO `acct_hotkey` (`acct_hotkey_id`, `acct_hotkey_key`, `acct_hotkey_cmdstr`, `acct_hotkey_enabled`, `acct_hotkey_when_added`, `acct_hotkey_acct`, `acct_hotkey_down`) VALUES + (15, 103, 'passenger', 1, 1609095427, 3, 0); +INSERT INTO `acct_hotkey` (`acct_hotkey_id`, `acct_hotkey_key`, `acct_hotkey_cmdstr`, `acct_hotkey_enabled`, `acct_hotkey_when_added`, `acct_hotkey_acct`, `acct_hotkey_down`) VALUES + (16, 105, 'engine', 1, 1609095427, 4, 0); +INSERT INTO `acct_hotkey` (`acct_hotkey_id`, `acct_hotkey_key`, `acct_hotkey_cmdstr`, `acct_hotkey_enabled`, `acct_hotkey_when_added`, `acct_hotkey_acct`, `acct_hotkey_down`) VALUES + (17, 107, 'lights', 1, 1609095428, 4, 0); +INSERT INTO `acct_hotkey` (`acct_hotkey_id`, `acct_hotkey_key`, `acct_hotkey_cmdstr`, `acct_hotkey_enabled`, `acct_hotkey_when_added`, `acct_hotkey_acct`, `acct_hotkey_down`) VALUES + (18, 108, 'lock', 1, 1609095428, 4, 0); +INSERT INTO `acct_hotkey` (`acct_hotkey_id`, `acct_hotkey_key`, `acct_hotkey_cmdstr`, `acct_hotkey_enabled`, `acct_hotkey_when_added`, `acct_hotkey_acct`, `acct_hotkey_down`) VALUES + (19, 102, 'enter', 1, 1609095428, 4, 0); +INSERT INTO `acct_hotkey` (`acct_hotkey_id`, `acct_hotkey_key`, `acct_hotkey_cmdstr`, `acct_hotkey_enabled`, `acct_hotkey_when_added`, `acct_hotkey_acct`, `acct_hotkey_down`) VALUES + (20, 103, 'passenger', 1, 1609095428, 4, 0); +INSERT INTO `acct_hotkey` (`acct_hotkey_id`, `acct_hotkey_key`, `acct_hotkey_cmdstr`, `acct_hotkey_enabled`, `acct_hotkey_when_added`, `acct_hotkey_acct`, `acct_hotkey_down`) VALUES + (21, 105, 'engine', 1, 1609095428, 5, 0); +INSERT INTO `acct_hotkey` (`acct_hotkey_id`, `acct_hotkey_key`, `acct_hotkey_cmdstr`, `acct_hotkey_enabled`, `acct_hotkey_when_added`, `acct_hotkey_acct`, `acct_hotkey_down`) VALUES + (22, 107, 'lights', 1, 1609095428, 5, 0); +INSERT INTO `acct_hotkey` (`acct_hotkey_id`, `acct_hotkey_key`, `acct_hotkey_cmdstr`, `acct_hotkey_enabled`, `acct_hotkey_when_added`, `acct_hotkey_acct`, `acct_hotkey_down`) VALUES + (23, 108, 'lock', 1, 1609095428, 5, 0); +INSERT INTO `acct_hotkey` (`acct_hotkey_id`, `acct_hotkey_key`, `acct_hotkey_cmdstr`, `acct_hotkey_enabled`, `acct_hotkey_when_added`, `acct_hotkey_acct`, `acct_hotkey_down`) VALUES + (24, 102, 'enter', 1, 1609095428, 5, 0); +INSERT INTO `acct_hotkey` (`acct_hotkey_id`, `acct_hotkey_key`, `acct_hotkey_cmdstr`, `acct_hotkey_enabled`, `acct_hotkey_when_added`, `acct_hotkey_acct`, `acct_hotkey_down`) VALUES + (25, 103, 'passenger', 1, 1609095428, 5, 0); +INSERT INTO `acct_hotkey` (`acct_hotkey_id`, `acct_hotkey_key`, `acct_hotkey_cmdstr`, `acct_hotkey_enabled`, `acct_hotkey_when_added`, `acct_hotkey_acct`, `acct_hotkey_down`) VALUES + (26, 105, 'engine', 1, 1609095428, 6, 0); +INSERT INTO `acct_hotkey` (`acct_hotkey_id`, `acct_hotkey_key`, `acct_hotkey_cmdstr`, `acct_hotkey_enabled`, `acct_hotkey_when_added`, `acct_hotkey_acct`, `acct_hotkey_down`) VALUES + (27, 107, 'lights', 1, 1609095428, 6, 0); +INSERT INTO `acct_hotkey` (`acct_hotkey_id`, `acct_hotkey_key`, `acct_hotkey_cmdstr`, `acct_hotkey_enabled`, `acct_hotkey_when_added`, `acct_hotkey_acct`, `acct_hotkey_down`) VALUES + (28, 108, 'lock', 1, 1609095428, 6, 0); +INSERT INTO `acct_hotkey` (`acct_hotkey_id`, `acct_hotkey_key`, `acct_hotkey_cmdstr`, `acct_hotkey_enabled`, `acct_hotkey_when_added`, `acct_hotkey_acct`, `acct_hotkey_down`) VALUES + (29, 102, 'enter', 1, 1609095428, 6, 0); +INSERT INTO `acct_hotkey` (`acct_hotkey_id`, `acct_hotkey_key`, `acct_hotkey_cmdstr`, `acct_hotkey_enabled`, `acct_hotkey_when_added`, `acct_hotkey_acct`, `acct_hotkey_down`) VALUES + (30, 103, 'passenger', 1, 1609095428, 6, 0); +INSERT INTO `acct_hotkey` (`acct_hotkey_id`, `acct_hotkey_key`, `acct_hotkey_cmdstr`, `acct_hotkey_enabled`, `acct_hotkey_when_added`, `acct_hotkey_acct`, `acct_hotkey_down`) VALUES + (31, 105, 'engine', 1, 1609095584, 7, 0); +INSERT INTO `acct_hotkey` (`acct_hotkey_id`, `acct_hotkey_key`, `acct_hotkey_cmdstr`, `acct_hotkey_enabled`, `acct_hotkey_when_added`, `acct_hotkey_acct`, `acct_hotkey_down`) VALUES + (32, 107, 'lights', 1, 1609095584, 7, 0); +INSERT INTO `acct_hotkey` (`acct_hotkey_id`, `acct_hotkey_key`, `acct_hotkey_cmdstr`, `acct_hotkey_enabled`, `acct_hotkey_when_added`, `acct_hotkey_acct`, `acct_hotkey_down`) VALUES + (33, 108, 'lock', 1, 1609095585, 7, 0); +INSERT INTO `acct_hotkey` (`acct_hotkey_id`, `acct_hotkey_key`, `acct_hotkey_cmdstr`, `acct_hotkey_enabled`, `acct_hotkey_when_added`, `acct_hotkey_acct`, `acct_hotkey_down`) VALUES + (34, 102, 'enter', 1, 1609095585, 7, 0); +INSERT INTO `acct_hotkey` (`acct_hotkey_id`, `acct_hotkey_key`, `acct_hotkey_cmdstr`, `acct_hotkey_enabled`, `acct_hotkey_when_added`, `acct_hotkey_acct`, `acct_hotkey_down`) VALUES + (35, 103, 'passenger', 1, 1609095585, 7, 0); +INSERT INTO `acct_hotkey` (`acct_hotkey_id`, `acct_hotkey_key`, `acct_hotkey_cmdstr`, `acct_hotkey_enabled`, `acct_hotkey_when_added`, `acct_hotkey_acct`, `acct_hotkey_down`) VALUES + (36, 109, 'cursor', 1, 1609095585, 1, 0); +/*!40000 ALTER TABLE `acct_hotkey` ENABLE KEYS */; + +-- Dumping structure for table db24053.acct_main +CREATE TABLE IF NOT EXISTS `acct_main` ( + `acct_id` int(11) NOT NULL AUTO_INCREMENT, + `acct_name` varchar(32) NOT NULL DEFAULT '', + `acct_pass` varchar(512) NOT NULL DEFAULT '', + `acct_email` varchar(128) NOT NULL DEFAULT '', + `acct_settings` int(11) NOT NULL DEFAULT '0', + `acct_staff_flags` int(11) NOT NULL DEFAULT '0', + `acct_staff_title` varchar(32) NOT NULL DEFAULT '', + `acct_mod_flags` int(11) NOT NULL DEFAULT '0', + `acct_irc` varchar(64) NOT NULL DEFAULT '', + `acct_discord` int(64) NOT NULL DEFAULT '0', + `acct_ip` varchar(50) NOT NULL DEFAULT '', + PRIMARY KEY (`acct_id`) +) ENGINE=InnoDB AUTO_INCREMENT=8 DEFAULT CHARSET=latin1 COMMENT='Accounts'; + +-- Dumping data for table db24053.acct_main: ~6 rows (approximately) +/*!40000 ALTER TABLE `acct_main` DISABLE KEYS */; +INSERT INTO `acct_main` (`acct_id`, `acct_name`, `acct_pass`, `acct_email`, `acct_settings`, `acct_staff_flags`, `acct_staff_title`, `acct_mod_flags`, `acct_irc`, `acct_discord`, `acct_ip`) VALUES + (1, 'Vortrex', '4271461D21D2A465D0FF2B7082A9136F1DACD78127C805E2B33292AAA200E5682F4B7D4AB426224222B24AA1183C4D02FEE983030996CF3963746AE1C46A375D', 'adrianbram@gmail.com', 0, -1, 'Scripter', 0, '', 0, '1809583893'); +INSERT INTO `acct_main` (`acct_id`, `acct_name`, `acct_pass`, `acct_email`, `acct_settings`, `acct_staff_flags`, `acct_staff_title`, `acct_mod_flags`, `acct_irc`, `acct_discord`, `acct_ip`) VALUES + (2, 'maxaxle', '33A31BF6E32BD3BCCE1D2F2AB3B0D0768CEDAD30BC21A2EFA5F8A66BD7333A5545EFC773830E9F0B3C7AA285E3FDF60BADD1E93401AF9FC26CC25BB77238D750', '', 0, -1, 'Moderator', 0, '', 0, '1228971253'); +INSERT INTO `acct_main` (`acct_id`, `acct_name`, `acct_pass`, `acct_email`, `acct_settings`, `acct_staff_flags`, `acct_staff_title`, `acct_mod_flags`, `acct_irc`, `acct_discord`, `acct_ip`) VALUES + (3, 'Vortrex2', '26B8F7687300F0BF90F79BEC5E84CCD57582DD09C345F256EBE99057595302E25C1958472172D4689D7B2DA607584AC2420D5909FEDB3E2B7A0F73A517A8AC1C', 'adrianbram@gmail.com', 0, 0, 'Scripter', 0, '', 0, '1809583893'); +INSERT INTO `acct_main` (`acct_id`, `acct_name`, `acct_pass`, `acct_email`, `acct_settings`, `acct_staff_flags`, `acct_staff_title`, `acct_mod_flags`, `acct_irc`, `acct_discord`, `acct_ip`) VALUES + (4, 'Vortrex0', '87222437E0C7717BD9E5EC9E9FCE4DD258638F4B78AEC613A45F1161BC62268B077949984604076CC3F0959B55FEB1F1031C725FB2928A973CEE69CFFF1CC9DB', 'adrianbram@gmail.com', 0, 0, '', 0, '', 0, '2130706433'); +INSERT INTO `acct_main` (`acct_id`, `acct_name`, `acct_pass`, `acct_email`, `acct_settings`, `acct_staff_flags`, `acct_staff_title`, `acct_mod_flags`, `acct_irc`, `acct_discord`, `acct_ip`) VALUES + (6, 'Vortrex1', 'EB77E84113C336288AA4B9AA2A8963ABF88ED15E23B51285C81FC6565FBB2F837DB5891AE63A1B7BA9B0FA5FD705FD7B335E7F83294641E3BFFB35EF36E1CC1C', 'adrianbram@gmail.com', 0, 0, '', 0, '', 0, ''); +INSERT INTO `acct_main` (`acct_id`, `acct_name`, `acct_pass`, `acct_email`, `acct_settings`, `acct_staff_flags`, `acct_staff_title`, `acct_mod_flags`, `acct_irc`, `acct_discord`, `acct_ip`) VALUES + (7, 'Vortrex3', 'D594569434FF2C84A326080F52D86DC829B376344AE8C9A9378E794DAF0B495629E1861D5ED6AD33AE9B13EC74986203599F8C8B71C58082AEE651B655A2D69A', 'adrianbram@gmail.com', 0, 0, '', 0, '', 0, '1809583893'); +/*!40000 ALTER TABLE `acct_main` ENABLE KEYS */; + +-- Dumping structure for table db24053.acct_msg +CREATE TABLE IF NOT EXISTS `acct_msg` ( + `acct_msg_id` int(11) NOT NULL AUTO_INCREMENT, + `acct_msg_acct` int(11) NOT NULL DEFAULT '0', + `acct_msg_who_sent` int(11) NOT NULL DEFAULT '0', + `acct_msg_when_sent` int(32) NOT NULL DEFAULT '0', + `acct_msg_when_read` int(32) NOT NULL DEFAULT '0', + `acct_msg_deleted` tinyint(1) NOT NULL DEFAULT '0', + `acct_msg_when_deleted` int(32) NOT NULL DEFAULT '0', + `acct_msg_folder` int(11) NOT NULL DEFAULT '0', + `acct_msg_message` text NOT NULL, + PRIMARY KEY (`acct_msg_id`) +) ENGINE=InnoDB DEFAULT CHARSET=latin1 COMMENT='Accounts - Private Messages (Mail)'; + +-- Dumping data for table db24053.acct_msg: ~0 rows (approximately) +/*!40000 ALTER TABLE `acct_msg` DISABLE KEYS */; +/*!40000 ALTER TABLE `acct_msg` ENABLE KEYS */; + +-- Dumping structure for table db24053.acct_note +CREATE TABLE IF NOT EXISTS `acct_note` ( + `acct_note_id` int(11) NOT NULL AUTO_INCREMENT, + `acct_note_acct` int(11) NOT NULL DEFAULT '0', + `acct_server` int(11) NOT NULL DEFAULT '0', + `acct_note_who_added` int(11) NOT NULL DEFAULT '0', + `acct_note_when_added` int(32) NOT NULL DEFAULT '0', + `acct_note_message` varchar(255) NOT NULL DEFAULT '', + `acct_note_deleted` tinyint(1) NOT NULL DEFAULT '0', + `acct_note_who_deleted` int(11) NOT NULL DEFAULT '0', + `acct_note_when_deleted` int(32) NOT NULL DEFAULT '0', + PRIMARY KEY (`acct_note_id`) +) ENGINE=InnoDB DEFAULT CHARSET=latin1 COMMENT='Accounts - Staff Notes'; + +-- Dumping data for table db24053.acct_note: ~0 rows (approximately) +/*!40000 ALTER TABLE `acct_note` DISABLE KEYS */; +/*!40000 ALTER TABLE `acct_note` ENABLE KEYS */; + +-- Dumping structure for table db24053.acct_wl +CREATE TABLE IF NOT EXISTS `acct_wl` ( + `acct_wl_id` int(11) NOT NULL AUTO_INCREMENT, + `acct_wl_ip` int(24) NOT NULL DEFAULT '0', + `acct_wl_uid` varchar(128) NOT NULL DEFAULT '', + `acct_wl_when_added` int(32) NOT NULL DEFAULT '0', + `acct_wl_acct` int(11) NOT NULL DEFAULT '0', + `acct_wl_enabled` tinyint(1) NOT NULL DEFAULT '0', + PRIMARY KEY (`acct_wl_id`) +) ENGINE=InnoDB DEFAULT CHARSET=latin1 COMMENT='Accounts - Access Whitelist'; + +-- Dumping data for table db24053.acct_wl: ~0 rows (approximately) +/*!40000 ALTER TABLE `acct_wl` DISABLE KEYS */; +/*!40000 ALTER TABLE `acct_wl` ENABLE KEYS */; + +-- Dumping structure for table db24053.ac_script_bl +CREATE TABLE IF NOT EXISTS `ac_script_bl` ( + `ac_script_bl_id` int(11) NOT NULL AUTO_INCREMENT, + `ac_script_bl_server` int(11) NOT NULL DEFAULT '0', + `ac_script_bl_name` varchar(50) NOT NULL DEFAULT '', + `ac_script_bl_enabled` int(11) NOT NULL DEFAULT '0', + PRIMARY KEY (`ac_script_bl_id`) +) ENGINE=InnoDB AUTO_INCREMENT=4 DEFAULT CHARSET=utf8 COMMENT='Anticheat - Blacklisted Scripts'; + +-- Dumping data for table db24053.ac_script_bl: ~3 rows (approximately) +/*!40000 ALTER TABLE `ac_script_bl` DISABLE KEYS */; +INSERT INTO `ac_script_bl` (`ac_script_bl_id`, `ac_script_bl_server`, `ac_script_bl_name`, `ac_script_bl_enabled`) VALUES + (1, 4, 'load_modmanager', 1); +INSERT INTO `ac_script_bl` (`ac_script_bl_id`, `ac_script_bl_server`, `ac_script_bl_name`, `ac_script_bl_enabled`) VALUES + (2, 1, 'info', 1); +INSERT INTO `ac_script_bl` (`ac_script_bl_id`, `ac_script_bl_server`, `ac_script_bl_name`, `ac_script_bl_enabled`) VALUES + (3, 1, 'info2', 1); +/*!40000 ALTER TABLE `ac_script_bl` ENABLE KEYS */; + +-- Dumping structure for table db24053.ac_script_wl +CREATE TABLE IF NOT EXISTS `ac_script_wl` ( + `ac_script_wl_id` int(11) NOT NULL AUTO_INCREMENT, + `ac_script_wl_server` int(11) NOT NULL DEFAULT '0', + `ac_script_wl_name` varchar(50) NOT NULL DEFAULT '', + `ac_script_wl_enabled` int(11) NOT NULL DEFAULT '1', + PRIMARY KEY (`ac_script_wl_id`) USING BTREE +) ENGINE=InnoDB AUTO_INCREMENT=7 DEFAULT CHARSET=utf8 COMMENT='Anticheat - Whitelisted Scripts'; + +-- Dumping data for table db24053.ac_script_wl: ~5 rows (approximately) +/*!40000 ALTER TABLE `ac_script_wl` DISABLE KEYS */; +INSERT INTO `ac_script_wl` (`ac_script_wl_id`, `ac_script_wl_server`, `ac_script_wl_name`, `ac_script_wl_enabled`) VALUES + (1, 4, 'sync', 1); +INSERT INTO `ac_script_wl` (`ac_script_wl_id`, `ac_script_wl_server`, `ac_script_wl_name`, `ac_script_wl_enabled`) VALUES + (2, 4, 'gtac', 1); +INSERT INTO `ac_script_wl` (`ac_script_wl_id`, `ac_script_wl_server`, `ac_script_wl_name`, `ac_script_wl_enabled`) VALUES + (3, 4, 'network_main', 1); +INSERT INTO `ac_script_wl` (`ac_script_wl_id`, `ac_script_wl_server`, `ac_script_wl_name`, `ac_script_wl_enabled`) VALUES + (4, 4, 'mpcellphone', 1); +INSERT INTO `ac_script_wl` (`ac_script_wl_id`, `ac_script_wl_server`, `ac_script_wl_name`, `ac_script_wl_enabled`) VALUES + (5, 4, 'speechcontrol_net', 1); +/*!40000 ALTER TABLE `ac_script_wl` ENABLE KEYS */; + +-- Dumping structure for table db24053.atm_main +CREATE TABLE IF NOT EXISTS `atm_main` ( + `atm_id` int(11) NOT NULL AUTO_INCREMENT, + `atm_server` tinyint(2) NOT NULL DEFAULT '0', + `atm_pos_x` float NOT NULL DEFAULT '0', + `atm_pos_y` float NOT NULL DEFAULT '0', + `atm_pos_z` float NOT NULL DEFAULT '0', + `atm_fee` int(11) NOT NULL DEFAULT '0', + `atm_disabled` tinyint(1) NOT NULL DEFAULT '0', + PRIMARY KEY (`atm_id`) +) ENGINE=InnoDB DEFAULT CHARSET=latin1 COMMENT='ATMs'; + +-- Dumping data for table db24053.atm_main: ~0 rows (approximately) +/*!40000 ALTER TABLE `atm_main` DISABLE KEYS */; +/*!40000 ALTER TABLE `atm_main` ENABLE KEYS */; + +-- Dumping structure for table db24053.atm_use +CREATE TABLE IF NOT EXISTS `atm_use` ( + `atm_use_id` int(11) NOT NULL AUTO_INCREMENT, + `atm_use_atm` int(11) NOT NULL DEFAULT '0', + `atm_use_bankacct` int(11) NOT NULL DEFAULT '0', + `atm_use_amount` int(11) NOT NULL DEFAULT '0', + `atm_use_when` int(32) NOT NULL DEFAULT '0', + `atm_use_balance_before` int(11) NOT NULL DEFAULT '0', + `atm_use_balance_after` int(11) NOT NULL DEFAULT '0', + `atm_use_result` int(11) NOT NULL DEFAULT '0', + PRIMARY KEY (`atm_use_id`) +) ENGINE=InnoDB DEFAULT CHARSET=latin1 COMMENT='ATMs - Usage'; + +-- Dumping data for table db24053.atm_use: ~0 rows (approximately) +/*!40000 ALTER TABLE `atm_use` DISABLE KEYS */; +/*!40000 ALTER TABLE `atm_use` ENABLE KEYS */; + +-- Dumping structure for table db24053.bank_main +CREATE TABLE IF NOT EXISTS `bank_main` ( + `bank_id` int(11) NOT NULL AUTO_INCREMENT, + `bank_server` int(11) NOT NULL DEFAULT '0', + `bank_name` varchar(128) NOT NULL DEFAULT 'Unnamed', + `bank_active` tinyint(1) NOT NULL DEFAULT '1', + `ban_try_when_tried` int(32) NOT NULL DEFAULT '0', + `ban_try_ban_id` int(11) NOT NULL DEFAULT '0', + PRIMARY KEY (`bank_id`) +) ENGINE=InnoDB DEFAULT CHARSET=latin1 COMMENT='Bans - Connection Attempts'; + +-- Dumping data for table db24053.bank_main: ~0 rows (approximately) +/*!40000 ALTER TABLE `bank_main` DISABLE KEYS */; +/*!40000 ALTER TABLE `bank_main` ENABLE KEYS */; + +-- Dumping structure for table db24053.ban_main +CREATE TABLE IF NOT EXISTS `ban_main` ( + `ban_id` int(11) NOT NULL AUTO_INCREMENT, + `ban_detail` int(11) NOT NULL DEFAULT '0', + `ban_server` tinyint(2) NOT NULL DEFAULT '0', + `ban_type` tinyint(1) NOT NULL DEFAULT '0', + `ban_ip_start` int(24) NOT NULL DEFAULT '0', + `ban_ip_end` int(24) NOT NULL DEFAULT '0', + `ban_uid` varchar(256) NOT NULL DEFAULT '', + `ban_who_added` int(11) NOT NULL DEFAULT '0', + `ban_when_added` int(32) NOT NULL DEFAULT '0', + `ban_reason` varchar(255) NOT NULL DEFAULT '', + `ban_deleted` tinyint(1) NOT NULL DEFAULT '0', + `ban_who_deleted` int(11) NOT NULL DEFAULT '0', + `ban_when_deleted` int(32) NOT NULL DEFAULT '0', + `ban_when_end` int(32) NOT NULL DEFAULT '0', + PRIMARY KEY (`ban_id`) +) ENGINE=InnoDB DEFAULT CHARSET=latin1 COMMENT='Bans'; + +-- Dumping data for table db24053.ban_main: ~0 rows (approximately) +/*!40000 ALTER TABLE `ban_main` DISABLE KEYS */; +/*!40000 ALTER TABLE `ban_main` ENABLE KEYS */; + +-- Dumping structure for table db24053.ban_try +CREATE TABLE IF NOT EXISTS `ban_try` ( + `ban_try_id` int(11) NOT NULL AUTO_INCREMENT, + `ban_try_server` tinyint(2) NOT NULL DEFAULT '0', + `ban_try_ip` int(24) NOT NULL DEFAULT '0', + `ban_try_uid` varchar(128) NOT NULL DEFAULT '', + `ban_try_when_tried` int(32) NOT NULL DEFAULT '0', + `ban_try_ban_id` int(11) NOT NULL DEFAULT '0', + PRIMARY KEY (`ban_try_id`) +) ENGINE=InnoDB DEFAULT CHARSET=latin1 COMMENT='Bans - Connection Attempts'; + +-- Dumping data for table db24053.ban_try: ~0 rows (approximately) +/*!40000 ALTER TABLE `ban_try` DISABLE KEYS */; +/*!40000 ALTER TABLE `ban_try` ENABLE KEYS */; + +-- Dumping structure for table db24053.biz_buy +CREATE TABLE IF NOT EXISTS `biz_buy` ( + `biz_buy_id` int(11) NOT NULL AUTO_INCREMENT, + `biz_buy_biz` int(11) NOT NULL DEFAULT '0', + `biz_buy_sacct` int(11) NOT NULL DEFAULT '0', + `biz_buy_amount` int(11) NOT NULL DEFAULT '0', + `biz_buy_prod` int(11) NOT NULL DEFAULT '0', + `biz_buy_tip` int(11) NOT NULL DEFAULT '0', + `biz_buy_result` tinyint(4) NOT NULL DEFAULT '0', + PRIMARY KEY (`biz_buy_id`) +) ENGINE=InnoDB DEFAULT CHARSET=latin1 COMMENT='Businesses - Purchases'; + +-- Dumping data for table db24053.biz_buy: ~0 rows (approximately) +/*!40000 ALTER TABLE `biz_buy` DISABLE KEYS */; +/*!40000 ALTER TABLE `biz_buy` ENABLE KEYS */; + +-- Dumping structure for table db24053.biz_loc +CREATE TABLE IF NOT EXISTS `biz_loc` ( + `biz_loc_id` int(11) NOT NULL AUTO_INCREMENT, + `biz_loc_server` int(11) NOT NULL DEFAULT '0', + `biz_loc_name` varchar(128) NOT NULL DEFAULT '', + `biz_loc_type` int(11) NOT NULL DEFAULT '0', + `biz_loc_biz` int(11) NOT NULL DEFAULT '0', + `biz_loc_enabled` int(11) NOT NULL DEFAULT '0', + `biz_loc_pos_x` float NOT NULL DEFAULT '0', + `biz_loc_pos_y` float NOT NULL DEFAULT '0', + `biz_loc_pos_z` float NOT NULL DEFAULT '0', + `biz_loc_rot_z` float NOT NULL DEFAULT '0', + `biz_loc_int` int(11) NOT NULL DEFAULT '0', + `biz_loc_vw` int(11) NOT NULL DEFAULT '0', + PRIMARY KEY (`biz_loc_id`) USING BTREE +) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Businesses - Locations'; + +-- Dumping data for table db24053.biz_loc: ~0 rows (approximately) +/*!40000 ALTER TABLE `biz_loc` DISABLE KEYS */; +/*!40000 ALTER TABLE `biz_loc` ENABLE KEYS */; + +-- Dumping structure for table db24053.biz_main +CREATE TABLE IF NOT EXISTS `biz_main` ( + `biz_id` int(11) NOT NULL AUTO_INCREMENT, + `biz_server` int(11) NOT NULL DEFAULT '0', + `biz_name` varchar(40) NOT NULL DEFAULT 'Unnamed Business', + `biz_type` int(11) NOT NULL DEFAULT '0', + `biz_buy_price` int(11) NOT NULL DEFAULT '0', + `biz_owner_type` int(11) NOT NULL DEFAULT '0', + `biz_owner_id` int(11) NOT NULL DEFAULT '0', + `biz_entrance_pos_x` float NOT NULL DEFAULT '0', + `biz_entrance_pos_y` float NOT NULL DEFAULT '0', + `biz_entrance_pos_z` float NOT NULL DEFAULT '0', + `biz_entrance_rot_z` float NOT NULL DEFAULT '0', + `biz_entrance_int` int(11) NOT NULL DEFAULT '0', + `biz_entrance_vw` int(11) NOT NULL DEFAULT '0', + `biz_entrance_pickup` int(11) NOT NULL, + `biz_entrance_blip` int(11) NOT NULL, + `biz_exit_pos_x` float NOT NULL DEFAULT '0', + `biz_exit_pos_y` float NOT NULL DEFAULT '0', + `biz_exit_pos_z` float NOT NULL DEFAULT '0', + `biz_exit_rot_z` float NOT NULL DEFAULT '0', + `biz_exit_int` int(11) NOT NULL DEFAULT '0', + `biz_exit_vw` int(11) NOT NULL DEFAULT '0', + `biz_exit_pickup` int(11) NOT NULL, + `biz_exit_blip` int(11) NOT NULL, + `biz_misc_customext` int(11) NOT NULL DEFAULT '0', + `biz_misc_customint` int(11) NOT NULL DEFAULT '0', + `biz_supply_pos_x` float NOT NULL DEFAULT '0', + `biz_supply_pos_y` float NOT NULL DEFAULT '0', + `biz_supply_pos_z` float NOT NULL DEFAULT '0', + `biz_buy_pos_x` float NOT NULL DEFAULT '0', + `biz_buy_pos_y` float NOT NULL DEFAULT '0', + `biz_buy_pos_z` float NOT NULL DEFAULT '0', + `biz_buy_rot_z` float NOT NULL DEFAULT '0', + `biz_misc_customvw` int(11) NOT NULL DEFAULT '0', + `biz_locked` int(11) NOT NULL DEFAULT '0', + `biz_till` int(11) NOT NULL DEFAULT '0', + `biz_entrance_fee` int(11) NOT NULL DEFAULT '0', + `biz_deleted` int(11) NOT NULL DEFAULT '0', + `biz_who_deleted` int(11) NOT NULL DEFAULT '0', + `biz_when_deleted` int(32) NOT NULL DEFAULT '0', + PRIMARY KEY (`biz_id`) USING BTREE +) ENGINE=InnoDB AUTO_INCREMENT=289 DEFAULT CHARSET=latin1 COMMENT='Businesses'; + +-- Dumping data for table db24053.biz_main: ~203 rows (approximately) +/*!40000 ALTER TABLE `biz_main` DISABLE KEYS */; +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`) VALUES + (1, 4, 'Unnamed Business', 5, 30000, 0, 0, -90.2436, -1219.76, 2.71, 350.178, 0, 0, 0, 0, -2026.9, -104.128, 1035.17, 179.07, 3, 0, 0, 0, 0, 0, -93.521, -1241.12, 1.92454, -104.326, -1213.02, 2.76131, 174.391, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`) VALUES + (2, 4, 'Unnamed Business', 8, 30000, 0, 0, 2078.66, -1582.38, 13.4873, 337.053, 0, 0, 0, 0, -25.8433, -187.446, 1003.55, 4.72576, 17, 0, 0, 0, 0, 0, 1795.3, -1166.21, 23.8281, 2127.1, -1134.72, 25.5488, 351.147, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`) VALUES + (4, 4, 'Pawn', 4, 30000, 0, 0, 984.176, -1336.44, 13.5469, 199.037, 0, 0, 0, 0, 315.799, -143.53, 999.602, 1.01837, 7, 0, 0, 0, 0, 1, 1872.19, -1621.2, 13.5469, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`) VALUES + (5, 4, 'Unnamed Business', 1, 30000, 0, 0, 1653.2, 1470.7, 1152.43, 299.874, 0, 0, 0, 0, -25.9841, -187.986, 1003.55, 357.842, 17, 0, 0, 0, 0, 0, 1837.36, -1434.91, 13.5625, 1704.68, -1587.22, 13.5383, 87.0352, 4, 0, 0, 0, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`) VALUES + (6, 4, 'Unnamed Business', 3, 30000, 0, 0, 1333.37, -1864.21, 13.5469, 154.702, 0, 0, 0, 0, 6.6435, -31.4626, 1003.55, 191.882, 10, 0, 0, 0, 0, 1, 1565.82, -1167.49, 24.0781, 1647.94, -2483.22, 13.5547, 87.3502, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`) VALUES + (7, 4, 'Unnamed Business', 5, 30000, 0, 0, 1026.38, -1927.19, 12.7989, 154.459, 0, 0, 0, 0, 1226.77, -813.652, 1084.01, 353.088, 5, 0, 0, 0, 0, 1, 1915.87, -1790.69, 13.3906, 1026.22, -1915.85, 12.8776, 266.223, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`) VALUES + (8, 4, 'Unnamed Business', 3, 30000, 0, 0, -172.128, -1825.41, 55.408, 215.571, 0, 0, 0, 0, 1445.44, -1294.74, 13.5469, 100.653, 0, 0, 0, 0, 1, 0, 1448.97, -1285.72, 13.5469, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`) VALUES + (10, 4, 'Unnamed Business', 3, 30000, 0, 0, 1525.41, -1671.54, 6.21875, 83.7091, 0, 0, 0, 0, 372.532, -133.314, 1001.49, 359.576, 5, 0, 0, 0, 0, 0, -2434.94, -195.644, 35.3203, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`) VALUES + (11, 4, 'Unnamed Business', 8, 30000, 0, 0, 1070.49, -1873.66, 13.5469, 274.819, 0, 0, 0, 0, -31.0053, -91.6372, 1003.55, 0.680122, 18, 0, 0, 0, 0, 0, -66.1294, -1169.59, 1.86967, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`) VALUES + (12, 4, 'Unnamed Business', 4, 30000, 0, 0, 1368.98, -1279.67, 13.5469, 262.027, 0, 0, 0, 0, 315.902, -143.025, 999.602, 5.53311, 7, 0, 0, 0, 0, 0, 1365.63, -1285.08, 13.5469, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`) VALUES + (13, 4, 'Unnamed Business', 2, 30000, 0, 0, 1709.03, 1443.96, 1145.78, 281.106, 0, 0, 0, 0, -2029.62, -119.618, 1035.17, 1.0423, 3, 0, 0, 0, 0, 0, -1579.28, 2652.63, 55.8359, -1600.75, 2645.28, 57.6595, 120.282, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`) VALUES + (14, 4, 'Unnamed Business', 8, 30000, 0, 0, 1343.73, -1506.56, 13.5469, 234.154, 0, 0, 0, 0, -25.8373, -188.091, 1003.55, 355.897, 17, 0, 0, 0, 0, 0, 2156.02, -1020.91, 62.7113, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`) VALUES + (16, 4, 'Unnamed Business', 1, 30000, 0, 0, -1676.24, 432.104, 7.17969, 33.0359, 0, 0, 0, 0, -27.3621, -57.8246, 1003.55, 179.037, 6, 0, 0, 0, 1, 0, -1661.84, 442.168, 7.17969, -1591.62, 2657.25, 55.7501, 356.386, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`) VALUES + (17, 4, 'Unnamed Business', 8, 30000, 0, 0, 667.208, -1770.07, 13.6395, 164.522, 0, 0, 0, 0, -25.8373, -188.091, 1003.55, 355.897, 17, 0, 0, 0, 0, 0, 1844.34, -1860.84, 13.3828, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`) VALUES + (18, 4, 'Unnamed Business', 1, 30000, 0, 0, 1000.3, -920.204, 42.3281, 96.2681, 0, 0, 0, 0, -31.1112, -91.8577, 1003.55, 0.052338, 18, 0, 0, 0, 0, 0, 1022.79, -916.642, 42.1797, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`) VALUES + (19, 4, 'Unnamed Business', 2, 30000, 0, 0, 1456.53, -1137.56, 23.9484, 36.7288, 0, 0, 0, 0, 207.615, -111.163, 1005.13, 187.89, 15, 0, 0, 0, 0, 0, 2015.15, -1304.98, 23.986, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`) VALUES + (20, 4, 'Unnamed Business', 8, 30000, 0, 0, -1989.49, 884.844, 46.5406, 98.2134, 0, 0, 0, 0, -31.0061, -91.5664, 1003.55, 0.680122, 18, 0, 0, 0, 1, 0, -1981.44, 905.115, 45.7979, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`) VALUES + (21, 4, 'Unnamed Business', 5, 30000, 0, 0, 1628.75, -1903.4, 13.5532, 84.3039, 0, 0, 0, 0, 1494.8, 1305.13, 1093.29, 65.5664, 3, 0, 0, 0, 0, 0, 904.141, -1333.77, 13.5469, 1636.17, -1893.07, 13.2619, 2.61639, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`) VALUES + (22, 4, 'Unnamed Business', 5, 30000, 0, 0, 1606.29, -2431.95, 13.5547, 1.14757, 0, 0, 0, 0, -30.86, -91.9062, 1003.55, 354.538, 18, 0, 0, 0, 0, 0, 1933.08, -2067.76, 13.5469, 1602.48, -2488.26, 13.5547, 267.485, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`) VALUES + (23, 4, 'Unnamed Business', 0, 30000, 0, 0, 1796.35, -1721.18, 13.5411, 180, 0, 0, 0, 0, -795.014, 489.671, 1376.2, 358.859, 1, 0, 0, 0, 1, 1, 1809.53, -1724.42, 13.5362, 1899.97, -2346.11, 13.5469, 263.56, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`) VALUES + (24, 4, 'Unnamed Business', 1, 30000, 0, 0, 1654.2, 1467.87, 1152.79, 325.41, 0, 0, 0, 0, -30.9635, -91.1079, 1003.55, 4.80216, 18, 0, 0, 0, 0, 0, 1668.04, -1583.68, 13.5469, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`) VALUES + (25, 4, 'Unnamed Business', 3, 30000, 0, 0, 1877.85, -1627.79, 13.3386, 359.503, 0, 0, 0, 0, 460.448, -88.5426, 999.555, 86.9106, 4, 0, 0, 0, 0, 0, 1794.43, -1726.55, 13.5469, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`) VALUES + (26, 4, 'Unnamed Business', 2, 30000, 0, 0, 1704.21, -1578.79, 13.8883, 278.564, 0, 0, 0, 0, 227.075, -7.33794, 1002.21, 91.3542, 5, 0, 0, 0, 0, 0, -1699.21, 954.874, 24.8906, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`) VALUES + (27, 4, 'Unnamed Business', 3, 30000, 0, 0, 2419.8, -1509.08, 24, 268.67, 0, 0, 0, 0, 460.154, -88.5364, 999.555, 88.7906, 4, 0, 0, 0, 0, 0, 2422.79, -1517.02, 24.0069, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`) VALUES + (28, 4, 'Unnamed Business', 4, 30000, 0, 0, 1357.07, 308.062, 19.7473, 338.103, 0, 0, 0, 0, 315.641, -142.827, 999.602, 6.35604, 7, 0, 0, 0, 0, 0, 1365.69, -1283.99, 13.5469, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`) VALUES + (30, 4, 'Unnamed Business', 8, 30000, 0, 0, 1044.57, -1308.84, 13.5469, 99.115, 0, 0, 0, 0, -25.7453, -188.253, 1003.55, 171.504, 17, 0, 0, 0, 0, 0, 1037.38, -1311.36, 13.5469, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`) VALUES + (31, 4, 'Unnamed Business', 0, 30000, 0, 0, 2247.63, 2396.32, 10.8203, 184.236, 0, 0, 0, 0, 204.462, -168.754, 1000.52, 353.473, 14, 0, 0, 0, 0, 0, 567.646, -1291.5, 17.2422, 561.662, -1292.28, 17.2482, 232.669, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`) VALUES + (33, 4, 'Unnamed Business', 4, 30000, 0, 0, 387.179, -1817.95, 7.84098, 273.117, 0, 0, 0, 0, 315.715, -142.947, 999.602, 0.321425, 7, 0, 0, 0, 0, 1, 2521.73, -1544.98, 24.01, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`) VALUES + (34, 4, 'Unnamed Business', 8, 30000, 0, 0, 1073.21, -1384.87, 13.8698, 144.937, 0, 0, 0, 0, 363.315, -74.8249, 1001.51, 315.517, 10, 0, 0, 0, 0, 0, 1191.5, -891.539, 43.1784, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`) VALUES + (35, 4, 'Unnamed Business', 2, 30000, 0, 0, 1109.27, -301.432, 74.54, 358.887, 0, 0, 0, 0, 203.856, -50.2081, 1001.8, 352.563, 1, 0, 0, 0, 0, 0, -2493.67, -33.0023, 25.7656, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`) VALUES + (36, 4, 'Unnamed Business', 1, 30000, 0, 0, 1799.79, -1696.08, 5.24577, 3.04433, 0, 0, 0, 0, -31.4892, -91.506, 1003.55, 358.788, 18, 0, 0, 0, 0, 0, -1948.43, 826.607, 41.5261, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`) VALUES + (37, 4, 'Unnamed Business', 3, 30000, 0, 0, 1732.86, -1582.03, 14.1555, 1.36931, 0, 0, 0, 0, 460.449, -88.6508, 999.555, 84.9172, 4, 0, 0, 0, 0, 0, 1668.86, -1554.79, 13.5469, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`) VALUES + (38, 4, 'Unnamed Business', 8, 30000, 0, 0, 1673.74, -1170.88, 23.9655, 354.084, 0, 0, 0, 0, 501.926, -67.7462, 998.758, 175.187, 11, 0, 0, 0, 0, 0, 2139.42, -1181.06, 23.9922, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`) VALUES + (39, 4, 'Unnamed Business', 8, 30000, 0, 0, 1670.49, -1582.65, 13.5469, 3.42811, 0, 0, 0, 0, -30.9218, -91.5736, 1003.55, 357.108, 18, 0, 0, 0, 0, 0, 2006.9, -1759.92, 13.5391, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`) VALUES + (40, 4, 'Unnamed Business', 8, 30000, 0, 0, 1833.78, -1842.7, 13.5781, 276.736, 0, 0, 0, 0, -26.4404, -187.648, 1003.55, 1.27901, 17, 0, 0, 0, 0, 0, 2864.77, -1428.47, 10.9952, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`) VALUES + (41, 4, 'Unnamed Business', 1, 30000, 0, 0, 2261.93, 28.0644, 26.5, 339.516, 0, 0, 0, 0, -26.4846, -57.8533, 1003.55, 350.759, 6, 0, 0, 0, 0, 0, -1328.06, 2697.52, 50.0625, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`) VALUES + (42, 4, 'Unnamed Business', 8, 30000, 0, 0, 1154.69, -1458.02, 15.7969, 4.52589, 0, 0, 0, 0, -26.6782, -57.6615, 1003.55, 357.681, 6, 0, 0, 0, 0, 0, 2349.25, -1538.52, 24.0033, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`) VALUES + (43, 4, 'Unnamed Business', 8, 30000, 0, 0, 2318.99, -88.68, 26.4844, 178.446, 0, 0, 0, 0, -26.1985, -187.472, 1003.55, 13.4461, 17, 0, 0, 0, 0, 0, -2790.9, 774.258, 50.5078, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`) VALUES + (44, 4, 'Unnamed Business', 1, 30000, 0, 0, 1739.95, 1440.97, 1145.67, 85.9053, 0, 0, 0, 0, -31.0512, -91.6771, 1003.55, 0.187671, 18, 0, 0, 0, 0, 0, -2235.17, -2563.35, 31.9219, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`) VALUES + (45, 4, 'Unnamed Business', 5, 30000, 0, 0, 2045.5, -1908.06, 13.5469, 174.508, 0, 0, 0, 0, 1169.16, 1361.17, 10.9219, 217.478, 0, 0, 0, 0, 0, 0, 1249.5, -1376.78, 13.3634, 2052.74, -1912.89, 13.252, 358.522, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`) VALUES + (46, 4, 'Unnamed Business', 1, 30000, 0, 0, 1671.24, 1469.42, 1152.6, 286.719, 0, 0, 0, 0, 203.788, -50.2352, 1001.8, 1.30236, 1, 0, 0, 0, 0, 0, 2106.4, -1213.94, 23.9665, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`) VALUES + (48, 4, 'Unnamed Business', 4, 30000, 0, 0, 2333.4, 61.5421, 26.7058, 91.9637, 0, 0, 0, 0, 315.912, -143.315, 999.602, 358.938, 7, 0, 0, 0, 0, 0, 2023.4, -1077.89, 24.6073, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`) VALUES + (50, 4, 'Unnamed Business', 2, 30000, 0, 0, 2244.25, -1665.5, 15.4766, 347.07, 0, 0, 0, 0, 203.675, -49.334, 1001.8, 186.433, 1, 0, 0, 0, 0, 0, 492.869, -1359.27, 17.1788, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`) VALUES + (51, 4, 'Unnamed Business', 1, 30000, 0, 0, 1636.1, -1848.45, 13.5394, 0.564751, 0, 0, 0, 0, -30.871, -91.4408, 1003.55, 358.966, 18, 0, 0, 0, 0, 0, -479.786, -566.494, 24.1158, 455.124, -1899.05, 0.78316, 202.97, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`) VALUES + (52, 4, 'Unnamed Business', 12, 30000, 0, 0, 1703.45, 1442.91, 1145.78, 239.473, 0, 0, 0, 0, -2029.66, -119.435, 1035.17, 1.03609, 3, 0, 0, 0, 0, 0, -1936.3, 276.5, 41.0469, -1958.21, 307.691, 35.4688, 6.40909, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`) VALUES + (53, 4, 'Unnamed Business', 5, 30000, 0, 0, 1784.89, 1444.99, 1145.78, 340.115, 0, 0, 0, 0, -2029.56, -119.625, 1035.17, 357.304, 3, 0, 0, 0, 0, 0, -1704.05, 1208.2, 25.1146, 1043.86, -1923.3, 12.9832, 0.44367, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`) VALUES + (54, 4, 'Unnamed Business', 8, 30000, 0, 0, 1413.52, -1696.77, 13.5395, 59.0001, 0, 0, 0, 0, 363.489, -74.6292, 1001.51, 134.772, 10, 0, 0, 0, 0, 0, -1568.91, 674.891, 7.1875, 0, 0, 0, 0, 100053, 0, 0, 0, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`) VALUES + (55, 4, 'Unnamed Business', 7, 30000, 0, 0, 1737.46, 1443.56, 1145.78, 276.704, 0, 0, 0, 0, 1711.71, 1461.59, 1145.78, 257.869, 0, 0, 0, 0, 0, 0, 2087.73, 2077.92, 11.0579, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`) VALUES + (56, 4, 'Unnamed Business', 1, 30000, 0, 0, 661.36, -573.289, 16.3359, 272.013, 0, 0, 0, 0, -13.3403, -91.3059, 1008.03, 357.346, 18, 0, 0, 0, 0, 1, 667.314, -546.236, 16.3359, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`) VALUES + (57, 4, 'Unnamed Business', 0, 30000, 0, 0, 1047.21, -1418.63, 13.5469, 144.195, 0, 0, 0, 0, -30.9934, -91.8355, 1003.55, 358.741, 18, 0, 0, 0, 0, 0, 659.793, -1763.91, 13.5592, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`) VALUES + (58, 4, 'Unnamed Business', 3, 30000, 0, 0, 2105.35, -1806.45, 13.5547, 265.142, 0, 0, 0, 0, 460.507, -88.4769, 999.555, 84.5587, 4, 0, 0, 0, 1, 1, 593.602, -1494.91, 15.2686, 615.481, -1501.39, 14.8747, 277.476, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`) VALUES + (59, 4, 'Unnamed Business', 2, 30000, 0, 0, 1829.57, -1450.66, 13.5911, 359.855, 0, 0, 0, 0, 203.78, -50.5481, 1001.8, 9.98745, 1, 0, 0, 0, 0, 0, 1112.81, -1566.31, 13.5569, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`) VALUES + (60, 4, 'Unnamed Business', 0, 30000, 0, 0, 1744.86, 1443.03, 1145.78, 265.737, 0, 0, 0, 0, -25.7722, -188.055, 1003.55, 356.072, 17, 0, 0, 0, 0, 0, 1061.57, -1484.28, 13.5457, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`) VALUES + (61, 4, 'Unnamed Business', 3, 30000, 0, 0, 1772.23, 1440.43, 1145.69, 81.6088, 0, 0, 0, 0, 372.46, -133.296, 1001.49, 330.82, 5, 0, 0, 0, 0, 0, 2108.98, -1788.67, 13.5608, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`) VALUES + (62, 4, 'Unnamed Business', 8, 30000, 0, 0, 461.205, -1500.79, 31.0598, 279.205, 0, 0, 0, 0, -25.3976, -187.912, 1003.55, 355.95, 17, 0, 0, 0, 0, 0, 712.834, -569.736, 16.3359, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`) VALUES + (63, 4, 'Unnamed Business', 3, 30000, 0, 0, -1721.03, 1360.04, 7.18532, 88.9988, 0, 0, 0, 0, 371.728, -133.508, 1001.49, 2.19321, 5, 0, 0, 0, 0, 0, -1720.56, 1353.78, 7.17902, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`) VALUES + (64, 4, 'Unnamed Business', 5, 30000, 0, 0, 1662.57, 1788.63, 10.8203, 263.499, 0, 0, 0, 0, -221.166, 1411.45, 27.7734, 256.79, 18, 0, 0, 0, 0, 0, 1698.29, 1786.89, 10.8203, 1654.53, 1795.69, 10.8203, 81.85, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`) VALUES + (65, 4, 'Unnamed Business', 1, 30000, 0, 0, 1752.7, 1443.19, 1145.78, 272.004, 0, 0, 0, 0, -27.5021, -57.9044, 1003.55, 7.79304, 6, 0, 0, 0, 0, 0, 1394.87, 457.122, 20.1368, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`) VALUES + (66, 4, 'Unnamed Business', 8, 30000, 0, 0, 2251.11, -1666.85, 15.4766, 347.064, 0, 0, 0, 0, -31.1119, -91.6484, 1003.55, 359.657, 18, 0, 0, 0, 0, 1, 1285.09, -1272.42, 13.5366, 0, 0, 0, 0, 123051, 0, 0, 0, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`) VALUES + (67, 4, 'Unnamed Business', 10, 30000, 0, 0, 1131.71, 1518.63, 5.82031, 107.231, 0, 0, 0, 0, 1601.85, -1467.25, 13.5639, 95.3918, 0, 0, 0, 0, 0, 0, 2341.7, -1314.47, 24.0671, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`) VALUES + (68, 4, 'Unnamed Business', 4, 30000, 0, 0, 1587.5, -1862.96, 13.5305, 349.866, 0, 0, 0, 0, 2134.53, 1599.41, 1008.36, 90.8534, 1, 0, 0, 0, 0, 0, 1602.15, -2434.5, 13.5547, 1602.61, -2451.42, 13.5547, 172.886, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`) VALUES + (69, 4, 'Unnamed Business', 1, 30000, 0, 0, 1929.22, -1776.25, 13.5469, 90.3944, 0, 0, 0, 0, -26.172, -187.877, 1003.55, 355.973, 17, 0, 0, 0, 0, 0, 2654.33, 1132.2, 10.8203, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`) VALUES + (70, 4, 'Unnamed Business', 3, 30000, 0, 0, 1414.53, -1602.64, 13.5469, 175.846, 0, 0, 0, 0, 362.819, -75.1166, 1001.51, 315.914, 10, 0, 0, 0, 0, 1, 1414.03, -1599.29, 13.5469, 1646.94, 1305.67, 10.8203, 98.2638, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`) VALUES + (71, 4, 'Unnamed Business', 2, 30000, 0, 0, -1882.67, 866.226, 35.1719, 135.343, 0, 0, 0, 0, 227.262, -8.33084, 1002.21, 100.274, 5, 0, 0, 0, 0, 0, 1103.75, -1411.33, 13.6187, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`) VALUES + (72, 4, 'Unnamed Business', 5, 30000, 0, 0, -1666.21, 1203.53, 7.25, 159.664, 0, 0, 0, 0, 372.496, -133.417, 1001.49, 356.796, 5, 0, 0, 0, 0, 0, 1381.51, 266.698, 19.5669, -1664.23, 1213, 7.25464, 1.79089, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`) VALUES + (73, 4, 'Unnamed Business', 8, 30000, 0, 0, 1952.4, -2021.57, 13.5469, 90.9127, 0, 0, 0, 0, -30.8758, -91.0564, 1003.55, 357.893, 18, 0, 0, 0, 0, 0, 1672.83, -1583.28, 13.5469, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`) VALUES + (74, 4, 'Unnamed Business', 3, 30000, 0, 0, 928.545, -1353.07, 13.3438, 106.28, 0, 0, 0, 0, 372.501, -132.618, 1001.49, 0.750952, 5, 0, 0, 0, 0, 0, 2428.59, -1940.92, 13.5469, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`) VALUES + (75, 4, 'Unnamed Business', 4, 30000, 0, 0, 1665.3, 1452.63, 1152.58, 275.782, 0, 0, 0, 0, 316.063, -143.426, 999.602, 1.00112, 7, 0, 0, 0, 0, 1, 2227.59, -1697.79, 13.7829, 0, 0, 0, 0, 10, 0, 0, 0, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`) VALUES + (76, 4, 'Unnamed Business', 12, 30000, 0, 0, 1766.45, 1443.67, 1145.78, 272.004, 0, 0, 0, 0, 2916.15, -2275.72, 7.25419, 92.2792, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 6, 0, 0, 0, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`) VALUES + (77, 4, 'Unnamed Business', 12, 30000, 0, 0, 2229.9, -1721.26, 13.5613, 149.746, 0, 0, 0, 0, 2916.03, -2276.33, 7.25419, 84.8808, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 7, 0, 0, 0, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`) VALUES + (78, 4, 'Unnamed Business', 4, 30000, 0, 0, 1649.6, 1467.74, 1151.97, 3.67434, 0, 0, 0, 0, 315.902, -143.025, 999.602, 5.53311, 7, 0, 0, 0, 0, 0, 1013.87, -372.41, 73.5505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`) VALUES + (79, 4, 'Unnamed Business', 3, 30000, 0, 0, 1038.17, -1340.73, 13.745, 177.513, 0, 0, 0, 0, 376.894, -193.302, 1000.63, 357.573, 17, 0, 0, 0, 0, 0, 1028.2, -1341.19, 13.7266, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`) VALUES + (80, 4, 'Unnamed Business', 3, 30000, 0, 0, 2397.67, -1899.06, 13.5469, 359.769, 0, 0, 0, 0, 364.899, -11.4455, 1001.85, 357.847, 9, 0, 0, 0, 0, 0, 2378.92, -1903.45, 13.3828, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`) VALUES + (81, 4, 'Unnamed Business', 3, 30000, 0, 0, 1774.54, 1440.21, 1145.69, 326.854, 0, 0, 0, 0, 364.92, -11.5076, 1001.85, 1.92061, 9, 0, 0, 0, 0, 0, 2412.69, -1490.4, 24, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`) VALUES + (82, 4, 'Unnamed Business', 3, 30000, 0, 0, 1445.11, -1353.1, 13.5469, 76.8374, 0, 0, 0, 0, 364.786, -11.5863, 1001.85, 359.156, 9, 0, 0, 0, 0, 0, -1810.85, 616.781, 35.1719, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`) VALUES + (83, 4, 'Unnamed Business', 3, 30000, 0, 0, 810.492, -1616.33, 13.5469, 274.543, 0, 0, 0, 0, 364.817, -11.7036, 1001.85, 356.202, 9, 0, 0, 0, 0, 0, -2664.66, 260.562, 4.63281, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`) VALUES + (84, 4, 'Unnamed Business', 2, 30000, 0, 0, 1102.44, -1458.3, 15.7969, 265.057, 0, 0, 0, 0, 227.152, -8.34062, 1002.21, 82.5599, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`) VALUES + (85, 4, 'Unnamed Business', 2, 30000, 0, 0, 1445.12, -1419.06, 13.5411, 65.0882, 0, 0, 0, 0, 227.551, -7.98705, 1002.21, 77.3083, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`) VALUES + (86, 4, 'Unnamed Business', 3, 30000, 0, 0, 2237.88, -1663.56, 15.4766, 344.453, 0, 0, 0, 0, 363.168, -74.7778, 1001.51, 307.153, 10, 0, 0, 0, 0, 0, 785.164, -1632.8, 13.3828, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`) VALUES + (88, 4, 'Unnamed Business', 3, 30000, 0, 0, 1087.72, -295.958, 74.7685, 358.173, 0, 0, 0, 0, 363.226, -75.0796, 1001.51, 311.442, 10, 0, 0, 0, 0, 0, -2794.59, 775.22, 50.4725, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`) VALUES + (89, 4, 'Unnamed Business', 3, 30000, 0, 0, -1912.4, 827.947, 35.2282, 137.415, 0, 0, 0, 0, 362.862, -75.157, 1001.51, 317.474, 10, 0, 0, 0, 0, 0, -2148.97, -2449.25, 30.6328, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`) VALUES + (90, 4, 'Unnamed Business', 3, 30000, 0, 0, 1769.38, -1397.58, 15.7578, 177.249, 0, 0, 0, 0, 460.243, -88.68, 999.555, 92.1094, 4, 0, 0, 0, 0, 0, 711.452, -493.504, 16.3359, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`) VALUES + (91, 4, 'Unnamed Business', 10, 30000, 0, 0, 2421.44, -1219.25, 25.5616, 6.1916, 0, 0, 0, 0, -2158.43, 642.822, 1052.38, 29.1845, 1, 0, 0, 0, 0, 0, 1968.24, -1284.42, 23.9844, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`) VALUES + (92, 4, 'Unnamed Business', 2, 30000, 0, 0, 1405.22, -1881.5, 13.5469, 264.017, 0, 0, 0, 0, 207.556, -111.244, 1005.13, 352.685, 15, 0, 0, 0, 0, 0, 2230.46, -1674.3, 14.8285, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`) VALUES + (93, 4, 'Unnamed Business', 3, 30000, 0, 0, 1200.42, -918.503, 43.1127, 273.646, 0, 0, 0, 0, 372.061, -133.522, 1001.49, 359.863, 5, 0, 0, 0, 0, 0, 1839.22, -1452.28, 13.564, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`) VALUES + (94, 4, 'Unnamed Business', 10, 30000, 0, 0, 1836.65, -1682.52, 13.3391, 95.7087, 0, 0, 0, 0, 1204.98, -13.8471, 1000.92, 7.8813, 2, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`) VALUES + (95, 4, 'Unnamed Business', 8, 30000, 0, 0, 1775.47, 1437.65, 1145.69, 357.587, 0, 0, 0, 0, -25.6475, -188.232, 1003.55, 12.6659, 17, 0, 0, 0, 0, 1, 2006.4, -1760.42, 13.5391, 1034.92, -1935.32, 13.0244, 266.609, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`) VALUES + (96, 4, 'Unnamed Business', 3, 30000, 0, 0, 2332.08, 75.0052, 26.621, 87.2637, 0, 0, 0, 0, 460.545, -88.3984, 999.555, 93.5276, 4, 0, 0, 0, 0, 0, -294.906, 2687.78, 62.6665, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`) VALUES + (97, 4, 'Unnamed Business', 1, 30000, 0, 0, 1574.85, -1637.35, 13.5615, 11.6774, 0, 0, 0, 0, -25.5966, -187.034, 1003.55, 357.071, 17, 0, 0, 0, 0, 0, 1541.46, -1634.66, 13.5469, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`) VALUES + (98, 4, 'Unnamed Business', 3, 30000, 0, 0, 1098.59, -1473.58, 15.7969, 69.6117, 0, 0, 0, 0, 460.244, -88.4067, 999.555, 87.9699, 4, 0, 0, 0, 1, 0, -1741.37, -569.154, 16.4844, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`) VALUES + (99, 4, 'Unnamed Business', 1, 30000, 0, 0, 1445.11, -1426.78, 13.543, 89.005, 0, 0, 0, 0, -27.4883, -57.4702, 1003.55, 0.398602, 6, 0, 0, 0, 0, 0, 1428.99, -1427.96, 13.5547, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`) VALUES + (100, 4, 'Unnamed Business', 1, 30000, 0, 0, 2157.89, -1733.42, 13.5445, 356.464, 0, 0, 0, 0, -27.4883, -57.4702, 1003.55, 0.398602, 6, 0, 0, 0, 0, 0, 1551.73, -1474.28, 13.5481, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`) VALUES + (101, 4, 'Unnamed Business', 0, 30000, 0, 0, 1759.93, 1446.82, 1145.78, 84.942, 0, 0, 0, 0, 5.84083, -31.4701, 1003.55, 0.31898, 10, 0, 0, 0, 0, 0, 637.356, 1678.13, 6.99219, -2395.1, 2222.04, 4.98437, 85.6145, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`) VALUES + (102, 4, 'Unnamed Business', 3, 30000, 0, 0, 671.125, -519.446, 16.3359, 210.161, 0, 0, 0, 0, 460.219, -89.0891, 999.555, 92.4067, 4, 0, 0, 0, 0, 0, 674.514, -514.152, 16.3359, 1626.54, -1137.52, 23.9062, 184.156, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`) VALUES + (103, 4, 'Unnamed Business', 1, 30000, 0, 0, 1757.29, 1446.53, 1145.78, 84.942, 0, 0, 0, 0, 6.22508, -31.3632, 1003.55, 355.899, 10, 0, 0, 0, 0, 0, 2181.8, 2485.08, 10.8203, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`) VALUES + (104, 4, 'Unnamed Business', 8, 30000, 0, 0, 1315.55, -897.924, 39.5781, 355.767, 0, 0, 0, 0, -25.6988, -188.146, 1003.55, 2.25264, 17, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`) VALUES + (105, 4, 'Unnamed Business', 1, 30000, 0, 0, 1753.5, 1446.45, 1145.78, 84.942, 0, 0, 0, 0, -25.8995, -188.249, 1003.55, 359.321, 17, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`) VALUES + (106, 4, 'Unnamed Business', 8, 30000, 0, 0, 1752.19, 1446.37, 1145.78, 93.7154, 0, 0, 0, 0, -31.1422, -92.0064, 1003.55, 350.907, 18, 0, 0, 0, 0, 0, 2007.48, -1759.44, 13.5391, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`) VALUES + (107, 4, 'Unnamed Business', 3, 30000, 0, 0, 2521.18, -1411.62, 28.5312, 80.3432, 0, 0, 0, 0, -228.827, 1400.92, 27.7656, 269.626, 18, 0, 0, 0, 0, 0, -865.274, 1541.22, 22.6826, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`) VALUES + (108, 4, 'Unnamed Business', 8, 30000, 0, 0, 1634.58, -1583.53, 13.6536, 10.9946, 0, 0, 0, 0, 5.90418, -31.5585, 1003.55, 0.568551, 10, 0, 0, 0, 0, 0, -744.555, 1583.71, 26.9609, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`) VALUES + (109, 4, 'Unnamed Business', 1, 30000, 0, 0, 1748.68, 1446.17, 1145.78, 93.0887, 0, 0, 0, 0, 6.21169, -31.3557, 1003.55, 3.26752, 10, 0, 0, 0, 0, 0, -1476.6, 1879.51, 32.6328, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`) VALUES + (110, 4, 'Unnamed Business', 2, 30000, 0, 0, -91.0981, -1592.47, 3.00431, 294.395, 0, 0, 0, 0, 226.882, -8.1384, 1002.21, 269.642, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`) VALUES + (111, 4, 'Unnamed Business', 8, 30000, 0, 0, 1352.52, -1758.82, 13.5078, 180.542, 0, 0, 0, 0, -31.1119, -91.6484, 1003.55, 359.657, 18, 0, 0, 0, 0, 0, 2254.93, -1666.28, 15.469, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`) VALUES + (112, 4, 'Unnamed Business', 3, 30000, 0, 0, 1158.28, -1473.41, 15.7969, 286.459, 0, 0, 0, 0, 364.786, -11.5863, 1001.85, 359.156, 9, 0, 0, 0, 0, 0, 0, 0, 0, 2263.74, 34.2681, 26.4844, 50.0339, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`) VALUES + (113, 4, 'Unnamed Business', 1, 30000, 0, 0, 1743.82, 1445.89, 1145.78, 90.2687, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`) VALUES + (114, 4, 'Unnamed Business', 1, 30000, 0, 0, 1742.45, 1445.89, 1145.78, 90.2687, 0, 0, 0, 0, -25.6442, -188.041, 1003.55, 351.193, 17, 0, 0, 0, 1, 1, 2130.87, 892.924, 10.8203, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`) VALUES + (115, 4, 'Unnamed Business', 3, 30000, 0, 0, 1650.13, 1466.72, 1151.97, 167.935, 0, 0, 0, 0, -794.957, 490.111, 1376.2, 179.811, 1, 0, 0, 0, 1, 1, 0, 0, 0, 1327.28, 1397.33, 10.7512, 93.0638, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`) VALUES + (116, 4, 'Unnamed Business', 8, 30000, 0, 0, 1487.01, -1881.28, 13.5469, 190.48, 0, 0, 0, 0, -25.6959, -187.781, 1003.55, 354.083, 17, 0, 0, 0, 0, 0, 0, 0, 0, 1231.73, -1380.5, 13.3179, 182.887, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`) VALUES + (117, 4, 'Unnamed Business', 10, 30000, 0, 0, 1736.52, 1445.86, 1145.78, 90.2687, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`) VALUES + (119, 4, 'Unnamed Business', 2, 30000, 0, 0, 712.172, -498.921, 16.3359, 267.048, 0, 0, 0, 0, 203.747, -50.5602, 1001.8, 348.861, 1, 0, 0, 0, 0, 0, 714.368, -505.379, 16.3359, 1229.06, -1378.47, 13.339, 256.786, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`) VALUES + (120, 4, 'Unnamed Business', 8, 30000, 0, 0, 1721.42, 1424.01, 10.6406, 320.626, 0, 0, 0, 0, 6.13156, -31.3422, 1003.55, 178.952, 10, 0, 0, 0, 0, 0, 1014.04, -1563.83, 13.616, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`) VALUES + (122, 4, 'Unnamed Business', 1, 30000, 0, 0, 1765.16, 1436.69, 1145.69, 93.1964, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`) VALUES + (123, 4, 'Unnamed Business', 4, 30000, 0, 0, 1836.51, -1443.03, 13.5962, 100.976, 0, 0, 0, 0, 284.991, -86.1033, 1001.52, 350.153, 4, 0, 0, 0, 0, 1, 1837.35, -1438.43, 13.563, 0, 0, 0, 0, 1234521, 0, 0, 0, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`) VALUES + (124, 4, 'Unnamed Business', 8, 30000, 0, 0, 1648.6, -1562.17, 13.5398, 98.856, 0, 0, 0, 0, -26.0882, -188.231, 1003.55, 0.687847, 17, 0, 0, 0, 0, 0, 1028.47, -1585.7, 13.5469, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`) VALUES + (125, 4, 'Unnamed Business', 8, 30000, 0, 0, 1565.93, -1171.4, 24.0951, 194.504, 0, 0, 0, 0, -30.7929, -92.0083, 1003.55, 180.866, 18, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`) VALUES + (128, 4, 'Unnamed Business', 0, 30000, 0, 0, 1733.91, 1448.76, 1145.78, 273.547, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`) VALUES + (129, 4, 'Unnamed Business', 0, 30000, 0, 0, 1735.4, 1448.85, 1145.78, 273.547, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`) VALUES + (145, 4, 'Unnamed Business', 4, 30000, 0, 0, 1655.19, 1451.97, 1152.5, 277.616, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`) VALUES + (157, 4, 'Unnamed Business', 5, 30000, 0, 0, 548.165, -1293.86, 17.2482, 168.94, 0, 0, 0, 0, 1226.48, -813.56, 1084.01, 353.256, 5, 0, 0, 0, 0, 0, 1811.5, -1659.69, 13.5465, 567.705, -1291.27, 17.2422, 70.9165, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`) VALUES + (192, 4, 'Unnamed Business', 3, 30000, 0, 0, -222.752, -1747.06, 1.15469, 331.273, 0, 0, 0, 0, 363.584, -75.38, 1001.51, 313.29, 10, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`) VALUES + (200, 4, 'Unnamed Business', 8, 30000, 0, 0, 1748.23, -1460.31, 13.5288, 182.135, 0, 0, 0, 0, -27.4627, -57.8572, 1003.55, 0.812528, 6, 0, 0, 0, 0, 0, 1014.1, -1563.82, 13.6156, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`) VALUES + (201, 2, 'Easy Credit Autos', 0, 30000, 1, 1, -1013.1, -861.897, 13.0852, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`) VALUES + (203, 1, 'Saint Marks Bistro', 0, 30000, 0, 0, 1318.98, -452.77, 54.53, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`) VALUES + (204, 1, 'Easy Credit Autos', 0, 30000, 0, 0, 1218.65, -123.143, 15.0563, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`) VALUES + (205, 1, 'Strip Club', 0, 30000, 0, 0, 923.229, -470.662, 14.9622, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`) VALUES + (206, 1, 'Strip Club', 0, 30000, 0, 0, 900.493, -416.833, 14.9656, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`) VALUES + (207, 1, 'Sex Shop', 0, 30000, 0, 0, 927.043, -379.195, 15.2535, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`) VALUES + (208, 1, 'Bar', 0, 30000, 0, 0, 899.091, -285.723, 5.14579, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`) VALUES + (209, 1, 'Bar', 0, 30000, 0, 0, 845.42, -287.97, 4.93362, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`) VALUES + (210, 1, 'Diner', 0, 30000, 0, 0, 1036.65, -653.015, 15.0624, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`) VALUES + (211, 1, 'Bank', 0, 30000, 0, 0, 1036.1, -700.057, 14.9727, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`) VALUES + (212, 1, 'Chinese Restaurant', 0, 30000, 0, 0, 909.534, -670.404, 14.9727, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`) VALUES + (213, 1, 'Laundry', 0, 30000, 0, 0, 845.278, -663.754, 14.9727, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`) VALUES + (214, 1, 'Chinese Restaurant', 0, 30000, 0, 0, 913.891, -805.828, 15.0702, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`) VALUES + (215, 1, 'Bank', 0, 30000, 0, 0, 1065.18, -281.016, 8.69193, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`) VALUES + (216, 1, 'Clothing Store', 0, 30000, 0, 0, 1117.18, -687.398, 14.9727, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`) VALUES + (217, 2, 'Hotel', 0, 30000, 0, 0, -772.41, 548.739, 11.1007, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`) VALUES + (218, 2, 'Drugstore', 0, 30000, 0, 0, -832.099, 741.923, 11.2885, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`) VALUES + (219, 2, 'Pizza Stack', 0, 30000, 0, 0, -903.159, 798.366, 11.4487, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`) VALUES + (220, 2, 'Taco Shop', 0, 30000, 0, 0, -753.173, 1343.16, 11.767, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`) VALUES + (221, 2, 'Cafe', 0, 30000, 0, 0, -774.478, 1304.82, 11.6359, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`) VALUES + (222, 2, 'Drugstore', 0, 30000, 0, 0, 50.2897, 1007.29, 10.9547, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`) VALUES + (228, 4, 'Jefferson Dealership', 0, 30000, 0, 0, 2131.8, -1151.02, 24.0932, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`) VALUES + (229, 4, 'Bike Dealership', 0, 30000, 0, 0, 1008.98, -1295.71, 13.5469, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`) VALUES + (230, 4, 'Los Santos Police Department', 0, 0, 0, 0, 1554.77, -1675.65, 16.1953, 0, 0, 0, 1247, 30, 247.113, 62.929, 1003.64, 0, 6, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`) VALUES + (231, 2, 'Unnamed Business', 0, 0, 0, 0, -833.546, -908.768, 12.1285, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`) VALUES + (232, 1, 'Italian Restaurant', 0, 0, 0, 0, 1135.42, -457.31, 20.1816, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`) VALUES + (233, 1, 'Clothes Store', 0, 0, 0, 0, 1065.42, -345.061, 14.9727, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`) VALUES + (234, 1, 'Gun Store', 0, 0, 0, 0, 1065.1, -395.103, 14.9727, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`) VALUES + (235, 1, 'Porn Shop', 0, 0, 0, 0, 989.054, -441.97, 15.1239, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`) VALUES + (236, 1, 'Mechanic Shop', 0, 0, 0, 0, 1190.71, -869.329, 15.1745, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`) VALUES + (237, 1, 'Offices', 0, 0, 0, 0, 1212.4, -904.725, 15.1072, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`) VALUES + (238, 1, 'Offices', 0, 0, 0, 0, 1244.71, -862.862, 14.9727, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`) VALUES + (239, 1, 'Warehouse', 0, 0, 0, 0, 1276.44, -928.518, 14.9727, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`) VALUES + (240, 1, 'Warehouse', 0, 0, 0, 0, 1261.95, -943.02, 14.9727, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`) VALUES + (241, 1, 'Warehouse', 0, 0, 0, 0, 1253.32, -950.495, 14.977, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`) VALUES + (242, 1, 'Warehouse', 0, 0, 0, 0, 1231.16, -964.599, 15.0685, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`) VALUES + (243, 1, 'Warehouse', 0, 0, 0, 0, 1183.85, -961.455, 15.1072, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`) VALUES + (244, 1, 'Warehouse', 0, 0, 0, 0, 1188.25, -957.061, 15.1072, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`) VALUES + (245, 1, 'Warehouse', 0, 0, 0, 0, 1171.64, -963.649, 14.9727, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`) VALUES + (246, 1, 'Warehouse', 0, 0, 0, 0, 1162.62, -952.354, 15.0611, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`) VALUES + (247, 1, 'Warehouse', 0, 0, 0, 0, 1219.81, -973.645, 14.9849, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`) VALUES + (248, 1, 'Docks Warehouse', 0, 0, 0, 0, 1435.66, -805.82, 11.8262, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`) VALUES + (249, 1, 'Docks Warehouse', 0, 0, 0, 0, 1445.71, -806.209, 11.8262, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`) VALUES + (250, 1, 'Docks Warehouse', 0, 0, 0, 0, 1455.57, -805.722, 11.8262, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`) VALUES + (251, 1, 'Docks Warehouse', 0, 0, 0, 0, 1465.74, -805.721, 11.8262, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`) VALUES + (252, 1, 'Docks Warehouse', 0, 0, 0, 0, 1475.63, -805.721, 11.8262, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`) VALUES + (253, 1, 'Docks Warehouse', 0, 0, 0, 0, 1485.73, -805.721, 11.8262, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`) VALUES + (254, 1, 'Docks Warehouse', 0, 0, 0, 0, 1495.69, -805.721, 11.8262, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`) VALUES + (255, 1, 'Docks Warehouse', 0, 0, 0, 0, 1467.39, -688.639, 11.8261, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`) VALUES + (256, 1, 'Docks Warehouse', 0, 0, 0, 0, 1495.89, -684.898, 12.1434, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`) VALUES + (257, 1, 'Docks Warehouse', 0, 0, 0, 0, 1488.55, -650.17, 11.8261, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`) VALUES + (258, 1, 'Docks Warehouse', 0, 0, 0, 0, 1465.85, -650.167, 11.8261, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`) VALUES + (259, 1, 'Docks Warehouse', 0, 0, 0, 0, 1510.97, -650.166, 11.8261, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`) VALUES + (260, 1, 'Docks Warehouse', 0, 0, 0, 0, 1533.95, -650.17, 11.8261, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`) VALUES + (261, 1, 'Docks Warehouse', 0, 0, 0, 0, 1556.7, -650.167, 11.8261, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`) VALUES + (262, 1, 'Docks Warehouse', 0, 0, 0, 0, 1579.22, -650.172, 11.8261, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`) VALUES + (263, 1, 'Warehouse', 0, 0, 0, 0, 1305.18, -810.01, 15.0258, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`) VALUES + (264, 1, 'Supermarket', 0, 0, 0, 0, 1272.41, -608.83, 12.4573, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`) VALUES + (265, 1, 'Sweeney General Hospital', 0, 0, 0, 0, 1149.18, -585.299, 15.0173, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`) VALUES + (266, 1, 'Portland Police Station', 0, 0, 0, 0, 1148.46, -675, 14.9809, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`) VALUES + (267, 1, 'Clothes Store', 0, 0, 0, 0, 1104.57, -638.42, 14.9727, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`) VALUES + (268, 1, 'City Hall', 0, 0, 0, 0, 98.2127, -962.972, 29.1858, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`) VALUES + (269, 1, 'Courthouse', 0, 0, 0, 0, 97.4022, -1429.97, 31.6682, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`) VALUES + (270, 1, 'Francis International Airport', 0, 0, 0, 0, -769.82, -600.323, 11.3261, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`) VALUES + (271, 1, 'Shoreside Vale Police Station', 0, 0, 0, 0, -1255.33, -23.0647, 59.0359, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`) VALUES + (272, 1, 'Hope Medical College', 0, 0, 0, 0, -1246.78, -150.687, 59.0671, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`) VALUES + (273, 1, 'Shoreside Vale Fire Station', 0, 0, 0, 0, -1214.27, -13.7945, 53.2652, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`) VALUES + (274, 1, 'Warehouse', 0, 0, 0, 0, -1235.35, 125.251, 68.5685, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`) VALUES + (275, 1, 'Warehouse', 0, 0, 0, 0, -1137.91, 25.5051, 58.8176, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`) VALUES + (276, 1, 'Warehouse', 0, 0, 0, 0, -1114.45, 53.0893, 58.6725, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`) VALUES + (277, 1, 'Warehouse', 0, 0, 0, 0, -1090.84, 59.4074, 58.5898, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`) VALUES + (278, 1, 'Warehouse', 0, 0, 0, 0, -1020.35, -78.0101, 38.8868, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`) VALUES + (279, 1, 'Warehouse', 0, 0, 0, 0, -844.123, -160.472, 33.8577, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`) VALUES + (280, 1, 'Warehouse', 0, 0, 0, 0, -844.13, -176.191, 33.8553, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`) VALUES + (281, 1, 'Warehouse', 0, 0, 0, 0, -844.125, -184.379, 33.8559, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`) VALUES + (282, 1, 'Warehouse', 0, 0, 0, 0, -844.126, -192.238, 33.8565, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`) VALUES + (283, 1, 'Warehouse', 0, 0, 0, 0, -844.131, -200.027, 33.8571, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`) VALUES + (284, 1, 'Warehouse', 0, 0, 0, 0, -844.125, -207.769, 33.8577, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`) VALUES + (285, 1, 'Staunton Island Police Station', 0, 0, 0, 0, 340.404, -1118.42, 25.9809, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`) VALUES + (286, 1, 'Carson General Hospital', 0, 0, 0, 0, 149.876, 63.3876, 16.2136, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`) VALUES + (287, 1, 'Liberty City Stadium', 0, 0, 0, 0, -18.7666, -219.304, 29.821, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`) VALUES + (288, 1, 'Staunton Island Fire Station', 0, 0, 0, 0, -76.4618, -435.701, 16.181, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +/*!40000 ALTER TABLE `biz_main` ENABLE KEYS */; + +-- Dumping structure for table db24053.bug_main +CREATE TABLE IF NOT EXISTS `bug_main` ( + `bug_id` int(11) NOT NULL AUTO_INCREMENT, + `bug_server` tinyint(2) NOT NULL DEFAULT '0', + `bug_who_added` int(11) NOT NULL DEFAULT '0', + `bug_when_added` int(32) NOT NULL DEFAULT '0', + `bug_script_ver` varchar(16) NOT NULL DEFAULT '0.1', + `bug_pos_x` float NOT NULL DEFAULT '0', + `bug_pos_y` float NOT NULL DEFAULT '0', + `bug_pos_z` float NOT NULL DEFAULT '0', + `bug_rot_z` float NOT NULL DEFAULT '0', + `bug_message` varchar(128) NOT NULL DEFAULT '( No Message )', + `bug_svr_start` int(32) NOT NULL DEFAULT '0', + `bug_session` int(11) NOT NULL DEFAULT '0', + `bug_state` int(11) NOT NULL DEFAULT '0', + `bug_who_state` int(11) NOT NULL DEFAULT '0', + `bug_when_state` int(11) NOT NULL DEFAULT '0', + PRIMARY KEY (`bug_id`) +) ENGINE=InnoDB AUTO_INCREMENT=8 DEFAULT CHARSET=latin1 COMMENT='User Submitted Bugs'; + +-- Dumping data for table db24053.bug_main: ~4 rows (approximately) +/*!40000 ALTER TABLE `bug_main` DISABLE KEYS */; +INSERT INTO `bug_main` (`bug_id`, `bug_server`, `bug_who_added`, `bug_when_added`, `bug_script_ver`, `bug_pos_x`, `bug_pos_y`, `bug_pos_z`, `bug_rot_z`, `bug_message`, `bug_svr_start`, `bug_session`, `bug_state`, `bug_who_state`, `bug_when_state`) VALUES + (4, 4, 2, 1609121880, '1.0', 0, 0, 0, 0, '"normal house at ls" marker overlaps with "Unnamed Business" marker in Verdant Bluffs.', 2147483647, 0, 0, 0, 0); +INSERT INTO `bug_main` (`bug_id`, `bug_server`, `bug_who_added`, `bug_when_added`, `bug_script_ver`, `bug_pos_x`, `bug_pos_y`, `bug_pos_z`, `bug_rot_z`, `bug_message`, `bug_svr_start`, `bug_session`, `bug_state`, `bug_who_state`, `bug_when_state`) VALUES + (5, 2, 1, 1609210983, '1.0', 0, 0, 0, 0, 'save businesses first', 2147483647, 0, 0, 0, 0); +INSERT INTO `bug_main` (`bug_id`, `bug_server`, `bug_who_added`, `bug_when_added`, `bug_script_ver`, `bug_pos_x`, `bug_pos_y`, `bug_pos_z`, `bug_rot_z`, `bug_message`, `bug_svr_start`, `bug_session`, `bug_state`, `bug_who_state`, `bug_when_state`) VALUES + (6, 4, 1, 1609213757, '1.0', 0, 0, 0, 0, 'Fix the get client from params', 2147483647, 0, 0, 0, 0); +INSERT INTO `bug_main` (`bug_id`, `bug_server`, `bug_who_added`, `bug_when_added`, `bug_script_ver`, `bug_pos_x`, `bug_pos_y`, `bug_pos_z`, `bug_rot_z`, `bug_message`, `bug_svr_start`, `bug_session`, `bug_state`, `bug_who_state`, `bug_when_state`) VALUES + (7, 4, 1, 1609213868, '1.0', 0, 0, 0, 0, 'Fix job uniform not working (net event?)', 2147483647, 0, 0, 0, 0); +/*!40000 ALTER TABLE `bug_main` ENABLE KEYS */; + +-- Dumping structure for table db24053.clan_main +CREATE TABLE IF NOT EXISTS `clan_main` ( + `clan_id` int(11) NOT NULL AUTO_INCREMENT, + `clan_server` int(11) NOT NULL DEFAULT '0', + `clan_name` varchar(64) NOT NULL DEFAULT '', + `clan_tag` varchar(16) NOT NULL DEFAULT '', + `clan_owner` int(11) NOT NULL DEFAULT '0', + `clan_created` int(32) NOT NULL DEFAULT '0', + `clan_deleted` tinyint(1) NOT NULL DEFAULT '0', + `clan_who_deleted` int(32) NOT NULL DEFAULT '0', + `clan_when_deleted` int(32) NOT NULL DEFAULT '0', + PRIMARY KEY (`clan_id`) +) ENGINE=InnoDB DEFAULT CHARSET=latin1 COMMENT='Clans'; + +-- Dumping data for table db24053.clan_main: ~0 rows (approximately) +/*!40000 ALTER TABLE `clan_main` DISABLE KEYS */; +/*!40000 ALTER TABLE `clan_main` ENABLE KEYS */; + +-- Dumping structure for table db24053.clan_members +CREATE TABLE IF NOT EXISTS `clan_members` ( + `clan_member_id` int(11) NOT NULL AUTO_INCREMENT, + `clan_rank_server` tinyint(2) NOT NULL DEFAULT '0', + `clan_member_clan` int(11) NOT NULL DEFAULT '0', + `clan_member_acct` int(11) NOT NULL DEFAULT '0', + `clan_member_custom_title` varchar(64) NOT NULL DEFAULT '', + `clan_member_custom_tag` varchar(16) NOT NULL DEFAULT '', + `clan_member_flags` int(32) NOT NULL DEFAULT '0', + `clan_member_rank` int(11) NOT NULL DEFAULT '0', + `clan_member_removed` tinyint(1) NOT NULL DEFAULT '1', + `clan_member_who_removed` int(11) NOT NULL DEFAULT '0', + `clan_member_who_added` int(11) NOT NULL DEFAULT '0', + PRIMARY KEY (`clan_member_id`) +) ENGINE=InnoDB DEFAULT CHARSET=latin1 COMMENT='Clans - Members'; + +-- Dumping data for table db24053.clan_members: ~0 rows (approximately) +/*!40000 ALTER TABLE `clan_members` DISABLE KEYS */; +/*!40000 ALTER TABLE `clan_members` ENABLE KEYS */; + +-- Dumping structure for table db24053.clan_ranks +CREATE TABLE IF NOT EXISTS `clan_ranks` ( + `clan_rank_id` int(11) NOT NULL AUTO_INCREMENT, + `clan_rank_clan` int(11) NOT NULL DEFAULT '0', + `clan_rank_name` varchar(64) NOT NULL DEFAULT '', + `clan_rank_custom_tag` varchar(16) NOT NULL DEFAULT '', + `clan_rank_flags` int(32) NOT NULL DEFAULT '0', + `clan_rank_after_rank_id` int(11) NOT NULL DEFAULT '0', + PRIMARY KEY (`clan_rank_id`) +) ENGINE=InnoDB DEFAULT CHARSET=latin1 COMMENT='Clans - Ranks'; + +-- Dumping data for table db24053.clan_ranks: ~0 rows (approximately) +/*!40000 ALTER TABLE `clan_ranks` DISABLE KEYS */; +/*!40000 ALTER TABLE `clan_ranks` ENABLE KEYS */; + +-- Dumping structure for table db24053.error_main +CREATE TABLE IF NOT EXISTS `error_main` ( + `error_id` int(11) NOT NULL AUTO_INCREMENT, + `error_server` tinyint(2) NOT NULL DEFAULT '0', + `error_when_added` int(32) NOT NULL, + `error_script_ver` varchar(16) NOT NULL DEFAULT '0.0', + `error_module` int(11) NOT NULL DEFAULT '0', + `error_file` text NOT NULL, + `error_line` int(11) NOT NULL DEFAULT '0', + `error_locals` text NOT NULL, + `error_func` varchar(128) NOT NULL DEFAULT 'Unknown', + PRIMARY KEY (`error_id`) +) ENGINE=InnoDB DEFAULT CHARSET=latin1 COMMENT='Error Reports'; + +-- Dumping data for table db24053.error_main: ~0 rows (approximately) +/*!40000 ALTER TABLE `error_main` DISABLE KEYS */; +/*!40000 ALTER TABLE `error_main` ENABLE KEYS */; + +-- Dumping structure for table db24053.house_main +CREATE TABLE IF NOT EXISTS `house_main` ( + `house_id` smallint(6) NOT NULL AUTO_INCREMENT, + `house_server` tinyint(1) NOT NULL DEFAULT '0', + `house_entrance_pos_x` float NOT NULL DEFAULT '0', + `house_entrance_pos_y` float NOT NULL DEFAULT '0', + `house_entrance_pos_z` float NOT NULL DEFAULT '0', + `house_entrance_rot_z` float NOT NULL DEFAULT '0', + `house_entrance_int` smallint(6) NOT NULL DEFAULT '0', + `house_entrance_vw` int(11) NOT NULL DEFAULT '0', + `house_entrance_pickup` int(11) NOT NULL, + `house_entrance_blip` int(11) NOT NULL, + `house_exit_pos_x` float NOT NULL DEFAULT '0', + `house_exit_pos_y` float NOT NULL DEFAULT '0', + `house_exit_pos_z` float NOT NULL DEFAULT '0', + `house_exit_rot_z` float NOT NULL, + `house_exit_int` int(11) NOT NULL DEFAULT '0', + `house_exit_vw` int(11) NOT NULL, + `house_exit_pickup` int(11) NOT NULL, + `house_exit_blip` int(11) NOT NULL, + `house_description` varchar(64) CHARACTER SET utf8 COLLATE utf8_unicode_ci NOT NULL DEFAULT '', + `house_buy_price` int(11) NOT NULL, + `house_rent_price` int(11) NOT NULL, + `house_owner_type` int(11) NOT NULL, + `house_owner_id` int(11) NOT NULL, + `house_locked` tinyint(1) NOT NULL DEFAULT '0', + PRIMARY KEY (`house_id`) USING BTREE +) ENGINE=InnoDB AUTO_INCREMENT=2094 DEFAULT CHARSET=latin1 COMMENT='Houses'; + +-- Dumping data for table db24053.house_main: ~2,090 rows (approximately) +/*!40000 ALTER TABLE `house_main` DISABLE KEYS */; +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1, 4, 1298.55, -798.182, 84.138, 0, 0, 0, 0, 0, 1298.81, -796.658, 1084.01, 0, 5, 0, 0, 0, 'Madd Doggs House', 5250000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (2, 4, -418.648, -1759.54, 6.21, 0, 0, 0, 0, 0, 244.41, 305.032, 999.148, 0, 1, 0, 0, 0, 'Small Cottage', 25000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (3, 4, 657.218, -1652.65, 15.399, 0, 0, 0, 0, 0, 2365.27, -1135.59, 1050.88, 0, 8, 0, 0, 0, 'Mexican Style House', 350000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (4, 4, 693.76, -1645.79, 4.09, 0, 0, 0, 0, 0, 2365.27, -1135.59, 1050.88, 0, 8, 0, 0, 0, 'Mexican Style House', 350000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (5, 4, 693.57, -1705.87, 3.809, 0, 0, 0, 0, 0, 2365.27, -1135.59, 1050.88, 0, 8, 0, 0, 0, 'Mexican Style House', 350000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (6, 4, 766.9, -1606.18, 13.8, 0, 0, 0, 0, 0, 2365.27, -1135.59, 1050.88, 0, 8, 0, 0, 0, 'Mexican Style House', 350000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (7, 4, 768.07, -1655.99, 5.598, 0, 0, 0, 0, 0, 2365.27, -1135.59, 1050.88, 0, 8, 0, 0, 0, 'Mexican Style House', 350000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (8, 4, 769.218, -1696.74, 5.15, 0, 0, 0, 0, 0, 2365.27, -1135.59, 1050.88, 0, 8, 0, 0, 0, 'Mexican Style House', 350000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (9, 4, 769.2, -1745.85, 13.069, 0, 0, 0, 0, 0, 2365.27, -1135.59, 1050.88, 0, 8, 0, 0, 0, 'Mexican Style House', 350000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (10, 4, 653.58, -1714, 14.76, 0, 0, 0, 0, 0, 2365.27, -1135.59, 1050.88, 0, 8, 0, 0, 0, 'Mexican Style House', 350000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (11, 4, 1906.04, -1112.94, 26.659, 0, 0, 0, 0, 0, 2365.27, -1135.59, 1050.88, 0, 8, 0, 0, 0, 'Mexican Style House', 350000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (12, 4, 1939.23, -1114.51, 27.45, 0, 0, 0, 0, 0, 2365.27, -1135.59, 1050.88, 0, 8, 0, 0, 0, 'Mexican Style House', 350000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (13, 4, 1999.97, -1114.05, 27.12, 0, 0, 0, 0, 0, 2365.27, -1135.59, 1050.88, 0, 8, 0, 0, 0, 'Mexican Style House', 350000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (14, 4, 2022.92, -1120.26, 26.42, 0, 0, 0, 0, 0, 2365.27, -1135.59, 1050.88, 0, 8, 0, 0, 0, 'Mexican Style House', 350000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (15, 4, 2095.33, -1145.13, 26.59, 0, 0, 0, 0, 0, 2365.27, -1135.59, 1050.88, 0, 8, 0, 0, 0, 'Mexican Style House', 350000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (16, 4, 2092.24, -1166.36, 26.579, 0, 0, 0, 0, 0, 2365.27, -1135.59, 1050.88, 0, 8, 0, 0, 0, 'Mexican Style House', 350000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (17, 4, 793.989, -1707.45, 14.029, 0, 0, 0, 0, 0, 2365.27, -1135.59, 1050.88, 0, 8, 0, 0, 0, 'Mexican Style House', 350000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (18, 4, 1886.26, -1113.66, 26.27, 0, 0, 0, 0, 0, 260.769, 1237.26, 1084.25, 0, 9, 0, 0, 0, 'Simple House', 65000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (19, 4, 1921.35, -1115.18, 27.079, 0, 0, 0, 0, 0, 260.769, 1237.26, 1084.25, 0, 9, 0, 0, 0, 'Simple House', 65000, 100, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (20, 4, 1955.4, -1115.35, 27.829, 0, 0, 0, 0, 0, 260.769, 1237.26, 1084.25, 0, 9, 0, 0, 0, 'Simple House', 65000, 400, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (21, 4, 2045.5, -1116.63, 26.36, 0, 0, 0, 0, 0, 260.769, 1237.26, 1084.25, 0, 9, 0, 0, 0, 'Simple House', 65000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (22, 4, 2093.99, -1122.78, 27.68, 0, 0, 0, 0, 0, 260.769, 1237.26, 1084.25, 0, 9, 0, 0, 0, 'Simple House', 65000, 650, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (23, 4, 2091.67, -1184.45, 27.048, 0, 0, 0, 0, 0, 260.769, 1237.26, 1084.25, 0, 9, 0, 0, 0, 'Simple House', 65000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (24, 4, 769.049, -1726.35, 13.43, 0, 0, 0, 0, 0, 260.769, 1237.26, 1084.25, 0, 9, 0, 0, 0, 'Simple House', 65000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (25, 4, 794.89, -1691.99, 14.46, 0, 0, 0, 0, 0, 260.769, 1237.26, 1084.25, 0, 9, 0, 0, 0, 'Simple House', 65000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (26, 4, 2495.41, -1690.94, 14.76, 0, 0, 0, 0, 0, 2495.97, -1692.08, 1014.74, 0, 3, 0, 0, 0, 'Simple House', 65000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (28, 4, 2126.68, -1320.68, 26.62, 0, 0, 0, 0, 0, 234.162, 1064.23, 1084.21, 0, 6, 0, 0, 0, 'Simple House', 800000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (29, 4, 2091.05, -1278.14, 26.17, 0, 0, 0, 0, 0, 2196.53, -1204.18, 1049.02, 0, 6, 0, 0, 0, '2 Bedroom House', 100000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (30, 4, 2191.64, -1275.82, 25.149, 0, 0, 0, 0, 0, 2196.53, -1204.18, 1049.02, 0, 6, 0, 0, 0, '2 Bedroom House', 100000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (31, 4, 2229.66, -1241.52, 25.649, 0, 0, 0, 0, 0, 2196.53, -1204.18, 1049.02, 0, 6, 0, 0, 0, '2 Bedroom House', 100000, 5, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (32, 4, 2100.94, -1321.8, 25.95, 0, 0, 0, 0, 0, 2269.92, -1210.37, 1047.56, 0, 10, 0, 0, 0, 'Big Living Style', 80000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (33, 4, 2132.32, -1280.12, 25.888, 0, 0, 0, 0, 0, 2269.92, -1210.37, 1047.56, 0, 10, 0, 0, 0, 'Big Living Style', 80000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (34, 4, 2250.2, -1280.32, 25.468, 0, 0, 0, 0, 0, 2269.92, -1210.37, 1047.56, 0, 10, 0, 0, 0, 'Big Living Style', 80000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (35, 4, 2249.92, -1238.89, 25.888, 0, 0, 0, 0, 0, 2269.92, -1210.37, 1047.56, 0, 10, 0, 0, 0, 'Big Living Style', 80000, 1, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (36, 4, 2153.82, -1243.53, 25.36, 0, 0, 0, 0, 0, 2269.92, -1210.37, 1047.56, 0, 10, 0, 0, 0, 'Big Living Style', 80000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (37, 4, 2110.99, -1244.32, 25.85, 0, 0, 0, 0, 0, 2269.92, -1210.37, 1047.56, 0, 10, 0, 0, 0, 'Big Living Style', 80000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (38, 4, 2148.55, -1319.82, 25.739, 0, 0, 0, 0, 0, 2282.9, -1139.99, 1050.89, 0, 11, 0, 0, 0, 'Small House', 45000, 5000, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (39, 4, 2150.21, -1285.45, 24.19, 0, 0, 0, 0, 0, 2282.9, -1139.99, 1050.89, 0, 11, 0, 0, 0, 'Small House', 45000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (40, 4, 2230.1, -1280.56, 25.36, 0, 0, 0, 0, 0, 2282.9, -1139.99, 1050.89, 0, 11, 0, 0, 0, 'Small House', 45000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (41, 4, 2209.74, -1239.99, 24.138, 0, 0, 0, 0, 0, 2282.9, -1139.99, 1050.89, 0, 11, 0, 0, 0, 'Small House', 45000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (42, 4, 2133.39, -1232.84, 24.42, 0, 0, 0, 0, 0, 2333.12, -1077.13, 1049.02, 0, 6, 0, 0, 0, 'Minor Manor', 50000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (43, 4, 2148.73, -1484.85, 26.62, 0, 0, 0, 0, 0, 234.162, 1064.23, 1084.21, 0, 6, 0, 0, 0, 'Minor Manor', 800000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (44, 4, 2023.31, -1053.15, 25.59, 0, 0, 0, 0, 0, 260.769, 1237.26, 1084.25, 0, 9, 0, 0, 0, 'Simple House', 65000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (45, 4, 2036.12, -1059.42, 25.649, 0, 0, 0, 0, 0, 260.769, 1237.26, 1084.25, 0, 9, 0, 0, 0, 'Simple House', 65000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (46, 4, 2050.9, -1065.83, 25.78, 0, 0, 0, 0, 0, 260.769, 1237.26, 1084.25, 0, 9, 0, 0, 0, 'Simple House', 65000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (47, 4, 2150.76, -1400.63, 25.79, 0, 0, 0, 0, 0, 2282.9, -1139.99, 1050.89, 0, 11, 0, 0, 0, 'Small House', 45000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (48, 4, 2151.7, -1446.33, 25.77, 0, 0, 0, 0, 0, 2282.9, -1139.99, 1050.89, 0, 11, 0, 0, 0, 'Small House', 45000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (49, 4, 2190.69, -1487.68, 25.77, 0, 0, 0, 0, 0, 2282.9, -1139.99, 1050.89, 0, 11, 0, 0, 0, 'Small House', 45000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (50, 4, 2196.48, -1404.19, 25.61, 0, 0, 0, 0, 0, 2282.9, -1139.99, 1050.89, 0, 11, 0, 0, 0, 'Small House', 45000, 100, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (51, 4, 2147.69, -1366.65, 25.638, 0, 0, 0, 0, 0, 2282.9, -1139.99, 1050.89, 0, 11, 0, 0, 0, 'Small House', 45000, 200, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (52, 4, 2188.83, -1419.29, 26.149, 0, 0, 0, 0, 0, 2196.53, -1204.18, 1049.02, 0, 6, 0, 0, 0, '2 Bedroom House', 100000, 200, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (53, 4, 2150.8, -1419.01, 25.92, 0, 0, 0, 0, 0, 2269.92, -1210.37, 1047.56, 0, 10, 0, 0, 0, 'Big Living Style', 80000, 1500, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (54, 4, 2190.55, -1470.42, 25.909, 0, 0, 0, 0, 0, 2269.92, -1210.37, 1047.56, 0, 10, 0, 0, 0, 'Big Living Style', 80000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (55, 4, 2149.5, -1433.73, 25.94, 0, 0, 0, 0, 0, 327.91, 1477.79, 1084.43, 0, 15, 0, 0, 0, 'Cheap Stuff', 35000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (56, 4, 2373.97, -1138.92, 29.048, 0, 0, 0, 0, 0, -68.847, 1351.31, 1080.21, 0, 6, 0, 0, 0, 'Cheap Stuff', 25000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (57, 4, 2488.07, -1135.61, 39.43, 0, 0, 0, 0, 0, 327.91, 1477.79, 1084.43, 0, 15, 0, 0, 0, 'Cheap Stuff', 35000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (58, 4, 2394.96, -1133.67, 30.708, 0, 0, 0, 0, 0, 2196.53, -1204.18, 1049.02, 0, 6, 0, 0, 0, '2 Bedroom House', 100000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (59, 4, 2191.74, -1239.03, 24.149, 0, 0, 0, 0, 0, 260.989, 1284.29, 1080.25, 0, 4, 0, 0, 0, 'Hallway House', 70000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (60, 4, 2090.73, -1234.89, 25.68, 0, 0, 0, 0, 0, 260.989, 1284.29, 1080.25, 0, 4, 0, 0, 0, 'Hallway House', 70000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (61, 4, 2207.91, -1281.05, 24.79, 0, 0, 0, 0, 0, 260.989, 1284.29, 1080.25, 0, 4, 0, 0, 0, 'Hallway House', 70000, 100, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (62, 4, 2202.75, -1363.93, 25.86, 0, 0, 0, 0, 0, 260.989, 1284.29, 1080.25, 0, 4, 0, 0, 0, 'Hallway House', 70000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (63, 4, 2129.66, -1361.94, 25.798, 0, 0, 0, 0, 0, 260.989, 1284.29, 1080.25, 0, 4, 0, 0, 0, 'Hallway House', 70000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (64, 4, 2146.49, -1470.47, 25.708, 0, 0, 0, 0, 0, 260.989, 1284.29, 1080.25, 0, 4, 0, 0, 0, 'Hallway House', 70000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (65, 4, 2194.53, -1442.93, 25.739, 0, 0, 0, 0, 0, 260.989, 1284.29, 1080.25, 0, 4, 0, 0, 0, 'Hallway House', 70000, 100, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (66, 4, 2230.44, -1396.88, 24.239, 0, 0, 0, 0, 0, 260.989, 1284.29, 1080.25, 0, 4, 0, 0, 0, 'Hallway House', 70000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (67, 4, 2243.47, -1396.96, 24.239, 0, 0, 0, 0, 0, 260.989, 1284.29, 1080.25, 0, 4, 0, 0, 0, 'Hallway House', 70000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (68, 4, 2256.46, -1396.92, 24.239, 0, 0, 0, 0, 0, 260.989, 1284.29, 1080.25, 0, 4, 0, 0, 0, 'Hallway House', 70000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (69, 4, 2263.89, -1469.58, 24.04, 0, 0, 0, 0, 0, 260.989, 1284.29, 1080.25, 0, 4, 0, 0, 0, 'Hallway House', 70000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (70, 4, 2247.69, -1469.54, 24.138, 0, 0, 0, 0, 0, 260.989, 1284.29, 1080.25, 0, 4, 0, 0, 0, 'Hallway House', 70000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (71, 4, 2232.56, -1469.54, 24.25, 0, 0, 0, 0, 0, 260.989, 1284.29, 1080.25, 0, 4, 0, 0, 0, 'Hallway House', 70000, 100, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (72, 4, 2510.35, -1132.66, 41.29, 0, 0, 0, 0, 0, 260.989, 1284.29, 1080.25, 0, 4, 0, 0, 0, 'Hallway House', 70000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (73, 4, 2185.15, -1364, 25.819, 0, 0, 0, 0, 0, 2282.9, -1139.99, 1050.89, 0, 11, 0, 0, 0, 'Small House', 45000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (74, 4, 2061.06, -1075.35, 25.68, 0, 0, 0, 0, 0, 2218.35, -1076.26, 1050.48, 0, 1, 0, 0, 0, 'Light Living', 48000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (75, 4, 1959.58, -1070.07, 24.79, 0, 0, 0, 0, 0, 243.979, 304.98, 999.14, 0, 1, 0, 0, 0, 'House', 10500, 500, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (76, 4, 1954.38, -1074.93, 24.79, 0, 0, 0, 0, 0, 243.979, 304.98, 999.14, 0, 1, 0, 0, 0, 'House', 10500, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (77, 4, 1934.04, -1071.51, 24.409, 0, 0, 0, 0, 0, 243.979, 304.98, 999.14, 0, 1, 0, 0, 0, 'House', 10500, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (78, 4, 1939.27, -1066.39, 24.409, 0, 0, 0, 0, 0, 243.979, 304.98, 999.14, 0, 1, 0, 0, 0, 'House', 10500, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (79, 4, 1916.88, -1064.77, 24.12, 0, 0, 0, 0, 0, 243.979, 304.98, 999.14, 0, 1, 0, 0, 0, 'House', 10500, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (80, 4, 1912.61, -1070.55, 24.229, 0, 0, 0, 0, 0, 243.979, 304.98, 999.14, 0, 1, 0, 0, 0, 'House', 10500, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (81, 4, 1896.04, -1064.84, 23.93, 0, 0, 0, 0, 0, 243.979, 304.98, 999.14, 0, 1, 0, 0, 0, 'House', 10500, 500, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (82, 4, 1891.77, -1070.53, 23.93, 0, 0, 0, 0, 0, 243.979, 304.98, 999.14, 0, 1, 0, 0, 0, 'House', 10500, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (83, 4, 2077.3, -1056.98, 31.34, 0, 0, 0, 0, 0, 2218.35, -1076.26, 1050.48, 0, 1, 0, 0, 0, 'Light Living', 48000, 5000, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (84, 4, 2157.15, -1072.39, 40.49, 0, 0, 0, 0, 0, 2237.51, -1081.64, 1049.02, 0, 2, 0, 0, 0, 'House', 80000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (85, 4, 2188.76, -1081.51, 43.83, 0, 0, 0, 0, 0, 2237.51, -1081.64, 1049.02, 0, 2, 0, 0, 0, 'House', 80000, 1000, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (86, 4, 2207.5, -1100.43, 31.548, 0, 0, 0, 0, 0, 2237.51, -1081.64, 1049.02, 0, 2, 0, 0, 0, 'House', 80000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (87, 4, 2213.22, -1000.31, 68.23, 0, 0, 0, 0, 0, 140.229, 1366, 1083.85, 0, 5, 0, 0, 0, 'House', 1000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (88, 4, 1283.54, -897.848, 42.868, 0, 0, 0, 0, 0, 328.493, 1480.59, 1084.45, 0, 15, 0, 0, 0, 'Little Apartment', 50000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (89, 4, 1291.02, -896.89, 42.88, 0, 0, 0, 0, 0, 328.493, 1480.59, 1084.45, 0, 15, 0, 0, 0, 'Little Apartment', 50000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (90, 4, 1291.02, -896.859, 46.618, 0, 0, 0, 0, 0, 328.493, 1480.59, 1084.45, 0, 15, 0, 0, 0, 'Little Apartment', 50000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (91, 4, 1283.53, -897.82, 46.618, 0, 0, 0, 0, 0, 328.493, 1480.59, 1084.45, 0, 15, 0, 0, 0, 'Little Apartment', 50000, 40, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (92, 4, 1291.82, -903.07, 46.63, 0, 0, 0, 0, 0, 328.493, 1480.59, 1084.45, 0, 15, 0, 0, 0, 'Little Apartment', 50000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (93, 4, 1284.36, -903.979, 46.63, 0, 0, 0, 0, 0, 328.493, 1480.59, 1084.45, 0, 15, 0, 0, 0, 'Little Apartment', 50000, 100, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (94, 4, 1284.34, -904.03, 42.88, 0, 0, 0, 0, 0, 328.493, 1480.59, 1084.45, 0, 15, 0, 0, 0, 'Little Apartment', 50000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (95, 4, 1291.83, -903.03, 42.88, 0, 0, 0, 0, 0, 328.493, 1480.59, 1084.45, 0, 15, 0, 0, 0, 'Little Apartment', 50000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (96, 4, 1288.34, -873.89, 43.06, 0, 0, 0, 0, 0, 328.493, 1480.59, 1084.45, 0, 15, 0, 0, 0, 'Little Apartment', 50000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (97, 4, 1280.86, -874.848, 42.93, 0, 0, 0, 0, 0, 328.493, 1480.59, 1084.45, 0, 15, 0, 0, 0, 'Little Apartment', 50000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (98, 4, 1287.53, -867.679, 43.138, 0, 0, 0, 0, 0, 328.493, 1480.59, 1084.45, 0, 15, 0, 0, 0, 'Little Apartment', 50000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (99, 4, 1280.08, -868.619, 42.916, 0, 0, 0, 0, 0, 328.493, 1480.59, 1084.45, 0, 15, 0, 0, 0, 'Little Apartment', 50000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (100, 4, 1287.53, -867.739, 46.83, 0, 0, 0, 0, 0, 328.493, 1480.59, 1084.45, 0, 15, 0, 0, 0, 'Little Apartment', 50000, 5000, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (101, 4, 1280.04, -868.609, 46.83, 0, 0, 0, 0, 0, 328.493, 1480.59, 1084.45, 0, 15, 0, 0, 0, 'Little Apartment', 50000, 250, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (102, 4, 1288.33, -873.82, 46.84, 0, 0, 0, 0, 0, 328.493, 1480.59, 1084.45, 0, 15, 0, 0, 0, 'Little Apartment', 50000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (103, 4, 1280.86, -874.859, 46.84, 0, 0, 0, 0, 0, 328.493, 1480.59, 1084.45, 0, 15, 0, 0, 0, 'Little Apartment', 50000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (104, 4, 1249.61, -877.299, 42.88, 0, 0, 0, 0, 0, 328.493, 1480.59, 1084.45, 0, 15, 0, 0, 0, 'Little Apartment', 50000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (105, 4, 1242.11, -878.229, 42.868, 0, 0, 0, 0, 0, 328.493, 1480.59, 1084.45, 0, 15, 0, 0, 0, 'Little Apartment', 50000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (106, 4, 1248.8, -871.14, 42.88, 0, 0, 0, 0, 0, 328.493, 1480.59, 1084.45, 0, 15, 0, 0, 0, 'Little Apartment', 50000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (107, 4, 1241.31, -872.09, 42.88, 0, 0, 0, 0, 0, 328.493, 1480.59, 1084.45, 0, 15, 0, 0, 0, 'Little Apartment', 50000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (108, 4, 1248.8, -871.15, 46.63, 0, 0, 0, 0, 0, 328.493, 1480.59, 1084.45, 0, 15, 0, 0, 0, 'Little Apartment', 50000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (109, 4, 1241.3, -872.059, 46.63, 0, 0, 0, 0, 0, 328.493, 1480.59, 1084.45, 0, 15, 0, 0, 0, 'Little Apartment', 50000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (110, 4, 1249.61, -877.28, 46.638, 0, 0, 0, 0, 0, 328.493, 1480.59, 1084.45, 0, 15, 0, 0, 0, 'Little Apartment', 50000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (111, 4, 1242.12, -878.218, 46.638, 0, 0, 0, 0, 0, 328.493, 1480.59, 1084.45, 0, 15, 0, 0, 0, 'Little Apartment', 50000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (112, 4, 1252.88, -901.869, 42.88, 0, 0, 0, 0, 0, 328.493, 1480.59, 1084.45, 0, 15, 0, 0, 0, 'Little Apartment', 50000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (113, 4, 1245.4, -902.83, 42.88, 0, 0, 0, 0, 0, 328.493, 1480.59, 1084.45, 0, 15, 0, 0, 0, 'Little Apartment', 50000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (114, 4, 1253.7, -908.059, 42.88, 0, 0, 0, 0, 0, 328.493, 1480.59, 1084.45, 0, 15, 0, 0, 0, 'Little Apartment', 50000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (115, 4, 1246.24, -909.03, 42.88, 0, 0, 0, 0, 0, 328.493, 1480.59, 1084.45, 0, 15, 0, 0, 0, 'Little Apartment', 50000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (116, 4, 1246.21, -908.979, 46.597, 0, 0, 0, 0, 0, 328.493, 1480.59, 1084.45, 0, 15, 0, 0, 0, 'Little Apartment', 50000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (117, 4, 1253.71, -908.098, 46.597, 0, 0, 0, 0, 0, 328.493, 1480.59, 1084.45, 0, 15, 0, 0, 0, 'Little Apartment', 50000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (118, 4, 1245.4, -902.799, 46.59, 0, 0, 0, 0, 0, 328.493, 1480.59, 1084.45, 0, 15, 0, 0, 0, 'Little Apartment', 50000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (119, 4, 1252.89, -901.88, 46.59, 0, 0, 0, 0, 0, 328.493, 1480.59, 1084.45, 0, 15, 0, 0, 0, 'Little Apartment', 50000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (120, 4, 1111.5, -976.299, 42.756, 0, 0, 0, 0, 0, 2333.12, -1077.13, 1049.02, 0, 6, 0, 0, 0, 'Major Manor', 50000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (121, 4, 1496.99, -687.89, 95.555, 0, 0, 0, 0, 0, 225.699, 1021.44, 1084.01, 0, 7, 0, 0, 0, 'Major Manor', 3000000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (122, 4, 980.468, -677.26, 121.97, 0, 0, 0, 0, 0, 225.699, 1021.44, 1084.01, 0, 7, 0, 0, 0, 'Major Manor', 3000000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (123, 4, 251.429, -1220.21, 76.097, 0, 0, 0, 0, 0, 225.699, 1021.44, 1084.01, 0, 7, 0, 0, 0, 'Major Manor', 3000000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (124, 4, 253.179, -1270.01, 74.416, 0, 0, 0, 0, 0, 140.229, 1366, 1083.85, 0, 5, 0, 0, 0, 'Fancy Mansion', 1800000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (125, 4, 300.25, -1154.46, 81.388, 0, 0, 0, 0, 0, 140.229, 1366, 1083.85, 0, 5, 0, 0, 0, 'Major Manor', 1800000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (126, 4, 189.63, -1308.16, 70.236, 0, 0, 0, 0, 0, 140.229, 1366, 1083.85, 0, 5, 0, 0, 0, 'Major Manor', 1800000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (127, 4, 1122.7, -2036.98, 69.888, 0, 0, 0, 0, 0, 1298.8, -796.9, 1084.01, 0, 5, 0, 0, 0, 'Major Manor', 3000000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (128, 4, 1981.07, -1682.85, 17.048, 0, 0, 0, 0, 0, 234.162, 1064.23, 1084.21, 0, 6, 0, 0, 0, 'Major Manor', 800000, 5000, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (129, 4, 1980.37, -1718.91, 17.03, 0, 0, 0, 0, 0, 234.162, 1064.23, 1084.21, 0, 6, 0, 0, 0, 'Minor Manor', 800000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (130, 4, 2015.34, -1732.57, 14.229, 0, 0, 0, 0, 0, 2196.53, -1204.18, 1049.02, 0, 6, 0, 0, 0, 'Idlewood House', 100000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (131, 4, 2017.97, -1703.38, 14.229, 0, 0, 0, 0, 0, 2196.53, -1204.18, 1049.02, 0, 6, 0, 0, 0, '2 Bedroom House', 100000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (132, 4, 2067.42, -1731.62, 13.869, 0, 0, 0, 0, 0, 2282.9, -1139.99, 1050.89, 0, 11, 0, 0, 0, 'Small House', 45000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (133, 4, 2068.06, -1628.89, 13.869, 0, 0, 0, 0, 0, 2282.9, -1139.99, 1050.89, 0, 11, 0, 0, 0, 'Small House', 45000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (134, 4, 2016.21, -1641.67, 13.779, 0, 0, 0, 0, 0, 2282.9, -1139.99, 1050.89, 0, 11, 0, 0, 0, 'Small House', 45000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (135, 4, 2015.82, -1716.99, 13.97, 0, 0, 0, 0, 0, 327.91, 1477.79, 1084.43, 0, 15, 0, 0, 0, 'Cheap Stuff', 35000, 5000, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (136, 4, 2066.97, -1656.47, 14.069, 0, 0, 0, 0, 0, 327.91, 1477.79, 1084.43, 0, 15, 0, 0, 0, 'Cheap Stuff', 35000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (137, 4, 2191.58, -1455.88, 25.79, 0, 0, 0, 0, 0, 327.91, 1477.79, 1084.43, 0, 15, 0, 0, 0, 'Cheap Stuff', 35000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (138, 4, 2067.74, -1643.74, 13.8, 0, 0, 0, 0, 0, 260.989, 1284.29, 1080.25, 0, 4, 0, 0, 0, 'Hallway House', 70000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (139, 4, 2066.42, -1717.06, 13.8, 0, 0, 0, 0, 0, 260.989, 1284.29, 1080.25, 0, 4, 0, 0, 0, 'Hallway House', 70000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (140, 4, 2013.31, -1656.37, 13.8, 0, 0, 0, 0, 0, 260.989, 1284.29, 1080.25, 0, 4, 0, 0, 0, 'Hallway House', 70000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (141, 4, 2017.86, -1629.93, 13.71, 0, 0, 0, 0, 0, 260.989, 1284.29, 1080.25, 0, 4, 0, 0, 0, 'Hallway House', 70000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (142, 4, 2065.24, -1703.52, 14.14, 0, 0, 0, 0, 0, -42.58, 1405.59, 1084.42, 0, 8, 0, 0, 0, 'Low Light Living', 70000, 1, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (143, 4, 1969.35, -1705.42, 15.96, 0, 0, 0, 0, 0, 2218.04, -1076.24, 1050.48, 0, 1, 0, 0, 0, 'Fancy Apartment', 20000, 1500, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (144, 4, 1973.28, -1705.26, 15.96, 0, 0, 0, 0, 0, 2218.04, -1076.24, 1050.48, 0, 1, 0, 0, 0, 'Fancy Apartment', 20000, 2000, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (145, 4, 1969.4, -1654.77, 15.96, 0, 0, 0, 0, 0, 2218.04, -1076.24, 1050.48, 0, 1, 0, 0, 0, 'Fancy Apartment', 20000, 100, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (146, 4, 1973.36, -1654.67, 15.96, 0, 0, 0, 0, 0, 2218.04, -1076.24, 1050.48, 0, 1, 0, 0, 0, 'Fancy Apartment', 20000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (147, 4, 1967.48, -1633.76, 15.96, 0, 0, 0, 0, 0, 2233.68, -1115.06, 1050.88, 0, 5, 0, 0, 0, 'Light Apartment', 20000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (148, 4, 1972.28, -1633.71, 15.96, 0, 0, 0, 0, 0, 2233.68, -1115.06, 1050.88, 0, 5, 0, 0, 0, 'Light Apartment', 20000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (149, 4, 1976.04, -1634.06, 16.208, 0, 0, 0, 0, 0, 2233.68, -1115.06, 1050.88, 0, 5, 0, 0, 0, 'Light Apartment', 20000, 50, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (150, 4, 1967.56, -1633.71, 18.559, 0, 0, 0, 0, 0, 2233.68, -1115.06, 1050.88, 0, 5, 0, 0, 0, 'Light Apartment', 20000, 1, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (151, 4, 1972.32, -1633.71, 18.559, 0, 0, 0, 0, 0, 2233.68, -1115.06, 1050.88, 0, 5, 0, 0, 0, 'Light Apartment', 20000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (152, 4, 1976.13, -1634.05, 18.559, 0, 0, 0, 0, 0, 2233.68, -1115.06, 1050.88, 0, 5, 0, 0, 0, 'Light Apartment', 20000, 50, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (153, 4, 1969.98, -1671.4, 15.96, 0, 0, 0, 0, 0, 2233.68, -1115.06, 1050.88, 0, 5, 0, 0, 0, 'Light Apartment', 20000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (154, 4, 1974.85, -1671.26, 15.96, 0, 0, 0, 0, 0, 2233.68, -1115.06, 1050.88, 0, 5, 0, 0, 0, 'Light Apartment', 20000, 100, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (155, 4, 1978.75, -1671.54, 16.18, 0, 0, 0, 0, 0, 2233.68, -1115.06, 1050.88, 0, 5, 0, 0, 0, 'Light Apartment', 20000, 5, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (156, 4, 1970.06, -1671.19, 18.54, 0, 0, 0, 0, 0, 2233.68, -1115.06, 1050.88, 0, 5, 0, 0, 0, 'Light Apartment', 20000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (157, 4, 1974.86, -1671.2, 18.54, 0, 0, 0, 0, 0, 2233.68, -1115.06, 1050.88, 0, 5, 0, 0, 0, 'Light Apartment', 20000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (158, 4, 1978.74, -1671.51, 18.54, 0, 0, 0, 0, 0, 2233.68, -1115.06, 1050.88, 0, 5, 0, 0, 0, 'Light Apartment', 20000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (159, 4, 2082.44, -1085.14, 25.687, 0, 0, 0, 0, 0, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, 0, 'House Ghetto LS Small', 10000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (160, 4, 2075.29, -1081.9, 25.68, 0, 0, 0, 0, 0, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, 0, 'House Ghetto LS Small', 10000, 10, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (161, 4, 2140.68, -1082.55, 25.034, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0, 'Apartment LS Small', 20000, 500, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (162, 4, 2145.24, -1084.66, 25.034, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0, 'Apartment LS Small', 20000, 1000, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (163, 4, 2334.6, -1203.99, 27.975, 0, 0, 0, 0, 0, 243.72, 304.97, 999.14, 0, 1, 0, 0, 0, 'Ghetto Project Apartment LS Small', 2000, 1, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (164, 4, 2324.33, -1218.84, 27.975, 0, 0, 0, 0, 0, 243.72, 304.97, 999.14, 0, 1, 0, 0, 0, 'Ghetto Project Apartment LS Small', 2000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (165, 4, 2334.65, -1234.66, 27.975, 0, 0, 0, 0, 0, 243.72, 304.97, 999.14, 0, 1, 0, 0, 0, 'Ghetto Project Apartment LS Small', 2000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (166, 4, 2324.47, -1249.51, 27.975, 0, 0, 0, 0, 0, 243.72, 304.97, 999.14, 0, 1, 0, 0, 0, 'Ghetto Project Apartment LS Small', 2000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (167, 4, 2334.7, -1266.12, 27.968, 0, 0, 0, 0, 0, 243.72, 304.97, 999.14, 0, 1, 0, 0, 0, 'Ghetto Project Apartment LS Small', 2000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (168, 4, 2324.44, -1280.97, 27.982, 0, 0, 0, 0, 0, 243.72, 304.97, 999.14, 0, 1, 0, 0, 0, 'Ghetto Project Apartment LS Small', 2000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (169, 4, 2427.38, -1135.77, 34.708, 0, 0, 0, 0, 0, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, 0, 'House Ghetto LS Small', 10000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (170, 4, 2467.56, -1200.41, 36.811, 0, 0, 0, 0, 0, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, 0, 'House Ghetto LS Small', 10000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (171, 4, 2492.17, -1239.01, 37.902, 0, 0, 0, 0, 0, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, 0, 'House Ghetto LS Small', 10000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (172, 4, 2494.1, -1224.25, 37.902, 0, 0, 0, 0, 0, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, 0, 'House Ghetto LS Small', 10000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (173, 4, 2472.9, -1238.12, 32.569, 0, 0, 0, 0, 0, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, 0, 'House Ghetto LS Small', 10000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (174, 4, 2474.9, -1223.36, 32.569, 0, 0, 0, 0, 0, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, 0, 'House Ghetto LS Small', 10000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (175, 4, 2469.18, -1278.36, 30.364, 0, 0, 0, 0, 0, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, 0, 'House Ghetto LS Small', 10000, 5000, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (176, 4, 2470.37, -1295.52, 30.232, 0, 0, 0, 0, 0, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, 0, 'House Ghetto LS Small', 10000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (177, 4, 2434.8, -1289.29, 25.347, 0, 0, 0, 0, 0, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, 0, 'House Ghetto LS Small', 10000, 5, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (178, 4, 2433.94, -1303.35, 25.322, 0, 0, 0, 0, 0, 328.13, 1477.9, 1084.43, 0, 15, 0, 0, 0, 'Medium House Ghetto LS', 12000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (179, 4, 2433.93, -1320.68, 25.322, 0, 0, 0, 0, 0, 328.13, 1477.9, 1084.43, 0, 15, 0, 0, 0, 'Medium House Ghetto LS', 12000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (180, 4, 2439.59, -1338.72, 24.1, 0, 0, 0, 0, 0, 328.13, 1477.9, 1084.43, 0, 15, 0, 0, 0, 'Medium House Ghetto LS', 12000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (181, 4, 2439.59, -1357.14, 24.1, 0, 0, 0, 0, 0, 328.13, 1477.9, 1084.43, 0, 15, 0, 0, 0, 'Medium House Ghetto LS', 12000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (182, 4, -2789.59, -181.41, 10.062, 0, 0, 0, 0, 0, 2196.84, -1204.23, 1049.02, 0, 6, 0, 0, 0, 'Normal Size House In SF', 85000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (183, 4, 2421.23, -1277.2, 24.756, 0, 0, 0, 0, 0, 328.13, 1477.9, 1084.43, 0, 15, 0, 0, 0, 'Medium House Ghetto LS', 12000, 500, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (184, 4, 2420.02, -1287.25, 25.347, 0, 0, 0, 0, 0, 328.13, 1477.9, 1084.43, 0, 15, 0, 0, 0, 'Medium House Ghetto LS', 12000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (185, 4, 2419.23, -1301.95, 25.572, 0, 0, 0, 0, 0, 328.13, 1477.9, 1084.43, 0, 15, 0, 0, 0, 'Medium House Ghetto LS', 12000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (186, 4, 2419.23, -1319.22, 25.572, 0, 0, 0, 0, 0, 328.13, 1477.9, 1084.43, 0, 15, 0, 0, 0, 'Medium House Ghetto LS', 12000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (187, 4, 2424.89, -1336.86, 24.322, 0, 0, 0, 0, 0, 328.13, 1477.9, 1084.43, 0, 15, 0, 0, 0, 'Medium House Ghetto LS', 12000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (188, 4, 2424.89, -1355.15, 24.322, 0, 0, 0, 0, 0, 328.13, 1477.9, 1084.43, 0, 15, 0, 0, 0, 'Medium House Ghetto LS', 12000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (189, 4, -2786.77, -175.214, 10.062, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0, 'Apartment 2nd Floor In SF', 80000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (190, 4, 2487.35, -1398.81, 29.312, 0, 0, 0, 0, 0, 243.72, 304.97, 999.14, 0, 1, 0, 0, 0, 'Ghetto Project Apartment LS Small', 2000, 2000, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (191, 4, 2487.3, -1410.34, 29.312, 0, 0, 0, 0, 0, 243.72, 304.97, 999.14, 0, 1, 0, 0, 0, 'Ghetto Project Apartment LS Small', 2000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (192, 4, 2492.25, -1398.81, 29.312, 0, 0, 0, 0, 0, 243.72, 304.97, 999.14, 0, 1, 0, 0, 0, 'Ghetto Project Apartment LS Small', 2000, 500, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (193, 4, 2495.38, -1398.81, 29.312, 0, 0, 0, 0, 0, 243.72, 304.97, 999.14, 0, 1, 0, 0, 0, 'Ghetto Project Apartment LS Small', 2000, 500, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (194, 4, -2790.4, -168.274, 7.201, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0, 'Appartment 1st Floor In SF', 80000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (195, 4, 2495.29, -1410.34, 29.312, 0, 0, 0, 0, 0, 243.72, 304.97, 999.14, 0, 1, 0, 0, 0, 'Ghetto Project Apartment LS Small', 2000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (196, 4, 2492.18, -1410.34, 29.312, 0, 0, 0, 0, 0, 243.72, 304.97, 999.14, 0, 1, 0, 0, 0, 'Ghetto Project Apartment LS Small', 2000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (197, 4, 2476.27, -1410.34, 29.312, 0, 0, 0, 0, 0, 243.72, 304.97, 999.14, 0, 1, 0, 0, 0, 'Ghetto Project Apartment LS Small', 2000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (198, 4, 2473.14, -1410.34, 29.312, 0, 0, 0, 0, 0, 243.72, 304.97, 999.14, 0, 1, 0, 0, 0, 'Ghetto Project Apartment LS Small', 2000, 500, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (199, 4, 2468.25, -1410.34, 29.312, 0, 0, 0, 0, 0, 243.72, 304.97, 999.14, 0, 1, 0, 0, 0, 'Ghetto Project Apartment LS Small', 2000, 1000, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (200, 4, -2791.99, -160.475, 10.053, 0, 0, 0, 0, 0, 2196.84, -1204.23, 1049.02, 0, 6, 0, 0, 0, 'Normal Size Pink House In SF', 85000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (201, 4, 2476.4, -1398.81, 29.312, 0, 0, 0, 0, 0, 243.72, 304.97, 999.14, 0, 1, 0, 0, 0, 'Ghetto Project Apartment LS Small', 2000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (202, 4, 2476.25, -1391.71, 29.312, 0, 0, 0, 0, 0, 243.72, 304.97, 999.14, 0, 1, 0, 0, 0, 'Ghetto Project Apartment LS Small', 2000, 500, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (203, 4, 2473.12, -1391.71, 29.312, 0, 0, 0, 0, 0, 243.72, 304.97, 999.14, 0, 1, 0, 0, 0, 'Ghetto Project Apartment LS Small', 2000, 200, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (204, 4, 2468.3, -1391.71, 29.312, 0, 0, 0, 0, 0, 243.72, 304.97, 999.14, 0, 1, 0, 0, 0, 'Ghetto Project Apartment LS Small', 2000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (205, 4, 2468.3, -1383.37, 29.312, 0, 0, 0, 0, 0, 243.72, 304.97, 999.14, 0, 1, 0, 0, 0, 'Ghetto Project Apartment LS Small', 2000, 200, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (206, 4, 2473.17, -1383.37, 29.312, 0, 0, 0, 0, 0, 243.72, 304.97, 999.14, 0, 1, 0, 0, 0, 'Ghetto Project Apartment LS Small', 2000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (207, 4, 2476.42, -1383.37, 29.312, 0, 0, 0, 0, 0, 243.72, 304.97, 999.14, 0, 1, 0, 0, 0, 'Ghetto Project Apartment LS Small', 2000, 1, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (208, 4, -2792.89, -153.151, 7.596, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0, 'Normal Size Very Light Green House In SF', 55000, 3000, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (209, 4, 2487.38, -1383.38, 29.312, 0, 0, 0, 0, 0, 243.72, 304.97, 999.14, 0, 1, 0, 0, 0, 'Ghetto Project Apartment LS Small', 2000, 200, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (210, 4, 2492.22, -1383.37, 29.312, 0, 0, 0, 0, 0, 243.72, 304.97, 999.14, 0, 1, 0, 0, 0, 'Ghetto Project Apartment LS Small', 2000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (211, 4, 2495.4, -1383.37, 29.312, 0, 0, 0, 0, 0, 243.72, 304.97, 999.14, 0, 1, 0, 0, 0, 'Ghetto Project Apartment LS Small', 2000, 5000, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (212, 4, 2487.29, -1391.71, 29.312, 0, 0, 0, 0, 0, 243.72, 304.97, 999.14, 0, 1, 0, 0, 0, 'Ghetto Project Apartment LS Small', 2000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (213, 4, 2492.12, -1391.71, 29.312, 0, 0, 0, 0, 0, 243.72, 304.97, 999.14, 0, 1, 0, 0, 0, 'Ghetto Project Apartment LS Small', 2000, 250, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (214, 4, -2791.86, -145.983, 7.859, 0, 0, 0, 0, 0, 2196.84, -1204.23, 1049.02, 0, 6, 0, 0, 0, 'Normal Size Blue House In SF', 85000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (215, 4, 2495.35, -1391.71, 29.312, 0, 0, 0, 0, 0, 243.72, 304.97, 999.14, 0, 1, 0, 0, 0, 'Ghetto Project Apartment LS Small', 2000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (216, 4, 2495.41, -1417.44, 29.312, 0, 0, 0, 0, 0, 243.72, 304.97, 999.14, 0, 1, 0, 0, 0, 'Ghetto Project Apartment LS Small', 2000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (217, 4, -2791.99, -134.462, 10.053, 0, 0, 0, 0, 0, 2196.84, -1204.23, 1049.02, 0, 6, 0, 0, 0, 'Normal Size House In SF', 85000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (218, 4, 2495.3, -1424.58, 29.016, 0, 0, 0, 0, 0, 243.72, 304.97, 999.14, 0, 1, 0, 0, 0, 'Ghetto Project Apartment LS Small', 2000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (219, 4, 2492.09, -1424.58, 29.016, 0, 0, 0, 0, 0, 243.72, 304.97, 999.14, 0, 1, 0, 0, 0, 'Ghetto Project Apartment LS Small', 2000, 500, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (220, 4, 2492.27, -1417.44, 29.312, 0, 0, 0, 0, 0, 243.72, 304.97, 999.14, 0, 1, 0, 0, 0, 'Ghetto Project Apartment LS Small', 2000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (221, 4, 2487.35, -1424.58, 29.016, 0, 0, 0, 0, 0, 243.72, 304.97, 999.14, 0, 1, 0, 0, 0, 'Ghetto Project Apartment LS Small', 2000, 200, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (222, 4, 2487.34, -1417.44, 29.312, 0, 0, 0, 0, 0, 243.72, 304.97, 999.14, 0, 1, 0, 0, 0, 'Ghetto Project Apartment LS Small', 2000, 200, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (223, 4, 2476.25, -1424.58, 29.312, 0, 0, 0, 0, 0, 243.72, 304.97, 999.14, 0, 1, 0, 0, 0, 'Ghetto Project Apartment LS Small', 2000, 50, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (224, 4, 2476.39, -1417.44, 29.312, 0, 0, 0, 0, 0, 243.72, 304.97, 999.14, 0, 1, 0, 0, 0, 'Ghetto Project Apartment LS Small', 2000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (225, 4, 2473.12, -1417.44, 29.312, 0, 0, 0, 0, 0, 243.72, 304.97, 999.14, 0, 1, 0, 0, 0, 'Ghetto Project Apartment LS Small', 2000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (226, 4, 2473.09, -1424.57, 29.312, 0, 0, 0, 0, 0, 243.72, 304.97, 999.14, 0, 1, 0, 0, 0, 'Ghetto Project Apartment LS Small', 2000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (227, 4, 2468.3, -1424.58, 29.312, 0, 0, 0, 0, 0, 243.72, 304.97, 999.14, 0, 1, 0, 0, 0, 'Ghetto Project Apartment LS Small', 2000, 5000, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (228, 4, 2468.34, -1417.45, 29.312, 0, 0, 0, 0, 0, 243.72, 304.97, 999.14, 0, 1, 0, 0, 0, 'Ghetto Project Apartment LS Small', 2000, 200, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (229, 4, 2495.35, -1431.68, 29.016, 0, 0, 0, 0, 0, 243.72, 304.97, 999.14, 0, 1, 0, 0, 0, 'Ghetto Project Apartment LS Small', 2000, 500, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (230, 4, 2492.26, -1431.68, 29.016, 0, 0, 0, 0, 0, 243.72, 304.97, 999.14, 0, 1, 0, 0, 0, 'Ghetto Project Apartment LS Small', 2000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (231, 4, 2487.3, -1431.68, 29.016, 0, 0, 0, 0, 0, 243.72, 304.97, 999.14, 0, 1, 0, 0, 0, 'Ghetto Project Apartment LS Small', 2000, 100, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (232, 4, 2476.45, -1431.68, 29.312, 0, 0, 0, 0, 0, 243.72, 304.97, 999.14, 0, 1, 0, 0, 0, 'Ghetto Project Apartment LS Small', 2000, 200, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (233, 4, -2793.14, -126.986, 7.184, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0, 'Normal Size Light Green House In SF', 55000, 500, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (234, 4, 2473.24, -1431.68, 29.312, 0, 0, 0, 0, 0, 243.72, 304.97, 999.14, 0, 1, 0, 0, 0, 'Ghetto Project Apartment LS Small', 2000, 999, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (235, 4, 2468.35, -1431.68, 29.312, 0, 0, 0, 0, 0, 243.72, 304.97, 999.14, 0, 1, 0, 0, 0, 'Ghetto Project Apartment LS Small', 2000, 5000, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (236, 4, 2473.14, -1398.81, 29.312, 0, 0, 0, 0, 0, 243.72, 304.97, 999.14, 0, 1, 0, 0, 0, 'Ghetto Project Apartment LS Small', 2000, 20, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (237, 4, 2468.39, -1398.81, 29.312, 0, 0, 0, 0, 0, 243.72, 304.97, 999.14, 0, 1, 0, 0, 0, 'Ghetto Project Apartment LS Small', 2000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (238, 4, 2468.32, -1376.27, 29.312, 0, 0, 0, 0, 0, 243.72, 304.97, 999.14, 0, 1, 0, 0, 0, 'Ghetto Project Apartment LS Small', 2000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (239, 4, 2473.15, -1376.27, 29.312, 0, 0, 0, 0, 0, 243.72, 304.97, 999.14, 0, 1, 0, 0, 0, 'Ghetto Project Apartment LS Small', 2000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (240, 4, 2476.3, -1376.27, 29.312, 0, 0, 0, 0, 0, 243.72, 304.97, 999.14, 0, 1, 0, 0, 0, 'Ghetto Project Apartment LS Small', 2000, 200, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (241, 4, -2786.77, -118.259, 10.062, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0, 'Appartment 2nd Floor In SF', 80000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (242, 4, 2473.17, -1366.2, 29.312, 0, 0, 0, 0, 0, 243.72, 304.97, 999.14, 0, 1, 0, 0, 0, 'Ghetto Project Apartment LS Small', 2000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (243, 4, 2468.38, -1366.2, 29.312, 0, 0, 0, 0, 0, 243.72, 304.97, 999.14, 0, 1, 0, 0, 0, 'Ghetto Project Apartment LS Small', 2000, 5000, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (244, 4, 2476.37, -1366.2, 29.312, 0, 0, 0, 0, 0, 243.72, 304.97, 999.14, 0, 1, 0, 0, 0, 'Ghetto Project Apartment LS Small', 2000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (245, 4, 2487.39, -1366.2, 29.312, 0, 0, 0, 0, 0, 243.72, 304.97, 999.14, 0, 1, 0, 0, 0, 'Ghetto Project Apartment LS Small', 2000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (246, 4, -2790.34, -111.142, 7.201, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0, 'Appartment 1st Floor In SF', 80000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (247, 4, 2487.3, -1376.27, 29.312, 0, 0, 0, 0, 0, 243.72, 304.97, 999.14, 0, 1, 0, 0, 0, 'Ghetto Project Apartment LS Small', 2000, 200, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (248, 4, 2492.3, -1366.2, 29.312, 0, 0, 0, 0, 0, 243.72, 304.97, 999.14, 0, 1, 0, 0, 0, 'Ghetto Project Apartment LS Small', 2000, 200, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (249, 4, 2492.08, -1376.27, 29.312, 0, 0, 0, 0, 0, 243.72, 304.97, 999.14, 0, 1, 0, 0, 0, 'Ghetto Project Apartment LS Small', 2000, 1, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (250, 4, 2495.31, -1376.27, 29.312, 0, 0, 0, 0, 0, 243.72, 304.97, 999.14, 0, 1, 0, 0, 0, 'Ghetto Project Apartment LS Small', 2000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (251, 4, 2495.47, -1366.21, 29.312, 0, 0, 0, 0, 0, 243.72, 304.97, 999.14, 0, 1, 0, 0, 0, 'Ghetto Project Apartment LS Small', 2000, 200, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (252, 4, -2791.85, -107.452, 7.859, 0, 0, 0, 0, 0, 2196.84, -1204.23, 1049.02, 0, 6, 0, 0, 0, 'Normal Size Green/Brick House In SF', 120000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (253, 4, -2791.99, -94.976, 10.053, 0, 0, 0, 0, 0, 2196.84, -1204.23, 1049.02, 0, 6, 0, 0, 0, 'Normal Size Pink House In SF', 85000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (254, 4, -2786.77, -89.706, 10.062, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0, 'Appartment 2nd Floor In SF', 80000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (255, 4, -2790.42, -82.527, 7.195, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0, 'Appartment 1st Floor In SF', 80000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (256, 4, 2495.33, -1359.1, 29.312, 0, 0, 0, 0, 0, 243.72, 304.97, 999.14, 0, 1, 0, 0, 0, 'Ghetto Project Apartment LS Small', 2000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (257, 4, 2492.1, -1359.1, 29.312, 0, 0, 0, 0, 0, 243.72, 304.97, 999.14, 0, 1, 0, 0, 0, 'Ghetto Project Apartment LS Small', 2000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (258, 4, 2487.26, -1359.1, 29.312, 0, 0, 0, 0, 0, 243.72, 304.97, 999.14, 0, 1, 0, 0, 0, 'Ghetto Project Apartment LS Small', 2000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (259, 4, 2476.28, -1359.1, 29.312, 0, 0, 0, 0, 0, 243.72, 304.97, 999.14, 0, 1, 0, 0, 0, 'Ghetto Project Apartment LS Small', 2000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (260, 4, 2473.07, -1359.1, 29.312, 0, 0, 0, 0, 0, 243.72, 304.97, 999.14, 0, 1, 0, 0, 0, 'Ghetto Project Apartment LS Small', 2000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (261, 4, 2468.24, -1359.1, 29.312, 0, 0, 0, 0, 0, 243.72, 304.97, 999.14, 0, 1, 0, 0, 0, 'Ghetto Project Apartment LS Small', 2000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (262, 4, -2789.24, -52.58, 10.062, 0, 0, 0, 0, 0, 2196.84, -1204.23, 1049.02, 0, 6, 0, 0, 0, 'Normal Size House In SF', 85000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (263, 4, -2791.91, -41.819, 10.053, 0, 0, 0, 0, 0, 2196.84, -1204.23, 1049.02, 0, 6, 0, 0, 0, 'Normal Size Pink House In SF', 85000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (264, 4, 2483.95, -1280.35, 30.468, 0, 0, 0, 0, 0, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, 0, 'House Ghetto LS Small', 10000, 150, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (265, 4, 2482.75, -1293.35, 30.232, 0, 0, 0, 0, 0, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, 0, 'House Ghetto LS Small', 10000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (266, 4, -2791.83, -35.903, 7.859, 0, 0, 0, 0, 0, 2196.84, -1204.23, 1049.02, 0, 6, 0, 0, 0, 'Normal Size Blue House In SF', 85000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (267, 4, 2529.65, -1243.31, 43.971, 0, 0, 0, 0, 0, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, 0, 'House Ghetto LS Small', 10000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (268, 4, 2531.05, -1228.61, 43.721, 0, 0, 0, 0, 0, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, 0, 'House Ghetto LS Small', 10000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (269, 4, -2791.84, -24.284, 10.053, 0, 0, 0, 0, 0, 2196.84, -1204.23, 1049.02, 0, 6, 0, 0, 0, 'Normal Size Blue House In SF', 85000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (270, 4, 2551.05, -1233.79, 49.331, 0, 0, 0, 0, 0, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, 0, 'House Ghetto LS Small', 10000, 600, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (271, 4, -2791.59, -17.635, 7.859, 0, 0, 0, 0, 0, 2196.84, -1204.23, 1049.02, 0, 6, 0, 0, 0, 'Normal Size Green/Brick House In SF', 120000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (272, 4, 2514.62, -1240.45, 39.34, 0, 0, 0, 0, 0, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, 0, 'House Ghetto LS Small', 10000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (273, 4, 2516.52, -1225.75, 39.09, 0, 0, 0, 0, 0, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, 0, 'House Ghetto LS Small', 10000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (274, 4, -2786.76, 0.266, 10.062, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0, 'Appartment 2nd Floor In SF', 80000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (275, 4, -2790.48, 7.368, 7.195, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0, 'Appartment 1st Floor In SF', 80000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (276, 4, -2793.14, 11.194, 7.431, 0, 0, 0, 0, 0, 2196.84, -1204.23, 1049.02, 0, 6, 0, 0, 0, 'Light Pink/Brick House In SF', 120000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (277, 4, 2550.3, -1209.05, 54.54, 0, 0, 0, 0, 0, 328.13, 1477.9, 1084.43, 0, 15, 0, 0, 0, 'Medium House Ghetto LS', 12000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (278, 4, -2793.15, 21.315, 7.184, 0, 0, 0, 0, 0, 2196.84, -1204.23, 1049.02, 0, 6, 0, 0, 0, 'Green Normal Size House In SF', 120000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (279, 4, 2550.19, -1197.53, 60.84, 0, 0, 0, 0, 0, 328.13, 1477.9, 1084.43, 0, 15, 0, 0, 0, 'Medium House Ghetto LS', 12000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (280, 4, 2520.65, -1209.48, 50.291, 0, 0, 0, 0, 0, 328.13, 1477.9, 1084.43, 0, 15, 0, 0, 0, 'Medium House Ghetto LS', 12000, 5000, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (281, 4, 2520.61, -1198, 56.597, 0, 0, 0, 0, 0, 328.13, 1477.9, 1084.43, 0, 15, 0, 0, 0, 'Medium House Ghetto LS', 12000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (282, 4, -2787, 62.868, 10.062, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0, 'Appartment 2nd Floor In SF', 80000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (283, 4, -2790.53, 69.661, 7.201, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0, 'Appartment 1st Floor In SF', 80000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (284, 4, -2791.79, 77.584, 10.053, 0, 0, 0, 0, 0, 2196.84, -1204.23, 1049.02, 0, 6, 0, 0, 0, 'Normal Size Pink House In SF', 85000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (285, 4, 2601.05, -1200.15, 59.5, 0, 0, 0, 0, 0, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, 0, 'House Ghetto LS Small', 10000, 500, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (286, 4, 2601.05, -1203.08, 58.727, 0, 0, 0, 0, 0, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, 0, 'House Ghetto LS Small', 10000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (287, 4, 2601.05, -1207.58, 57.791, 0, 0, 0, 0, 0, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, 0, 'House Ghetto LS Small', 10000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (288, 4, -2792.85, 84.944, 7.622, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0, 'Normal Size Very Light Green House In SF', 55000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (289, 4, 2594.5, -1207.54, 57.651, 0, 0, 0, 0, 0, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, 0, 'House Ghetto LS Small', 10000, 500, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (290, 4, 2594.5, -1203, 58.576, 0, 0, 0, 0, 0, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, 0, 'House Ghetto LS Small', 10000, 500, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (291, 4, 2594.5, -1200.09, 59.354, 0, 0, 0, 0, 0, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, 0, 'House Ghetto LS Small', 10000, 500, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (292, 4, -2791.59, 92.177, 7.859, 0, 0, 0, 0, 0, 2196.84, -1204.23, 1049.02, 0, 6, 0, 0, 0, 'Normal Size Blue House In SF', 85000, 5000, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (293, 4, 2601.05, -1211.81, 56.659, 0, 0, 0, 0, 0, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, 0, 'House Ghetto LS Small', 10000, 500, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (294, 4, 2594.5, -1211.8, 56.513, 0, 0, 0, 0, 0, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, 0, 'House Ghetto LS Small', 10000, 500, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (295, 4, 2601.05, -1216.41, 55.269, 0, 0, 0, 0, 0, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, 0, 'House Ghetto LS Small', 10000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (296, 4, 2594.5, -1216.38, 55.111, 0, 0, 0, 0, 0, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, 0, 'House Ghetto LS Small', 10000, 500, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (297, 4, -2791.82, 103.598, 10.053, 0, 0, 0, 0, 0, 2196.84, -1204.23, 1049.02, 0, 6, 0, 0, 0, 'Normal Size House In SF', 85000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (298, 4, 2601.05, -1220.59, 53.916, 0, 0, 0, 0, 0, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, 0, 'House Ghetto LS Small', 10000, 120, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (299, 4, 2594.5, -1220.49, 53.763, 0, 0, 0, 0, 0, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, 0, 'House Ghetto LS Small', 10000, 449, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (300, 4, 2601.05, -1224.74, 52.625, 0, 0, 0, 0, 0, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, 0, 'House Ghetto LS Small', 10000, 500, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (301, 4, 2594.5, -1224.71, 52.477, 0, 0, 0, 0, 0, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, 0, 'House Ghetto LS Small', 10000, 500, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (302, 4, 2601.05, -1229.29, 51.34, 0, 0, 0, 0, 0, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, 0, 'House Ghetto LS Small', 10000, 500, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (303, 4, -2793.14, 110.986, 7.184, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0, 'Normal Size Light Green House In SF', 55000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (304, 4, 2594.5, -1229.26, 51.187, 0, 0, 0, 0, 0, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, 0, 'House Ghetto LS Small', 10000, 5000, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (305, 4, 2601.05, -1233.56, 50.111, 0, 0, 0, 0, 0, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, 0, 'House Ghetto LS Small', 10000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (306, 4, 2594.5, -1233.55, 49.962, 0, 0, 0, 0, 0, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, 0, 'House Ghetto LS Small', 10000, 5000, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (307, 4, 2601.05, -1238.12, 48.715, 0, 0, 0, 0, 0, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, 0, 'House Ghetto LS Small', 10000, 10, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (308, 4, 2594.5, -1238.05, 48.562, 0, 0, 0, 0, 0, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, 0, 'House Ghetto LS Small', 10000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (309, 4, -2786.98, 119.901, 10.062, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0, 'Appartment 2nd Floor In SF', 80000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (310, 4, 2608.15, -1200.07, 60.991, 0, 0, 0, 0, 0, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, 0, 'House Ghetto LS Small', 10000, 500, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (311, 4, 2615.11, -1200.1, 60.777, 0, 0, 0, 0, 0, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, 0, 'House Ghetto LS Small', 10000, 500, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (312, 4, -2790.59, 126.902, 7.201, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0, 'Appartment 1st Floor In SF', 80000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (313, 4, 2608.15, -1203, 60.215, 0, 0, 0, 0, 0, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, 0, 'House Ghetto LS Small', 10000, 500, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (314, 4, 2615.11, -1203.1, 60, 0, 0, 0, 0, 0, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, 0, 'House Ghetto LS Small', 10000, 500, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (315, 4, 2608.15, -1207.57, 59.283, 0, 0, 0, 0, 0, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, 0, 'House Ghetto LS Small', 10000, 90, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (316, 4, 2615.11, -1207.64, 59.069, 0, 0, 0, 0, 0, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, 0, 'House Ghetto LS Small', 10000, 500, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (317, 4, 2608.15, -1211.73, 58.147, 0, 0, 0, 0, 0, 222.93, 1287.08, 1082.14, 0, 1, 0, 0, 0, 'House Ghetto LS Small', 10000, 500, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (318, 4, 2615.11, -1211.84, 57.937, 0, 0, 0, 0, 0, 222.93, 1287.08, 1082.14, 0, 1, 0, 0, 0, 'House Ghetto LS Small', 10000, 500, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (319, 4, 2608.15, -1216.28, 56.761, 0, 0, 0, 0, 0, 222.93, 1287.08, 1082.14, 0, 1, 0, 0, 0, 'House Ghetto LS Small', 10000, 1000, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (320, 4, 2615.11, -1216.3, 56.539, 0, 0, 0, 0, 0, 222.93, 1287.08, 1082.14, 0, 1, 0, 0, 0, 'House Ghetto LS Small', 10000, 100, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (321, 4, 2608.15, -1220.51, 55.409, 0, 0, 0, 0, 0, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, 0, 'House Ghetto LS Small', 10000, 1000, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (322, 4, 2615.11, -1220.58, 55.187, 0, 0, 0, 0, 0, 222.93, 1287.08, 1082.14, 0, 1, 0, 0, 0, 'House Ghetto LS Small', 10000, 500, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (323, 4, 2608.15, -1224.64, 54.117, 0, 0, 0, 0, 0, 222.93, 1287.08, 1082.14, 0, 1, 0, 0, 0, 'House Ghetto LS Small', 10000, 500, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (324, 4, -2791.68, 130.617, 7.859, 0, 0, 0, 0, 0, 2196.84, -1204.23, 1049.02, 0, 6, 0, 0, 0, 'Normal Size Green/Brick House In SF', 120000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (325, 4, 2615.11, -1224.75, 53.896, 0, 0, 0, 0, 0, 222.93, 1287.08, 1082.14, 0, 1, 0, 0, 0, 'House Ghetto LS Small', 10000, 500, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (326, 4, 2608.15, -1229.19, 52.832, 0, 0, 0, 0, 0, 222.93, 1287.08, 1082.14, 0, 1, 0, 0, 0, 'House Ghetto LS Small', 10000, 500, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (327, 4, 2615.11, -1229.28, 52.609, 0, 0, 0, 0, 0, 222.93, 1287.08, 1082.14, 0, 1, 0, 0, 0, 'House Ghetto LS Small', 10000, 500, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (328, 4, 2608.15, -1233.42, 51.602, 0, 0, 0, 0, 0, 222.93, 1287.08, 1082.14, 0, 1, 0, 0, 0, 'House Ghetto LS Small', 10000, 5000, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (329, 4, 2615.11, -1233.57, 51.381, 0, 0, 0, 0, 0, 222.93, 1287.08, 1082.14, 0, 1, 0, 0, 0, 'House Ghetto LS Small', 10000, 500, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (330, 4, 2608.15, -1238.01, 50.205, 0, 0, 0, 0, 0, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, 0, 'House', 10000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (331, 4, 2615.11, -1238.09, 49.984, 0, 0, 0, 0, 0, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, 0, 'House Ghetto LS Small', 10000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (332, 4, -2791.81, 143.255, 10.053, 0, 0, 0, 0, 0, 2196.84, -1204.23, 1049.02, 0, 6, 0, 0, 0, 'Normal Size Pink House In SF', 85000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (333, 4, 2587.4, -1238.14, 48.562, 0, 0, 0, 0, 0, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, 0, 'House Ghetto LS Small', 10000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (334, 4, 2587.4, -1233.59, 49.962, 0, 0, 0, 0, 0, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, 0, 'House Ghetto LS Small', 10000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (335, 4, 2587.4, -1229.28, 51.187, 0, 0, 0, 0, 0, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, 0, 'House Ghetto LS Small', 10000, 500, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (336, 4, 2587.4, -1224.72, 52.477, 0, 0, 0, 0, 0, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, 0, 'House Ghetto LS Small', 10000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (337, 4, 2587.39, -1220.59, 53.763, 0, 0, 0, 0, 0, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, 0, 'House Ghetto LS Small', 10000, 500, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (338, 4, 2587.4, -1216.4, 55.111, 0, 0, 0, 0, 0, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, 0, 'House Ghetto LS Small', 10000, 500, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (339, 4, 2587.4, -1211.86, 56.513, 0, 0, 0, 0, 0, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, 0, 'House Ghetto LS Small', 10000, 1, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (340, 4, 2587.4, -1207.67, 57.651, 0, 0, 0, 0, 0, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, 0, 'House Ghetto LS Small', 10000, 400, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (341, 4, 2587.4, -1203.17, 58.576, 0, 0, 0, 0, 0, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, 0, 'House Ghetto LS Small', 10000, 500, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (342, 4, 2587.4, -1200.11, 59.354, 0, 0, 0, 0, 0, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, 0, 'House Ghetto LS Small', 10000, 500, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (343, 4, -2789.34, 183.695, 10.062, 0, 0, 0, 0, 0, 2196.84, -1204.23, 1049.02, 0, 6, 0, 0, 0, 'Normal Size House In SF', 85000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (344, 4, 2622.21, -1237.97, 51.268, 0, 0, 0, 0, 0, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, 0, 'House Ghetto LS Small', 10000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (345, 4, 2622.21, -1233.49, 52.665, 0, 0, 0, 0, 0, 222.93, 1287.08, 1082.14, 0, 1, 0, 0, 0, 'House Ghetto LS Small', 10000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (346, 4, 2622.21, -1229.17, 53.894, 0, 0, 0, 0, 0, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, 0, 'House Ghetto LS Small', 10000, 1, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (347, 4, 2622.21, -1224.62, 55.18, 0, 0, 0, 0, 0, 222.93, 1287.08, 1082.14, 0, 1, 0, 0, 0, 'House Ghetto LS Small', 10000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (348, 4, 2622.21, -1220.51, 56.472, 0, 0, 0, 0, 0, 222.93, 1287.08, 1082.14, 0, 1, 0, 0, 0, 'House Ghetto LS Small', 10000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (349, 4, 2622.22, -1216.29, 57.823, 0, 0, 0, 0, 0, 222.93, 1287.08, 1082.14, 0, 1, 0, 0, 0, 'House Ghetto LS Small', 10000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (350, 4, 2622.21, -1211.76, 59.209, 0, 0, 0, 0, 0, 222.93, 1287.08, 1082.14, 0, 1, 0, 0, 0, 'House Ghetto LS Small', 10000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (351, 4, -2791.81, 194.57, 10.053, 0, 0, 0, 0, 0, 2196.84, -1204.23, 1049.02, 0, 6, 0, 0, 0, 'Normal Size Pink House In SF', 85000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (352, 4, 2622.22, -1207.58, 60.346, 0, 0, 0, 0, 0, 222.93, 1287.08, 1082.14, 0, 1, 0, 0, 0, 'House Ghetto LS Small', 10000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (353, 4, 2622.22, -1203.05, 61.278, 0, 0, 0, 0, 0, 222.93, 1287.08, 1082.14, 0, 1, 0, 0, 0, 'House Ghetto LS Small', 10000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (354, 4, 2622.22, -1199.95, 62.054, 0, 0, 0, 0, 0, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, 0, 'House Ghetto LS Small', 10000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (355, 4, -2791.65, 200.578, 7.859, 0, 0, 0, 0, 0, 2196.84, -1204.23, 1049.02, 0, 6, 0, 0, 0, 'Normal Size Blue House In SF', 85000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (356, 4, -2791.81, 212, 10.053, 0, 0, 0, 0, 0, 2196.84, -1204.23, 1049.02, 0, 6, 0, 0, 0, 'Normal Size Blue House In SF', 85000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (357, 4, -2791.6, 218.567, 7.859, 0, 0, 0, 0, 0, 2196.84, -1204.23, 1049.02, 0, 6, 0, 0, 0, 'Normal Size Green/Brick House In SF', 120000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (358, 4, 2663.18, -1238.14, 55.673, 0, 0, 0, 0, 0, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, 0, 'House Ghetto LS Small', 10000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (359, 4, 2663.18, -1233.56, 57.069, 0, 0, 0, 0, 0, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, 0, 'House Ghetto LS Small', 10000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (360, 4, 2663.18, -1229.27, 58.298, 0, 0, 0, 0, 0, 222.93, 1287.08, 1082.14, 0, 1, 0, 0, 0, 'House Ghetto LS Small', 10000, 10, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (361, 4, 2663.18, -1224.83, 59.584, 0, 0, 0, 0, 0, 222.93, 1287.08, 1082.14, 0, 1, 0, 0, 0, 'House Ghetto LS Small', 10000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (362, 4, 2663.18, -1220.59, 60.874, 0, 0, 0, 0, 0, 222.93, 1287.08, 1082.14, 0, 1, 0, 0, 0, 'House Ghetto LS Small', 10000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (363, 4, 2663.18, -1216.33, 62.222, 0, 0, 0, 0, 0, 222.93, 1287.08, 1082.14, 0, 1, 0, 0, 0, 'House Ghetto LS Small', 10000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (364, 4, 2663.18, -1211.8, 63.623, 0, 0, 0, 0, 0, 222.93, 1287.08, 1082.14, 0, 1, 0, 0, 0, 'House Ghetto LS Small', 10000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (365, 4, 2663.18, -1207.64, 64.76, 0, 0, 0, 0, 0, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, 0, 'House Ghetto LS Small', 10000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (366, 4, 2663.18, -1203.19, 65.682, 0, 0, 0, 0, 0, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, 0, 'House Ghetto LS Small', 10000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (367, 4, 2663.18, -1200.14, 66.467, 0, 0, 0, 0, 0, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, 0, 'House Ghetto LS Small', 10000, 1000, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (368, 4, 2670.28, -1200.04, 66.496, 0, 0, 0, 0, 0, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, 0, 'House Ghetto LS Small', 10000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (369, 4, 2670.28, -1203.03, 65.727, 0, 0, 0, 0, 0, 222.93, 1287.08, 1082.14, 0, 1, 0, 0, 0, 'House Ghetto LS Small', 10000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (370, 4, 2670.28, -1207.56, 64.804, 0, 0, 0, 0, 0, 222.93, 1287.08, 1082.14, 0, 1, 0, 0, 0, 'House Ghetto LS Small', 10000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (371, 4, 2670.28, -1211.74, 63.666, 0, 0, 0, 0, 0, 222.93, 1287.08, 1082.14, 0, 1, 0, 0, 0, 'House Ghetto LS Small', 10000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (372, 4, 2670.28, -1216.36, 62.262, 0, 0, 0, 0, 0, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, 0, 'House Ghetto LS Small', 10000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (373, 4, 2670.28, -1220.46, 60.923, 0, 0, 0, 0, 0, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, 0, 'House Ghetto LS Small', 10000, 100, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (374, 4, 2670.28, -1224.74, 59.629, 0, 0, 0, 0, 0, 222.93, 1287.08, 1082.14, 0, 1, 0, 0, 0, 'House Ghetto LS Small', 10000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (375, 4, 2670.28, -1229.17, 58.36, 0, 0, 0, 0, 0, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, 0, 'House Ghetto LS Small', 10000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (376, 4, 2670.28, -1233.48, 57.123, 0, 0, 0, 0, 0, 222.93, 1287.08, 1082.14, 0, 1, 0, 0, 0, 'House Ghetto LS Small', 10000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (377, 4, 2670.28, -1238.05, 55.728, 0, 0, 0, 0, 0, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, 0, 'House Ghetto LS Small', 10000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (378, 4, 2683.44, -1238.05, 56.019, 0, 0, 0, 0, 0, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, 0, 'House Ghetto LS Small', 10000, 5000, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (379, 4, 2683.44, -1233.54, 57.416, 0, 0, 0, 0, 0, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, 0, 'House Ghetto LS Small', 10000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (380, 4, 2683.44, -1229.32, 58.645, 0, 0, 0, 0, 0, 222.93, 1287.08, 1082.14, 0, 1, 0, 0, 0, 'House Ghetto LS Small', 10000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (381, 4, 2683.44, -1224.74, 59.93, 0, 0, 0, 0, 0, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, 0, 'House Ghetto LS Small', 10000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (382, 4, 2683.44, -1220.6, 61.222, 0, 0, 0, 0, 0, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, 0, 'House Ghetto LS Small', 10000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (383, 4, 2683.44, -1216.35, 62.574, 0, 0, 0, 0, 0, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, 0, 'House Ghetto LS Small', 10000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (384, 4, 2683.44, -1211.88, 63.963, 0, 0, 0, 0, 0, 222.93, 1287.08, 1082.14, 0, 1, 0, 0, 0, 'House Ghetto LS Small', 10000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (385, 4, 2683.44, -1207.64, 65.097, 0, 0, 0, 0, 0, 222.93, 1287.08, 1082.14, 0, 1, 0, 0, 0, 'House Ghetto LS Small', 10000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (386, 4, 2683.44, -1203.14, 66.029, 0, 0, 0, 0, 0, 222.93, 1287.08, 1082.14, 0, 1, 0, 0, 0, 'House Ghetto LS Small', 10000, 500, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (387, 4, 2683.44, -1200.19, 66.805, 0, 0, 0, 0, 0, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, 0, 'House Ghetto LS Small', 10000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (388, 4, 2690.54, -1200.05, 68.293, 0, 0, 0, 0, 0, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, 0, 'House Ghetto LS Small', 10000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (389, 4, 2700.21, -1200.19, 68.97, 0, 0, 0, 0, 0, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, 0, 'House Ghetto LS Small', 10000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (390, 4, 2690.54, -1202.95, 67.522, 0, 0, 0, 0, 0, 222.93, 1287.08, 1082.14, 0, 1, 0, 0, 0, 'House Ghetto LS Small', 10000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (391, 4, 2700.21, -1203.11, 68.194, 0, 0, 0, 0, 0, 222.93, 1287.08, 1082.14, 0, 1, 0, 0, 0, 'House Ghetto LS Small', 10000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (392, 4, 2690.54, -1207.56, 66.585, 0, 0, 0, 0, 0, 222.93, 1287.08, 1082.14, 0, 1, 0, 0, 0, 'House Ghetto LS Small', 10000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (393, 4, 2700.2, -1207.66, 67.261, 0, 0, 0, 0, 0, 222.93, 1287.08, 1082.14, 0, 1, 0, 0, 0, 'House Ghetto LS Small', 10000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (394, 4, 2700.2, -1211.84, 66.125, 0, 0, 0, 0, 0, 222.93, 1287.08, 1082.14, 0, 1, 0, 0, 0, 'House Ghetto LS Small', 10000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (395, 4, 2690.54, -1211.79, 65.454, 0, 0, 0, 0, 0, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, 0, 'House Ghetto LS Small', 10000, 5000, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (396, 4, 2700.2, -1216.36, 64.736, 0, 0, 0, 0, 0, 222.93, 1287.08, 1082.14, 0, 1, 0, 0, 0, 'House Ghetto LS Small', 10000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (397, 4, 2690.54, -1216.25, 64.065, 0, 0, 0, 0, 0, 222.93, 1287.08, 1082.14, 0, 1, 0, 0, 0, 'House Ghetto LS Small', 10000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (398, 4, 2700.21, -1220.59, 63.388, 0, 0, 0, 0, 0, 222.93, 1287.08, 1082.14, 0, 1, 0, 0, 0, 'House Ghetto LS Small', 10000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (399, 4, -2724.67, -191.322, 4.335, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0, 'Appartment 1st Floor In SF', 80000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (400, 4, 2690.54, -1220.48, 62.715, 0, 0, 0, 0, 0, 222.93, 1287.08, 1082.14, 0, 1, 0, 0, 0, 'House Ghetto LS Small', 10000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (401, 4, 2700.2, -1224.74, 62.095, 0, 0, 0, 0, 0, 222.93, 1287.08, 1082.14, 0, 1, 0, 0, 0, 'House Ghetto LS Small', 10000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (402, 4, 2690.55, -1224.79, 61.423, 0, 0, 0, 0, 0, 222.93, 1287.08, 1082.14, 0, 1, 0, 0, 0, 'House Ghetto LS Small', 10000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (403, 4, 2700.21, -1229.31, 60.81, 0, 0, 0, 0, 0, 222.93, 1287.08, 1082.14, 0, 1, 0, 0, 0, 'House Ghetto LS Small', 10000, 500, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (404, 4, 2690.54, -1229.15, 60.136, 0, 0, 0, 0, 0, 222.93, 1287.08, 1082.14, 0, 1, 0, 0, 0, 'House Ghetto LS Small', 10000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (405, 4, -2728.16, -184.179, 7.203, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0, 'Appartment In SF 2nd Floor', 80000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (406, 4, 2700.21, -1233.57, 59.581, 0, 0, 0, 0, 0, 222.93, 1287.08, 1082.14, 0, 1, 0, 0, 0, 'House Ghetto LS Small', 10000, 5000, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (407, 4, 2690.54, -1233.41, 58.907, 0, 0, 0, 0, 0, 222.93, 1287.08, 1082.14, 0, 1, 0, 0, 0, 'House Ghetto LS Small', 10000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (408, 4, 2700.2, -1238.05, 58.18, 0, 0, 0, 0, 0, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, 0, 'House Ghetto LS Small', 10000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (409, 4, 2690.54, -1238.06, 57.506, 0, 0, 0, 0, 0, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, 0, 'House Ghetto LS Small', 10000, 1, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (410, 4, -2723.15, -179.074, 7.203, 0, 0, 0, 0, 0, 2196.84, -1204.23, 1049.02, 0, 6, 0, 0, 0, 'Normal Size Pink House In SF', 85000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (411, 4, 2707.3, -1237.91, 59.673, 0, 0, 0, 0, 0, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, 0, 'House Ghetto LS Small', 10000, 1, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (412, 4, 2707.31, -1233.54, 61.069, 0, 0, 0, 0, 0, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, 0, 'House Ghetto LS Small', 10000, 500, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (413, 4, 2707.3, -1229.25, 62.298, 0, 0, 0, 0, 0, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, 0, 'House Ghetto LS Small', 10000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (414, 4, 2707.31, -1224.67, 63.583, 0, 0, 0, 0, 0, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, 0, 'House Ghetto LS Small', 10000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (415, 4, 2707.3, -1220.59, 64.877, 0, 0, 0, 0, 0, 222.93, 1287.08, 1082.14, 0, 1, 0, 0, 0, 'House Ghetto LS Small', 10000, 500, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (416, 4, 2707.3, -1216.32, 66.225, 0, 0, 0, 0, 0, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, 0, 'House Ghetto LS Small', 10000, 5000, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (417, 4, 2707.3, -1211.75, 67.614, 0, 0, 0, 0, 0, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, 0, 'House Ghetto LS Small', 10000, 1000, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (418, 4, -2723.32, -166.457, 5, 0, 0, 0, 0, 0, 2196.84, -1204.23, 1049.02, 0, 6, 0, 0, 0, 'Normal Size Green/Brick House In SF', 120000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (419, 4, 2707.31, -1207.58, 68.75, 0, 0, 0, 0, 0, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, 0, 'House Ghetto LS Small', 10000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (420, 4, 2707.31, -1203.04, 69.681, 0, 0, 0, 0, 0, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, 0, 'House Ghetto LS Small', 10000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (421, 4, 2707.31, -1200.06, 70.458, 0, 0, 0, 0, 0, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, 0, 'House Ghetto LS Small', 10000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (422, 4, -2724.67, -162.744, 4.342, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0, 'Appartment 1st Floor In SF', 80000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (423, 4, -2728.16, -155.699, 7.203, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0, 'Appartment 2nd Floor In SF', 80000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (424, 4, -2721.77, -146.755, 4.335, 0, 0, 0, 0, 0, 2196.84, -1204.23, 1049.02, 0, 6, 0, 0, 0, 'Normal Size Green House In SF', 85000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (425, 4, -2723.03, -139.395, 7.203, 0, 0, 0, 0, 0, 2196.84, -1204.23, 1049.02, 0, 6, 0, 0, 0, 'Normal Size House In SF', 85000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (426, 4, -2723.33, -127.869, 5, 0, 0, 0, 0, 0, 2196.84, -1204.23, 1049.02, 0, 6, 0, 0, 0, 'Normal Size Blue House In SF', 85000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (427, 4, 2781.94, -1358.42, 26.37, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0, 'Apartment LS Medium', 25000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (428, 4, -2722.05, -120.75, 4.76, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0, 'Normal Size Very Light Green House In SF', 55000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (429, 4, 2781.94, -1333.42, 32.395, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0, 'Apartment LS Medium', 25000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (430, 4, 2782.15, -1306.33, 38.886, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0, 'Apartment LS Medium', 25000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (431, 4, 2782.15, -1281.21, 44.368, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0, 'Apartment LS Medium', 25000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (432, 4, 2809.53, -1324.86, 33.868, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0, 'Apartment LS Medium', 25000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (433, 4, 2809.53, -1302.93, 38.928, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0, 'Apartment LS Medium', 25000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (434, 4, 2809.53, -1281.04, 43.9, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0, 'Apartment LS Medium', 25000, 1, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (435, 4, -2723.02, -113.389, 7.203, 0, 0, 0, 0, 0, 2196.84, -1204.23, 1049.02, 0, 6, 0, 0, 0, 'Normal Size Pink House In SF', 85000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (436, 4, 2807.98, -1353.99, 27.218, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0, 'Apartment LS Medium', 25000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (437, 4, 2807.98, -1369.6, 23.582, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0, 'Apartment LS Medium', 25000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (438, 4, -2724.65, -105.619, 4.342, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0, 'Appartment 1st Floor In SF', 80000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (439, 4, -2728.17, -98.413, 7.203, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0, 'Appartment 2nd Floor In SF', 80000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (440, 4, 2846.99, -1309.7, 14.704, 0, 0, 0, 0, 0, 261.058, 1284.29, 1080.25, 0, 4, 0, 0, 0, 'Ls House Near Beach Medium', 30000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (441, 4, -2725.75, -92.375, 7.203, 0, 0, 0, 0, 0, 2196.84, -1204.23, 1049.02, 0, 6, 0, 0, 0, 'Normal Size House In SF', 85000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (442, 4, -2724.7, -58.02, 4.342, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0, 'Appartment 1st Floor In SF', 80000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (443, 4, -2728.19, -51.062, 7.203, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0, 'Appartment 2nd Floor In SF', 80000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (444, 4, 2851.85, -1365.97, 14.17, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0, 'Apartment Near the beach LS big', 25000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (445, 4, -2722.11, -44.712, 4.769, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0, 'Normal Size Very Light Green House In SF', 55000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (446, 4, -2725.64, -36.597, 7.195, 0, 0, 0, 0, 0, 2196.84, -1204.23, 1049.02, 0, 6, 0, 0, 0, 'Normal Size House In SF', 85000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (447, 4, -2721.8, -23.27, 4.57, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0, 'Normal Size Pink/Brick House In SF', 55000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (448, 4, 2808.05, -1190.89, 25.34, 0, 0, 0, 0, 0, 225.755, 1240, 1082.15, 0, 2, 0, 0, 0, 'LS Apartment Near Beach Medium', 40000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (449, 4, 2808.01, -1175.92, 25.381, 0, 0, 0, 0, 0, 225.755, 1240, 1082.15, 0, 2, 0, 0, 0, 'LS Apartment Near Beach Medium', 40000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (450, 4, -2723.17, -17.311, 7.203, 0, 0, 0, 0, 0, 2196.84, -1204.23, 1049.02, 0, 6, 0, 0, 0, 'Normal Size Pink House In SF', 85000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (451, 4, -2723.05, 4.473, 7.203, 0, 0, 0, 0, 0, 2196.84, -1204.23, 1049.02, 0, 6, 0, 0, 0, 'Normal Size House In SF', 85000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (452, 4, -2722.1, 14.479, 4.768, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0, 'Normal Size Very Light Green House In SF', 55000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (453, 4, 2842.19, -1334.78, 14.741, 0, 0, 0, 0, 0, 225.755, 1240, 1082.15, 0, 2, 0, 0, 0, 'LS Apartment Near Beach Medium', 40000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (454, 4, -2723.12, 21.927, 7.203, 0, 0, 0, 0, 0, 2196.84, -1204.23, 1049.02, 0, 6, 0, 0, 0, 'Normal Size Pink House In SF', 85000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (455, 4, -2686.82, -188.194, 7.203, 0, 0, 0, 0, 0, 2196.84, -1204.23, 1049.02, 0, 6, 0, 0, 0, 'Normal Size House In SF', 85000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (456, 4, -2684.41, -182.154, 7.203, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0, 'Appartment 2nd Floor In SF', 80000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (457, 4, -2687.89, -175.078, 4.342, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0, 'Appartment 1st Floor In SF', 80000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (458, 4, -2689.4, -167.302, 7.203, 0, 0, 0, 0, 0, 2196.84, -1204.23, 1049.02, 0, 6, 0, 0, 0, 'Normal Size Pink House In SF', 85000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (459, 4, -2690.5, -159.764, 4.764, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0, 'Normal Size Light Green House In SF', 55000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (460, 4, 2755.71, -1400.45, 39.375, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0, 'Apartment Near the beach LS big', 25000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (461, 4, -2689.24, -152.916, 5, 0, 0, 0, 0, 0, 2196.84, -1204.23, 1049.02, 0, 6, 0, 0, 0, 'Normal Size Blue House In SF', 85000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (462, 4, -2689.38, -141.274, 7.203, 0, 0, 0, 0, 0, 2196.84, -1204.23, 1049.02, 0, 6, 0, 0, 0, 'Normal Size House In SF', 85000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (463, 4, 2756.29, -1302.54, 53.09, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0, 'Apartment Near the beach LS big', 25000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (464, 4, 2755.85, -1276.47, 56.59, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0, 'Apartment Near the beach LS big', 25000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (465, 4, -2690.79, -134.054, 4.335, 0, 0, 0, 0, 0, 2196.84, -1204.23, 1049.02, 0, 6, 0, 0, 0, 'Normal Size Green House In SF', 85000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (466, 4, -2684.42, -125.068, 7.203, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0, 'Appartment 2nd Floor In SF', 80000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (467, 4, -2687.9, -118.16, 4.342, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0, 'Appartment 1st Floor In SF', 80000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (468, 4, 2776.06, -1245.37, 49.576, 0, 0, 0, 0, 0, 225.755, 1240, 1082.15, 0, 2, 0, 0, 0, 'LS Apartment Near Beach Medium', 40000, 1000, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (469, 4, 2797.81, -1245.37, 47.381, 0, 0, 0, 0, 0, 225.755, 1240, 1082.15, 0, 2, 0, 0, 0, 'LS Apartment Near Beach Medium', 40000, 500, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (470, 4, -2689.25, -114.135, 5, 0, 0, 0, 0, 0, 2196.84, -1204.23, 1049.02, 0, 6, 0, 0, 0, 'Normal Size Green/Brick House In SF', 120000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (471, 4, -2689.35, -101.62, 7.203, 0, 0, 0, 0, 0, 2196.84, -1204.23, 1049.02, 0, 6, 0, 0, 0, 'Normal Size Pink House In SF', 85000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (472, 4, -2684.55, -96.443, 7.203, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0, 'Appartment 2nd Floor In SF', 80000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (473, 4, -2688.06, -89.444, 4.335, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0, 'Appartment 1st Floor In SF', 80000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (474, 4, 2750.39, -1238.8, 61.52, 0, 0, 0, 0, 0, 225.755, 1240, 1082.15, 0, 2, 0, 0, 0, 'LS Apartment Near Beach Medium', 40000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (475, 4, 2750.39, -1222.23, 64.597, 0, 0, 0, 0, 0, 225.755, 1240, 1082.15, 0, 2, 0, 0, 0, 'LS Apartment Near Beach Medium', 40000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (476, 4, 2750.39, -1205.76, 67.484, 0, 0, 0, 0, 0, 225.755, 1240, 1082.15, 0, 2, 0, 0, 0, 'LS Apartment Near Beach Medium', 40000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (477, 4, 2756.27, -1182.81, 69.402, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0, 'Apartment Near the beach LS big', 25000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (478, 4, -2689.38, 57.087, 7.203, 0, 0, 0, 0, 0, 2196.84, -1204.23, 1049.02, 0, 6, 0, 0, 0, 'Normal Size Pink House In SF', 85000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (479, 4, -2690.49, 64.591, 4.762, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0, 'Normal Size Light Green House In SF', 55000, 1, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (480, 4, -2689.49, 74.558, 7.203, 0, 0, 0, 0, 0, 2196.84, -1204.23, 1049.02, 0, 6, 0, 0, 0, 'Normal Size House In SF', 85000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (481, 4, 2628.09, -1067.86, 69.708, 0, 0, 0, 0, 0, 243.72, 304.97, 999.14, 0, 1, 0, 0, 0, 'Ghetto Project Apartment LS Small', 2000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (482, 4, 2627.64, -1085.13, 69.708, 0, 0, 0, 0, 0, 243.72, 304.97, 999.14, 0, 1, 0, 0, 0, 'Ghetto Project Apartment LS Small', 2000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (483, 4, -2689.33, 96.305, 7.203, 0, 0, 0, 0, 0, 2196.84, -1204.23, 1049.02, 0, 6, 0, 0, 0, 'Normal Size Pink House In SF', 85000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (484, 4, 2625.93, -1098.64, 69.361, 0, 0, 0, 0, 0, 243.72, 304.97, 999.14, 0, 1, 0, 0, 0, 'Ghetto Project Apartment LS Small', 2000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (485, 4, 2625.94, -1112.61, 67.995, 0, 0, 0, 0, 0, 243.72, 304.97, 999.14, 0, 1, 0, 0, 0, 'Ghetto Project Apartment LS Small', 2000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (486, 4, -2690.78, 102.291, 4.566, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0, 'Normal Size Pink/Brick House In SF', 55000, 1500, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (487, 4, 2611.24, -1111.19, 68.245, 0, 0, 0, 0, 0, 243.72, 304.97, 999.14, 0, 1, 0, 0, 0, 'Ghetto Project Apartment LS Small', 2000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (488, 4, 2611.23, -1097.24, 69.6, 0, 0, 0, 0, 0, 243.72, 304.97, 999.14, 0, 1, 0, 0, 0, 'Ghetto Project Apartment LS Small', 2000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (489, 4, 2612.94, -1083.18, 69.958, 0, 0, 0, 0, 0, 243.72, 304.97, 999.14, 0, 1, 0, 0, 0, 'Ghetto Project Apartment LS Small', 2000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (490, 4, -2687.1, 115.56, 7.195, 0, 0, 0, 0, 0, 2196.84, -1204.23, 1049.02, 0, 6, 0, 0, 0, 'Normal Size House In SF', 85000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (491, 4, 2613.39, -1065.9, 69.958, 0, 0, 0, 0, 0, 243.72, 304.97, 999.14, 0, 1, 0, 0, 0, 'Ghetto Project Apartment LS Small', 2000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (492, 4, 2618.94, -1118.48, 67.995, 0, 0, 0, 0, 0, 243.72, 304.97, 999.14, 0, 1, 0, 0, 0, 'Ghetto Project Apartment LS Small', 2000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (493, 4, -2690.51, 123.597, 4.751, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0, 'Normal Size Very Light Green House In SF', 55000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (494, 4, -2684.4, 129.992, 7.203, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0, 'Appartment 2nd Floor In SF', 80000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (495, 4, -2687.88, 137.029, 4.342, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0, 'Appartment 1st Floor In SF', 80000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (496, 4, 2572.3, -1091.85, 67.222, 0, 0, 0, 0, 0, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, 0, 'House Ghetto LS Small', 10000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (497, 4, 2519.02, -1112.99, 56.59, 0, 0, 0, 0, 0, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, 0, 'House Ghetto LS Small', 10000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (498, 4, 2576.68, -1070.67, 69.832, 0, 0, 0, 0, 0, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, 0, 'House Ghetto LS Small', 10000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (499, 4, 2579.61, -1033.2, 69.579, 0, 0, 0, 0, 0, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, 0, 'House Ghetto LS Small', 10000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (500, 4, 2562.11, -1034.28, 69.869, 0, 0, 0, 0, 0, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, 0, 'House Ghetto LS Small', 10000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (501, 4, -2692.95, 189.447, 7.203, 0, 0, 0, 0, 0, 2196.84, -1204.23, 1049.02, 0, 6, 0, 0, 0, 'Normal Size House In SF', 85000, 5000, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (502, 4, 2549.2, -1032.15, 69.578, 0, 0, 0, 0, 0, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, 0, 'House Ghetto LS Small', 10000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (503, 4, -2358.3, 820.033, 38.535, 0, 0, 0, 0, 0, 2196.84, -1204.23, 1049.02, 0, 6, 0, 0, 0, '3 Story Condo In SF', 120000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (504, 4, -2340.18, 819.85, 41.972, 0, 0, 0, 0, 0, 2196.84, -1204.23, 1049.02, 0, 6, 0, 0, 0, '3 Story Condo In SF', 120000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (505, 4, -2321.9, 820, 45.34, 0, 0, 0, 0, 0, 2196.84, -1204.23, 1049.02, 0, 6, 0, 0, 0, '3 Story Condo In SF', 120000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (506, 4, -2303.4, 819.973, 48.696, 0, 0, 0, 0, 0, 2196.84, -1204.23, 1049.02, 0, 6, 0, 0, 0, '3 Story Condo In SF', 120000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (507, 4, -2282.42, 873.144, 66.917, 0, 0, 0, 0, 0, 2196.84, -1204.23, 1049.02, 0, 6, 0, 0, 0, '3 Story Condo In SF', 120000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (508, 4, -2285.08, 849.128, 65.641, 0, 0, 0, 0, 0, 2196.84, -1204.23, 1049.02, 0, 6, 0, 0, 0, '3 Story Condo In SF', 120000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (509, 4, -2285.3, 828.923, 57.17, 0, 0, 0, 0, 0, 2196.84, -1204.23, 1049.02, 0, 6, 0, 0, 0, '3 Story Condo In SF', 120000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (510, 4, -2294.99, 969.981, 65.335, 0, 0, 0, 0, 0, 2196.84, -1204.23, 1049.02, 0, 6, 0, 0, 0, '3 Story Condo In SF', 120000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (511, 4, -2307.55, 944.257, 61.608, 0, 0, 0, 0, 0, 2196.84, -1204.23, 1049.02, 0, 6, 0, 0, 0, '3 Story Condo In SF', 120000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (512, 4, -2325.89, 944.261, 55.32, 0, 0, 0, 0, 0, 2196.84, -1204.23, 1049.02, 0, 6, 0, 0, 0, '3 Story Condo In SF', 120000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (513, 4, -2238.8, 943.844, 66.652, 0, 0, 0, 0, 0, 226.3, 1114.37, 1080.99, 0, 5, 0, 0, 0, '5 Story Condo In SF', 500000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (514, 4, -2238.89, 962.11, 66.652, 0, 0, 0, 0, 0, 226.3, 1114.37, 1080.99, 0, 5, 0, 0, 0, '5 Story Condo In SF', 500000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (515, 4, -2238.82, 980.749, 71.515, 0, 0, 0, 0, 0, 226.3, 1114.37, 1080.99, 0, 5, 0, 0, 0, '5 Story Condo In SF', 500000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (516, 4, -2238.79, 998.812, 78.985, 0, 0, 0, 0, 0, 234.22, 1063.89, 358.5, 0, 6, 0, 0, 0, '4 Story Condo In SF', 400000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (517, 4, -2229.28, 934.381, 66.648, 0, 0, 0, 0, 0, 226.3, 1114.37, 1080.99, 0, 5, 0, 0, 0, '5 Story Condo In SF', 500000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (518, 4, -2210.94, 934.376, 68.97, 0, 0, 0, 0, 0, 226.3, 1114.37, 1080.99, 0, 5, 0, 0, 0, '5 Story Condo In SF', 500000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (519, 4, -2192.54, 934.385, 75.019, 0, 0, 0, 0, 0, 234.22, 1063.89, 358.5, 0, 6, 0, 0, 0, '4 Story Condo In SF', 400000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (520, 4, -2174.13, 934.362, 80, 0, 0, 0, 0, 0, 2196.84, -1204.23, 1049.02, 0, 6, 0, 0, 0, '3 Story Condo In SF', 120000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (521, 4, -2160.15, 947.014, 80, 0, 0, 0, 0, 0, 2196.84, -1204.23, 1049.02, 0, 6, 0, 0, 0, '3 Story Condo In SF', 120000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (522, 4, -2160.14, 965.316, 80, 0, 0, 0, 0, 0, 2196.84, -1204.23, 1049.02, 0, 6, 0, 0, 0, '3 Story Condo In SF', 120000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (523, 4, -2160.15, 983.754, 80, 0, 0, 0, 0, 0, 2196.84, -1204.23, 1049.02, 0, 6, 0, 0, 0, '3 Story Condo In SF', 120000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (524, 4, -2160.11, 1002.05, 80, 0, 0, 0, 0, 0, 2196.84, -1204.23, 1049.02, 0, 6, 0, 0, 0, '3 Story Condo In SF', 120000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (525, 4, 2440.48, -1057.34, 54.736, 0, 0, 0, 0, 0, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, 0, 'House Ghetto LS Small', 10000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (526, 4, -2233.82, 888.805, 66.652, 0, 0, 0, 0, 0, 226.3, 1114.37, 1080.99, 0, 5, 0, 0, 0, '5 Story Condo In SF', 500000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (527, 4, -2233.83, 870.579, 66.64, 0, 0, 0, 0, 0, 2196.84, -1204.23, 1049.02, 0, 6, 0, 0, 0, '3 Story Condo In SF', 120000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (528, 4, -2233.27, 848.861, 61.89, 0, 0, 0, 0, 0, 2196.84, -1204.23, 1049.02, 0, 6, 0, 0, 0, '3 Story Condo In SF', 120000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (529, 4, -2233.27, 830.702, 54.304, 0, 0, 0, 0, 0, 2196.84, -1204.23, 1049.02, 0, 6, 0, 0, 0, '3 Story Condo In SF', 120000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (530, 4, -2223.85, 821.132, 49.438, 0, 0, 0, 0, 0, 234.22, 1063.89, 358.5, 0, 6, 0, 0, 0, '4 Story Condo In SF', 400000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (531, 4, -2205.37, 821.131, 50.486, 0, 0, 0, 0, 0, 2196.84, -1204.23, 1049.02, 0, 6, 0, 0, 0, '3 Story Condo In SF', 120000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (532, 4, -2187.07, 821.128, 57.552, 0, 0, 0, 0, 0, 2196.84, -1204.23, 1049.02, 0, 6, 0, 0, 0, '3 Story Condo In SF', 120000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (533, 4, -2168.71, 821.129, 64.973, 0, 0, 0, 0, 0, 2196.84, -1204.23, 1049.02, 0, 6, 0, 0, 0, '3 Story Condo In SF', 120000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (534, 4, 646.057, -1117.35, 44.207, 0, 0, 0, 0, 0, 491.058, 1400.39, 1080.26, 0, 2, 0, 0, 0, 'Huge house at Vinewood LS', 450000, 1000, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (535, 4, -2159.21, 830.735, 69.523, 0, 0, 0, 0, 0, 2196.84, -1204.23, 1049.02, 0, 6, 0, 0, 0, '3 Story Condo In SF', 120000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (536, 4, 398.165, -1271.36, 50.019, 0, 0, 0, 0, 0, 491.058, 1400.39, 1080.26, 0, 2, 0, 0, 0, 'Huge house at Vinewood LS', 450000, 550, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (537, 4, -2159.22, 866.532, 75.353, 0, 0, 0, 0, 0, 2196.84, -1204.23, 1049.02, 0, 6, 0, 0, 0, '3 Story Condo In SF', 120000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (538, 4, -2158.67, 889.113, 80.007, 0, 0, 0, 0, 0, 2196.84, -1204.23, 1049.02, 0, 6, 0, 0, 0, '3 Story Condo In SF', 120000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (539, 4, -2174.37, 902.73, 80.007, 0, 0, 0, 0, 0, 2196.84, -1204.23, 1049.02, 0, 6, 0, 0, 0, '3 Story Condo In SF', 120000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (540, 4, 298.842, -1338.5, 53.441, 0, 0, 0, 0, 0, 491.058, 1400.39, 1080.26, 0, 2, 0, 0, 0, 'Mansion', 450000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (541, 4, -2192.49, 902.684, 75.037, 0, 0, 0, 0, 0, 234.22, 1063.89, 358.5, 0, 6, 0, 0, 0, '4 Story Condo In SF', 400000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (542, 4, 254.376, -1367.12, 53.109, 0, 0, 0, 0, 0, 491.058, 1400.39, 1080.26, 0, 2, 0, 0, 0, 'Mansion', 450000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (543, 4, -2211.06, 902.684, 68.93, 0, 0, 0, 0, 0, 226.3, 1114.37, 1080.99, 0, 5, 0, 0, 0, '5 Story Condo In SF', 500000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (544, 4, -2224.88, 902.673, 66.648, 0, 0, 0, 0, 0, 226.3, 1114.37, 1080.99, 0, 5, 0, 0, 0, '5 Story Condo In SF', 500000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (545, 4, -2282.4, 979.395, 70.891, 0, 0, 0, 0, 0, 234.22, 1063.89, 358.5, 0, 6, 0, 0, 0, '4 Story Condo In SF', 400000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (546, 4, -2282.14, 999.631, 79.304, 0, 0, 0, 0, 0, 234.22, 1063.89, 358.5, 0, 6, 0, 0, 0, '4 Story Condo In SF', 400000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (547, 4, -2282.39, 1023.13, 84.11, 0, 0, 0, 0, 0, 2196.84, -1204.23, 1049.02, 0, 6, 0, 0, 0, '3 Story Condo In SF', 120000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (548, 4, -2282.42, 1046.67, 84.12, 0, 0, 0, 0, 0, 2196.84, -1204.23, 1049.02, 0, 6, 0, 0, 0, '3 Story Condo In SF', 120000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (549, 4, -2282.4, 1070.26, 81.701, 0, 0, 0, 0, 0, 2196.84, -1204.23, 1049.02, 0, 6, 0, 0, 0, '3 Story Condo In SF', 120000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (550, 4, -2282.42, 1088.93, 80.405, 0, 0, 0, 0, 0, 2196.84, -1204.23, 1049.02, 0, 6, 0, 0, 0, '3 Story Condo In SF', 120000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (551, 4, -2280.84, 1112.55, 76.984, 0, 0, 0, 0, 0, 226.3, 1114.37, 1080.99, 0, 5, 0, 0, 0, '5 Story Condo In SF', 500000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (552, 4, -2280.83, 1130.83, 69.226, 0, 0, 0, 0, 0, 226.3, 1114.37, 1080.99, 0, 5, 0, 0, 0, '5 Story Condo In SF', 500000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (553, 4, 219.259, -1249.79, 78.333, 0, 0, 0, 0, 0, 226.3, 1114.37, 1080.99, 0, 5, 0, 0, 0, 'Huge house at Vinewood', 600000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (554, 4, -2280.83, 1149.17, 61.609, 0, 0, 0, 0, 0, 226.3, 1114.37, 1080.99, 0, 5, 0, 0, 0, '5 Story Condo In SF', 500000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (555, 4, -2358.98, 1118.09, 55.726, 0, 0, 0, 0, 0, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, 0, 'Very Small House In SF', 25000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (556, 4, -2369.4, 1122.32, 55.733, 0, 0, 0, 0, 0, 295.21, 1472.26, 1080.25, 0, 15, 0, 0, 0, 'Small Very Nice House In SF', 55000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (557, 4, 662.432, -1466.81, 14.85, 0, 0, 0, 0, 0, 225.755, 1240, 1082.15, 0, 2, 0, 0, 0, 'LS Apartment Near Beach Medium', 40000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (558, 4, 657.388, -1481.28, 14.85, 0, 0, 0, 0, 0, 225.755, 1240, 1082.15, 0, 2, 0, 0, 0, 'LS Apartment Near Beach Medium', 40000, 500, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (559, 4, 662.434, -1487.5, 14.85, 0, 0, 0, 0, 0, 225.755, 1240, 1082.15, 0, 2, 0, 0, 0, 'LS Apartment Near Beach Medium', 40000, 499, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (560, 4, 648.854, -1489.52, 14.84, 0, 0, 0, 0, 0, 225.755, 1240, 1082.15, 0, 2, 0, 0, 0, 'LS Apartment Near Beach Medium', 40000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (561, 4, 648.856, -1442.35, 14.729, 0, 0, 0, 0, 0, 225.755, 1240, 1082.15, 0, 2, 0, 0, 0, 'LS Apartment Near Beach Medium', 40000, 5000, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (562, 4, 657.348, -1434.11, 14.85, 0, 0, 0, 0, 0, 225.755, 1240, 1082.15, 0, 2, 0, 0, 0, 'LS Apartment Near Beach Medium', 40000, 500, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (563, 4, 662.432, -1440.42, 14.85, 0, 0, 0, 0, 0, 225.755, 1240, 1082.15, 0, 2, 0, 0, 0, 'LS Apartment Near Beach Medium', 40000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (564, 4, 685.53, -1421.91, 14.774, 0, 0, 0, 0, 0, 225.755, 1240, 1082.15, 0, 2, 0, 0, 0, 'LS Apartment Near Beach Medium', 40000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (565, 4, 739.085, -1418.51, 13.522, 0, 0, 0, 0, 0, 225.755, 1240, 1082.15, 0, 2, 0, 0, 0, 'LS Apartment Near Beach Medium', 40000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (566, 4, 738.976, -1428.77, 13.897, 0, 0, 0, 0, 0, 225.755, 1240, 1082.15, 0, 2, 0, 0, 0, 'LS Apartment Near Beach Medium', 40000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (567, 4, 725.603, -1440.45, 13.531, 0, 0, 0, 0, 0, 225.755, 1240, 1082.15, 0, 2, 0, 0, 0, 'LS Apartment Near Beach Medium', 40000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (568, 4, 662.434, -1514.03, 14.85, 0, 0, 0, 0, 0, 225.755, 1240, 1082.15, 0, 2, 0, 0, 0, 'LS Apartment Near Beach Medium', 40000, 500, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (569, 4, 657.434, -1528.46, 14.85, 0, 0, 0, 0, 0, 225.755, 1240, 1082.15, 0, 2, 0, 0, 0, 'LS Apartment Near Beach Medium', 40000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (570, 4, 662.431, -1534.8, 14.85, 0, 0, 0, 0, 0, 225.755, 1240, 1082.15, 0, 2, 0, 0, 0, 'LS Apartment Near Beach Medium', 40000, 3000, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (571, 4, 648.854, -1536.7, 14.932, 0, 0, 0, 0, 0, 225.755, 1240, 1082.15, 0, 2, 0, 0, 0, 'LS Apartment Near Beach Medium', 40000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (572, 4, 653.242, -1619.92, 15, 0, 0, 0, 0, 0, 225.755, 1240, 1082.15, 0, 2, 0, 0, 0, 'LS Apartment Near Beach Medium', 40000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (573, 4, 692.861, -1602.77, 15.045, 0, 0, 0, 0, 0, 225.755, 1240, 1082.15, 0, 2, 0, 0, 0, 'LS Apartment Near Beach Medium', 40000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (574, 4, 697.28, -1627, 3.749, 0, 0, 0, 0, 0, 225.755, 1240, 1082.15, 0, 2, 0, 0, 0, 'LS Apartment Near Beach Medium', 40000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (575, 4, 813.69, -1456.63, 14.222, 0, 0, 0, 0, 0, 225.755, 1240, 1082.15, 0, 2, 0, 0, 0, 'LS Apartment Near Beach Medium', 40000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (576, 4, -2383.75, 1128.1, 55.726, 0, 0, 0, 0, 0, 261.058, 1284.29, 1080.25, 0, 4, 0, 0, 0, 'Small House In SF', 30000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (577, 4, 822.382, -1505.51, 14.397, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0, 'Apartment Near the beach LS big', 25000, 100, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (578, 4, -2396.81, 1132.76, 55.733, 0, 0, 0, 0, 0, 22.93, 1403.32, 1084.43, 0, 5, 0, 0, 0, 'Small Nice House In SF', 60000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (579, 4, 849.591, -1519.96, 14.347, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0, 'Apartment Near the beach LS big', 25000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (580, 4, -2407.02, 1135.82, 55.726, 0, 0, 0, 0, 0, 261.06, 1284.29, 1080.25, 0, 4, 0, 0, 0, 'Small House In SF', 30000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (581, 4, 771.116, -1510.72, 13.545, 0, 0, 0, 0, 0, 225.755, 1240, 1082.15, 0, 2, 0, 0, 0, 'LS Apartment Near Beach Medium', 40000, 5000, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (582, 4, 761.065, -1564.08, 13.928, 0, 0, 0, 0, 0, 225.755, 1240, 1082.15, 0, 2, 0, 0, 0, 'LS Apartment Near Beach Medium', 40000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (583, 4, 841.335, -1471.36, 14.314, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0, 'LS Apartment Near Beach Medium', 25000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (584, 4, 782.789, -1464.49, 13.545, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0, 'Apartment Near the beach LS big', 25000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (585, 4, 824.5, -1424.2, 14.498, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0, 'Apartment Near the beach LS big', 25000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (586, 4, 852.195, -1423.27, 14.135, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0, 'Apartment Near the beach LS big', 25000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (587, 4, -2413.67, 1137.49, 55.726, 0, 0, 0, 0, 0, 261.06, 1284.29, 1080.25, 0, 4, 0, 0, 0, 'Small House In SF', 30000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (588, 4, 880.117, -1424.82, 14.484, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0, 'Apartment Near the beach LS big', 25000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (589, 4, -2424.02, 1139.41, 55.726, 0, 0, 0, 0, 0, 295.21, 1472.26, 1080.25, 0, 15, 0, 0, 0, 'Small Very Nice House In SF', 55000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (590, 4, 900.215, -1447.41, 14.369, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0, 'Apartment Near the beach LS big', 25000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (591, 4, 898.276, -1445.64, 14.364, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0, 'Apartment Near the beach LS big', 25000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (592, 4, -2438.17, 1141, 55.726, 0, 0, 0, 0, 0, 261.06, 1284.29, 1080.25, 0, 4, 0, 0, 0, 'Small House In SF', 30000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (593, 4, 900.197, -1471.03, 14.343, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0, 'Apartment Near the beach LS big', 25000, 4999, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (594, 4, 898.364, -1472.83, 14.34, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0, 'Apartment Near the beach LS big', 25000, 5000, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (595, 4, 852.513, -1436.23, 15.043, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0, 'Apartment Near the beach LS big', 25000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (596, 4, -2451.11, 1141.75, 55.733, 0, 0, 0, 0, 0, 295.21, 1472.26, 1080.25, 0, 15, 0, 0, 0, 'Small Very Nice House In SF', 55000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (597, 4, 784.395, -1436.11, 13.545, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0, 'Apartment Near the beach LS big', 25000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (598, 4, -2461.57, 1141.9, 55.726, 0, 0, 0, 0, 0, 261.06, 1284.29, 1080.25, 0, 4, 0, 0, 0, 'Small House In SF', 30000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (599, 4, 987.497, -1624.49, 14.928, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0, 'Apartment Near the beach LS big', 25000, 1, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (600, 4, -2468.52, 1141.91, 55.733, 0, 0, 0, 0, 0, 261.06, 1284.29, 1080.25, 0, 4, 0, 0, 0, 'Small House In SF', 30000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (601, 4, -2478.92, 1141.96, 55.726, 0, 0, 0, 0, 0, 22.93, 1403.32, 1084.43, 0, 5, 0, 0, 0, 'Small Nice House In SF', 60000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (602, 4, 987.52, -1704.34, 14.928, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0, 'Apartment Near the beach LS big', 25000, 1, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (603, 4, -2493.18, 1141.98, 55.726, 0, 0, 0, 0, 0, 261.06, 1284.29, 1080.25, 0, 4, 0, 0, 0, 'Small House In SF', 30000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (604, 4, -2506.44, 1142.08, 55.726, 0, 0, 0, 0, 0, 22.93, 1403.32, 1084.43, 0, 5, 0, 0, 0, 'Small Nice House In SF', 60000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (605, 4, -2517, 1142.41, 55.726, 0, 0, 0, 0, 0, 261.06, 1284.29, 1080.25, 0, 4, 0, 0, 0, 'Small House In SF', 30000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (606, 4, -2523.88, 1142.67, 55.726, 0, 0, 0, 0, 0, 261.06, 1284.29, 1080.25, 0, 4, 0, 0, 0, 'Small House In SF', 30000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (607, 4, -2534.53, 1143.77, 55.726, 0, 0, 0, 0, 0, 22.93, 1403.32, 1084.43, 0, 5, 0, 0, 0, 'Small Nice House In SF', 60000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (608, 4, -2549.06, 1145.72, 55.726, 0, 0, 0, 0, 0, 261.058, 1284.29, 1080.25, 0, 4, 0, 0, 0, 'Small House In SF', 30000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (609, 4, -2563.2, 1149.12, 55.726, 0, 0, 0, 0, 0, 22.93, 1403.32, 1084.43, 0, 5, 0, 0, 0, 'Small Nice House In SF', 60000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (610, 4, 675.143, -1430.51, 14.85, 0, 0, 0, 0, 0, 225.755, 1240, 1082.15, 0, 2, 0, 0, 0, 'LS Apartment Near Beach Medium', 40000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (611, 4, 683.403, -1435.48, 14.85, 0, 0, 0, 0, 0, 225.755, 1240, 1082.15, 0, 2, 0, 0, 0, 'LS Apartment Near Beach Medium', 40000, 1, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (612, 4, 725.687, -1451.04, 17.694, 0, 0, 0, 0, 0, 225.755, 1240, 1082.15, 0, 2, 0, 0, 0, 'LS Apartment Near Beach Medium', 40000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (613, 4, 877.973, -1514.64, 14.347, 0, 0, 0, 0, 0, 225.755, 1240, 1082.15, 0, 2, 0, 0, 0, 'LS Apartment Near Beach Medium', 40000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (614, 4, 876.205, -1512.7, 14.347, 0, 0, 0, 0, 0, 225.755, 1240, 1082.15, 0, 2, 0, 0, 0, 'LS Apartment Near Beach Medium', 40000, 300, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (615, 4, 901.705, -1514.66, 14.362, 0, 0, 0, 0, 0, 225.755, 1240, 1082.15, 0, 2, 0, 0, 0, 'LS Apartment Near Beach Medium', 40000, 500, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (616, 4, 903.4, -1512.85, 14.362, 0, 0, 0, 0, 0, 225.755, 1240, 1082.15, 0, 2, 0, 0, 0, 'LS Apartment Near Beach Medium', 40000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (617, 4, 797.236, -1729.38, 13.545, 0, 0, 0, 0, 0, 225.755, 1240, 1082.15, 0, 2, 0, 0, 0, 'LS Apartment Near Beach Medium', 40000, 2000, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (618, 4, -2711.23, 967.585, 54.458, 0, 0, 0, 0, 0, 447, 1397.09, 1084.3, 0, 2, 0, 0, 0, 'Medium Size House In SF', 120000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (619, 4, -2656.6, 985.815, 64.986, 0, 0, 0, 0, 0, 447, 1397.09, 1084.3, 0, 2, 0, 0, 0, 'Medium Size House In SF', 120000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (620, 4, -2584.18, 992.255, 78.273, 0, 0, 0, 0, 0, 22.93, 1403.32, 1084.43, 0, 5, 0, 0, 0, 'Small Nice House In SF', 60000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (621, 4, 791.385, -1753.22, 13.46, 0, 0, 0, 0, 0, 225.755, 1240, 1082.15, 0, 2, 0, 0, 0, 'LS Apartment Near Beach Medium', 40000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (622, 4, -2573.6, 992.257, 78.273, 0, 0, 0, 0, 0, 261.058, 1284.29, 1080.25, 0, 4, 0, 0, 0, 'Small House In SF', 30000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (623, 4, 893.638, -1635.7, 14.928, 0, 0, 0, 0, 0, 225.755, 1240, 1082.15, 0, 2, 0, 0, 0, 'LS Apartment Near Beach Medium', 40000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (624, 4, -2564.32, 992.255, 78.273, 0, 0, 0, 0, 0, 261.059, 1284.29, 1080.25, 0, 4, 0, 0, 0, 'Small House In SF', 30000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (625, 4, 846.723, -1717.4, 14.928, 0, 0, 0, 0, 0, 225.755, 1240, 1082.15, 0, 2, 0, 0, 0, 'LS Apartment Near Beach Medium', 40000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (626, 4, -2553.66, 992.255, 78.273, 0, 0, 0, 0, 0, 22.93, 1403.32, 1084.43, 0, 5, 0, 0, 0, 'Small Nice House In SF', 60000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (627, 4, 865.216, -1633.84, 14.928, 0, 0, 0, 0, 0, 225.755, 1240, 1082.15, 0, 2, 0, 0, 0, 'LS Apartment Near Beach Medium', 40000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (628, 4, -2543.56, 922.376, 67.093, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0, 'Appartment 2nd Floor In SF', 80000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (629, 4, -2545.33, 920.34, 64.976, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0, 'Appartment 1st Floor In SF', 80000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (630, 4, -2551.82, 920.377, 64.984, 0, 0, 0, 0, 0, 22.93, 1403.32, 1084.43, 0, 5, 0, 0, 0, 'Small Nice House In SF', 60000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (631, 4, -2562.42, 920.372, 64.984, 0, 0, 0, 0, 0, 261.058, 1284.29, 1080.25, 0, 4, 0, 0, 0, 'Small House In SF', 30000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (632, 4, -2569.98, 920.364, 64.984, 0, 0, 0, 0, 0, 261.059, 1284.29, 1080.25, 0, 4, 0, 0, 0, 'Small House In SF', 30000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (633, 4, -2580.92, 920.376, 64.984, 0, 0, 0, 0, 0, 22.93, 1403.32, 1084.43, 0, 5, 0, 0, 0, 'Small Nice House In SF', 60000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (634, 4, 1364.51, 1896.76, 11.468, 0, 0, 0, 0, 0, 447, 1397.09, 1084.3, 0, 2, 0, 0, 0, 'Medium house at LV', 150000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (635, 4, 1363.96, 1931.62, 11.468, 0, 0, 0, 0, 0, 447, 1397.09, 1084.3, 0, 2, 0, 0, 0, 'Medium house at LV', 150000, 5, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (636, 4, -2641.24, 935.718, 71.953, 0, 0, 0, 0, 0, 226.3, 1114.37, 1080.99, 0, 5, 0, 0, 0, '3 Floor House In SF', 600000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (637, 4, 1412.63, 1951.25, 11.453, 0, 0, 0, 0, 0, 447, 1397.09, 1084.3, 0, 2, 0, 0, 0, 'Medium house at LV', 150000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (638, 4, 1439.76, 1951.25, 11.46, 0, 0, 0, 0, 0, 447, 1397.09, 1084.3, 0, 2, 0, 0, 0, 'Medium house at LV', 150000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (639, 4, 1462.3, 1949.81, 11.468, 0, 0, 0, 0, 0, 447, 1397.09, 1084.3, 0, 2, 0, 0, 0, 'Medium house at LV', 150000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (640, 4, 1464.5, 1919.98, 11.46, 0, 0, 0, 0, 0, 447, 1397.09, 1084.3, 0, 2, 0, 0, 0, 'Medium house at LV', 150000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (641, 4, 1464.49, 1895.12, 11.46, 0, 0, 0, 0, 0, 447, 1397.09, 1084.3, 0, 2, 0, 0, 0, 'Medium house at LV', 150000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (642, 4, 1409.36, 1920.01, 11.468, 0, 0, 0, 0, 0, 447, 1397.09, 1084.3, 0, 2, 0, 0, 0, 'Medium house at LV', 150000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (643, 4, 1365.41, 1974.17, 11.46, 0, 0, 0, 0, 0, 447, 1397.09, 1084.3, 0, 2, 0, 0, 0, 'Medium house at LV', 150000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (644, 4, 1364.39, 2003.71, 11.46, 0, 0, 0, 0, 0, 447, 1397.09, 1084.3, 0, 2, 0, 0, 0, 'Medium house at LV', 150000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (645, 4, -2661.96, 876.338, 79.773, 0, 0, 0, 0, 0, 234.22, 1063.89, 1084.21, 0, 6, 0, 0, 0, 'Large House In SF', 470000, 2500, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (646, 4, 1422.26, 2026.93, 14.739, 0, 0, 0, 0, 0, 266.5, 304.99, 999.14, 0, 2, 0, 0, 0, 'small project lv', 30000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (647, 4, -2583.77, 896.254, 64.984, 0, 0, 0, 0, 0, 22.93, 1403.32, 1084.43, 0, 5, 0, 0, 0, 'Small Nice House In SF', 60000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (648, 4, 1414.7, 2026.87, 10.82, 0, 0, 0, 0, 0, 266.5, 304.99, 999.14, 0, 2, 0, 0, 0, 'small project lv', 30000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (649, 4, 1422.25, 2026.95, 10.82, 0, 0, 0, 0, 0, 266.5, 304.99, 999.14, 0, 2, 0, 0, 0, 'small project lv', 30000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (650, 4, 1414.7, 2033.17, 10.82, 0, 0, 0, 0, 0, 266.5, 304.99, 999.14, 0, 2, 0, 0, 0, 'small project lv', 30000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (651, 4, 1422.25, 2033.18, 10.82, 0, 0, 0, 0, 0, 266.5, 304.99, 999.14, 0, 2, 0, 0, 0, 'small project lv', 30000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (652, 4, 1414.7, 2033.13, 14.739, 0, 0, 0, 0, 0, 266.5, 304.99, 999.14, 0, 2, 0, 0, 0, 'small project lv', 30000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (653, 4, 1422.25, 2033.18, 14.739, 0, 0, 0, 0, 0, 266.5, 304.99, 999.14, 0, 2, 0, 0, 0, 'small project lv', 30000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (654, 4, 1414.7, 2026.97, 14.739, 0, 0, 0, 0, 0, 266.5, 304.99, 999.14, 0, 2, 0, 0, 0, 'small project lv', 30000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (655, 4, 1453.72, 2026.92, 10.819, 0, 0, 0, 0, 0, 266.5, 304.989, 999.14, 0, 2, 0, 0, 0, 'small project lv', 30000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (656, 4, 1461.28, 2026.95, 10.819, 0, 0, 0, 0, 0, 266.5, 304.989, 999.14, 0, 2, 0, 0, 0, 'small project lv', 30000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (657, 4, 1453.72, 2033.22, 10.82, 0, 0, 0, 0, 0, 266.5, 304.99, 999.14, 0, 2, 0, 0, 0, 'small project lv', 30000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (658, 4, 1461.28, 2033.19, 10.82, 0, 0, 0, 0, 0, 266.5, 304.99, 999.14, 0, 2, 0, 0, 0, 'small project lv', 30000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (659, 4, 1453.72, 2033.21, 14.739, 0, 0, 0, 0, 0, 266.5, 304.99, 999.14, 0, 2, 0, 0, 0, 'small project lv', 30000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (660, 4, 1461.28, 2033.11, 14.739, 0, 0, 0, 0, 0, 266.5, 304.99, 999.14, 0, 2, 0, 0, 0, 'small project lv', 30000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (661, 4, 1453.72, 2026.95, 14.739, 0, 0, 0, 0, 0, 266.5, 304.99, 999.14, 0, 2, 0, 0, 0, 'small project lv', 30000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (662, 4, 1461.28, 2026.91, 14.739, 0, 0, 0, 0, 0, 266.5, 304.99, 999.14, 0, 2, 0, 0, 0, 'small project lv', 30000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (663, 4, -2573.13, 896.265, 64.984, 0, 0, 0, 0, 0, 261.06, 1284.29, 1080.25, 0, 4, 0, 0, 0, 'Small House In SF', 30000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (664, 4, 1414.53, 2003.91, 10.82, 0, 0, 0, 0, 0, 266.5, 304.99, 999.14, 0, 2, 0, 0, 0, 'small project lv', 30000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (665, 4, 1414.48, 1996.36, 10.819, 0, 0, 0, 0, 0, 266.5, 304.989, 999.14, 0, 2, 0, 0, 0, 'small project lv', 30000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (666, 4, -2566.5, 896.647, 64.984, 0, 0, 0, 0, 0, 261.06, 1284.29, 1080.25, 0, 4, 0, 0, 0, 'Small House In SF', 30000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (667, 4, 1408.26, 2003.91, 10.82, 0, 0, 0, 0, 0, 266.5, 304.99, 999.14, 0, 2, 0, 0, 0, 'small project lv', 30000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (668, 4, 1408.18, 1996.36, 10.82, 0, 0, 0, 0, 0, 266.5, 304.99, 999.14, 0, 2, 0, 0, 0, 'small project lv', 30000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (669, 4, 1408.31, 1996.36, 14.739, 0, 0, 0, 0, 0, 266.5, 304.99, 999.14, 0, 2, 0, 0, 0, 'small project lv', 30000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (670, 4, 1408.35, 2003.91, 14.739, 0, 0, 0, 0, 0, 266.5, 304.99, 999.14, 0, 2, 0, 0, 0, 'small project lv', 30000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (671, 4, 1414.51, 1996.36, 14.739, 0, 0, 0, 0, 0, 266.5, 304.989, 999.14, 0, 2, 0, 0, 0, 'small project lv', 30000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (672, 4, 1414.52, 2003.91, 14.739, 0, 0, 0, 0, 0, 266.5, 304.989, 999.14, 0, 2, 0, 0, 0, 'small project lv', 30000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (673, 4, -2556.02, 896.643, 64.984, 0, 0, 0, 0, 0, 22.93, 1403.32, 1084.43, 0, 5, 0, 0, 0, 'Small Nice House In SF', 60000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (674, 4, 1495.69, 2026.97, 10.82, 0, 0, 0, 0, 0, 266.5, 304.99, 999.14, 0, 2, 0, 0, 0, 'small project lv', 30000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (675, 4, 1503.24, 2027.01, 10.82, 0, 0, 0, 0, 0, 266.5, 304.99, 999.14, 0, 2, 0, 0, 0, 'small project lv', 30000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (676, 4, 1495.69, 2033.25, 10.82, 0, 0, 0, 0, 0, 266.5, 304.99, 999.14, 0, 2, 0, 0, 0, 'small project lv', 30000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (677, 4, 1503.24, 2033.15, 10.82, 0, 0, 0, 0, 0, 266.5, 304.99, 999.14, 0, 2, 0, 0, 0, 'small project lv', 30000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (678, 4, 1495.69, 2033.16, 14.739, 0, 0, 0, 0, 0, 266.5, 304.99, 999.14, 0, 2, 0, 0, 0, 'small project lv', 30000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (679, 4, 1503.25, 2033.2, 14.739, 0, 0, 0, 0, 0, 266.5, 304.99, 999.14, 0, 2, 0, 0, 0, 'small project lv', 30000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (680, 4, 1495.69, 2027.01, 14.739, 0, 0, 0, 0, 0, 266.5, 304.99, 999.14, 0, 2, 0, 0, 0, 'small project lv', 30000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (681, 4, 1503.24, 2026.85, 14.739, 0, 0, 0, 0, 0, 266.5, 304.989, 999.14, 0, 2, 0, 0, 0, 'small project lv', 30000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (682, 4, 1534.72, 2026.98, 10.82, 0, 0, 0, 0, 0, 266.5, 304.99, 999.14, 0, 2, 0, 0, 0, 'small project lv', 30000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (683, 4, 1542.26, 2026.88, 10.82, 0, 0, 0, 0, 0, 266.5, 304.99, 999.14, 0, 2, 0, 0, 0, 'small project lv', 30000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (684, 4, 1534.72, 2033.18, 10.82, 0, 0, 0, 0, 0, 266.5, 304.99, 999.14, 0, 2, 0, 0, 0, 'small project lv', 30000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (685, 4, 1542.27, 2033.22, 10.82, 0, 0, 0, 0, 0, 266.5, 304.99, 999.14, 0, 2, 0, 0, 0, 'small project lv', 30000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (686, 4, -2541.55, 896.643, 64.984, 0, 0, 0, 0, 0, 261.06, 1284.29, 1080.25, 0, 4, 0, 0, 0, 'Small House In SF', 30000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (687, 4, 1534.72, 2033.23, 14.739, 0, 0, 0, 0, 0, 266.5, 304.99, 999.14, 0, 2, 0, 0, 0, 'small project lv', 30000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (688, 4, 1542.27, 2033.12, 14.739, 0, 0, 0, 0, 0, 266.5, 304.99, 999.14, 0, 2, 0, 0, 0, 'small project lv', 30000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (689, 4, 1534.71, 2027, 14.739, 0, 0, 0, 0, 0, 266.5, 304.99, 999.14, 0, 2, 0, 0, 0, 'small project lv', 30000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (690, 4, 1542.27, 2026.88, 14.739, 0, 0, 0, 0, 0, 266.5, 304.99, 999.14, 0, 2, 0, 0, 0, 'small project lv', 30000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (691, 4, 1542.45, 2003.91, 10.819, 0, 0, 0, 0, 0, 266.5, 304.989, 999.14, 0, 2, 0, 0, 0, 'small project lv', 30000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (692, 4, 1542.49, 1996.36, 10.82, 0, 0, 0, 0, 0, 266.5, 304.99, 999.14, 0, 2, 0, 0, 0, 'small project lv', 30000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (693, 4, 1548.75, 2003.91, 10.82, 0, 0, 0, 0, 0, 266.5, 304.99, 999.14, 0, 2, 0, 0, 0, 'small project lv', 30000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (694, 4, 1548.68, 1996.35, 10.82, 0, 0, 0, 0, 0, 266.5, 304.99, 999.14, 0, 2, 0, 0, 0, 'small project lv', 30000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (695, 4, 1548.7, 2003.91, 14.739, 0, 0, 0, 0, 0, 266.5, 304.99, 999.14, 0, 2, 0, 0, 0, 'small project lv', 30000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (696, 4, 1548.64, 1996.35, 14.739, 0, 0, 0, 0, 0, 266.5, 304.99, 999.14, 0, 2, 0, 0, 0, 'small project lv', 30000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (697, 4, 1542.55, 2003.89, 14.739, 0, 0, 0, 0, 0, 266.5, 304.99, 999.14, 0, 2, 0, 0, 0, 'small project lv', 30000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (698, 4, 1542.41, 1996.35, 14.739, 0, 0, 0, 0, 0, 266.5, 304.99, 999.14, 0, 2, 0, 0, 0, 'small project lv', 30000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (699, 4, 1595.5, 2038.34, 11.468, 0, 0, 0, 0, 0, 447, 1397.09, 1084.3, 0, 2, 0, 0, 0, 'Medium house at LV', 150000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (700, 4, -2502.88, 921.367, 65.239, 0, 0, 0, 0, 0, 2196.84, -1204.23, 1049.02, 0, 6, 0, 0, 0, '3 Story Condo In SF', 120000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (701, 4, 1641.79, 2044.95, 11.319, 0, 0, 0, 0, 0, 447, 1397.09, 1084.3, 0, 2, 0, 0, 0, 'Medium house at LV', 150000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (702, 4, 1594.96, 2071.07, 11.319, 0, 0, 0, 0, 0, 447, 1397.09, 1084.3, 0, 2, 0, 0, 0, 'Medium house at LV', 150000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (703, 4, -2471.77, 921.424, 63.165, 0, 0, 0, 0, 0, 2196.84, -1204.23, 1049.02, 0, 6, 0, 0, 0, '3 Story Condo In SF', 120000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (704, 4, 1596.41, 2093.74, 11.312, 0, 0, 0, 0, 0, 447, 1397.09, 1084.3, 0, 2, 0, 0, 0, 'Medium house at LV', 150000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (705, 4, 1640.35, 2075.67, 11.312, 0, 0, 0, 0, 0, 447, 1397.09, 1084.3, 0, 2, 0, 0, 0, 'Medium house at LV', 150000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (706, 4, 1640.35, 2102.86, 11.312, 0, 0, 0, 0, 0, 447, 1397.09, 1084.3, 0, 2, 0, 0, 0, 'Medium house at LV', 150000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (707, 4, -2449.79, 921.4, 58.143, 0, 0, 0, 0, 0, 2196.84, -1204.23, 1049.02, 0, 6, 0, 0, 0, '3 Story Condo In SF', 120000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (708, 4, 1645.45, 2127.38, 11.203, 0, 0, 0, 0, 0, 447, 1397.09, 1084.3, 0, 2, 0, 0, 0, 'Medium house at LV', 150000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (709, 4, 1641.26, 2149.74, 11.312, 0, 0, 0, 0, 0, 447, 1397.09, 1084.3, 0, 2, 0, 0, 0, 'Medium house at LV', 150000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (710, 4, -2431.38, 921.408, 50.578, 0, 0, 0, 0, 0, 2196.84, -1204.23, 1049.02, 0, 6, 0, 0, 0, '3 Story Condo In SF', 120000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (711, 4, -2413.09, 921.431, 45.468, 0, 0, 0, 0, 0, 226.3, 1114.37, 1080.99, 0, 5, 0, 0, 0, '5 Story Condo In SF', 500000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (712, 4, 1595.5, 2123.37, 11.46, 0, 0, 0, 0, 0, 447, 1397.09, 1084.3, 0, 2, 0, 0, 0, 'Medium house at LV', 150000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (713, 4, 1596.41, 2147.43, 11.46, 0, 0, 0, 0, 0, 447, 1397.09, 1084.3, 0, 2, 0, 0, 0, 'Medium house at LV', 150000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (714, 4, -2412.98, 895.232, 45.466, 0, 0, 0, 0, 0, 226.3, 1114.37, 1080.99, 0, 5, 0, 0, 0, '5 Story Condo In SF', 500000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (715, 4, 1684.51, 2123.46, 11.46, 0, 0, 0, 0, 0, 447, 1397.09, 1084.3, 0, 2, 0, 0, 0, 'Medium house at LV', 150000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (716, 4, -2431.45, 895.249, 50.544, 0, 0, 0, 0, 0, 2196.84, -1204.23, 1049.02, 0, 6, 0, 0, 0, '3 Story Condo In SF', 120000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (717, 4, 1685.42, 2093.88, 11.46, 0, 0, 0, 0, 0, 447, 1397.09, 1084.3, 0, 2, 0, 0, 0, 'Medium house at LV', 150000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (718, 4, -2449.8, 895.235, 58.146, 0, 0, 0, 0, 0, 2196.84, -1204.23, 1049.02, 0, 6, 0, 0, 0, '3 Story Condo In SF', 120000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (719, 4, 1680.26, 2069.24, 11.359, 0, 0, 0, 0, 0, 447, 1397.09, 1084.3, 0, 2, 0, 0, 0, 'Medium house at LV', 150000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (720, 4, 1684.51, 2046.69, 11.468, 0, 0, 0, 0, 0, 447, 1397.09, 1084.3, 0, 2, 0, 0, 0, 'Medium house at LV', 150000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (721, 4, -2471.93, 895.263, 63.168, 0, 0, 0, 0, 0, 2196.84, -1204.23, 1049.02, 0, 6, 0, 0, 0, '3 Story Condo In SF', 120000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (722, 4, -2503.02, 895.258, 65.255, 0, 0, 0, 0, 0, 2196.84, -1204.23, 1049.02, 0, 6, 0, 0, 0, '3 Story Condo In SF', 120000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (723, 4, -2585.97, 794.179, 49.423, 0, 0, 0, 0, 0, 2196.84, -1204.23, 1049.02, 0, 6, 0, 0, 0, '3 Story Condo In SF', 120000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (724, 4, -2569.11, 794.171, 49.423, 0, 0, 0, 0, 0, 2196.84, -1204.23, 1049.02, 0, 6, 0, 0, 0, '3 Story Condo In SF', 120000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (725, 4, -2550.83, 794.174, 49.423, 0, 0, 0, 0, 0, 2196.84, -1204.23, 1049.02, 0, 6, 0, 0, 0, '3 Story Condo In SF', 120000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (726, 4, 2056.5, 2665.19, 10.82, 0, 0, 0, 0, 0, 234.22, 1063.89, 1084.21, 0, 6, 0, 0, 0, 'Nice looking house at lv', 300000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (727, 4, 2037.04, 2664.5, 10.819, 0, 0, 0, 0, 0, 234.22, 1063.89, 1084.21, 0, 6, 0, 0, 0, 'Nice looking house at lv', 300000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (728, 4, 2018.03, 2664.67, 11.298, 0, 0, 0, 0, 0, 234.22, 1063.89, 1084.21, 0, 6, 0, 0, 0, 'Nice looking house at lv', 300000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (729, 4, -2548.68, 819.788, 49.984, 0, 0, 0, 0, 0, 22.93, 1403.32, 1084.43, 0, 5, 0, 0, 0, 'Small Nice House In SF', 60000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (730, 4, 1989.24, 2665.19, 10.82, 0, 0, 0, 0, 0, 234.22, 1063.89, 1084.21, 0, 6, 0, 0, 0, 'Nice looking house at lv', 300000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (731, 4, -2559.22, 819.795, 49.984, 0, 0, 0, 0, 0, 261.06, 1284.29, 1080.25, 0, 4, 0, 0, 0, 'Small House In SF', 30000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (732, 4, 1969.62, 2664.5, 10.82, 0, 0, 0, 0, 0, 234.22, 1063.89, 1084.21, 0, 6, 0, 0, 0, 'Nice looking house at lv', 300000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (733, 4, 1950.53, 2664.67, 11.298, 0, 0, 0, 0, 0, 234.22, 1063.89, 1084.21, 0, 6, 0, 0, 0, 'Nice looking house at lv', 300000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (734, 4, 1921.7, 2665.19, 10.819, 0, 0, 0, 0, 0, 234.22, 1063.89, 1084.21, 0, 6, 0, 0, 0, 'Nice looking house at lv', 300000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (735, 4, -2565.91, 819.796, 49.991, 0, 0, 0, 0, 0, 261.058, 1284.29, 1080.25, 0, 4, 0, 0, 0, 'Small House In SF', 30000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (736, 4, -2576.42, 819.789, 49.984, 0, 0, 0, 0, 0, 22.93, 1403.32, 1084.43, 0, 5, 0, 0, 0, 'Small Nice House In SF', 60000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (737, 4, -2590.88, 819.796, 49.991, 0, 0, 0, 0, 0, 261.058, 1284.29, 1080.25, 0, 4, 0, 0, 0, 'Small House In SF', 30000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (738, 4, 1929.85, 2774.3, 10.819, 0, 0, 0, 0, 0, 234.22, 1063.89, 1084.21, 0, 6, 0, 0, 0, 'Nice looking house at lv', 300000, 5000, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (739, 4, -2642.14, 820.317, 49.991, 0, 0, 0, 0, 0, 261.06, 1284.29, 1080.25, 0, 4, 0, 0, 0, 'Small House In SF', 30000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (740, 4, 1931.29, 2721.26, 10.82, 0, 0, 0, 0, 0, 234.22, 1063.89, 1084.21, 0, 6, 0, 0, 0, 'Nice looking house at lv', 300000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (741, 4, -2652.47, 820.319, 49.984, 0, 0, 0, 0, 0, 22.93, 1403.32, 1084.43, 0, 5, 0, 0, 0, 'Small Nice House In SF', 60000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (742, 4, 1950.69, 2721.95, 10.819, 0, 0, 0, 0, 0, 234.22, 1063.89, 1084.21, 0, 6, 0, 0, 0, 'Nice looking house at lv', 300000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (743, 4, -2666.91, 820.318, 49.984, 0, 0, 0, 0, 0, 261.06, 1284.29, 1080.25, 0, 4, 0, 0, 0, 'Small House In SF', 30000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (744, 4, 1967.32, 2766.54, 10.826, 0, 0, 0, 0, 0, 234.22, 1063.89, 1084.21, 0, 6, 0, 0, 0, 'Nice looking house at lv', 300000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (745, 4, -2645.52, 803.083, 49.976, 0, 0, 0, 0, 0, 261.058, 1284.29, 1080.25, 0, 4, 0, 0, 0, 'Small House In SF', 30000, 5000, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (746, 4, 1992.54, 2764.64, 10.819, 0, 0, 0, 0, 0, 234.22, 1063.89, 1084.21, 0, 6, 0, 0, 0, 'Nice looking house at lv', 300000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (747, 4, -2659.84, 803.092, 49.976, 0, 0, 0, 0, 0, 22.93, 1403.32, 1084.43, 0, 5, 0, 0, 0, 'Small Nice House In SF', 60000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (748, 4, 1969.78, 2721.78, 11.298, 0, 0, 0, 0, 0, 234.22, 1063.89, 1084.21, 0, 6, 0, 0, 0, 'Nice looking house at lv', 300000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (749, 4, 1998.72, 2721.26, 10.82, 0, 0, 0, 0, 0, 234.22, 1063.89, 1084.21, 0, 6, 0, 0, 0, 'Nice looking house at lv', 300000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (750, 4, -2670.57, 803.083, 49.976, 0, 0, 0, 0, 0, 261.06, 1284.29, 1080.25, 0, 4, 0, 0, 0, 'Small House In SF', 30000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (751, 4, 2018.15, 2721.95, 10.819, 0, 0, 0, 0, 0, 234.22, 1063.89, 1084.21, 0, 6, 0, 0, 0, 'Nice looking house at lv', 300000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (752, 4, -2677.16, 803.085, 49.976, 0, 0, 0, 0, 0, 261.059, 1284.29, 1080.25, 0, 4, 0, 0, 0, 'Small House In SF', 30000, 1000, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (753, 4, 2018.49, 2766.54, 10.826, 0, 0, 0, 0, 0, 234.22, 1063.89, 1084.21, 0, 6, 0, 0, 0, 'Nice looking house at lv', 300000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (754, 4, 2039.63, 2766.55, 10.826, 0, 0, 0, 0, 0, 234.22, 1063.89, 1084.21, 0, 6, 0, 0, 0, 'Nice looking house at lv', 300000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (755, 4, -2687.88, 803.088, 49.976, 0, 0, 0, 0, 0, 22.93, 1403.32, 1084.43, 0, 5, 0, 0, 0, 'Small Nice House In SF', 60000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (756, 4, -2698.92, 803.101, 49.97, 0, 0, 0, 0, 0, 22.93, 1403.32, 1084.43, 0, 5, 0, 0, 0, 'Small Nice House In SF', 60000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (757, 4, 2049.62, 2764.29, 10.819, 0, 0, 0, 0, 0, 234.22, 1063.89, 1084.21, 0, 6, 0, 0, 0, 'Nice looking house at lv', 300000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (758, 4, 2066.01, 2721.26, 10.82, 0, 0, 0, 0, 0, 234.22, 1063.89, 1084.21, 0, 6, 0, 0, 0, 'Nice looking house at lv', 300000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (759, 4, -2709.85, 803.085, 49.976, 0, 0, 0, 0, 0, 261.058, 1284.29, 1080.25, 0, 4, 0, 0, 0, 'Small House In SF', 30000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (760, 4, -2685.1, 820.491, 49.984, 0, 0, 0, 0, 0, 234.22, 1063.89, 358.5, 0, 6, 0, 0, 0, '4 Story Condo In SF', 400000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (761, 4, -2700.38, 820.835, 49.984, 0, 0, 0, 0, 0, 234.22, 1063.89, 358.5, 0, 6, 0, 0, 0, '4 Story Condo In SF', 400000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (762, 4, -2726.68, 822.977, 53.727, 0, 0, 0, 0, 0, 22.93, 1403.32, 1084.43, 0, 5, 0, 0, 0, 'Small Nice House In SF', 60000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (763, 4, -2737.25, 822.987, 53.729, 0, 0, 0, 0, 0, 261.06, 1284.29, 1080.25, 0, 4, 0, 0, 0, 'Small House In SF', 30000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (764, 4, -2409.05, 819.96, 35.179, 0, 0, 0, 0, 0, 234.22, 1063.89, 358.5, 0, 6, 0, 0, 0, '4 Story Condo In SF', 400000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (765, 4, -2487.47, 821.302, 38.384, 0, 0, 0, 0, 0, 2196.84, -1204.23, 1049.02, 0, 6, 0, 0, 0, '3 Story Condo In SF', 120000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (766, 4, 1451.36, 2565.43, 10.826, 0, 0, 0, 0, 0, 226.3, 1114.37, 1080.99, 0, 5, 0, 0, 0, 'huge 2 floor nice looking house at LV', 500000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (767, 4, -2504.61, 821.306, 45.987, 0, 0, 0, 0, 0, 2196.84, -1204.23, 1049.02, 0, 6, 0, 0, 0, '3 Story Condo In SF', 120000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (768, 4, 1441.72, 2567.69, 10.82, 0, 0, 0, 0, 0, 226.3, 1114.37, 1080.99, 0, 5, 0, 0, 0, 'huge 2 floor nice looking house at LV', 500000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (769, 4, 1417.87, 2567.48, 10.819, 0, 0, 0, 0, 0, 226.3, 1114.37, 1080.99, 0, 5, 0, 0, 0, 'huge 2 floor nice looking house at LV', 500000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (770, 4, 1359.74, 2565.43, 10.826, 0, 0, 0, 0, 0, 226.3, 1114.37, 1080.99, 0, 5, 0, 0, 0, 'huge 2 floor nice looking house at LV', 500000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (771, 4, 1344.72, 2610.19, 11.298, 0, 0, 0, 0, 0, 234.22, 1063.89, 1084.21, 0, 6, 0, 0, 0, 'Nice looking house at lv', 300000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (772, 4, -2731.47, 723.691, 41.273, 0, 0, 0, 0, 0, 2196.84, -1204.23, 1049.02, 0, 6, 0, 0, 0, 'Normal Size House In SF', 85000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (773, 4, 1349.6, 2567.69, 10.819, 0, 0, 0, 0, 0, 226.3, 1114.37, 1080.99, 0, 5, 0, 0, 0, 'huge 2 floor nice looking house at LV', 500000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (774, 4, 1313.84, 2610.19, 11.298, 0, 0, 0, 0, 0, 234.22, 1063.89, 1084.21, 0, 6, 0, 0, 0, 'Nice looking house at lv', 300000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (775, 4, 1325.61, 2567.34, 10.819, 0, 0, 0, 0, 0, 226.3, 1114.37, 1080.99, 0, 5, 0, 0, 0, 'huge 2 floor nice looking house at LV', 500000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (776, 4, -2723.45, 722.819, 41.265, 0, 0, 0, 0, 0, 22.93, 1403.32, 1084.43, 0, 5, 0, 0, 0, 'Small Nice House In SF', 60000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (777, 4, -2710.89, 722.817, 39.718, 0, 0, 0, 0, 0, 261.06, 1284.29, 1080.25, 0, 4, 0, 0, 0, 'Small House In SF', 30000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (778, 4, 1284.86, 2610.72, 10.819, 0, 0, 0, 0, 0, 234.22, 1063.89, 1084.21, 0, 6, 0, 0, 0, 'Nice looking house at lv', 300000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (779, 4, -2706.75, 722.849, 37.539, 0, 0, 0, 0, 0, 261.06, 1284.29, 1080.25, 0, 4, 0, 0, 0, 'Small House In SF', 30000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (780, 4, 1271.88, 2564.57, 10.819, 0, 0, 0, 0, 0, 226.3, 1114.37, 1080.99, 0, 5, 0, 0, 0, 'Small Nice House In SF', 500000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (781, 4, 1269.62, 2554.43, 10.826, 0, 0, 0, 0, 0, 226.3, 1114.37, 1080.99, 0, 5, 0, 0, 0, 'Small Nice House In SF', 500000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (782, 4, -2686.04, 722.855, 32.225, 0, 0, 0, 0, 0, 2196.84, -1204.23, 1049.02, 0, 6, 0, 0, 0, 'Normal Size House In SF', 85000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (783, 4, 1273.95, 2522.51, 10.819, 0, 0, 0, 0, 0, 226.3, 1114.37, 1080.99, 0, 5, 0, 0, 0, 'Small Nice House In SF', 500000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (784, 4, 1316.47, 2524.65, 10.819, 0, 0, 0, 0, 0, 226.3, 1114.37, 1080.99, 0, 5, 0, 0, 0, 'Small Nice House In SF', 500000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (785, 4, -2678.14, 722.25, 28.596, 0, 0, 0, 0, 0, 22.93, 1403.32, 1084.43, 0, 5, 0, 0, 0, 'Small Nice House In SF', 60000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (786, 4, -2665.49, 722.244, 27.962, 0, 0, 0, 0, 0, 261.06, 1284.29, 1080.25, 0, 4, 0, 0, 0, 'Small House In SF', 30000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (787, 4, -2661.59, 722.225, 27.962, 0, 0, 0, 0, 0, 261.06, 1284.29, 1080.25, 0, 4, 0, 0, 0, 'Small House In SF', 30000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (788, 4, 1503.24, 2567.69, 10.819, 0, 0, 0, 0, 0, 226.3, 1114.37, 1080.99, 0, 5, 0, 0, 0, 'huge 2 floor nice looking house at LV', 500000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (789, 4, -2642.08, 728.034, 27.96, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0, 'Apartment 1st Floor In SF', 80000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (790, 4, 1515.71, 2610.19, 11.298, 0, 0, 0, 0, 0, 234.22, 1063.89, 1084.21, 0, 6, 0, 0, 0, 'Nice looking house at lv', 300000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (791, 4, -2640.3, 730.541, 30.075, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0, 'Appartment 2nd Floor In SF', 80000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (792, 4, 1513.38, 2565.43, 10.826, 0, 0, 0, 0, 0, 226.3, 1114.37, 1080.99, 0, 5, 0, 0, 0, 'huge 2 floor nice looking house at LV', 500000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (793, 4, 1551.49, 2567.34, 10.819, 0, 0, 0, 0, 0, 226.3, 1114.37, 1080.99, 0, 5, 0, 0, 0, 'huge 2 floor nice looking house at LV', 500000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (794, 4, 1554.45, 2610.72, 10.82, 0, 0, 0, 0, 0, 234.22, 1063.89, 1084.21, 0, 6, 0, 0, 0, 'Nice looking house at lv', 300000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (795, 4, 1564.61, 2565.43, 10.826, 0, 0, 0, 0, 0, 226.3, 1114.37, 1080.99, 0, 5, 0, 0, 0, 'huge 2 floor nice looking house at LV', 500000, 3500, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (796, 4, 1596.39, 2567.69, 10.82, 0, 0, 0, 0, 0, 226.3, 1114.37, 1080.99, 0, 5, 0, 0, 0, 'huge 2 floor nice looking house at LV', 500000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (797, 4, 1600.59, 2610.03, 10.82, 0, 0, 0, 0, 0, 234.22, 1063.89, 1084.21, 0, 6, 0, 0, 0, 'Nice looking house at lv', 300000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (798, 4, -2581.51, 719.018, 27.944, 0, 0, 0, 0, 0, 2196.84, -1204.23, 1049.02, 0, 6, 0, 0, 0, '3 Story Condo In SF', 120000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (799, 4, 1618.8, 2610.03, 10.819, 0, 0, 0, 0, 0, 234.22, 1063.89, 1084.21, 0, 6, 0, 0, 0, 'Nice looking house at lv', 300000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (800, 4, 1638.13, 2610.72, 10.82, 0, 0, 0, 0, 0, 234.22, 1063.89, 1084.21, 0, 6, 0, 0, 0, 'Nice looking house at lv', 300000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (801, 4, 1623.47, 2567.34, 10.819, 0, 0, 0, 0, 0, 226.3, 1114.37, 1080.99, 0, 5, 0, 0, 0, 'huge 2 floor nice looking house at LV', 500000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (802, 4, -2553.97, 719.023, 27.945, 0, 0, 0, 0, 0, 2196.84, -1204.23, 1049.02, 0, 6, 0, 0, 0, '3 Story Condo In SF', 120000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (803, 4, 1646.59, 2569.58, 10.819, 0, 0, 0, 0, 0, 234.22, 1063.89, 1084.21, 0, 6, 0, 0, 0, 'Nice looking house at lv', 300000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (804, 4, 1665.56, 2569.42, 11.298, 0, 0, 0, 0, 0, 234.22, 1063.89, 1084.21, 0, 6, 0, 0, 0, 'Nice looking house at lv', 300000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (805, 4, 1666.95, 2610.19, 11.298, 0, 0, 0, 0, 0, 234.22, 1063.89, 1084.21, 0, 6, 0, 0, 0, 'Nice looking house at lv', 300000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (806, 4, -2541.27, 733.097, 28.057, 0, 0, 0, 0, 0, 2196.84, -1204.23, 1049.02, 0, 6, 0, 0, 0, '3 Story Condo In SF', 120000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (807, 4, -2541.24, 750.917, 33.704, 0, 0, 0, 0, 0, 2196.84, -1204.23, 1049.02, 0, 6, 0, 0, 0, '3 Story Condo In SF', 120000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (808, 4, 1678.4, 2690.76, 10.819, 0, 0, 0, 0, 0, 226.3, 1114.37, 1080.99, 0, 5, 0, 0, 0, 'huge 2 floor nice looking house at LV', 500000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (809, 4, -2541.24, 768.138, 40.022, 0, 0, 0, 0, 0, 2196.84, -1204.23, 1049.02, 0, 6, 0, 0, 0, '3 Story Condo In SF', 120000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (810, 4, 1703.71, 2688.86, 10.826, 0, 0, 0, 0, 0, 226.3, 1114.37, 1080.99, 0, 5, 0, 0, 0, 'huge 2 floor nice looking house at LV', 500000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (811, 4, -2541.24, 785.26, 46.232, 0, 0, 0, 0, 0, 2196.84, -1204.23, 1049.02, 0, 6, 0, 0, 0, '3 Story Condo In SF', 120000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (812, 4, 1735.65, 2691.11, 10.82, 0, 0, 0, 0, 0, 226.3, 1114.37, 1080.99, 0, 5, 0, 0, 0, 'huge 2 floor nice looking house at LV', 500000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (813, 4, 1754.52, 2736.02, 14.272, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0, 'lv project apartment small', 40000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (814, 4, 1752.26, 2744.57, 14.273, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0, 'lv project apartment small', 40000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (815, 4, 1751.45, 2747.35, 14.273, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0, 'lv project apartment small', 40000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (816, 4, 1749.2, 2755.91, 14.273, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0, 'lv project apartment small', 40000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (817, 4, 1748.42, 2758.69, 14.273, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0, 'lv project apartment small', 40000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (818, 4, 1745.39, 2770.03, 14.273, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0, 'lv project apartment small', 40000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (819, 4, 1746.17, 2767.25, 14.273, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0, 'lv project apartment small', 40000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (820, 4, 1743.04, 2778.56, 14.273, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0, 'lv project apartment small', 40000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (821, 4, 1746.04, 2767.21, 11.343, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0, 'lv project apartment small', 40000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (822, 4, 1745.41, 2770.03, 11.343, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0, 'lv project apartment small', 40000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (823, 4, 1748.48, 2758.71, 11.343, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0, 'lv project apartment small', 40000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (824, 4, 1749.19, 2755.9, 11.343, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0, 'lv project apartment small', 40000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (825, 4, 1751.46, 2747.35, 11.343, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0, 'lv project apartment small', 40000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (826, 4, 1752.22, 2744.56, 11.343, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0, 'lv project apartment small', 40000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (827, 4, 1780.81, 2744.57, 11.343, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0, 'lv project apartment small', 40000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (828, 4, -2513.52, 830.841, 49.997, 0, 0, 0, 0, 0, 226.3, 1114.37, 1080.99, 0, 5, 0, 0, 0, '6 Story Condo In SF', 450000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (829, 4, 1781.51, 2747.37, 11.343, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0, 'lv project apartment small', 40000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (830, 4, 1778.54, 2736.01, 14.273, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0, 'lv project apartment small', 40000, 500, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (831, 4, -2513.5, 849.084, 52.695, 0, 0, 0, 0, 0, 226.3, 1114.37, 1080.99, 0, 5, 0, 0, 0, '6 Story Condo In SF', 450000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (832, 4, 1781.55, 2747.36, 14.273, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0, 'lv project apartment small', 40000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (833, 4, 1780.82, 2744.56, 14.273, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0, 'lv project apartment small', 40000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (834, 4, 1784.62, 2758.69, 14.273, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0, 'lv project apartment small', 40000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (835, 4, 1783.78, 2755.92, 14.273, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0, 'lv project apartment small', 40000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (836, 4, 1787.64, 2770.04, 14.273, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0, 'lv project apartment small', 40000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (837, 4, 1786.83, 2767.26, 14.273, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0, 'lv project apartment small', 40000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (838, 4, 1789.83, 2778.61, 14.273, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0, 'lv project apartment small', 40000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (839, 4, 1787.57, 2770.06, 11.343, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0, 'lv project apartment small', 40000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (840, 4, 1786.89, 2767.25, 11.343, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0, 'lv project apartment small', 40000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (841, 4, 1784.6, 2758.7, 11.343, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0, 'lv project apartment small', 40000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (842, 4, 1783.84, 2755.91, 11.343, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0, 'lv project apartment small', 40000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (843, 4, -2513.53, 867.493, 57.742, 0, 0, 0, 0, 0, 226.3, 1114.37, 1080.99, 0, 5, 0, 0, 0, '6 Story Condo In SF', 450000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (844, 4, 1789.89, 2778.6, 11.35, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0, 'lv project apartment small', 40000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (845, 4, 1800.78, 2775.68, 11.343, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0, 'lv project apartment small', 40000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (846, 4, 1797.69, 2764.35, 14.273, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0, 'lv project apartment small', 40000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (847, 4, 1798.47, 2767.14, 14.273, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0, 'lv project apartment small', 40000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (848, 4, 1794.71, 2753, 14.273, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0, 'lv project apartment small', 40000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (849, 4, -2513.51, 885.731, 62.777, 0, 0, 0, 0, 0, 226.3, 1114.37, 1080.99, 0, 5, 0, 0, 0, '6 Story Condo In SF', 450000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (850, 4, 1795.38, 2755.81, 14.273, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0, 'lv project apartment small', 40000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (851, 4, 1791.66, 2741.66, 14.273, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0, 'lv project apartment small', 40000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (852, 4, 1792.42, 2744.45, 14.273, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0, 'lv project apartment small', 40000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (853, 4, 1789.49, 2733.08, 14.273, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0, 'lv project apartment small', 40000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (854, 4, 1792.54, 2744.42, 11.343, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0, 'lv project apartment small', 40000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (855, 4, 1791.73, 2741.64, 11.343, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0, 'lv project apartment small', 40000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (856, 4, 1795.42, 2755.8, 11.343, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0, 'lv project apartment small', 40000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (857, 4, 1794.75, 2752.99, 11.343, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0, 'lv project apartment small', 40000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (858, 4, 1798.54, 2767.12, 11.343, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0, 'lv project apartment small', 40000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (859, 4, 1797.78, 2764.33, 11.343, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0, 'lv project apartment small', 40000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (860, 4, 1800.77, 2775.68, 14.273, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0, 'lv project apartment small', 40000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (861, 4, 1736.36, 2803.59, 11.343, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0, 'lv project apartment small', 40000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (862, 4, 1737.11, 2800.79, 11.343, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0, 'lv project apartment small', 40000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (863, 4, -2538.73, 830.008, 49.984, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0, 'Appartment 1st Floor In SF', 80000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (864, 4, 1739.42, 2792.25, 14.273, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0, 'lv project apartment small', 40000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (865, 4, 1737.08, 2800.78, 14.273, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0, 'lv project apartment small', 40000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (866, 4, -2540.51, 831.946, 52.093, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0, 'Appartment 2nd Floor In SF', 80000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (867, 4, 1736.35, 2803.58, 14.273, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0, 'lv project apartment small', 40000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (868, 4, 1734.17, 2812.16, 11.343, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0, 'lv project apartment small', 40000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (869, 4, 1733.35, 2814.93, 11.343, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0, 'lv project apartment small', 40000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (870, 4, 1734.05, 2812.13, 14.273, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0, 'lv project apartment small', 40000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (871, 4, 1733.39, 2814.94, 14.273, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0, 'lv project apartment small', 40000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (872, 4, 1730.34, 2826.28, 14.273, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0, 'lv project apartment small', 40000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (873, 4, 1731, 2823.47, 14.273, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0, 'lv project apartment small', 40000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (874, 4, 1728.09, 2834.84, 14.273, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0, 'lv project apartment small', 40000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (875, 4, 1730.45, 2826.31, 11.343, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0, 'lv project apartment small', 40000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (876, 4, 1731.09, 2823.49, 11.343, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0, 'lv project apartment small', 40000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (877, 4, 1727.94, 2834.8, 11.343, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0, 'lv project apartment small', 40000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (878, 4, -2539.71, 845.176, 50.6, 0, 0, 0, 0, 0, 261.06, 1284.29, 1080.25, 0, 4, 0, 0, 0, 'Small House In SF', 30000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (879, 4, -2540.67, 855.141, 53.179, 0, 0, 0, 0, 0, 261.06, 1284.29, 1080.25, 0, 4, 0, 0, 0, 'Small House In SF', 30000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (880, 4, -2540, 874.764, 58.921, 0, 0, 0, 0, 0, 261.06, 1284.29, 1080.25, 0, 4, 0, 0, 0, 'Small House In SF', 30000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (881, 4, -2540.18, 883.141, 63.25, 0, 0, 0, 0, 0, 2196.84, -1204.23, 1049.02, 0, 6, 0, 0, 0, 'Normal Size House In SF', 85000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (882, 4, -2537.09, 929.446, 65.016, 0, 0, 0, 0, 0, 22.93, 1403.32, 1084.43, 0, 5, 0, 0, 0, 'Small Nice House In SF', 60000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (883, 4, 1717.18, 2831.92, 11.35, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0, 'lv project apartment small', 40000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (884, 4, -2542.47, 942.63, 64, 0, 0, 0, 0, 0, 261.058, 1284.29, 1080.25, 0, 4, 0, 0, 0, 'Small House In SF', 30000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (885, 4, 1717.01, 2831.87, 14.273, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0, 'lv project apartment small', 40000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (886, 4, 1720.19, 2820.57, 14.273, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0, 'lv project apartment small', 40000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (887, 4, 1719.41, 2823.35, 14.273, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0, 'lv project apartment small', 40000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (888, 4, 1723.14, 2809.21, 14.273, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0, 'lv project apartment small', 40000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (889, 4, 1722.45, 2812.01, 14.273, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0, 'lv project apartment small', 40000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (890, 4, 2514.28, -1691.66, 14.045, 0, 0, 0, 0, 0, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, 0, 'Ghetto Home LS Small', 10000, 500, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (891, 4, 2523.27, -1679.38, 15.496, 0, 0, 0, 0, 0, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, 0, 'Ghetto Home LS Small', 10000, 5000, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (892, 4, 2524.71, -1658.59, 15.824, 0, 0, 0, 0, 0, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, 0, 'Ghetto Home LS Small', 10000, 5000, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (893, 4, 2513.72, -1650.24, 14.354, 0, 0, 0, 0, 0, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, 0, 'Ghetto Home LS Small', 10000, 1, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (894, 4, 2498.47, -1642.25, 14.112, 0, 0, 0, 0, 0, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, 0, 'Ghetto Home LS Small', 10000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (895, 4, 2486.46, -1644.53, 14.076, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0, 'Ghetto Home LS Medium', 40000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (896, 4, 2469.45, -1646.35, 13.779, 0, 0, 0, 0, 0, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, 0, 'Ghetto Home LS Small', 10000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (897, 4, 2451.91, -1641.41, 14.064, 0, 0, 0, 0, 0, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, 0, 'Ghetto Home LS Small', 10000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (898, 4, 2413.86, -1646.79, 14.01, 0, 0, 0, 0, 0, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, 0, 'Ghetto Home LS Small', 10000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (899, 4, 2409.04, -1674.94, 14.375, 0, 0, 0, 0, 0, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, 0, 'Ghetto Home LS Small', 10000, 1000, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (900, 4, 2393.13, -1646.04, 13.904, 0, 0, 0, 0, 0, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, 0, 'Ghetto Home LS Small', 10000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (901, 4, 2384.7, -1675.83, 15.244, 0, 0, 0, 0, 0, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, 0, 'Ghetto Home LS Small', 10000, 1, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (902, 4, 2362.8, -1643.14, 14.35, 0, 0, 0, 0, 0, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, 0, 'Ghetto Home LS Small', 10000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (903, 4, 2368.29, -1675.34, 14.168, 0, 0, 0, 0, 0, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, 0, 'Ghetto Home LS Small', 10000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (904, 4, 2326.89, -1681.94, 14.928, 0, 0, 0, 0, 0, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, 0, 'Ghetto Home LS Small', 10000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (905, 4, 2385.39, -1711.66, 14.241, 0, 0, 0, 0, 0, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, 0, 'Ghetto Home LS Small', 10000, 20, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (906, 4, 2326.75, -1716.7, 14.237, 0, 0, 0, 0, 0, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, 0, 'Ghetto Home LS Small', 10000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (907, 4, 2308.89, -1714.34, 14.979, 0, 0, 0, 0, 0, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, 0, 'Ghetto Home LS Small', 10000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (908, 4, 2244.54, -1637.64, 16.236, 0, 0, 0, 0, 0, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, 0, 'Ghetto Home LS Small', 10000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (909, 4, 2257.11, -1643.94, 15.807, 0, 0, 0, 0, 0, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, 0, 'Ghetto Home LS Small', 10000, 100, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (910, 4, 2282.29, -1641.21, 15.887, 0, 0, 0, 0, 0, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, 0, 'Ghetto Home LS Small', 10000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (911, 4, 2307, -1679.19, 14.331, 0, 0, 0, 0, 0, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, 0, 'Ghetto Home LS Small', 10000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (912, 4, 1928.69, -1915.91, 15.255, 0, 0, 0, 0, 0, 447, 1397.09, 1084.3, 0, 2, 0, 0, 0, 'normal house at ls', 150000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (913, 4, 1938.54, -1911.32, 15.255, 0, 0, 0, 0, 0, 447, 1397.09, 1084.3, 0, 2, 0, 0, 0, 'normal house at ls', 150000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (914, 4, 1913.47, -1911.9, 15.255, 0, 0, 0, 0, 0, 447, 1397.09, 1084.3, 0, 2, 0, 0, 0, 'normal house at ls', 150000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (915, 4, 1891.92, -1914.4, 15.255, 0, 0, 0, 0, 0, 447, 1397.09, 1084.3, 0, 2, 0, 0, 0, 'normal house at ls', 150000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (916, 4, 1872.21, -1911.79, 15.255, 0, 0, 0, 0, 0, 447, 1397.09, 1084.3, 0, 2, 0, 0, 0, 'normal house at ls', 150000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (917, 4, 1854.06, -1914.26, 15.255, 0, 0, 0, 0, 0, 447, 1397.09, 1084.3, 0, 2, 0, 0, 0, 'normal house at ls', 150000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (918, 4, 1848.15, -1593.75, 19.124, 0, 0, 0, 0, 0, 244.41, 305.032, 999.148, 0, 1, 0, 0, 0, 'LS Project', 4000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (919, 4, 1848.15, -1593.6, 23.881, 0, 0, 0, 0, 0, 244.41, 305.032, 999.148, 0, 1, 0, 0, 0, 'LS Project', 4000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (920, 4, 1986.75, -1604.9, 13.531, 0, 0, 0, 0, 0, 244.41, 305.032, 999.148, 0, 1, 0, 0, 0, 'LS Project', 4000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (921, 4, 1972.98, -1559.83, 13.637, 0, 0, 0, 0, 0, 244.41, 305.032, 999.148, 0, 1, 0, 0, 0, 'LS Project', 4000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (922, 4, 1958.67, -1560.35, 13.593, 0, 0, 0, 0, 0, 244.41, 305.032, 999.148, 0, 1, 0, 0, 0, 'LS Project', 4000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (923, 4, 2139.09, -1697.51, 15.085, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0, 'Ghetto Home LS Medium', 40000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (924, 4, 2155.62, -1698.51, 15.085, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0, 'Ghetto Home LS Medium', 40000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (925, 4, 2157.15, -1709.21, 15.085, 0, 0, 0, 0, 0, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, 0, 'Ghetto Home LS Medium', 30000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (926, 4, 2140.57, -1708.3, 15.085, 0, 0, 0, 0, 0, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, 0, 'Ghetto Home LS Medium', 30000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (927, 4, 2151.71, -1717.83, 15.085, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0, 'Ghetto Home LS Medium', 40000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (928, 4, 2168.08, -1718.82, 15.166, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0, 'Ghetto Home LS Medium', 40000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (929, 4, 2151.41, -1672.26, 15.085, 0, 0, 0, 0, 0, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, 0, 'Ghetto Home LS Medium', 30000, 1, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (930, 4, 2143.65, -1662.86, 15.085, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0, 'Ghetto Home LS Medium', 40000, 5000, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (932, 4, 2163.74, -1661.21, 15.085, 0, 0, 0, 0, 0, 22.93, 1403.32, 1084.43, 0, 5, 0, 0, 0, 'Ghetto Home LS Medium', 60000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (933, 4, 1793.6, 2792.25, 11.35, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0, 'lv project apartment small', 40000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (934, 4, 1796.65, 2803.58, 11.343, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0, 'lv project apartment small', 40000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (935, 4, 1795.83, 2800.81, 11.343, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0, 'lv project apartment small', 40000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (936, 4, -2510.96, 967.654, 73.532, 0, 0, 0, 0, 0, 261.06, 1284.29, 1080.25, 0, 4, 0, 0, 0, 'Small House In SF', 30000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (937, 4, 1799.57, 2814.95, 11.343, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0, 'lv project apartment small', 40000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (938, 4, 1798.92, 2812.14, 11.343, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0, 'lv project apartment small', 40000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (939, 4, 1802.77, 2826.25, 11.343, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0, 'lv project apartment small', 40000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (940, 4, 1801.9, 2823.49, 11.343, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0, 'lv project apartment small', 40000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (941, 4, -2510.91, 951.258, 65.614, 0, 0, 0, 0, 0, 261.06, 1284.29, 1080.25, 0, 4, 0, 0, 0, 'Small House In SF', 30000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (942, 4, 1804.86, 2834.85, 11.35, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0, 'lv project apartment small', 40000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (943, 4, -2510.93, 942.703, 65.289, 0, 0, 0, 0, 0, 261.059, 1284.29, 1080.25, 0, 4, 0, 0, 0, 'Small House In SF', 30000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (944, 4, 1804.96, 2834.82, 14.272, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0, 'lv project apartment small', 40000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (945, 4, 1802.59, 2826.3, 14.273, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0, 'lv project apartment small', 40000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (946, 4, 1802.05, 2823.45, 14.273, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0, 'lv project apartment small', 40000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (947, 4, 1798.8, 2812.17, 14.273, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0, 'lv project apartment small', 40000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (948, 4, 1799.65, 2814.93, 14.273, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0, 'lv project apartment small', 40000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (949, 4, 1795.85, 2800.8, 14.273, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0, 'lv project apartment small', 40000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (950, 4, 1796.69, 2803.57, 14.273, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0, 'lv project apartment small', 40000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (951, 4, 1793.61, 2792.24, 14.273, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0, 'lv project apartment small', 40000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (952, 4, 1815.83, 2831.92, 11.343, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0, 'lv project apartment small', 40000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (953, 4, 1813.61, 2823.34, 11.343, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0, 'lv project apartment small', 40000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (954, 4, 1812.9, 2820.54, 11.343, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0, 'lv project apartment small', 40000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (955, 4, 1815.91, 2831.89, 14.273, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0, 'lv project apartment small', 40000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (956, 4, 1812.82, 2820.57, 14.273, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0, 'lv project apartment small', 40000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (957, 4, 1813.61, 2823.35, 14.273, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0, 'lv project apartment small', 40000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (958, 4, 1809.83, 2809.21, 14.273, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0, 'lv project apartment small', 40000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (959, 4, 1810.53, 2812.02, 14.273, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0, 'lv project apartment small', 40000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (960, 4, -2596.65, 986.268, 78.273, 0, 0, 0, 0, 0, 261.058, 1284.29, 1080.25, 0, 4, 0, 0, 0, 'Small House In SF', 30000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (961, 4, 1806.77, 2797.88, 14.273, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0, 'lv project apartment small', 40000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (962, 4, 1807.6, 2800.65, 14.273, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0, 'lv project apartment small', 40000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (963, 4, 1804.57, 2789.3, 14.273, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0, 'lv project apartment small', 40000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (964, 4, -2597.34, 979.735, 78.273, 0, 0, 0, 0, 0, 22.93, 1403.32, 1084.43, 0, 5, 0, 0, 0, 'Small Nice House In SF', 60000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (965, 4, 1806.71, 2797.89, 11.343, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0, 'lv project apartment small', 40000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (966, 4, 1807.36, 2800.71, 11.343, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0, 'lv project apartment small', 40000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (967, 4, 1810.61, 2812, 11.343, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0, 'lv project apartment small', 40000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (968, 4, 1809.62, 2809.27, 11.343, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0, 'lv project apartment small', 40000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (969, 4, -2597.33, 968.947, 78.283, 0, 0, 0, 0, 0, 261.059, 1284.29, 1080.25, 0, 4, 0, 0, 0, 'Small House In SF', 30000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (970, 4, 1832.49, 2742.93, 11.343, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0, 'lv project apartment small', 40000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (971, 4, 1830.47, 2740.87, 11.343, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0, 'lv project apartment small', 40000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (972, 4, 1840.84, 2751.18, 11.343, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0, 'lv project apartment small', 40000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (973, 4, 1838.67, 2749.27, 11.35, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0, 'lv project apartment small', 40000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (974, 4, -2591.17, 960.758, 78.453, 0, 0, 0, 0, 0, 2196.84, -1204.23, 1049.02, 0, 6, 0, 0, 0, 'Normal Size House In SF', 85000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (975, 4, 1847.08, 2757.45, 11.343, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0, 'lv project apartment small', 40000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (976, 4, 1849.23, 2759.39, 11.343, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0, 'lv project apartment small', 40000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (977, 4, 1855.38, 2765.76, 14.265, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0, 'lv project apartment small', 40000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (978, 4, 1849.09, 2759.53, 14.273, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0, 'lv project apartment small', 40000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (979, 4, 1847.1, 2757.43, 14.273, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0, 'lv project apartment small', 40000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (980, 4, 1838.73, 2749.2, 14.273, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0, 'lv project apartment small', 40000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (981, 4, -2591.19, 944.325, 70.429, 0, 0, 0, 0, 0, 261.06, 1284.29, 1080.25, 0, 4, 0, 0, 0, 'Small House In SF', 30000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (982, 4, 1840.84, 2751.19, 14.273, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0, 'lv project apartment small', 40000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (983, 4, 1830.4, 2740.94, 14.273, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0, 'lv project apartment small', 40000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (984, 4, 1832.55, 2742.88, 14.273, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0, 'lv project apartment small', 40000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (985, 4, 1824.22, 2734.61, 14.273, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0, 'lv project apartment small', 40000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (986, 4, -2591.19, 935.902, 68.929, 0, 0, 0, 0, 0, 261.06, 1284.29, 1080.25, 0, 4, 0, 0, 0, 'Small House In SF', 30000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (987, 4, -2591.19, 927.88, 65.015, 0, 0, 0, 0, 0, 261.06, 1284.29, 1080.25, 0, 4, 0, 0, 0, 'Small House In SF', 30000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (988, 4, 1855.32, 2765.81, 11.35, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0, 'lv project apartment small', 40000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (989, 4, 1865.45, 2775.7, 11.343, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0, 'lv project apartment small', 40000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (990, 4, 1873.69, 2784.06, 11.343, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0, 'lv project apartment small', 40000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (991, 4, 1871.57, 2782.08, 11.343, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0, 'lv project apartment small', 40000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (992, 4, 1881.95, 2792.39, 11.343, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0, 'lv project apartment small', 40000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (993, 4, 1879.89, 2790.37, 11.343, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0, 'lv project apartment small', 40000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (994, 4, 1890.23, 2800.7, 11.343, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0, 'lv project apartment small', 40000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (995, 4, 1888.22, 2798.63, 11.343, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0, 'lv project apartment small', 40000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (996, 4, -2593.26, 883.218, 63.25, 0, 0, 0, 0, 0, 2196.84, -1204.23, 1049.02, 0, 6, 0, 0, 0, 'Normal Size House In SF', 85000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (997, 4, 1896.51, 2806.95, 14.265, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0, 'lv project apartment small', 40000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (998, 4, 1888.25, 2798.6, 14.273, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0, 'lv project apartment small', 40000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (999, 4, 1890.32, 2800.62, 14.273, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0, 'lv project apartment small', 40000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1000, 4, 1879.96, 2790.31, 14.273, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0, 'lv project apartment small', 40000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1001, 4, 1882.05, 2792.29, 14.273, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0, 'lv project apartment small', 40000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1002, 4, -2593.42, 874.771, 58.921, 0, 0, 0, 0, 0, 261.06, 1284.29, 1080.25, 0, 4, 0, 0, 0, 'Small House In SF', 30000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1003, 4, 1871.62, 2782.03, 14.273, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0, 'lv project apartment small', 40000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1004, 4, 1873.72, 2784.03, 14.273, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0, 'lv project apartment small', 40000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1005, 4, 1865.34, 2775.81, 14.273, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0, 'lv project apartment small', 40000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1006, 4, -2620.21, 883.012, 63.25, 0, 0, 0, 0, 0, 2196.84, -1204.23, 1049.02, 0, 6, 0, 0, 0, 'Normal Size House In SF', 85000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1007, 4, -2620.02, 874.734, 58.921, 0, 0, 0, 0, 0, 261.058, 1284.29, 1080.25, 0, 4, 0, 0, 0, 'Small House In SF', 30000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1008, 4, 1896.56, 2806.91, 11.35, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0, 'lv project apartment small', 40000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1009, 4, -2592.74, 854.975, 53.594, 0, 0, 0, 0, 0, 261.06, 1284.29, 1080.25, 0, 4, 0, 0, 0, 'Small House In SF', 30000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1010, 4, -2620.7, 855.147, 53.568, 0, 0, 0, 0, 0, 261.06, 1284.29, 1080.25, 0, 4, 0, 0, 0, 'Small House In SF', 30000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1011, 4, 1740.86, 2863.24, 11.335, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0, 'lv project apartment small', 40000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1012, 4, 1738.45, 2861.53, 11.335, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0, 'lv project apartment small', 40000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1013, 4, 1751.45, 2868.71, 11.335, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0, 'lv project apartment small', 40000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1014, 4, 1748.67, 2867.7, 11.335, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0, 'lv project apartment small', 40000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1015, 4, -2593.7, 845.077, 50.593, 0, 0, 0, 0, 0, 261.06, 1284.29, 1080.25, 0, 4, 0, 0, 0, 'Small House In SF', 30000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1016, 4, 1763.1, 2871.36, 11.335, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0, 'lv project apartment small', 40000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1017, 4, 1760.16, 2870.95, 11.335, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0, 'lv project apartment small', 40000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1018, 4, -2619.74, 845.313, 50.598, 0, 0, 0, 0, 0, 261.06, 1284.29, 1080.25, 0, 4, 0, 0, 0, 'Small House In SF', 30000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1019, 4, 1775, 2870.83, 11.335, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0, 'lv project apartment small', 40000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1020, 4, 1772.1, 2871.36, 11.335, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0, 'lv project apartment small', 40000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1021, 4, 1786.52, 2867.69, 11.335, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0, 'lv project apartment small', 40000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1022, 4, 1783.74, 2868.71, 11.335, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0, 'lv project apartment small', 40000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1023, 4, 1796.8, 2861.61, 11.335, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0, 'lv project apartment small', 40000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1024, 4, -2592.75, 832.837, 52.093, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0, 'Appartment 2nd Floor In SF', 80000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1025, 4, 1794.42, 2863.38, 11.335, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0, 'lv project apartment small', 40000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1026, 4, 1731.81, 2855.49, 14.265, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0, 'lv project apartment small', 40000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1027, 4, -2594.69, 830.981, 49.984, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0, 'Appartment 1st Floor In SF', 80000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1028, 4, 1740.84, 2863.27, 14.257, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0, 'lv project apartment small', 40000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1029, 4, 1738.33, 2861.68, 14.265, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0, 'lv project apartment small', 40000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1030, 4, 1751.44, 2868.75, 14.265, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0, 'lv project apartment small', 40000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1031, 4, 1748.65, 2867.74, 14.265, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0, 'lv project apartment small', 40000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1032, 4, 1763.12, 2871.13, 14.265, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0, 'lv project apartment small', 40000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1033, 4, 1760.17, 2870.92, 14.265, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0, 'lv project apartment small', 40000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1034, 4, -2620.37, 832.857, 52.093, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0, 'Appartment 2nd Floor In SF', 80000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1035, 4, 1775.01, 2870.88, 14.265, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0, 'lv project apartment small', 40000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1036, 4, 1772.09, 2871.32, 14.265, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0, 'lv project apartment small', 40000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1037, 4, 1786.45, 2867.55, 14.265, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0, 'lv project apartment small', 40000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1038, 4, 1783.76, 2868.77, 14.265, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0, 'lv project apartment small', 40000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1039, 4, -2618.75, 830.996, 49.984, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0, 'Appartment 1st Floor In SF', 80000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1040, 4, 1796.79, 2861.59, 14.265, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0, 'lv project apartment small', 40000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1041, 4, 1794.38, 2863.32, 14.265, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0, 'lv project apartment small', 40000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1042, 4, 1803.38, 2855.49, 14.265, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0, 'lv project apartment small', 40000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1043, 4, 1789.43, 2733.1, 11.343, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0, 'lv project apartment small', 40000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1044, 4, -2621.68, 802.98, 49.984, 0, 0, 0, 0, 0, 261.06, 1284.29, 1080.25, 0, 4, 0, 0, 0, 'Small House In SF', 30000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1045, 4, -2621.67, 790.744, 48.581, 0, 0, 0, 0, 0, 22.93, 1403.32, 1084.43, 0, 5, 0, 0, 0, 'Small Nice House In SF', 60000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1046, 4, 1803.48, 2855.57, 11.335, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0, 'lv project apartment small', 40000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1047, 4, -2622.51, 782.552, 44.859, 0, 0, 0, 0, 0, 261.06, 1284.29, 1080.25, 0, 4, 0, 0, 0, 'Small House In SF', 30000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1048, 4, 1824.3, 2734.53, 11.343, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0, 'lv project apartment small', 40000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1049, 4, -2622.49, 766.352, 36.835, 0, 0, 0, 0, 0, 261.06, 1284.29, 1080.25, 0, 4, 0, 0, 0, 'Small House In SF', 30000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1050, 4, -2622.51, 758.038, 35.328, 0, 0, 0, 0, 0, 261.06, 1284.29, 1080.25, 0, 4, 0, 0, 0, 'Small House In SF', 30000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1051, 4, -2622.52, 749.841, 31.421, 0, 0, 0, 0, 0, 261.06, 1284.29, 1080.25, 0, 4, 0, 0, 0, 'Small House In SF', 30000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1052, 4, 1663.17, 2754.14, 10.82, 0, 0, 0, 0, 0, 234.22, 1063.89, 1084.21, 0, 6, 0, 0, 0, 'Nice looking house at lv', 300000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1053, 4, 1652.51, 2708.85, 10.826, 0, 0, 0, 0, 0, 226.3, 1114.37, 1080.99, 0, 5, 0, 0, 0, 'huge 2 floor nice looking house at LV', 500000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1054, 4, -2627.54, 735.333, 30.585, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0, 'Appartment 2nd Floor In SF', 80000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1055, 4, 1643.83, 2753.45, 10.82, 0, 0, 0, 0, 0, 234.22, 1063.89, 1084.21, 0, 6, 0, 0, 0, 'Nice looking house at lv', 300000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1056, 4, 1627.15, 2710.76, 10.819, 0, 0, 0, 0, 0, 226.3, 1114.37, 1080.99, 0, 5, 0, 0, 0, 'huge 2 floor nice looking house at LV', 500000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1057, 4, -2625.47, 733.211, 28.011, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0, 'Appartment 1st Floor In SF', 80000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1058, 4, 1626.81, 2754.14, 10.82, 0, 0, 0, 0, 0, 226.3, 1114.37, 1080.99, 0, 5, 0, 0, 0, 'huge 2 floor nice looking house at LV', 500000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1059, 4, 1608.72, 2754.14, 10.82, 0, 0, 0, 0, 0, 234.22, 1063.89, 1084.21, 0, 6, 0, 0, 0, 'Nice looking house at lv', 300000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1060, 4, 1601.25, 2708.85, 10.826, 0, 0, 0, 0, 0, 226.3, 1114.37, 1080.99, 0, 5, 0, 0, 0, 'huge 2 floor nice looking house at LV', 500000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1061, 4, 1599.56, 2757.6, 10.826, 0, 0, 0, 0, 0, 226.3, 1114.37, 1080.99, 0, 5, 0, 0, 0, 'huge 2 floor nice looking house at LV', 500000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1062, 4, 1580.26, 2708.85, 10.826, 0, 0, 0, 0, 0, 226.3, 1114.37, 1080.99, 0, 5, 0, 0, 0, 'huge 2 floor nice looking house at LV', 500000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1063, 4, -2594.19, 733.114, 28.138, 0, 0, 0, 0, 0, 2196.84, -1204.23, 1049.02, 0, 6, 0, 0, 0, '3 Story Condo In SF', 120000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1064, 4, 1570.28, 2711.11, 10.819, 0, 0, 0, 0, 0, 226.3, 1114.37, 1080.99, 0, 5, 0, 0, 0, 'huge 2 floor nice looking house at LV', 500000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1065, 4, -2594.21, 750.871, 33.702, 0, 0, 0, 0, 0, 2196.84, -1204.23, 1049.02, 0, 6, 0, 0, 0, '3 Story Condo In SF', 120000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1066, 4, 1565.47, 2757.04, 10.819, 0, 0, 0, 0, 0, 234.22, 1063.89, 1084.21, 0, 6, 0, 0, 0, 'Nice looking house at lv', 300000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1067, 4, -2594.2, 768.05, 40.018, 0, 0, 0, 0, 0, 2196.84, -1204.23, 1049.02, 0, 6, 0, 0, 0, '3 Story Condo In SF', 120000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1068, 4, 1564.78, 2776.51, 10.819, 0, 0, 0, 0, 0, 234.22, 1063.89, 1084.21, 0, 6, 0, 0, 0, 'Nice looking house at lv', 300000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1069, 4, -2594.19, 785.256, 46.236, 0, 0, 0, 0, 0, 2196.84, -1204.23, 1049.02, 0, 6, 0, 0, 0, '3 Story Condo In SF', 120000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1070, 4, 1565.47, 2793.43, 10.819, 0, 0, 0, 0, 0, 234.22, 1063.89, 1084.21, 0, 6, 0, 0, 0, 'Nice looking house at lv', 300000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1071, 4, 1550.64, 2846.08, 10.826, 0, 0, 0, 0, 0, 226.3, 1114.37, 1080.99, 0, 5, 0, 0, 0, 'huge 2 floor nice looking house at LV', 500000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1072, 4, 1575.89, 2844.17, 10.819, 0, 0, 0, 0, 0, 226.3, 1114.37, 1080.99, 0, 5, 0, 0, 0, 'huge 2 floor nice looking house at LV', 500000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1073, 4, 1601.78, 2846.08, 10.826, 0, 0, 0, 0, 0, 226.3, 1114.37, 1080.99, 0, 5, 0, 0, 0, 'huge 2 floor nice looking house at LV', 500000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1074, 4, 1618.36, 2800.79, 10.82, 0, 0, 0, 0, 0, 226.3, 1114.37, 1080.99, 0, 5, 0, 0, 0, 'huge 2 floor nice looking house at LV', 500000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1075, 4, 1622.73, 2846.07, 10.826, 0, 0, 0, 0, 0, 226.3, 1114.37, 1080.99, 0, 5, 0, 0, 0, 'huge 2 floor nice looking house at LV', 500000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1076, 4, 1637.79, 2801.48, 10.82, 0, 0, 0, 0, 0, 226.3, 1114.37, 1080.99, 0, 5, 0, 0, 0, 'huge 2 floor nice looking house at LV', 500000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1077, 4, 1632.76, 2843.65, 10.82, 0, 0, 0, 0, 0, 226.3, 1114.37, 1080.99, 0, 5, 0, 0, 0, 'huge 2 floor nice looking house at LV', 500000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1078, 4, 1654.7, 2800.79, 10.82, 0, 0, 0, 0, 0, 234.22, 1063.89, 1084.21, 0, 6, 0, 0, 0, 'Nice looking house at lv', 300000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1079, 4, -2240.52, 753.484, 49.376, 0, 0, 0, 0, 0, 2196.84, -1204.23, 1049.02, 0, 6, 0, 0, 0, '3 Story Condo In SF', 120000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1080, 4, 1664.77, 2846.08, 10.826, 0, 0, 0, 0, 0, 226.3, 1114.37, 1080.99, 0, 5, 0, 0, 0, 'huge 2 floor nice looking house at LV', 500000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1081, 4, 1672.95, 2800.79, 10.819, 0, 0, 0, 0, 0, 234.22, 1063.89, 1084.21, 0, 6, 0, 0, 0, 'Nice looking house at lv', 300000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1082, 4, -2240.53, 786.156, 49.377, 0, 0, 0, 0, 0, 2196.84, -1204.23, 1049.02, 0, 6, 0, 0, 0, '3 Story Condo In SF', 120000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1083, 4, -2223.7, 795.716, 49.434, 0, 0, 0, 0, 0, 2196.84, -1204.23, 1049.02, 0, 6, 0, 0, 0, '3 Story Condo In SF', 120000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1084, 4, 1555.97, 2658.52, 10.82, 0, 0, 0, 0, 0, 234.22, 1063.89, 1084.21, 0, 6, 0, 0, 0, 'Nice looking house at lv', 300000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1085, 4, -2205.42, 795.726, 50.481, 0, 0, 0, 0, 0, 2196.84, -1204.23, 1049.02, 0, 6, 0, 0, 0, '3 Story Condo In SF', 120000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1086, 4, 1573, 2657.83, 10.82, 0, 0, 0, 0, 0, 234.22, 1063.89, 1084.21, 0, 6, 0, 0, 0, 'Nice looking house at lv', 300000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1087, 4, 1607.61, 2679.27, 10.819, 0, 0, 0, 0, 0, 234.22, 1063.89, 1084.21, 0, 6, 0, 0, 0, 'Nice looking house at lv', 300000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1088, 4, -2187.03, 795.701, 57.556, 0, 0, 0, 0, 0, 2196.84, -1204.23, 1049.02, 0, 6, 0, 0, 0, '3 Story Condo In SF', 120000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1089, 4, 1611.76, 2648.22, 10.826, 0, 0, 0, 0, 0, 226.3, 1114.37, 1080.99, 0, 5, 0, 0, 0, 'huge 2 floor nice looking house at LV', 500000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1090, 4, -2168.82, 795.759, 64.971, 0, 0, 0, 0, 0, 2196.84, -1204.23, 1049.02, 0, 6, 0, 0, 0, '3 Story Condo In SF', 120000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1091, 4, -2159.21, 786.088, 69.515, 0, 0, 0, 0, 0, 2196.84, -1204.23, 1049.02, 0, 6, 0, 0, 0, '3 Story Condo In SF', 120000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1092, 4, -2159.18, 770.001, 69.515, 0, 0, 0, 0, 0, 2196.84, -1204.23, 1049.02, 0, 6, 0, 0, 0, '3 Story Condo In SF', 120000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1093, 4, 1265.47, 2610.03, 10.819, 0, 0, 0, 0, 0, 234.22, 1063.89, 1084.21, 0, 6, 0, 0, 0, 'Nice looking house at lv', 300000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1094, 4, -2159.23, 753.492, 69.514, 0, 0, 0, 0, 0, 2196.84, -1204.23, 1049.02, 0, 6, 0, 0, 0, '3 Story Condo In SF', 120000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1095, 4, 1225.27, 2584.94, 10.819, 0, 0, 0, 0, 0, 226.3, 1114.37, 1080.99, 0, 5, 0, 0, 0, 'huge 2 floor nice looking house at LV', 500000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1096, 4, 1223.02, 2616.85, 10.826, 0, 0, 0, 0, 0, 226.3, 1114.37, 1080.99, 0, 5, 0, 0, 0, 'huge 2 floor nice looking house at LV', 500000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1097, 4, -2168.52, 744.007, 64.976, 0, 0, 0, 0, 0, 2196.84, -1204.23, 1049.02, 0, 6, 0, 0, 0, '3 Story Condo In SF', 120000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1098, 4, -2186.9, 744.005, 57.555, 0, 0, 0, 0, 0, 2196.84, -1204.23, 1049.02, 0, 6, 0, 0, 0, '3 Story Condo In SF', 120000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1099, 4, -2205.46, 744.001, 50.482, 0, 0, 0, 0, 0, 2196.84, -1204.23, 1049.02, 0, 6, 0, 0, 0, '3 Story Condo In SF', 120000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1100, 4, 1731.8, 2855.49, 11.335, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0, 'lv project apartment small', 40000, 1, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1101, 4, -2223.71, 743.986, 49.433, 0, 0, 0, 0, 0, 2196.84, -1204.23, 1049.02, 0, 6, 0, 0, 0, '3 Story Condo In SF', 120000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1102, 4, -2238.31, 1154.14, 59.692, 0, 0, 0, 0, 0, 226.3, 1114.37, 1080.99, 0, 5, 0, 0, 0, '6 Story Condo In SF', 450000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1103, 4, 2651.65, 1978.84, 10.82, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0, 'lv project apartment small', 40000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1104, 4, 2649.77, 1978.84, 10.82, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0, 'lv project apartment small', 40000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1105, 4, 2642.47, 1978.84, 10.82, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0, 'lv project apartment small', 40000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1106, 4, 2640.47, 1978.84, 10.819, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0, 'lv project apartment small', 40000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1107, 4, 2633.06, 1978.84, 10.819, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0, 'lv project apartment small', 40000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1108, 4, -2238.36, 1135.89, 67.256, 0, 0, 0, 0, 0, 226.3, 1114.37, 1080.99, 0, 5, 0, 0, 0, '5 Story Condo In SF', 500000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1109, 4, 2631.15, 1978.84, 10.819, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0, 'lv project apartment small', 40000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1110, 4, 2623.89, 1978.84, 10.819, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0, 'lv project apartment small', 40000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1111, 4, 2623.87, 1978.84, 14.116, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0, 'lv project apartment small', 40000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1112, 4, 2631.33, 1978.84, 14.116, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0, 'lv project apartment small', 40000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1113, 4, 2633.24, 1978.84, 14.116, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0, 'lv project apartment small', 40000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1114, 4, 2640.46, 1978.84, 14.116, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0, 'lv project apartment small', 40000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1115, 4, 2642.55, 1978.84, 14.116, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0, 'lv project apartment small', 40000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1116, 4, 2649.89, 1978.84, 14.116, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0, 'lv project apartment small', 40000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1117, 4, -2238.36, 1117.54, 74.816, 0, 0, 0, 0, 0, 2196.84, -1204.23, 1049.02, 0, 6, 0, 0, 0, '3 Story Condo In SF', 120000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1118, 4, 2651.66, 1978.84, 14.116, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0, 'lv project apartment small', 40000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1119, 4, 2659.23, 1978.84, 14.116, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0, 'lv project apartment small', 40000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1120, 4, 2656.5, 1968.82, 14.116, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0, 'lv project apartment small', 40000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1121, 4, 2654.39, 1968.82, 14.116, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0, 'lv project apartment small', 40000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1122, 4, 2647.14, 1968.82, 14.116, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0, 'lv project apartment small', 40000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1123, 4, 2645.16, 1968.82, 14.116, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0, 'lv project apartment small', 40000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1124, 4, -2239.76, 1070.74, 81.024, 0, 0, 0, 0, 0, 2196.84, -1204.23, 1049.02, 0, 6, 0, 0, 0, '3 Story Condo In SF', 120000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1125, 4, 2637.68, 1968.82, 14.116, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0, 'lv project apartment small', 40000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1126, 4, 2635.83, 1968.82, 14.116, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0, 'lv project apartment small', 40000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1127, 4, -2239.75, 1054.09, 82.845, 0, 0, 0, 0, 0, 2196.84, -1204.23, 1049.02, 0, 6, 0, 0, 0, '3 Story Condo In SF', 120000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1128, 4, 2628.55, 1968.82, 14.116, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0, 'lv project apartment small', 40000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1129, 4, 2626.6, 1968.82, 14.116, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0, 'lv project apartment small', 40000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1130, 4, -2239.75, 1037.69, 83.849, 0, 0, 0, 0, 0, 2196.84, -1204.23, 1049.02, 0, 6, 0, 0, 0, '3 Story Condo In SF', 120000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1131, 4, 2645.48, 2019.21, 10.816, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0, 'lv project apartment small', 40000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1132, 4, 2643.76, 2019.21, 10.815, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0, 'lv project apartment small', 40000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1133, 4, 2636.22, 2019.21, 10.819, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0, 'lv project apartment small', 40000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1134, 4, 2634.43, 2019.21, 10.819, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0, 'lv project apartment small', 40000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1135, 4, 2626.93, 2019.21, 10.819, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0, 'lv project apartment small', 40000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1136, 4, -2230.58, 1028, 83.843, 0, 0, 0, 0, 0, 2196.84, -1204.23, 1049.02, 0, 6, 0, 0, 0, '3 Story Condo In SF', 120000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1137, 4, 2625.15, 2019.21, 10.819, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0, 'lv project apartment small', 40000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1138, 4, 2617.69, 2019.21, 14.116, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0, 'lv project apartment small', 40000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1139, 4, 2625.16, 2019.21, 14.116, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0, 'lv project apartment small', 40000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1140, 4, 2627.05, 2019.21, 14.116, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0, 'lv project apartment small', 40000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1141, 4, 2634.48, 2019.21, 14.116, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0, 'lv project apartment small', 40000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1142, 4, -2169.63, 1028.01, 80.007, 0, 0, 0, 0, 0, 2196.84, -1204.23, 1049.02, 0, 6, 0, 0, 0, '3 Story Condo In SF', 120000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1143, 4, 2636.22, 2019.21, 14.116, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0, 'lv project apartment small', 40000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1144, 4, 2643.66, 2019.21, 14.116, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0, 'lv project apartment small', 40000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1145, 4, 2645.58, 2019.21, 14.116, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0, 'lv project apartment small', 40000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1146, 4, 2653.25, 2019.21, 14.116, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0, 'lv project apartment small', 40000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1147, 4, 2650.33, 2029.23, 14.116, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0, 'lv project apartment small', 40000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1148, 4, 2648.34, 2029.23, 14.116, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0, 'lv project apartment small', 40000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1149, 4, 2640.71, 2029.23, 14.116, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0, 'lv project apartment small', 40000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1150, 4, 2638.92, 2029.23, 14.116, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0, 'lv project apartment small', 40000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1151, 4, 2631.54, 2029.23, 14.116, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0, 'lv project apartment small', 40000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1152, 4, 2629.68, 2029.23, 14.116, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0, 'lv project apartment small', 40000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1153, 4, 2622.22, 2029.23, 14.116, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0, 'lv project apartment small', 40000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1154, 4, 2620.37, 2029.23, 14.116, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0, 'lv project apartment small', 40000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1155, 4, -2160.15, 1030.61, 80.007, 0, 0, 0, 0, 0, 2196.84, -1204.23, 1049.02, 0, 6, 0, 0, 0, '3 Story Condo In SF', 120000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1156, 4, 2652.92, 2019.21, 10.818, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0, 'lv project apartment small', 40000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1157, 4, 2617.54, 2019.21, 10.812, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0, 'lv project apartment small', 40000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1158, 4, -2160.15, 1048.61, 80.007, 0, 0, 0, 0, 0, 2196.84, -1204.23, 1049.02, 0, 6, 0, 0, 0, '3 Story Condo In SF', 120000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1159, 4, 2620.54, 2029.23, 10.82, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0, 'lv project apartment small', 40000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1160, 4, 2622.34, 2029.23, 10.82, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0, 'lv project apartment small', 40000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1161, 4, 2629.8, 2029.23, 10.82, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0, 'lv project apartment small', 40000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1162, 4, 2631.65, 2029.23, 10.82, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0, 'lv project apartment small', 40000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1163, 4, 2639.07, 2029.23, 10.82, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0, 'lv project apartment small', 40000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1164, 4, 2641.14, 2029.23, 10.82, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0, 'lv project apartment small', 40000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1165, 4, 2648.34, 2029.23, 10.82, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0, 'lv project apartment small', 40000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1166, 4, 2650.35, 2029.23, 10.812, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0, 'lv project apartment small', 40000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1167, 4, 2623.65, 2039.4, 10.82, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0, 'lv project apartment small', 40000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1168, 4, 2623.65, 2046.99, 10.812, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0, 'lv project apartment small', 40000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1169, 4, 2623.65, 2048.81, 10.812, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0, 'lv project apartment small', 40000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1170, 4, 2623.65, 2056.16, 10.812, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0, 'lv project apartment small', 40000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1171, 4, 2623.65, 2058.1, 10.812, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0, 'lv project apartment small', 40000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1172, 4, 2623.65, 2065.44, 10.82, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0, 'lv project apartment small', 40000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1173, 4, 2623.65, 2067.4, 10.82, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0, 'lv project apartment small', 40000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1174, 4, 2623.65, 2074.85, 10.812, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0, 'lv project apartment small', 40000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1175, 4, 2623.65, 2074.93, 14.116, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0, 'lv project apartment small', 40000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1176, 4, 2623.65, 2067.53, 14.116, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0, 'lv project apartment small', 40000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1177, 4, 2623.65, 2065.52, 14.116, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0, 'lv project apartment small', 40000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1178, 4, 2623.65, 2058.19, 14.116, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0, 'lv project apartment small', 40000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1179, 4, 2623.65, 2056.03, 14.116, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0, 'lv project apartment small', 40000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1180, 4, 2623.65, 2048.66, 14.116, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0, 'lv project apartment small', 40000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1181, 4, 2206.32, 691.25, 11.46, 0, 0, 0, 0, 0, 447, 1397.09, 1084.3, 0, 2, 0, 0, 0, 'Medium house at LV', 150000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1182, 4, 2623.65, 2046.85, 14.116, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0, 'lv project apartment small', 40000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1183, 4, 2623.65, 2039.52, 14.116, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0, 'lv project apartment small', 40000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1184, 4, 2613.64, 2042.23, 14.116, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0, 'lv project apartment small', 40000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1185, 4, 2613.64, 2044.19, 14.116, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0, 'lv project apartment small', 40000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1186, 4, 2613.64, 2051.56, 14.116, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0, 'lv project apartment small', 40000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1187, 4, 2613.64, 2053.43, 14.116, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0, 'lv project apartment small', 40000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1188, 4, 2613.64, 2060.92, 14.116, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0, 'lv project apartment small', 40000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1189, 4, 2613.64, 2062.75, 14.116, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0, 'lv project apartment small', 40000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1190, 4, 2613.64, 2070.18, 14.116, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0, 'lv project apartment small', 40000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1191, 4, 2613.64, 2072.07, 14.116, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0, 'lv project apartment small', 40000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1192, 4, -2160.15, 1066.91, 80.007, 0, 0, 0, 0, 0, 2196.84, -1204.23, 1049.02, 0, 6, 0, 0, 0, '3 Story Condo In SF', 120000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1193, 4, 2626.63, 1968.82, 10.82, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0, 'lv project apartment small', 40000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1194, 4, 2628.41, 1968.82, 10.82, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0, 'lv project apartment small', 40000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1195, 4, 2635.94, 1968.82, 10.82, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0, 'lv project apartment small', 40000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1196, 4, 2637.82, 1968.82, 10.82, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0, 'lv project apartment small', 40000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1197, 4, 2645.3, 1968.82, 10.82, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0, 'lv project apartment small', 40000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1198, 4, 2647.13, 1968.82, 10.82, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0, 'lv project apartment small', 40000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1199, 4, 2654.56, 1968.82, 10.82, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0, 'lv project apartment small', 40000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1200, 4, 2656.5, 1968.82, 10.82, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0, 'lv project apartment small', 40000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1201, 4, -2158.36, 1117.61, 74.486, 0, 0, 0, 0, 0, 2196.84, -1204.23, 1049.02, 0, 6, 0, 0, 0, '3 Story Condo In SF', 120000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1202, 4, 2659.19, 1978.84, 10.819, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0, 'lv project apartment small', 40000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1203, 4, -2158.36, 1148.65, 61.849, 0, 0, 0, 0, 0, 226.3, 1114.37, 1080.99, 0, 5, 0, 0, 0, '5 Story Condo In SF', 500000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1204, 4, 2613.64, 2071.98, 10.819, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0, 'lv project apartment small', 40000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1205, 4, 2613.64, 2070.12, 10.819, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0, 'lv project apartment small', 40000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1206, 4, 2613.64, 2062.79, 10.812, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0, 'lv project apartment small', 40000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1207, 4, 2613.63, 2060.82, 10.812, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0, 'lv project apartment small', 40000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1208, 4, 2613.64, 2053.51, 10.812, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0, 'lv project apartment small', 40000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1209, 4, 2613.64, 2051.58, 10.819, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0, 'lv project apartment small', 40000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1210, 4, 2613.64, 2044.13, 10.819, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0, 'lv project apartment small', 40000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1211, 4, 2613.64, 2042.09, 10.819, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0, 'lv project apartment small', 40000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1212, 4, -2172.59, 1163.75, 55.726, 0, 0, 0, 0, 0, 226.3, 1114.37, 1080.99, 0, 5, 0, 0, 0, '6 Story Condo In SF', 450000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1213, 4, -2189.18, 1163.76, 55.726, 0, 0, 0, 0, 0, 226.3, 1114.37, 1080.99, 0, 5, 0, 0, 0, '6 Story Condo In SF', 450000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1214, 4, -2205.8, 1163.76, 55.726, 0, 0, 0, 0, 0, 226.3, 1114.37, 1080.99, 0, 5, 0, 0, 0, '6 Story Condo In SF', 450000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1215, 4, -2222.19, 1163.75, 55.726, 0, 0, 0, 0, 0, 226.3, 1114.37, 1080.99, 0, 5, 0, 0, 0, '6 Story Condo In SF', 450000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1216, 4, -2102.54, 1159.83, 53.265, 0, 0, 0, 0, 0, 2196.84, -1204.23, 1049.02, 0, 6, 0, 0, 0, '3 Story Condo In SF', 120000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1217, 4, -2084.2, 1159.83, 49.953, 0, 0, 0, 0, 0, 2196.84, -1204.23, 1049.02, 0, 6, 0, 0, 0, '3 Story Condo In SF', 120000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1218, 4, -2065.95, 1159.84, 46.648, 0, 0, 0, 0, 0, 2196.84, -1204.23, 1049.02, 0, 6, 0, 0, 0, '3 Story Condo In SF', 120000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1219, 4, 2013.25, 730.357, 11.453, 0, 0, 0, 0, 0, 234.22, 1063.89, 1084.21, 0, 6, 0, 0, 0, 'Nice looking house at lv', 300000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1220, 4, 2014.13, 775.195, 11.46, 0, 0, 0, 0, 0, 447, 1397.09, 1084.3, 0, 2, 0, 0, 0, 'Medium house at LV', 150000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1221, 4, 2042.44, 731.265, 11.46, 0, 0, 0, 0, 0, 447, 1397.09, 1084.3, 0, 2, 0, 0, 0, 'Medium house at LV', 150000, 950, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1222, 4, 2043.24, 776.096, 11.453, 0, 0, 0, 0, 0, 447, 1397.09, 1084.3, 0, 2, 0, 0, 0, 'Medium house at LV', 150000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1223, 4, -1761.05, 1174.03, 25.125, 0, 0, 0, 0, 0, 226.3, 1114.37, 1080.99, 0, 5, 0, 0, 0, '5 Story Condo In SF', 500000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1224, 4, 2065.13, 729.822, 11.468, 0, 0, 0, 0, 0, 447, 1397.09, 1084.3, 0, 2, 0, 0, 0, 'Medium house at LV', 150000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1225, 4, -1742.62, 1174.05, 25.125, 0, 0, 0, 0, 0, 226.3, 1114.37, 1080.99, 0, 5, 0, 0, 0, '6 Story Condo In SF', 450000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1226, 4, 2071.62, 776.637, 11.46, 0, 0, 0, 0, 0, 447, 1397.09, 1084.3, 0, 2, 0, 0, 0, 'Medium house at LV', 150000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1227, 4, 2093.41, 730.359, 11.453, 0, 0, 0, 0, 0, 447, 1397.09, 1084.3, 0, 2, 0, 0, 0, 'Medium house at LV', 150000, 1500, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1228, 4, 2094, 775.195, 11.453, 0, 0, 0, 0, 0, 447, 1397.09, 1084.3, 0, 2, 0, 0, 0, 'Medium house at LV', 150000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1229, 4, -1728.32, 1158.79, 30.451, 0, 0, 0, 0, 0, 226.3, 1114.37, 1080.99, 0, 5, 0, 0, 0, '5 Story Condo In SF', 500000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1230, 4, 2122.3, 731.264, 11.46, 0, 0, 0, 0, 0, 447, 1397.09, 1084.3, 0, 2, 0, 0, 0, 'Medium house at LV', 150000, 500, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1231, 4, 2123.41, 776.099, 11.444, 0, 0, 0, 0, 0, 447, 1397.09, 1084.3, 0, 2, 0, 0, 0, 'Medium house at LV', 150000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1232, 4, -1728.31, 1138.95, 38.568, 0, 0, 0, 0, 0, 226.3, 1114.37, 1080.99, 0, 5, 0, 0, 0, '5 Story Condo In SF', 500000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1233, 4, 2169.36, 772.38, 11.46, 0, 0, 0, 0, 0, 447, 1397.09, 1084.3, 0, 2, 0, 0, 0, 'Medium house at LV', 150000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1234, 4, 2177.18, 690.351, 11.46, 0, 0, 0, 0, 0, 447, 1397.09, 1084.3, 0, 2, 0, 0, 0, 'Medium house at LV', 150000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1235, 4, 2228.68, 689.807, 11.46, 0, 0, 0, 0, 0, 447, 1397.09, 1084.3, 0, 2, 0, 0, 0, 'Medium house at LV', 150000, 5000, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1236, 4, 2206, 736.635, 11.468, 0, 0, 0, 0, 0, 447, 1397.09, 1084.3, 0, 2, 0, 0, 0, 'Medium house at LV', 150000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1237, 4, 2177.61, 736.101, 11.46, 0, 0, 0, 0, 0, 447, 1397.09, 1084.3, 0, 2, 0, 0, 0, 'Medium house at LV', 150000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1238, 4, 2228.25, 735.2, 11.46, 0, 0, 0, 0, 0, 447, 1397.09, 1084.3, 0, 2, 0, 0, 0, 'Medium house at LV', 150000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1239, 4, -1929.89, 1190.53, 45.445, 0, 0, 0, 0, 0, 234.22, 1063.89, 358.5, 0, 6, 0, 0, 0, '4 Story Condo In SF', 400000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1240, 4, 2256.98, 690.343, 11.453, 0, 0, 0, 0, 0, 447, 1397.09, 1084.3, 0, 2, 0, 0, 0, 'Medium house at LV', 150000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1241, 4, -1915.56, 1190.54, 45.452, 0, 0, 0, 0, 0, 234.22, 1063.89, 358.5, 0, 6, 0, 0, 0, '4 Story Condo In SF', 400000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1242, 4, 2257.52, 736.108, 11.46, 0, 0, 0, 0, 0, 447, 1397.09, 1084.3, 0, 2, 0, 0, 0, 'Medium house at LV', 150000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1243, 4, -1872.07, 1146.71, 45.445, 0, 0, 0, 0, 0, 234.22, 1063.89, 358.5, 0, 6, 0, 0, 0, '4 Story Condo In SF', 400000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1244, 4, 2317.15, 690.35, 11.46, 0, 0, 0, 0, 0, 447, 1397.09, 1084.3, 0, 2, 0, 0, 0, 'Medium house at LV', 150000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1245, 4, -1872.08, 1125.38, 45.445, 0, 0, 0, 0, 0, 234.22, 1063.89, 358.5, 0, 6, 0, 0, 0, '4 Story Condo In SF', 400000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1246, 4, 2346.6, 736.635, 11.468, 0, 0, 0, 0, 0, 447, 1397.09, 1084.3, 0, 2, 0, 0, 0, 'Medium house at LV', 150000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1247, 4, 2346.35, 691.255, 11.46, 0, 0, 0, 0, 0, 447, 1397.09, 1084.3, 0, 2, 0, 0, 0, 'Medium house at LV', 150000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1248, 4, 2369.11, 735.196, 11.46, 0, 0, 0, 0, 0, 447, 1397.09, 1084.3, 0, 2, 0, 0, 0, 'Medium house at LV', 150000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1249, 4, -1901.41, 1203.19, 42.377, 0, 0, 0, 0, 0, 226.3, 1114.37, 1080.99, 0, 5, 0, 0, 0, '5 Story Condo In SF', 500000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1250, 4, 2368.45, 689.799, 11.46, 0, 0, 0, 0, 0, 447, 1397.09, 1084.3, 0, 2, 0, 0, 0, 'Medium house at LV', 150000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1251, 4, 2398.36, 736.103, 11.46, 0, 0, 0, 0, 0, 447, 1397.09, 1084.3, 0, 2, 0, 0, 0, 'Medium house at LV', 150000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1252, 4, 2396.96, 690.342, 11.453, 0, 0, 0, 0, 0, 447, 1397.09, 1084.3, 0, 2, 0, 0, 0, 'Medium house at LV', 150000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1253, 4, 2450.27, 742.539, 11.46, 0, 0, 0, 0, 0, 447, 1397.09, 1084.3, 0, 2, 0, 0, 0, 'Medium house at LV', 150000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1254, 4, -1852.62, 1162.22, 40.942, 0, 0, 0, 0, 0, 226.3, 1114.37, 1080.99, 0, 5, 0, 0, 0, '5 Story Condo In SF', 500000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1255, 4, 2450.81, 714.308, 11.468, 0, 0, 0, 0, 0, 447, 1397.09, 1084.3, 0, 2, 0, 0, 0, 'Medium house at LV', 150000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1256, 4, 2449.23, 689.736, 11.46, 0, 0, 0, 0, 0, 447, 1397.09, 1084.3, 0, 2, 0, 0, 0, 'Medium house at LV', 150000, 1, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1257, 4, 2450.27, 662.638, 11.46, 0, 0, 0, 0, 0, 447, 1397.09, 1084.3, 0, 2, 0, 0, 0, 'Medium house at LV', 150000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1258, 4, 2397.68, 656.109, 11.46, 0, 0, 0, 0, 0, 447, 1397.09, 1084.3, 0, 2, 0, 0, 0, 'Medium house at LV', 150000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1259, 4, 2368.38, 655.211, 11.46, 0, 0, 0, 0, 0, 447, 1397.09, 1084.3, 0, 2, 0, 0, 0, 'Medium house at LV', 150000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1260, 4, 2346.09, 656.638, 11.46, 0, 0, 0, 0, 0, 447, 1397.09, 1084.3, 0, 2, 0, 0, 0, 'Medium house at LV', 150000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1261, 4, 2317.81, 656.103, 11.453, 0, 0, 0, 0, 0, 447, 1397.09, 1084.3, 0, 2, 0, 0, 0, 'Medium house at LV', 150000, 100, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1262, 4, -1831.8, 1165.88, 33.682, 0, 0, 0, 0, 0, 234.22, 1063.89, 358.5, 0, 6, 0, 0, 0, '4 Story Condo In SF', 400000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1263, 4, 2258.11, 655.978, 11.453, 0, 0, 0, 0, 0, 447, 1397.09, 1084.3, 0, 2, 0, 0, 0, 'Medium house at LV', 150000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1264, 4, 2229.04, 655.184, 11.46, 0, 0, 0, 0, 0, 447, 1397.09, 1084.3, 0, 2, 0, 0, 0, 'Medium house at LV', 150000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1265, 4, 2206.41, 656.63, 11.468, 0, 0, 0, 0, 0, 447, 1397.09, 1084.3, 0, 2, 0, 0, 0, 'Medium house at LV', 150000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1266, 4, 2178.16, 655.993, 11.46, 0, 0, 0, 0, 0, 447, 1397.09, 1084.3, 0, 2, 0, 0, 0, 'Medium house at LV', 150000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1267, 4, -1732.27, 1115.52, 45.445, 0, 0, 0, 0, 0, 226.3, 1114.37, 1080.99, 0, 5, 0, 0, 0, '6 Story Condo In SF', 450000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1268, 4, 2123.27, 651.313, 11.46, 0, 0, 0, 0, 0, 447, 1397.09, 1084.3, 0, 2, 0, 0, 0, 'Medium house at LV', 150000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1269, 4, 2120.44, 696.091, 11.453, 0, 0, 0, 0, 0, 447, 1397.09, 1084.3, 0, 2, 0, 0, 0, 'Medium house at LV', 150000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1270, 4, -1776.18, 1115.52, 45.445, 0, 0, 0, 0, 0, 226.3, 1114.37, 1080.99, 0, 5, 0, 0, 0, '6 Story Condo In SF', 450000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1271, 4, 2091.24, 695.188, 11.46, 0, 0, 0, 0, 0, 447, 1397.09, 1084.3, 0, 2, 0, 0, 0, 'Medium house at LV', 150000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1272, 4, 2094.12, 650.404, 11.46, 0, 0, 0, 0, 0, 447, 1397.09, 1084.3, 0, 2, 0, 0, 0, 'Medium house at LV', 150000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1273, 4, -1780.11, 1138.79, 38.585, 0, 0, 0, 0, 0, 234.22, 1063.89, 358.5, 0, 6, 0, 0, 0, '4 Story Condo In SF', 400000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1274, 4, 2068.96, 696.629, 11.468, 0, 0, 0, 0, 0, 447, 1397.09, 1084.3, 0, 2, 0, 0, 0, 'Medium house at LV', 150000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1275, 4, -1780.12, 1158.76, 30.448, 0, 0, 0, 0, 0, 234.22, 1063.89, 358.5, 0, 6, 0, 0, 0, '4 Story Condo In SF', 400000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1276, 4, 2065.82, 649.861, 11.468, 0, 0, 0, 0, 0, 447, 1397.09, 1084.3, 0, 2, 0, 0, 0, 'Medium house at LV', 150000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1277, 4, 2040.71, 696.086, 11.453, 0, 0, 0, 0, 0, 447, 1397.09, 1084.3, 0, 2, 0, 0, 0, 'Medium house at LV', 150000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1278, 4, 2043.26, 651.311, 11.46, 0, 0, 0, 0, 0, 447, 1397.09, 1084.3, 0, 2, 0, 0, 0, 'Medium house at LV', 150000, 150, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1279, 4, 2011.61, 695.187, 11.46, 0, 0, 0, 0, 0, 447, 1397.09, 1084.3, 0, 2, 0, 0, 0, 'Medium house at LV', 150000, 400, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1280, 4, 2013.96, 650.404, 11.46, 0, 0, 0, 0, 0, 447, 1397.09, 1084.3, 0, 2, 0, 0, 0, 'Medium house at LV', 150000, 150, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1281, 4, -1820.68, 1117.26, 46.445, 0, 0, 0, 0, 0, 234.22, 1063.89, 358.5, 0, 6, 0, 0, 0, '4 Story Condo In SF', 400000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1282, 4, -1842.59, 1115.52, 45.445, 0, 0, 0, 0, 0, 234.22, 1063.89, 358.5, 0, 6, 0, 0, 0, '4 Story Condo In SF', 400000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1283, 4, -1860.83, 1115.51, 45.445, 0, 0, 0, 0, 0, 234.22, 1063.89, 358.5, 0, 6, 0, 0, 0, '4 Story Condo In SF', 400000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1284, 4, 2571.53, 719.404, 14.739, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0, 'lv project apartment small', 40000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1285, 4, 2579.08, 719.478, 14.739, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0, 'lv project apartment small', 40000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1286, 4, -2024.5, 1275.93, 7.187, 0, 0, 0, 0, 0, 234.22, 1063.89, 358.5, 0, 6, 0, 0, 0, '4 Story Condo In SF', 400000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1287, 4, 2571.53, 713.242, 14.739, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0, 'lv project apartment small', 40000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1288, 4, -2029, 1275.91, 7.187, 0, 0, 0, 0, 0, 234.22, 1063.89, 358.5, 0, 6, 0, 0, 0, '4 Story Condo In SF', 400000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1289, 4, 2579.08, 713.231, 14.739, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0, 'lv project apartment small', 40000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1290, 4, 2579.08, 719.545, 10.82, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0, 'lv project apartment small', 40000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1291, 4, 2571.7, 719.518, 10.82, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0, 'lv project apartment small', 40000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1292, 4, -2043.83, 1261.38, 9.204, 0, 0, 0, 0, 0, 2196.84, -1204.23, 1049.02, 0, 6, 0, 0, 0, '3 Story Condo In SF', 120000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1293, 4, 2621.06, 719.538, 10.82, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0, 'lv project apartment small', 40000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1294, 4, 2613.51, 719.58, 10.82, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0, 'lv project apartment small', 40000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1295, 4, 2613.51, 719.468, 14.739, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0, 'lv project apartment small', 40000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1296, 4, 2621.06, 719.403, 14.739, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0, 'lv project apartment small', 40000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1297, 4, 2613.5, 713.375, 14.739, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0, 'lv project apartment small', 40000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1298, 4, 2621.06, 713.229, 14.739, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0, 'lv project apartment small', 40000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1299, 4, -2383.11, 1336.27, 12.805, 0, 0, 0, 0, 0, 2196.84, -1204.23, 1049.02, 0, 6, 0, 0, 0, '3 Story Condo In SF', 120000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1300, 4, 2540.06, 719.542, 10.82, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0, 'lv project apartment small', 40000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1301, 4, 2532.51, 719.578, 10.82, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0, 'lv project apartment small', 40000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1302, 4, -2351.14, 1336.15, 12.786, 0, 0, 0, 0, 0, 2196.84, -1204.23, 1049.02, 0, 6, 0, 0, 0, '3 Story Condo In SF', 120000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1303, 4, 2532.5, 719.581, 14.739, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0, 'lv project apartment small', 40000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1304, 4, 2540.06, 719.528, 14.739, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0, 'lv project apartment small', 40000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1305, 4, 2532.51, 713.226, 14.739, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0, 'lv project apartment small', 40000, 1, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1306, 4, 2540.06, 713.196, 14.739, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0, 'lv project apartment small', 40000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1307, 4, -2351.15, 1318.02, 16.224, 0, 0, 0, 0, 0, 2196.84, -1204.23, 1049.02, 0, 6, 0, 0, 0, '3 Story Condo In SF', 120000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1308, 4, -2351.16, 1299.56, 19.584, 0, 0, 0, 0, 0, 2196.84, -1204.23, 1049.02, 0, 6, 0, 0, 0, '3 Story Condo In SF', 120000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1309, 4, -2351.14, 1281.29, 22.944, 0, 0, 0, 0, 0, 2196.84, -1204.23, 1049.02, 0, 6, 0, 0, 0, '3 Story Condo In SF', 120000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1310, 4, 2660.08, 719.421, 10.819, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0, 'lv project apartment small', 40000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1311, 4, 2652.53, 719.485, 10.82, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0, 'lv project apartment small', 40000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1312, 4, 2652.53, 719.519, 14.739, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0, 'lv project apartment small', 40000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1313, 4, -2351.15, 1262.93, 26.317, 0, 0, 0, 0, 0, 2196.84, -1204.23, 1049.02, 0, 6, 0, 0, 0, '3 Story Condo In SF', 120000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1314, 4, 2660.08, 719.576, 14.739, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0, 'lv project apartment small', 40000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1315, 4, -2351.15, 1244.69, 29.679, 0, 0, 0, 0, 0, 2196.84, -1204.23, 1049.02, 0, 6, 0, 0, 0, '3 Story Condo In SF', 120000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1316, 4, 2652.53, 713.158, 10.82, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0, 'lv project apartment small', 40000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1317, 4, 2660.08, 713.316, 10.82, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0, 'lv project apartment small', 40000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1318, 4, -2351.15, 1226.37, 33.03, 0, 0, 0, 0, 0, 2196.84, -1204.23, 1049.02, 0, 6, 0, 0, 0, '3 Story Condo In SF', 120000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1319, 4, 2652.53, 713.269, 14.739, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0, 'lv project apartment small', 40000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1320, 4, -2383.13, 1226.35, 33.042, 0, 0, 0, 0, 0, 2196.84, -1204.23, 1049.02, 0, 6, 0, 0, 0, '3 Story Condo In SF', 120000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1321, 4, 2660.08, 713.333, 14.739, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0, 'lv project apartment small', 40000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1322, 4, -2383.09, 1244.63, 29.686, 0, 0, 0, 0, 0, 2196.84, -1204.23, 1049.02, 0, 6, 0, 0, 0, '3 Story Condo In SF', 120000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1323, 4, 2613.51, 713.393, 10.82, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0, 'lv project apartment small', 40000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1324, 4, -2383.14, 1262.96, 26.329, 0, 0, 0, 0, 0, 2196.84, -1204.23, 1049.02, 0, 6, 0, 0, 0, '3 Story Condo In SF', 120000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1325, 4, 2621.06, 713.221, 10.82, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0, 'lv project apartment small', 40000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1326, 4, -2383.12, 1281.31, 22.963, 0, 0, 0, 0, 0, 2196.84, -1204.23, 1049.02, 0, 6, 0, 0, 0, '3 Story Condo In SF', 120000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1327, 4, -2383.14, 1299.71, 19.599, 0, 0, 0, 0, 0, 2196.84, -1204.23, 1049.02, 0, 6, 0, 0, 0, '3 Story Condo In SF', 120000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1328, 4, 2579.08, 713.21, 10.82, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0, 'lv project apartment small', 40000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1329, 4, -2383.12, 1317.95, 16.238, 0, 0, 0, 0, 0, 2196.84, -1204.23, 1049.02, 0, 6, 0, 0, 0, '3 Story Condo In SF', 120000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1330, 4, 2571.53, 713.25, 10.82, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0, 'lv project apartment small', 40000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1331, 4, 2540.06, 713.254, 10.82, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0, 'lv project apartment small', 40000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1332, 4, 2532.51, 713.365, 10.82, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0, 'lv project apartment small', 40000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1333, 4, 2526.21, 750.095, 10.82, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0, 'lv project apartment small', 40000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1334, 4, -2433.08, 1338.17, 8.507, 0, 0, 0, 0, 0, 2196.84, -1204.23, 1049.02, 0, 6, 0, 0, 0, 'Normal Size House In SF', 85000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1335, 4, 2526.13, 742.542, 10.82, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0, 'lv project apartment small', 40000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1336, 4, 2525.97, 742.541, 14.739, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0, 'lv project apartment small', 40000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1337, 4, 2526.04, 750.094, 14.739, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0, 'lv project apartment small', 40000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1338, 4, -2433.76, 1318.71, 13.867, 0, 0, 0, 0, 0, 261.06, 1284.29, 1080.25, 0, 4, 0, 0, 0, 'Small House In SF', 30000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1339, 4, -2434.02, 1311.06, 15.418, 0, 0, 0, 0, 0, 261.058, 1284.29, 1080.25, 0, 4, 0, 0, 0, 'Small House In SF', 30000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1340, 4, 2532.3, 742.541, 10.819, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0, 'lv project apartment small', 40000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1341, 4, 2532.36, 750.094, 10.819, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0, 'lv project apartment small', 40000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1342, 4, -2433.07, 1301.14, 18.382, 0, 0, 0, 0, 0, 261.06, 1284.29, 1080.25, 0, 4, 0, 0, 0, 'Small House In SF', 30000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1343, 4, 2532.43, 750.091, 14.739, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0, 'lv project apartment small', 40000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1344, 4, 2532.36, 742.543, 14.739, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0, 'lv project apartment small', 40000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1345, 4, -2433.77, 1281.61, 23.742, 0, 0, 0, 0, 0, 261.06, 1284.29, 1080.25, 0, 4, 0, 0, 0, 'Small House In SF', 30000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1346, 4, -2434, 1274.07, 25.313, 0, 0, 0, 0, 0, 261.06, 1284.29, 1080.25, 0, 4, 0, 0, 0, 'Small House In SF', 30000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1347, 4, -2433.06, 1264.12, 28.257, 0, 0, 0, 0, 0, 2196.84, -1204.23, 1049.02, 0, 6, 0, 0, 0, 'Normal Size House In SF', 85000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1348, 4, 2660.31, 750.098, 10.819, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0, 'lv project apartment small', 40000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1349, 4, 2660.28, 742.544, 10.82, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0, 'lv project apartment small', 40000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1350, 4, 2666.5, 750.095, 10.82, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0, 'lv project apartment small', 40000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1351, 4, -2433.72, 1244.43, 33.617, 0, 0, 0, 0, 0, 261.058, 1284.29, 1080.25, 0, 4, 0, 0, 0, 'Small House In SF', 30000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1352, 4, 2666.5, 742.545, 10.82, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0, 'lv project apartment small', 40000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1353, 4, -2477.24, 1244.31, 33.609, 0, 0, 0, 0, 0, 261.06, 1284.29, 1080.25, 0, 4, 0, 0, 0, 'Small House In SF', 30000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1354, 4, -2477.93, 1264.22, 28.25, 0, 0, 0, 0, 0, 2196.84, -1204.23, 1049.02, 0, 6, 0, 0, 0, 'Normal Size House In SF', 85000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1355, 4, -2476.93, 1274.28, 25.314, 0, 0, 0, 0, 0, 261.06, 1284.29, 1080.25, 0, 4, 0, 0, 0, 'Small House In SF', 30000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1356, 4, 2660.21, 742.546, 14.739, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0, 'lv project apartment small', 40000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1357, 4, 2660.38, 750.098, 14.739, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0, 'lv project apartment small', 40000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1358, 4, 2666.43, 742.544, 14.739, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0, 'lv project apartment small', 40000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1359, 4, -2477.19, 1281.51, 23.726, 0, 0, 0, 0, 0, 261.06, 1284.29, 1080.25, 0, 4, 0, 0, 0, 'Small House In SF', 30000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1360, 4, 2666.53, 750.098, 14.739, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0, 'lv project apartment small', 40000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1361, 4, -2477.88, 1301.24, 18.375, 0, 0, 0, 0, 0, 2196.84, -1204.23, 1049.02, 0, 6, 0, 0, 0, 'Normal Size House In SF', 85000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1362, 4, -2476.93, 1311.23, 15.411, 0, 0, 0, 0, 0, 261.059, 1284.29, 1080.25, 0, 4, 0, 0, 0, 'Small House In SF', 30000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1363, 4, -2477.2, 1318.62, 13.851, 0, 0, 0, 0, 0, 261.06, 1284.29, 1080.25, 0, 4, 0, 0, 0, 'Small House In SF', 30000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1364, 4, -2477.87, 1338.25, 8.503, 0, 0, 0, 0, 0, 2196.84, -1204.23, 1049.02, 0, 6, 0, 0, 0, 'Normal Size House In SF', 85000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1365, 4, 1845.44, 661.125, 11.46, 0, 0, 0, 0, 0, 447, 1397.09, 1084.3, 0, 2, 0, 0, 0, 'Medium house at LV', 150000, 5000, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1366, 4, 1844.53, 690.45, 11.453, 0, 0, 0, 0, 0, 447, 1397.09, 1084.3, 0, 2, 0, 0, 0, 'Medium house at LV', 150000, 200, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1367, 4, 1843.99, 718.83, 11.468, 0, 0, 0, 0, 0, 447, 1397.09, 1084.3, 0, 2, 0, 0, 0, 'Medium house at LV', 150000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1368, 4, 1845.44, 741.387, 11.46, 0, 0, 0, 0, 0, 447, 1397.09, 1084.3, 0, 2, 0, 0, 0, 'Medium house at LV', 150000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1369, 4, -2126.45, 1087.64, 80.007, 0, 0, 0, 0, 0, 2196.84, -1204.23, 1049.02, 0, 6, 0, 0, 0, '3 Story Condo In SF', 120000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1370, 4, -2126.5, 1069.28, 80.007, 0, 0, 0, 0, 0, 2196.84, -1204.23, 1049.02, 0, 6, 0, 0, 0, '3 Story Condo In SF', 120000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1371, 4, -2126.44, 1050.91, 80.007, 0, 0, 0, 0, 0, 226.3, 1114.37, 1080.99, 0, 5, 0, 0, 0, '5 Story Condo In SF', 500000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1372, 4, -2126.47, 1032.53, 80.007, 0, 0, 0, 0, 0, 226.3, 1114.37, 1080.99, 0, 5, 0, 0, 0, '5 Story Condo In SF', 500000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1373, 4, -2126.44, 1014.24, 80.007, 0, 0, 0, 0, 0, 2196.84, -1204.23, 1049.02, 0, 6, 0, 0, 0, '3 Story Condo In SF', 120000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1374, 4, -2126.47, 996.319, 80.007, 0, 0, 0, 0, 0, 2196.84, -1204.23, 1049.02, 0, 6, 0, 0, 0, '3 Story Condo In SF', 120000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1375, 4, -2126.44, 978.493, 80.007, 0, 0, 0, 0, 0, 2196.84, -1204.23, 1049.02, 0, 6, 0, 0, 0, '3 Story Condo In SF', 120000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1376, 4, -2129.63, 942.578, 80, 0, 0, 0, 0, 0, 2196.84, -1204.23, 1049.02, 0, 6, 0, 0, 0, '3 Story Condo In SF', 120000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1377, 4, -2116.77, 927.828, 86.079, 0, 0, 0, 0, 0, 447, 1397.09, 1084.3, 0, 2, 0, 0, 0, '2 Story Condo In SF', 120000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1378, 4, -2129.25, 895.038, 80, 0, 0, 0, 0, 0, 2196.84, -1204.23, 1049.02, 0, 6, 0, 0, 0, '3 Story Condo In SF', 120000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1379, 4, -2126.4, 832.815, 69.562, 0, 0, 0, 0, 0, 2196.84, -1204.23, 1049.02, 0, 6, 0, 0, 0, '3 Story Condo In SF', 120000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1380, 4, -2126.04, 774.131, 69.562, 0, 0, 0, 0, 0, 2196.84, -1204.23, 1049.02, 0, 6, 0, 0, 0, '3 Story Condo In SF', 120000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1381, 4, -2126.08, 755.699, 69.562, 0, 0, 0, 0, 0, 2196.84, -1204.23, 1049.02, 0, 6, 0, 0, 0, '3 Story Condo In SF', 120000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1382, 4, -2112.56, 746.415, 69.562, 0, 0, 0, 0, 0, 2196.84, -1204.23, 1049.02, 0, 6, 0, 0, 0, '3 Story Condo In SF', 120000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1383, 4, -2094.2, 746.424, 69.562, 0, 0, 0, 0, 0, 2196.84, -1204.23, 1049.02, 0, 6, 0, 0, 0, '3 Story Condo In SF', 120000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1384, 4, -2066.57, 746.057, 64.895, 0, 0, 0, 0, 0, 2196.84, -1204.23, 1049.02, 0, 6, 0, 0, 0, '3 Story Condo In SF', 120000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1385, 4, -2048.12, 746.08, 57.042, 0, 0, 0, 0, 0, 2196.84, -1204.23, 1049.02, 0, 6, 0, 0, 0, '3 Story Condo In SF', 120000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1386, 4, -2029.84, 746.08, 49.464, 0, 0, 0, 0, 0, 2196.84, -1204.23, 1049.02, 0, 6, 0, 0, 0, '3 Story Condo In SF', 120000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1387, 4, -2018.55, 748.037, 45.445, 0, 0, 0, 0, 0, 2196.84, -1204.23, 1049.02, 0, 6, 0, 0, 0, '3 Story Condo In SF', 120000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1388, 4, -2018.54, 766.224, 45.445, 0, 0, 0, 0, 0, 2196.84, -1204.23, 1049.02, 0, 6, 0, 0, 0, '3 Story Condo In SF', 120000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1389, 4, -2018.53, 784.821, 45.445, 0, 0, 0, 0, 0, 2196.84, -1204.23, 1049.02, 0, 6, 0, 0, 0, '3 Story Condo In SF', 120000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1390, 4, -2029.85, 796.118, 49.467, 0, 0, 0, 0, 0, 2196.84, -1204.23, 1049.02, 0, 6, 0, 0, 0, '3 Story Condo In SF', 120000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1391, 4, -2048.22, 796.097, 57.039, 0, 0, 0, 0, 0, 2196.84, -1204.23, 1049.02, 0, 6, 0, 0, 0, '3 Story Condo In SF', 120000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1392, 4, -2066.44, 796.124, 64.924, 0, 0, 0, 0, 0, 2196.84, -1204.23, 1049.02, 0, 6, 0, 0, 0, '3 Story Condo In SF', 120000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1393, 4, -2094.25, 795.745, 69.562, 0, 0, 0, 0, 0, 2196.84, -1204.23, 1049.02, 0, 6, 0, 0, 0, '3 Story Condo In SF', 120000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1394, 4, -2112.67, 795.752, 69.562, 0, 0, 0, 0, 0, 2196.84, -1204.23, 1049.02, 0, 6, 0, 0, 0, '3 Story Condo In SF', 120000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1395, 4, -2112.63, 823.535, 69.562, 0, 0, 0, 0, 0, 2196.84, -1204.23, 1049.02, 0, 6, 0, 0, 0, '3 Story Condo In SF', 120000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1396, 4, -2094.18, 823.546, 69.562, 0, 0, 0, 0, 0, 2196.84, -1204.23, 1049.02, 0, 6, 0, 0, 0, '3 Story Condo In SF', 120000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1397, 4, -2066.48, 820.686, 64.923, 0, 0, 0, 0, 0, 2196.84, -1204.23, 1049.02, 0, 6, 0, 0, 0, '3 Story Condo In SF', 120000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1398, 4, -2048.12, 820.692, 57.026, 0, 0, 0, 0, 0, 2196.84, -1204.23, 1049.02, 0, 6, 0, 0, 0, '3 Story Condo In SF', 120000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1399, 4, -2029.81, 820.68, 49.463, 0, 0, 0, 0, 0, 2196.84, -1204.23, 1049.02, 0, 6, 0, 0, 0, '3 Story Condo In SF', 120000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1400, 4, -2018.54, 832.175, 45.445, 0, 0, 0, 0, 0, 2196.84, -1204.23, 1049.02, 0, 6, 0, 0, 0, '3 Story Condo In SF', 120000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1401, 4, -2018.54, 849.283, 45.448, 0, 0, 0, 0, 0, 226.3, 1114.37, 1080.99, 0, 5, 0, 0, 0, '6 Story Condo In SF', 450000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1402, 4, -2018.53, 865.804, 45.444, 0, 0, 0, 0, 0, 226.3, 1114.37, 1080.99, 0, 5, 0, 0, 0, '6 Story Condo In SF', 450000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1403, 4, -2016.35, 897.455, 45.445, 0, 0, 0, 0, 0, 234.22, 1063.89, 358.5, 0, 6, 0, 0, 0, '4 Story Condo In SF', 400000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1404, 4, -2034.17, 901.466, 50.457, 0, 0, 0, 0, 0, 2196.84, -1204.23, 1049.02, 0, 6, 0, 0, 0, '3 Story Condo In SF', 120000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1405, 4, -2075.25, 898.651, 64.132, 0, 0, 0, 0, 0, 234.22, 1063.89, 1084.21, 0, 6, 0, 0, 0, 'Large Condo In SF', 420000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1406, 4, -2084.75, 898.646, 64.132, 0, 0, 0, 0, 0, 234.22, 1063.89, 1084.21, 0, 6, 0, 0, 0, 'Large Condo In SF', 420000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1407, 4, -2099.46, 897.382, 76.708, 0, 0, 0, 0, 0, 2196.84, -1204.23, 1049.02, 0, 6, 0, 0, 0, '3 Story Condo In SF', 120000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1408, 4, -2018.29, 970.072, 45.444, 0, 0, 0, 0, 0, 226.3, 1114.37, 1080.99, 0, 5, 0, 0, 0, '5 Story Condo In SF', 500000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1409, 4, -2018.3, 982.705, 47.685, 0, 0, 0, 0, 0, 2196.84, -1204.23, 1049.02, 0, 6, 0, 0, 0, '3 Story Condo In SF', 120000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1410, 4, -2018.29, 1000.03, 50.778, 0, 0, 0, 0, 0, 2196.84, -1204.23, 1049.02, 0, 6, 0, 0, 0, '3 Story Condo In SF', 120000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1411, 4, -2018.3, 1016.93, 53.866, 0, 0, 0, 0, 0, 2196.84, -1204.23, 1049.02, 0, 6, 0, 0, 0, '3 Story Condo In SF', 120000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1412, 4, 984.466, 2343.69, 11.468, 0, 0, 0, 0, 0, 447, 1397.09, 1084.3, 0, 2, 0, 0, 0, 'Medium house at LV', 150000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1413, 4, 985.477, 2314.3, 11.46, 0, 0, 0, 0, 0, 447, 1397.09, 1084.3, 0, 2, 0, 0, 0, 'Medium house at LV', 150000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1414, 4, 986.487, 2271.25, 11.46, 0, 0, 0, 0, 0, 447, 1397.09, 1084.3, 0, 2, 0, 0, 0, 'Medium house at LV', 150000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1415, 4, 956.897, 2270.27, 11.468, 0, 0, 0, 0, 0, 447, 1397.09, 1084.3, 0, 2, 0, 0, 0, 'Medium house at LV', 150000, 1, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1416, 4, 1030.81, 2028.11, 11.468, 0, 0, 0, 0, 0, 447, 1397.09, 1084.3, 0, 2, 0, 0, 0, 'Medium house at LV', 150000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1417, 4, 1029.36, 2005.64, 11.46, 0, 0, 0, 0, 0, 447, 1397.09, 1084.3, 0, 2, 0, 0, 0, 'Medium house at LV', 150000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1418, 4, 985.411, 2000.59, 11.46, 0, 0, 0, 0, 0, 447, 1397.09, 1084.3, 0, 2, 0, 0, 0, 'Medium house at LV', 150000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1419, 4, 984.508, 2030.18, 11.468, 0, 0, 0, 0, 0, 447, 1397.09, 1084.3, 0, 2, 0, 0, 0, 'Medium house at LV', 150000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1420, 4, -2905.21, 1154.89, 13.663, 0, 0, 0, 0, 0, 261.058, 1284.29, 1080.25, 0, 4, 0, 0, 0, 'Small House In SF', 30000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1421, 4, -2905.16, 1165.04, 13.663, 0, 0, 0, 0, 0, 261.058, 1284.29, 1080.25, 0, 4, 0, 0, 0, 'Small House In SF', 30000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1422, 4, 1030.27, 1976.01, 11.468, 0, 0, 0, 0, 0, 447, 1397.09, 1084.3, 0, 2, 0, 0, 0, 'Medium house at LV', 150000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1423, 4, -2905.25, 1171.55, 13.663, 0, 0, 0, 0, 0, 261.058, 1284.29, 1080.25, 0, 4, 0, 0, 0, 'Small House In SF', 30000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1424, 4, -2905.09, 1178.76, 13.663, 0, 0, 0, 0, 0, 261.058, 1284.29, 1080.25, 0, 4, 0, 0, 0, 'Small House In SF', 30000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1425, 4, 983.971, 1978.2, 11.468, 0, 0, 0, 0, 0, 447, 1397.09, 1084.3, 0, 2, 0, 0, 0, 'Medium house at LV', 150000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1426, 4, 984.703, 1930.83, 11.468, 0, 0, 0, 0, 0, 447, 1397.09, 1084.3, 0, 2, 0, 0, 0, 'Medium house at LV', 150000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1427, 4, 1030.81, 1928.11, 11.468, 0, 0, 0, 0, 0, 447, 1397.09, 1084.3, 0, 2, 0, 0, 0, 'Medium house at LV', 150000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1428, 4, -2904.7, 1118.82, 27.07, 0, 0, 0, 0, 0, 22.93, 1403.32, 1084.43, 0, 5, 0, 0, 0, 'Small Nice House In SF', 60000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1429, 4, 1029.36, 1905.92, 11.46, 0, 0, 0, 0, 0, 447, 1397.09, 1084.3, 0, 2, 0, 0, 0, 'Medium house at LV', 150000, 500, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1430, 4, -2904.8, 1111.52, 27.069, 0, 0, 0, 0, 0, 261.058, 1284.29, 1080.25, 0, 4, 0, 0, 0, 'Small House In SF', 30000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1431, 4, 985.413, 1901.04, 11.46, 0, 0, 0, 0, 0, 447, 1397.09, 1084.3, 0, 2, 0, 0, 0, 'Medium house at LV', 150000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1432, 4, -2904.47, 1101.11, 27.069, 0, 0, 0, 0, 0, 261.058, 1284.29, 1080.25, 0, 4, 0, 0, 0, 'Small House In SF', 30000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1433, 4, 983.971, 1878.94, 11.468, 0, 0, 0, 0, 0, 447, 1397.09, 1084.3, 0, 2, 0, 0, 0, 'Medium house at LV', 150000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1434, 4, 1030.37, 1876.35, 11.468, 0, 0, 0, 0, 0, 447, 1397.09, 1084.3, 0, 2, 0, 0, 0, 'Medium house at LV', 150000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1435, 4, 1030.81, 1847.93, 11.468, 0, 0, 0, 0, 0, 447, 1397.09, 1084.3, 0, 2, 0, 0, 0, 'Medium house at LV', 150000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1436, 4, 2158.34, -1611.31, 14.35, 0, 0, 0, 0, 0, 244.41, 305.032, 999.148, 0, 1, 0, 0, 0, 'LS Project', 4000, 1500, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1437, 4, 2129.11, -1663.94, 15.085, 0, 0, 0, 0, 0, 244.41, 305.032, 999.148, 0, 1, 0, 0, 0, 'LS Project', 4000, 1000, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1438, 4, 2141.49, -1652.85, 15.085, 0, 0, 0, 0, 0, 244.41, 305.032, 999.148, 0, 1, 0, 0, 0, 'LS Project', 4000, 100, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1439, 4, 2172.59, -1615.28, 14.281, 0, 0, 0, 0, 0, 244.41, 305.032, 999.148, 0, 1, 0, 0, 0, '*LS Project', 4000, 95, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1440, 4, 2179.08, -1600.11, 14.345, 0, 0, 0, 0, 0, 244.41, 305.032, 999.148, 0, 1, 0, 0, 0, 'LS Project', 4000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1441, 4, 2165.56, -1590.49, 14.345, 0, 0, 0, 0, 0, 244.41, 305.032, 999.148, 0, 1, 0, 0, 0, 'LS Project', 4000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1442, 4, 2151.2, -1598.49, 14.345, 0, 0, 0, 0, 0, 244.41, 305.032, 999.148, 0, 1, 0, 0, 0, 'LS Project', 4000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1443, 4, 2150.4, -1583.96, 14.336, 0, 0, 0, 0, 0, 244.41, 305.032, 999.148, 0, 1, 0, 0, 0, 'LS Project', 4000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1444, 4, 2136, -1591.98, 14.35, 0, 0, 0, 0, 0, 244.41, 305.032, 999.148, 0, 1, 0, 0, 0, 'LS Project', 4000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1445, 4, 2143.29, -1571.2, 14.192, 0, 0, 0, 0, 0, 244.41, 305.032, 999.148, 0, 1, 0, 0, 0, 'LS Project', 4000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1446, 4, 2158.51, -1577.71, 14.281, 0, 0, 0, 0, 0, 244.41, 305.032, 999.148, 0, 1, 0, 0, 0, 'LS Project', 4000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1447, 4, 2191.91, -1592.97, 14.35, 0, 0, 0, 0, 0, 244.41, 305.032, 999.148, 0, 1, 0, 0, 0, 'LS Project', 4000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1448, 4, 2185.31, -1608.14, 14.359, 0, 0, 0, 0, 0, 244.41, 305.032, 999.148, 0, 1, 0, 0, 0, 'LS Project', 4000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1449, 4, 2143.12, -1604.72, 14.35, 0, 0, 0, 0, 0, 244.41, 305.032, 999.148, 0, 1, 0, 0, 0, 'LS Project', 4000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1450, 4, 2068.14, -1588.86, 13.489, 0, 0, 0, 0, 0, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, 0, 'Ghetto Home LS Small', 10000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1451, 4, 2073.36, -1583.05, 13.472, 0, 0, 0, 0, 0, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, 0, 'Ghetto Home LS Small', 10000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1452, 4, 2065.33, -1583.36, 13.479, 0, 0, 0, 0, 0, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, 0, 'Ghetto Home LS Small', 10000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1453, 4, 2076.11, -1588.67, 13.491, 0, 0, 0, 0, 0, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, 0, 'Ghetto Home LS Small', 10000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1454, 4, 2072.5, -1559.31, 13.409, 0, 0, 0, 0, 0, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, 0, 'Ghetto Home LS Small', 10000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1455, 4, 2066.81, -1554.09, 13.434, 0, 0, 0, 0, 0, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, 0, 'Ghetto Home LS Small', 10000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1456, 4, 2066.96, -1562.17, 13.428, 0, 0, 0, 0, 0, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, 0, 'Ghetto Home LS Small', 10000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1457, 4, 2072.27, -1551.3, 13.423, 0, 0, 0, 0, 0, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, 0, 'Ghetto Home LS Small', 10000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1458, 4, 1852.3, -2019.63, 13.545, 0, 0, 0, 0, 0, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, 0, 'Ghetto Home LS Small', 10000, 250, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1459, 4, 1852.33, -2021.36, 13.545, 0, 0, 0, 0, 0, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, 0, 'Ghetto Home LS Small', 10000, 2000, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1460, 4, 1857.1, -2035.08, 13.545, 0, 0, 0, 0, 0, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, 0, 'Ghetto Home LS Small', 10000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1461, 4, 1858.71, -2035.04, 13.545, 0, 0, 0, 0, 0, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, 0, 'Ghetto Home LS Small', 10000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1462, 4, 1867.87, -2028.42, 13.545, 0, 0, 0, 0, 0, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, 0, 'Ghetto Home LS Small', 10000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1463, 4, 1864.98, -2021.37, 13.545, 0, 0, 0, 0, 0, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, 0, 'Ghetto Home LS Small', 10000, 500, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1464, 4, 1864.95, -2019.64, 13.545, 0, 0, 0, 0, 0, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, 0, 'Ghetto Home LS Small', 10000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1465, 4, 1865.96, -2003.88, 13.545, 0, 0, 0, 0, 0, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, 0, 'Ghetto Home LS Small', 10000, 50, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1466, 4, 1867.77, -2003.87, 13.545, 0, 0, 0, 0, 0, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, 0, 'Ghetto Home LS Small', 10000, 500, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1467, 4, 1867.88, -2010.06, 13.545, 0, 0, 0, 0, 0, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, 0, 'Ghetto Home LS Small', 10000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1468, 4, 1888.93, -2000.94, 13.545, 0, 0, 0, 0, 0, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, 0, 'Ghetto Home LS Small', 10000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1469, 4, 1877.32, -2001.01, 13.545, 0, 0, 0, 0, 0, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, 0, 'Ghetto Home LS Small', 10000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1470, 4, 1867.75, -1998.07, 13.545, 0, 0, 0, 0, 0, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, 0, 'Ghetto Home LS Small', 10000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1471, 4, 1866.01, -1998.09, 13.545, 0, 0, 0, 0, 0, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, 0, 'Ghetto Home LS Small', 10000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1472, 4, 1867.79, -1985.4, 13.545, 0, 0, 0, 0, 0, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, 0, 'Ghetto Home LS Small', 10000, 200, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1473, 4, 1866, -1985.45, 13.545, 0, 0, 0, 0, 0, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, 0, 'Ghetto Home LS Small', 10000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1474, 4, 1852.28, -1990.19, 13.545, 0, 0, 0, 0, 0, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, 0, 'Ghetto Home LS Small', 10000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1475, 4, 1852.33, -1991.81, 13.545, 0, 0, 0, 0, 0, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, 0, 'Ghetto Home LS Small', 10000, 449, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1476, 4, 1858.96, -2001, 13.545, 0, 0, 0, 0, 0, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, 0, 'Ghetto Home LS Small', 10000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1477, 4, 1849.4, -2010.06, 13.545, 0, 0, 0, 0, 0, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, 0, 'Ghetto Home LS Small', 10000, 500, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1478, 4, 1895.53, -2019.67, 13.545, 0, 0, 0, 0, 0, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, 0, 'Ghetto Home LS Small', 10000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1479, 4, 1895.53, -2021.36, 13.545, 0, 0, 0, 0, 0, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, 0, 'Ghetto Home LS Small', 10000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1480, 4, 1898.99, -2037.96, 13.545, 0, 0, 0, 0, 0, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, 0, 'Ghetto Home LS Small', 10000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1481, 4, 1898.37, -2028.42, 13.545, 0, 0, 0, 0, 0, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, 0, 'Ghetto Home LS Small', 10000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1482, 4, 1905.98, -2035.08, 13.545, 0, 0, 0, 0, 0, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, 0, 'Ghetto Home LS Small', 10000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1483, 4, 1907.71, -2035.05, 13.545, 0, 0, 0, 0, 0, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, 0, 'Ghetto Home LS Small', 10000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1484, 4, 1913.96, -2021.43, 13.545, 0, 0, 0, 0, 0, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, 0, 'Ghetto Home LS Small', 10000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1485, 4, 1913.95, -2019.65, 13.545, 0, 0, 0, 0, 0, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, 0, 'Ghetto Home LS Small', 10000, 450, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1486, 4, 1901.33, -2019.64, 13.545, 0, 0, 0, 0, 0, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, 0, 'Ghetto Home LS Small', 10000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1487, 4, 1901.34, -2021.43, 13.545, 0, 0, 0, 0, 0, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, 0, 'Ghetto Home LS Small', 10000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1488, 4, 1916.9, -2028.42, 13.545, 0, 0, 0, 0, 0, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, 0, 'Ghetto Home LS Small', 10000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1489, 4, 1919.76, -2021.34, 13.545, 0, 0, 0, 0, 0, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, 0, 'Ghetto Home LS Small', 10000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1490, 4, 1919.76, -2019.62, 13.545, 0, 0, 0, 0, 0, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, 0, 'Ghetto Home LS Small', 10000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1491, 4, 1916.9, -2000.38, 13.545, 0, 0, 0, 0, 0, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, 0, 'Ghetto Home LS Small', 10000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1492, 4, 1916.89, -2010.06, 13.545, 0, 0, 0, 0, 0, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, 0, 'Ghetto Home LS Small', 10000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1493, 4, 1907.28, -2001.01, 13.545, 0, 0, 0, 0, 0, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, 0, 'Ghetto Home LS Small', 10000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1494, 4, 1913.95, -1993.45, 13.545, 0, 0, 0, 0, 0, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, 0, 'Ghetto Home LS Small', 10000, 730, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1495, 4, 1913.92, -1991.56, 13.545, 0, 0, 0, 0, 0, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, 0, 'Ghetto Home LS Small', 10000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1496, 4, 1907.29, -1982.51, 13.545, 0, 0, 0, 0, 0, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, 0, 'Ghetto Home LS Small', 10000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1497, 4, 1900.31, -1979.61, 13.545, 0, 0, 0, 0, 0, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, 0, 'Ghetto Home LS Small', 10000, 5000, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1498, 4, 1898.66, -1979.62, 13.545, 0, 0, 0, 0, 0, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, 0, 'Ghetto Home LS Small', 10000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1499, 4, 1916.76, -1982.03, 13.545, 0, 0, 0, 0, 0, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, 0, 'Ghetto Home LS Small', 10000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1500, 4, 1919.72, -1993.24, 13.545, 0, 0, 0, 0, 0, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, 0, 'Ghetto Home LS Small', 10000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1501, 4, 1919.72, -1991.62, 13.545, 0, 0, 0, 0, 0, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, 0, 'Ghetto Home LS Small', 10000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1502, 4, 1900.21, -1985.39, 13.545, 0, 0, 0, 0, 0, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, 0, 'Ghetto Home LS Small', 10000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1503, 4, 1898.54, -1985.42, 13.545, 0, 0, 0, 0, 0, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, 0, 'Ghetto Home LS Small', 10000, 145, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1504, 4, 1900.25, -1998.04, 13.545, 0, 0, 0, 0, 0, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, 0, 'Ghetto Home LS Small', 10000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1505, 4, 1898.49, -1998.06, 13.545, 0, 0, 0, 0, 0, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, 0, 'Ghetto Home LS Small', 10000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1506, 4, 1870.76, -2019.59, 13.545, 0, 0, 0, 0, 0, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, 0, 'Ghetto Home LS Small', 10000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1507, 4, 1870.76, -2021.39, 13.545, 0, 0, 0, 0, 0, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, 0, 'Ghetto Home LS Small', 10000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1508, 4, 1868.35, -2037.97, 13.545, 0, 0, 0, 0, 0, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, 0, 'Ghetto Home LS Small', 10000, 100, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1509, 4, 1858.79, -2040.85, 13.545, 0, 0, 0, 0, 0, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, 0, 'Ghetto Home LS Small', 10000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1510, 4, 1857.02, -2040.85, 13.545, 0, 0, 0, 0, 0, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, 0, 'Ghetto Home LS Small', 10000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1511, 4, 1906.17, -2040.85, 13.545, 0, 0, 0, 0, 0, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, 0, 'Ghetto Home LS Small', 10000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1512, 4, 1907.74, -2040.85, 13.545, 0, 0, 0, 0, 0, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, 0, 'Ghetto Home LS Small', 10000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1513, 4, 1849.99, -2037.92, 13.545, 0, 0, 0, 0, 0, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, 0, 'Ghetto Home LS Small', 10000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1514, 4, 1849.42, -2028.42, 13.545, 0, 0, 0, 0, 0, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, 0, 'Ghetto Home LS Small', 10000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1515, 4, 1846.53, -2021.35, 13.545, 0, 0, 0, 0, 0, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, 0, 'Ghetto Home LS Small', 10000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1516, 4, 1846.53, -2019.77, 13.545, 0, 0, 0, 0, 0, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, 0, 'Ghetto Home LS Small', 10000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1517, 4, 1849.45, -2001.46, 13.545, 0, 0, 0, 0, 0, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, 0, 'Ghetto Home LS Small', 10000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1518, 4, 1838.7, -1995.85, 13.545, 0, 0, 0, 0, 0, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, 0, 'Ghetto Home LS Small', 10000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1519, 4, 1838.7, -1994.18, 13.545, 0, 0, 0, 0, 0, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, 0, 'Ghetto Home LS Small', 10000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1520, 4, 1846.53, -1991.87, 13.545, 0, 0, 0, 0, 0, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, 0, 'Ghetto Home LS Small', 10000, 500, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1521, 4, 1846.53, -1990.15, 13.545, 0, 0, 0, 0, 0, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, 0, 'Ghetto Home LS Small', 10000, 500, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1522, 4, 1849.35, -1983.11, 13.545, 0, 0, 0, 0, 0, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, 0, 'Ghetto Home LS Small', 10000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1523, 4, 1858.96, -1982.62, 13.545, 0, 0, 0, 0, 0, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, 0, 'Ghetto Home LS Small', 10000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1524, 4, 1888.93, -1982.5, 13.545, 0, 0, 0, 0, 0, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, 0, 'Ghetto Home LS Small', 10000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1525, 4, 1917.35, -2037.98, 13.545, 0, 0, 0, 0, 0, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, 0, 'Ghetto Home LS Small', 10000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1526, 4, 1835.86, -2005.48, 13.545, 0, 0, 0, 0, 0, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, 0, 'Ghetto Home LS Small', 10000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1527, 4, 1835.93, -1987.13, 13.545, 0, 0, 0, 0, 0, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, 0, 'Ghetto Home LS Small', 10000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1528, 4, 1835.24, -1977.53, 13.545, 0, 0, 0, 0, 0, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, 0, 'Ghetto Home LS Small', 10000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1529, 4, 1828.37, -1980.44, 13.545, 0, 0, 0, 0, 0, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, 0, 'Ghetto Home LS Small', 10000, 1000, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1530, 4, 1826.53, -1980.51, 13.545, 0, 0, 0, 0, 0, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, 0, 'Ghetto Home LS Small', 10000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1531, 4, 1817.51, -1987.13, 13.553, 0, 0, 0, 0, 0, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, 0, 'Ghetto Home LS Small', 10000, 1, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1532, 4, 1816.89, -1977.5, 13.545, 0, 0, 0, 0, 0, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, 0, 'Ghetto Home LS Small', 10000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1533, 4, 1826.53, -1974.69, 13.545, 0, 0, 0, 0, 0, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, 0, 'Ghetto Home LS Small', 10000, 1, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1534, 4, 1828.07, -1974.69, 13.545, 0, 0, 0, 0, 0, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, 0, 'Ghetto Home LS Small', 10000, 1, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1535, 4, 1832.9, -1994.11, 13.545, 0, 0, 0, 0, 0, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, 0, 'Ghetto Home LS Small', 10000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1536, 4, 1820.28, -1995.94, 13.553, 0, 0, 0, 0, 0, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, 0, 'Ghetto Home LS Small', 10000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1537, 4, 1820.24, -1994.23, 13.553, 0, 0, 0, 0, 0, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, 0, 'Ghetto Home LS Small', 10000, 200, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1538, 4, 1817.43, -2005.49, 13.553, 0, 0, 0, 0, 0, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, 0, 'Ghetto Home LS Small', 10000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1539, 4, 1814.47, -1995.92, 13.553, 0, 0, 0, 0, 0, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, 0, 'Ghetto Home LS Small', 10000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1540, 4, 1814.48, -1994.15, 13.553, 0, 0, 0, 0, 0, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, 0, 'Ghetto Home LS Small', 10000, 100, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1541, 4, 1867.74, -1979.65, 13.545, 0, 0, 0, 0, 0, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, 0, 'Ghetto Home LS Small', 10000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1542, 4, 1865.92, -1979.65, 13.545, 0, 0, 0, 0, 0, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, 0, 'Ghetto Home LS Small', 10000, 1000, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1543, 4, 1877.32, -1982.49, 13.545, 0, 0, 0, 0, 0, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, 0, 'Ghetto Home LS Small', 10000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1544, 4, 1801.99, -2098.94, 14.02, 0, 0, 0, 0, 0, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, 0, 'Ghetto Home LS Small', 10000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1545, 4, 1804.19, -2124.9, 13.942, 0, 0, 0, 0, 0, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, 0, 'Ghetto Home LS Small', 10000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1546, 4, 1781.45, -2101.27, 14.055, 0, 0, 0, 0, 0, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, 0, 'Ghetto Home LS Small', 10000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1547, 4, 1782.09, -2126.37, 14.067, 0, 0, 0, 0, 0, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, 0, 'Ghetto Home LS Small', 10000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1548, 4, 1761.17, -2125.45, 14.055, 0, 0, 0, 0, 0, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, 0, 'Ghetto Home LS Small', 10000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1549, 4, 1762.39, -2101.98, 13.854, 0, 0, 0, 0, 0, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, 0, 'Ghetto Home LS Small', 10000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1550, 4, 1734.15, -2097.98, 14.036, 0, 0, 0, 0, 0, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, 0, 'Ghetto Home LS Small', 10000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1551, 4, 1734.62, -2130.35, 14.02, 0, 0, 0, 0, 0, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, 0, 'Ghetto Home LS Small', 10000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1552, 4, 1715.06, -2125.45, 14.055, 0, 0, 0, 0, 0, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, 0, 'Ghetto Home LS Small', 10000, 1000, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1553, 4, 1711.67, -2101.24, 14.02, 0, 0, 0, 0, 0, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, 0, 'Ghetto Home LS Small', 10000, 1000, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1554, 4, 1695.52, -2125.83, 13.81, 0, 0, 0, 0, 0, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, 0, 'Ghetto Home LS Small', 10000, 250, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1555, 4, 1684.72, -2098.16, 13.833, 0, 0, 0, 0, 0, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, 0, 'Ghetto Home LS Small', 10000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1556, 4, 1673.68, -2122.46, 14.145, 0, 0, 0, 0, 0, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, 0, 'Ghetto Home LS Small', 10000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1557, 4, 1616.15, -1897.58, 13.548, 0, 0, 0, 0, 0, 447, 1397.09, 1084.3, 0, 2, 0, 0, 0, 'normal house at ls', 150000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1558, 4, 1610.88, -1893.88, 13.545, 0, 0, 0, 0, 0, 447, 1397.09, 1084.3, 0, 2, 0, 0, 0, 'normal house at ls', 150000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1559, 4, 1628.69, -1903.36, 13.553, 0, 0, 0, 0, 0, 447, 1397.09, 1084.3, 0, 2, 0, 0, 0, 'normal house at ls', 150000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1560, 4, 1325.95, -1067.65, 31.554, 0, 0, 0, 0, 0, 447, 1397.09, 1084.3, 0, 2, 0, 0, 0, 'House Near Vinewood', 150000, 100, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1561, 4, 1326.26, -1090.61, 27.975, 0, 0, 0, 0, 0, 447, 1397.09, 1084.3, 0, 2, 0, 0, 0, 'House Near Vinewood', 150000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1562, 4, 1285.27, -1090.28, 28.256, 0, 0, 0, 0, 0, 447, 1397.09, 1084.3, 0, 2, 0, 0, 0, 'House Near Vinewood', 150000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1563, 4, 1242.26, -1099.51, 27.975, 0, 0, 0, 0, 0, 447, 1397.09, 1084.3, 0, 2, 0, 0, 0, 'House Near Vinewood', 150000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1564, 4, 1241.94, -1076.43, 31.554, 0, 0, 0, 0, 0, 447, 1397.09, 1084.3, 0, 2, 0, 0, 0, 'House Near Vinewood', 150000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1565, 4, 1285.26, -1067.31, 31.677, 0, 0, 0, 0, 0, 447, 1397.09, 1084.3, 0, 2, 0, 0, 0, 'House Near Vinewood', 150000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1566, 4, 1189.01, -1018.12, 36.234, 0, 0, 0, 0, 0, 447, 1397.09, 1084.3, 0, 2, 0, 0, 0, 'House near vinewood small LS', 100000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1567, 4, 1196.48, -1016.99, 36.234, 0, 0, 0, 0, 0, 447, 1397.09, 1084.3, 0, 2, 0, 0, 0, 'House near vinewood small LS', 100000, 5000, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1568, 4, 1188.19, -1011.88, 36.226, 0, 0, 0, 0, 0, 447, 1397.09, 1084.3, 0, 2, 0, 0, 0, 'House near vinewood small LS', 100000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1569, 4, 1195.68, -1010.91, 36.226, 0, 0, 0, 0, 0, 447, 1397.09, 1084.3, 0, 2, 0, 0, 0, 'House near vinewood small LS', 100000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1570, 4, 1188.19, -1011.89, 32.546, 0, 0, 0, 0, 0, 447, 1397.09, 1084.3, 0, 2, 0, 0, 0, 'House near vinewood small LS', 100000, 100, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1571, 4, 1195.69, -1010.93, 32.553, 0, 0, 0, 0, 0, 447, 1397.09, 1084.3, 0, 2, 0, 0, 0, 'House near vinewood small LS', 100000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1572, 4, 1189.01, -1018.09, 32.546, 0, 0, 0, 0, 0, 447, 1397.09, 1084.3, 0, 2, 0, 0, 0, 'House near vinewood small LS', 100000, 100, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1573, 4, 1196.5, -1017.15, 32.546, 0, 0, 0, 0, 0, 447, 1397.09, 1084.3, 0, 2, 0, 0, 0, 'House near vinewood small LS', 100000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1574, 4, 1234.73, -1016.13, 32.604, 0, 0, 0, 0, 0, 447, 1397.09, 1084.3, 0, 2, 0, 0, 0, 'House near vinewood small LS', 100000, 500, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1575, 4, 1227.25, -1017.18, 32.601, 0, 0, 0, 0, 0, 447, 1397.09, 1084.3, 0, 2, 0, 0, 0, 'House near vinewood small LS', 100000, 50, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1576, 4, 1233.93, -1010.05, 32.601, 0, 0, 0, 0, 0, 447, 1397.09, 1084.3, 0, 2, 0, 0, 0, 'House near vinewood small LS', 100000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1577, 4, 1226.44, -1011.03, 32.601, 0, 0, 0, 0, 0, 447, 1397.09, 1084.3, 0, 2, 0, 0, 0, 'House near vinewood small LS', 100000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1578, 4, 1234.73, -1016.15, 36.335, 0, 0, 0, 0, 0, 447, 1397.09, 1084.3, 0, 2, 0, 0, 0, 'House near vinewood small LS', 100000, 1500, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1579, 4, 1227.25, -1017.18, 36.333, 0, 0, 0, 0, 0, 447, 1397.09, 1084.3, 0, 2, 0, 0, 0, 'House near vinewood small LS', 100000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1580, 4, 1233.92, -1009.97, 36.328, 0, 0, 0, 0, 0, 447, 1397.09, 1084.3, 0, 2, 0, 0, 0, 'House near vinewood small LS', 100000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1581, 4, 1226.44, -1011.01, 36.327, 0, 0, 0, 0, 0, 447, 1397.09, 1084.3, 0, 2, 0, 0, 0, 'House near vinewood small LS', 100000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1582, 4, 1127.97, -1021.17, 34.992, 0, 0, 0, 0, 0, 447, 1397.09, 1084.3, 0, 2, 0, 0, 0, 'House Near Vinewood', 150000, 1, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1583, 4, 1118.05, -1021.17, 34.992, 0, 0, 0, 0, 0, 447, 1397.09, 1084.3, 0, 2, 0, 0, 0, 'House Near Vinewood', 150000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1584, 4, 1051.03, -1059.3, 34.796, 0, 0, 0, 0, 0, 447, 1397.09, 1084.3, 0, 2, 0, 0, 0, 'House Near Vinewood', 150000, 500, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1585, 4, 993.757, -1059.03, 33.699, 0, 0, 0, 0, 0, 447, 1397.09, 1084.3, 0, 2, 0, 0, 0, 'House Near Vinewood', 150000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1586, 4, 952.609, -909.104, 45.763, 0, 0, 0, 0, 0, 1298.81, -796.658, 1084.01, 0, 5, 0, 0, 0, 'Mansion', 5250000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1587, 4, 1411.1, -920.861, 38.421, 0, 0, 0, 0, 0, 447, 1397.09, 1084.3, 0, 2, 0, 0, 0, 'House Near Vinewood', 150000, 100, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1588, 4, 1440.67, -926.135, 39.645, 0, 0, 0, 0, 0, 447, 1397.09, 1084.3, 0, 2, 0, 0, 0, 'House Near Vinewood', 150000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1589, 4, 1421.78, -886.229, 50.686, 0, 0, 0, 0, 0, 295.209, 1472.26, 1080.25, 0, 15, 0, 0, 0, 'small house at vinewood', 150000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1590, 4, 1468.54, -906.181, 54.833, 0, 0, 0, 0, 0, 295.209, 1472.26, 1080.25, 0, 15, 0, 0, 0, 'small house at vinewood', 150000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1591, 4, 1535.72, -885.249, 57.657, 0, 0, 0, 0, 0, 2196.84, -1204.23, 1049.02, 0, 6, 0, 0, 0, 'house at vinewood', 250000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1592, 4, 1540.47, -851.437, 64.333, 0, 0, 0, 0, 0, 234.22, 1063.89, 1084.21, 0, 6, 0, 0, 0, 'Small House at Vinewood', 400000, 100, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1593, 4, 1535.03, -800.169, 72.847, 0, 0, 0, 0, 0, 295.209, 1472.26, 1080.25, 0, 15, 0, 0, 0, 'small house at vinewood', 150000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1594, 4, 1527.88, -772.64, 80.578, 0, 0, 0, 0, 0, 295.209, 1472.26, 1080.25, 0, 15, 0, 0, 0, 'House', 150000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1595, 4, 1442.68, -628.83, 95.718, 0, 0, 0, 0, 0, 226.3, 1114.37, 1080.99, 0, 5, 0, 0, 0, 'House At Vinewood With Swimming Pool', 550000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1596, 4, 1331.99, -633.546, 109.134, 0, 0, 0, 0, 0, 226.3, 1114.37, 1080.99, 0, 5, 0, 0, 0, 'Fancy Mansion with swimming pool', 550000, 1500, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1597, 4, 1094.99, -647.906, 113.648, 0, 0, 0, 0, 0, 234.22, 1063.89, 1084.21, 0, 6, 0, 0, 0, 'House at Vinewood', 400000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1598, 4, 1045.16, -642.94, 120.111, 0, 0, 0, 0, 0, 234.22, 1063.89, 1084.21, 0, 6, 0, 0, 0, 'House At Vinewood without swimming pool', 400000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1599, 4, 897.927, -677.106, 116.888, 0, 0, 0, 0, 0, 226.3, 1114.37, 1080.99, 0, 5, 0, 0, 0, 'House At Vinewood With Swimming Pool', 550000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1600, 4, 946.304, -710.692, 122.619, 0, 0, 0, 0, 0, 295.209, 1472.26, 1080.25, 0, 15, 0, 0, 0, 'small house at vinewood', 150000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1601, 4, 867.491, -717.575, 105.679, 0, 0, 0, 0, 0, 2196.84, -1204.23, 1049.02, 0, 6, 0, 0, 0, 'house at vinewood', 250000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1602, 4, 847.994, -745.513, 94.969, 0, 0, 0, 0, 0, 2196.84, -1204.23, 1049.02, 0, 6, 0, 0, 0, 'house at vinewood', 250000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1603, 4, 891.145, -783.174, 101.313, 0, 0, 0, 0, 0, 234.22, 1063.89, 1084.21, 0, 6, 0, 0, 0, 'House At Vinewood without swimming pool', 400000, 500, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1604, 4, 808.26, -759.379, 76.527, 0, 0, 0, 0, 0, 234.22, 1063.89, 1084.21, 0, 6, 0, 0, 0, 'House At Vinewood without swimming pool', 400000, 1, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1605, 4, 785.955, -828.577, 70.289, 0, 0, 0, 0, 0, 2196.84, -1204.23, 1049.02, 0, 6, 0, 0, 0, 'house at vinewood', 250000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1606, 4, 497.367, -1095.07, 82.359, 0, 0, 0, 0, 0, 226.3, 1114.37, 1080.99, 0, 5, 0, 0, 0, 'House At Vinewood With Swimming Pool', 550000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1607, 4, 416.769, -1154.12, 76.68, 0, 0, 0, 0, 0, 226.3, 1114.37, 1080.99, 0, 5, 0, 0, 0, 'House at Vinewood', 550000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1608, 4, 352.325, -1198, 76.513, 0, 0, 0, 0, 0, 234.22, 1063.89, 1084.21, 0, 6, 0, 0, 0, 'House At Vinewood without swimming pool', 400000, 1000, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1609, 4, 355.071, -1281.19, 53.701, 0, 0, 0, 0, 0, 2196.84, -1204.23, 1049.02, 0, 6, 0, 0, 0, 'house at vinewood', 250000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1610, 4, 228.05, -1405.49, 51.609, 0, 0, 0, 0, 0, 295.209, 1472.26, 1080.25, 0, 15, 0, 0, 0, 'small house at vinewood', 150000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1611, 4, 470.756, -1163.56, 67.217, 0, 0, 0, 0, 0, 234.22, 1063.89, 1084.21, 0, 6, 0, 0, 0, 'House At Vinewood without swimming pool', 400000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1612, 4, 558.763, -1161.09, 54.429, 0, 0, 0, 0, 0, 295.209, 1472.26, 1080.25, 0, 15, 0, 0, 0, 'small house at vinewood', 150000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1613, 4, 552.94, -1200.28, 44.831, 0, 0, 0, 0, 0, 2196.84, -1204.23, 1049.02, 0, 6, 0, 0, 0, 'house at vinewood', 250000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1614, 4, 432.028, -1253.96, 51.58, 0, 0, 0, 0, 0, 295.209, 1472.26, 1080.25, 0, 15, 0, 0, 0, 'small house at vinewood', 150000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1615, 4, 612.169, -1085.92, 58.826, 0, 0, 0, 0, 0, 226.3, 1114.37, 1080.99, 0, 5, 0, 0, 0, 'House At Vinewood With Swimming Pool', 550000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1616, 4, 559.125, -1076.41, 72.916, 0, 0, 0, 0, 0, 234.22, 1063.89, 1084.21, 0, 6, 0, 0, 0, 'House At Vinewood without swimming pool', 400000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1617, 4, 648.309, -1058.72, 52.576, 0, 0, 0, 0, 0, 295.209, 1472.26, 1080.25, 0, 15, 0, 0, 0, 'small house at vinewood', 150000, 5000, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1618, 4, 673.114, -1020.17, 55.756, 0, 0, 0, 0, 0, 295.209, 1472.26, 1080.25, 0, 15, 0, 0, 0, 'small house at vinewood', 150000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1619, 4, 700.257, -1060.32, 49.421, 0, 0, 0, 0, 0, 226.3, 1114.37, 1080.99, 0, 5, 0, 0, 0, 'House At Vinewood With Swimming Pool', 550000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1620, 4, 724.663, -999.356, 52.734, 0, 0, 0, 0, 0, 234.22, 1063.89, 1084.21, 0, 6, 0, 0, 0, 'House At Vinewood without swimming pool', 400000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1621, 4, 923.903, -853.408, 93.456, 0, 0, 0, 0, 0, 295.209, 1472.26, 1080.25, 0, 15, 0, 0, 0, 'small house at vinewood', 150000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1622, 4, 937.804, -848.742, 93.577, 0, 0, 0, 0, 0, 295.209, 1472.26, 1080.25, 0, 15, 0, 0, 0, 'small house at vinewood', 150000, 100, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1623, 4, 910.388, -817.546, 103.125, 0, 0, 0, 0, 0, 234.22, 1063.89, 1084.21, 0, 6, 0, 0, 0, 'House At Vinewood without swimming pool', 400000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1624, 4, 977.379, -771.708, 112.202, 0, 0, 0, 0, 0, 234.22, 1063.89, 1084.21, 0, 6, 0, 0, 0, 'House At Vinewood without swimming pool', 400000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1625, 4, 1017.02, -763.361, 112.563, 0, 0, 0, 0, 0, 295.209, 1472.26, 1080.25, 0, 15, 0, 0, 0, 'small house at vinewood', 150000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1626, 4, 1034.81, -813.184, 101.847, 0, 0, 0, 0, 0, 295.209, 1472.26, 1080.25, 0, 15, 0, 0, 0, 'small house at vinewood', 150000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1627, 4, 989.736, -828.69, 95.468, 0, 0, 0, 0, 0, 234.22, 1063.89, 1084.21, 0, 6, 0, 0, 0, 'House At Vinewood without swimming Pool', 400000, 1500, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1628, 4, 1093.97, -807.13, 107.416, 0, 0, 0, 0, 0, 2196.84, -1204.23, 1049.02, 0, 6, 0, 0, 0, 'UFO House at vinewood', 1000000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1629, 4, 835.968, -894.861, 68.763, 0, 0, 0, 0, 0, 234.22, 1063.89, 1084.21, 0, 6, 0, 0, 0, 'House At Vinewood without swimming pool', 400000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1630, 4, 827.822, -857.979, 70.33, 0, 0, 0, 0, 0, 295.209, 1472.26, 1080.25, 0, 15, 0, 0, 0, 'small house at vinewood', 150000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1631, 4, 1112.64, -742.109, 100.132, 0, 0, 0, 0, 0, 234.22, 1063.89, 1084.21, 0, 6, 0, 0, 0, 'House At Vinewood without swimming Pool', 400000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1632, 4, 168.136, -1768.4, 4.486, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0, 'apartment at the beach ls', 100000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1633, 4, 192.811, -1769.39, 4.328, 0, 0, 0, 0, 0, 261.058, 1284.29, 1080.25, 0, 4, 0, 0, 0, 'Beach House', 100000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1634, 4, 206.884, -1768.88, 4.368, 0, 0, 0, 0, 0, 261.058, 1284.29, 1080.25, 0, 4, 0, 0, 0, 'house at the beach', 100000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1635, 4, 280.894, -1767.07, 4.546, 0, 0, 0, 0, 0, 261.058, 1284.29, 1080.25, 0, 4, 0, 0, 0, 'house at the beach', 100000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1636, 4, 295.239, -1764.12, 4.868, 0, 0, 0, 0, 0, 261.058, 1284.29, 1080.25, 0, 4, 0, 0, 0, 'house at the beach', 100000, 500, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1637, 4, 305.371, -1770.22, 4.538, 0, 0, 0, 0, 0, 261.058, 1284.29, 1080.25, 0, 4, 0, 0, 0, 'house at the beach', 100000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1638, 4, 315.877, -1769.43, 4.622, 0, 0, 0, 0, 0, 226.3, 1114.37, 1080.99, 0, 5, 0, 0, 0, 'Beach House with Garage', 400000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1639, 4, 902.924, -1815.45, 13.302, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0, 'apartment at the beach ls', 100000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1640, 4, 905.044, -1815.69, 13.3, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0, 'apartment at the beach ls', 100000, 1, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1641, 4, 908.585, -1816.07, 13.301, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0, 'apartment at the beach ls', 100000, 500, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1642, 4, 910.78, -1816.31, 13.301, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0, 'apartment at the beach ls', 100000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1643, 4, 914.559, -1816.73, 13.307, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0, 'apartment at the beach ls', 100000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1644, 4, 916.719, -1816.97, 13.307, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0, 'apartment at the beach ls', 100000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1645, 4, 920.341, -1817.37, 13.306, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0, 'apartment at the beach ls', 100000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1646, 4, 922.531, -1817.62, 13.306, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0, 'apartment at the beach ls', 100000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1647, 4, 926.278, -1818.04, 13.324, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0, 'apartment at the beach ls', 100000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1648, 4, 928.375, -1818.28, 13.321, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0, 'apartment at the beach ls', 100000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1649, 4, 931.923, -1818.69, 13.321, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0, 'apartment at the beach ls', 100000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1650, 4, 934.049, -1818.93, 13.319, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0, 'apartment at the beach ls', 100000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1651, 4, 961.132, -1823.96, 13.326, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0, 'apartment at the beach ls', 100000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1652, 4, 963.249, -1824.51, 13.325, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0, 'apartment at the beach ls', 100000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1653, 4, 966.735, -1825.36, 13.322, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0, 'apartment at the beach ls', 100000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1654, 4, 968.934, -1825.9, 13.323, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0, 'apartment at the beach ls', 100000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1655, 4, 972.501, -1826.77, 13.333, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0, 'apartment at the beach ls', 100000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1656, 4, 974.557, -1827.28, 13.332, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0, 'apartment at the beach ls', 100000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1657, 4, 978.143, -1828.16, 13.329, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0, 'apartment at the beach ls', 100000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1658, 4, 980.192, -1828.67, 13.328, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0, 'apartment at the beach ls', 100000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1659, 4, 983.918, -1829.58, 13.329, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0, 'apartment at the beach ls', 100000, 20, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1660, 4, 985.973, -1830.08, 13.331, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0, 'apartment at the beach ls', 100000, 1000, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1661, 4, 989.481, -1830.95, 13.336, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0, 'apartment at the beach ls', 100000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1662, 4, 991.721, -1831.49, 13.34, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0, 'apartment at the beach ls', 100000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1663, 4, 2581.51, -969.296, 81.361, 0, 0, 0, 0, 0, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, 0, 'Ghetto Home LS Small', 10000, 1, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1664, 4, 655.947, -1635.87, 15.861, 0, 0, 0, 0, 0, 261.058, 1284.29, 1080.25, 0, 4, 0, 0, 0, 'house near the beach', 55000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1665, 4, 660.406, -1599.85, 15, 0, 0, 0, 0, 0, 261.058, 1284.29, 1080.25, 0, 4, 0, 0, 0, 'house near the beach', 55000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1666, 4, 2388.42, -1279.65, 25.128, 0, 0, 0, 0, 0, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, 0, 'Ghetto Home LS Small', 10000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1667, 4, 2387.85, -1328.54, 25.124, 0, 0, 0, 0, 0, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, 0, 'Ghetto Home LS Small', 10000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1668, 4, 2389.73, -1346.29, 25.076, 0, 0, 0, 0, 0, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, 0, 'Ghetto Home LS Small', 10000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1669, 4, 2383.53, -1366.2, 24.489, 0, 0, 0, 0, 0, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, 0, 'Ghetto Home LS Small', 10000, 1, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1670, 4, 2288.22, -1104.66, 38.594, 0, 0, 0, 0, 0, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, 0, 'Ghetto Home LS Small', 10000, 5000, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1671, 4, 2249.32, -1060.31, 55.965, 0, 0, 0, 0, 0, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, 0, 'Ghetto Home LS Small', 10000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1672, 4, 2259.52, -1019, 59.297, 0, 0, 0, 0, 0, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, 0, 'Ghetto Home LS Small', 10000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1673, 4, 2218.78, -1031.73, 60.263, 0, 0, 0, 0, 0, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, 0, 'Ghetto Home LS Small', 10000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1674, 4, 2208.02, -1026.56, 61.347, 0, 0, 0, 0, 0, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, 0, 'Ghetto Home LS Small', 10000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1675, 4, 2154.11, -979.905, 63.291, 0, 0, 0, 0, 0, 244.41, 305.032, 999.148, 0, 1, 0, 0, 0, 'trailer LS', 2000, 200, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1676, 4, 2142.69, -978.153, 61.379, 0, 0, 0, 0, 0, 244.41, 305.032, 999.148, 0, 1, 0, 0, 0, 'trailer LS', 2000, 100, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1677, 4, 2139.79, -1008.43, 61.986, 0, 0, 0, 0, 0, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, 0, 'Ghetto Home LS Small', 10000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1678, 4, 2108.87, -1000.77, 60.506, 0, 0, 0, 0, 0, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, 0, 'Ghetto Home LS Small', 10000, 1000, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1679, 4, 2089.52, -996.244, 53.062, 0, 0, 0, 0, 0, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, 0, 'Ghetto Home LS Small', 10000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1680, 4, 2073.48, -965.177, 49.388, 0, 0, 0, 0, 0, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, 0, 'Ghetto Home LS Small', 10000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1681, 4, 2045.18, -965.918, 44.555, 0, 0, 0, 0, 0, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, 0, 'Ghetto Home LS Small', 10000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1682, 4, 2049.21, -987.278, 44.979, 0, 0, 0, 0, 0, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, 0, 'Ghetto Home LS Small', 10000, 800, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1683, 4, 2044.66, -991.32, 43.234, 0, 0, 0, 0, 0, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, 0, 'Ghetto Home LS Small', 10000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1684, 4, 2015.59, -977.559, 36.951, 0, 0, 0, 0, 0, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, 0, 'Ghetto Home LS Small', 10000, 1, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1685, 4, 2007.36, -984.58, 34.458, 0, 0, 0, 0, 0, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, 0, 'Ghetto Home LS Small', 10000, 100, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1686, 4, 2000.2, -991.651, 32.131, 0, 0, 0, 0, 0, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, 0, 'Ghetto Home LS Small', 10000, 150, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1687, 4, 2131.94, -974.005, 59.784, 0, 0, 0, 0, 0, 244.41, 305.032, 999.148, 0, 1, 0, 0, 0, 'trailer LS', 2000, 200, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1688, 4, 2122.04, -970.335, 58.207, 0, 0, 0, 0, 0, 244.41, 305.032, 999.148, 0, 1, 0, 0, 0, 'trailer LS', 2000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1689, 4, 2051.26, -954.762, 48.033, 0, 0, 0, 0, 0, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, 0, 'Ghetto Home LS Small', 10000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1690, 4, 2278.66, -1077.38, 48.24, 0, 0, 0, 0, 0, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, 0, 'Ghetto Home LS Small', 10000, 1, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1691, 4, 2355.77, -1058.81, 54.076, 0, 0, 0, 0, 0, 244.41, 305.032, 999.148, 0, 1, 0, 0, 0, 'trailer LS', 2000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1692, 4, 2348.01, -1047.59, 53.847, 0, 0, 0, 0, 0, 244.41, 305.032, 999.148, 0, 1, 0, 0, 0, 'trailer LS', 2000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1693, 4, 2350.99, -1039.79, 54.333, 0, 0, 0, 0, 0, 244.41, 305.032, 999.148, 0, 1, 0, 0, 0, 'trailer LS', 2000, 100, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1694, 4, 2355.53, -1038.58, 54.333, 0, 0, 0, 0, 0, 244.41, 305.032, 999.148, 0, 1, 0, 0, 0, 'trailer LS', 2000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1695, 4, 2370.25, -1034.55, 54.409, 0, 0, 0, 0, 0, 244.41, 305.032, 999.148, 0, 1, 0, 0, 0, 'trailer LS', 2000, 250, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1696, 4, 2362.67, -1046.43, 54.27, 0, 0, 0, 0, 0, 244.41, 305.032, 999.148, 0, 1, 0, 0, 0, 'trailer LS', 2000, 5000, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1697, 4, 2335.19, -1046.01, 52.548, 0, 0, 0, 0, 0, 244.41, 305.032, 999.148, 0, 1, 0, 0, 0, 'trailer LS', 2000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1698, 4, 2325.48, -1060.97, 52.465, 0, 0, 0, 0, 0, 244.41, 305.032, 999.148, 0, 1, 0, 0, 0, 'trailer LS', 2000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1699, 4, 2330.22, -1060.9, 52.465, 0, 0, 0, 0, 0, 244.41, 305.032, 999.148, 0, 1, 0, 0, 0, 'trailer LS', 2000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1700, 4, 2297.73, -1053.08, 49.93, 0, 0, 0, 0, 0, 244.41, 305.032, 999.148, 0, 1, 0, 0, 0, 'trailer LS', 2000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1701, 4, 2284.19, -1046.09, 49.887, 0, 0, 0, 0, 0, 244.41, 305.032, 999.148, 0, 1, 0, 0, 0, 'trailer LS', 2000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1702, 4, 2319.77, -1053.31, 52.458, 0, 0, 0, 0, 0, 244.41, 305.032, 999.148, 0, 1, 0, 0, 0, 'trailer LS', 2000, 15, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1703, 4, 2462.41, -1011.12, 60.111, 0, 0, 0, 0, 0, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, 0, 'Ghetto Home LS Small', 10000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1704, 4, 2457.77, -1054.54, 59.958, 0, 0, 0, 0, 0, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, 0, 'Ghetto Home LS Small', 10000, 350, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1705, 4, 2491.37, -1012.27, 65.398, 0, 0, 0, 0, 0, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, 0, 'Ghetto Home LS Small', 10000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1706, 4, 2479.67, -1064.01, 66.998, 0, 0, 0, 0, 0, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, 0, 'Ghetto Home LS Small', 10000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1707, 4, 2512.8, -1027.16, 70.083, 0, 0, 0, 0, 0, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, 0, 'Ghetto Home LS Small', 10000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1708, 4, 2526.09, -1060.67, 69.97, 0, 0, 0, 0, 0, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, 0, 'Ghetto Home LS Small', 10000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1709, 4, 2534.48, -1063.48, 69.565, 0, 0, 0, 0, 0, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, 0, 'Ghetto Home LS Small', 10000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1710, 4, 2526.9, -1033.52, 69.579, 0, 0, 0, 0, 0, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, 0, 'Ghetto Home LS Small', 10000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1711, 4, 2470.59, -1105.32, 44.486, 0, 0, 0, 0, 0, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, 0, 'Ghetto Home LS Small', 10000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1712, 4, 2457.08, -1102.5, 43.867, 0, 0, 0, 0, 0, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, 0, 'Ghetto Home LS Small', 10000, 1000, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1713, 4, 2438.62, -1105.78, 43.081, 0, 0, 0, 0, 0, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, 0, 'Ghetto Home LS Small', 10000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1714, 4, 2407.91, -1106.97, 40.291, 0, 0, 0, 0, 0, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, 0, 'Ghetto Home LS Small', 10000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1715, 4, 2751.49, -1962.88, 13.545, 0, 0, 0, 0, 0, 244.41, 305.032, 999.148, 0, 1, 0, 0, 0, 'LS Project', 4000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1716, 4, 2787.07, -1952.57, 13.545, 0, 0, 0, 0, 0, 244.41, 305.032, 999.148, 0, 1, 0, 0, 0, 'LS Project', 4000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1717, 4, 2751.5, -1936.56, 13.538, 0, 0, 0, 0, 0, 244.41, 305.032, 999.148, 0, 1, 0, 0, 0, 'LS Project', 4000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1718, 4, 2787.07, -1926.17, 13.545, 0, 0, 0, 0, 0, 244.41, 305.032, 999.148, 0, 1, 0, 0, 0, 'LS Project', 4000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1719, 4, 2736.65, -1926.18, 13.545, 0, 0, 0, 0, 0, 244.41, 305.032, 999.148, 0, 1, 0, 0, 0, 'LS Project', 4000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1720, 4, 2736.65, -1952.58, 13.545, 0, 0, 0, 0, 0, 244.41, 305.032, 999.148, 0, 1, 0, 0, 0, 'LS Project', 4000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1721, 4, 2801.92, -1936.32, 13.545, 0, 0, 0, 0, 0, 244.41, 305.032, 999.148, 0, 1, 0, 0, 0, 'LS Project', 4000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1722, 4, 2801.92, -1962.9, 13.545, 0, 0, 0, 0, 0, 244.41, 305.032, 999.148, 0, 1, 0, 0, 0, 'LS Project', 4000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1723, 4, 2696.39, -1990.36, 14.222, 0, 0, 0, 0, 0, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, 0, 'Ghetto Home LS Small', 10000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1724, 4, 2672.71, -1989.47, 14.324, 0, 0, 0, 0, 0, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, 0, 'Ghetto Home LS Small', 10000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1725, 4, 2695.24, -2020.55, 14.022, 0, 0, 0, 0, 0, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, 0, 'Ghetto Home LS Small', 10000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1726, 4, 2673.27, -2020.29, 14.168, 0, 0, 0, 0, 0, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, 0, 'Ghetto Home LS Small', 10000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1727, 4, 2650.7, -2021.8, 14.175, 0, 0, 0, 0, 0, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, 0, 'Ghetto Home LS Small', 10000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1728, 4, 2635.61, -2012.93, 14.144, 0, 0, 0, 0, 0, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, 0, 'Ghetto Home LS Small', 10000, 100, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1729, 4, 2637.01, -1991.77, 14.324, 0, 0, 0, 0, 0, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, 0, 'Ghetto Home LS Small', 10000, 1000, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1730, 4, 2652.78, -1989.43, 13.998, 0, 0, 0, 0, 0, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, 0, 'Ghetto Home LS Small', 10000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1731, 4, 2486.36, -2021.55, 13.998, 0, 0, 0, 0, 0, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, 0, 'Ghetto Home LS Small', 10000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1732, 4, 2483.52, -1995.34, 13.833, 0, 0, 0, 0, 0, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, 0, 'Ghetto Home LS Small', 10000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1733, 4, 2465.22, -2020.79, 14.123, 0, 0, 0, 0, 0, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, 0, 'Ghetto Home LS Small', 10000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1734, 4, 2465.1, -1995.75, 14.019, 0, 0, 0, 0, 0, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, 0, 'Ghetto Home LS Small', 10000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1736, 4, 2508.32, -1998.36, 13.902, 0, 0, 0, 0, 0, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, 0, 'Ghetto Home LS Small', 10000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1737, 4, 2507.84, -2021.05, 14.21, 0, 0, 0, 0, 0, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, 0, 'Ghetto Home LS Small', 10000, 4000, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1738, 4, 2522.75, -2019, 14.074, 0, 0, 0, 0, 0, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, 0, 'Ghetto Home LS Small', 10000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1739, 4, 2524.44, -1998.39, 14.112, 0, 0, 0, 0, 0, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, 0, 'Ghetto Home LS Small', 10000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1740, 4, 1667.53, -2106.94, 14.071, 0, 0, 0, 0, 0, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, 0, 'Ghetto Home LS Small', 10000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1741, 4, 192.779, -1747.76, 4.302, 0, 0, 0, 0, 0, 261.058, 1284.29, 1080.25, 0, 4, 0, 0, 0, 'house at the beach', 100000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1742, 4, 142.5, -1470.27, 25.208, 0, 0, 0, 0, 0, 295.209, 1472.26, 1080.25, 0, 15, 0, 0, 0, 'small house at vinewood', 150000, 2000, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1743, 4, 161.447, -1455.95, 32.844, 0, 0, 0, 0, 0, 234.22, 1063.89, 1084.21, 0, 6, 0, 0, 0, 'House At Vinewood without swimming pool', 400000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1744, 4, 1059.16, -1105.14, 28.045, 0, 0, 0, 0, 0, 447, 1397.09, 1084.3, 0, 2, 0, 0, 0, 'House Near Vinewood', 150000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1745, 4, 1103.41, -1092.54, 28.468, 0, 0, 0, 0, 0, 447, 1397.09, 1084.3, 0, 2, 0, 0, 0, 'House Near Vinewood', 150000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1746, 4, 1103.4, -1069.59, 31.888, 0, 0, 0, 0, 0, 447, 1397.09, 1084.3, 0, 2, 0, 0, 0, 'House Near Vinewood', 150000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1747, 4, 1142.12, -1092.77, 28.187, 0, 0, 0, 0, 0, 447, 1397.09, 1084.3, 0, 2, 0, 0, 0, 'House Near Vinewood', 150000, 5000, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1748, 4, 1183.47, -1098.93, 28.256, 0, 0, 0, 0, 0, 447, 1397.09, 1084.3, 0, 2, 0, 0, 0, 'House Near Vinewood', 150000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1749, 4, 1183.47, -1076.04, 31.677, 0, 0, 0, 0, 0, 447, 1397.09, 1084.3, 0, 2, 0, 0, 0, 'House Near Vinewood', 150000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1750, 4, 1141.81, -1069.99, 31.763, 0, 0, 0, 0, 0, 447, 1397.09, 1084.3, 0, 2, 0, 0, 0, 'House Near Vinewood', 150000, 5000, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1751, 4, 2582.89, -952.931, 81.388, 0, 0, 0, 0, 0, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, 0, 'Ghetto Home LS Small', 10000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1752, 4, 2552.05, -958.429, 82.611, 0, 0, 0, 0, 0, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, 0, 'Ghetto Home LS Small', 10000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1753, 4, 2517.86, -965.392, 82.328, 0, 0, 0, 0, 0, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, 0, 'Ghetto Home LS Small', 10000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1754, 4, 2499.51, -946.997, 82.47, 0, 0, 0, 0, 0, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, 0, 'Ghetto Home LS Small', 10000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1755, 4, 2492.1, -965.645, 82.541, 0, 0, 0, 0, 0, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, 0, 'Ghetto Home LS Small', 10000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1756, 4, 2472.35, -962.043, 80.525, 0, 0, 0, 0, 0, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, 0, 'Ghetto Home LS Small', 10000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1757, 4, 2454.18, -964.963, 80.069, 0, 0, 0, 0, 0, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, 0, 'Ghetto Home LS Small', 10000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1758, 4, 2459.37, -947.702, 80.082, 0, 0, 0, 0, 0, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, 0, 'Ghetto Home LS Small', 10000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1759, 4, 992.684, -1817.65, 13.894, 0, 0, 0, 0, 0, 261.058, 1284.29, 1080.25, 0, 4, 0, 0, 0, 'house at the beach', 100000, 500, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1760, 4, 980.885, -1814.81, 13.887, 0, 0, 0, 0, 0, 261.058, 1284.29, 1080.25, 0, 4, 0, 0, 0, 'house at the beach', 100000, 5000, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1761, 4, 969.596, -1812.02, 13.883, 0, 0, 0, 0, 0, 261.06, 1284.29, 1080.25, 0, 4, 0, 0, 0, 'house at the beach', 100000, 500, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1762, 4, 958.072, -1809.17, 13.88, 0, 0, 0, 0, 0, 261.058, 1284.29, 1080.25, 0, 4, 0, 0, 0, 'house at the beach', 100000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1763, 4, 933.647, -1805.2, 13.843, 0, 0, 0, 0, 0, 261.06, 1284.29, 1080.25, 0, 4, 0, 0, 0, 'house at the beach', 100000, 1000, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1764, 4, 921.974, -1803.89, 13.837, 0, 0, 0, 0, 0, 261.06, 1284.29, 1080.25, 0, 4, 0, 0, 0, 'house at the beach', 100000, 900, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1765, 4, 910.267, -1802.69, 13.8, 0, 0, 0, 0, 0, 261.058, 1284.29, 1080.25, 0, 4, 0, 0, 0, 'house at the beach', 100000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1766, 4, 883.241, -1800.39, 13.8, 0, 0, 0, 0, 0, 261.058, 1284.29, 1080.25, 0, 4, 0, 0, 0, 'house at the beach', 100000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1767, 4, 866.656, -1798.94, 13.814, 0, 0, 0, 0, 0, 261.058, 1284.29, 1080.25, 0, 4, 0, 0, 0, 'house at the beach', 100000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1768, 4, 795.247, -506.148, 18.01, 0, 0, 0, 0, 0, 2282.9, -1139.99, 1050.89, 0, 11, 0, 0, 0, 'Little House at Dillimore', 60000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1769, 4, 818.257, -509.316, 18.01, 0, 0, 0, 0, 0, 261.058, 1284.29, 1080.25, 0, 4, 0, 0, 0, 'Little House at Dillimore', 50000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1770, 4, 768.341, -503.48, 18.01, 0, 0, 0, 0, 0, 327.91, 1477.79, 1084.43, 0, 15, 0, 0, 0, 'House at Dillimore', 85000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1771, 4, 743.239, -509.316, 18.01, 0, 0, 0, 0, 0, 327.91, 1477.79, 1084.43, 0, 15, 0, 0, 0, 'House at Dillimore', 100000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1772, 4, 745.135, -556.783, 18.01, 0, 0, 0, 0, 0, 327.91, 1477.79, 1084.43, 0, 15, 0, 0, 0, 'House at Dillimore', 100000, 150, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1773, 4, 766.591, -556.783, 18.01, 0, 0, 0, 0, 0, 327.91, 1477.79, 1084.43, 0, 15, 0, 0, 0, 'House at Dillimore', 100000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1774, 4, 759.286, -592.028, 18.013, 0, 0, 0, 0, 0, 261.058, 1284.29, 1080.25, 0, 4, 0, 0, 0, 'Little House at Dillimore', 70000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1775, 4, 745.674, -591.145, 18.01, 0, 0, 0, 0, 0, 261.058, 1284.29, 1080.25, 0, 4, 0, 0, 0, 'Little House at Dillimore', 70000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1776, 4, 261.958, -269.976, 1.639, 0, 0, 0, 0, 0, 244.41, 305.032, 999.148, 0, 1, 0, 0, 0, 'Trailer at Blue Berry', 20000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1777, 4, 264.514, -288.417, 1.72643, 0, 0, 0, 0, 0, 244.41, 305.032, 999.148, 0, 1, 0, 0, 0, 'Trailer at Blue Berry', 20000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1778, 4, 260.596, -302.989, 1.917, 0, 0, 0, 0, 0, 244.41, 305.032, 999.148, 0, 1, 0, 0, 0, 'Trailer at Blue Berry', 20000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1779, 4, 253.248, -289.945, 1.70299, 0, 0, 0, 0, 0, 244.41, 305.032, 999.148, 0, 1, 0, 0, 0, 'Trailer at Blue Berry', 20000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1780, 4, 255.911, -278.502, 1.656, 0, 0, 0, 0, 0, 244.41, 305.032, 999.148, 0, 1, 0, 0, 0, 'Trailer at Blue Berry', 20000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1781, 4, 238.921, -286.288, 1.63268, 0, 0, 0, 0, 0, 244.41, 305.032, 999.148, 0, 1, 0, 0, 0, 'Trailer at Blue Berry', 20000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1782, 4, 235.132, -309.456, 1.7108, 0, 0, 0, 0, 0, 244.41, 305.032, 999.148, 0, 1, 0, 0, 0, 'Trailer at Blue Berry', 20000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1783, 4, 226.549, -302.812, 1.92618, 0, 0, 0, 0, 0, 244.41, 305.032, 999.148, 0, 1, 0, 0, 0, 'Trailer at Blue Berry', 20000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1784, 4, 264.514, -283.665, 1.72643, 0, 0, 0, 0, 0, 244.41, 305.032, 999.148, 0, 1, 0, 0, 0, 'Trailer at Blue Berry', 20000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1785, 4, 253.533, -274.545, 1.656, 0, 0, 0, 0, 0, 244.41, 305.032, 999.148, 0, 1, 0, 0, 0, 'Trailer at Blue Berry', 20000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1786, 4, 242.013, -298.601, 1.687, 0, 0, 0, 0, 0, 244.41, 305.032, 999.148, 0, 1, 0, 0, 0, 'Trailer at Blue Berry', 20000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1787, 4, 178.279, -120.235, 1.54903, 0, 0, 0, 0, 0, 261.059, 1284.29, 1080.25, 0, 4, 0, 0, 0, 'Apartment at Blue Berry', 80000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1788, 4, 189.312, -120.229, 1.54846, 0, 0, 0, 0, 0, 261.059, 1284.29, 1080.25, 0, 4, 0, 0, 0, 'Apartment at Blue Berry', 80000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1789, 4, 166.299, -120.23, 1.55488, 0, 0, 0, 0, 0, 261.059, 1284.29, 1080.25, 0, 4, 0, 0, 0, 'Apartment at Blue Berry', 80000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1790, 4, 201.46, -94.9737, 1.55498, 0, 0, 0, 0, 0, 261.059, 1284.29, 1080.25, 0, 4, 0, 0, 0, 'Apartment at Blue Berry', 80000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1791, 4, 160.633, -102.568, 4.89647, 0, 0, 0, 0, 0, 261.059, 1284.29, 1080.25, 0, 4, 0, 0, 0, 'Apartment at Blue Berry', 80000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1792, 4, 160.632, -112.595, 4.89647, 0, 0, 0, 0, 0, 261.059, 1284.29, 1080.25, 0, 4, 0, 0, 0, 'Apartment at Blue Berry', 80000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1793, 4, 166.187, -118.234, 4.89647, 0, 0, 0, 0, 0, 261.059, 1284.29, 1080.25, 0, 4, 0, 0, 0, 'Apartment at Blue Berry', 80000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1794, 4, 178.265, -118.235, 4.89647, 0, 0, 0, 0, 0, 261.059, 1284.29, 1080.25, 0, 4, 0, 0, 0, 'Apartment at Blue Berry', 80000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1795, 4, 166.246, -96.9721, 4.89647, 0, 0, 0, 0, 0, 261.059, 1284.29, 1080.25, 0, 4, 0, 0, 0, 'Apartment at Blue Berry', 80000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1796, 4, 178.373, -96.973, 4.89647, 0, 0, 0, 0, 0, 261.059, 1284.29, 1080.25, 0, 4, 0, 0, 0, 'Apartment at Blue Berry', 80000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1797, 4, 166.389, -94.9725, 1.55484, 0, 0, 0, 0, 0, 261.059, 1284.29, 1080.25, 0, 4, 0, 0, 0, 'Apartment at Blue Berry', 80000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1798, 4, 207.073, -112.385, 4.89647, 0, 0, 0, 0, 0, 261.059, 1284.29, 1080.25, 0, 4, 0, 0, 0, 'Apartment at Blue Berry', 80000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1799, 4, 201.414, -96.9729, 4.89647, 0, 0, 0, 0, 0, 261.059, 1284.29, 1080.25, 0, 4, 0, 0, 0, 'Apartment at Blue Berry', 80000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1800, 4, 189.413, -96.9718, 4.89647, 0, 0, 0, 0, 0, 261.059, 1284.29, 1080.25, 0, 4, 0, 0, 0, 'Apartment at Blue Berry', 80000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1801, 4, 201.373, -118.234, 4.89647, 0, 0, 0, 0, 0, 261.059, 1284.29, 1080.25, 0, 4, 0, 0, 0, 'Apartment at Blue Berry', 80000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1802, 4, 201.453, -120.234, 1.55143, 0, 0, 0, 0, 0, 261.059, 1284.29, 1080.25, 0, 4, 0, 0, 0, 'Apartment at Blue Berry', 80000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1803, 4, 158.641, -112.616, 1.55671, 0, 0, 0, 0, 0, 261.059, 1284.29, 1080.25, 0, 4, 0, 0, 0, 'Apartment at Blue Berry', 80000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1804, 4, 209.084, -112.603, 1.55078, 0, 0, 0, 0, 0, 261.059, 1284.29, 1080.25, 0, 4, 0, 0, 0, 'Apartment at Blue Berry', 80000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1805, 4, 252.884, -92.418, 3.535, 0, 0, 0, 0, 0, 2282.9, -1139.99, 1050.89, 0, 11, 0, 0, 0, 'House at Blue Berry', 110000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1806, 4, 252.886, -121.314, 3.535, 0, 0, 0, 0, 0, 2282.9, -1139.99, 1050.89, 0, 11, 0, 0, 0, 'House at Blue Berry', 110000, 500, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1807, 4, 267.691, -54.541, 2.776, 0, 0, 0, 0, 0, 2282.9, -1139.99, 1050.89, 0, 11, 0, 0, 0, 'House at Blue Berry', 130000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1808, 4, 295.071, -54.545, 2.777, 0, 0, 0, 0, 0, 2282.9, -1139.99, 1050.89, 0, 11, 0, 0, 0, 'House at Blue Berry', 100000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1809, 4, 312.721, -92.337, 3.535, 0, 0, 0, 0, 0, 2282.9, -1139.99, 1050.89, 0, 11, 0, 0, 0, 'House at Blue Berry', 100000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1810, 4, 312.721, -121.25, 3.535, 0, 0, 0, 0, 0, 2282.9, -1139.99, 1050.89, 0, 11, 0, 0, 0, 'House at Blue Berry', 100000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1811, 4, 342.625, 62.719, 3.861, 0, 0, 0, 0, 0, 260.769, 1237.26, 1084.25, 0, 9, 0, 0, 0, 'Small House near Blue Berry', 40000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1812, 4, 317.737, 54.6055, 3.375, 0, 0, 0, 0, 0, 260.769, 1237.26, 1084.25, 0, 9, 0, 0, 0, 'Small House near Blue Berry', 60000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1813, 4, 309.11, 44.4167, 3.08797, 0, 0, 0, 0, 0, 260.769, 1237.26, 1084.25, 0, 9, 0, 0, 0, 'Small House near Blue Berry', 60000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1814, 4, 286.063, 41.147, 2.54844, 0, 0, 0, 0, 0, 260.769, 1237.26, 1084.25, 0, 9, 0, 0, 0, 'Small House near Blue Berry', 60000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1815, 4, 316.561, 18.2672, 4.51562, 0, 0, 0, 0, 0, 260.769, 1237.26, 1084.25, 0, 9, 0, 0, 0, 'Small House near Blue Berry', 60000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1816, 4, 340.197, 33.4515, 6.40556, 0, 0, 0, 0, 0, 260.769, 1237.26, 1084.25, 0, 9, 0, 0, 0, 'Small House near Blue Berry', 60000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1817, 4, 2323.84, 162.27, 28.44, 0, 0, 0, 0, 0, 2282.9, -1139.99, 1050.89, 0, 11, 0, 0, 0, 'House At Palomino Creek', 60000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1818, 4, 2364, 187.283, 28.44, 0, 0, 0, 0, 0, 327.91, 1477.79, 1084.43, 0, 15, 0, 0, 0, 'House At Palomino Creek', 100000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1819, 4, 2364, 166.093, 28.44, 0, 0, 0, 0, 0, 327.91, 1477.79, 1084.43, 0, 15, 0, 0, 0, 'House At Palomino Creek', 100000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1820, 4, 2323.84, 191.22, 28.44, 0, 0, 0, 0, 0, 327.91, 1477.79, 1084.43, 0, 15, 0, 0, 0, 'House At Palomino Creek', 100000, 1, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1821, 4, 2323.84, 136.421, 28.44, 0, 0, 0, 0, 0, 327.91, 1477.79, 1084.43, 0, 15, 0, 0, 0, 'House At Palomino Creek', 100000, 1000, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1822, 4, 2323.84, 116.138, 28.44, 0, 0, 0, 0, 0, 261.058, 1284.29, 1080.25, 0, 4, 0, 0, 0, 'House At Palomino Creek', 60000, 1, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1823, 4, 2364, 116.125, 28.44, 0, 0, 0, 0, 0, 261.058, 1284.29, 1080.25, 0, 4, 0, 0, 0, 'House At Palomino Creek', 60000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1824, 4, 2373.84, 71.079, 28.44, 0, 0, 0, 0, 0, 261.058, 1284.29, 1080.25, 0, 4, 0, 0, 0, 'House At Palomino Creek', 60000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1825, 4, 2373.84, 42.277, 28.44, 0, 0, 0, 0, 0, 261.058, 1284.29, 1080.25, 0, 4, 0, 0, 0, 'House At Palomino Creek', 60000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1826, 4, 2373.84, 21.978, 28.44, 0, 0, 0, 0, 0, 261.058, 1284.29, 1080.25, 0, 4, 0, 0, 0, 'House At Palomino Creek', 60000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1827, 4, 2373.84, -8.649, 28.44, 0, 0, 0, 0, 0, 261.058, 1284.29, 1080.25, 0, 4, 0, 0, 0, 'House At Palomino Creek', 60000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1828, 4, 2367.38, -49.125, 28.152, 0, 0, 0, 0, 0, 261.058, 1284.29, 1080.25, 0, 4, 0, 0, 0, 'House At Palomino Creek', 60000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1829, 4, 2392.29, -54.964, 28.152, 0, 0, 0, 0, 0, 327.91, 1477.79, 1084.43, 0, 15, 0, 0, 0, 'House At Palomino Creek', 100000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1830, 4, 2415.57, -5.701, 27.683, 0, 0, 0, 0, 0, 327.91, 1477.79, 1084.43, 0, 15, 0, 0, 0, 'House At Palomino Creek', 100000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1831, 4, 2438.78, -54.964, 28.152, 0, 0, 0, 0, 0, 260.769, 1237.26, 1084.25, 0, 9, 0, 0, 0, 'House At Palomino Creek', 60000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1832, 4, 2442.86, -4.038, 27.683, 0, 0, 0, 0, 0, 260.769, 1237.26, 1084.25, 0, 9, 0, 0, 0, 'House At Palomino Creek', 60000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1833, 4, 2488.38, 11.762, 28.44, 0, 0, 0, 0, 0, 260.769, 1237.26, 1084.25, 0, 9, 0, 0, 0, 'House At Palomino Creek', 60000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1834, 4, 2484.49, -28.392, 28.441, 0, 0, 0, 0, 0, 260.769, 1237.26, 1084.25, 0, 9, 0, 0, 0, 'House At Palomino Creek', 60000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1835, 4, 2513.28, -28.402, 28.44, 0, 0, 0, 0, 0, 260.769, 1237.26, 1084.25, 0, 9, 0, 0, 0, 'House At Palomino Creek', 85000, 1000, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1836, 4, 2417.01, 17.878, 27.683, 0, 0, 0, 0, 0, 260.769, 1237.26, 1084.25, 0, 9, 0, 0, 0, 'House At Palomino Creek', 85000, 1000, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1837, 4, 2549.23, 25.145, 27.673, 0, 0, 0, 0, 0, 327.91, 1477.79, 1084.43, 0, 15, 0, 0, 0, 'House At Palomino Creek', 150000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1838, 4, 2551.22, -5.506, 27.673, 0, 0, 0, 0, 0, 327.91, 1477.79, 1084.43, 0, 15, 0, 0, 0, 'House At Palomino Creek', 150000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1839, 4, 2551.22, 57.138, 27.673, 0, 0, 0, 0, 0, 327.91, 1477.79, 1084.43, 0, 15, 0, 0, 0, 'House At Palomino Creek', 110000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1840, 4, 2557.01, 87.888, 27.673, 0, 0, 0, 0, 0, 327.91, 1477.79, 1084.43, 0, 15, 0, 0, 0, 'House At Palomino Creek', 110000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1841, 4, 2536.24, 128.985, 27.683, 0, 0, 0, 0, 0, 327.91, 1477.79, 1084.43, 0, 15, 0, 0, 0, 'House At Palomino Creek', 110000, 5000, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1842, 4, 2518.44, 128.987, 27.675, 0, 0, 0, 0, 0, 327.91, 1477.79, 1084.43, 0, 15, 0, 0, 0, 'House At Palomino Creek', 110000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1843, 4, 2514.05, 94.389, 27.683, 0, 0, 0, 0, 0, 260.769, 1237.26, 1084.25, 0, 9, 0, 0, 0, 'House At Palomino Creek', 90000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1844, 4, 2480.62, 126.994, 27.673, 0, 0, 0, 0, 0, 327.91, 1477.79, 1084.43, 0, 15, 0, 0, 0, 'House At Palomino Creek', 150000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1845, 4, 2462.76, 134.778, 27.675, 0, 0, 0, 0, 0, 327.91, 1477.79, 1084.43, 0, 15, 0, 0, 0, 'House At Palomino Creek', 150000, 500, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1846, 4, 2443.84, 92.263, 28.44, 0, 0, 0, 0, 0, 327.91, 1477.79, 1084.43, 0, 15, 0, 0, 0, 'House At Palomino Creek', 150000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1847, 4, 2481.22, 64.37, 27.683, 0, 0, 0, 0, 0, 260.769, 1237.26, 1084.25, 0, 9, 0, 0, 0, 'House At Palomino Creek', 80000, 5000, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1848, 4, 2479.34, 94.391, 27.683, 0, 0, 0, 0, 0, 260.769, 1237.26, 1084.25, 0, 9, 0, 0, 0, 'House At Palomino Creek', 70000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1849, 4, 2439.56, 24.503, 27.683, 0, 0, 0, 0, 0, 327.91, 1477.79, 1084.43, 0, 15, 0, 0, 0, 'House At Palomino Creek', 125000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1850, 4, 2448.42, -11.019, 27.683, 0, 0, 0, 0, 0, 260.769, 1237.26, 1084.25, 0, 9, 0, 0, 0, 'House At Palomino Creek', 90000, 1, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1851, 4, 2415.44, -52.283, 28.153, 0, 0, 0, 0, 0, 261.058, 1284.29, 1080.25, 0, 4, 0, 0, 0, 'House At Palomino Creek', 250000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1852, 4, 2398.34, 111.76, 28.44, 0, 0, 0, 0, 0, 261.058, 1284.29, 1080.25, 0, 4, 0, 0, 0, 'House At Palomino Creek', 60000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1853, 4, 2269.5, 111.764, 28.44, 0, 0, 0, 0, 0, 261.058, 1284.29, 1080.25, 0, 4, 0, 0, 0, 'House At Palomino Creek', 60000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1854, 4, 2249.3, 111.763, 28.44, 0, 0, 0, 0, 0, 261.058, 1284.29, 1080.25, 0, 4, 0, 0, 0, 'House At Palomino Creek', 60000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1855, 4, 2203.84, 106.152, 28.44, 0, 0, 0, 0, 0, 260.769, 1237.26, 1084.25, 0, 9, 0, 0, 0, 'House At Palomino Creek', 95000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1856, 4, 2203.84, 62.284, 28.44, 0, 0, 0, 0, 0, 327.91, 1477.79, 1084.43, 0, 15, 0, 0, 0, 'House At Palomino Creek', 120000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1857, 4, 2270.49, -7.499, 28.152, 0, 0, 0, 0, 0, 327.91, 1477.79, 1084.43, 0, 15, 0, 0, 0, 'House At Palomino Creek', 120000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1858, 4, 2245.52, -1.661, 28.152, 0, 0, 0, 0, 0, 327.91, 1477.79, 1084.43, 0, 15, 0, 0, 0, 'House At Palomino Creek', 190000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1859, 4, 2199.95, -37.354, 28.152, 0, 0, 0, 0, 0, 327.91, 1477.79, 1084.43, 0, 15, 0, 0, 0, 'House At Palomino Creek', 250000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1860, 4, 2197.27, -60.667, 28.152, 0, 0, 0, 0, 0, 327.91, 1477.79, 1084.43, 0, 15, 0, 0, 0, 'House At Palomino Creek', 220000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1861, 4, 2203.1, -89.224, 28.152, 0, 0, 0, 0, 0, 327.91, 1477.79, 1084.43, 0, 15, 0, 0, 0, 'House At Palomino Creek', 250000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1862, 4, 2245.53, -122.291, 28.153, 0, 0, 0, 0, 0, 327.91, 1477.79, 1084.43, 0, 15, 0, 0, 0, 'House At Palomino Creek', 220000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1863, 4, 2272.45, -119.135, 28.152, 0, 0, 0, 0, 0, 327.91, 1477.79, 1084.43, 0, 15, 0, 0, 0, 'House At Palomino Creek', 220000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1864, 4, 2293.74, -124.958, 28.152, 0, 0, 0, 0, 0, 260.769, 1237.26, 1084.25, 0, 9, 0, 0, 0, 'House At Palomino Creek', 110000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1865, 4, 2322.25, -124.959, 28.152, 0, 0, 0, 0, 0, 260.769, 1237.26, 1084.25, 0, 9, 0, 0, 0, 'House At Palomino Creek', 110000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1866, 4, 2285.84, 161.768, 28.44, 0, 0, 0, 0, 0, 260.769, 1237.26, 1084.25, 0, 9, 0, 0, 0, 'House At Palomino Creek', 110000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1867, 4, 2266.49, 168.339, 28.152, 0, 0, 0, 0, 0, 260.769, 1237.26, 1084.25, 0, 9, 0, 0, 0, 'House At Palomino Creek', 110000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1868, 4, 2236.53, 168.304, 28.152, 0, 0, 0, 0, 0, 260.769, 1237.26, 1084.25, 0, 9, 0, 0, 0, 'House At Palomino Creek', 110000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1869, 4, 2413.54, 61.761, 28.44, 0, 0, 0, 0, 0, 260.769, 1237.26, 1084.25, 0, 9, 0, 0, 0, 'House At Palomino Creek', 110000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1870, 4, 2443.41, 61.762, 28.44, 0, 0, 0, 0, 0, 260.769, 1237.26, 1084.25, 0, 9, 0, 0, 0, 'House At Palomino Creek', 120000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1871, 4, 2509.5, 11.762, 28.44, 0, 0, 0, 0, 0, 260.769, 1237.26, 1084.25, 0, 9, 0, 0, 0, 'House At Palomino Creek', 90000, 1, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1872, 4, 2511.69, 57.215, 27.683, 0, 0, 0, 0, 0, 2282.9, -1139.99, 1050.89, 0, 11, 0, 0, 0, 'House At Palomino Creek', 125000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1873, 4, 1283.31, 158.373, 20.791, 0, 0, 0, 0, 0, 2196.84, -1204.23, 1049.02, 0, 6, 0, 0, 0, 'Trailer at Montgomery', 40000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1874, 4, 1295.41, 174.55, 20.909, 0, 0, 0, 0, 0, 2196.84, -1204.23, 1049.02, 0, 6, 0, 0, 0, 'Trailer at Montgomery', 40000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1875, 4, 1294.51, 157.647, 20.576, 0, 0, 0, 0, 0, 2196.84, -1204.23, 1049.02, 0, 6, 0, 0, 0, 'Trailer at Montgomery', 40000, 5000, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1876, 4, 1299.14, 140.344, 20.538, 0, 0, 0, 0, 0, 244.41, 305.032, 999.148, 0, 1, 0, 0, 0, 'Trailer at Montgomery', 30000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1877, 4, 1303.61, 186.1, 20.5389, 0, 0, 0, 0, 0, 2196.84, -1204.23, 1049.02, 0, 6, 0, 0, 0, 'Trailer at Montgomery', 40000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1878, 4, 1300.44, 193.272, 20.5233, 0, 0, 0, 0, 0, 2196.84, -1204.23, 1049.02, 0, 6, 0, 0, 0, 'Trailer at Montgomery', 40000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1879, 4, 1315.63, 180.156, 20.554, 0, 0, 0, 0, 0, 2196.84, -1204.23, 1049.02, 0, 6, 0, 0, 0, 'Trailer at Montgomery', 40000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1880, 4, 1311.76, 169.572, 20.631, 0, 0, 0, 0, 0, 2196.84, -1204.23, 1049.02, 0, 6, 0, 0, 0, 'Trailer at Montgomery', 40000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1881, 4, 1307.29, 153.318, 20.4921, 0, 0, 0, 0, 0, 2196.84, -1204.23, 1049.02, 0, 6, 0, 0, 0, 'Trailer at Montgomery', 40000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1882, 4, 1409.27, 346.89, 19.252, 0, 0, 0, 0, 0, 2196.84, -1204.23, 1049.02, 0, 6, 0, 0, 0, 'House at Montgomery', 60000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1883, 4, 1403.22, 333.848, 18.9062, 0, 0, 0, 0, 0, 2196.84, -1204.23, 1049.02, 0, 6, 0, 0, 0, 'House at Montgomery', 60000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1884, 4, 1415.88, 324.624, 18.843, 0, 0, 0, 0, 0, 2196.84, -1204.23, 1049.02, 0, 6, 0, 0, 0, 'House at Montgomery', 60000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1885, 4, 1428.64, 356.429, 18.875, 0, 0, 0, 0, 0, 2196.84, -1204.23, 1049.02, 0, 6, 0, 0, 0, 'House at Montgomery', 60000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1886, 4, 1413.14, 363.115, 19.1991, 0, 0, 0, 0, 0, 2196.84, -1204.23, 1049.02, 0, 6, 0, 0, 0, 'House at Montgomery', 60000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1887, 4, 1419.53, 389.472, 19.3297, 0, 0, 0, 0, 0, 2196.84, -1204.23, 1049.02, 0, 6, 0, 0, 0, 'House at Montgomery', 60000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1888, 4, 1475.32, 372.745, 19.6562, 0, 0, 0, 0, 0, 2196.84, -1204.23, 1049.02, 0, 6, 0, 0, 0, 'House at Montgomery', 60000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1889, 4, 1465.74, 364.197, 19.2608, 0, 0, 0, 0, 0, 2196.84, -1204.23, 1049.02, 0, 6, 0, 0, 0, 'House at Montgomery', 60000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1890, 4, 1469.66, 351.454, 18.923, 0, 0, 0, 0, 0, 2196.84, -1204.23, 1049.02, 0, 6, 0, 0, 0, 'House at Montgomery', 60000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1891, 4, 1451.58, 375.788, 19.4005, 0, 0, 0, 0, 0, 2196.84, -1204.23, 1049.02, 0, 6, 0, 0, 0, 'House at Montgomery', 60000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1892, 4, 1447.45, 361.738, 18.9081, 0, 0, 0, 0, 0, 2196.84, -1204.23, 1049.02, 0, 6, 0, 0, 0, 'House at Montgomery', 60000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1893, 4, 1461.13, 342.467, 18.951, 0, 0, 0, 0, 0, 2196.84, -1204.23, 1049.02, 0, 6, 0, 0, 0, 'House at Montgomery', 60000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1894, 4, 1434.89, 334.767, 18.9469, 0, 0, 0, 0, 0, 2196.84, -1204.23, 1049.02, 0, 6, 0, 0, 0, 'House at Montgomery', 60000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1895, 4, 1488.61, 360.899, 19.4108, 0, 0, 0, 0, 0, 2196.84, -1204.23, 1049.02, 0, 6, 0, 0, 0, 'House at Montgomery', 60000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1896, 4, 723.709, 269.671, 22.4531, 0, 0, 0, 0, 0, 2196.84, -1204.23, 1049.02, 0, 6, 0, 0, 0, 'House near Blueberry', 60000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1897, 4, 705.467, 292.096, 20.4219, 0, 0, 0, 0, 0, 2196.84, -1204.23, 1049.02, 0, 6, 0, 0, 0, 'House near Blueberry', 60000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1898, 4, 719.073, 300.585, 20.3766, 0, 0, 0, 0, 0, 2196.84, -1204.23, 1049.02, 0, 6, 0, 0, 0, 'House near Blueberry', 60000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1899, 4, 746.396, 305.002, 20.233, 0, 0, 0, 0, 0, 2196.84, -1204.23, 1049.02, 0, 6, 0, 0, 0, 'House near Blueberry', 60000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1900, 4, 747.132, 278.173, 27.218, 0, 0, 0, 0, 0, 2196.84, -1204.23, 1049.02, 0, 6, 0, 0, 0, 'House near Blueberry', 60000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1901, 4, 748.16, 257.106, 27.0859, 0, 0, 0, 0, 0, 2196.84, -1204.23, 1049.02, 0, 6, 0, 0, 0, 'House near Blueberry', 60000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1902, 4, 748.428, 350.901, 20.5858, 0, 0, 0, 0, 0, 244.41, 305.032, 999.148, 0, 1, 0, 0, 0, 'Trailer near Blueberry', 15000, 1, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1903, 4, 808.065, 372.286, 19.451, 0, 0, 0, 0, 0, 244.41, 305.032, 999.148, 0, 1, 0, 0, 0, 'Trailer near Blueberry', 15000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1904, 4, 783.166, 377.561, 21.2967, 0, 0, 0, 0, 0, 244.41, 305.032, 999.148, 0, 1, 0, 0, 0, 'Trailer near Blueberry', 15000, 500, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1905, 4, 751.723, 375.22, 23.374, 0, 0, 0, 0, 0, 244.41, 305.032, 999.148, 0, 1, 0, 0, 0, 'Trailer near Blueberry', 15000, 5000, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1906, 4, 783.883, 352.588, 19.5938, 0, 0, 0, 0, 0, 2196.84, -1204.23, 1049.02, 0, 6, 0, 0, 0, 'House near Blueberry', 60000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1907, 4, 805.329, 358.37, 19.7621, 0, 0, 0, 0, 0, 2196.84, -1204.23, 1049.02, 0, 6, 0, 0, 0, 'House near Blueberry', 60000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1908, 4, 758.917, 375.023, 23.3922, 0, 0, 0, 0, 0, 2196.84, -1204.23, 1049.02, 0, 6, 0, 0, 0, 'House near Blueberry', 60000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1909, 4, 772.919, 348.266, 20.1527, 0, 0, 0, 0, 0, 2196.84, -1204.23, 1049.02, 0, 6, 0, 0, 0, 'House near Blueberry', 60000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1910, 4, -1061.35, -1205.56, 129.756, 0, 0, 0, 0, 0, 2317.82, -1024.75, 1050.21, 0, 9, 0, 0, 0, 'Farm', 75000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1911, 4, 1566.6, 23.2625, 24.1641, 0, 0, 0, 0, 0, 422.572, 2536.12, 10, 0, 10, 0, 0, 0, 'Shack', 75000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1912, 4, 870.399, -24.9238, 63.9856, 0, 0, 0, 0, 0, 422.293, 2536.68, 10, 0, 10, 0, 0, 0, 'Ranch', 25000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1913, 4, -1051.73, 1549.97, 33.4376, 0, 0, 0, 0, 0, 422.293, 2536.68, 10, 0, 10, 0, 0, 0, 'Shack', 1000000, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1914, 1, 1108.48, -606.323, 16.5294, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, -1, 0, 0, 'Apartments', 0, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1915, 1, 1098.4, -606.325, 16.5284, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, -1, 0, 0, 'Apartments', 0, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1916, 1, 1088.51, -606.329, 16.5259, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, -1, 0, 0, 'Apartments', 0, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1917, 1, 1078.4, -606.327, 16.5272, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, -1, 0, 0, 'Apartments', 0, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1918, 1, 1068.39, -606.328, 16.5265, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, -1, 0, 0, 'Apartments', 0, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1919, 1, 1113.51, -556.319, 17.1908, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, -1, 0, 0, 'Apartments', 0, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1920, 1, 1113.51, -546.203, 18.1932, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, -1, 0, 0, 'Apartments', 0, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1921, 1, 1113.51, -536.263, 19.1813, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, -1, 0, 0, 'Apartments', 0, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1922, 1, 1108.68, -516.083, 20.7302, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, -1, 0, 0, 'Apartments', 0, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1923, 1, 1098.55, -516.085, 19.7426, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, -1, 0, 0, 'Apartments', 0, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1924, 1, 1088.67, -516.084, 18.7428, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, -1, 0, 0, 'Apartments', 0, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1925, 1, 1078.69, -516.086, 17.7431, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, -1, 0, 0, 'Apartments', 0, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1926, 1, 1068.6, -516.086, 16.7438, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, -1, 0, 0, 'Apartments', 0, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1927, 1, 1113.45, -481.082, 21.5832, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, -1, 0, 0, 'Apartments', 0, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1928, 1, 1113.45, -466.156, 21.5552, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, -1, 0, 0, 'Apartments', 0, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1929, 1, 1113.45, -461.012, 21.56, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, -1, 0, 0, 'Apartments', 0, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1930, 1, 1113.45, -446.145, 21.5648, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, -1, 0, 0, 'Apartments', 0, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1931, 1, 1113.45, -441.121, 21.5653, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, -1, 0, 0, 'Apartments', 0, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1932, 1, 1140.85, -485.212, 20.481, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, -1, 0, 0, 'Apartments', 0, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1933, 1, 1150.99, -485.209, 21.4949, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, -1, 0, 0, 'Apartments', 0, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1934, 1, 1160.85, -485.211, 22.4811, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, -1, 0, 0, 'Apartments', 0, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1935, 1, 1170.93, -485.208, 23.4892, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, -1, 0, 0, 'Apartments', 0, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1936, 1, 1181.01, -485.209, 24.4972, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, -1, 0, 0, 'Apartments', 0, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1937, 1, 1207.81, -556.038, 22.2669, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, -1, 0, 0, 'Apartments', 0, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1938, 1, 1207.81, -546.034, 23.2659, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, -1, 0, 0, 'Apartments', 0, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1939, 1, 1207.8, -536.008, 24.252, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, -1, 0, 0, 'Apartments', 0, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1940, 1, 1208.62, -515.882, 26.8362, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, -1, 0, 0, 'Apartments', 0, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1941, 1, 1218.7, -515.88, 27.835, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, -1, 0, 0, 'Apartments', 0, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1942, 1, 1228.62, -515.883, 28.8368, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, -1, 0, 0, 'Apartments', 0, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1943, 1, 1238.57, -515.88, 29.8349, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, -1, 0, 0, 'Apartments', 0, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1944, 1, 1248.61, -515.882, 30.8245, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, -1, 0, 0, 'Apartments', 0, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1945, 1, 1210.81, -485.209, 25.5162, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, -1, 0, 0, 'Apartments', 0, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1946, 1, 1220.87, -485.208, 26.5799, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, -1, 0, 0, 'Apartments', 0, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1947, 1, 1230.72, -485.208, 27.565, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, -1, 0, 0, 'Apartments', 0, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1948, 1, 1240.87, -485.21, 28.5796, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, -1, 0, 0, 'Apartments', 0, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1949, 1, 1250.85, -485.208, 29.5778, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, -1, 0, 0, 'Apartments', 0, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1950, 1, 1260.8, -484.168, 31.0618, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, -1, 0, 0, 'Apartments', 0, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1951, 1, 1270.66, -484.164, 33.0035, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, -1, 0, 0, 'Apartments', 0, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1952, 1, 1280.93, -484.164, 35.0272, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, -1, 0, 0, 'Apartments', 0, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1953, 1, 1290.9, -484.165, 36.9913, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, -1, 0, 0, 'Apartments', 0, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1954, 1, 1300.93, -484.164, 38.9659, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, -1, 0, 0, 'Apartments', 0, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1955, 1, 1388.03, -436.166, 51.4305, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, -1, 0, 0, 'Apartments', 0, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1956, 1, 1388.03, -426.169, 51.4296, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, -1, 0, 0, 'Apartments', 0, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1957, 1, 1388.03, -416.242, 51.4305, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, -1, 0, 0, 'Apartments', 0, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1958, 1, 1388.09, -408.74, 51.5821, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, -1, 0, 0, 'Apartments', 0, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1959, 1, 1388.09, -398.619, 51.5805, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, -1, 0, 0, 'Apartments', 0, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1960, 1, 1388.01, -386.138, 51.169, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, -1, 0, 0, 'Apartments', 0, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1961, 1, 1388.02, -376.265, 51.1715, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, -1, 0, 0, 'Apartments', 0, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1962, 1, 1388.02, -366.289, 51.1709, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, -1, 0, 0, 'Apartments', 0, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1963, 1, 1388.1, -358.708, 51.6067, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, -1, 0, 0, 'Apartments', 0, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1964, 1, 1388.03, -346.209, 51.1967, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, -1, 0, 0, 'Apartments', 0, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1965, 1, 1388.03, -336.227, 51.1956, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, -1, 0, 0, 'Apartments', 0, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1966, 1, 1388.03, -326.232, 51.1966, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, -1, 0, 0, 'Apartments', 0, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1967, 1, 1388.11, -318.786, 51.5492, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, -1, 0, 0, 'Apartments', 0, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1968, 1, 1388.11, -308.723, 51.5487, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, -1, 0, 0, 'Apartments', 0, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1969, 1, 1388.1, -298.721, 51.5466, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, -1, 0, 0, 'Apartments', 0, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1970, 1, 1347.55, -293.393, 48.7019, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, -1, 0, 0, 'Apartments', 0, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1971, 1, 1337.53, -293.391, 46.6443, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, -1, 0, 0, 'Apartments', 0, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1972, 1, 1327.53, -293.395, 44.5924, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, -1, 0, 0, 'Apartments', 0, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1973, 1, 1317.63, -293.395, 42.558, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, -1, 0, 0, 'Apartments', 0, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1974, 1, 1351.08, -274.155, 49.4283, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, -1, 0, 0, 'Apartments', 0, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1975, 1, 1340.99, -274.155, 47.3557, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, -1, 0, 0, 'Apartments', 0, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1976, 1, 1330.87, -274.158, 45.2767, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, -1, 0, 0, 'Apartments', 0, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1977, 1, 1320.77, -274.159, 43.2032, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, -1, 0, 0, 'Apartments', 0, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1978, 1, 1310.89, -274.159, 41.1739, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, -1, 0, 0, 'Apartments', 0, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1979, 1, 1300.94, -274.168, 39.1568, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, -1, 0, 0, 'Apartments', 0, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1980, 1, 1290.84, -274.17, 37.1369, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, -1, 0, 0, 'Apartments', 0, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1981, 1, 1280.85, -274.184, 35.139, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, -1, 0, 0, 'Apartments', 0, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1982, 1, 1270.73, -274.165, 33.1157, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, -1, 0, 0, 'Apartments', 0, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1983, 1, 1260.86, -274.192, 31.141, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, -1, 0, 0, 'Apartments', 0, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1984, 1, 1250.9, -274.196, 29.6361, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, -1, 0, 0, 'Apartments', 0, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1985, 1, 1240.84, -274.201, 28.63, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, -1, 0, 0, 'Apartments', 0, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1986, 1, 1230.75, -274.198, 27.6213, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, -1, 0, 0, 'Apartments', 0, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1987, 1, 1220.83, -274.198, 26.6294, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, -1, 0, 0, 'Apartments', 0, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1988, 1, 1210.83, -274.206, 25.5394, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, -1, 0, 0, 'Apartments', 0, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1989, 1, 1210.82, -293.447, 25.5383, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, -1, 0, 0, 'Apartments', 0, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1990, 1, 1220.79, -293.448, 26.6255, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, -1, 0, 0, 'Apartments', 0, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1991, 1, 1230.84, -293.447, 27.6297, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, -1, 0, 0, 'Apartments', 0, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1992, 1, 1240.67, -293.432, 28.6135, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, -1, 0, 0, 'Apartments', 0, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1993, 1, 1250.84, -293.452, 29.6306, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, -1, 0, 0, 'Apartments', 0, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1994, 1, 1180.91, -293.448, 24.4868, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, -1, 0, 0, 'Apartments', 0, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1995, 1, 1170.65, -293.451, 23.461, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, -1, 0, 0, 'Apartments', 0, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1996, 1, 1160.82, -293.446, 22.4775, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, -1, 0, 0, 'Apartments', 0, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1997, 1, 1150.77, -293.448, 21.4728, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, -1, 0, 0, 'Apartments', 0, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1998, 1, 1140.81, -293.448, 20.4772, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, -1, 0, 0, 'Apartments', 0, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (1999, 1, 1111.69, -281.121, 21.7387, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, -1, 0, 0, 'Apartments', 0, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (2000, 1, 1111.69, -291.183, 21.7387, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, -1, 0, 0, 'Apartments', 0, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (2001, 1, 1111.69, -301.082, 21.7387, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, -1, 0, 0, 'Apartments', 0, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (2002, 1, 1113.44, -311.088, 21.5512, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, -1, 0, 0, 'Apartments', 0, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (2003, 1, 1113.44, -321.123, 21.5515, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, -1, 0, 0, 'Apartments', 0, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (2004, 1, 1113.44, -331.199, 21.5509, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, -1, 0, 0, 'Apartments', 0, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (2005, 1, 1113.44, -341.184, 21.5519, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, -1, 0, 0, 'Apartments', 0, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (2006, 1, 1113.44, -351.114, 21.5512, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, -1, 0, 0, 'Apartments', 0, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (2007, 1, 1138.68, -366.117, 21.7515, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, -1, 0, 0, 'Apartments', 0, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (2008, 1, 1148.57, -366.115, 22.75, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, -1, 0, 0, 'Apartments', 0, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (2009, 1, 1158.71, -366.117, 23.7512, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, -1, 0, 0, 'Apartments', 0, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (2010, 1, 1168.57, -366.115, 24.7503, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, -1, 0, 0, 'Apartments', 0, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (2011, 1, 1178.72, -366.115, 25.7389, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, -1, 0, 0, 'Apartments', 0, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (2012, 1, 1180.97, -334.194, 24.493, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, -1, 0, 0, 'Apartments', 0, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (2013, 1, 1170.78, -334.193, 23.4739, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, -1, 0, 0, 'Apartments', 0, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (2014, 1, 1160.74, -334.195, 22.47, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, -1, 0, 0, 'Apartments', 0, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (2015, 1, 1150.78, -334.195, 21.4735, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, -1, 0, 0, 'Apartments', 0, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (2016, 1, 1140.75, -334.194, 20.4709, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, -1, 0, 0, 'Apartments', 0, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (2017, 1, 1116.16, -268.955, 19.5006, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, -1, 0, 0, 'Apartments', 0, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (2018, 1, 1116.16, -258.651, 18.5011, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, -1, 0, 0, 'Apartments', 0, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (2019, 1, 1116.16, -248.915, 17.5567, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, -1, 0, 0, 'Apartments', 0, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (2020, 1, 1116.16, -238.827, 16.5782, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, -1, 0, 0, 'Apartments', 0, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (2021, 1, 1116.16, -228.771, 15.5121, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, -1, 0, 0, 'Apartments', 0, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (2022, 1, 1116.16, -188.853, 14.4756, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, -1, 0, 0, 'Apartments', 0, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (2023, 1, 1116.16, -178.764, 13.4667, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, -1, 0, 0, 'Apartments', 0, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (2024, 1, 1116.16, -168.882, 12.4785, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, -1, 0, 0, 'Apartments', 0, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (2025, 1, 1116.16, -158.823, 11.4726, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, -1, 0, 0, 'Apartments', 0, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (2026, 1, 1116.17, -148.872, 10.4775, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, -1, 0, 0, 'Apartments', 0, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (2027, 1, 1138.03, -146.677, 11.7129, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, -1, 0, 0, 'Apartments', 0, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (2028, 1, 1138.03, -156.636, 12.7127, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, -1, 0, 0, 'Apartments', 0, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (2029, 1, 1138.03, -166.694, 13.7119, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, -1, 0, 0, 'Apartments', 0, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (2030, 1, 1138.02, -176.732, 14.7102, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, -1, 0, 0, 'Apartments', 0, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (2031, 1, 1138.02, -186.722, 15.6998, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, -1, 0, 0, 'Apartments', 0, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (2032, 1, 1068.09, -186.547, 6.56125, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, -1, 0, 0, 'Apartments', 0, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (2033, 1, 1068.1, -176.405, 6.56433, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, -1, 0, 0, 'Apartments', 0, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (2034, 1, 1068.1, -166.483, 6.56387, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, -1, 0, 0, 'Apartments', 0, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (2035, 1, 1068.1, -156.647, 6.56371, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, -1, 0, 0, 'Apartments', 0, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (2036, 1, 1068.1, -146.438, 6.56433, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, -1, 0, 0, 'Apartments', 0, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (2037, 1, 1068.07, -246.554, 6.68813, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, -1, 0, 0, 'Apartments', 0, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (2038, 1, 1068.07, -256.651, 7.6847, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, -1, 0, 0, 'Apartments', 0, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (2039, 1, 1068.03, -296.669, 11.7202, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, -1, 0, 0, 'Apartments', 0, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (2040, 1, 1068.03, -306.614, 12.7193, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, -1, 0, 0, 'Apartments', 0, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (2041, 1, 1068.03, -316.62, 13.7208, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, -1, 0, 0, 'Apartments', 0, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (2042, 1, 1068.02, -326.753, 14.7208, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, -1, 0, 0, 'Apartments', 0, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (2043, 1, 1068.02, -336.539, 15.7111, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, -1, 0, 0, 'Apartments', 0, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (2044, 1, 894.073, -464.944, 14.9728, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, -1, 0, 0, 'Apartments', 0, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (2045, 1, 860.881, -463.473, 14.9727, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, -1, 0, 0, 'Apartments', 0, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (2046, 1, 845.353, -400.239, 14.9727, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, -1, 0, 0, 'Apartments', 0, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (2047, 1, 845.292, -368.988, 12.6035, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, -1, 0, 0, 'Apartments', 0, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (2048, 1, 845.291, -350.17, 10.8561, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, -1, 0, 0, 'Apartments', 0, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (2049, 1, 845.28, -325.243, 8.37018, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, -1, 0, 0, 'Apartments', 0, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (2050, 1, 890.415, -308.334, 8.72087, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, -1, 0, 0, 'Safehouse', 0, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (2051, 1, 944.055, -272.571, 4.9437, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, -1, 0, 0, 'Projects', 0, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (2052, 1, 942.953, -348.473, 9.97254, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, -1, 0, 0, 'Apartments', 0, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (2053, 1, 867.205, -671.818, 14.9727, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, -1, 0, 0, 'Apartments', 0, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (2054, 1, 875.121, -671.3, 14.9727, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, -1, 0, 0, 'Apartments', 0, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (2055, 1, 872.956, -659.174, 14.968, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, -1, 0, 0, 'Apartments', 0, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (2056, 1, 882.486, -708.407, 14.9727, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, -1, 0, 0, 'Apartments', 0, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (2057, 1, 854.338, -689.176, 14.9727, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, -1, 0, 0, 'Apartments', 0, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (2058, 1, 854.229, -759.091, 14.9727, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, -1, 0, 0, 'Apartments', 0, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (2059, 1, -119.925, -1379.99, 26.1682, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, -1, 0, 0, 'Apartments', 0, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (2060, 1, -129.301, -1380, 26.1682, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, -1, 0, 0, 'Apartments', 0, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (2061, 1, -134.947, -1389.72, 26.3308, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, -1, 0, 0, 'Apartments', 0, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (2062, 1, -149.135, -1382.05, 26.1694, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, -1, 0, 0, 'Apartments', 0, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (2063, 1, -140.612, -1385.4, 26.3589, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, -1, 0, 0, 'Apartments', 0, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (2064, 1, -163.408, -1386.55, 26.3408, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, -1, 0, 0, 'Apartments', 0, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (2065, 1, -153.896, -1382.77, 26.1709, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, -1, 0, 0, 'Apartments', 0, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (2066, 1, -168.324, -1382.13, 26.1703, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, -1, 0, 0, 'Apartments', 0, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (2067, 1, -176.507, -1384.51, 26.3589, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, -1, 0, 0, 'Apartments', 0, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (2068, 1, -185.877, -1380.46, 26.1682, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, -1, 0, 0, 'Apartments', 0, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (2069, 1, -157.18, -1476.82, 26.1937, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, -1, 0, 0, 'Apartments', 0, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (2070, 1, -163.177, -1462.64, 26.1936, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, -1, 0, 0, 'Apartments', 0, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (2071, 1, -168.42, -1449.97, 26.1936, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, -1, 0, 0, 'Apartments', 0, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (2072, 1, -149.725, -1489.55, 26.1933, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, -1, 0, 0, 'Apartments', 0, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (2073, 1, -124.503, -1519.6, 26.1938, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, -1, 0, 0, 'Apartments', 0, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (2074, 1, -103.405, -1540.97, 26.194, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, -1, 0, 0, 'Apartments', 0, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (2075, 1, -73.5532, -1564.37, 26.0181, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, -1, 0, 0, 'Apartments', 0, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (2076, 1, -50.9624, -1575.5, 26.0181, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, -1, 0, 0, 'Apartments', 0, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (2077, 1, -15.3561, -1587.86, 26.2131, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, -1, 0, 0, 'Apartments', 0, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (2078, 1, 15.5069, -1590.52, 26.1859, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, -1, 0, 0, 'Apartments', 0, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (2079, 1, 125.07, -1489.57, 26.1681, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, -1, 0, 0, 'Apartments', 0, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (2080, 1, -742.403, 286.638, 55.2902, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, -1, 0, 0, 'Large House', 0, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (2081, 1, -677.946, 307.895, 59.851, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, -1, 0, 0, 'Large House', 0, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (2082, 1, -554.83, 309.903, 70.804, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, -1, 0, 0, 'Large House', 0, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (2083, 1, -491.273, 286.248, 74.1456, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, -1, 0, 0, 'Large House', 0, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (2084, 1, -380.595, 299.861, 63.9212, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, -1, 0, 0, 'Mansion', 0, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (2085, 1, -832.619, 294.623, 41.4776, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, -1, 0, 0, 'Large House', 0, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (2086, 1, -458.327, -46.1888, 3.92693, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, -1, 0, 0, 'Projects', 0, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (2087, 1, -501.077, -64.3643, 3.9269, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, -1, 0, 0, 'Projects', 0, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (2088, 1, -521.206, -65.1702, 3.9269, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, -1, 0, 0, 'Projects', 0, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (2089, 1, -459.481, -25.3028, 3.92691, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, -1, 0, 0, 'Projects', 0, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (2090, 1, -468.289, 52.1059, 3.9269, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, -1, 0, 0, 'Projects', 0, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (2091, 1, -488.708, 51.1985, 3.9269, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, -1, 0, 0, 'Projects', 0, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (2092, 1, -546.122, 31.7124, 3.92692, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, -1, 0, 0, 'Projects', 0, 0, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_description`, `house_buy_price`, `house_rent_price`, `house_owner_type`, `house_owner_id`, `house_locked`) VALUES + (2093, 1, -545.188, 11.4865, 3.92691, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, -1, 0, 0, 'Projects', 0, 0, 0, 0, 0); +/*!40000 ALTER TABLE `house_main` ENABLE KEYS */; + +-- Dumping structure for table db24053.idea_main +CREATE TABLE IF NOT EXISTS `idea_main` ( + `idea_id` int(11) NOT NULL AUTO_INCREMENT, + `idea_server` tinyint(2) NOT NULL DEFAULT '0', + `idea_who_added` int(11) NOT NULL DEFAULT '0', + `idea_when_added` int(32) NOT NULL DEFAULT '0', + `idea_script_ver` varchar(16) NOT NULL DEFAULT '0.1', + `idea_pos_x` float NOT NULL DEFAULT '0', + `idea_pos_y` float NOT NULL DEFAULT '0', + `idea_pos_z` float NOT NULL DEFAULT '0', + `idea_rot_z` float NOT NULL DEFAULT '0', + `idea_message` varchar(128) NOT NULL DEFAULT '( No Message )', + `idea_svr_start` int(32) NOT NULL DEFAULT '0', + `idea_session` int(11) NOT NULL DEFAULT '0', + PRIMARY KEY (`idea_id`) +) ENGINE=InnoDB AUTO_INCREMENT=210 DEFAULT CHARSET=latin1 COMMENT='User Submitted Ideas'; + +-- Dumping data for table db24053.idea_main: ~62 rows (approximately) +/*!40000 ALTER TABLE `idea_main` DISABLE KEYS */; +INSERT INTO `idea_main` (`idea_id`, `idea_server`, `idea_who_added`, `idea_when_added`, `idea_script_ver`, `idea_pos_x`, `idea_pos_y`, `idea_pos_z`, `idea_rot_z`, `idea_message`, `idea_svr_start`, `idea_session`) VALUES + (4, 4, 1, 1608262318, '1.0', 2258.62, 2463.1, 10.8203, -0.5, 'Exclude LVPD garage from snow', 2147483647, 0); +INSERT INTO `idea_main` (`idea_id`, `idea_server`, `idea_who_added`, `idea_when_added`, `idea_script_ver`, `idea_pos_x`, `idea_pos_y`, `idea_pos_z`, `idea_rot_z`, `idea_message`, `idea_svr_start`, `idea_session`) VALUES + (5, 4, 1, 1608262432, '1.0', 2179.19, 1766.52, 56.5364, 1.3, 'Exclude LV parking garages from snow', 2147483647, 0); +INSERT INTO `idea_main` (`idea_id`, `idea_server`, `idea_who_added`, `idea_when_added`, `idea_script_ver`, `idea_pos_x`, `idea_pos_y`, `idea_pos_z`, `idea_rot_z`, `idea_message`, `idea_svr_start`, `idea_session`) VALUES + (6, 4, 1, 1608262457, '1.0', 1858.49, 1800.93, 36.5273, 0.5, 'Exclude LV parking garage ramp from snow', 2147483647, 0); +INSERT INTO `idea_main` (`idea_id`, `idea_server`, `idea_who_added`, `idea_when_added`, `idea_script_ver`, `idea_pos_x`, `idea_pos_y`, `idea_pos_z`, `idea_rot_z`, `idea_message`, `idea_svr_start`, `idea_session`) VALUES + (7, 4, 1, 1608262813, '1.0', 1192.94, -1321.7, 13.3984, -0.2, 'Add hospital fees', 2147483647, 0); +INSERT INTO `idea_main` (`idea_id`, `idea_server`, `idea_who_added`, `idea_when_added`, `idea_script_ver`, `idea_pos_x`, `idea_pos_y`, `idea_pos_z`, `idea_rot_z`, `idea_message`, `idea_svr_start`, `idea_session`) VALUES + (10, 4, 1, 1608264374, '1.0', -1983.54, 163.581, 27.6875, 1.02, 'Admin report system', 2147483647, 0); +INSERT INTO `idea_main` (`idea_id`, `idea_server`, `idea_who_added`, `idea_when_added`, `idea_script_ver`, `idea_pos_x`, `idea_pos_y`, `idea_pos_z`, `idea_rot_z`, `idea_message`, `idea_svr_start`, `idea_session`) VALUES + (21, 1, 2, 1608871415, '1.0', 1336.09, -758.642, 14.5972, -2.84, 'Import/Export between different cities, with each city demanding different cars.', 2147483647, 0); +INSERT INTO `idea_main` (`idea_id`, `idea_server`, `idea_who_added`, `idea_when_added`, `idea_script_ver`, `idea_pos_x`, `idea_pos_y`, `idea_pos_z`, `idea_rot_z`, `idea_message`, `idea_svr_start`, `idea_session`) VALUES + (23, 1, 1, 1608871808, '1.0', -597.479, 353.699, 78.4167, -1.8, 'Remove real estate flag on house in cedar grove', 2147483647, 0); +INSERT INTO `idea_main` (`idea_id`, `idea_server`, `idea_who_added`, `idea_when_added`, `idea_script_ver`, `idea_pos_x`, `idea_pos_y`, `idea_pos_z`, `idea_rot_z`, `idea_message`, `idea_svr_start`, `idea_session`) VALUES + (128, 1, 1, 1609102480, '1.0', 1299.98, -993.433, 14.8793, 0.840862, 'Respawn single vehicle command', 2147483647, 0); +INSERT INTO `idea_main` (`idea_id`, `idea_server`, `idea_who_added`, `idea_when_added`, `idea_script_ver`, `idea_pos_x`, `idea_pos_y`, `idea_pos_z`, `idea_rot_z`, `idea_message`, `idea_svr_start`, `idea_session`) VALUES + (129, 1, 1, 1609103197, '1.0', 1057.91, -398.217, 14.6232, -0.0146413, 'Hail a cab', 2147483647, 0); +INSERT INTO `idea_main` (`idea_id`, `idea_server`, `idea_who_added`, `idea_when_added`, `idea_script_ver`, `idea_pos_x`, `idea_pos_y`, `idea_pos_z`, `idea_rot_z`, `idea_message`, `idea_svr_start`, `idea_session`) VALUES + (133, 4, 2, 1609122166, '1.0', 1859.69, -2665.98, 5.75974, 1.57027, 'Airplane services?', 2147483647, 0); +INSERT INTO `idea_main` (`idea_id`, `idea_server`, `idea_who_added`, `idea_when_added`, `idea_script_ver`, `idea_pos_x`, `idea_pos_y`, `idea_pos_z`, `idea_rot_z`, `idea_message`, `idea_svr_start`, `idea_session`) VALUES + (134, 4, 2, 1609122329, '1.0', 1805.22, -2325.19, 13.3369, -0.342691, 'Should tuning shops be usable?', 2147483647, 0); +INSERT INTO `idea_main` (`idea_id`, `idea_server`, `idea_who_added`, `idea_when_added`, `idea_script_ver`, `idea_pos_x`, `idea_pos_y`, `idea_pos_z`, `idea_rot_z`, `idea_message`, `idea_svr_start`, `idea_session`) VALUES + (135, 4, 1, 1609142767, '1.0', 1552.72, -1674.83, 16.1953, 1.76176, 'Block use of usechar cmd while not in switchchar mode', 2147483647, 0); +INSERT INTO `idea_main` (`idea_id`, `idea_server`, `idea_who_added`, `idea_when_added`, `idea_script_ver`, `idea_pos_x`, `idea_pos_y`, `idea_pos_z`, `idea_rot_z`, `idea_message`, `idea_svr_start`, `idea_session`) VALUES + (139, 2, 2, 1609211402, '1.0', -982.2, -206.222, 10.6344, -0.0137857, 'Red Bus Route', 2147483647, 0); +INSERT INTO `idea_main` (`idea_id`, `idea_server`, `idea_who_added`, `idea_when_added`, `idea_script_ver`, `idea_pos_x`, `idea_pos_y`, `idea_pos_z`, `idea_rot_z`, `idea_message`, `idea_svr_start`, `idea_session`) VALUES + (142, 2, 2, 1609211493, '1.0', -982.211, -201.214, 10.6345, -0.005049, 'Red Line Stop', 2147483647, 0); +INSERT INTO `idea_main` (`idea_id`, `idea_server`, `idea_who_added`, `idea_when_added`, `idea_script_ver`, `idea_pos_x`, `idea_pos_y`, `idea_pos_z`, `idea_rot_z`, `idea_message`, `idea_svr_start`, `idea_session`) VALUES + (145, 2, 2, 1609211523, '1.0', -930.525, 58.0277, 10.528, 0.00543213, 'Red Line Stop', 2147483647, 0); +INSERT INTO `idea_main` (`idea_id`, `idea_server`, `idea_who_added`, `idea_when_added`, `idea_script_ver`, `idea_pos_x`, `idea_pos_y`, `idea_pos_z`, `idea_rot_z`, `idea_message`, `idea_svr_start`, `idea_session`) VALUES + (150, 2, 2, 1609211635, '1.0', -997.698, 175.8, 10.704, 1.44984, 'Red Line Route', 2147483647, 0); +INSERT INTO `idea_main` (`idea_id`, `idea_server`, `idea_who_added`, `idea_when_added`, `idea_script_ver`, `idea_pos_x`, `idea_pos_y`, `idea_pos_z`, `idea_rot_z`, `idea_message`, `idea_svr_start`, `idea_session`) VALUES + (152, 2, 2, 1609211718, '1.0', -607.007, 659.024, 10.9994, -1.42316, 'Red Line Route', 2147483647, 0); +INSERT INTO `idea_main` (`idea_id`, `idea_server`, `idea_who_added`, `idea_when_added`, `idea_script_ver`, `idea_pos_x`, `idea_pos_y`, `idea_pos_z`, `idea_rot_z`, `idea_message`, `idea_svr_start`, `idea_session`) VALUES + (156, 2, 2, 1609211777, '1.0', -665.23, 843.213, 11.3572, -0.028206, 'Red Line Route', 2147483647, 0); +INSERT INTO `idea_main` (`idea_id`, `idea_server`, `idea_who_added`, `idea_when_added`, `idea_script_ver`, `idea_pos_x`, `idea_pos_y`, `idea_pos_z`, `idea_rot_z`, `idea_message`, `idea_svr_start`, `idea_session`) VALUES + (159, 2, 2, 1609211823, '1.0', -669.703, 1174.17, 10.9954, -1.53996, 'Red Line Route', 2147483647, 0); +INSERT INTO `idea_main` (`idea_id`, `idea_server`, `idea_who_added`, `idea_when_added`, `idea_script_ver`, `idea_pos_x`, `idea_pos_y`, `idea_pos_z`, `idea_rot_z`, `idea_message`, `idea_svr_start`, `idea_session`) VALUES + (162, 2, 2, 1609211879, '1.0', 19.0071, 967.446, 10.8685, 2.96466, 'Red Line Route', 2147483647, 0); +INSERT INTO `idea_main` (`idea_id`, `idea_server`, `idea_who_added`, `idea_when_added`, `idea_script_ver`, `idea_pos_x`, `idea_pos_y`, `idea_pos_z`, `idea_rot_z`, `idea_message`, `idea_svr_start`, `idea_session`) VALUES + (166, 2, 2, 1609211936, '1.0', -441.901, 1099.23, 10.9998, 1.4971, 'Red Line Route', 2147483647, 0); +INSERT INTO `idea_main` (`idea_id`, `idea_server`, `idea_who_added`, `idea_when_added`, `idea_script_ver`, `idea_pos_x`, `idea_pos_y`, `idea_pos_z`, `idea_rot_z`, `idea_message`, `idea_svr_start`, `idea_session`) VALUES + (169, 2, 2, 1609212038, '1.0', -1048.15, 1341.77, 8.76068, 3.12651, 'Red Line Route', 2147483647, 0); +INSERT INTO `idea_main` (`idea_id`, `idea_server`, `idea_who_added`, `idea_when_added`, `idea_script_ver`, `idea_pos_x`, `idea_pos_y`, `idea_pos_z`, `idea_rot_z`, `idea_message`, `idea_svr_start`, `idea_session`) VALUES + (170, 2, 2, 1609212082, '1.0', -870.697, 1049.45, 11.0081, -3.14071, 'Red Line Route', 2147483647, 0); +INSERT INTO `idea_main` (`idea_id`, `idea_server`, `idea_who_added`, `idea_when_added`, `idea_script_ver`, `idea_pos_x`, `idea_pos_y`, `idea_pos_z`, `idea_rot_z`, `idea_message`, `idea_svr_start`, `idea_session`) VALUES + (171, 2, 1, 1609212137, '1.0', -1106.57, -300.12, 11.189, -1.51925, 'Green Line Stop', 2147483647, 0); +INSERT INTO `idea_main` (`idea_id`, `idea_server`, `idea_who_added`, `idea_when_added`, `idea_script_ver`, `idea_pos_x`, `idea_pos_y`, `idea_pos_z`, `idea_rot_z`, `idea_message`, `idea_svr_start`, `idea_session`) VALUES + (172, 2, 2, 1609212151, '1.0', -683.681, 610.935, 11.0217, 3.0247, 'Red Line Route', 2147483647, 0); +INSERT INTO `idea_main` (`idea_id`, `idea_server`, `idea_who_added`, `idea_when_added`, `idea_script_ver`, `idea_pos_x`, `idea_pos_y`, `idea_pos_z`, `idea_rot_z`, `idea_message`, `idea_svr_start`, `idea_session`) VALUES + (173, 2, 1, 1609212155, '1.0', -1012.97, -372.445, 10.8688, -3.02113, 'Green Line Stop', 2147483647, 0); +INSERT INTO `idea_main` (`idea_id`, `idea_server`, `idea_who_added`, `idea_when_added`, `idea_script_ver`, `idea_pos_x`, `idea_pos_y`, `idea_pos_z`, `idea_rot_z`, `idea_message`, `idea_svr_start`, `idea_session`) VALUES + (174, 2, 1, 1609212176, '1.0', -1018.07, -573.031, 11.0513, 1.70157, 'Green Line Stop', 2147483647, 0); +INSERT INTO `idea_main` (`idea_id`, `idea_server`, `idea_who_added`, `idea_when_added`, `idea_script_ver`, `idea_pos_x`, `idea_pos_y`, `idea_pos_z`, `idea_rot_z`, `idea_message`, `idea_svr_start`, `idea_session`) VALUES + (175, 2, 1, 1609212200, '1.0', -1184.86, -647.271, 11.565, -3.04171, 'Green Line Stop', 2147483647, 0); +INSERT INTO `idea_main` (`idea_id`, `idea_server`, `idea_who_added`, `idea_when_added`, `idea_script_ver`, `idea_pos_x`, `idea_pos_y`, `idea_pos_z`, `idea_rot_z`, `idea_message`, `idea_svr_start`, `idea_session`) VALUES + (176, 2, 1, 1609212235, '1.0', -1034.59, -908.376, 14.0954, -2.37192, 'Green Line Stop', 2147483647, 0); +INSERT INTO `idea_main` (`idea_id`, `idea_server`, `idea_who_added`, `idea_when_added`, `idea_script_ver`, `idea_pos_x`, `idea_pos_y`, `idea_pos_z`, `idea_rot_z`, `idea_message`, `idea_svr_start`, `idea_session`) VALUES + (177, 2, 1, 1609212260, '1.0', -990.653, -1074.29, 14.7919, 1.55775, 'Green Line Stop', 2147483647, 0); +INSERT INTO `idea_main` (`idea_id`, `idea_server`, `idea_who_added`, `idea_when_added`, `idea_script_ver`, `idea_pos_x`, `idea_pos_y`, `idea_pos_z`, `idea_rot_z`, `idea_message`, `idea_svr_start`, `idea_session`) VALUES + (178, 2, 1, 1609212280, '1.0', -1199.02, -946.758, 14.7914, -0.00153191, 'Green Line Stop', 2147483647, 0); +INSERT INTO `idea_main` (`idea_id`, `idea_server`, `idea_who_added`, `idea_when_added`, `idea_script_ver`, `idea_pos_x`, `idea_pos_y`, `idea_pos_z`, `idea_rot_z`, `idea_message`, `idea_svr_start`, `idea_session`) VALUES + (179, 2, 1, 1609212304, '1.0', -1431.57, -780.312, 14.7926, 1.55966, 'Green Line Stop', 2147483647, 0); +INSERT INTO `idea_main` (`idea_id`, `idea_server`, `idea_who_added`, `idea_when_added`, `idea_script_ver`, `idea_pos_x`, `idea_pos_y`, `idea_pos_z`, `idea_rot_z`, `idea_message`, `idea_svr_start`, `idea_session`) VALUES + (180, 2, 1, 1609212341, '1.0', -1282.71, -785.966, 14.7917, -1.57938, 'Green Line Stop', 2147483647, 0); +INSERT INTO `idea_main` (`idea_id`, `idea_server`, `idea_who_added`, `idea_when_added`, `idea_script_ver`, `idea_pos_x`, `idea_pos_y`, `idea_pos_z`, `idea_rot_z`, `idea_message`, `idea_svr_start`, `idea_session`) VALUES + (181, 2, 1, 1609212357, '1.0', -1204.48, -939.911, 14.7917, 3.14033, 'Green Line Stop', 2147483647, 0); +INSERT INTO `idea_main` (`idea_id`, `idea_server`, `idea_who_added`, `idea_when_added`, `idea_script_ver`, `idea_pos_x`, `idea_pos_y`, `idea_pos_z`, `idea_rot_z`, `idea_message`, `idea_svr_start`, `idea_session`) VALUES + (182, 2, 1, 1609212377, '1.0', -1006.98, -1079.19, 14.7916, -1.57749, 'Green Line Stop', 2147483647, 0); +INSERT INTO `idea_main` (`idea_id`, `idea_server`, `idea_who_added`, `idea_when_added`, `idea_script_ver`, `idea_pos_x`, `idea_pos_y`, `idea_pos_z`, `idea_rot_z`, `idea_message`, `idea_svr_start`, `idea_session`) VALUES + (183, 2, 1, 1609212405, '1.0', -928.565, -1257.33, 11.9578, 2.75726, 'Green Line Stop', 2147483647, 0); +INSERT INTO `idea_main` (`idea_id`, `idea_server`, `idea_who_added`, `idea_when_added`, `idea_script_ver`, `idea_pos_x`, `idea_pos_y`, `idea_pos_z`, `idea_rot_z`, `idea_message`, `idea_svr_start`, `idea_session`) VALUES + (184, 2, 1, 1609212426, '1.0', -912.603, -1442.4, 11.8644, -1.94806, 'Green Line Stop', 2147483647, 0); +INSERT INTO `idea_main` (`idea_id`, `idea_server`, `idea_who_added`, `idea_when_added`, `idea_script_ver`, `idea_pos_x`, `idea_pos_y`, `idea_pos_z`, `idea_rot_z`, `idea_message`, `idea_svr_start`, `idea_session`) VALUES + (185, 2, 1, 1609212446, '1.0', -683.223, -1389.97, 11.0019, 0.0605809, 'Green Line Stop', 2147483647, 0); +INSERT INTO `idea_main` (`idea_id`, `idea_server`, `idea_who_added`, `idea_when_added`, `idea_script_ver`, `idea_pos_x`, `idea_pos_y`, `idea_pos_z`, `idea_rot_z`, `idea_message`, `idea_svr_start`, `idea_session`) VALUES + (186, 2, 1, 1609212466, '1.0', -799.104, -1062.2, 11.0011, 0.188361, 'Green Line Stop', 2147483647, 0); +INSERT INTO `idea_main` (`idea_id`, `idea_server`, `idea_who_added`, `idea_when_added`, `idea_script_ver`, `idea_pos_x`, `idea_pos_y`, `idea_pos_z`, `idea_rot_z`, `idea_message`, `idea_svr_start`, `idea_session`) VALUES + (187, 2, 2, 1609212473, '1.0', -1011.02, 291.984, 11.3042, 2.90937, 'Red Line Route', 2147483647, 0); +INSERT INTO `idea_main` (`idea_id`, `idea_server`, `idea_who_added`, `idea_when_added`, `idea_script_ver`, `idea_pos_x`, `idea_pos_y`, `idea_pos_z`, `idea_rot_z`, `idea_message`, `idea_svr_start`, `idea_session`) VALUES + (188, 2, 1, 1609212510, '1.0', -812.002, -672.31, 11.0046, 0.0840402, 'Green Line Stop', 2147483647, 0); +INSERT INTO `idea_main` (`idea_id`, `idea_server`, `idea_who_added`, `idea_when_added`, `idea_script_ver`, `idea_pos_x`, `idea_pos_y`, `idea_pos_z`, `idea_rot_z`, `idea_message`, `idea_svr_start`, `idea_session`) VALUES + (189, 2, 1, 1609212536, '1.0', -834.03, -477.273, 11.0118, 0.253252, 'Green Line Stop', 2147483647, 0); +INSERT INTO `idea_main` (`idea_id`, `idea_server`, `idea_who_added`, `idea_when_added`, `idea_script_ver`, `idea_pos_x`, `idea_pos_y`, `idea_pos_z`, `idea_rot_z`, `idea_message`, `idea_svr_start`, `idea_session`) VALUES + (190, 2, 1, 1609212555, '1.0', -840.406, -307.896, 11.0001, -0.0336403, 'Green Line Stop', 2147483647, 0); +INSERT INTO `idea_main` (`idea_id`, `idea_server`, `idea_who_added`, `idea_when_added`, `idea_script_ver`, `idea_pos_x`, `idea_pos_y`, `idea_pos_z`, `idea_rot_z`, `idea_message`, `idea_svr_start`, `idea_session`) VALUES + (191, 2, 1, 1609212571, '1.0', -829.729, -119.308, 11.0004, -0.479496, 'Green Line Stop', 2147483647, 0); +INSERT INTO `idea_main` (`idea_id`, `idea_server`, `idea_who_added`, `idea_when_added`, `idea_script_ver`, `idea_pos_x`, `idea_pos_y`, `idea_pos_z`, `idea_rot_z`, `idea_message`, `idea_svr_start`, `idea_session`) VALUES + (192, 2, 2, 1609212572, '1.0', -1185.89, -264.69, 11.5162, -3.04215, 'Red Line Route', 2147483647, 0); +INSERT INTO `idea_main` (`idea_id`, `idea_server`, `idea_who_added`, `idea_when_added`, `idea_script_ver`, `idea_pos_x`, `idea_pos_y`, `idea_pos_z`, `idea_rot_z`, `idea_message`, `idea_svr_start`, `idea_session`) VALUES + (193, 2, 1, 1609212591, '1.0', -903.957, 33.4505, 10.6344, 1.57116, 'Green Line Stop', 2147483647, 0); +INSERT INTO `idea_main` (`idea_id`, `idea_server`, `idea_who_added`, `idea_when_added`, `idea_script_ver`, `idea_pos_x`, `idea_pos_y`, `idea_pos_z`, `idea_rot_z`, `idea_message`, `idea_svr_start`, `idea_session`) VALUES + (194, 2, 1, 1609212613, '1.0', -1002.04, -37.9656, 10.9094, 1.57972, 'Green Line Stop', 2147483647, 0); +INSERT INTO `idea_main` (`idea_id`, `idea_server`, `idea_who_added`, `idea_when_added`, `idea_script_ver`, `idea_pos_x`, `idea_pos_y`, `idea_pos_z`, `idea_rot_z`, `idea_message`, `idea_svr_start`, `idea_session`) VALUES + (195, 2, 1, 1609212625, '1.0', -1066.83, -13.3146, 11.3389, -0.00601319, 'Green Line Stop', 2147483647, 0); +INSERT INTO `idea_main` (`idea_id`, `idea_server`, `idea_who_added`, `idea_when_added`, `idea_script_ver`, `idea_pos_x`, `idea_pos_y`, `idea_pos_z`, `idea_rot_z`, `idea_message`, `idea_svr_start`, `idea_session`) VALUES + (196, 2, 1, 1609212648, '1.0', -1067.5, 109.544, 11.3122, -0.0967074, 'Green Line Stop', 2147483647, 0); +INSERT INTO `idea_main` (`idea_id`, `idea_server`, `idea_who_added`, `idea_when_added`, `idea_script_ver`, `idea_pos_x`, `idea_pos_y`, `idea_pos_z`, `idea_rot_z`, `idea_message`, `idea_svr_start`, `idea_session`) VALUES + (197, 2, 1, 1609212672, '1.0', -1003.59, 171.078, 10.8953, -1.70057, 'Green Line Stop', 2147483647, 0); +INSERT INTO `idea_main` (`idea_id`, `idea_server`, `idea_who_added`, `idea_when_added`, `idea_script_ver`, `idea_pos_x`, `idea_pos_y`, `idea_pos_z`, `idea_rot_z`, `idea_message`, `idea_svr_start`, `idea_session`) VALUES + (198, 2, 1, 1609212698, '1.0', -748.054, 198.243, 11.2455, -1.75594, 'Green Line Stop', 2147483647, 0); +INSERT INTO `idea_main` (`idea_id`, `idea_server`, `idea_who_added`, `idea_when_added`, `idea_script_ver`, `idea_pos_x`, `idea_pos_y`, `idea_pos_z`, `idea_rot_z`, `idea_message`, `idea_svr_start`, `idea_session`) VALUES + (199, 2, 1, 1609212717, '1.0', -850, -110.625, 11.0203, 2.67104, 'Green Line Stop', 2147483647, 0); +INSERT INTO `idea_main` (`idea_id`, `idea_server`, `idea_who_added`, `idea_when_added`, `idea_script_ver`, `idea_pos_x`, `idea_pos_y`, `idea_pos_z`, `idea_rot_z`, `idea_message`, `idea_svr_start`, `idea_session`) VALUES + (200, 2, 1, 1609212735, '1.0', -898.862, -280.373, 10.6645, 1.53245, 'Green Line Stop', 2147483647, 0); +INSERT INTO `idea_main` (`idea_id`, `idea_server`, `idea_who_added`, `idea_when_added`, `idea_script_ver`, `idea_pos_x`, `idea_pos_y`, `idea_pos_z`, `idea_rot_z`, `idea_message`, `idea_svr_start`, `idea_session`) VALUES + (201, 2, 1, 1609212753, '1.0', -1082.1, -294.416, 11.2065, 1.59266, 'Green Line Stop', 2147483647, 0); +INSERT INTO `idea_main` (`idea_id`, `idea_server`, `idea_who_added`, `idea_when_added`, `idea_script_ver`, `idea_pos_x`, `idea_pos_y`, `idea_pos_z`, `idea_rot_z`, `idea_message`, `idea_svr_start`, `idea_session`) VALUES + (202, 4, 1, 1609213965, '1.0', 237.392, 75.8236, 1005.04, 0.129586, 'Add helpful info on specific events. Approaching veh or job icon, etc', 2147483647, 0); +INSERT INTO `idea_main` (`idea_id`, `idea_server`, `idea_who_added`, `idea_when_added`, `idea_script_ver`, `idea_pos_x`, `idea_pos_y`, `idea_pos_z`, `idea_rot_z`, `idea_message`, `idea_svr_start`, `idea_session`) VALUES + (203, 2, 1, 1609224894, '1.0', -377.152, -337.399, 11.2356, -3.09393, 'Remove gates at starfish island houses', 2147483647, 0); +INSERT INTO `idea_main` (`idea_id`, `idea_server`, `idea_who_added`, `idea_when_added`, `idea_script_ver`, `idea_pos_x`, `idea_pos_y`, `idea_pos_z`, `idea_rot_z`, `idea_message`, `idea_svr_start`, `idea_session`) VALUES + (204, 1, 1, 1609233851, '1.0', 125.646, -922.827, 25.8177, 1.60839, 'Fix colon being too close to msg in admin chat', 2147483647, 0); +INSERT INTO `idea_main` (`idea_id`, `idea_server`, `idea_who_added`, `idea_when_added`, `idea_script_ver`, `idea_pos_x`, `idea_pos_y`, `idea_pos_z`, `idea_rot_z`, `idea_message`, `idea_svr_start`, `idea_session`) VALUES + (205, 1, 1, 1609233955, '1.0', -149.499, -1378.3, 26.1682, 1.54235, 'Add line of sight check to labels', 2147483647, 0); +INSERT INTO `idea_main` (`idea_id`, `idea_server`, `idea_who_added`, `idea_when_added`, `idea_script_ver`, `idea_pos_x`, `idea_pos_y`, `idea_pos_z`, `idea_rot_z`, `idea_message`, `idea_svr_start`, `idea_session`) VALUES + (206, 1, 1, 1609234666, '1.0', -365.363, 244.853, 60.8601, -0.181428, 'Remove cartel mansion gates in SSV', 2147483647, 0); +INSERT INTO `idea_main` (`idea_id`, `idea_server`, `idea_who_added`, `idea_when_added`, `idea_script_ver`, `idea_pos_x`, `idea_pos_y`, `idea_pos_z`, `idea_rot_z`, `idea_message`, `idea_svr_start`, `idea_session`) VALUES + (207, 1, 1, 1609235429, '1.0', 360.992, -1134.22, 22.9809, 0.125214, 'Delete gates at LCPD staunton station', 2147483647, 0); +INSERT INTO `idea_main` (`idea_id`, `idea_server`, `idea_who_added`, `idea_when_added`, `idea_script_ver`, `idea_pos_x`, `idea_pos_y`, `idea_pos_z`, `idea_rot_z`, `idea_message`, `idea_svr_start`, `idea_session`) VALUES + (208, 1, 1, 1609235439, '1.0', 346.371, -1157.53, 22.9809, 2.41115, 'Lock all job vehicles', 2147483647, 0); +INSERT INTO `idea_main` (`idea_id`, `idea_server`, `idea_who_added`, `idea_when_added`, `idea_script_ver`, `idea_pos_x`, `idea_pos_y`, `idea_pos_z`, `idea_rot_z`, `idea_message`, `idea_svr_start`, `idea_session`) VALUES + (209, 1, 1, 1609235450, '1.0', 334.967, -1187.78, 26.1682, -2.8111, 'Always respawn job vehicles as locked', 2147483647, 0); +/*!40000 ALTER TABLE `idea_main` ENABLE KEYS */; + +-- Dumping structure for table db24053.ins_acct +CREATE TABLE IF NOT EXISTS `ins_acct` ( + `insurance_acct_id` int(11) NOT NULL AUTO_INCREMENT, + `insurance_acct_server` tinyint(2) NOT NULL DEFAULT '0', + `insurance_acct_provider` int(11) NOT NULL DEFAULT '0', + `insurance_acct_type` tinyint(2) NOT NULL DEFAULT '0', + `insurance_acct_entity` int(11) NOT NULL DEFAULT '0', + `insurance_acct_hourly_rate` int(11) NOT NULL DEFAULT '0', + `insurance_acct_active` tinyint(1) NOT NULL DEFAULT '0', + `insurance_acct_max_payout` int(11) NOT NULL DEFAULT '0', + PRIMARY KEY (`insurance_acct_id`) +) ENGINE=InnoDB DEFAULT CHARSET=latin1 COMMENT='Insurance - Accounts'; + +-- Dumping data for table db24053.ins_acct: ~0 rows (approximately) +/*!40000 ALTER TABLE `ins_acct` DISABLE KEYS */; +/*!40000 ALTER TABLE `ins_acct` ENABLE KEYS */; + +-- Dumping structure for table db24053.ins_provider +CREATE TABLE IF NOT EXISTS `ins_provider` ( + `insurance_provider_id` int(11) NOT NULL AUTO_INCREMENT, + `insurance_provider_server` tinyint(2) NOT NULL DEFAULT '0', + `insurance_provider_name` varchar(32) NOT NULL DEFAULT '0', + `insurance_provider_type_flags` int(32) NOT NULL DEFAULT '0', + `insurance_provider_active` tinyint(1) NOT NULL DEFAULT '1', + `insurance_provider_owner_type` tinyint(1) NOT NULL DEFAULT '0', + `insurance_provider_owner_id` tinyint(1) NOT NULL DEFAULT '0', + PRIMARY KEY (`insurance_provider_id`) +) ENGINE=InnoDB DEFAULT CHARSET=latin1 COMMENT='Insurance - Providers'; + +-- Dumping data for table db24053.ins_provider: ~0 rows (approximately) +/*!40000 ALTER TABLE `ins_provider` DISABLE KEYS */; +/*!40000 ALTER TABLE `ins_provider` ENABLE KEYS */; + +-- Dumping structure for table db24053.int_main +CREATE TABLE IF NOT EXISTS `int_main` ( + `int_id` int(11) NOT NULL AUTO_INCREMENT, + `int_server` int(11) NOT NULL DEFAULT '0', + `int_name` varchar(50) NOT NULL DEFAULT 'Unnamed', + `int_type` int(11) NOT NULL DEFAULT '0', + `int_entrance_pos_x` float NOT NULL DEFAULT '0', + `int_entrance_pos_y` float NOT NULL DEFAULT '0', + `int_entrance_pos_z` float NOT NULL DEFAULT '0', + `int_entrance_rot_z` float NOT NULL DEFAULT '0', + `int_entrance_int` int(11) NOT NULL DEFAULT '0', + `int_entrance_vw` int(11) NOT NULL DEFAULT '0', + `int_exit_pos_x` float NOT NULL DEFAULT '0', + `int_exit_pos_y` float NOT NULL DEFAULT '0', + `int_exit_pos_z` float NOT NULL DEFAULT '0', + `int_exit_rot_z` float NOT NULL DEFAULT '0', + `int_exit_int` int(11) NOT NULL DEFAULT '0', + `int_exit_vw` int(11) NOT NULL DEFAULT '0', + `int_locked` tinyint(4) NOT NULL DEFAULT '0', + PRIMARY KEY (`int_id`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Interiors'; + +-- Dumping data for table db24053.int_main: ~0 rows (approximately) +/*!40000 ALTER TABLE `int_main` DISABLE KEYS */; +/*!40000 ALTER TABLE `int_main` ENABLE KEYS */; + +-- Dumping structure for table db24053.job_bl +CREATE TABLE IF NOT EXISTS `job_bl` ( + `job_bl_id` int(11) NOT NULL AUTO_INCREMENT, + `job_bl_job` int(11) NOT NULL DEFAULT '0', + `job_bl_sacct` int(11) NOT NULL DEFAULT '0', + `job_bl_when_added` int(11) NOT NULL DEFAULT '0', + `job_bl_who_added` int(11) NOT NULL DEFAULT '0', + `job_bl_deleted` int(11) NOT NULL DEFAULT '0', + PRIMARY KEY (`job_bl_id`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Job - Blacklist'; + +-- Dumping data for table db24053.job_bl: ~0 rows (approximately) +/*!40000 ALTER TABLE `job_bl` DISABLE KEYS */; +/*!40000 ALTER TABLE `job_bl` ENABLE KEYS */; + +-- Dumping structure for table db24053.job_equip +CREATE TABLE IF NOT EXISTS `job_equip` ( + `job_equip_id` int(11) NOT NULL AUTO_INCREMENT, + `job_equip_job` int(11) NOT NULL DEFAULT '0', + `job_equip_minrank` int(11) NOT NULL DEFAULT '0', + `job_equip_name` varchar(50) NOT NULL DEFAULT '0', + `job_equip_enabled` int(11) NOT NULL DEFAULT '1', + PRIMARY KEY (`job_equip_id`) +) ENGINE=InnoDB AUTO_INCREMENT=21 DEFAULT CHARSET=utf8 COMMENT='Job Equipments'; + +-- Dumping data for table db24053.job_equip: ~20 rows (approximately) +/*!40000 ALTER TABLE `job_equip` DISABLE KEYS */; +INSERT INTO `job_equip` (`job_equip_id`, `job_equip_job`, `job_equip_minrank`, `job_equip_name`, `job_equip_enabled`) VALUES + (1, 1, 0, 'Patrol', 1); +INSERT INTO `job_equip` (`job_equip_id`, `job_equip_job`, `job_equip_minrank`, `job_equip_name`, `job_equip_enabled`) VALUES + (2, 2, 0, 'Patrol', 1); +INSERT INTO `job_equip` (`job_equip_id`, `job_equip_job`, `job_equip_minrank`, `job_equip_name`, `job_equip_enabled`) VALUES + (3, 3, 0, 'Patrol', 1); +INSERT INTO `job_equip` (`job_equip_id`, `job_equip_job`, `job_equip_minrank`, `job_equip_name`, `job_equip_enabled`) VALUES + (4, 4, 0, 'Patrol', 1); +INSERT INTO `job_equip` (`job_equip_id`, `job_equip_job`, `job_equip_minrank`, `job_equip_name`, `job_equip_enabled`) VALUES + (5, 1, 1, 'Detective', 1); +INSERT INTO `job_equip` (`job_equip_id`, `job_equip_job`, `job_equip_minrank`, `job_equip_name`, `job_equip_enabled`) VALUES + (6, 2, 1, 'Detective', 1); +INSERT INTO `job_equip` (`job_equip_id`, `job_equip_job`, `job_equip_minrank`, `job_equip_name`, `job_equip_enabled`) VALUES + (7, 3, 1, 'Detective', 1); +INSERT INTO `job_equip` (`job_equip_id`, `job_equip_job`, `job_equip_minrank`, `job_equip_name`, `job_equip_enabled`) VALUES + (8, 4, 1, 'Detective', 1); +INSERT INTO `job_equip` (`job_equip_id`, `job_equip_job`, `job_equip_minrank`, `job_equip_name`, `job_equip_enabled`) VALUES + (9, 1, 2, 'SWAT', 1); +INSERT INTO `job_equip` (`job_equip_id`, `job_equip_job`, `job_equip_minrank`, `job_equip_name`, `job_equip_enabled`) VALUES + (10, 2, 2, 'SWAT', 1); +INSERT INTO `job_equip` (`job_equip_id`, `job_equip_job`, `job_equip_minrank`, `job_equip_name`, `job_equip_enabled`) VALUES + (11, 3, 2, 'SWAT', 1); +INSERT INTO `job_equip` (`job_equip_id`, `job_equip_job`, `job_equip_minrank`, `job_equip_name`, `job_equip_enabled`) VALUES + (12, 4, 2, 'SWAT', 1); +INSERT INTO `job_equip` (`job_equip_id`, `job_equip_job`, `job_equip_minrank`, `job_equip_name`, `job_equip_enabled`) VALUES + (13, 1, 3, 'Supervisor', 1); +INSERT INTO `job_equip` (`job_equip_id`, `job_equip_job`, `job_equip_minrank`, `job_equip_name`, `job_equip_enabled`) VALUES + (14, 2, 3, 'Supervisor', 1); +INSERT INTO `job_equip` (`job_equip_id`, `job_equip_job`, `job_equip_minrank`, `job_equip_name`, `job_equip_enabled`) VALUES + (15, 3, 3, 'Supervisor', 1); +INSERT INTO `job_equip` (`job_equip_id`, `job_equip_job`, `job_equip_minrank`, `job_equip_name`, `job_equip_enabled`) VALUES + (16, 4, 3, 'Supervisor', 1); +INSERT INTO `job_equip` (`job_equip_id`, `job_equip_job`, `job_equip_minrank`, `job_equip_name`, `job_equip_enabled`) VALUES + (17, 9, 0, 'Firefighter', 1); +INSERT INTO `job_equip` (`job_equip_id`, `job_equip_job`, `job_equip_minrank`, `job_equip_name`, `job_equip_enabled`) VALUES + (18, 10, 0, 'Firefighter', 1); +INSERT INTO `job_equip` (`job_equip_id`, `job_equip_job`, `job_equip_minrank`, `job_equip_name`, `job_equip_enabled`) VALUES + (19, 11, 0, 'Firefighter', 1); +INSERT INTO `job_equip` (`job_equip_id`, `job_equip_job`, `job_equip_minrank`, `job_equip_name`, `job_equip_enabled`) VALUES + (20, 12, 0, 'Firefighter', 1); +/*!40000 ALTER TABLE `job_equip` ENABLE KEYS */; + +-- Dumping structure for table db24053.job_equip_wep +CREATE TABLE IF NOT EXISTS `job_equip_wep` ( + `job_equip_wep_id` int(11) NOT NULL AUTO_INCREMENT, + `job_equip_wep_equip` int(11) NOT NULL DEFAULT '0', + `job_equip_wep_wep` int(11) NOT NULL DEFAULT '0', + `job_equip_wep_ammo` int(11) NOT NULL DEFAULT '0', + `job_equip_wep_enabled` int(11) NOT NULL DEFAULT '1', + PRIMARY KEY (`job_equip_wep_id`) +) ENGINE=InnoDB AUTO_INCREMENT=53 DEFAULT CHARSET=utf8 COMMENT='Job Equipments - Weapons'; + +-- Dumping data for table db24053.job_equip_wep: ~49 rows (approximately) +/*!40000 ALTER TABLE `job_equip_wep` DISABLE KEYS */; +INSERT INTO `job_equip_wep` (`job_equip_wep_id`, `job_equip_wep_equip`, `job_equip_wep_wep`, `job_equip_wep_ammo`, `job_equip_wep_enabled`) VALUES + (1, 1, 1, 1, 1); +INSERT INTO `job_equip_wep` (`job_equip_wep_id`, `job_equip_wep_equip`, `job_equip_wep_wep`, `job_equip_wep_ammo`, `job_equip_wep_enabled`) VALUES + (2, 1, 2, 150, 1); +INSERT INTO `job_equip_wep` (`job_equip_wep_id`, `job_equip_wep_equip`, `job_equip_wep_wep`, `job_equip_wep_ammo`, `job_equip_wep_enabled`) VALUES + (3, 1, 4, 20, 1); +INSERT INTO `job_equip_wep` (`job_equip_wep_id`, `job_equip_wep_equip`, `job_equip_wep_wep`, `job_equip_wep_ammo`, `job_equip_wep_enabled`) VALUES + (4, 5, 1, 1, 1); +INSERT INTO `job_equip_wep` (`job_equip_wep_id`, `job_equip_wep_equip`, `job_equip_wep_wep`, `job_equip_wep_ammo`, `job_equip_wep_enabled`) VALUES + (5, 5, 2, 150, 1); +INSERT INTO `job_equip_wep` (`job_equip_wep_id`, `job_equip_wep_equip`, `job_equip_wep_wep`, `job_equip_wep_ammo`, `job_equip_wep_enabled`) VALUES + (6, 5, 4, 20, 1); +INSERT INTO `job_equip_wep` (`job_equip_wep_id`, `job_equip_wep_equip`, `job_equip_wep_wep`, `job_equip_wep_ammo`, `job_equip_wep_enabled`) VALUES + (7, 9, 1, 1, 1); +INSERT INTO `job_equip_wep` (`job_equip_wep_id`, `job_equip_wep_equip`, `job_equip_wep_wep`, `job_equip_wep_ammo`, `job_equip_wep_enabled`) VALUES + (8, 9, 2, 150, 1); +INSERT INTO `job_equip_wep` (`job_equip_wep_id`, `job_equip_wep_equip`, `job_equip_wep_wep`, `job_equip_wep_ammo`, `job_equip_wep_enabled`) VALUES + (9, 9, 4, 20, 1); +INSERT INTO `job_equip_wep` (`job_equip_wep_id`, `job_equip_wep_equip`, `job_equip_wep_wep`, `job_equip_wep_ammo`, `job_equip_wep_enabled`) VALUES + (10, 13, 4, 1, 1); +INSERT INTO `job_equip_wep` (`job_equip_wep_id`, `job_equip_wep_equip`, `job_equip_wep_wep`, `job_equip_wep_ammo`, `job_equip_wep_enabled`) VALUES + (11, 13, 17, 150, 1); +INSERT INTO `job_equip_wep` (`job_equip_wep_id`, `job_equip_wep_equip`, `job_equip_wep_wep`, `job_equip_wep_ammo`, `job_equip_wep_enabled`) VALUES + (12, 13, 19, 20, 1); +INSERT INTO `job_equip_wep` (`job_equip_wep_id`, `job_equip_wep_equip`, `job_equip_wep_wep`, `job_equip_wep_ammo`, `job_equip_wep_enabled`) VALUES + (16, 21, 4, 1, 1); +INSERT INTO `job_equip_wep` (`job_equip_wep_id`, `job_equip_wep_equip`, `job_equip_wep_wep`, `job_equip_wep_ammo`, `job_equip_wep_enabled`) VALUES + (17, 21, 17, 150, 1); +INSERT INTO `job_equip_wep` (`job_equip_wep_id`, `job_equip_wep_equip`, `job_equip_wep_wep`, `job_equip_wep_ammo`, `job_equip_wep_enabled`) VALUES + (18, 21, 19, 20, 1); +INSERT INTO `job_equip_wep` (`job_equip_wep_id`, `job_equip_wep_equip`, `job_equip_wep_wep`, `job_equip_wep_ammo`, `job_equip_wep_enabled`) VALUES + (19, 25, 4, 1, 1); +INSERT INTO `job_equip_wep` (`job_equip_wep_id`, `job_equip_wep_equip`, `job_equip_wep_wep`, `job_equip_wep_ammo`, `job_equip_wep_enabled`) VALUES + (20, 25, 17, 150, 1); +INSERT INTO `job_equip_wep` (`job_equip_wep_id`, `job_equip_wep_equip`, `job_equip_wep_wep`, `job_equip_wep_ammo`, `job_equip_wep_enabled`) VALUES + (21, 25, 19, 20, 1); +INSERT INTO `job_equip_wep` (`job_equip_wep_id`, `job_equip_wep_equip`, `job_equip_wep_wep`, `job_equip_wep_ammo`, `job_equip_wep_enabled`) VALUES + (22, 29, 3, 1, 1); +INSERT INTO `job_equip_wep` (`job_equip_wep_id`, `job_equip_wep_equip`, `job_equip_wep_wep`, `job_equip_wep_ammo`, `job_equip_wep_enabled`) VALUES + (23, 29, 24, 150, 1); +INSERT INTO `job_equip_wep` (`job_equip_wep_id`, `job_equip_wep_equip`, `job_equip_wep_wep`, `job_equip_wep_ammo`, `job_equip_wep_enabled`) VALUES + (24, 29, 25, 20, 1); +INSERT INTO `job_equip_wep` (`job_equip_wep_id`, `job_equip_wep_equip`, `job_equip_wep_wep`, `job_equip_wep_ammo`, `job_equip_wep_enabled`) VALUES + (25, 33, 3, 1, 1); +INSERT INTO `job_equip_wep` (`job_equip_wep_id`, `job_equip_wep_equip`, `job_equip_wep_wep`, `job_equip_wep_ammo`, `job_equip_wep_enabled`) VALUES + (26, 33, 24, 150, 1); +INSERT INTO `job_equip_wep` (`job_equip_wep_id`, `job_equip_wep_equip`, `job_equip_wep_wep`, `job_equip_wep_ammo`, `job_equip_wep_enabled`) VALUES + (27, 33, 25, 20, 1); +INSERT INTO `job_equip_wep` (`job_equip_wep_id`, `job_equip_wep_equip`, `job_equip_wep_wep`, `job_equip_wep_ammo`, `job_equip_wep_enabled`) VALUES + (28, 37, 3, 1, 1); +INSERT INTO `job_equip_wep` (`job_equip_wep_id`, `job_equip_wep_equip`, `job_equip_wep_wep`, `job_equip_wep_ammo`, `job_equip_wep_enabled`) VALUES + (29, 37, 24, 150, 1); +INSERT INTO `job_equip_wep` (`job_equip_wep_id`, `job_equip_wep_equip`, `job_equip_wep_wep`, `job_equip_wep_ammo`, `job_equip_wep_enabled`) VALUES + (30, 37, 25, 20, 1); +INSERT INTO `job_equip_wep` (`job_equip_wep_id`, `job_equip_wep_equip`, `job_equip_wep_wep`, `job_equip_wep_ammo`, `job_equip_wep_enabled`) VALUES + (31, 4, 3, 1, 1); +INSERT INTO `job_equip_wep` (`job_equip_wep_id`, `job_equip_wep_equip`, `job_equip_wep_wep`, `job_equip_wep_ammo`, `job_equip_wep_enabled`) VALUES + (32, 4, 22, 150, 1); +INSERT INTO `job_equip_wep` (`job_equip_wep_id`, `job_equip_wep_equip`, `job_equip_wep_wep`, `job_equip_wep_ammo`, `job_equip_wep_enabled`) VALUES + (33, 4, 25, 20, 1); +INSERT INTO `job_equip_wep` (`job_equip_wep_id`, `job_equip_wep_equip`, `job_equip_wep_wep`, `job_equip_wep_ammo`, `job_equip_wep_enabled`) VALUES + (34, 8, 24, 150, 1); +INSERT INTO `job_equip_wep` (`job_equip_wep_id`, `job_equip_wep_equip`, `job_equip_wep_wep`, `job_equip_wep_ammo`, `job_equip_wep_enabled`) VALUES + (35, 8, 43, 150, 1); +INSERT INTO `job_equip_wep` (`job_equip_wep_id`, `job_equip_wep_equip`, `job_equip_wep_wep`, `job_equip_wep_ammo`, `job_equip_wep_enabled`) VALUES + (36, 12, 3, 1, 1); +INSERT INTO `job_equip_wep` (`job_equip_wep_id`, `job_equip_wep_equip`, `job_equip_wep_wep`, `job_equip_wep_ammo`, `job_equip_wep_enabled`) VALUES + (37, 12, 17, 5, 1); +INSERT INTO `job_equip_wep` (`job_equip_wep_id`, `job_equip_wep_equip`, `job_equip_wep_wep`, `job_equip_wep_ammo`, `job_equip_wep_enabled`) VALUES + (38, 12, 24, 150, 1); +INSERT INTO `job_equip_wep` (`job_equip_wep_id`, `job_equip_wep_equip`, `job_equip_wep_wep`, `job_equip_wep_ammo`, `job_equip_wep_enabled`) VALUES + (39, 12, 27, 50, 1); +INSERT INTO `job_equip_wep` (`job_equip_wep_id`, `job_equip_wep_equip`, `job_equip_wep_wep`, `job_equip_wep_ammo`, `job_equip_wep_enabled`) VALUES + (40, 12, 29, 350, 1); +INSERT INTO `job_equip_wep` (`job_equip_wep_id`, `job_equip_wep_equip`, `job_equip_wep_wep`, `job_equip_wep_ammo`, `job_equip_wep_enabled`) VALUES + (41, 12, 31, 350, 1); +INSERT INTO `job_equip_wep` (`job_equip_wep_id`, `job_equip_wep_equip`, `job_equip_wep_wep`, `job_equip_wep_ammo`, `job_equip_wep_enabled`) VALUES + (42, 12, 34, 30, 1); +INSERT INTO `job_equip_wep` (`job_equip_wep_id`, `job_equip_wep_equip`, `job_equip_wep_wep`, `job_equip_wep_ammo`, `job_equip_wep_enabled`) VALUES + (43, 16, 3, 1, 1); +INSERT INTO `job_equip_wep` (`job_equip_wep_id`, `job_equip_wep_equip`, `job_equip_wep_wep`, `job_equip_wep_ammo`, `job_equip_wep_enabled`) VALUES + (44, 16, 24, 150, 1); +INSERT INTO `job_equip_wep` (`job_equip_wep_id`, `job_equip_wep_equip`, `job_equip_wep_wep`, `job_equip_wep_ammo`, `job_equip_wep_enabled`) VALUES + (45, 16, 25, 20, 1); +INSERT INTO `job_equip_wep` (`job_equip_wep_id`, `job_equip_wep_equip`, `job_equip_wep_wep`, `job_equip_wep_ammo`, `job_equip_wep_enabled`) VALUES + (46, 16, 29, 350, 1); +INSERT INTO `job_equip_wep` (`job_equip_wep_id`, `job_equip_wep_equip`, `job_equip_wep_wep`, `job_equip_wep_ammo`, `job_equip_wep_enabled`) VALUES + (47, 17, 9, 500, 1); +INSERT INTO `job_equip_wep` (`job_equip_wep_id`, `job_equip_wep_equip`, `job_equip_wep_wep`, `job_equip_wep_ammo`, `job_equip_wep_enabled`) VALUES + (48, 18, 31, 500, 1); +INSERT INTO `job_equip_wep` (`job_equip_wep_id`, `job_equip_wep_equip`, `job_equip_wep_wep`, `job_equip_wep_ammo`, `job_equip_wep_enabled`) VALUES + (49, 18, 11, 1, 1); +INSERT INTO `job_equip_wep` (`job_equip_wep_id`, `job_equip_wep_equip`, `job_equip_wep_wep`, `job_equip_wep_ammo`, `job_equip_wep_enabled`) VALUES + (50, 20, 42, 99999, 1); +INSERT INTO `job_equip_wep` (`job_equip_wep_id`, `job_equip_wep_equip`, `job_equip_wep_wep`, `job_equip_wep_ammo`, `job_equip_wep_enabled`) VALUES + (51, 20, 37, 500, 1); +INSERT INTO `job_equip_wep` (`job_equip_wep_id`, `job_equip_wep_equip`, `job_equip_wep_wep`, `job_equip_wep_ammo`, `job_equip_wep_enabled`) VALUES + (52, 20, 9, 1, 1); +/*!40000 ALTER TABLE `job_equip_wep` ENABLE KEYS */; + +-- Dumping structure for table db24053.job_loc +CREATE TABLE IF NOT EXISTS `job_loc` ( + `job_loc_id` int(11) NOT NULL AUTO_INCREMENT, + `job_loc_job` int(11) NOT NULL DEFAULT '0', + `job_loc_pos_x` float NOT NULL DEFAULT '0', + `job_loc_pos_y` float NOT NULL DEFAULT '0', + `job_loc_pos_z` float NOT NULL DEFAULT '0', + `job_loc_enabled` float NOT NULL DEFAULT '0', + `job_loc_uniform` int(11) NOT NULL DEFAULT '0', + `job_loc_int` int(11) NOT NULL DEFAULT '0', + `job_loc_vw` int(11) NOT NULL DEFAULT '0', + PRIMARY KEY (`job_loc_id`) +) ENGINE=InnoDB AUTO_INCREMENT=53 DEFAULT CHARSET=utf8 COMMENT='Job - Locations'; + +-- Dumping data for table db24053.job_loc: ~50 rows (approximately) +/*!40000 ALTER TABLE `job_loc` DISABLE KEYS */; +INSERT INTO `job_loc` (`job_loc_id`, `job_loc_job`, `job_loc_pos_x`, `job_loc_pos_y`, `job_loc_pos_z`, `job_loc_enabled`, `job_loc_uniform`, `job_loc_int`, `job_loc_vw`) VALUES + (1, 1, 1143.87, -675.18, 14.97, 1, 1, 0, 0); +INSERT INTO `job_loc` (`job_loc_id`, `job_loc_job`, `job_loc_pos_x`, `job_loc_pos_y`, `job_loc_pos_z`, `job_loc_enabled`, `job_loc_uniform`, `job_loc_int`, `job_loc_vw`) VALUES + (2, 1, 340.25, -1123.37, 25.98, 1, 1, 0, 0); +INSERT INTO `job_loc` (`job_loc_id`, `job_loc_job`, `job_loc_pos_x`, `job_loc_pos_y`, `job_loc_pos_z`, `job_loc_enabled`, `job_loc_uniform`, `job_loc_int`, `job_loc_vw`) VALUES + (3, 5, -1253, -138.18, 58.75, 1, 0, 0, 0); +INSERT INTO `job_loc` (`job_loc_id`, `job_loc_job`, `job_loc_pos_x`, `job_loc_pos_y`, `job_loc_pos_z`, `job_loc_enabled`, `job_loc_uniform`, `job_loc_int`, `job_loc_vw`) VALUES + (4, 2, 399.77, -468.9, 11.73, 1, 3, 0, 0); +INSERT INTO `job_loc` (`job_loc_id`, `job_loc_job`, `job_loc_pos_x`, `job_loc_pos_y`, `job_loc_pos_z`, `job_loc_enabled`, `job_loc_uniform`, `job_loc_int`, `job_loc_vw`) VALUES + (5, 2, 508.96, 512.07, 12.1, 1, 3, 0, 0); +INSERT INTO `job_loc` (`job_loc_id`, `job_loc_job`, `job_loc_pos_x`, `job_loc_pos_y`, `job_loc_pos_z`, `job_loc_enabled`, `job_loc_uniform`, `job_loc_int`, `job_loc_vw`) VALUES + (6, 2, -657.43, 762.31, 11.59, 1, 3, 0, 0); +INSERT INTO `job_loc` (`job_loc_id`, `job_loc_job`, `job_loc_pos_x`, `job_loc_pos_y`, `job_loc_pos_z`, `job_loc_enabled`, `job_loc_uniform`, `job_loc_int`, `job_loc_vw`) VALUES + (7, 6, -885.08, -470.44, 13.11, 1, 0, 0, 0); +INSERT INTO `job_loc` (`job_loc_id`, `job_loc_job`, `job_loc_pos_x`, `job_loc_pos_y`, `job_loc_pos_z`, `job_loc_enabled`, `job_loc_uniform`, `job_loc_int`, `job_loc_vw`) VALUES + (8, 4, 254.38, 77.72, 1003.64, 1, 0, 6, 2); +INSERT INTO `job_loc` (`job_loc_id`, `job_loc_job`, `job_loc_pos_x`, `job_loc_pos_y`, `job_loc_pos_z`, `job_loc_enabled`, `job_loc_uniform`, `job_loc_int`, `job_loc_vw`) VALUES + (11, 5, 1144.25, -596.87, 14.97, 1, 0, 0, 0); +INSERT INTO `job_loc` (`job_loc_id`, `job_loc_job`, `job_loc_pos_x`, `job_loc_pos_y`, `job_loc_pos_z`, `job_loc_enabled`, `job_loc_uniform`, `job_loc_int`, `job_loc_vw`) VALUES + (12, 1, -1259.5, -44.5, 58.89, 1, 1, 0, 0); +INSERT INTO `job_loc` (`job_loc_id`, `job_loc_job`, `job_loc_pos_x`, `job_loc_pos_y`, `job_loc_pos_z`, `job_loc_enabled`, `job_loc_uniform`, `job_loc_int`, `job_loc_vw`) VALUES + (13, 5, 183.5, -17.75, 16.21, 1, 0, 0, 0); +INSERT INTO `job_loc` (`job_loc_id`, `job_loc_job`, `job_loc_pos_x`, `job_loc_pos_y`, `job_loc_pos_z`, `job_loc_enabled`, `job_loc_uniform`, `job_loc_int`, `job_loc_vw`) VALUES + (14, 9, 1103.7, -52.45, 7.49, 1, 0, 0, 0); +INSERT INTO `job_loc` (`job_loc_id`, `job_loc_job`, `job_loc_pos_x`, `job_loc_pos_y`, `job_loc_pos_z`, `job_loc_enabled`, `job_loc_uniform`, `job_loc_int`, `job_loc_vw`) VALUES + (15, 9, -78.48, -436.8, 16.17, 1, 0, 0, 0); +INSERT INTO `job_loc` (`job_loc_id`, `job_loc_job`, `job_loc_pos_x`, `job_loc_pos_y`, `job_loc_pos_z`, `job_loc_enabled`, `job_loc_uniform`, `job_loc_int`, `job_loc_vw`) VALUES + (16, 9, -1202.1, -14.67, 53.2, 1, 0, 0, 0); +INSERT INTO `job_loc` (`job_loc_id`, `job_loc_job`, `job_loc_pos_x`, `job_loc_pos_y`, `job_loc_pos_z`, `job_loc_enabled`, `job_loc_uniform`, `job_loc_int`, `job_loc_vw`) VALUES + (17, 13, 1229.2, -740.1, 15.17, 1, 0, 0, 0); +INSERT INTO `job_loc` (`job_loc_id`, `job_loc_job`, `job_loc_pos_x`, `job_loc_pos_y`, `job_loc_pos_z`, `job_loc_enabled`, `job_loc_uniform`, `job_loc_int`, `job_loc_vw`) VALUES + (18, 17, -57.1661, -334.266, 16.9324, 1, 0, 0, 0); +INSERT INTO `job_loc` (`job_loc_id`, `job_loc_job`, `job_loc_pos_x`, `job_loc_pos_y`, `job_loc_pos_z`, `job_loc_enabled`, `job_loc_uniform`, `job_loc_int`, `job_loc_vw`) VALUES + (19, 17, 0, 0, 0, 1, 0, 0, 0); +INSERT INTO `job_loc` (`job_loc_id`, `job_loc_job`, `job_loc_pos_x`, `job_loc_pos_y`, `job_loc_pos_z`, `job_loc_enabled`, `job_loc_uniform`, `job_loc_int`, `job_loc_vw`) VALUES + (20, 17, 1310.2, -1016.3, 14.88, 1, 0, 0, 0); +INSERT INTO `job_loc` (`job_loc_id`, `job_loc_job`, `job_loc_pos_x`, `job_loc_pos_y`, `job_loc_pos_z`, `job_loc_enabled`, `job_loc_uniform`, `job_loc_int`, `job_loc_vw`) VALUES + (21, 21, -66.8, -932.2, 16.47, 1, 0, 0, 0); +INSERT INTO `job_loc` (`job_loc_id`, `job_loc_job`, `job_loc_pos_x`, `job_loc_pos_y`, `job_loc_pos_z`, `job_loc_enabled`, `job_loc_uniform`, `job_loc_int`, `job_loc_vw`) VALUES + (22, 21, 1121.8, 27.8, 1.99, 1, 0, 0, 0); +INSERT INTO `job_loc` (`job_loc_id`, `job_loc_job`, `job_loc_pos_x`, `job_loc_pos_y`, `job_loc_pos_z`, `job_loc_enabled`, `job_loc_uniform`, `job_loc_int`, `job_loc_vw`) VALUES + (23, 3, 894.99, -357.39, 18.185, 1, 0, 0, 0); +INSERT INTO `job_loc` (`job_loc_id`, `job_loc_job`, `job_loc_pos_x`, `job_loc_pos_y`, `job_loc_pos_z`, `job_loc_enabled`, `job_loc_uniform`, `job_loc_int`, `job_loc_vw`) VALUES + (24, 3, 435.4, 1592.29, 17.353, 1, 0, 0, 0); +INSERT INTO `job_loc` (`job_loc_id`, `job_loc_job`, `job_loc_pos_x`, `job_loc_pos_y`, `job_loc_pos_z`, `job_loc_enabled`, `job_loc_uniform`, `job_loc_int`, `job_loc_vw`) VALUES + (25, 3, 974.93, 1870.45, 23.073, 1, 0, 0, 0); +INSERT INTO `job_loc` (`job_loc_id`, `job_loc_job`, `job_loc_pos_x`, `job_loc_pos_y`, `job_loc_pos_z`, `job_loc_enabled`, `job_loc_uniform`, `job_loc_int`, `job_loc_vw`) VALUES + (26, 3, 1233.25, -89.13, 28.034, 1, 0, 0, 0); +INSERT INTO `job_loc` (`job_loc_id`, `job_loc_job`, `job_loc_pos_x`, `job_loc_pos_y`, `job_loc_pos_z`, `job_loc_enabled`, `job_loc_uniform`, `job_loc_int`, `job_loc_vw`) VALUES + (27, 3, 50.12, 679.88, 15.316, 1, 0, 0, 0); +INSERT INTO `job_loc` (`job_loc_id`, `job_loc_job`, `job_loc_pos_x`, `job_loc_pos_y`, `job_loc_pos_z`, `job_loc_enabled`, `job_loc_uniform`, `job_loc_int`, `job_loc_vw`) VALUES + (28, 3, 85.21, 1189.82, 14.755, 1, 0, 0, 0); +INSERT INTO `job_loc` (`job_loc_id`, `job_loc_job`, `job_loc_pos_x`, `job_loc_pos_y`, `job_loc_pos_z`, `job_loc_enabled`, `job_loc_uniform`, `job_loc_int`, `job_loc_vw`) VALUES + (29, 3, 2170.87, 448.87, 6.085, 1, 0, 0, 0); +INSERT INTO `job_loc` (`job_loc_id`, `job_loc_job`, `job_loc_pos_x`, `job_loc_pos_y`, `job_loc_pos_z`, `job_loc_enabled`, `job_loc_uniform`, `job_loc_int`, `job_loc_vw`) VALUES + (30, 3, 213.12, -211.7, 10.752, 1, 0, 0, 0); +INSERT INTO `job_loc` (`job_loc_id`, `job_loc_job`, `job_loc_pos_x`, `job_loc_pos_y`, `job_loc_pos_z`, `job_loc_enabled`, `job_loc_uniform`, `job_loc_int`, `job_loc_vw`) VALUES + (31, 3, -1714.95, 276.31, 22.134, 1, 0, 0, 0); +INSERT INTO `job_loc` (`job_loc_id`, `job_loc_job`, `job_loc_pos_x`, `job_loc_pos_y`, `job_loc_pos_z`, `job_loc_enabled`, `job_loc_uniform`, `job_loc_int`, `job_loc_vw`) VALUES + (32, 3, -1220.73, -231.53, 3.024, 1, 0, 0, 0); +INSERT INTO `job_loc` (`job_loc_id`, `job_loc_job`, `job_loc_pos_x`, `job_loc_pos_y`, `job_loc_pos_z`, `job_loc_enabled`, `job_loc_uniform`, `job_loc_int`, `job_loc_vw`) VALUES + (33, 3, -927.66, 1263.63, 24.587, 1, 0, 0, 0); +INSERT INTO `job_loc` (`job_loc_id`, `job_loc_job`, `job_loc_pos_x`, `job_loc_pos_y`, `job_loc_pos_z`, `job_loc_enabled`, `job_loc_uniform`, `job_loc_int`, `job_loc_vw`) VALUES + (34, 6, -826.06, 1144.41, 12.41, 1, 0, 0, 0); +INSERT INTO `job_loc` (`job_loc_id`, `job_loc_job`, `job_loc_pos_x`, `job_loc_pos_y`, `job_loc_pos_z`, `job_loc_enabled`, `job_loc_uniform`, `job_loc_int`, `job_loc_vw`) VALUES + (35, 2, -872.06, -683.19, 11.23, 1, 3, 0, 0); +INSERT INTO `job_loc` (`job_loc_id`, `job_loc_job`, `job_loc_pos_x`, `job_loc_pos_y`, `job_loc_pos_z`, `job_loc_enabled`, `job_loc_uniform`, `job_loc_int`, `job_loc_vw`) VALUES + (36, 10, -698.22, 942.38, 11.08, 1, 0, 0, 0); +INSERT INTO `job_loc` (`job_loc_id`, `job_loc_job`, `job_loc_pos_x`, `job_loc_pos_y`, `job_loc_pos_z`, `job_loc_enabled`, `job_loc_uniform`, `job_loc_int`, `job_loc_vw`) VALUES + (37, 18, -1146.06, -285.65, 11.2, 1, 0, 0, 0); +INSERT INTO `job_loc` (`job_loc_id`, `job_loc_job`, `job_loc_pos_x`, `job_loc_pos_y`, `job_loc_pos_z`, `job_loc_enabled`, `job_loc_uniform`, `job_loc_int`, `job_loc_vw`) VALUES + (38, 14, -994.88, 185.1, 12.43, 1, 0, 0, 0); +INSERT INTO `job_loc` (`job_loc_id`, `job_loc_job`, `job_loc_pos_x`, `job_loc_pos_y`, `job_loc_pos_z`, `job_loc_enabled`, `job_loc_uniform`, `job_loc_int`, `job_loc_vw`) VALUES + (39, 6, 493.14, 709.31, 11.8, 1, 0, 0, 0); +INSERT INTO `job_loc` (`job_loc_id`, `job_loc_job`, `job_loc_pos_x`, `job_loc_pos_y`, `job_loc_pos_z`, `job_loc_enabled`, `job_loc_uniform`, `job_loc_int`, `job_loc_vw`) VALUES + (40, 22, -1264.42, 6.05, 11.45, 1, 0, 0, 0); +INSERT INTO `job_loc` (`job_loc_id`, `job_loc_job`, `job_loc_pos_x`, `job_loc_pos_y`, `job_loc_pos_z`, `job_loc_enabled`, `job_loc_uniform`, `job_loc_int`, `job_loc_vw`) VALUES + (41, 8, 1172.96, -1323.42, 15.4, 1, 0, 0, 0); +INSERT INTO `job_loc` (`job_loc_id`, `job_loc_job`, `job_loc_pos_x`, `job_loc_pos_y`, `job_loc_pos_z`, `job_loc_enabled`, `job_loc_uniform`, `job_loc_int`, `job_loc_vw`) VALUES + (42, 8, 2034.04, -1405.07, 17.24, 1, 0, 0, 0); +INSERT INTO `job_loc` (`job_loc_id`, `job_loc_job`, `job_loc_pos_x`, `job_loc_pos_y`, `job_loc_pos_z`, `job_loc_enabled`, `job_loc_uniform`, `job_loc_int`, `job_loc_vw`) VALUES + (43, 24, 2309.22, -2088.32, 13.55, 1, 0, 0, 0); +INSERT INTO `job_loc` (`job_loc_id`, `job_loc_job`, `job_loc_pos_x`, `job_loc_pos_y`, `job_loc_pos_z`, `job_loc_enabled`, `job_loc_uniform`, `job_loc_int`, `job_loc_vw`) VALUES + (44, 20, 1765.89, -1885.48, 13.55, 1, 0, 0, 0); +INSERT INTO `job_loc` (`job_loc_id`, `job_loc_job`, `job_loc_pos_x`, `job_loc_pos_y`, `job_loc_pos_z`, `job_loc_enabled`, `job_loc_uniform`, `job_loc_int`, `job_loc_vw`) VALUES + (45, 16, 1808.64, -1938.58, 13.55, 1, 0, 0, 0); +INSERT INTO `job_loc` (`job_loc_id`, `job_loc_job`, `job_loc_pos_x`, `job_loc_pos_y`, `job_loc_pos_z`, `job_loc_enabled`, `job_loc_uniform`, `job_loc_int`, `job_loc_vw`) VALUES + (46, 12, 1133.7, -1312.92, 13.58, 1, 0, 0, 0); +INSERT INTO `job_loc` (`job_loc_id`, `job_loc_job`, `job_loc_pos_x`, `job_loc_pos_y`, `job_loc_pos_z`, `job_loc_enabled`, `job_loc_uniform`, `job_loc_int`, `job_loc_vw`) VALUES + (47, 4, 2290.49, 2430.09, 10.82, 1, 0, 0, 0); +INSERT INTO `job_loc` (`job_loc_id`, `job_loc_job`, `job_loc_pos_x`, `job_loc_pos_y`, `job_loc_pos_z`, `job_loc_enabled`, `job_loc_uniform`, `job_loc_int`, `job_loc_vw`) VALUES + (48, 12, 1744.95, 2082.8, 10.82, 1, 0, 0, 0); +INSERT INTO `job_loc` (`job_loc_id`, `job_loc_job`, `job_loc_pos_x`, `job_loc_pos_y`, `job_loc_pos_z`, `job_loc_enabled`, `job_loc_uniform`, `job_loc_int`, `job_loc_vw`) VALUES + (49, 4, -1605.38, 711.5, 13.87, 1, 0, 0, 0); +INSERT INTO `job_loc` (`job_loc_id`, `job_loc_job`, `job_loc_pos_x`, `job_loc_pos_y`, `job_loc_pos_z`, `job_loc_enabled`, `job_loc_uniform`, `job_loc_int`, `job_loc_vw`) VALUES + (50, 8, -2655.15, 638.72, 14.45, 1, 0, 0, 0); +INSERT INTO `job_loc` (`job_loc_id`, `job_loc_job`, `job_loc_pos_x`, `job_loc_pos_y`, `job_loc_pos_z`, `job_loc_enabled`, `job_loc_uniform`, `job_loc_int`, `job_loc_vw`) VALUES + (51, 12, -2026.34, 67.17, 28.69, 1, 0, 0, 0); +INSERT INTO `job_loc` (`job_loc_id`, `job_loc_job`, `job_loc_pos_x`, `job_loc_pos_y`, `job_loc_pos_z`, `job_loc_enabled`, `job_loc_uniform`, `job_loc_int`, `job_loc_vw`) VALUES + (52, 17, -1130.99, -177.76, 43.72, 1, 0, 0, 0); +/*!40000 ALTER TABLE `job_loc` ENABLE KEYS */; + +-- Dumping structure for table db24053.job_main +CREATE TABLE IF NOT EXISTS `job_main` ( + `job_id` int(11) NOT NULL AUTO_INCREMENT, + `job_server` int(11) NOT NULL DEFAULT '0', + `job_enabled` int(11) NOT NULL DEFAULT '1', + `job_name` varchar(50) NOT NULL DEFAULT 'Unnamed', + `job_pickup` int(11) NOT NULL DEFAULT '0', + `job_type` int(11) NOT NULL DEFAULT '0', + `job_blip` int(11) NOT NULL DEFAULT '0', + `job_colour_r` int(11) NOT NULL DEFAULT '255', + `job_colour_g` int(11) NOT NULL DEFAULT '255', + `job_colour_b` int(11) NOT NULL DEFAULT '255', + `job_whitelist` int(11) NOT NULL DEFAULT '0', + PRIMARY KEY (`job_id`) +) ENGINE=InnoDB AUTO_INCREMENT=25 DEFAULT CHARSET=utf8 COMMENT='Jobs'; + +-- Dumping data for table db24053.job_main: ~24 rows (approximately) +/*!40000 ALTER TABLE `job_main` DISABLE KEYS */; +INSERT INTO `job_main` (`job_id`, `job_server`, `job_enabled`, `job_name`, `job_pickup`, `job_type`, `job_blip`, `job_colour_r`, `job_colour_g`, `job_colour_b`, `job_whitelist`) VALUES + (1, 1, 1, 'Police', 1383, 1, 0, 70, 130, 180, 0); +INSERT INTO `job_main` (`job_id`, `job_server`, `job_enabled`, `job_name`, `job_pickup`, `job_type`, `job_blip`, `job_colour_r`, `job_colour_g`, `job_colour_b`, `job_whitelist`) VALUES + (2, 2, 1, 'Police', 375, 1, 0, 70, 130, 180, 0); +INSERT INTO `job_main` (`job_id`, `job_server`, `job_enabled`, `job_name`, `job_pickup`, `job_type`, `job_blip`, `job_colour_r`, `job_colour_g`, `job_colour_b`, `job_whitelist`) VALUES + (3, 3, 1, 'Police', 0, 1, 0, 70, 130, 180, 0); +INSERT INTO `job_main` (`job_id`, `job_server`, `job_enabled`, `job_name`, `job_pickup`, `job_type`, `job_blip`, `job_colour_r`, `job_colour_g`, `job_colour_b`, `job_whitelist`) VALUES + (4, 4, 1, 'Police', 1247, 1, 30, 70, 130, 180, 0); +INSERT INTO `job_main` (`job_id`, `job_server`, `job_enabled`, `job_name`, `job_pickup`, `job_type`, `job_blip`, `job_colour_r`, `job_colour_g`, `job_colour_b`, `job_whitelist`) VALUES + (5, 1, 1, 'Paramedic', 1362, 2, 0, 219, 112, 147, 0); +INSERT INTO `job_main` (`job_id`, `job_server`, `job_enabled`, `job_name`, `job_pickup`, `job_type`, `job_blip`, `job_colour_r`, `job_colour_g`, `job_colour_b`, `job_whitelist`) VALUES + (6, 2, 1, 'Paramedic', 366, 2, 0, 219, 112, 147, 0); +INSERT INTO `job_main` (`job_id`, `job_server`, `job_enabled`, `job_name`, `job_pickup`, `job_type`, `job_blip`, `job_colour_r`, `job_colour_g`, `job_colour_b`, `job_whitelist`) VALUES + (7, 3, 1, 'Paramedic', 0, 2, 0, 219, 112, 147, 0); +INSERT INTO `job_main` (`job_id`, `job_server`, `job_enabled`, `job_name`, `job_pickup`, `job_type`, `job_blip`, `job_colour_r`, `job_colour_g`, `job_colour_b`, `job_whitelist`) VALUES + (8, 4, 1, 'Paramedic', 1240, 2, 22, 219, 112, 147, 0); +INSERT INTO `job_main` (`job_id`, `job_server`, `job_enabled`, `job_name`, `job_pickup`, `job_type`, `job_blip`, `job_colour_r`, `job_colour_g`, `job_colour_b`, `job_whitelist`) VALUES + (9, 1, 1, 'Firefighter', 1364, 3, 0, 205, 92, 92, 0); +INSERT INTO `job_main` (`job_id`, `job_server`, `job_enabled`, `job_name`, `job_pickup`, `job_type`, `job_blip`, `job_colour_r`, `job_colour_g`, `job_colour_b`, `job_whitelist`) VALUES + (10, 2, 1, 'Firefighter', 365, 3, 0, 205, 92, 92, 0); +INSERT INTO `job_main` (`job_id`, `job_server`, `job_enabled`, `job_name`, `job_pickup`, `job_type`, `job_blip`, `job_colour_r`, `job_colour_g`, `job_colour_b`, `job_whitelist`) VALUES + (11, 3, 1, 'Firefighter', 0, 3, 0, 205, 92, 92, 0); +INSERT INTO `job_main` (`job_id`, `job_server`, `job_enabled`, `job_name`, `job_pickup`, `job_type`, `job_blip`, `job_colour_r`, `job_colour_g`, `job_colour_b`, `job_whitelist`) VALUES + (12, 4, 1, 'Firefighter', 1318, 3, 20, 205, 92, 92, 0); +INSERT INTO `job_main` (`job_id`, `job_server`, `job_enabled`, `job_name`, `job_pickup`, `job_type`, `job_blip`, `job_colour_r`, `job_colour_g`, `job_colour_b`, `job_whitelist`) VALUES + (13, 1, 1, 'Taxi Driver', 1361, 5, 0, 240, 230, 140, 0); +INSERT INTO `job_main` (`job_id`, `job_server`, `job_enabled`, `job_name`, `job_pickup`, `job_type`, `job_blip`, `job_colour_r`, `job_colour_g`, `job_colour_b`, `job_whitelist`) VALUES + (14, 2, 1, 'Taxi Driver', 365, 5, 0, 240, 230, 140, 0); +INSERT INTO `job_main` (`job_id`, `job_server`, `job_enabled`, `job_name`, `job_pickup`, `job_type`, `job_blip`, `job_colour_r`, `job_colour_g`, `job_colour_b`, `job_whitelist`) VALUES + (15, 3, 1, 'Taxi Driver', 0, 5, 0, 240, 230, 140, 0); +INSERT INTO `job_main` (`job_id`, `job_server`, `job_enabled`, `job_name`, `job_pickup`, `job_type`, `job_blip`, `job_colour_r`, `job_colour_g`, `job_colour_b`, `job_whitelist`) VALUES + (16, 4, 1, 'Taxi Driver', 1318, 5, 0, 240, 230, 140, 0); +INSERT INTO `job_main` (`job_id`, `job_server`, `job_enabled`, `job_name`, `job_pickup`, `job_type`, `job_blip`, `job_colour_r`, `job_colour_g`, `job_colour_b`, `job_whitelist`) VALUES + (17, 1, 1, 'Bus Driver', 1361, 4, 0, 50, 205, 50, 0); +INSERT INTO `job_main` (`job_id`, `job_server`, `job_enabled`, `job_name`, `job_pickup`, `job_type`, `job_blip`, `job_colour_r`, `job_colour_g`, `job_colour_b`, `job_whitelist`) VALUES + (18, 2, 1, 'Bus Driver', 365, 4, 0, 50, 205, 50, 0); +INSERT INTO `job_main` (`job_id`, `job_server`, `job_enabled`, `job_name`, `job_pickup`, `job_type`, `job_blip`, `job_colour_r`, `job_colour_g`, `job_colour_b`, `job_whitelist`) VALUES + (19, 3, 1, 'Bus Driver', 0, 4, 0, 50, 205, 50, 0); +INSERT INTO `job_main` (`job_id`, `job_server`, `job_enabled`, `job_name`, `job_pickup`, `job_type`, `job_blip`, `job_colour_r`, `job_colour_g`, `job_colour_b`, `job_whitelist`) VALUES + (20, 4, 1, 'Bus Driver', 1318, 4, 0, 50, 205, 50, 0); +INSERT INTO `job_main` (`job_id`, `job_server`, `job_enabled`, `job_name`, `job_pickup`, `job_type`, `job_blip`, `job_colour_r`, `job_colour_g`, `job_colour_b`, `job_whitelist`) VALUES + (21, 1, 1, 'Trash Collector', 1351, 6, 0, 150, 150, 150, 0); +INSERT INTO `job_main` (`job_id`, `job_server`, `job_enabled`, `job_name`, `job_pickup`, `job_type`, `job_blip`, `job_colour_r`, `job_colour_g`, `job_colour_b`, `job_whitelist`) VALUES + (22, 2, 1, 'Trash Collector', 365, 6, 0, 150, 150, 150, 0); +INSERT INTO `job_main` (`job_id`, `job_server`, `job_enabled`, `job_name`, `job_pickup`, `job_type`, `job_blip`, `job_colour_r`, `job_colour_g`, `job_colour_b`, `job_whitelist`) VALUES + (23, 3, 1, 'Trash Collector', 0, 6, 0, 150, 150, 150, 0); +INSERT INTO `job_main` (`job_id`, `job_server`, `job_enabled`, `job_name`, `job_pickup`, `job_type`, `job_blip`, `job_colour_r`, `job_colour_g`, `job_colour_b`, `job_whitelist`) VALUES + (24, 4, 1, 'Trash Collector', 1318, 6, 0, 150, 150, 150, 0); +/*!40000 ALTER TABLE `job_main` ENABLE KEYS */; + +-- Dumping structure for table db24053.job_uniform +CREATE TABLE IF NOT EXISTS `job_uniform` ( + `job_uniform_id` int(11) NOT NULL AUTO_INCREMENT, + `job_uniform_job` int(11) NOT NULL DEFAULT '0', + `job_uniform_skin` int(11) NOT NULL DEFAULT '0', + `job_uniform_enabled` int(11) NOT NULL DEFAULT '0', + `job_uniform_minrank` int(11) NOT NULL DEFAULT '0', + `job_uniform_name` varchar(50) NOT NULL DEFAULT 'Unnamed', + PRIMARY KEY (`job_uniform_id`) +) ENGINE=InnoDB AUTO_INCREMENT=62 DEFAULT CHARSET=utf8 COMMENT='Jobs - Uniforms'; + +-- Dumping data for table db24053.job_uniform: ~60 rows (approximately) +/*!40000 ALTER TABLE `job_uniform` DISABLE KEYS */; +INSERT INTO `job_uniform` (`job_uniform_id`, `job_uniform_job`, `job_uniform_skin`, `job_uniform_enabled`, `job_uniform_minrank`, `job_uniform_name`) VALUES + (1, 1, 1, 1, 0, 'Police Officer 1'); +INSERT INTO `job_uniform` (`job_uniform_id`, `job_uniform_job`, `job_uniform_skin`, `job_uniform_enabled`, `job_uniform_minrank`, `job_uniform_name`) VALUES + (2, 1, 92, 1, 0, 'Police Officer 2'); +INSERT INTO `job_uniform` (`job_uniform_id`, `job_uniform_job`, `job_uniform_skin`, `job_uniform_enabled`, `job_uniform_minrank`, `job_uniform_name`) VALUES + (3, 2, 1, 1, 0, 'Police Officer 1'); +INSERT INTO `job_uniform` (`job_uniform_id`, `job_uniform_job`, `job_uniform_skin`, `job_uniform_enabled`, `job_uniform_minrank`, `job_uniform_name`) VALUES + (4, 2, 120, 1, 0, 'Officer Lance Vance'); +INSERT INTO `job_uniform` (`job_uniform_id`, `job_uniform_job`, `job_uniform_skin`, `job_uniform_enabled`, `job_uniform_minrank`, `job_uniform_name`) VALUES + (5, 2, 97, 1, 1, 'Detective 1'); +INSERT INTO `job_uniform` (`job_uniform_id`, `job_uniform_job`, `job_uniform_skin`, `job_uniform_enabled`, `job_uniform_minrank`, `job_uniform_name`) VALUES + (6, 2, 98, 1, 1, 'Detective 2'); +INSERT INTO `job_uniform` (`job_uniform_id`, `job_uniform_job`, `job_uniform_skin`, `job_uniform_enabled`, `job_uniform_minrank`, `job_uniform_name`) VALUES + (7, 2, 99, 1, 1, 'Detective 3'); +INSERT INTO `job_uniform` (`job_uniform_id`, `job_uniform_job`, `job_uniform_skin`, `job_uniform_enabled`, `job_uniform_minrank`, `job_uniform_name`) VALUES + (8, 2, 100, 1, 1, 'Detective 4'); +INSERT INTO `job_uniform` (`job_uniform_id`, `job_uniform_job`, `job_uniform_skin`, `job_uniform_enabled`, `job_uniform_minrank`, `job_uniform_name`) VALUES + (9, 2, 101, 1, 1, 'Detective 5'); +INSERT INTO `job_uniform` (`job_uniform_id`, `job_uniform_job`, `job_uniform_skin`, `job_uniform_enabled`, `job_uniform_minrank`, `job_uniform_name`) VALUES + (10, 2, 102, 1, 1, 'Detective 6'); +INSERT INTO `job_uniform` (`job_uniform_id`, `job_uniform_job`, `job_uniform_skin`, `job_uniform_enabled`, `job_uniform_minrank`, `job_uniform_name`) VALUES + (11, 4, 280, 1, 0, 'Los Santos Police Officer'); +INSERT INTO `job_uniform` (`job_uniform_id`, `job_uniform_job`, `job_uniform_skin`, `job_uniform_enabled`, `job_uniform_minrank`, `job_uniform_name`) VALUES + (12, 4, 281, 1, 0, 'San Fierro Police Officer'); +INSERT INTO `job_uniform` (`job_uniform_id`, `job_uniform_job`, `job_uniform_skin`, `job_uniform_enabled`, `job_uniform_minrank`, `job_uniform_name`) VALUES + (13, 4, 282, 1, 0, 'Las Venturas Police Officer'); +INSERT INTO `job_uniform` (`job_uniform_id`, `job_uniform_job`, `job_uniform_skin`, `job_uniform_enabled`, `job_uniform_minrank`, `job_uniform_name`) VALUES + (14, 4, 284, 1, 0, 'Motorcycle Cop'); +INSERT INTO `job_uniform` (`job_uniform_id`, `job_uniform_job`, `job_uniform_skin`, `job_uniform_enabled`, `job_uniform_minrank`, `job_uniform_name`) VALUES + (15, 4, 165, 1, 0, 'Detective 1'); +INSERT INTO `job_uniform` (`job_uniform_id`, `job_uniform_job`, `job_uniform_skin`, `job_uniform_enabled`, `job_uniform_minrank`, `job_uniform_name`) VALUES + (16, 4, 166, 1, 0, 'Detective 2'); +INSERT INTO `job_uniform` (`job_uniform_id`, `job_uniform_job`, `job_uniform_skin`, `job_uniform_enabled`, `job_uniform_minrank`, `job_uniform_name`) VALUES + (17, 4, 285, 1, 2, 'SWAT'); +INSERT INTO `job_uniform` (`job_uniform_id`, `job_uniform_job`, `job_uniform_skin`, `job_uniform_enabled`, `job_uniform_minrank`, `job_uniform_name`) VALUES + (18, 4, 283, 1, 3, 'Sheriff 1'); +INSERT INTO `job_uniform` (`job_uniform_id`, `job_uniform_job`, `job_uniform_skin`, `job_uniform_enabled`, `job_uniform_minrank`, `job_uniform_name`) VALUES + (19, 4, 288, 1, 3, 'Sheriff 2'); +INSERT INTO `job_uniform` (`job_uniform_id`, `job_uniform_job`, `job_uniform_skin`, `job_uniform_enabled`, `job_uniform_minrank`, `job_uniform_name`) VALUES + (20, 4, 265, 1, 0, 'Officer Frank Tenpenny'); +INSERT INTO `job_uniform` (`job_uniform_id`, `job_uniform_job`, `job_uniform_skin`, `job_uniform_enabled`, `job_uniform_minrank`, `job_uniform_name`) VALUES + (21, 4, 266, 1, 0, 'Officer Eddie Pulaski'); +INSERT INTO `job_uniform` (`job_uniform_id`, `job_uniform_job`, `job_uniform_skin`, `job_uniform_enabled`, `job_uniform_minrank`, `job_uniform_name`) VALUES + (22, 4, 267, 1, 0, 'Officer Jimmy Hernandez'); +INSERT INTO `job_uniform` (`job_uniform_id`, `job_uniform_job`, `job_uniform_skin`, `job_uniform_enabled`, `job_uniform_minrank`, `job_uniform_name`) VALUES + (23, 3, -183203150, 1, 0, 'Police Officer 1'); +INSERT INTO `job_uniform` (`job_uniform_id`, `job_uniform_job`, `job_uniform_skin`, `job_uniform_enabled`, `job_uniform_minrank`, `job_uniform_name`) VALUES + (24, 3, -1518937979, 1, 0, 'Police Officer 2'); +INSERT INTO `job_uniform` (`job_uniform_id`, `job_uniform_job`, `job_uniform_skin`, `job_uniform_enabled`, `job_uniform_minrank`, `job_uniform_name`) VALUES + (25, 3, -370395528, 1, 0, 'Fat Police Officer'); +INSERT INTO `job_uniform` (`job_uniform_id`, `job_uniform_job`, `job_uniform_skin`, `job_uniform_enabled`, `job_uniform_minrank`, `job_uniform_name`) VALUES + (26, 3, -999506922, 1, 1, 'Detective 1'); +INSERT INTO `job_uniform` (`job_uniform_id`, `job_uniform_job`, `job_uniform_skin`, `job_uniform_enabled`, `job_uniform_minrank`, `job_uniform_name`) VALUES + (27, 5, 5, 1, 0, 'Paramedic 1'); +INSERT INTO `job_uniform` (`job_uniform_id`, `job_uniform_job`, `job_uniform_skin`, `job_uniform_enabled`, `job_uniform_minrank`, `job_uniform_name`) VALUES + (28, 5, 72, 1, 0, 'Paramedic 2'); +INSERT INTO `job_uniform` (`job_uniform_id`, `job_uniform_job`, `job_uniform_skin`, `job_uniform_enabled`, `job_uniform_minrank`, `job_uniform_name`) VALUES + (29, 5, 73, 1, 0, 'Paramedic 3'); +INSERT INTO `job_uniform` (`job_uniform_id`, `job_uniform_job`, `job_uniform_skin`, `job_uniform_enabled`, `job_uniform_minrank`, `job_uniform_name`) VALUES + (30, 6, 5, 1, 0, 'Paramedic 1'); +INSERT INTO `job_uniform` (`job_uniform_id`, `job_uniform_job`, `job_uniform_skin`, `job_uniform_enabled`, `job_uniform_minrank`, `job_uniform_name`) VALUES + (31, 6, 5, 1, 0, 'Paramedic 1'); +INSERT INTO `job_uniform` (`job_uniform_id`, `job_uniform_job`, `job_uniform_skin`, `job_uniform_enabled`, `job_uniform_minrank`, `job_uniform_name`) VALUES + (32, 7, -1175077216, 1, 0, 'Paramedic 1'); +INSERT INTO `job_uniform` (`job_uniform_id`, `job_uniform_job`, `job_uniform_skin`, `job_uniform_enabled`, `job_uniform_minrank`, `job_uniform_name`) VALUES + (33, 8, 274, 1, 0, 'Paramedic 1'); +INSERT INTO `job_uniform` (`job_uniform_id`, `job_uniform_job`, `job_uniform_skin`, `job_uniform_enabled`, `job_uniform_minrank`, `job_uniform_name`) VALUES + (34, 8, 275, 1, 0, 'Paramedic 2'); +INSERT INTO `job_uniform` (`job_uniform_id`, `job_uniform_job`, `job_uniform_skin`, `job_uniform_enabled`, `job_uniform_minrank`, `job_uniform_name`) VALUES + (35, 8, 276, 1, 0, 'Paramedic 3'); +INSERT INTO `job_uniform` (`job_uniform_id`, `job_uniform_job`, `job_uniform_skin`, `job_uniform_enabled`, `job_uniform_minrank`, `job_uniform_name`) VALUES + (36, 11, -610224615, 1, 0, 'Firefighter'); +INSERT INTO `job_uniform` (`job_uniform_id`, `job_uniform_job`, `job_uniform_skin`, `job_uniform_enabled`, `job_uniform_minrank`, `job_uniform_name`) VALUES + (37, 11, 610888851, 1, 0, 'Fire Chief'); +INSERT INTO `job_uniform` (`job_uniform_id`, `job_uniform_job`, `job_uniform_skin`, `job_uniform_enabled`, `job_uniform_minrank`, `job_uniform_name`) VALUES + (38, 11, 277, 1, 0, 'Firefighter 1'); +INSERT INTO `job_uniform` (`job_uniform_id`, `job_uniform_job`, `job_uniform_skin`, `job_uniform_enabled`, `job_uniform_minrank`, `job_uniform_name`) VALUES + (39, 12, 278, 1, 0, 'Firefighter 2'); +INSERT INTO `job_uniform` (`job_uniform_id`, `job_uniform_job`, `job_uniform_skin`, `job_uniform_enabled`, `job_uniform_minrank`, `job_uniform_name`) VALUES + (40, 12, 279, 1, 0, 'Firefighter 3'); +INSERT INTO `job_uniform` (`job_uniform_id`, `job_uniform_job`, `job_uniform_skin`, `job_uniform_enabled`, `job_uniform_minrank`, `job_uniform_name`) VALUES + (42, 13, 8, 1, 0, 'Taxi Driver 1'); +INSERT INTO `job_uniform` (`job_uniform_id`, `job_uniform_job`, `job_uniform_skin`, `job_uniform_enabled`, `job_uniform_minrank`, `job_uniform_name`) VALUES + (43, 14, 8, 1, 0, 'Taxi Driver 1'); +INSERT INTO `job_uniform` (`job_uniform_id`, `job_uniform_job`, `job_uniform_skin`, `job_uniform_enabled`, `job_uniform_minrank`, `job_uniform_name`) VALUES + (44, 16, 7, 1, 0, 'Taxi Driver 1'); +INSERT INTO `job_uniform` (`job_uniform_id`, `job_uniform_job`, `job_uniform_skin`, `job_uniform_enabled`, `job_uniform_minrank`, `job_uniform_name`) VALUES + (45, 16, 142, 1, 0, 'Taxi Driver 2'); +INSERT INTO `job_uniform` (`job_uniform_id`, `job_uniform_job`, `job_uniform_skin`, `job_uniform_enabled`, `job_uniform_minrank`, `job_uniform_name`) VALUES + (46, 17, 8, 1, 0, 'Bus Driver 1'); +INSERT INTO `job_uniform` (`job_uniform_id`, `job_uniform_job`, `job_uniform_skin`, `job_uniform_enabled`, `job_uniform_minrank`, `job_uniform_name`) VALUES + (47, 18, 8, 1, 0, 'Bus Driver 1'); +INSERT INTO `job_uniform` (`job_uniform_id`, `job_uniform_job`, `job_uniform_skin`, `job_uniform_enabled`, `job_uniform_minrank`, `job_uniform_name`) VALUES + (48, 20, 7, 1, 0, 'Bus Driver 1'); +INSERT INTO `job_uniform` (`job_uniform_id`, `job_uniform_job`, `job_uniform_skin`, `job_uniform_enabled`, `job_uniform_minrank`, `job_uniform_name`) VALUES + (49, 20, 142, 1, 0, 'Bus Driver 2'); +INSERT INTO `job_uniform` (`job_uniform_id`, `job_uniform_job`, `job_uniform_skin`, `job_uniform_enabled`, `job_uniform_minrank`, `job_uniform_name`) VALUES + (50, 21, 53, 1, 0, 'Garbage Collector 1'); +INSERT INTO `job_uniform` (`job_uniform_id`, `job_uniform_job`, `job_uniform_skin`, `job_uniform_enabled`, `job_uniform_minrank`, `job_uniform_name`) VALUES + (51, 21, 54, 1, 0, 'Garbage Collector 2'); +INSERT INTO `job_uniform` (`job_uniform_id`, `job_uniform_job`, `job_uniform_skin`, `job_uniform_enabled`, `job_uniform_minrank`, `job_uniform_name`) VALUES + (52, 22, 53, 1, 0, 'Garbage Collector 1'); +INSERT INTO `job_uniform` (`job_uniform_id`, `job_uniform_job`, `job_uniform_skin`, `job_uniform_enabled`, `job_uniform_minrank`, `job_uniform_name`) VALUES + (53, 22, 54, 1, 0, 'Garbage Collector 2'); +INSERT INTO `job_uniform` (`job_uniform_id`, `job_uniform_job`, `job_uniform_skin`, `job_uniform_enabled`, `job_uniform_minrank`, `job_uniform_name`) VALUES + (54, 24, 16, 1, 0, 'Garbage Collector 1'); +INSERT INTO `job_uniform` (`job_uniform_id`, `job_uniform_job`, `job_uniform_skin`, `job_uniform_enabled`, `job_uniform_minrank`, `job_uniform_name`) VALUES + (55, 23, 1136499716, 1, 0, 'Garbage Collector 1'); +INSERT INTO `job_uniform` (`job_uniform_id`, `job_uniform_job`, `job_uniform_skin`, `job_uniform_enabled`, `job_uniform_minrank`, `job_uniform_name`) VALUES + (56, 19, 134077503, 1, 0, 'Bus Driver 1'); +INSERT INTO `job_uniform` (`job_uniform_id`, `job_uniform_job`, `job_uniform_skin`, `job_uniform_enabled`, `job_uniform_minrank`, `job_uniform_name`) VALUES + (57, 15, 8772846, 1, 0, 'Taxi Driver 1'); +INSERT INTO `job_uniform` (`job_uniform_id`, `job_uniform_job`, `job_uniform_skin`, `job_uniform_enabled`, `job_uniform_minrank`, `job_uniform_name`) VALUES + (58, 3, -89302119, 1, 3, 'State Trooper'); +INSERT INTO `job_uniform` (`job_uniform_id`, `job_uniform_job`, `job_uniform_skin`, `job_uniform_enabled`, `job_uniform_minrank`, `job_uniform_name`) VALUES + (59, 3, -1004762946, 1, 2, 'SWAT'); +INSERT INTO `job_uniform` (`job_uniform_id`, `job_uniform_job`, `job_uniform_skin`, `job_uniform_enabled`, `job_uniform_minrank`, `job_uniform_name`) VALUES + (60, 2, 166, 1, 0, 'Officer Tommy Vercetti'); +INSERT INTO `job_uniform` (`job_uniform_id`, `job_uniform_job`, `job_uniform_skin`, `job_uniform_enabled`, `job_uniform_minrank`, `job_uniform_name`) VALUES + (61, 9, 6, 1, 0, 'Firefighter'); +/*!40000 ALTER TABLE `job_uniform` ENABLE KEYS */; + +-- Dumping structure for table db24053.job_wl +CREATE TABLE IF NOT EXISTS `job_wl` ( + `job_wl_id` int(11) NOT NULL AUTO_INCREMENT, + `job_wl_job` int(11) NOT NULL DEFAULT '0', + `job_wl_sacct` int(11) NOT NULL DEFAULT '0', + `job_wl_who_added` int(11) NOT NULL DEFAULT '0', + `job_wl_when_added` int(11) NOT NULL DEFAULT '0', + `job_wl_enabled` int(11) NOT NULL DEFAULT '1', + PRIMARY KEY (`job_wl_id`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Jobs - Whitelist'; + +-- Dumping data for table db24053.job_wl: ~0 rows (approximately) +/*!40000 ALTER TABLE `job_wl` DISABLE KEYS */; +/*!40000 ALTER TABLE `job_wl` ENABLE KEYS */; + +-- Dumping structure for table db24053.log_admin +CREATE TABLE IF NOT EXISTS `log_admin` ( + `log_admin_id` int(11) NOT NULL AUTO_INCREMENT, + `log_admin_target` int(11) NOT NULL DEFAULT '0', + `log_admin_msg` varchar(128) NOT NULL DEFAULT '', + `log_admin_type` int(11) NOT NULL DEFAULT '0', + `log_admin_admin` int(11) NOT NULL DEFAULT '0', + `log_admin_timestamp` int(32) NOT NULL DEFAULT '0', + PRIMARY KEY (`log_admin_id`) +) ENGINE=InnoDB DEFAULT CHARSET=latin1 COMMENT='Log - Admin Actions'; + +-- Dumping data for table db24053.log_admin: ~0 rows (approximately) +/*!40000 ALTER TABLE `log_admin` DISABLE KEYS */; +/*!40000 ALTER TABLE `log_admin` ENABLE KEYS */; + +-- Dumping structure for table db24053.log_chat +CREATE TABLE IF NOT EXISTS `log_chat` ( + `log_chat_id` int(11) NOT NULL AUTO_INCREMENT, + `log_chat_server` int(11) NOT NULL DEFAULT '0', + `log_chat_sacct` int(11) NOT NULL DEFAULT '0', + `log_chat_type` int(11) NOT NULL DEFAULT '0', + `log_chat_msg` varchar(128) NOT NULL DEFAULT '', + `log_chat_timestamp` int(32) NOT NULL DEFAULT '0', + PRIMARY KEY (`log_chat_id`) +) ENGINE=InnoDB DEFAULT CHARSET=latin1 COMMENT='Log - Game Chat'; + +-- Dumping data for table db24053.log_chat: ~0 rows (approximately) +/*!40000 ALTER TABLE `log_chat` DISABLE KEYS */; +/*!40000 ALTER TABLE `log_chat` ENABLE KEYS */; + +-- Dumping structure for table db24053.log_conn +CREATE TABLE IF NOT EXISTS `log_conn` ( + `log_conn_id` int(11) NOT NULL AUTO_INCREMENT, + `log_conn_name` varchar(64) NOT NULL DEFAULT 'Unknown', + `log_conn_server` int(11) NOT NULL DEFAULT '0', + `log_conn_ip` int(11) NOT NULL DEFAULT '0', + `log_conn_when_connect` int(32) NOT NULL DEFAULT '0', + `log_conn_when_disconnect` int(32) NOT NULL DEFAULT '0', + `log_conn_gameversion` int(11) NOT NULL DEFAULT '0', + PRIMARY KEY (`log_conn_id`) +) ENGINE=InnoDB DEFAULT CHARSET=latin1 COMMENT='Log - Connections'; + +-- Dumping data for table db24053.log_conn: ~0 rows (approximately) +/*!40000 ALTER TABLE `log_conn` DISABLE KEYS */; +/*!40000 ALTER TABLE `log_conn` ENABLE KEYS */; + +-- Dumping structure for table db24053.log_death +CREATE TABLE IF NOT EXISTS `log_death` ( + `log_death_id` int(11) NOT NULL AUTO_INCREMENT, + `log_death_server` int(11) NOT NULL DEFAULT '0', + `log_death_who_died` int(11) NOT NULL DEFAULT '0', + `log_death_who_killed` int(11) NOT NULL DEFAULT '0', + `log_death_timestamp` int(32) NOT NULL DEFAULT '0', + `log_death_pedpiece` int(11) NOT NULL DEFAULT '0', + `log_death_weapon` int(11) NOT NULL DEFAULT '0', + PRIMARY KEY (`log_death_id`) +) ENGINE=InnoDB DEFAULT CHARSET=latin1 COMMENT='Log - Deaths'; + +-- Dumping data for table db24053.log_death: ~0 rows (approximately) +/*!40000 ALTER TABLE `log_death` DISABLE KEYS */; +/*!40000 ALTER TABLE `log_death` ENABLE KEYS */; + +-- Dumping structure for table db24053.log_pns +CREATE TABLE IF NOT EXISTS `log_pns` ( + `log_pns_id` int(11) NOT NULL AUTO_INCREMENT, + `log_pns_pns` int(11) DEFAULT '0', + `log_pns_when_used` int(32) DEFAULT '0', + `log_pns_conn` int(11) DEFAULT '0', + `log_pns_veh` int(11) DEFAULT '0', + `log_pns_action` float DEFAULT '0', + `log_pns_paid` int(11) DEFAULT '0', + `log_pns_detail` int(11) DEFAULT '0', + PRIMARY KEY (`log_pns_id`) +) ENGINE=InnoDB DEFAULT CHARSET=latin1 COMMENT='Log - Pay and Spray'; + +-- Dumping data for table db24053.log_pns: ~0 rows (approximately) +/*!40000 ALTER TABLE `log_pns` DISABLE KEYS */; +/*!40000 ALTER TABLE `log_pns` ENABLE KEYS */; + +-- Dumping structure for table db24053.npc_cond +CREATE TABLE IF NOT EXISTS `npc_cond` ( + `npc_cond_id` int(11) NOT NULL AUTO_INCREMENT, + `npc_cond_npc` int(11) NOT NULL DEFAULT '0', + `npc_cond_trig` int(11) NOT NULL DEFAULT '0', + `npc_cond_type` int(11) NOT NULL DEFAULT '0', + `npc_cond_data` varchar(11) NOT NULL DEFAULT '0', + `npc_cond_logic` varchar(11) NOT NULL DEFAULT '0', + `npc_cond_enabled` tinyint(1) NOT NULL DEFAULT '1', + PRIMARY KEY (`npc_cond_id`) +) ENGINE=InnoDB DEFAULT CHARSET=latin1 COMMENT='NPCs - Action Conditions'; + +-- Dumping data for table db24053.npc_cond: ~0 rows (approximately) +/*!40000 ALTER TABLE `npc_cond` DISABLE KEYS */; +/*!40000 ALTER TABLE `npc_cond` ENABLE KEYS */; + +-- Dumping structure for table db24053.npc_main +CREATE TABLE IF NOT EXISTS `npc_main` ( + `npc_id` int(11) NOT NULL AUTO_INCREMENT, + `npc_server` tinyint(2) NOT NULL DEFAULT '0', + `npc_name` varchar(128) NOT NULL DEFAULT '', + `npc_model` int(11) NOT NULL DEFAULT '0', + `npc_type_flags` int(32) NOT NULL DEFAULT '0', + `npc_ped_health` int(4) NOT NULL DEFAULT '100', + `npc_ped_armour` int(4) NOT NULL DEFAULT '0', + `npc_ped_threats` int(32) NOT NULL DEFAULT '0', + `npc_ped_heedthreats` tinyint(1) NOT NULL DEFAULT '0', + `npc_ped_stay` tinyint(1) NOT NULL DEFAULT '1', + `npc_ped_walkstyle` int(11) NOT NULL DEFAULT '0', + `npc_owner_type` int(11) DEFAULT NULL, + `npc_owner_id` int(11) DEFAULT NULL, + PRIMARY KEY (`npc_id`) +) ENGINE=InnoDB DEFAULT CHARSET=latin1 COMMENT='NPCs'; + +-- Dumping data for table db24053.npc_main: ~0 rows (approximately) +/*!40000 ALTER TABLE `npc_main` DISABLE KEYS */; +/*!40000 ALTER TABLE `npc_main` ENABLE KEYS */; + +-- Dumping structure for table db24053.npc_resp +CREATE TABLE IF NOT EXISTS `npc_resp` ( + `npc_resp_id` int(11) NOT NULL AUTO_INCREMENT, + `npc_resp_npc` int(11) NOT NULL DEFAULT '0', + `npc_resp_type` int(11) NOT NULL DEFAULT '0', + `npc_resp_trig` int(11) NOT NULL DEFAULT '0', + `npc_resp_data` varchar(11) NOT NULL DEFAULT '0', + `npc_resp_logic` varchar(11) NOT NULL DEFAULT '0', + `npc_resp_enabled` tinyint(1) NOT NULL DEFAULT '1', + PRIMARY KEY (`npc_resp_id`) +) ENGINE=InnoDB DEFAULT CHARSET=latin1 COMMENT='NPCs - Action Responses'; + +-- Dumping data for table db24053.npc_resp: ~0 rows (approximately) +/*!40000 ALTER TABLE `npc_resp` DISABLE KEYS */; +/*!40000 ALTER TABLE `npc_resp` ENABLE KEYS */; + +-- Dumping structure for table db24053.npc_trig +CREATE TABLE IF NOT EXISTS `npc_trig` ( + `npc_trig_id` int(11) NOT NULL AUTO_INCREMENT, + `npc_trig_npc` int(11) NOT NULL DEFAULT '0', + `npc_trig_type` int(11) NOT NULL DEFAULT '0', + `npc_trig_enabled` tinyint(1) NOT NULL DEFAULT '1', + PRIMARY KEY (`npc_trig_id`) +) ENGINE=InnoDB DEFAULT CHARSET=latin1 COMMENT='NPCs - Action Triggers'; + +-- Dumping data for table db24053.npc_trig: ~0 rows (approximately) +/*!40000 ALTER TABLE `npc_trig` DISABLE KEYS */; +/*!40000 ALTER TABLE `npc_trig` ENABLE KEYS */; + +-- Dumping structure for table db24053.sacct_main +CREATE TABLE IF NOT EXISTS `sacct_main` ( + `sacct_id` int(11) NOT NULL AUTO_INCREMENT, + `sacct_acct` int(11) NOT NULL DEFAULT '0', + `sacct_server` int(11) NOT NULL DEFAULT '0', + `sacct_name_first` varchar(50) NOT NULL DEFAULT '', + `sacct_name_last` varchar(50) NOT NULL DEFAULT '', + `sacct_name_middle` varchar(50) NOT NULL DEFAULT '', + `sacct_when_born` varchar(50) NOT NULL DEFAULT '', + `sacct_origin` varchar(50) NOT NULL DEFAULT '', + `sacct_job` int(11) NOT NULL DEFAULT '0', + `sacct_clan` int(11) NOT NULL DEFAULT '0', + `sacct_clan_rank` int(11) NOT NULL DEFAULT '0', + `sacct_clan_flags` int(11) NOT NULL DEFAULT '0', + `sacct_clan_title` varchar(32) NOT NULL DEFAULT '', + `sacct_last_ip` int(11) NOT NULL DEFAULT '0', + `sacct_last_uid` varchar(128) NOT NULL DEFAULT '', + `sacct_total_time` int(11) NOT NULL DEFAULT '0', + `sacct_pos_x` float NOT NULL DEFAULT '0', + `sacct_pos_y` float NOT NULL DEFAULT '0', + `sacct_pos_z` float NOT NULL DEFAULT '0', + `sacct_angle` float NOT NULL DEFAULT '0', + `sacct_cash` int(11) NOT NULL DEFAULT '0', + `sacct_bank` int(11) NOT NULL DEFAULT '0', + `sacct_skin` int(11) NOT NULL DEFAULT '0', + `sacct_health` int(11) NOT NULL DEFAULT '0', + `sacct_armour` int(11) NOT NULL DEFAULT '0', + `sacct_licenses` int(11) NOT NULL DEFAULT '0', + `sacct_last_session` int(11) NOT NULL DEFAULT '0', + `sacct_when_made` int(11) NOT NULL DEFAULT '0', + `sacct_when_lastlogin` int(11) NOT NULL DEFAULT '0', + `sacct_arrest_state` int(11) NOT NULL DEFAULT '0', + `sacct_arrest_time` int(11) NOT NULL DEFAULT '0', + `sacct_iv_head_model` int(11) NOT NULL DEFAULT '0', + `sacct_iv_head_texture` int(11) NOT NULL DEFAULT '0', + `sacct_iv_upper_model` int(11) NOT NULL DEFAULT '0', + `sacct_iv_upper_texture` int(11) NOT NULL DEFAULT '0', + `sacct_iv_lower_model` int(11) NOT NULL DEFAULT '0', + `sacct_iv_lower_texture` int(11) NOT NULL DEFAULT '0', + `sacct_iv_feet_model` int(11) NOT NULL DEFAULT '0', + `sacct_iv_feet_texture` int(11) NOT NULL DEFAULT '0', + `sacct_iv_hands_model` int(11) NOT NULL DEFAULT '0', + `sacct_iv_hands_texture` int(11) NOT NULL DEFAULT '0', + `sacct_int` int(11) NOT NULL DEFAULT '0', + `sacct_vw` int(11) NOT NULL DEFAULT '0', + `sacct_needs_setup` int(11) NOT NULL DEFAULT '0', + PRIMARY KEY (`sacct_id`) +) ENGINE=InnoDB AUTO_INCREMENT=20 DEFAULT CHARSET=latin1 COMMENT='Sub Accounts (Characters)'; + +-- Dumping data for table db24053.sacct_main: ~13 rows (approximately) +/*!40000 ALTER TABLE `sacct_main` DISABLE KEYS */; +INSERT INTO `sacct_main` (`sacct_id`, `sacct_acct`, `sacct_server`, `sacct_name_first`, `sacct_name_last`, `sacct_name_middle`, `sacct_when_born`, `sacct_origin`, `sacct_job`, `sacct_clan`, `sacct_clan_rank`, `sacct_clan_flags`, `sacct_clan_title`, `sacct_last_ip`, `sacct_last_uid`, `sacct_total_time`, `sacct_pos_x`, `sacct_pos_y`, `sacct_pos_z`, `sacct_angle`, `sacct_cash`, `sacct_bank`, `sacct_skin`, `sacct_health`, `sacct_armour`, `sacct_licenses`, `sacct_last_session`, `sacct_when_made`, `sacct_when_lastlogin`, `sacct_arrest_state`, `sacct_arrest_time`, `sacct_iv_head_model`, `sacct_iv_head_texture`, `sacct_iv_upper_model`, `sacct_iv_upper_texture`, `sacct_iv_lower_model`, `sacct_iv_lower_texture`, `sacct_iv_feet_model`, `sacct_iv_feet_texture`, `sacct_iv_hands_model`, `sacct_iv_hands_texture`, `sacct_int`, `sacct_vw`, `sacct_needs_setup`) VALUES + (1, 1, 1, 'Ryan', 'Stokes', '', '1/1/2019', 'San Andreas', 17, 0, 0, 0, '', 0, '', 0, -67.1901, -350.717, 16.1682, 0.00178794, 3500, 0, 109, 100, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `sacct_main` (`sacct_id`, `sacct_acct`, `sacct_server`, `sacct_name_first`, `sacct_name_last`, `sacct_name_middle`, `sacct_when_born`, `sacct_origin`, `sacct_job`, `sacct_clan`, `sacct_clan_rank`, `sacct_clan_flags`, `sacct_clan_title`, `sacct_last_ip`, `sacct_last_uid`, `sacct_total_time`, `sacct_pos_x`, `sacct_pos_y`, `sacct_pos_z`, `sacct_angle`, `sacct_cash`, `sacct_bank`, `sacct_skin`, `sacct_health`, `sacct_armour`, `sacct_licenses`, `sacct_last_session`, `sacct_when_made`, `sacct_when_lastlogin`, `sacct_arrest_state`, `sacct_arrest_time`, `sacct_iv_head_model`, `sacct_iv_head_texture`, `sacct_iv_upper_model`, `sacct_iv_upper_texture`, `sacct_iv_lower_model`, `sacct_iv_lower_texture`, `sacct_iv_feet_model`, `sacct_iv_feet_texture`, `sacct_iv_hands_model`, `sacct_iv_hands_texture`, `sacct_int`, `sacct_vw`, `sacct_needs_setup`) VALUES + (2, 1, 3, 'Takeshi', 'Mikio', '', '01/01/1901', 'Liberty City', 0, 0, 0, 0, '', 0, '', 0, 2333.75, 332.785, 6.08384, 3.02664, 1000, 0, -2020305438, 100, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `sacct_main` (`sacct_id`, `sacct_acct`, `sacct_server`, `sacct_name_first`, `sacct_name_last`, `sacct_name_middle`, `sacct_when_born`, `sacct_origin`, `sacct_job`, `sacct_clan`, `sacct_clan_rank`, `sacct_clan_flags`, `sacct_clan_title`, `sacct_last_ip`, `sacct_last_uid`, `sacct_total_time`, `sacct_pos_x`, `sacct_pos_y`, `sacct_pos_z`, `sacct_angle`, `sacct_cash`, `sacct_bank`, `sacct_skin`, `sacct_health`, `sacct_armour`, `sacct_licenses`, `sacct_last_session`, `sacct_when_made`, `sacct_when_lastlogin`, `sacct_arrest_state`, `sacct_arrest_time`, `sacct_iv_head_model`, `sacct_iv_head_texture`, `sacct_iv_upper_model`, `sacct_iv_upper_texture`, `sacct_iv_lower_model`, `sacct_iv_lower_texture`, `sacct_iv_feet_model`, `sacct_iv_feet_texture`, `sacct_iv_hands_model`, `sacct_iv_hands_texture`, `sacct_int`, `sacct_vw`, `sacct_needs_setup`) VALUES + (3, 1, 2, 'Ryan', 'Nashton', '', '12/7/1990', 'Los Santos', 2, 0, 0, 0, '', 0, '', 0, -787.082, -1216, 11.1038, 0.991895, 1000, 0, 181, 100, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `sacct_main` (`sacct_id`, `sacct_acct`, `sacct_server`, `sacct_name_first`, `sacct_name_last`, `sacct_name_middle`, `sacct_when_born`, `sacct_origin`, `sacct_job`, `sacct_clan`, `sacct_clan_rank`, `sacct_clan_flags`, `sacct_clan_title`, `sacct_last_ip`, `sacct_last_uid`, `sacct_total_time`, `sacct_pos_x`, `sacct_pos_y`, `sacct_pos_z`, `sacct_angle`, `sacct_cash`, `sacct_bank`, `sacct_skin`, `sacct_health`, `sacct_armour`, `sacct_licenses`, `sacct_last_session`, `sacct_when_made`, `sacct_when_lastlogin`, `sacct_arrest_state`, `sacct_arrest_time`, `sacct_iv_head_model`, `sacct_iv_head_texture`, `sacct_iv_upper_model`, `sacct_iv_upper_texture`, `sacct_iv_lower_model`, `sacct_iv_lower_texture`, `sacct_iv_feet_model`, `sacct_iv_feet_texture`, `sacct_iv_hands_model`, `sacct_iv_hands_texture`, `sacct_int`, `sacct_vw`, `sacct_needs_setup`) VALUES + (4, 1, 4, 'Tom', 'Willard', '', '01/01/1901', 'Liberty City', 4, 0, 0, 0, '', 0, '', 0, 1172.07, -1318.89, 15.3932, 1.5, 150, 0, 171, 100, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `sacct_main` (`sacct_id`, `sacct_acct`, `sacct_server`, `sacct_name_first`, `sacct_name_last`, `sacct_name_middle`, `sacct_when_born`, `sacct_origin`, `sacct_job`, `sacct_clan`, `sacct_clan_rank`, `sacct_clan_flags`, `sacct_clan_title`, `sacct_last_ip`, `sacct_last_uid`, `sacct_total_time`, `sacct_pos_x`, `sacct_pos_y`, `sacct_pos_z`, `sacct_angle`, `sacct_cash`, `sacct_bank`, `sacct_skin`, `sacct_health`, `sacct_armour`, `sacct_licenses`, `sacct_last_session`, `sacct_when_made`, `sacct_when_lastlogin`, `sacct_arrest_state`, `sacct_arrest_time`, `sacct_iv_head_model`, `sacct_iv_head_texture`, `sacct_iv_upper_model`, `sacct_iv_upper_texture`, `sacct_iv_lower_model`, `sacct_iv_lower_texture`, `sacct_iv_feet_model`, `sacct_iv_feet_texture`, `sacct_iv_hands_model`, `sacct_iv_hands_texture`, `sacct_int`, `sacct_vw`, `sacct_needs_setup`) VALUES + (5, 1, 2, 'Tony', 'Martinelli', '', '1/1/2019', 'Los Santos', 0, 0, 0, 0, '', 0, '', 0, -985.508, -888.712, 12.9634, 0.768961, 1000, 0, 0, 100, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `sacct_main` (`sacct_id`, `sacct_acct`, `sacct_server`, `sacct_name_first`, `sacct_name_last`, `sacct_name_middle`, `sacct_when_born`, `sacct_origin`, `sacct_job`, `sacct_clan`, `sacct_clan_rank`, `sacct_clan_flags`, `sacct_clan_title`, `sacct_last_ip`, `sacct_last_uid`, `sacct_total_time`, `sacct_pos_x`, `sacct_pos_y`, `sacct_pos_z`, `sacct_angle`, `sacct_cash`, `sacct_bank`, `sacct_skin`, `sacct_health`, `sacct_armour`, `sacct_licenses`, `sacct_last_session`, `sacct_when_made`, `sacct_when_lastlogin`, `sacct_arrest_state`, `sacct_arrest_time`, `sacct_iv_head_model`, `sacct_iv_head_texture`, `sacct_iv_upper_model`, `sacct_iv_upper_texture`, `sacct_iv_lower_model`, `sacct_iv_lower_texture`, `sacct_iv_feet_model`, `sacct_iv_feet_texture`, `sacct_iv_hands_model`, `sacct_iv_hands_texture`, `sacct_int`, `sacct_vw`, `sacct_needs_setup`) VALUES + (6, 1, 4, 'Paul', 'Wilson', '', '01/01/1901', 'Liberty City', 0, 0, 0, 0, '', 0, '', 0, 1632.49, -2331.96, 13.547, -0.005, 1000, 0, 26, 100, 0, 0, 0, 1608269983, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `sacct_main` (`sacct_id`, `sacct_acct`, `sacct_server`, `sacct_name_first`, `sacct_name_last`, `sacct_name_middle`, `sacct_when_born`, `sacct_origin`, `sacct_job`, `sacct_clan`, `sacct_clan_rank`, `sacct_clan_flags`, `sacct_clan_title`, `sacct_last_ip`, `sacct_last_uid`, `sacct_total_time`, `sacct_pos_x`, `sacct_pos_y`, `sacct_pos_z`, `sacct_angle`, `sacct_cash`, `sacct_bank`, `sacct_skin`, `sacct_health`, `sacct_armour`, `sacct_licenses`, `sacct_last_session`, `sacct_when_made`, `sacct_when_lastlogin`, `sacct_arrest_state`, `sacct_arrest_time`, `sacct_iv_head_model`, `sacct_iv_head_texture`, `sacct_iv_upper_model`, `sacct_iv_upper_texture`, `sacct_iv_lower_model`, `sacct_iv_lower_texture`, `sacct_iv_feet_model`, `sacct_iv_feet_texture`, `sacct_iv_hands_model`, `sacct_iv_hands_texture`, `sacct_int`, `sacct_vw`, `sacct_needs_setup`) VALUES + (11, 2, 4, 'Maxle', 'Face', '', '01/01/1901', 'Liberty City', 4, 0, 0, 0, '', 0, '', 0, 1484.96, -1633.34, 14.1484, -2.89304, 1000, 0, 26, 100, 0, 0, 0, 1608346070, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `sacct_main` (`sacct_id`, `sacct_acct`, `sacct_server`, `sacct_name_first`, `sacct_name_last`, `sacct_name_middle`, `sacct_when_born`, `sacct_origin`, `sacct_job`, `sacct_clan`, `sacct_clan_rank`, `sacct_clan_flags`, `sacct_clan_title`, `sacct_last_ip`, `sacct_last_uid`, `sacct_total_time`, `sacct_pos_x`, `sacct_pos_y`, `sacct_pos_z`, `sacct_angle`, `sacct_cash`, `sacct_bank`, `sacct_skin`, `sacct_health`, `sacct_armour`, `sacct_licenses`, `sacct_last_session`, `sacct_when_made`, `sacct_when_lastlogin`, `sacct_arrest_state`, `sacct_arrest_time`, `sacct_iv_head_model`, `sacct_iv_head_texture`, `sacct_iv_upper_model`, `sacct_iv_upper_texture`, `sacct_iv_lower_model`, `sacct_iv_lower_texture`, `sacct_iv_feet_model`, `sacct_iv_feet_texture`, `sacct_iv_hands_model`, `sacct_iv_hands_texture`, `sacct_int`, `sacct_vw`, `sacct_needs_setup`) VALUES + (12, 2, 1, 'Max', 'Axleface', '', '21/2/1976', 'Los Santos', 17, 0, 0, 0, '', 0, '', 0, -817.234, -148.18, 33.8613, -0.680817, 1000, 0, 57, 100, 0, 0, 0, 1608835004, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `sacct_main` (`sacct_id`, `sacct_acct`, `sacct_server`, `sacct_name_first`, `sacct_name_last`, `sacct_name_middle`, `sacct_when_born`, `sacct_origin`, `sacct_job`, `sacct_clan`, `sacct_clan_rank`, `sacct_clan_flags`, `sacct_clan_title`, `sacct_last_ip`, `sacct_last_uid`, `sacct_total_time`, `sacct_pos_x`, `sacct_pos_y`, `sacct_pos_z`, `sacct_angle`, `sacct_cash`, `sacct_bank`, `sacct_skin`, `sacct_health`, `sacct_armour`, `sacct_licenses`, `sacct_last_session`, `sacct_when_made`, `sacct_when_lastlogin`, `sacct_arrest_state`, `sacct_arrest_time`, `sacct_iv_head_model`, `sacct_iv_head_texture`, `sacct_iv_upper_model`, `sacct_iv_upper_texture`, `sacct_iv_lower_model`, `sacct_iv_lower_texture`, `sacct_iv_feet_model`, `sacct_iv_feet_texture`, `sacct_iv_hands_model`, `sacct_iv_hands_texture`, `sacct_int`, `sacct_vw`, `sacct_needs_setup`) VALUES + (13, 7, 1, 'Luigi', 'Santorino', '', '1/4/1987', 'Las Venturas', 17, 0, 0, 0, '', 0, '', 0, 836.584, -736.133, 14.4484, -0.00203527, 1000, 0, 119, 100, 0, 0, 0, 1609095921, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `sacct_main` (`sacct_id`, `sacct_acct`, `sacct_server`, `sacct_name_first`, `sacct_name_last`, `sacct_name_middle`, `sacct_when_born`, `sacct_origin`, `sacct_job`, `sacct_clan`, `sacct_clan_rank`, `sacct_clan_flags`, `sacct_clan_title`, `sacct_last_ip`, `sacct_last_uid`, `sacct_total_time`, `sacct_pos_x`, `sacct_pos_y`, `sacct_pos_z`, `sacct_angle`, `sacct_cash`, `sacct_bank`, `sacct_skin`, `sacct_health`, `sacct_armour`, `sacct_licenses`, `sacct_last_session`, `sacct_when_made`, `sacct_when_lastlogin`, `sacct_arrest_state`, `sacct_arrest_time`, `sacct_iv_head_model`, `sacct_iv_head_texture`, `sacct_iv_upper_model`, `sacct_iv_upper_texture`, `sacct_iv_lower_model`, `sacct_iv_lower_texture`, `sacct_iv_feet_model`, `sacct_iv_feet_texture`, `sacct_iv_hands_model`, `sacct_iv_hands_texture`, `sacct_int`, `sacct_vw`, `sacct_needs_setup`) VALUES + (14, 7, 1, 'Mickey', 'Santorino', '', '1/1/2020', 'Vice City', 17, 0, 0, 0, '', 0, '', 0, 839.948, -307.534, 6.19376, -3.10991, 1000, 0, 119, 100, 0, 0, 0, 1609096733, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `sacct_main` (`sacct_id`, `sacct_acct`, `sacct_server`, `sacct_name_first`, `sacct_name_last`, `sacct_name_middle`, `sacct_when_born`, `sacct_origin`, `sacct_job`, `sacct_clan`, `sacct_clan_rank`, `sacct_clan_flags`, `sacct_clan_title`, `sacct_last_ip`, `sacct_last_uid`, `sacct_total_time`, `sacct_pos_x`, `sacct_pos_y`, `sacct_pos_z`, `sacct_angle`, `sacct_cash`, `sacct_bank`, `sacct_skin`, `sacct_health`, `sacct_armour`, `sacct_licenses`, `sacct_last_session`, `sacct_when_made`, `sacct_when_lastlogin`, `sacct_arrest_state`, `sacct_arrest_time`, `sacct_iv_head_model`, `sacct_iv_head_texture`, `sacct_iv_upper_model`, `sacct_iv_upper_texture`, `sacct_iv_lower_model`, `sacct_iv_lower_texture`, `sacct_iv_feet_model`, `sacct_iv_feet_texture`, `sacct_iv_hands_model`, `sacct_iv_hands_texture`, `sacct_int`, `sacct_vw`, `sacct_needs_setup`) VALUES + (15, 7, 1, 'Tony', 'Santorino', '', '1/1/2018', 'Los Santos', 0, 0, 0, 0, '', 0, '', 0, 1038.59, -661.753, 14.9727, -0.0113098, 1000, 0, 119, 100, 0, 0, 0, 1609096792, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `sacct_main` (`sacct_id`, `sacct_acct`, `sacct_server`, `sacct_name_first`, `sacct_name_last`, `sacct_name_middle`, `sacct_when_born`, `sacct_origin`, `sacct_job`, `sacct_clan`, `sacct_clan_rank`, `sacct_clan_flags`, `sacct_clan_title`, `sacct_last_ip`, `sacct_last_uid`, `sacct_total_time`, `sacct_pos_x`, `sacct_pos_y`, `sacct_pos_z`, `sacct_angle`, `sacct_cash`, `sacct_bank`, `sacct_skin`, `sacct_health`, `sacct_armour`, `sacct_licenses`, `sacct_last_session`, `sacct_when_made`, `sacct_when_lastlogin`, `sacct_arrest_state`, `sacct_arrest_time`, `sacct_iv_head_model`, `sacct_iv_head_texture`, `sacct_iv_upper_model`, `sacct_iv_upper_texture`, `sacct_iv_lower_model`, `sacct_iv_lower_texture`, `sacct_iv_feet_model`, `sacct_iv_feet_texture`, `sacct_iv_hands_model`, `sacct_iv_hands_texture`, `sacct_int`, `sacct_vw`, `sacct_needs_setup`) VALUES + (18, 2, 2, 'Maaaaaaaaaax', 'face', '', '6/9/1969', 'Los Santos', 0, 0, 0, 0, '', 0, '', 0, -704.206, 180.381, 11.0712, 1.81422, 1000, 0, 96, 100, 0, 0, 0, 1609207678, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `sacct_main` (`sacct_id`, `sacct_acct`, `sacct_server`, `sacct_name_first`, `sacct_name_last`, `sacct_name_middle`, `sacct_when_born`, `sacct_origin`, `sacct_job`, `sacct_clan`, `sacct_clan_rank`, `sacct_clan_flags`, `sacct_clan_title`, `sacct_last_ip`, `sacct_last_uid`, `sacct_total_time`, `sacct_pos_x`, `sacct_pos_y`, `sacct_pos_z`, `sacct_angle`, `sacct_cash`, `sacct_bank`, `sacct_skin`, `sacct_health`, `sacct_armour`, `sacct_licenses`, `sacct_last_session`, `sacct_when_made`, `sacct_when_lastlogin`, `sacct_arrest_state`, `sacct_arrest_time`, `sacct_iv_head_model`, `sacct_iv_head_texture`, `sacct_iv_upper_model`, `sacct_iv_upper_texture`, `sacct_iv_lower_model`, `sacct_iv_lower_texture`, `sacct_iv_feet_model`, `sacct_iv_feet_texture`, `sacct_iv_hands_model`, `sacct_iv_hands_texture`, `sacct_int`, `sacct_vw`, `sacct_needs_setup`) VALUES + (19, 2, 2, 'Maximillian', 'Faceworth', '', '6/9/1969', 'Los Santos', 18, 0, 0, 0, '', 0, '', 0, -852.952, -564.247, 12.1422, 0.09868, 1000, 0, 156, 100, 0, 0, 0, 1609207734, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +/*!40000 ALTER TABLE `sacct_main` ENABLE KEYS */; + +-- Dumping structure for table db24053.sacct_pay +CREATE TABLE IF NOT EXISTS `sacct_pay` ( + `sacct_pay_id` int(11) NOT NULL AUTO_INCREMENT, + `sacct_pay_server` int(11) NOT NULL DEFAULT '0', + `sacct_pay_from_sacct_id` int(11) NOT NULL DEFAULT '0', + `sacct_pay_to_sacct_id` int(11) NOT NULL DEFAULT '0', + `sacct_pay_amount` int(11) NOT NULL DEFAULT '0', + `sacct_pay_when` int(32) NOT NULL DEFAULT '0', + `sacct_pay_pos_x` float NOT NULL DEFAULT '0', + `sacct_pay_pos_y` float NOT NULL DEFAULT '0', + `sacct_pay_pos_z` float NOT NULL DEFAULT '0', + PRIMARY KEY (`sacct_pay_id`) +) ENGINE=InnoDB DEFAULT CHARSET=latin1 COMMENT='Sub Accounts - Cash Exchanges'; + +-- Dumping data for table db24053.sacct_pay: ~0 rows (approximately) +/*!40000 ALTER TABLE `sacct_pay` DISABLE KEYS */; +/*!40000 ALTER TABLE `sacct_pay` ENABLE KEYS */; + +-- Dumping structure for table db24053.sacct_stat +CREATE TABLE IF NOT EXISTS `sacct_stat` ( + `sacct_stat_id` int(32) NOT NULL DEFAULT '0', + `sacct_stat_sacct` int(32) NOT NULL DEFAULT '0', + `sacct_stat_max_kill_streak` int(32) NOT NULL DEFAULT '0', + `sacct_stat_furthest_headshot` float NOT NULL DEFAULT '0', + `sacct_stat_packages_picked` int(32) NOT NULL DEFAULT '0', + `sacct_stat_health_picked` int(32) NOT NULL DEFAULT '0', + `sacct_stat_weapons_picked` int(32) NOT NULL DEFAULT '0', + `sacct_stat_armour_picked` int(32) NOT NULL DEFAULT '0', + `sacct_stat_distance_foot` float NOT NULL DEFAULT '0', + `sacct_stat_distance_car` float NOT NULL DEFAULT '0', + `sacct_stat_distance_boat` float NOT NULL DEFAULT '0', + `sacct_stat_distance_plane` float NOT NULL DEFAULT '0', + `sacct_stat_longest_server_time` int(32) NOT NULL DEFAULT '0', + `sacct_stat_veh_resprays` int(32) NOT NULL DEFAULT '0', + `sacct_stat_wanted_veh_resprays` int(32) NOT NULL DEFAULT '0', + `sacct_stat_spent_on_weapons` int(32) NOT NULL DEFAULT '0', + `sacct_stat_weapons_purchased` int(32) NOT NULL DEFAULT '0', + `sacct_stat_businesses_purchased` int(32) NOT NULL DEFAULT '0', + `sacct_stat_houses_purchased` int(32) NOT NULL DEFAULT '0', + `sacct_stat_times_busted` int(32) NOT NULL DEFAULT '0', + `sacct_stat_stars_obtained` int(32) NOT NULL DEFAULT '0', + `sacct_stat_stars_evaded` int(32) NOT NULL DEFAULT '0', + `sacct_stat_highest_wanted_level` int(32) NOT NULL DEFAULT '0', + PRIMARY KEY (`sacct_stat_id`) +) ENGINE=InnoDB DEFAULT CHARSET=latin1 COMMENT='Subaccounts - Stats'; + +-- Dumping data for table db24053.sacct_stat: ~0 rows (approximately) +/*!40000 ALTER TABLE `sacct_stat` DISABLE KEYS */; +/*!40000 ALTER TABLE `sacct_stat` ENABLE KEYS */; + +-- Dumping structure for table db24053.sus_main +CREATE TABLE IF NOT EXISTS `sus_main` ( + `sus_id` int(11) NOT NULL AUTO_INCREMENT, + `sus_server` tinyint(2) NOT NULL DEFAULT '0', + `sus_suspect` int(11) NOT NULL DEFAULT '0', + `sus_officer` int(11) NOT NULL DEFAULT '0', + `sus_minutes` int(11) NOT NULL DEFAULT '0', + `sus_reason` varchar(128) NOT NULL DEFAULT '', + `sus_state` int(11) NOT NULL DEFAULT '0', + PRIMARY KEY (`sus_id`) +) ENGINE=InnoDB DEFAULT CHARSET=latin1 COMMENT='Crimes'; + +-- Dumping data for table db24053.sus_main: ~0 rows (approximately) +/*!40000 ALTER TABLE `sus_main` DISABLE KEYS */; +/*!40000 ALTER TABLE `sus_main` ENABLE KEYS */; + +-- Dumping structure for table db24053.svr_main +CREATE TABLE IF NOT EXISTS `svr_main` ( + `svr_id` int(11) NOT NULL AUTO_INCREMENT, + `svr_name` varchar(50) NOT NULL DEFAULT '0', + `svr_game` int(11) NOT NULL DEFAULT '0', + `svr_port` int(11) NOT NULL DEFAULT '0', + `svr_password` varchar(50) NOT NULL DEFAULT '0', + `svr_start_time_hour` int(11) NOT NULL DEFAULT '0', + `svr_start_time_min` int(11) NOT NULL DEFAULT '0', + `svr_start_weather` int(11) NOT NULL DEFAULT '0', + `svr_start_snow_falling` int(11) NOT NULL DEFAULT '0', + `svr_start_snow_ground` float NOT NULL DEFAULT '0', + `svr_newchar_pos_x` float NOT NULL DEFAULT '0', + `svr_newchar_pos_y` float NOT NULL DEFAULT '0', + `svr_newchar_pos_z` float NOT NULL DEFAULT '0', + `svr_newchar_rot_z` float NOT NULL DEFAULT '0', + `svr_newchar_money` int(11) NOT NULL DEFAULT '0', + `svr_newchar_bank` int(11) NOT NULL DEFAULT '0', + `svr_newchar_skin` int(11) NOT NULL DEFAULT '0', + `svr_manager` int(11) NOT NULL DEFAULT '0', + `svr_connectcam_pos_x` float NOT NULL DEFAULT '0', + `svr_connectcam_pos_y` float NOT NULL DEFAULT '0', + `svr_connectcam_pos_z` float NOT NULL DEFAULT '0', + `svr_connectcam_lookat_x` float NOT NULL DEFAULT '0', + `svr_connectcam_lookat_y` float NOT NULL DEFAULT '0', + `svr_connectcam_lookat_z` float NOT NULL DEFAULT '0', + `svr_gui` tinyint(4) NOT NULL DEFAULT '1', + `svr_gui_col1_r` int(11) NOT NULL DEFAULT '200', + `svr_gui_col1_g` int(11) NOT NULL DEFAULT '200', + `svr_gui_col1_b` int(11) NOT NULL DEFAULT '200', + `svr_logo` int(11) NOT NULL DEFAULT '1', + `svr_ac_enabled` int(11) NOT NULL DEFAULT '1', + `svr_ac_check_scripts` int(11) NOT NULL DEFAULT '1', + `svr_ac_script_wl` int(11) NOT NULL DEFAULT '0', + `svr_ac_script_bl` int(11) NOT NULL DEFAULT '1', + PRIMARY KEY (`svr_id`) +) ENGINE=InnoDB AUTO_INCREMENT=5 DEFAULT CHARSET=utf8 COMMENT='Servers'; + +-- Dumping data for table db24053.svr_main: ~4 rows (approximately) +/*!40000 ALTER TABLE `svr_main` DISABLE KEYS */; +INSERT INTO `svr_main` (`svr_id`, `svr_name`, `svr_game`, `svr_port`, `svr_password`, `svr_start_time_hour`, `svr_start_time_min`, `svr_start_weather`, `svr_start_snow_falling`, `svr_start_snow_ground`, `svr_newchar_pos_x`, `svr_newchar_pos_y`, `svr_newchar_pos_z`, `svr_newchar_rot_z`, `svr_newchar_money`, `svr_newchar_bank`, `svr_newchar_skin`, `svr_manager`, `svr_connectcam_pos_x`, `svr_connectcam_pos_y`, `svr_connectcam_pos_z`, `svr_connectcam_lookat_x`, `svr_connectcam_lookat_y`, `svr_connectcam_lookat_z`, `svr_gui`, `svr_gui_col1_r`, `svr_gui_col1_g`, `svr_gui_col1_b`, `svr_logo`, `svr_ac_enabled`, `svr_ac_check_scripts`, `svr_ac_script_wl`, `svr_ac_script_bl`) VALUES + (1, 'Asshat Gaming Roleplay', 1, 30120, 'AsshatsUnite!', 0, 0, 0, 0, 0, 1038.4, -666.7, 14.97, 1, 1000, 0, 0, 1, -1176.48, -17.694, 95.992, -1175.73, -17.055, 95.847, 1, 40, 110, 185, 1, 1, 1, 1, 1); +INSERT INTO `svr_main` (`svr_id`, `svr_name`, `svr_game`, `svr_port`, `svr_password`, `svr_start_time_hour`, `svr_start_time_min`, `svr_start_weather`, `svr_start_snow_falling`, `svr_start_snow_ground`, `svr_newchar_pos_x`, `svr_newchar_pos_y`, `svr_newchar_pos_z`, `svr_newchar_rot_z`, `svr_newchar_money`, `svr_newchar_bank`, `svr_newchar_skin`, `svr_manager`, `svr_connectcam_pos_x`, `svr_connectcam_pos_y`, `svr_connectcam_pos_z`, `svr_connectcam_lookat_x`, `svr_connectcam_lookat_y`, `svr_connectcam_lookat_z`, `svr_gui`, `svr_gui_col1_r`, `svr_gui_col1_g`, `svr_gui_col1_b`, `svr_logo`, `svr_ac_enabled`, `svr_ac_check_scripts`, `svr_ac_script_wl`, `svr_ac_script_bl`) VALUES + (2, 'Asshat Gaming Roleplay', 2, 30120, 'AsshatsUnite!', 0, 0, 0, 0, 0, -708.918, 179.315, 11.0712, 2.94625, 1000, 0, 15, 1, 210.04, -1492.01, 55.071, 240.19, -1282.52, 10.902, 1, 255, 110, 199, 1, 1, 1, 1, 1); +INSERT INTO `svr_main` (`svr_id`, `svr_name`, `svr_game`, `svr_port`, `svr_password`, `svr_start_time_hour`, `svr_start_time_min`, `svr_start_weather`, `svr_start_snow_falling`, `svr_start_snow_ground`, `svr_newchar_pos_x`, `svr_newchar_pos_y`, `svr_newchar_pos_z`, `svr_newchar_rot_z`, `svr_newchar_money`, `svr_newchar_bank`, `svr_newchar_skin`, `svr_manager`, `svr_connectcam_pos_x`, `svr_connectcam_pos_y`, `svr_connectcam_pos_z`, `svr_connectcam_lookat_x`, `svr_connectcam_lookat_y`, `svr_connectcam_lookat_z`, `svr_gui`, `svr_gui_col1_r`, `svr_gui_col1_g`, `svr_gui_col1_b`, `svr_logo`, `svr_ac_enabled`, `svr_ac_check_scripts`, `svr_ac_script_wl`, `svr_ac_script_bl`) VALUES + (3, 'Asshat Gaming Roleplay', 5, 30120, 'AsshatsUnite!', 0, 0, 0, 0, 0, 2364.28, 387.27, 6.085, 2.434, 1000, 0, -2020305438, 1, 8.75, -826.53, 331.072, -63.58, 240.71, 26.373, 1, 200, 200, 200, 1, 1, 1, 1, 1); +INSERT INTO `svr_main` (`svr_id`, `svr_name`, `svr_game`, `svr_port`, `svr_password`, `svr_start_time_hour`, `svr_start_time_min`, `svr_start_weather`, `svr_start_snow_falling`, `svr_start_snow_ground`, `svr_newchar_pos_x`, `svr_newchar_pos_y`, `svr_newchar_pos_z`, `svr_newchar_rot_z`, `svr_newchar_money`, `svr_newchar_bank`, `svr_newchar_skin`, `svr_manager`, `svr_connectcam_pos_x`, `svr_connectcam_pos_y`, `svr_connectcam_pos_z`, `svr_connectcam_lookat_x`, `svr_connectcam_lookat_y`, `svr_connectcam_lookat_z`, `svr_gui`, `svr_gui_col1_r`, `svr_gui_col1_g`, `svr_gui_col1_b`, `svr_logo`, `svr_ac_enabled`, `svr_ac_check_scripts`, `svr_ac_script_wl`, `svr_ac_script_bl`) VALUES + (4, 'Asshat Gaming Roleplay', 3, 30120, 'AsshatsUnite!', 0, 0, 0, 0, 0, 1632.49, -2331.96, 13.547, -0.005, 1000, 0, 26, 1, 1292.31, -2037.57, 109.596, 1291.31, -2037.57, 109.171, 0, 200, 200, 200, 1, 1, 1, 1, 1); +/*!40000 ALTER TABLE `svr_main` ENABLE KEYS */; + +-- Dumping structure for table db24053.veh_history +CREATE TABLE IF NOT EXISTS `veh_history` ( + `veh_history_id` int(11) NOT NULL AUTO_INCREMENT, + `veh_history_veh` int(11) NOT NULL, + `veh_history_type` int(11) NOT NULL, + `veh_history_when` int(11) NOT NULL, + `veh_history_value` int(11) NOT NULL, + `veh_history_details` varchar(50) NOT NULL DEFAULT '', + PRIMARY KEY (`veh_history_id`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Vehicle - History'; + +-- Dumping data for table db24053.veh_history: ~0 rows (approximately) +/*!40000 ALTER TABLE `veh_history` DISABLE KEYS */; +/*!40000 ALTER TABLE `veh_history` ENABLE KEYS */; + +-- Dumping structure for table db24053.veh_main +CREATE TABLE IF NOT EXISTS `veh_main` ( + `veh_id` int(11) NOT NULL AUTO_INCREMENT, + `veh_server` tinyint(2) NOT NULL DEFAULT '0', + `veh_model` int(11) NOT NULL DEFAULT '0', + `veh_col1_isrgb` tinyint(1) NOT NULL DEFAULT '0', + `veh_col2_isrgb` tinyint(1) NOT NULL DEFAULT '0', + `veh_col3_isrgb` tinyint(1) NOT NULL DEFAULT '0', + `veh_col4_isrgb` tinyint(1) NOT NULL DEFAULT '0', + `veh_col1` int(3) NOT NULL DEFAULT '0', + `veh_col2` int(3) NOT NULL DEFAULT '0', + `veh_col3` int(3) NOT NULL DEFAULT '0', + `veh_col4` int(3) NOT NULL DEFAULT '0', + `veh_col1_r` int(3) NOT NULL DEFAULT '0', + `veh_col1_g` int(3) NOT NULL DEFAULT '0', + `veh_col1_b` int(3) NOT NULL DEFAULT '0', + `veh_col1_a` int(3) NOT NULL DEFAULT '0', + `veh_col2_r` int(3) NOT NULL DEFAULT '0', + `veh_col2_g` int(3) NOT NULL DEFAULT '0', + `veh_col2_b` int(3) NOT NULL DEFAULT '0', + `veh_col2_a` int(3) NOT NULL DEFAULT '0', + `veh_col3_r` int(3) NOT NULL DEFAULT '0', + `veh_col3_g` int(3) NOT NULL DEFAULT '0', + `veh_col3_b` int(3) NOT NULL DEFAULT '0', + `veh_col3_a` int(3) NOT NULL DEFAULT '0', + `veh_col4_r` int(3) NOT NULL DEFAULT '0', + `veh_col4_g` int(3) NOT NULL DEFAULT '0', + `veh_col4_b` int(3) NOT NULL DEFAULT '0', + `veh_col4_a` int(3) NOT NULL DEFAULT '0', + `veh_locked` tinyint(1) NOT NULL DEFAULT '0', + `veh_health` float NOT NULL DEFAULT '1000', + `veh_pos_x` float NOT NULL DEFAULT '0', + `veh_pos_y` float NOT NULL DEFAULT '0', + `veh_pos_z` float NOT NULL DEFAULT '0', + `veh_rot_x` float NOT NULL DEFAULT '0', + `veh_rot_y` float NOT NULL DEFAULT '0', + `veh_rot_z` float NOT NULL DEFAULT '0', + `veh_owner_id` int(11) NOT NULL DEFAULT '0', + `veh_owner_type` int(11) NOT NULL DEFAULT '0', + `veh_engine` tinyint(1) NOT NULL DEFAULT '0', + `veh_lights` tinyint(1) NOT NULL DEFAULT '0', + `veh_siren` tinyint(1) NOT NULL DEFAULT '0', + `veh_sirenlight` tinyint(1) NOT NULL DEFAULT '0', + `veh_taxilight` tinyint(1) NOT NULL DEFAULT '0', + `veh_radio` int(8) NOT NULL DEFAULT '0', + `veh_fuel` int(8) NOT NULL DEFAULT '0', + `veh_spawned` tinyint(1) NOT NULL DEFAULT '0', + `veh_ins_acct` tinyint(1) NOT NULL DEFAULT '0', + `veh_price` int(8) NOT NULL DEFAULT '0', + `veh_deleted` tinyint(1) NOT NULL DEFAULT '0', + `veh_flags` int(32) NOT NULL DEFAULT '0', + `veh_spawn_lock` tinyint(1) NOT NULL DEFAULT '0', + `veh_buy_price` int(11) NOT NULL DEFAULT '0', + `veh_rent_price` int(11) NOT NULL DEFAULT '0', + `veh_destroyed` tinyint(1) NOT NULL DEFAULT '0', + `veh_mod_enginemult` int(11) NOT NULL DEFAULT '0', + `veh_mod_wheelmult` int(11) NOT NULL DEFAULT '0', + `veh_mod_brakemult` int(11) NOT NULL DEFAULT '0', + `veh_mod_hydraulics` tinyint(1) NOT NULL DEFAULT '0', + `veh_mod_nos` tinyint(1) NOT NULL DEFAULT '0', + `veh_tire_fl` tinyint(1) NOT NULL DEFAULT '0', + `veh_tire_fr` tinyint(1) NOT NULL DEFAULT '0', + `veh_tire_rl` tinyint(1) NOT NULL DEFAULT '0', + `veh_tire_rr` tinyint(1) NOT NULL DEFAULT '0', + `veh_light_fl` tinyint(1) NOT NULL DEFAULT '0', + `veh_light_fr` tinyint(1) NOT NULL DEFAULT '0', + `veh_light_rl` tinyint(1) NOT NULL DEFAULT '0', + `veh_light_rr` tinyint(1) NOT NULL DEFAULT '0', + `Column 84` int(11) NOT NULL DEFAULT '100', + `veh_door_fl` tinyint(1) NOT NULL DEFAULT '0', + `veh_door_fr` tinyint(1) NOT NULL DEFAULT '0', + `veh_door_rl` tinyint(1) NOT NULL DEFAULT '0', + `veh_door_rr` tinyint(1) NOT NULL DEFAULT '0', + `veh_boot` tinyint(1) NOT NULL DEFAULT '0', + `veh_bonnet` tinyint(1) NOT NULL DEFAULT '0', + `veh_panel_bumper_front` tinyint(1) NOT NULL DEFAULT '0', + `veh_panel_bumper_rear` tinyint(1) NOT NULL DEFAULT '0', + `veh_panel_front_left` tinyint(1) NOT NULL DEFAULT '0', + `veh_panel_front_right` tinyint(1) NOT NULL DEFAULT '0', + `veh_panel_rear_left` tinyint(1) NOT NULL DEFAULT '0', + `veh_panel_rear_right` tinyint(1) NOT NULL DEFAULT '0', + `veh_panel_windshield` tinyint(1) NOT NULL DEFAULT '0', + `veh_dirt_level` int(11) NOT NULL DEFAULT '0', + `veh_damage_visual` int(11) NOT NULL DEFAULT '0', + `veh_damage_engine` float NOT NULL DEFAULT '0', + `veh_damage_normal` float NOT NULL DEFAULT '0', + `undefined` int(11) NOT NULL DEFAULT '0', + PRIMARY KEY (`veh_id`) +) ENGINE=InnoDB AUTO_INCREMENT=337 DEFAULT CHARSET=latin1 COMMENT='Vehicles'; + +-- Dumping data for table db24053.veh_main: ~314 rows (approximately) +/*!40000 ALTER TABLE `veh_main` DISABLE KEYS */; +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `Column 84`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `undefined`) VALUES + (1, 1, 116, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1000, 1150.19, -691.413, 14.7679, 0, 0, -0.00433205, 1, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `Column 84`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `undefined`) VALUES + (2, 1, 116, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1000, 1146.75, -691.522, 14.7632, 0, 0, 0.0311547, 1, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `Column 84`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `undefined`) VALUES + (3, 1, 116, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1000, 1150.19, -647.976, 14.7432, 0, 0, 1.58688, 1, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `Column 84`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `undefined`) VALUES + (4, 1, 116, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1000, 1150.05, -644.664, 14.7377, 0, 0, 1.63214, 1, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `Column 84`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `undefined`) VALUES + (5, 1, 116, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1000, 1150.03, -641.414, 14.7305, 0, 0, 1.58556, 1, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `Column 84`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `undefined`) VALUES + (6, 1, 116, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1000, 1137.77, -637.964, 14.7565, 0, 0, 3.12411, 1, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `Column 84`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `undefined`) VALUES + (7, 1, 116, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1000, 1141.03, -637.832, 14.7565, 0, 0, 3.13313, 1, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `Column 84`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `undefined`) VALUES + (8, 1, 117, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1000, 1167.97, -671.216, 18.9339, 0, 0, -3.12864, 1, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `Column 84`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `undefined`) VALUES + (9, 1, 117, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1000, 1167.88, -659.962, 18.9344, 0, 0, -3.13742, 1, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `Column 84`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `undefined`) VALUES + (10, 1, 107, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1000, 1156.99, -648.106, 18.8026, 0, 0, -1.54444, 1, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `Column 84`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `undefined`) VALUES + (11, 1, 107, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1000, 1156.71, -644.208, 18.8018, 0, 0, -1.56368, 1, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `Column 84`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `undefined`) VALUES + (12, 1, 106, 0, 0, 0, 0, 1, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1000, 1156.51, -546.982, 21.8099, 0, 0, 1.54116, 5, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `Column 84`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `undefined`) VALUES + (13, 1, 106, 0, 0, 0, 0, 1, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1000, 1144.34, -526.256, 21.811, 0, 0, 3.10339, 5, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `Column 84`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `undefined`) VALUES + (14, 1, 106, 0, 0, 0, 0, 1, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1000, 1149.82, -526.413, 21.8051, 0, 0, 3.12915, 5, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `Column 84`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `undefined`) VALUES + (15, 1, 97, 0, 0, 0, 0, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1000, 1107.33, -47.3277, 7.6909, 0, 0, -1.58177, 9, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `Column 84`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `undefined`) VALUES + (16, 1, 97, 0, 0, 0, 0, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1000, 1107.44, -56.9672, 7.68915, 0, 0, -1.55498, 9, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `Column 84`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `undefined`) VALUES + (17, 1, 97, 0, 0, 0, 0, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1000, 1107.07, -36.7668, 7.68907, 0, 0, -1.54614, 9, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `Column 84`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `undefined`) VALUES + (18, 1, 98, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1000, 1143.85, 24.7314, 0.193595, 0, 0, 0.030849, 21, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `Column 84`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `undefined`) VALUES + (19, 1, 98, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1000, 1127.04, 42.6658, 0.0965313, 0, 0, -1.59613, 21, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `Column 84`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `undefined`) VALUES + (20, 1, 98, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1000, 1160.02, 63.4447, 0.0918589, 0, 0, -3.06856, 21, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `Column 84`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `undefined`) VALUES + (21, 1, 116, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1000, 1139.63, -687.404, 14.7563, 0, 0, -1.5751, 1, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `Column 84`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `undefined`) VALUES + (22, 1, 127, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1000, 1281.16, -964.567, 15.006, 0, 0, -2.35689, 17, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `Column 84`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `undefined`) VALUES + (23, 1, 127, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1000, 1274.07, -971.255, 14.9847, 0, 0, -2.36657, 17, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `Column 84`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `undefined`) VALUES + (24, 1, 127, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1000, 1255.04, -993.608, 14.9642, 0, 0, -0.875785, 6, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `Column 84`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `undefined`) VALUES + (25, 1, 127, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1000, 1262.9, -1001.84, 14.966, 0, 0, -0.898034, 6, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `Column 84`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `undefined`) VALUES + (26, 1, 110, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1000, 1226.42, -725.875, 14.9189, 0, 0, -2.34667, 5, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `Column 84`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `undefined`) VALUES + (27, 1, 110, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1000, 1229.62, -722.578, 14.9188, 0, 0, -2.35245, 5, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `Column 84`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `undefined`) VALUES + (28, 1, 110, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1000, 1257.41, -752.06, 14.9186, 0, 0, 0.734189, 5, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `Column 84`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `undefined`) VALUES + (29, 1, 110, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1000, 1254.04, -755.676, 14.9186, 0, 0, 0.767078, 5, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `Column 84`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `undefined`) VALUES + (30, 1, 128, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1000, 1249.93, -736.377, 15.1166, 0, 0, 2.33642, 5, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `Column 84`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `undefined`) VALUES + (31, 1, 128, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1000, 1246.99, -733.376, 15.1162, 0, 0, 2.33641, 5, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `Column 84`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `undefined`) VALUES + (32, 1, 116, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1000, 1139.41, -683.735, 14.7565, 0, 0, -1.55153, 1, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `Column 84`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `undefined`) VALUES + (33, 1, 116, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1000, 355.017, -1135.91, 22.7644, 0, 0, -2.41669, 1, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `Column 84`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `undefined`) VALUES + (34, 1, 116, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1000, 350.109, -1135.89, 22.7647, 0, 0, -2.46912, 1, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `Column 84`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `undefined`) VALUES + (35, 1, 116, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1000, 345.608, -1135.62, 22.7649, 0, 0, -2.53825, 1, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `Column 84`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `undefined`) VALUES + (36, 1, 116, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1000, 341.261, -1135.68, 22.7642, 0, 0, -2.54692, 1, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `Column 84`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `undefined`) VALUES + (37, 1, 116, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1000, 336.717, -1135.68, 22.7706, 0, 0, -2.56974, 1, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `Column 84`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `undefined`) VALUES + (38, 1, 116, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1000, 332.574, -1135.79, 22.7643, 0, 0, -2.54837, 1, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `Column 84`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `undefined`) VALUES + (39, 1, 116, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1000, 330.361, -1143.6, 22.7644, 0, 0, -1.53463, 1, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `Column 84`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `undefined`) VALUES + (40, 1, 116, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1000, 330.33, -1147.05, 22.7647, 0, 0, -1.55975, 1, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `Column 84`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `undefined`) VALUES + (41, 1, 116, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1000, 330.239, -1150.96, 22.7647, 0, 0, -1.59091, 1, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `Column 84`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `undefined`) VALUES + (42, 1, 116, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1000, 330.082, -1154.76, 22.7643, 0, 0, -1.59227, 1, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `Column 84`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `undefined`) VALUES + (43, 1, 116, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1000, 330.062, -1158.64, 22.764, 0, 0, -1.56752, 1, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `Column 84`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `undefined`) VALUES + (44, 1, 116, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1000, 330.123, -1162.56, 22.757, 0, 0, -1.57938, 1, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `Column 84`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `undefined`) VALUES + (45, 1, 116, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1000, 349.266, -1175.87, 22.7646, 0, 0, 0.0401467, 1, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `Column 84`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `undefined`) VALUES + (46, 1, 116, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1000, 352.866, -1175.72, 22.7649, 0, 0, 0.0375325, 1, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `Column 84`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `undefined`) VALUES + (47, 1, 116, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1000, 356.565, -1175.68, 22.7649, 0, 0, 0.0262495, 1, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `Column 84`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `undefined`) VALUES + (48, 1, 116, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1000, 360.123, -1175.56, 22.765, 0, 0, 0.00383999, 1, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `Column 84`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `undefined`) VALUES + (49, 1, 116, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1000, 363.628, -1175.71, 22.7647, 0, 0, 0.0135003, 1, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `Column 84`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `undefined`) VALUES + (50, 1, 116, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1000, 344.813, -1175.93, 22.7648, 0, 0, 0.0261305, 1, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `Column 84`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `undefined`) VALUES + (51, 1, 117, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1000, 363.039, -1056.26, 26.0159, 0, 0, -3.13414, 1, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `Column 84`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `undefined`) VALUES + (52, 1, 117, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1000, 357.656, -1056.36, 26.016, 0, 0, 3.12152, 1, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `Column 84`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `undefined`) VALUES + (53, 1, 117, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1000, 352.455, -1056.27, 26.0166, 0, 0, 3.1086, 1, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `Column 84`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `undefined`) VALUES + (54, 1, 107, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1000, 346.23, -1055.48, 25.8838, 0, 0, 3.1377, 1, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `Column 84`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `undefined`) VALUES + (55, 1, 107, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1000, 342.364, -1055.36, 25.8839, 0, 0, 3.12213, 1, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `Column 84`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `undefined`) VALUES + (56, 1, 107, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1000, 338.239, -1055.29, 25.8841, 0, 0, 3.07547, 1, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `Column 84`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `undefined`) VALUES + (57, 1, 107, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1000, 333.56, -1055.31, 25.8841, 0, 0, 3.09697, 1, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `Column 84`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `undefined`) VALUES + (58, 2, 156, 0, 0, 0, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, -863.201, -666.353, 11.0311, 0, 0, -3.04091, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `Column 84`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `undefined`) VALUES + (59, 2, 156, 0, 0, 0, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, -859.264, -665.929, 11.0121, 0, 0, -3.02909, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `Column 84`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `undefined`) VALUES + (60, 2, 156, 0, 0, 0, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, -855.519, -665.594, 10.9943, 0, 0, -3.03498, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `Column 84`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `undefined`) VALUES + (61, 2, 156, 0, 0, 0, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, -851.826, -665.276, 10.9767, 0, 0, -3.02548, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `Column 84`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `undefined`) VALUES + (62, 2, 156, 0, 0, 0, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, -843.97, -679.789, 10.9396, 0, 0, 1.72875, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `Column 84`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `undefined`) VALUES + (63, 2, 156, 0, 0, 0, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, -844.578, -675.52, 10.9427, 0, 0, 1.70593, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `Column 84`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `undefined`) VALUES + (64, 2, 156, 0, 0, 0, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, -845.17, -671.403, 10.9455, 0, 0, 1.69794, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `Column 84`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `undefined`) VALUES + (65, 2, 157, 0, 0, 0, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, -873.775, -710.286, 11.1915, 0, 0, -2.06147, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `Column 84`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `undefined`) VALUES + (66, 2, 157, 0, 0, 0, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, -881.43, -705.81, 11.2087, 0, 0, -2.22486, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `Column 84`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `undefined`) VALUES + (67, 2, 236, 0, 0, 0, 0, 76, 76, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, -897.515, -698.598, 10.9724, 0, 0, -3.01881, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `Column 84`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `undefined`) VALUES + (68, 2, 236, 0, 0, 0, 0, 76, 76, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, -894.148, -698.128, 10.9701, 0, 0, -3.01433, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `Column 84`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `undefined`) VALUES + (69, 2, 236, 0, 0, 0, 0, 76, 76, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, -894.135, -719.859, 10.9428, 0, 0, -1.41224, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `Column 84`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `undefined`) VALUES + (70, 2, 236, 0, 0, 0, 0, 52, 52, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, -894.683, -715.826, 10.9485, 0, 0, -1.42683, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `Column 84`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `undefined`) VALUES + (71, 2, 156, 0, 0, 0, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, -650.832, 754.237, 11.2032, 0, 0, 1.50302, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `Column 84`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `undefined`) VALUES + (72, 2, 156, 0, 0, 0, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, -639.172, 753.413, 11.2032, 0, 0, 1.50092, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `Column 84`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `undefined`) VALUES + (73, 2, 156, 0, 0, 0, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, -621.907, 752.278, 11.2033, 0, 0, 1.49172, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `Column 84`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `undefined`) VALUES + (74, 2, 156, 0, 0, 0, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, -610.695, 751.54, 11.2031, 0, 0, 1.5242, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `Column 84`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `undefined`) VALUES + (75, 2, 157, 0, 0, 0, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, -599.312, 812.778, 11.4341, 0, 0, -1.51886, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `Column 84`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `undefined`) VALUES + (76, 2, 157, 0, 0, 0, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, -599.318, 808.625, 11.4343, 0, 0, -1.54175, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `Column 84`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `undefined`) VALUES + (77, 2, 157, 0, 0, 0, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, -599.262, 804.179, 11.4321, 0, 0, -1.55996, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `Column 84`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `undefined`) VALUES + (78, 2, 236, 0, 0, 0, 0, 52, 52, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, -601.455, 777.717, 11.3721, 0, 0, -1.56567, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `Column 84`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `undefined`) VALUES + (79, 2, 236, 0, 0, 0, 0, 3, 3, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, -601.427, 781.32, 11.372, 0, 0, -1.57976, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `Column 84`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `undefined`) VALUES + (80, 2, 236, 0, 0, 0, 0, 7, 7, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, -601.614, 785.262, 11.3678, 0, 0, -1.53095, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `Column 84`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `undefined`) VALUES + (81, 2, 227, 0, 0, 0, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, -614.282, 804.889, 29.667, 0, 0, -3.13458, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `Column 84`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `undefined`) VALUES + (82, 2, 156, 0, 0, 0, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, -665.011, 766.586, 10.8582, 0, 0, -3.12432, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `Column 84`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `undefined`) VALUES + (83, 2, 156, 0, 0, 0, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, -665.185, 777.893, 11.0314, 0, 0, 3.13051, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `Column 84`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `undefined`) VALUES + (84, 2, 156, 0, 0, 0, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, -665.29, 793.478, 11.0371, 0, 0, -3.13675, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `Column 84`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `undefined`) VALUES + (85, 2, 156, 0, 0, 0, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, -665.178, 804.984, 11.0372, 0, 0, 3.13152, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `Column 84`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `undefined`) VALUES + (86, 2, 137, 0, 0, 0, 0, 3, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, -695.476, 917.25, 11.193, 0, 0, -1.5752, 10, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `Column 84`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `undefined`) VALUES + (87, 2, 137, 0, 0, 0, 0, 3, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, -695.799, 933.069, 11.1976, 0, 0, -1.59279, 10, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `Column 84`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `undefined`) VALUES + (88, 2, 137, 0, 0, 0, 0, 3, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, -751.642, 927.235, 11.2813, 0, 0, 1.58276, 10, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `Column 84`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `undefined`) VALUES + (89, 2, 156, 0, 0, 0, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 520.53, 503.127, 10.8484, 0, 0, -0.00178437, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `Column 84`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `undefined`) VALUES + (90, 2, 156, 0, 0, 0, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 516.364, 503.18, 10.9362, 0, 0, -0.0254137, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `Column 84`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `undefined`) VALUES + (91, 2, 156, 0, 0, 0, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 498.01, 503.081, 11.193, 0, 0, 0.0146382, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `Column 84`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `undefined`) VALUES + (92, 2, 156, 0, 0, 0, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 502.233, 503.026, 11.1357, 0, 0, 0.0138817, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `Column 84`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `undefined`) VALUES + (93, 2, 156, 0, 0, 0, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 493.552, 503.077, 11.2541, 0, 0, -0.0044642, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `Column 84`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `undefined`) VALUES + (94, 2, 236, 0, 0, 0, 0, 52, 52, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 490.796, 528.832, 11.3465, 0, 0, 1.54742, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `Column 84`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `undefined`) VALUES + (95, 2, 236, 0, 0, 0, 0, 76, 76, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 490.796, 525.464, 11.3455, 0, 0, 1.57115, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `Column 84`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `undefined`) VALUES + (96, 2, 157, 0, 0, 0, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 490.527, 519.161, 11.6082, 0, 0, 3.12121, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `Column 84`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `undefined`) VALUES + (97, 2, 156, 0, 0, 0, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 372.272, -526.059, 12.1009, 0, 0, -0.731552, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `Column 84`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `undefined`) VALUES + (98, 2, 156, 0, 0, 0, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 369.489, -523.585, 12.0988, 0, 0, -0.718855, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `Column 84`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `undefined`) VALUES + (99, 2, 156, 0, 0, 0, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 366.674, -521.239, 12.0989, 0, 0, -0.712901, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `Column 84`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `undefined`) VALUES + (100, 2, 156, 0, 0, 0, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 363.691, -518.751, 12.0982, 0, 0, -0.698761, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `Column 84`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `undefined`) VALUES + (101, 2, 156, 0, 0, 0, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 361.239, -516.717, 12.0989, 0, 0, -0.705683, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `Column 84`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `undefined`) VALUES + (102, 2, 156, 0, 0, 0, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 358.335, -514.321, 12.0942, 0, 0, -0.696986, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `Column 84`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `undefined`) VALUES + (103, 2, 156, 0, 0, 0, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 355.575, -511.957, 12.0989, 0, 0, -0.701771, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `Column 84`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `undefined`) VALUES + (104, 2, 157, 0, 0, 0, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 348.887, -491.942, 12.3596, 0, 0, 2.45143, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `Column 84`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `undefined`) VALUES + (105, 2, 157, 0, 0, 0, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 351.751, -494.224, 12.3596, 0, 0, 2.44634, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `Column 84`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `undefined`) VALUES + (106, 2, 146, 0, 0, 0, 0, 1, 3, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, -119.267, -918.579, 10.6751, 0, 0, 1.83377, 6, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `Column 84`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `undefined`) VALUES + (107, 2, 146, 0, 0, 0, 0, 1, 3, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, -117.954, -924.926, 10.6753, 0, 0, 1.8211, 6, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `Column 84`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `undefined`) VALUES + (108, 2, 146, 0, 0, 0, 0, 1, 3, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, -116.5, -931.549, 10.6753, 0, 0, 1.76665, 6, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `Column 84`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `undefined`) VALUES + (129, 2, 146, 0, 0, 0, 0, 1, 3, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, -769.326, 1155.62, 12.6228, 0, 0, -3.14049, 6, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 100, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `Column 84`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `undefined`) VALUES + (130, 2, 146, 0, 0, 0, 0, 1, 3, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, -773.948, 1155.64, 12.6228, 0, 0, 3.13857, 6, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 100, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `Column 84`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `undefined`) VALUES + (131, 2, 146, 0, 0, 0, 0, 1, 3, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, -769.568, 1131.04, 12.6227, 0, 0, -0.010725, 6, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 100, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `Column 84`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `undefined`) VALUES + (132, 2, 146, 0, 0, 0, 0, 1, 3, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, -774.835, 1131.13, 12.6229, 0, 0, -0.0206099, 6, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 100, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `Column 84`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `undefined`) VALUES + (133, 2, 146, 0, 0, 0, 0, 1, 3, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 458.814, 702.22, 11.49, 0, 0, 1.51274, 6, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 100, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `Column 84`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `undefined`) VALUES + (134, 2, 146, 0, 0, 0, 0, 1, 3, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 467.202, 701.723, 11.6151, 0, 0, 1.50174, 6, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 100, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `Column 84`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `undefined`) VALUES + (135, 2, 150, 0, 0, 0, 0, 6, 73, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, -1005.69, 208.713, 11.1279, 0, 0, 3.03758, 14, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 100, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `Column 84`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `undefined`) VALUES + (136, 2, 150, 0, 0, 0, 0, 6, 75, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, -1002.12, 203.73, 11.4539, 0, 0, 3.01694, 14, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 100, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `Column 84`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `undefined`) VALUES + (137, 2, 168, 0, 0, 0, 0, 6, 76, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, -1008.54, 186.246, 11.3789, 0, 0, -0.157828, 14, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 100, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `Column 84`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `undefined`) VALUES + (138, 2, 168, 0, 0, 0, 0, 6, 76, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, -995.796, 193.143, 11.4015, 0, 0, 1.41776, 14, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 100, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `Column 84`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `undefined`) VALUES + (139, 2, 167, 0, 0, 0, 0, 56, 75, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, -1141.98, -283.386, 11.3194, 0, 0, -3.09345, 18, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 100, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `Column 84`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `undefined`) VALUES + (140, 2, 167, 0, 0, 0, 0, 13, 76, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, -1143.05, -270.229, 11.4251, 0, 0, -3.05214, 18, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 100, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `Column 84`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `undefined`) VALUES + (141, 2, 167, 0, 0, 0, 0, 13, 76, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, -1143.99, -256.669, 11.5147, 0, 0, -3.07535, 18, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 100, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `Column 84`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `undefined`) VALUES + (142, 2, 146, 0, 0, 0, 0, 1, 3, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, -873.256, -482.571, 11.3251, 0, 0, -1.5271, 6, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 100, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `Column 84`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `undefined`) VALUES + (143, 2, 146, 0, 0, 0, 0, 1, 3, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, -873.249, -478.507, 11.3193, 0, 0, -1.55587, 6, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 100, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `Column 84`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `undefined`) VALUES + (144, 2, 138, 0, 0, 0, 0, 1, 75, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, -1243.33, 23.4004, 12.013, 0, 0, 3.12587, 22, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 100, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `Column 84`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `undefined`) VALUES + (145, 2, 138, 0, 0, 0, 0, 1, 75, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, -1247.7, 23.4549, 12.0141, 0, 0, 3.1171, 22, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 100, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `Column 84`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `undefined`) VALUES + (146, 2, 138, 0, 0, 0, 0, 1, 75, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, -1251.99, 23.5308, 12.0096, 0, 0, 3.12793, 22, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 100, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `Column 84`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `undefined`) VALUES + (147, 4, 596, 0, 0, 0, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 1602.73, -1703.95, 5.62027, 0, 0, 1.59558, 4, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 100, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `Column 84`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `undefined`) VALUES + (148, 4, 596, 0, 0, 0, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 1602.74, -1700.18, 5.61885, 0, 0, 1.59013, 4, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 100, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `Column 84`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `undefined`) VALUES + (149, 4, 596, 0, 0, 0, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 1602.68, -1696.18, 5.61891, 0, 0, 1.57734, 4, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 100, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `Column 84`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `undefined`) VALUES + (150, 4, 596, 0, 0, 0, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 1602.67, -1691.93, 5.61976, 0, 0, 1.59322, 4, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 100, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `Column 84`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `undefined`) VALUES + (151, 4, 596, 0, 0, 0, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 2083.1, -1706.03, 13.104, 0, 0, 0.635562, 4, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 100, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `Column 84`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `undefined`) VALUES + (152, 4, 596, 0, 0, 0, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 1595.43, -1711.89, 5.61871, 0, 0, -0.0106168, 4, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 100, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `Column 84`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `undefined`) VALUES + (153, 4, 596, 0, 0, 0, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 1591.43, -1711.87, 5.61965, 0, 0, 0.00642908, 4, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 100, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `Column 84`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `undefined`) VALUES + (154, 4, 596, 0, 0, 0, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 1587.33, -1711.86, 5.61184, 0, 0, 0.00975822, 4, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 100, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `Column 84`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `undefined`) VALUES + (155, 4, 427, 0, 0, 0, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 1526.72, -1644.82, 6.02297, 0, 0, -3.13362, 4, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 100, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `Column 84`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `undefined`) VALUES + (156, 4, 427, 0, 0, 0, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 1530.62, -1644.78, 6.02321, 0, 0, -3.11574, 4, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 100, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `Column 84`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `undefined`) VALUES + (157, 4, 427, 0, 0, 0, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 1534.72, -1644.71, 6.03863, 0, 0, -3.13567, 4, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 100, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `Column 84`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `undefined`) VALUES + (158, 4, 599, 0, 0, 0, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 1545.99, -1651.07, 6.08226, 0, 0, 1.56824, 4, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 100, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `Column 84`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `undefined`) VALUES + (159, 4, 599, 0, 0, 0, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 1546.03, -1654.96, 6.03352, 0, 0, 1.54986, 4, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 100, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `Column 84`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `undefined`) VALUES + (160, 4, 426, 0, 0, 0, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 1545.79, -1667.84, 5.62373, 0, 0, 1.56514, 4, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 100, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `Column 84`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `undefined`) VALUES + (161, 4, 426, 0, 0, 0, 0, 10, 10, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 1545.98, -1672.1, 5.63141, 0, 0, 1.5917, 4, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 100, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `Column 84`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `undefined`) VALUES + (162, 2, 131, 0, 0, 0, 0, 5, 62, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, -979.65, -882.122, 12.8471, 0, 0, 0.706624, 201, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 100, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `Column 84`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `undefined`) VALUES + (163, 2, 175, 0, 0, 0, 0, 10, 10, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, -982.328, -884.745, 12.8644, 0, 0, 0.752705, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 100, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `Column 84`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `undefined`) VALUES + (164, 2, 134, 0, 0, 0, 0, 37, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, -984.716, -887.286, 12.7108, 0, 0, 0.798329, 201, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 750, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 100, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `Column 84`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `undefined`) VALUES + (165, 4, 523, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 1526.17, -1680.36, 5.45989, 0, 0, -0.797715, 4, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 100, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `Column 84`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `undefined`) VALUES + (166, 4, 523, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 1526.06, -1674.86, 5.46142, 0, 0, -2.37213, 4, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 100, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `Column 84`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `undefined`) VALUES + (167, 4, 523, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 1529.73, -1674.89, 5.4601, 0, 0, -2.37606, 4, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 100, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `Column 84`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `undefined`) VALUES + (168, 4, 523, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 1529.64, -1680.68, 5.46212, 0, 0, -0.793975, 4, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 100, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `Column 84`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `undefined`) VALUES + (169, 4, 416, 0, 0, 0, 0, 1, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 1178.73, -1338.94, 14.0094, 0, 0, -1.54939, 8, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 100, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `Column 84`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `undefined`) VALUES + (170, 4, 416, 0, 0, 0, 0, 1, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 1178.46, -1308.67, 13.9791, 0, 0, -1.56455, 8, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 100, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `Column 84`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `undefined`) VALUES + (171, 4, 416, 0, 0, 0, 0, 1, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 2036.82, -1425.53, 17.1413, 0, 0, -0.00217407, 8, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 100, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `Column 84`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `undefined`) VALUES + (172, 4, 416, 0, 0, 0, 0, 1, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 2024.7, -1409.68, 17.1419, 0, 0, 1.55537, 8, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 100, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `Column 84`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `undefined`) VALUES + (173, 4, 408, 0, 0, 0, 0, 26, 26, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 2338.19, -2085.52, 14.0841, 0, 0, 1.56666, 24, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 100, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `Column 84`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `undefined`) VALUES + (174, 4, 408, 0, 0, 0, 0, 26, 26, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 2338.24, -2090.4, 14.097, 0, 0, 1.57921, 24, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 100, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `Column 84`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `undefined`) VALUES + (175, 4, 408, 0, 0, 0, 0, 26, 26, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 2338.3, -2095.48, 14.0909, 0, 0, 1.57749, 24, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 100, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `Column 84`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `undefined`) VALUES + (176, 4, 431, 0, 0, 0, 0, 47, 74, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 1781.16, -1887.68, 13.493, 0, 0, -1.54371, 20, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 100, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `Column 84`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `undefined`) VALUES + (177, 4, 431, 0, 0, 0, 0, 92, 72, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 1781.08, -1892.33, 13.492, 0, 0, -1.55517, 20, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 100, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `Column 84`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `undefined`) VALUES + (178, 4, 431, 0, 0, 0, 0, 92, 72, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 1780.83, -1897.52, 13.4905, 0, 0, -1.56997, 20, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 100, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `Column 84`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `undefined`) VALUES + (179, 4, 420, 0, 0, 0, 0, 6, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 1804.27, -1932.53, 13.1664, 0, 0, -0.015131, 16, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 100, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `Column 84`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `undefined`) VALUES + (180, 4, 420, 0, 0, 0, 0, 6, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 1800.35, -1932.4, 13.166, 0, 0, -0.0127972, 16, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 100, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `Column 84`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `undefined`) VALUES + (181, 4, 420, 0, 0, 0, 0, 6, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 1796.72, -1932.55, 13.1653, 0, 0, -0.000382929, 16, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 100, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `Column 84`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `undefined`) VALUES + (182, 4, 438, 0, 0, 0, 0, 6, 76, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 1792.65, -1932.66, 13.3902, 0, 0, 0.00784995, 16, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 100, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `Column 84`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `undefined`) VALUES + (183, 4, 438, 0, 0, 0, 0, 6, 76, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 1788.85, -1932.83, 13.3847, 0, 0, 0.025678, 16, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 100, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `Column 84`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `undefined`) VALUES + (184, 4, 407, 0, 0, 0, 0, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 1147.58, -1295.9, 13.8958, 0, 0, 0.00109566, 12, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 100, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `Column 84`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `undefined`) VALUES + (185, 4, 407, 0, 0, 0, 0, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 1147.58, -1308.6, 13.9144, 0, 0, 0.00538338, 12, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 100, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `Column 84`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `undefined`) VALUES + (186, 4, 598, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 2282.26, 2442.01, 10.5652, 0, 0, -0.0100905, 4, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 100, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `Column 84`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `undefined`) VALUES + (187, 4, 598, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 2277.82, 2441.92, 10.5665, 0, 0, 0.0142917, 4, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 100, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `Column 84`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `undefined`) VALUES + (188, 4, 598, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 2273.75, 2441.84, 10.5656, 0, 0, 0.00445989, 4, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 100, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `Column 84`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `undefined`) VALUES + (189, 4, 598, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 2269.03, 2441.76, 10.565, 0, 0, 0.02489, 4, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 100, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `Column 84`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `undefined`) VALUES + (190, 4, 598, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 2277.94, 2478.61, 10.5693, 0, 0, 3.13522, 4, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 100, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `Column 84`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `undefined`) VALUES + (191, 4, 598, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 2273.44, 2478.64, 10.5671, 0, 0, 3.12822, 4, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 100, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `Column 84`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `undefined`) VALUES + (192, 4, 598, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 2269.09, 2478.64, 10.5649, 0, 0, 3.13244, 4, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 100, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `Column 84`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `undefined`) VALUES + (193, 4, 598, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 2282.15, 2478.59, 10.5668, 0, 0, -3.12538, 4, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 100, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `Column 84`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `undefined`) VALUES + (194, 4, 407, 0, 0, 0, 0, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 1751.1, 2077.36, 11.0579, 0, 0, 3.13707, 12, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 100, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `Column 84`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `undefined`) VALUES + (195, 4, 407, 0, 0, 0, 0, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 1756.99, 2077.55, 11.0555, 0, 0, -3.13337, 12, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 100, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `Column 84`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `undefined`) VALUES + (196, 4, 407, 0, 0, 0, 0, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 1763.96, 2077.97, 11.0573, 0, 0, -3.10259, 12, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 100, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `Column 84`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `undefined`) VALUES + (197, 4, 597, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, -1572.66, 742.629, -5.47258, 0, 0, 1.57093, 4, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 100, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `Column 84`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `undefined`) VALUES + (198, 4, 597, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, -1572.64, 738.657, -5.47407, 0, 0, 1.5799, 4, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 100, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `Column 84`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `undefined`) VALUES + (199, 4, 597, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, -1572.6, 734.641, -5.47307, 0, 0, 1.57367, 4, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 100, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `Column 84`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `undefined`) VALUES + (200, 4, 597, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, -1572.56, 730.619, -5.47164, 0, 0, 1.57203, 4, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 100, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `Column 84`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `undefined`) VALUES + (201, 4, 597, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, -1572.46, 726.494, -5.47229, 0, 0, 1.57229, 4, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 100, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `Column 84`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `undefined`) VALUES + (202, 4, 597, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, -1579.91, 750.258, -5.47212, 0, 0, 3.13972, 4, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 100, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `Column 84`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `undefined`) VALUES + (203, 4, 597, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, -1584.04, 750.231, -5.47137, 0, 0, -3.13672, 4, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 100, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `Column 84`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `undefined`) VALUES + (204, 4, 597, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, -1588.07, 750.247, -5.47243, 0, 0, 3.13574, 4, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 100, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `Column 84`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `undefined`) VALUES + (205, 4, 597, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, -1592.38, 750.296, -5.47143, 0, 0, 3.13692, 4, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 100, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `Column 84`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `undefined`) VALUES + (206, 4, 523, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, -1611.79, 730.701, -5.67174, 0, 0, 0.560641, 4, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 100, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `Column 84`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `undefined`) VALUES + (207, 4, 523, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, -1617.18, 730.908, -5.66764, 0, 0, -0.753548, 4, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 100, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `Column 84`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `undefined`) VALUES + (208, 4, 523, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, -1611.58, 733.413, -5.67532, 0, 0, 0.526106, 4, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 100, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `Column 84`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `undefined`) VALUES + (209, 4, 523, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, -1617.37, 733.199, -5.67666, 0, 0, -0.764526, 4, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 100, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `Column 84`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `undefined`) VALUES + (210, 4, 426, 0, 0, 0, 0, 11, 11, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, -1572.29, 705.876, -5.49726, 0, 0, 1.58725, 4, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 100, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `Column 84`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `undefined`) VALUES + (211, 4, 426, 0, 0, 0, 0, 53, 53, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, -1572.31, 710.11, -5.49697, 0, 0, 1.55664, 4, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 100, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `Column 84`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `undefined`) VALUES + (212, 4, 426, 0, 0, 0, 0, 11, 11, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, -1572.36, 714.22, -5.49761, 0, 0, 1.58512, 4, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 100, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `Column 84`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `undefined`) VALUES + (213, 4, 427, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, -1596.07, 676.545, -5.10801, 0, 0, 0.0186245, 4, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 100, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `Column 84`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `undefined`) VALUES + (214, 4, 427, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, -1600.28, 676.495, -5.10837, 0, 0, 0.0136404, 4, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 100, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `Column 84`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `undefined`) VALUES + (215, 4, 416, 0, 0, 0, 0, 1, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, -2677.4, 630.025, 14.6044, 0, 0, 1.57874, 8, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 100, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `Column 84`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `undefined`) VALUES + (216, 4, 416, 0, 0, 0, 0, 1, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, -2666.93, 629.908, 14.6044, 0, 0, 1.56592, 8, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 100, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `Column 84`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `undefined`) VALUES + (217, 4, 416, 0, 0, 0, 0, 1, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, -2686.18, 628.286, 14.6058, 0, 0, 1.9158, 8, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 100, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `Column 84`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `undefined`) VALUES + (218, 4, 407, 0, 0, 0, 0, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, -2022.76, 75.2526, 28.3631, 0, 0, -1.47777, 12, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 100, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `Column 84`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `undefined`) VALUES + (219, 4, 407, 0, 0, 0, 0, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, -2022.92, 84.3134, 28.3332, 0, 0, -1.5322, 12, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 100, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `Column 84`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `undefined`) VALUES + (220, 4, 407, 0, 0, 0, 0, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, -2022.93, 92.2289, 28.3678, 0, 0, -1.51043, 12, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 100, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `Column 84`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `undefined`) VALUES + (221, 4, 411, 0, 0, 0, 0, 12, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 564.59, -1291.1, 16.9753, 0, 0, 0.0255753, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 100, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `Column 84`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `undefined`) VALUES + (222, 4, 541, 0, 0, 0, 0, 36, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 561, -1291.44, 16.8732, 0, 0, 0.00172557, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 100, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `Column 84`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `undefined`) VALUES + (223, 4, 480, 0, 0, 0, 0, 6, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 557.632, -1291.24, 17.022, 0, 0, 0.0362236, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 100, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `Column 84`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `undefined`) VALUES + (224, 4, 477, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 554.015, -1291.05, 17.0018, 0, 0, -0.0592367, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 100, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `Column 84`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `undefined`) VALUES + (225, 2, 131, 0, 0, 0, 0, 62, 37, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, -1154.93, 5.74538, 11.2258, 0, 0, -1.56933, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 100, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `Column 84`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `undefined`) VALUES + (226, 1, 111, 0, 0, 0, 0, 57, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 1190.48, -252.694, 24.7467, 0, 0, 3.13471, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 2500, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 100, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `Column 84`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `undefined`) VALUES + (227, 1, 102, 0, 0, 0, 0, 57, 73, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 1209.59, -85.9233, 12.6336, 0, 0, -2.23509, 204, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 2500, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 100, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `Column 84`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `undefined`) VALUES + (228, 1, 129, 0, 0, 0, 0, 25, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 1209.51, -81.4913, 12.1281, 0, 0, -2.20648, 204, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 2100, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 100, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `Column 84`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `undefined`) VALUES + (229, 1, 112, 0, 0, 0, 0, 55, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 1209.65, -77.2701, 11.9, 0, 0, -2.20789, 204, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 2000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 100, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `Column 84`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `undefined`) VALUES + (230, 1, 91, 0, 0, 0, 0, 51, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 1211.41, -66.0152, 10.4973, 0, 0, -2.52612, 204, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1500, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 100, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `Column 84`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `undefined`) VALUES + (231, 1, 100, 0, 0, 0, 0, 69, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 1210.97, -73.589, 11.1925, 0, 0, -2.19468, 204, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 100, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `Column 84`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `undefined`) VALUES + (232, 1, 94, 0, 0, 0, 0, 23, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 1214.52, -63.2275, 10.152, 0, 0, -2.81749, 204, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 100, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `Column 84`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `undefined`) VALUES + (233, 1, 90, 0, 0, 0, 0, 41, 76, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 1218.85, -62.5937, 10.422, 0, 0, 3.0997, 204, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 2500, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 100, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `Column 84`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `undefined`) VALUES + (234, 1, 109, 0, 0, 0, 0, 18, 18, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 1222.63, -63.0764, 10.2099, 0, 0, 3.10392, 204, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1200, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 100, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `Column 84`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `undefined`) VALUES + (235, 1, 105, 0, 0, 0, 0, 51, 77, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 1244.93, -120.808, 14.604, 0, 0, -0.0421777, 204, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 75000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 100, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `Column 84`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `undefined`) VALUES + (236, 1, 101, 0, 0, 0, 0, 57, 74, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 1241.28, -120.641, 14.6288, 0, 0, 0.0264841, 204, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 85000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 100, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `Column 84`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `undefined`) VALUES + (237, 1, 119, 0, 0, 0, 0, 12, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 1237.61, -121, 14.5594, 0, 0, 0.00477941, 204, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 115000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 100, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `Column 84`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `undefined`) VALUES + (238, 1, 92, 0, 0, 0, 0, 53, 73, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 1233.86, -120.93, 14.6328, 0, 0, -0.0198187, 204, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 100000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 100, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `Column 84`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `undefined`) VALUES + (239, 1, 134, 0, 0, 0, 0, 72, 75, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 1247.55, -107.909, 14.7097, 0, 0, 1.50495, 204, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 25000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 100, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `Column 84`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `undefined`) VALUES + (240, 1, 137, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 1247.63, -104.151, 14.2887, 0, 0, 1.54257, 204, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 20000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 100, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `Column 84`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `undefined`) VALUES + (241, 1, 135, 0, 0, 0, 0, 11, 75, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 1247.29, -100.391, 14.0073, 0, 0, 1.52489, 204, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 22000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 100, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `Column 84`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `undefined`) VALUES + (243, 1, 139, 0, 0, 0, 0, 9, 73, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 1247.41, -96.6294, 13.9466, 0, 0, 1.55603, 204, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 25000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 100, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `Column 84`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `undefined`) VALUES + (244, 1, 138, 0, 0, 0, 0, 54, 76, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 1247.62, -92.3873, 13.426, 0, 0, 1.51434, 204, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 27000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 100, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `Column 84`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `undefined`) VALUES + (245, 1, 102, 0, 0, 0, 0, 26, 75, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, -751.01, -535.337, 8.80389, 0, 0, -1.13589, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 100, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `Column 84`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `undefined`) VALUES + (246, 1, 102, 0, 0, 0, 0, 34, 73, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, -750.797, -539.199, 8.80304, 0, 0, -1.10576, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 100, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `Column 84`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `undefined`) VALUES + (247, 1, 102, 0, 0, 0, 0, 44, 74, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, -751.052, -543.618, 8.80374, 0, 0, -1.07295, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 100, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `Column 84`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `undefined`) VALUES + (248, 1, 100, 0, 0, 0, 0, 58, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, -751.57, -552.963, 8.5998, 0, 0, -1.61004, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 100, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `Column 84`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `undefined`) VALUES + (249, 1, 100, 0, 0, 0, 0, 18, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, -751.576, -556.203, 8.59965, 0, 0, -1.59793, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 100, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `Column 84`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `undefined`) VALUES + (250, 1, 100, 0, 0, 0, 0, 58, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, -751.577, -559.737, 8.59964, 0, 0, -1.57346, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 100, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `Column 84`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `undefined`) VALUES + (251, 1, 100, 0, 0, 0, 0, 18, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, -751.575, -563.115, 8.60021, 0, 0, -1.57212, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 100, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `Column 84`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `undefined`) VALUES + (252, 1, 126, 0, 0, 0, 0, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, -1524.37, -927.334, 11.6627, 0, 0, -1.51896, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 100, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 100, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `Column 84`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `undefined`) VALUES + (253, 1, 126, 0, 0, 0, 0, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, -1524.94, -920.765, 11.6717, 0, 0, -1.51945, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 100, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 100, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `Column 84`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `undefined`) VALUES + (254, 1, 126, 0, 0, 0, 0, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, -1525.38, -914.304, 11.6674, 0, 0, -1.49781, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 100, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 100, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `Column 84`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `undefined`) VALUES + (255, 1, 142, 0, 0, 0, 0, 1, 53, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 620.768, -665.364, -0.327586, 0, 0, -0.0217677, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 100, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `Column 84`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `undefined`) VALUES + (256, 1, 143, 0, 0, 0, 0, 12, 35, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 627.834, -666.615, -0.505819, 0, 0, -0.0385386, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 35000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 100, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `Column 84`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `undefined`) VALUES + (258, 1, 146, 0, 0, 0, 0, 34, 74, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 1426.45, -803.581, 11.9599, 0, 0, 1.56821, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 35000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 100, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `Column 84`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `undefined`) VALUES + (259, 1, 104, 0, 0, 0, 0, 52, 74, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 1426.62, -795.533, 11.8912, 0, 0, 1.56813, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 30000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 100, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `Column 84`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `undefined`) VALUES + (260, 1, 93, 0, 0, 0, 0, 39, 78, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 1426.01, -786.663, 12.4028, 0, 0, 1.56679, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 40000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 100, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `Column 84`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `undefined`) VALUES + (261, 4, 547, 0, 0, 0, 0, 10, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 2136.31, -1150.2, 23.9743, 0, 0, 0.748413, 228, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 100, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `Column 84`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `undefined`) VALUES + (262, 4, 516, 0, 0, 0, 0, 122, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 2136.18, -1145.37, 24.6024, 0, 0, 0.789813, 228, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 100, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `Column 84`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `undefined`) VALUES + (263, 4, 466, 0, 0, 0, 0, 78, 76, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 2125.15, -1152.9, 23.7633, 0, 0, -0.783476, 228, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 100, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `Column 84`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `undefined`) VALUES + (264, 4, 410, 0, 0, 0, 0, 10, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 2136.76, -1141.11, 24.8917, 0, 0, 0.786093, 228, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 100, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `Column 84`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `undefined`) VALUES + (265, 4, 445, 0, 0, 0, 0, 45, 45, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 2117.76, -1155.76, 24.126, 0, 0, -0.705611, 228, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 100, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `Column 84`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `undefined`) VALUES + (266, 4, 405, 0, 0, 0, 0, 24, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 2117.4, -1151.21, 24.2249, 0, 0, -0.645516, 228, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 100, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `Column 84`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `undefined`) VALUES + (267, 4, 458, 0, 0, 0, 0, 4, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 2136.36, -1136, 25.5515, 0, 0, 0.777684, 228, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1400, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 100, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `Column 84`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `undefined`) VALUES + (268, 4, 496, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 2118.21, -1145.71, 24.3037, 0, 0, -1.09275, 228, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 100, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `Column 84`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `undefined`) VALUES + (269, 4, 418, 0, 0, 0, 0, 95, 95, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 2118.32, -1141.57, 24.9918, 0, 0, -1.07252, 228, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 100, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `Column 84`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `undefined`) VALUES + (270, 4, 529, 0, 0, 0, 0, 15, 15, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 1537.91, -1669.25, 5.5238, 0, 0, 0.00760863, 4, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 850, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 100, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `Column 84`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `undefined`) VALUES + (271, 4, 549, 0, 0, 0, 0, 79, 39, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 2136.42, -1131.45, 25.3818, 0, 0, 0.778913, 228, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 750, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 100, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `Column 84`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `undefined`) VALUES + (272, 4, 404, 0, 0, 0, 0, 83, 110, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 2119.1, -1128.71, 25.0533, 0, 0, -1.00972, 228, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1100, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 100, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `Column 84`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `undefined`) VALUES + (273, 4, 422, 0, 0, 0, 0, 113, 36, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 2118.91, -1132.57, 25.2674, 0, 0, -1.04863, 228, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 100, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `Column 84`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `undefined`) VALUES + (274, 4, 419, 0, 0, 0, 0, 47, 76, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 2119.37, -1123.81, 25.1752, 0, 0, -0.824258, 228, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1500, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 100, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `Column 84`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `undefined`) VALUES + (275, 4, 559, 0, 0, 0, 0, 13, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 543.558, -1291.16, 16.8736, 0, 0, -0.140231, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 100, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `Column 84`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `undefined`) VALUES + (276, 4, 506, 0, 0, 0, 0, 76, 76, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 539.57, -1291.52, 16.949, 0, 0, 0.0129029, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 100, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `Column 84`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `undefined`) VALUES + (277, 4, 451, 0, 0, 0, 0, 46, 46, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 529.109, -1291.35, 16.9441, 0, 0, 0.007333, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 130000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 100, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `Column 84`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `undefined`) VALUES + (278, 4, 415, 0, 0, 0, 0, 25, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 532.506, -1291.65, 17.0134, 0, 0, 0.0241039, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 100, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `Column 84`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `undefined`) VALUES + (279, 4, 429, 0, 0, 0, 0, 13, 13, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 535.97, -1291.55, 16.9238, 0, 0, -0.00909396, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 100, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `Column 84`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `undefined`) VALUES + (280, 4, 565, 0, 0, 0, 0, 42, 42, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 525.643, -1291.94, 16.8666, 0, 0, 0.0016915, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 100, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `Column 84`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `undefined`) VALUES + (281, 4, 602, 0, 0, 0, 0, 13, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 522.465, -1291.49, 17.0442, 0, 0, -0.0111869, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 60000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 100, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `Column 84`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `undefined`) VALUES + (282, 4, 589, 0, 0, 0, 0, 114, 114, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 518.795, -1291.31, 16.9074, 0, 0, 0.0178289, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 50000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 100, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `Column 84`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `undefined`) VALUES + (283, 4, 519, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 1995.15, -2367.1, 14.4654, 0, 0, 1.57039, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 750000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 100, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `Column 84`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `undefined`) VALUES + (284, 4, 511, 0, 0, 0, 0, 37, 51, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 1994.14, -2388.79, 14.9204, 0, 0, 1.59079, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 400000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 100, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `Column 84`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `undefined`) VALUES + (285, 4, 593, 0, 0, 0, 0, 2, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 1995.97, -2407.75, 14.0243, 0, 0, 1.54898, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 200000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 100, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `Column 84`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `undefined`) VALUES + (286, 4, 553, 0, 0, 0, 0, 55, 23, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 2025.74, -2418.28, 14.8912, 0, 0, 2.46133, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 500000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 100, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `Column 84`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `undefined`) VALUES + (287, 4, 487, 0, 0, 0, 0, 74, 35, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 1995.52, -2332.31, 13.7254, 0, 0, 1.58853, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 300000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 100, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `Column 84`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `undefined`) VALUES + (288, 4, 548, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 1992.24, -2316.92, 15.1977, 0, 0, 1.58742, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 100, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `Column 84`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `undefined`) VALUES + (289, 4, 469, 0, 0, 0, 0, 1, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 1995.62, -2303.97, 13.5477, 0, 0, 1.53661, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 250000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 100, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `Column 84`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `undefined`) VALUES + (290, 4, 417, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 1992.1, -2255.76, 13.6483, 0, 0, 1.54044, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 900000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 100, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `Column 84`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `undefined`) VALUES + (291, 1, 111, 0, 0, 0, 0, 34, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 1312.95, -1011.41, 14.7386, 0, 0, 2.40378, 12, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 2500, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 100, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `Column 84`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `undefined`) VALUES + (292, 1, 111, 0, 0, 0, 0, 14, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 1209.73, -90.2957, 12.9842, 0, 0, -2.2061, 204, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 2500, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 100, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `Column 84`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `undefined`) VALUES + (293, 1, 127, 0, 0, 0, 0, 44, 27, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 331.266, -1573.11, 26.0381, 0, 0, -0.879107, 17, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 100, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `Column 84`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `undefined`) VALUES + (294, 1, 127, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, -73.1733, -349.082, 16.2603, 0, 0, -0.0165034, 17, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 100, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `Column 84`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `undefined`) VALUES + (295, 1, 127, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, -73.4793, -367.01, 16.2607, 0, 0, -0.0240202, 17, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 100, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `Column 84`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `undefined`) VALUES + (296, 4, 529, 0, 0, 0, 0, 7, 7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 2118.54, -1137.2, 24.7795, 0, 0, -1.06224, 228, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 850, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 100, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `Column 84`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `undefined`) VALUES + (297, 4, 596, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 1583.14, -1711.82, 5.60978, 0, 0, -0.0255531, 4, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 100, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `Column 84`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `undefined`) VALUES + (298, 4, 596, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 1578.54, -1711.84, 5.6025, 0, 0, 0.00653891, 4, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 100, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `Column 84`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `undefined`) VALUES + (299, 4, 596, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 1574.12, -1711.96, 5.61197, 0, 0, 0.00792556, 4, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 100, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `Column 84`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `undefined`) VALUES + (300, 2, 221, 0, 0, 0, 0, 30, 72, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, -987.238, -890.147, 12.7976, 0, 0, 0.861982, 201, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 3500, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 100, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `Column 84`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `undefined`) VALUES + (301, 2, 135, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, -975.756, -878.166, 12.9318, 0, 0, 0.813128, 201, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 7000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 100, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `Column 84`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `undefined`) VALUES + (302, 2, 226, 0, 0, 0, 0, 8, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, -966.656, -864.78, 12.8917, 0, 0, 1.16068, 201, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 4000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 100, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `Column 84`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `undefined`) VALUES + (303, 2, 152, 0, 0, 0, 0, 8, 90, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, -971.067, -873.153, 13.2271, 0, 0, 0.834572, 201, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 3200, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 100, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `Column 84`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `undefined`) VALUES + (304, 2, 130, 0, 0, 0, 0, 41, 76, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, -968.206, -868.967, 13.2656, 0, 0, 1.08971, 201, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 4750, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 100, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `Column 84`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `undefined`) VALUES + (305, 2, 140, 0, 0, 0, 0, 32, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, -973.192, -875.855, 12.8791, 0, 0, 0.822114, 201, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 2400, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 100, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `Column 84`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `undefined`) VALUES + (306, 2, 164, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, -989.644, -824.774, 7.12597, 0, 0, 3.12791, 201, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 15000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 100, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `Column 84`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `undefined`) VALUES + (307, 2, 204, 0, 0, 0, 0, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, -965.592, -860.48, 12.8871, 0, 0, 1.1847, 201, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 2500, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 100, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `Column 84`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `undefined`) VALUES + (308, 2, 149, 0, 0, 0, 0, 59, 75, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, -966.155, -855.875, 12.9219, 0, 0, 1.39879, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 3500, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 100, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `Column 84`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `undefined`) VALUES + (309, 2, 205, 0, 0, 0, 0, 41, 29, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, -965.04, -852.363, 12.8994, 0, 0, 1.44163, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 6000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 100, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `Column 84`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `undefined`) VALUES + (310, 2, 197, 0, 0, 0, 0, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, -965.029, -848.421, 12.8642, 0, 0, 1.43081, 201, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 5250, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 100, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `Column 84`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `undefined`) VALUES + (311, 2, 208, 0, 0, 0, 0, 42, 42, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, -964.721, -844.608, 13.1339, 0, 0, 1.52394, 201, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 3250, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 100, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `Column 84`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `undefined`) VALUES + (312, 2, 209, 0, 0, 0, 0, 14, 32, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, -965.016, -841.054, 12.9559, 0, 0, 1.53651, 201, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 4500, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 100, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `Column 84`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `undefined`) VALUES + (313, 2, 211, 0, 0, 0, 0, 3, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, -964.673, -837.367, 12.8576, 0, 0, 1.51387, 201, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 10000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 100, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `Column 84`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `undefined`) VALUES + (314, 2, 222, 0, 0, 0, 0, 33, 78, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, -964.774, -832.762, 12.8844, 0, 0, 1.51272, 201, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 2000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 100, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `Column 84`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `undefined`) VALUES + (315, 2, 230, 0, 0, 0, 0, 48, 65, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, -964.115, -828.989, 13.2367, 0, 0, 1.55643, 201, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 3000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 100, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `Column 84`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `undefined`) VALUES + (316, 2, 219, 0, 0, 0, 0, 32, 42, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, -964.923, -824.966, 13.3115, 0, 0, 1.56249, 201, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 4750, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 100, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `Column 84`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `undefined`) VALUES + (317, 2, 179, 0, 0, 0, 0, 16, 74, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, -985.562, -824.846, 7.45749, 0, 0, -3.1114, 201, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 27500, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 100, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `Column 84`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `undefined`) VALUES + (318, 2, 174, 0, 0, 0, 0, 64, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, -993.506, -825.182, 7.22026, 0, 0, -3.13612, 201, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 25000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 100, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `Column 84`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `undefined`) VALUES + (319, 2, 142, 0, 0, 0, 0, 13, 72, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, -997.382, -825.397, 7.10469, 0, 0, 3.12664, 201, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 17500, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 100, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `Column 84`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `undefined`) VALUES + (320, 2, 193, 0, 0, 0, 0, 53, 53, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, -967.23, -823.644, 6.2945, 0, 0, 1.56423, 201, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 3500, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 100, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `Column 84`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `undefined`) VALUES + (321, 2, 166, 0, 0, 0, 0, 14, 75, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, -967.043, -825.686, 6.29443, 0, 0, 1.61558, 201, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 4000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 100, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `Column 84`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `undefined`) VALUES + (322, 2, 198, 0, 0, 0, 0, 46, 46, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, -967.063, -827.738, 6.43505, 0, 0, 1.54959, 201, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 3000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 100, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `Column 84`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `undefined`) VALUES + (323, 2, 191, 0, 0, 0, 0, 22, 22, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, -967.07, -829.886, 6.31988, 0, 0, 1.58164, 201, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 4500, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 100, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `Column 84`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `undefined`) VALUES + (324, 2, 192, 0, 0, 0, 0, 33, 37, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, -966.719, -831.972, 6.35928, 0, 0, 1.58748, 201, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 100, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `Column 84`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `undefined`) VALUES + (325, 2, 210, 0, 0, 0, 0, 6, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, -1019.12, -844.436, 12.85, 0, 0, -1.61629, 201, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 85000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 100, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `Column 84`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `undefined`) VALUES + (326, 2, 132, 0, 0, 0, 0, 35, 35, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, -1015.09, -848.702, 12.8354, 0, 0, -1.52303, 201, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 75000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 100, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `Column 84`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `undefined`) VALUES + (327, 2, 141, 0, 0, 0, 0, 11, 11, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, -1010.9, -852.751, 12.7769, 0, 0, -1.23101, 201, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 100000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 100, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `Column 84`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `undefined`) VALUES + (328, 2, 159, 0, 0, 0, 0, 36, 36, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, -1007.32, -856.729, 12.8655, 0, 0, -1.08926, 201, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 80000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 100, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `Column 84`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `undefined`) VALUES + (329, 2, 145, 0, 0, 0, 0, 36, 36, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, -1004.13, -860.21, 12.8584, 0, 0, -0.843169, 201, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 80000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 100, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `Column 84`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `undefined`) VALUES + (330, 1, 106, 0, 0, 0, 0, 1, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 212.281, -41.5702, 16.4286, 0, 0, -0.00175398, 5, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 100, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `Column 84`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `undefined`) VALUES + (331, 1, 106, 0, 0, 0, 0, 1, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 220.664, -41.2063, 16.4286, 0, 0, -0.00824242, 5, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 100, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `Column 84`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `undefined`) VALUES + (332, 1, 106, 0, 0, 0, 0, 1, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 240.307, -41.481, 16.4286, 0, 0, -0.00575317, 5, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 100, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `Column 84`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `undefined`) VALUES + (333, 1, 106, 0, 0, 0, 0, 1, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 248.963, -41.6128, 16.4285, 0, 0, -0.0129603, 5, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 100, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `Column 84`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `undefined`) VALUES + (334, 1, 127, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, -72.9919, -331.528, 16.2616, 0, 0, -0.0204993, 17, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 100, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `Column 84`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `undefined`) VALUES + (335, 1, 97, 0, 0, 0, 0, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, -83.3733, -442.729, 16.3754, 0, 0, 1.53779, 9, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 100, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `Column 84`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `undefined`) VALUES + (336, 1, 97, 0, 0, 0, 0, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, -83.3866, -432.508, 16.3646, 0, 0, 1.56684, 9, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 100, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +/*!40000 ALTER TABLE `veh_main` ENABLE KEYS */; + +/*!40101 SET SQL_MODE=IFNULL(@OLD_SQL_MODE, '') */; +/*!40014 SET FOREIGN_KEY_CHECKS=IF(@OLD_FOREIGN_KEY_CHECKS IS NULL, 1, @OLD_FOREIGN_KEY_CHECKS) */; +/*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */; +/*!40111 SET SQL_NOTES=@OLD_SQL_NOTES */; diff --git a/misc/backup/database/asshat-29DEC2020-2147.sql b/misc/backup/database/asshat-29DEC2020-2147.sql new file mode 100644 index 00000000..8fa2def4 --- /dev/null +++ b/misc/backup/database/asshat-29DEC2020-2147.sql @@ -0,0 +1,6979 @@ +-- -------------------------------------------------------- +-- Host: 158.69.238.64 +-- Server version: 5.7.20 - MySQL Community Server (GPL) +-- Server OS: Win64 +-- HeidiSQL Version: 11.1.0.6116 +-- -------------------------------------------------------- + +/*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */; +/*!40101 SET NAMES utf8 */; +/*!50503 SET NAMES utf8mb4 */; +/*!40014 SET @OLD_FOREIGN_KEY_CHECKS=@@FOREIGN_KEY_CHECKS, FOREIGN_KEY_CHECKS=0 */; +/*!40101 SET @OLD_SQL_MODE=@@SQL_MODE, SQL_MODE='NO_AUTO_VALUE_ON_ZERO' */; +/*!40111 SET @OLD_SQL_NOTES=@@SQL_NOTES, SQL_NOTES=0 */; + + +-- Dumping database structure for db24053 +CREATE DATABASE IF NOT EXISTS `db24053` /*!40100 DEFAULT CHARACTER SET utf8 */; +USE `db24053`; + +-- Dumping structure for table db24053.acct_auth +CREATE TABLE IF NOT EXISTS `acct_auth` ( + `acct_auth_id` int(11) NOT NULL AUTO_INCREMENT, + `acct_auth_acct` int(11) NOT NULL DEFAULT '0', + `acct_auth_type` int(11) NOT NULL DEFAULT '0', + `acct_auth_detail` varchar(128) NOT NULL DEFAULT '', + `acct_auth_smscarrier` int(11) NOT NULL, + `acct_auth_verified` tinyint(1) NOT NULL DEFAULT '0', + `acct_auth_when_verified` int(32) NOT NULL DEFAULT '0', + `acct_auth_verifycode` varchar(32) NOT NULL DEFAULT '', + PRIMARY KEY (`acct_auth_id`) +) ENGINE=InnoDB DEFAULT CHARSET=latin1 COMMENT='Accounts - Authentication Methods'; + +-- Dumping data for table db24053.acct_auth: ~0 rows (approximately) +/*!40000 ALTER TABLE `acct_auth` DISABLE KEYS */; +/*!40000 ALTER TABLE `acct_auth` ENABLE KEYS */; + +-- Dumping structure for table db24053.acct_bl +CREATE TABLE IF NOT EXISTS `acct_bl` ( + `acct_bl_id` int(11) NOT NULL, + `acct_bl_ip` int(24) DEFAULT NULL, + `acct_bl_uid` varchar(128) DEFAULT NULL, + `acct_bl_when_added` int(32) DEFAULT NULL, + `acct_bl_acct` int(11) DEFAULT NULL, + `acct_bl_enabled` tinyint(1) DEFAULT '1', + PRIMARY KEY (`acct_bl_id`) +) ENGINE=InnoDB DEFAULT CHARSET=latin1 COMMENT='Accounts - Access Blacklist'; + +-- Dumping data for table db24053.acct_bl: ~0 rows (approximately) +/*!40000 ALTER TABLE `acct_bl` DISABLE KEYS */; +/*!40000 ALTER TABLE `acct_bl` ENABLE KEYS */; + +-- Dumping structure for table db24053.acct_contact +CREATE TABLE IF NOT EXISTS `acct_contact` ( + `acct_contact_id` int(11) NOT NULL AUTO_INCREMENT, + `acct_contact_acct` int(11) NOT NULL DEFAULT '0', + `acct_contact_contact` int(11) NOT NULL DEFAULT '0', + `acct_contact_type` int(11) NOT NULL DEFAULT '0', + `acct_contact_when_added` int(32) NOT NULL DEFAULT '0', + `acct_contact_accepted` tinyint(1) NOT NULL DEFAULT '0', + `acct_contact_when_accepted` int(32) NOT NULL DEFAULT '0', + `acct_contact_deleted` tinyint(1) NOT NULL DEFAULT '0', + PRIMARY KEY (`acct_contact_id`) +) ENGINE=InnoDB DEFAULT CHARSET=latin1 COMMENT='Accounts - Contacts (Friends/Blocked/Etc)'; + +-- Dumping data for table db24053.acct_contact: ~0 rows (approximately) +/*!40000 ALTER TABLE `acct_contact` DISABLE KEYS */; +/*!40000 ALTER TABLE `acct_contact` ENABLE KEYS */; + +-- Dumping structure for table db24053.acct_hotkey +CREATE TABLE IF NOT EXISTS `acct_hotkey` ( + `acct_hotkey_id` int(11) NOT NULL AUTO_INCREMENT, + `acct_hotkey_key` int(11) NOT NULL DEFAULT '0', + `acct_hotkey_cmdstr` varchar(128) NOT NULL DEFAULT '', + `acct_hotkey_enabled` tinyint(1) NOT NULL DEFAULT '1', + `acct_hotkey_when_added` int(32) NOT NULL DEFAULT '0', + `acct_hotkey_acct` int(11) NOT NULL DEFAULT '0', + `acct_hotkey_down` int(11) NOT NULL DEFAULT '0', + PRIMARY KEY (`acct_hotkey_id`) +) ENGINE=InnoDB AUTO_INCREMENT=37 DEFAULT CHARSET=latin1 COMMENT='Accounts - Custom Hotkeys'; + +-- Dumping data for table db24053.acct_hotkey: ~36 rows (approximately) +/*!40000 ALTER TABLE `acct_hotkey` DISABLE KEYS */; +INSERT INTO `acct_hotkey` (`acct_hotkey_id`, `acct_hotkey_key`, `acct_hotkey_cmdstr`, `acct_hotkey_enabled`, `acct_hotkey_when_added`, `acct_hotkey_acct`, `acct_hotkey_down`) VALUES + (1, 105, 'engine', 1, 1609095426, 1, 0); +INSERT INTO `acct_hotkey` (`acct_hotkey_id`, `acct_hotkey_key`, `acct_hotkey_cmdstr`, `acct_hotkey_enabled`, `acct_hotkey_when_added`, `acct_hotkey_acct`, `acct_hotkey_down`) VALUES + (2, 107, 'lights', 1, 1609095427, 1, 0); +INSERT INTO `acct_hotkey` (`acct_hotkey_id`, `acct_hotkey_key`, `acct_hotkey_cmdstr`, `acct_hotkey_enabled`, `acct_hotkey_when_added`, `acct_hotkey_acct`, `acct_hotkey_down`) VALUES + (3, 108, 'lock', 1, 1609095427, 1, 0); +INSERT INTO `acct_hotkey` (`acct_hotkey_id`, `acct_hotkey_key`, `acct_hotkey_cmdstr`, `acct_hotkey_enabled`, `acct_hotkey_when_added`, `acct_hotkey_acct`, `acct_hotkey_down`) VALUES + (4, 102, 'enter', 1, 1609095427, 1, 0); +INSERT INTO `acct_hotkey` (`acct_hotkey_id`, `acct_hotkey_key`, `acct_hotkey_cmdstr`, `acct_hotkey_enabled`, `acct_hotkey_when_added`, `acct_hotkey_acct`, `acct_hotkey_down`) VALUES + (5, 103, 'passenger', 1, 1609095427, 1, 0); +INSERT INTO `acct_hotkey` (`acct_hotkey_id`, `acct_hotkey_key`, `acct_hotkey_cmdstr`, `acct_hotkey_enabled`, `acct_hotkey_when_added`, `acct_hotkey_acct`, `acct_hotkey_down`) VALUES + (6, 105, 'engine', 1, 1609095427, 2, 0); +INSERT INTO `acct_hotkey` (`acct_hotkey_id`, `acct_hotkey_key`, `acct_hotkey_cmdstr`, `acct_hotkey_enabled`, `acct_hotkey_when_added`, `acct_hotkey_acct`, `acct_hotkey_down`) VALUES + (7, 107, 'lights', 1, 1609095427, 2, 0); +INSERT INTO `acct_hotkey` (`acct_hotkey_id`, `acct_hotkey_key`, `acct_hotkey_cmdstr`, `acct_hotkey_enabled`, `acct_hotkey_when_added`, `acct_hotkey_acct`, `acct_hotkey_down`) VALUES + (8, 108, 'lock', 1, 1609095427, 2, 0); +INSERT INTO `acct_hotkey` (`acct_hotkey_id`, `acct_hotkey_key`, `acct_hotkey_cmdstr`, `acct_hotkey_enabled`, `acct_hotkey_when_added`, `acct_hotkey_acct`, `acct_hotkey_down`) VALUES + (9, 102, 'enter', 1, 1609095427, 2, 0); +INSERT INTO `acct_hotkey` (`acct_hotkey_id`, `acct_hotkey_key`, `acct_hotkey_cmdstr`, `acct_hotkey_enabled`, `acct_hotkey_when_added`, `acct_hotkey_acct`, `acct_hotkey_down`) VALUES + (10, 103, 'passenger', 1, 1609095427, 2, 0); +INSERT INTO `acct_hotkey` (`acct_hotkey_id`, `acct_hotkey_key`, `acct_hotkey_cmdstr`, `acct_hotkey_enabled`, `acct_hotkey_when_added`, `acct_hotkey_acct`, `acct_hotkey_down`) VALUES + (11, 105, 'engine', 1, 1609095427, 3, 0); +INSERT INTO `acct_hotkey` (`acct_hotkey_id`, `acct_hotkey_key`, `acct_hotkey_cmdstr`, `acct_hotkey_enabled`, `acct_hotkey_when_added`, `acct_hotkey_acct`, `acct_hotkey_down`) VALUES + (12, 107, 'lights', 1, 1609095427, 3, 0); +INSERT INTO `acct_hotkey` (`acct_hotkey_id`, `acct_hotkey_key`, `acct_hotkey_cmdstr`, `acct_hotkey_enabled`, `acct_hotkey_when_added`, `acct_hotkey_acct`, `acct_hotkey_down`) VALUES + (13, 108, 'lock', 1, 1609095427, 3, 0); +INSERT INTO `acct_hotkey` (`acct_hotkey_id`, `acct_hotkey_key`, `acct_hotkey_cmdstr`, `acct_hotkey_enabled`, `acct_hotkey_when_added`, `acct_hotkey_acct`, `acct_hotkey_down`) VALUES + (14, 102, 'enter', 1, 1609095427, 3, 0); +INSERT INTO `acct_hotkey` (`acct_hotkey_id`, `acct_hotkey_key`, `acct_hotkey_cmdstr`, `acct_hotkey_enabled`, `acct_hotkey_when_added`, `acct_hotkey_acct`, `acct_hotkey_down`) VALUES + (15, 103, 'passenger', 1, 1609095427, 3, 0); +INSERT INTO `acct_hotkey` (`acct_hotkey_id`, `acct_hotkey_key`, `acct_hotkey_cmdstr`, `acct_hotkey_enabled`, `acct_hotkey_when_added`, `acct_hotkey_acct`, `acct_hotkey_down`) VALUES + (16, 105, 'engine', 1, 1609095427, 4, 0); +INSERT INTO `acct_hotkey` (`acct_hotkey_id`, `acct_hotkey_key`, `acct_hotkey_cmdstr`, `acct_hotkey_enabled`, `acct_hotkey_when_added`, `acct_hotkey_acct`, `acct_hotkey_down`) VALUES + (17, 107, 'lights', 1, 1609095428, 4, 0); +INSERT INTO `acct_hotkey` (`acct_hotkey_id`, `acct_hotkey_key`, `acct_hotkey_cmdstr`, `acct_hotkey_enabled`, `acct_hotkey_when_added`, `acct_hotkey_acct`, `acct_hotkey_down`) VALUES + (18, 108, 'lock', 1, 1609095428, 4, 0); +INSERT INTO `acct_hotkey` (`acct_hotkey_id`, `acct_hotkey_key`, `acct_hotkey_cmdstr`, `acct_hotkey_enabled`, `acct_hotkey_when_added`, `acct_hotkey_acct`, `acct_hotkey_down`) VALUES + (19, 102, 'enter', 1, 1609095428, 4, 0); +INSERT INTO `acct_hotkey` (`acct_hotkey_id`, `acct_hotkey_key`, `acct_hotkey_cmdstr`, `acct_hotkey_enabled`, `acct_hotkey_when_added`, `acct_hotkey_acct`, `acct_hotkey_down`) VALUES + (20, 103, 'passenger', 1, 1609095428, 4, 0); +INSERT INTO `acct_hotkey` (`acct_hotkey_id`, `acct_hotkey_key`, `acct_hotkey_cmdstr`, `acct_hotkey_enabled`, `acct_hotkey_when_added`, `acct_hotkey_acct`, `acct_hotkey_down`) VALUES + (21, 105, 'engine', 1, 1609095428, 5, 0); +INSERT INTO `acct_hotkey` (`acct_hotkey_id`, `acct_hotkey_key`, `acct_hotkey_cmdstr`, `acct_hotkey_enabled`, `acct_hotkey_when_added`, `acct_hotkey_acct`, `acct_hotkey_down`) VALUES + (22, 107, 'lights', 1, 1609095428, 5, 0); +INSERT INTO `acct_hotkey` (`acct_hotkey_id`, `acct_hotkey_key`, `acct_hotkey_cmdstr`, `acct_hotkey_enabled`, `acct_hotkey_when_added`, `acct_hotkey_acct`, `acct_hotkey_down`) VALUES + (23, 108, 'lock', 1, 1609095428, 5, 0); +INSERT INTO `acct_hotkey` (`acct_hotkey_id`, `acct_hotkey_key`, `acct_hotkey_cmdstr`, `acct_hotkey_enabled`, `acct_hotkey_when_added`, `acct_hotkey_acct`, `acct_hotkey_down`) VALUES + (24, 102, 'enter', 1, 1609095428, 5, 0); +INSERT INTO `acct_hotkey` (`acct_hotkey_id`, `acct_hotkey_key`, `acct_hotkey_cmdstr`, `acct_hotkey_enabled`, `acct_hotkey_when_added`, `acct_hotkey_acct`, `acct_hotkey_down`) VALUES + (25, 103, 'passenger', 1, 1609095428, 5, 0); +INSERT INTO `acct_hotkey` (`acct_hotkey_id`, `acct_hotkey_key`, `acct_hotkey_cmdstr`, `acct_hotkey_enabled`, `acct_hotkey_when_added`, `acct_hotkey_acct`, `acct_hotkey_down`) VALUES + (26, 105, 'engine', 1, 1609095428, 6, 0); +INSERT INTO `acct_hotkey` (`acct_hotkey_id`, `acct_hotkey_key`, `acct_hotkey_cmdstr`, `acct_hotkey_enabled`, `acct_hotkey_when_added`, `acct_hotkey_acct`, `acct_hotkey_down`) VALUES + (27, 107, 'lights', 1, 1609095428, 6, 0); +INSERT INTO `acct_hotkey` (`acct_hotkey_id`, `acct_hotkey_key`, `acct_hotkey_cmdstr`, `acct_hotkey_enabled`, `acct_hotkey_when_added`, `acct_hotkey_acct`, `acct_hotkey_down`) VALUES + (28, 108, 'lock', 1, 1609095428, 6, 0); +INSERT INTO `acct_hotkey` (`acct_hotkey_id`, `acct_hotkey_key`, `acct_hotkey_cmdstr`, `acct_hotkey_enabled`, `acct_hotkey_when_added`, `acct_hotkey_acct`, `acct_hotkey_down`) VALUES + (29, 102, 'enter', 1, 1609095428, 6, 0); +INSERT INTO `acct_hotkey` (`acct_hotkey_id`, `acct_hotkey_key`, `acct_hotkey_cmdstr`, `acct_hotkey_enabled`, `acct_hotkey_when_added`, `acct_hotkey_acct`, `acct_hotkey_down`) VALUES + (30, 103, 'passenger', 1, 1609095428, 6, 0); +INSERT INTO `acct_hotkey` (`acct_hotkey_id`, `acct_hotkey_key`, `acct_hotkey_cmdstr`, `acct_hotkey_enabled`, `acct_hotkey_when_added`, `acct_hotkey_acct`, `acct_hotkey_down`) VALUES + (31, 105, 'engine', 1, 1609095584, 7, 0); +INSERT INTO `acct_hotkey` (`acct_hotkey_id`, `acct_hotkey_key`, `acct_hotkey_cmdstr`, `acct_hotkey_enabled`, `acct_hotkey_when_added`, `acct_hotkey_acct`, `acct_hotkey_down`) VALUES + (32, 107, 'lights', 1, 1609095584, 7, 0); +INSERT INTO `acct_hotkey` (`acct_hotkey_id`, `acct_hotkey_key`, `acct_hotkey_cmdstr`, `acct_hotkey_enabled`, `acct_hotkey_when_added`, `acct_hotkey_acct`, `acct_hotkey_down`) VALUES + (33, 108, 'lock', 1, 1609095585, 7, 0); +INSERT INTO `acct_hotkey` (`acct_hotkey_id`, `acct_hotkey_key`, `acct_hotkey_cmdstr`, `acct_hotkey_enabled`, `acct_hotkey_when_added`, `acct_hotkey_acct`, `acct_hotkey_down`) VALUES + (34, 102, 'enter', 1, 1609095585, 7, 0); +INSERT INTO `acct_hotkey` (`acct_hotkey_id`, `acct_hotkey_key`, `acct_hotkey_cmdstr`, `acct_hotkey_enabled`, `acct_hotkey_when_added`, `acct_hotkey_acct`, `acct_hotkey_down`) VALUES + (35, 103, 'passenger', 1, 1609095585, 7, 0); +INSERT INTO `acct_hotkey` (`acct_hotkey_id`, `acct_hotkey_key`, `acct_hotkey_cmdstr`, `acct_hotkey_enabled`, `acct_hotkey_when_added`, `acct_hotkey_acct`, `acct_hotkey_down`) VALUES + (36, 109, 'cursor', 1, 1609095585, 1, 0); +/*!40000 ALTER TABLE `acct_hotkey` ENABLE KEYS */; + +-- Dumping structure for table db24053.acct_main +CREATE TABLE IF NOT EXISTS `acct_main` ( + `acct_id` int(11) NOT NULL AUTO_INCREMENT, + `acct_name` varchar(32) NOT NULL DEFAULT '', + `acct_pass` varchar(512) NOT NULL DEFAULT '', + `acct_email` varchar(128) NOT NULL DEFAULT '', + `acct_settings` int(11) NOT NULL DEFAULT '0', + `acct_staff_flags` int(11) NOT NULL DEFAULT '0', + `acct_staff_title` varchar(32) NOT NULL DEFAULT '', + `acct_mod_flags` int(11) NOT NULL DEFAULT '0', + `acct_irc` varchar(64) NOT NULL DEFAULT '', + `acct_discord` int(64) NOT NULL DEFAULT '0', + `acct_ip` varchar(50) NOT NULL DEFAULT '', + PRIMARY KEY (`acct_id`) +) ENGINE=InnoDB AUTO_INCREMENT=8 DEFAULT CHARSET=latin1 COMMENT='Accounts'; + +-- Dumping data for table db24053.acct_main: ~6 rows (approximately) +/*!40000 ALTER TABLE `acct_main` DISABLE KEYS */; +INSERT INTO `acct_main` (`acct_id`, `acct_name`, `acct_pass`, `acct_email`, `acct_settings`, `acct_staff_flags`, `acct_staff_title`, `acct_mod_flags`, `acct_irc`, `acct_discord`, `acct_ip`) VALUES + (1, 'Vortrex', '4271461D21D2A465D0FF2B7082A9136F1DACD78127C805E2B33292AAA200E5682F4B7D4AB426224222B24AA1183C4D02FEE983030996CF3963746AE1C46A375D', 'adrianbram@gmail.com', 0, -1, 'Scripter', 0, '', 0, '1809583893'); +INSERT INTO `acct_main` (`acct_id`, `acct_name`, `acct_pass`, `acct_email`, `acct_settings`, `acct_staff_flags`, `acct_staff_title`, `acct_mod_flags`, `acct_irc`, `acct_discord`, `acct_ip`) VALUES + (2, 'maxaxle', '33A31BF6E32BD3BCCE1D2F2AB3B0D0768CEDAD30BC21A2EFA5F8A66BD7333A5545EFC773830E9F0B3C7AA285E3FDF60BADD1E93401AF9FC26CC25BB77238D750', '', 0, -1, 'Moderator', 0, '', 0, '1228971253'); +INSERT INTO `acct_main` (`acct_id`, `acct_name`, `acct_pass`, `acct_email`, `acct_settings`, `acct_staff_flags`, `acct_staff_title`, `acct_mod_flags`, `acct_irc`, `acct_discord`, `acct_ip`) VALUES + (3, 'Vortrex2', '26B8F7687300F0BF90F79BEC5E84CCD57582DD09C345F256EBE99057595302E25C1958472172D4689D7B2DA607584AC2420D5909FEDB3E2B7A0F73A517A8AC1C', 'adrianbram@gmail.com', 0, 0, 'Scripter', 0, '', 0, '1809583893'); +INSERT INTO `acct_main` (`acct_id`, `acct_name`, `acct_pass`, `acct_email`, `acct_settings`, `acct_staff_flags`, `acct_staff_title`, `acct_mod_flags`, `acct_irc`, `acct_discord`, `acct_ip`) VALUES + (4, 'Vortrex0', '87222437E0C7717BD9E5EC9E9FCE4DD258638F4B78AEC613A45F1161BC62268B077949984604076CC3F0959B55FEB1F1031C725FB2928A973CEE69CFFF1CC9DB', 'adrianbram@gmail.com', 0, 0, '', 0, '', 0, '2130706433'); +INSERT INTO `acct_main` (`acct_id`, `acct_name`, `acct_pass`, `acct_email`, `acct_settings`, `acct_staff_flags`, `acct_staff_title`, `acct_mod_flags`, `acct_irc`, `acct_discord`, `acct_ip`) VALUES + (6, 'Vortrex1', 'EB77E84113C336288AA4B9AA2A8963ABF88ED15E23B51285C81FC6565FBB2F837DB5891AE63A1B7BA9B0FA5FD705FD7B335E7F83294641E3BFFB35EF36E1CC1C', 'adrianbram@gmail.com', 0, 0, '', 0, '', 0, ''); +INSERT INTO `acct_main` (`acct_id`, `acct_name`, `acct_pass`, `acct_email`, `acct_settings`, `acct_staff_flags`, `acct_staff_title`, `acct_mod_flags`, `acct_irc`, `acct_discord`, `acct_ip`) VALUES + (7, 'Vortrex3', 'D594569434FF2C84A326080F52D86DC829B376344AE8C9A9378E794DAF0B495629E1861D5ED6AD33AE9B13EC74986203599F8C8B71C58082AEE651B655A2D69A', 'adrianbram@gmail.com', 0, 0, '', 0, '', 0, '1809583893'); +/*!40000 ALTER TABLE `acct_main` ENABLE KEYS */; + +-- Dumping structure for table db24053.acct_msg +CREATE TABLE IF NOT EXISTS `acct_msg` ( + `acct_msg_id` int(11) NOT NULL AUTO_INCREMENT, + `acct_msg_acct` int(11) NOT NULL DEFAULT '0', + `acct_msg_who_sent` int(11) NOT NULL DEFAULT '0', + `acct_msg_when_sent` int(32) NOT NULL DEFAULT '0', + `acct_msg_when_read` int(32) NOT NULL DEFAULT '0', + `acct_msg_deleted` tinyint(1) NOT NULL DEFAULT '0', + `acct_msg_when_deleted` int(32) NOT NULL DEFAULT '0', + `acct_msg_folder` int(11) NOT NULL DEFAULT '0', + `acct_msg_message` text NOT NULL, + PRIMARY KEY (`acct_msg_id`) +) ENGINE=InnoDB DEFAULT CHARSET=latin1 COMMENT='Accounts - Private Messages (Mail)'; + +-- Dumping data for table db24053.acct_msg: ~0 rows (approximately) +/*!40000 ALTER TABLE `acct_msg` DISABLE KEYS */; +/*!40000 ALTER TABLE `acct_msg` ENABLE KEYS */; + +-- Dumping structure for table db24053.acct_note +CREATE TABLE IF NOT EXISTS `acct_note` ( + `acct_note_id` int(11) NOT NULL AUTO_INCREMENT, + `acct_note_acct` int(11) NOT NULL DEFAULT '0', + `acct_server` int(11) NOT NULL DEFAULT '0', + `acct_note_who_added` int(11) NOT NULL DEFAULT '0', + `acct_note_when_added` int(32) NOT NULL DEFAULT '0', + `acct_note_message` varchar(255) NOT NULL DEFAULT '', + `acct_note_deleted` tinyint(1) NOT NULL DEFAULT '0', + `acct_note_who_deleted` int(11) NOT NULL DEFAULT '0', + `acct_note_when_deleted` int(32) NOT NULL DEFAULT '0', + PRIMARY KEY (`acct_note_id`) +) ENGINE=InnoDB DEFAULT CHARSET=latin1 COMMENT='Accounts - Staff Notes'; + +-- Dumping data for table db24053.acct_note: ~0 rows (approximately) +/*!40000 ALTER TABLE `acct_note` DISABLE KEYS */; +/*!40000 ALTER TABLE `acct_note` ENABLE KEYS */; + +-- Dumping structure for table db24053.acct_wl +CREATE TABLE IF NOT EXISTS `acct_wl` ( + `acct_wl_id` int(11) NOT NULL AUTO_INCREMENT, + `acct_wl_ip` int(24) NOT NULL DEFAULT '0', + `acct_wl_uid` varchar(128) NOT NULL DEFAULT '', + `acct_wl_when_added` int(32) NOT NULL DEFAULT '0', + `acct_wl_acct` int(11) NOT NULL DEFAULT '0', + `acct_wl_enabled` tinyint(1) NOT NULL DEFAULT '0', + PRIMARY KEY (`acct_wl_id`) +) ENGINE=InnoDB DEFAULT CHARSET=latin1 COMMENT='Accounts - Access Whitelist'; + +-- Dumping data for table db24053.acct_wl: ~0 rows (approximately) +/*!40000 ALTER TABLE `acct_wl` DISABLE KEYS */; +/*!40000 ALTER TABLE `acct_wl` ENABLE KEYS */; + +-- Dumping structure for table db24053.ac_script_bl +CREATE TABLE IF NOT EXISTS `ac_script_bl` ( + `ac_script_bl_id` int(11) NOT NULL AUTO_INCREMENT, + `ac_script_bl_server` int(11) NOT NULL DEFAULT '0', + `ac_script_bl_name` varchar(50) NOT NULL DEFAULT '', + `ac_script_bl_enabled` int(11) NOT NULL DEFAULT '0', + PRIMARY KEY (`ac_script_bl_id`) +) ENGINE=InnoDB AUTO_INCREMENT=4 DEFAULT CHARSET=utf8 COMMENT='Anticheat - Blacklisted Scripts'; + +-- Dumping data for table db24053.ac_script_bl: ~3 rows (approximately) +/*!40000 ALTER TABLE `ac_script_bl` DISABLE KEYS */; +INSERT INTO `ac_script_bl` (`ac_script_bl_id`, `ac_script_bl_server`, `ac_script_bl_name`, `ac_script_bl_enabled`) VALUES + (1, 4, 'load_modmanager', 1); +INSERT INTO `ac_script_bl` (`ac_script_bl_id`, `ac_script_bl_server`, `ac_script_bl_name`, `ac_script_bl_enabled`) VALUES + (2, 1, 'info', 1); +INSERT INTO `ac_script_bl` (`ac_script_bl_id`, `ac_script_bl_server`, `ac_script_bl_name`, `ac_script_bl_enabled`) VALUES + (3, 1, 'info2', 1); +/*!40000 ALTER TABLE `ac_script_bl` ENABLE KEYS */; + +-- Dumping structure for table db24053.ac_script_wl +CREATE TABLE IF NOT EXISTS `ac_script_wl` ( + `ac_script_wl_id` int(11) NOT NULL AUTO_INCREMENT, + `ac_script_wl_server` int(11) NOT NULL DEFAULT '0', + `ac_script_wl_name` varchar(50) NOT NULL DEFAULT '', + `ac_script_wl_enabled` int(11) NOT NULL DEFAULT '1', + PRIMARY KEY (`ac_script_wl_id`) USING BTREE +) ENGINE=InnoDB AUTO_INCREMENT=7 DEFAULT CHARSET=utf8 COMMENT='Anticheat - Whitelisted Scripts'; + +-- Dumping data for table db24053.ac_script_wl: ~5 rows (approximately) +/*!40000 ALTER TABLE `ac_script_wl` DISABLE KEYS */; +INSERT INTO `ac_script_wl` (`ac_script_wl_id`, `ac_script_wl_server`, `ac_script_wl_name`, `ac_script_wl_enabled`) VALUES + (1, 4, 'sync', 1); +INSERT INTO `ac_script_wl` (`ac_script_wl_id`, `ac_script_wl_server`, `ac_script_wl_name`, `ac_script_wl_enabled`) VALUES + (2, 4, 'gtac', 1); +INSERT INTO `ac_script_wl` (`ac_script_wl_id`, `ac_script_wl_server`, `ac_script_wl_name`, `ac_script_wl_enabled`) VALUES + (3, 4, 'network_main', 1); +INSERT INTO `ac_script_wl` (`ac_script_wl_id`, `ac_script_wl_server`, `ac_script_wl_name`, `ac_script_wl_enabled`) VALUES + (4, 4, 'mpcellphone', 1); +INSERT INTO `ac_script_wl` (`ac_script_wl_id`, `ac_script_wl_server`, `ac_script_wl_name`, `ac_script_wl_enabled`) VALUES + (5, 4, 'speechcontrol_net', 1); +/*!40000 ALTER TABLE `ac_script_wl` ENABLE KEYS */; + +-- Dumping structure for table db24053.atm_main +CREATE TABLE IF NOT EXISTS `atm_main` ( + `atm_id` int(11) NOT NULL AUTO_INCREMENT, + `atm_server` tinyint(2) NOT NULL DEFAULT '0', + `atm_pos_x` float NOT NULL DEFAULT '0', + `atm_pos_y` float NOT NULL DEFAULT '0', + `atm_pos_z` float NOT NULL DEFAULT '0', + `atm_fee` int(11) NOT NULL DEFAULT '0', + `atm_disabled` tinyint(1) NOT NULL DEFAULT '0', + PRIMARY KEY (`atm_id`) +) ENGINE=InnoDB DEFAULT CHARSET=latin1 COMMENT='ATMs'; + +-- Dumping data for table db24053.atm_main: ~0 rows (approximately) +/*!40000 ALTER TABLE `atm_main` DISABLE KEYS */; +/*!40000 ALTER TABLE `atm_main` ENABLE KEYS */; + +-- Dumping structure for table db24053.atm_use +CREATE TABLE IF NOT EXISTS `atm_use` ( + `atm_use_id` int(11) NOT NULL AUTO_INCREMENT, + `atm_use_atm` int(11) NOT NULL DEFAULT '0', + `atm_use_bankacct` int(11) NOT NULL DEFAULT '0', + `atm_use_amount` int(11) NOT NULL DEFAULT '0', + `atm_use_when` int(32) NOT NULL DEFAULT '0', + `atm_use_balance_before` int(11) NOT NULL DEFAULT '0', + `atm_use_balance_after` int(11) NOT NULL DEFAULT '0', + `atm_use_result` int(11) NOT NULL DEFAULT '0', + PRIMARY KEY (`atm_use_id`) +) ENGINE=InnoDB DEFAULT CHARSET=latin1 COMMENT='ATMs - Usage'; + +-- Dumping data for table db24053.atm_use: ~0 rows (approximately) +/*!40000 ALTER TABLE `atm_use` DISABLE KEYS */; +/*!40000 ALTER TABLE `atm_use` ENABLE KEYS */; + +-- Dumping structure for table db24053.bank_main +CREATE TABLE IF NOT EXISTS `bank_main` ( + `bank_id` int(11) NOT NULL AUTO_INCREMENT, + `bank_server` int(11) NOT NULL DEFAULT '0', + `bank_name` varchar(128) NOT NULL DEFAULT 'Unnamed', + `bank_active` tinyint(1) NOT NULL DEFAULT '1', + `ban_try_when_tried` int(32) NOT NULL DEFAULT '0', + `ban_try_ban_id` int(11) NOT NULL DEFAULT '0', + PRIMARY KEY (`bank_id`) +) ENGINE=InnoDB DEFAULT CHARSET=latin1 COMMENT='Bans - Connection Attempts'; + +-- Dumping data for table db24053.bank_main: ~0 rows (approximately) +/*!40000 ALTER TABLE `bank_main` DISABLE KEYS */; +/*!40000 ALTER TABLE `bank_main` ENABLE KEYS */; + +-- Dumping structure for table db24053.ban_main +CREATE TABLE IF NOT EXISTS `ban_main` ( + `ban_id` int(11) NOT NULL AUTO_INCREMENT, + `ban_detail` int(11) NOT NULL DEFAULT '0', + `ban_server` tinyint(2) NOT NULL DEFAULT '0', + `ban_type` tinyint(1) NOT NULL DEFAULT '0', + `ban_ip_start` int(24) NOT NULL DEFAULT '0', + `ban_ip_end` int(24) NOT NULL DEFAULT '0', + `ban_uid` varchar(256) NOT NULL DEFAULT '', + `ban_who_added` int(11) NOT NULL DEFAULT '0', + `ban_when_added` int(32) NOT NULL DEFAULT '0', + `ban_reason` varchar(255) NOT NULL DEFAULT '', + `ban_deleted` tinyint(1) NOT NULL DEFAULT '0', + `ban_who_deleted` int(11) NOT NULL DEFAULT '0', + `ban_when_deleted` int(32) NOT NULL DEFAULT '0', + `ban_when_end` int(32) NOT NULL DEFAULT '0', + PRIMARY KEY (`ban_id`) +) ENGINE=InnoDB DEFAULT CHARSET=latin1 COMMENT='Bans'; + +-- Dumping data for table db24053.ban_main: ~0 rows (approximately) +/*!40000 ALTER TABLE `ban_main` DISABLE KEYS */; +/*!40000 ALTER TABLE `ban_main` ENABLE KEYS */; + +-- Dumping structure for table db24053.ban_try +CREATE TABLE IF NOT EXISTS `ban_try` ( + `ban_try_id` int(11) NOT NULL AUTO_INCREMENT, + `ban_try_server` tinyint(2) NOT NULL DEFAULT '0', + `ban_try_ip` int(24) NOT NULL DEFAULT '0', + `ban_try_uid` varchar(128) NOT NULL DEFAULT '', + `ban_try_when_tried` int(32) NOT NULL DEFAULT '0', + `ban_try_ban_id` int(11) NOT NULL DEFAULT '0', + PRIMARY KEY (`ban_try_id`) +) ENGINE=InnoDB DEFAULT CHARSET=latin1 COMMENT='Bans - Connection Attempts'; + +-- Dumping data for table db24053.ban_try: ~0 rows (approximately) +/*!40000 ALTER TABLE `ban_try` DISABLE KEYS */; +/*!40000 ALTER TABLE `ban_try` ENABLE KEYS */; + +-- Dumping structure for table db24053.biz_buy +CREATE TABLE IF NOT EXISTS `biz_buy` ( + `biz_buy_id` int(11) NOT NULL AUTO_INCREMENT, + `biz_buy_biz` int(11) NOT NULL DEFAULT '0', + `biz_buy_sacct` int(11) NOT NULL DEFAULT '0', + `biz_buy_amount` int(11) NOT NULL DEFAULT '0', + `biz_buy_prod` int(11) NOT NULL DEFAULT '0', + `biz_buy_tip` int(11) NOT NULL DEFAULT '0', + `biz_buy_result` tinyint(4) NOT NULL DEFAULT '0', + PRIMARY KEY (`biz_buy_id`) +) ENGINE=InnoDB DEFAULT CHARSET=latin1 COMMENT='Businesses - Purchases'; + +-- Dumping data for table db24053.biz_buy: ~0 rows (approximately) +/*!40000 ALTER TABLE `biz_buy` DISABLE KEYS */; +/*!40000 ALTER TABLE `biz_buy` ENABLE KEYS */; + +-- Dumping structure for table db24053.biz_loc +CREATE TABLE IF NOT EXISTS `biz_loc` ( + `biz_loc_id` int(11) NOT NULL AUTO_INCREMENT, + `biz_loc_server` int(11) NOT NULL DEFAULT '0', + `biz_loc_name` varchar(128) NOT NULL DEFAULT '', + `biz_loc_type` int(11) NOT NULL DEFAULT '0', + `biz_loc_biz` int(11) NOT NULL DEFAULT '0', + `biz_loc_enabled` int(11) NOT NULL DEFAULT '0', + `biz_loc_pos_x` float NOT NULL DEFAULT '0', + `biz_loc_pos_y` float NOT NULL DEFAULT '0', + `biz_loc_pos_z` float NOT NULL DEFAULT '0', + `biz_loc_rot_z` float NOT NULL DEFAULT '0', + `biz_loc_int` int(11) NOT NULL DEFAULT '0', + `biz_loc_vw` int(11) NOT NULL DEFAULT '0', + PRIMARY KEY (`biz_loc_id`) USING BTREE +) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Businesses - Locations'; + +-- Dumping data for table db24053.biz_loc: ~0 rows (approximately) +/*!40000 ALTER TABLE `biz_loc` DISABLE KEYS */; +/*!40000 ALTER TABLE `biz_loc` ENABLE KEYS */; + +-- Dumping structure for table db24053.biz_main +CREATE TABLE IF NOT EXISTS `biz_main` ( + `biz_id` int(11) NOT NULL AUTO_INCREMENT, + `biz_server` int(11) NOT NULL DEFAULT '0', + `biz_name` varchar(40) NOT NULL DEFAULT 'Unnamed Business', + `biz_type` int(11) NOT NULL DEFAULT '0', + `biz_buy_price` int(11) NOT NULL DEFAULT '0', + `biz_owner_type` int(11) NOT NULL DEFAULT '0', + `biz_owner_id` int(11) NOT NULL DEFAULT '0', + `biz_entrance_pos_x` float NOT NULL DEFAULT '0', + `biz_entrance_pos_y` float NOT NULL DEFAULT '0', + `biz_entrance_pos_z` float NOT NULL DEFAULT '0', + `biz_entrance_rot_z` float NOT NULL DEFAULT '0', + `biz_entrance_int` int(11) NOT NULL DEFAULT '0', + `biz_entrance_vw` int(11) NOT NULL DEFAULT '0', + `biz_entrance_pickup` int(11) NOT NULL, + `biz_entrance_blip` int(11) NOT NULL, + `biz_exit_pos_x` float NOT NULL DEFAULT '0', + `biz_exit_pos_y` float NOT NULL DEFAULT '0', + `biz_exit_pos_z` float NOT NULL DEFAULT '0', + `biz_exit_rot_z` float NOT NULL DEFAULT '0', + `biz_exit_int` int(11) NOT NULL DEFAULT '0', + `biz_exit_vw` int(11) NOT NULL DEFAULT '0', + `biz_exit_pickup` int(11) NOT NULL, + `biz_exit_blip` int(11) NOT NULL, + `biz_misc_customext` int(11) NOT NULL DEFAULT '0', + `biz_misc_customint` int(11) NOT NULL DEFAULT '0', + `biz_supply_pos_x` float NOT NULL DEFAULT '0', + `biz_supply_pos_y` float NOT NULL DEFAULT '0', + `biz_supply_pos_z` float NOT NULL DEFAULT '0', + `biz_buy_pos_x` float NOT NULL DEFAULT '0', + `biz_buy_pos_y` float NOT NULL DEFAULT '0', + `biz_buy_pos_z` float NOT NULL DEFAULT '0', + `biz_buy_rot_z` float NOT NULL DEFAULT '0', + `biz_misc_customvw` int(11) NOT NULL DEFAULT '0', + `biz_locked` int(11) NOT NULL DEFAULT '0', + `biz_till` int(11) NOT NULL DEFAULT '0', + `biz_entrance_fee` int(11) NOT NULL DEFAULT '0', + `biz_deleted` int(11) NOT NULL DEFAULT '0', + `biz_who_deleted` int(11) NOT NULL DEFAULT '0', + `biz_when_deleted` int(32) NOT NULL DEFAULT '0', + PRIMARY KEY (`biz_id`) USING BTREE +) ENGINE=InnoDB AUTO_INCREMENT=290 DEFAULT CHARSET=latin1 COMMENT='Businesses'; + +-- Dumping data for table db24053.biz_main: ~204 rows (approximately) +/*!40000 ALTER TABLE `biz_main` DISABLE KEYS */; +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`) VALUES + (1, 4, 'Unnamed Business', 5, 30000, 0, 0, -90.2436, -1219.76, 2.71, 350.178, 0, 0, 0, 0, -2026.9, -104.128, 1035.17, 179.07, 3, 0, 0, 0, 0, 0, -93.521, -1241.12, 1.92454, -104.326, -1213.02, 2.76131, 174.391, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`) VALUES + (2, 4, 'Unnamed Business', 8, 30000, 0, 0, 2078.66, -1582.38, 13.4873, 337.053, 0, 0, 0, 0, -25.8433, -187.446, 1003.55, 4.72576, 17, 0, 0, 0, 0, 0, 1795.3, -1166.21, 23.8281, 2127.1, -1134.72, 25.5488, 351.147, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`) VALUES + (4, 4, 'Pawn', 4, 30000, 0, 0, 984.176, -1336.44, 13.5469, 199.037, 0, 0, 0, 0, 315.799, -143.53, 999.602, 1.01837, 7, 0, 0, 0, 0, 1, 1872.19, -1621.2, 13.5469, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`) VALUES + (5, 4, 'Unnamed Business', 1, 30000, 0, 0, 1653.2, 1470.7, 1152.43, 299.874, 0, 0, 0, 0, -25.9841, -187.986, 1003.55, 357.842, 17, 0, 0, 0, 0, 0, 1837.36, -1434.91, 13.5625, 1704.68, -1587.22, 13.5383, 87.0352, 4, 0, 0, 0, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`) VALUES + (6, 4, 'Unnamed Business', 3, 30000, 0, 0, 1333.37, -1864.21, 13.5469, 154.702, 0, 0, 0, 0, 6.6435, -31.4626, 1003.55, 191.882, 10, 0, 0, 0, 0, 1, 1565.82, -1167.49, 24.0781, 1647.94, -2483.22, 13.5547, 87.3502, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`) VALUES + (7, 4, 'Unnamed Business', 5, 30000, 0, 0, 1026.38, -1927.19, 12.7989, 154.459, 0, 0, 0, 0, 1226.77, -813.652, 1084.01, 353.088, 5, 0, 0, 0, 0, 1, 1915.87, -1790.69, 13.3906, 1026.22, -1915.85, 12.8776, 266.223, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`) VALUES + (8, 4, 'Unnamed Business', 3, 30000, 0, 0, -172.128, -1825.41, 55.408, 215.571, 0, 0, 0, 0, 1445.44, -1294.74, 13.5469, 100.653, 0, 0, 0, 0, 1, 0, 1448.97, -1285.72, 13.5469, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`) VALUES + (10, 4, 'Unnamed Business', 3, 30000, 0, 0, 1525.41, -1671.54, 6.21875, 83.7091, 0, 0, 0, 0, 372.532, -133.314, 1001.49, 359.576, 5, 0, 0, 0, 0, 0, -2434.94, -195.644, 35.3203, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`) VALUES + (11, 4, 'Unnamed Business', 8, 30000, 0, 0, 1070.49, -1873.66, 13.5469, 274.819, 0, 0, 0, 0, -31.0053, -91.6372, 1003.55, 0.680122, 18, 0, 0, 0, 0, 0, -66.1294, -1169.59, 1.86967, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`) VALUES + (12, 4, 'Unnamed Business', 4, 30000, 0, 0, 1368.98, -1279.67, 13.5469, 262.027, 0, 0, 0, 0, 315.902, -143.025, 999.602, 5.53311, 7, 0, 0, 0, 0, 0, 1365.63, -1285.08, 13.5469, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`) VALUES + (13, 4, 'Unnamed Business', 2, 30000, 0, 0, 1709.03, 1443.96, 1145.78, 281.106, 0, 0, 0, 0, -2029.62, -119.618, 1035.17, 1.0423, 3, 0, 0, 0, 0, 0, -1579.28, 2652.63, 55.8359, -1600.75, 2645.28, 57.6595, 120.282, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`) VALUES + (14, 4, 'Unnamed Business', 8, 30000, 0, 0, 1343.73, -1506.56, 13.5469, 234.154, 0, 0, 0, 0, -25.8373, -188.091, 1003.55, 355.897, 17, 0, 0, 0, 0, 0, 2156.02, -1020.91, 62.7113, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`) VALUES + (16, 4, 'Unnamed Business', 1, 30000, 0, 0, -1676.24, 432.104, 7.17969, 33.0359, 0, 0, 0, 0, -27.3621, -57.8246, 1003.55, 179.037, 6, 0, 0, 0, 1, 0, -1661.84, 442.168, 7.17969, -1591.62, 2657.25, 55.7501, 356.386, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`) VALUES + (17, 4, 'Unnamed Business', 8, 30000, 0, 0, 667.208, -1770.07, 13.6395, 164.522, 0, 0, 0, 0, -25.8373, -188.091, 1003.55, 355.897, 17, 0, 0, 0, 0, 0, 1844.34, -1860.84, 13.3828, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`) VALUES + (18, 4, 'Unnamed Business', 1, 30000, 0, 0, 1000.3, -920.204, 42.3281, 96.2681, 0, 0, 0, 0, -31.1112, -91.8577, 1003.55, 0.052338, 18, 0, 0, 0, 0, 0, 1022.79, -916.642, 42.1797, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`) VALUES + (19, 4, 'Unnamed Business', 2, 30000, 0, 0, 1456.53, -1137.56, 23.9484, 36.7288, 0, 0, 0, 0, 207.615, -111.163, 1005.13, 187.89, 15, 0, 0, 0, 0, 0, 2015.15, -1304.98, 23.986, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`) VALUES + (20, 4, 'Unnamed Business', 8, 30000, 0, 0, -1989.49, 884.844, 46.5406, 98.2134, 0, 0, 0, 0, -31.0061, -91.5664, 1003.55, 0.680122, 18, 0, 0, 0, 1, 0, -1981.44, 905.115, 45.7979, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`) VALUES + (21, 4, 'Unnamed Business', 5, 30000, 0, 0, 1628.75, -1903.4, 13.5532, 84.3039, 0, 0, 0, 0, 1494.8, 1305.13, 1093.29, 65.5664, 3, 0, 0, 0, 0, 0, 904.141, -1333.77, 13.5469, 1636.17, -1893.07, 13.2619, 2.61639, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`) VALUES + (22, 4, 'Unnamed Business', 5, 30000, 0, 0, 1606.29, -2431.95, 13.5547, 1.14757, 0, 0, 0, 0, -30.86, -91.9062, 1003.55, 354.538, 18, 0, 0, 0, 0, 0, 1933.08, -2067.76, 13.5469, 1602.48, -2488.26, 13.5547, 267.485, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`) VALUES + (23, 4, 'Unnamed Business', 0, 30000, 0, 0, 1796.35, -1721.18, 13.5411, 180, 0, 0, 0, 0, -795.014, 489.671, 1376.2, 358.859, 1, 0, 0, 0, 1, 1, 1809.53, -1724.42, 13.5362, 1899.97, -2346.11, 13.5469, 263.56, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`) VALUES + (24, 4, 'Unnamed Business', 1, 30000, 0, 0, 1654.2, 1467.87, 1152.79, 325.41, 0, 0, 0, 0, -30.9635, -91.1079, 1003.55, 4.80216, 18, 0, 0, 0, 0, 0, 1668.04, -1583.68, 13.5469, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`) VALUES + (25, 4, 'Unnamed Business', 3, 30000, 0, 0, 1877.85, -1627.79, 13.3386, 359.503, 0, 0, 0, 0, 460.448, -88.5426, 999.555, 86.9106, 4, 0, 0, 0, 0, 0, 1794.43, -1726.55, 13.5469, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`) VALUES + (26, 4, 'Unnamed Business', 2, 30000, 0, 0, 1704.21, -1578.79, 13.8883, 278.564, 0, 0, 0, 0, 227.075, -7.33794, 1002.21, 91.3542, 5, 0, 0, 0, 0, 0, -1699.21, 954.874, 24.8906, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`) VALUES + (27, 4, 'Unnamed Business', 3, 30000, 0, 0, 2419.8, -1509.08, 24, 268.67, 0, 0, 0, 0, 460.154, -88.5364, 999.555, 88.7906, 4, 0, 0, 0, 0, 0, 2422.79, -1517.02, 24.0069, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`) VALUES + (28, 4, 'Unnamed Business', 4, 30000, 0, 0, 1357.07, 308.062, 19.7473, 338.103, 0, 0, 0, 0, 315.641, -142.827, 999.602, 6.35604, 7, 0, 0, 0, 0, 0, 1365.69, -1283.99, 13.5469, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`) VALUES + (30, 4, 'Unnamed Business', 8, 30000, 0, 0, 1044.57, -1308.84, 13.5469, 99.115, 0, 0, 0, 0, -25.7453, -188.253, 1003.55, 171.504, 17, 0, 0, 0, 0, 0, 1037.38, -1311.36, 13.5469, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`) VALUES + (31, 4, 'Unnamed Business', 0, 30000, 0, 0, 2247.63, 2396.32, 10.8203, 184.236, 0, 0, 0, 0, 204.462, -168.754, 1000.52, 353.473, 14, 0, 0, 0, 0, 0, 567.646, -1291.5, 17.2422, 561.662, -1292.28, 17.2482, 232.669, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`) VALUES + (33, 4, 'Unnamed Business', 4, 30000, 0, 0, 387.179, -1817.95, 7.84098, 273.117, 0, 0, 0, 0, 315.715, -142.947, 999.602, 0.321425, 7, 0, 0, 0, 0, 1, 2521.73, -1544.98, 24.01, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`) VALUES + (34, 4, 'Unnamed Business', 8, 30000, 0, 0, 1073.21, -1384.87, 13.8698, 144.937, 0, 0, 0, 0, 363.315, -74.8249, 1001.51, 315.517, 10, 0, 0, 0, 0, 0, 1191.5, -891.539, 43.1784, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`) VALUES + (35, 4, 'Unnamed Business', 2, 30000, 0, 0, 1109.27, -301.432, 74.54, 358.887, 0, 0, 0, 0, 203.856, -50.2081, 1001.8, 352.563, 1, 0, 0, 0, 0, 0, -2493.67, -33.0023, 25.7656, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`) VALUES + (36, 4, 'Unnamed Business', 1, 30000, 0, 0, 1799.79, -1696.08, 5.24577, 3.04433, 0, 0, 0, 0, -31.4892, -91.506, 1003.55, 358.788, 18, 0, 0, 0, 0, 0, -1948.43, 826.607, 41.5261, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`) VALUES + (37, 4, 'Unnamed Business', 3, 30000, 0, 0, 1732.86, -1582.03, 14.1555, 1.36931, 0, 0, 0, 0, 460.449, -88.6508, 999.555, 84.9172, 4, 0, 0, 0, 0, 0, 1668.86, -1554.79, 13.5469, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`) VALUES + (38, 4, 'Unnamed Business', 8, 30000, 0, 0, 1673.74, -1170.88, 23.9655, 354.084, 0, 0, 0, 0, 501.926, -67.7462, 998.758, 175.187, 11, 0, 0, 0, 0, 0, 2139.42, -1181.06, 23.9922, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`) VALUES + (39, 4, 'Unnamed Business', 8, 30000, 0, 0, 1670.49, -1582.65, 13.5469, 3.42811, 0, 0, 0, 0, -30.9218, -91.5736, 1003.55, 357.108, 18, 0, 0, 0, 0, 0, 2006.9, -1759.92, 13.5391, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`) VALUES + (40, 4, 'Unnamed Business', 8, 30000, 0, 0, 1833.78, -1842.7, 13.5781, 276.736, 0, 0, 0, 0, -26.4404, -187.648, 1003.55, 1.27901, 17, 0, 0, 0, 0, 0, 2864.77, -1428.47, 10.9952, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`) VALUES + (41, 4, 'Unnamed Business', 1, 30000, 0, 0, 2261.93, 28.0644, 26.5, 339.516, 0, 0, 0, 0, -26.4846, -57.8533, 1003.55, 350.759, 6, 0, 0, 0, 0, 0, -1328.06, 2697.52, 50.0625, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`) VALUES + (42, 4, 'Unnamed Business', 8, 30000, 0, 0, 1154.69, -1458.02, 15.7969, 4.52589, 0, 0, 0, 0, -26.6782, -57.6615, 1003.55, 357.681, 6, 0, 0, 0, 0, 0, 2349.25, -1538.52, 24.0033, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`) VALUES + (43, 4, 'Unnamed Business', 8, 30000, 0, 0, 2318.99, -88.68, 26.4844, 178.446, 0, 0, 0, 0, -26.1985, -187.472, 1003.55, 13.4461, 17, 0, 0, 0, 0, 0, -2790.9, 774.258, 50.5078, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`) VALUES + (44, 4, 'Unnamed Business', 1, 30000, 0, 0, 1739.95, 1440.97, 1145.67, 85.9053, 0, 0, 0, 0, -31.0512, -91.6771, 1003.55, 0.187671, 18, 0, 0, 0, 0, 0, -2235.17, -2563.35, 31.9219, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`) VALUES + (45, 4, 'Unnamed Business', 5, 30000, 0, 0, 2045.5, -1908.06, 13.5469, 174.508, 0, 0, 0, 0, 1169.16, 1361.17, 10.9219, 217.478, 0, 0, 0, 0, 0, 0, 1249.5, -1376.78, 13.3634, 2052.74, -1912.89, 13.252, 358.522, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`) VALUES + (46, 4, 'Unnamed Business', 1, 30000, 0, 0, 1671.24, 1469.42, 1152.6, 286.719, 0, 0, 0, 0, 203.788, -50.2352, 1001.8, 1.30236, 1, 0, 0, 0, 0, 0, 2106.4, -1213.94, 23.9665, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`) VALUES + (48, 4, 'Unnamed Business', 4, 30000, 0, 0, 2333.4, 61.5421, 26.7058, 91.9637, 0, 0, 0, 0, 315.912, -143.315, 999.602, 358.938, 7, 0, 0, 0, 0, 0, 2023.4, -1077.89, 24.6073, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`) VALUES + (50, 4, 'Unnamed Business', 2, 30000, 0, 0, 2244.25, -1665.5, 15.4766, 347.07, 0, 0, 0, 0, 203.675, -49.334, 1001.8, 186.433, 1, 0, 0, 0, 0, 0, 492.869, -1359.27, 17.1788, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`) VALUES + (51, 4, 'Unnamed Business', 1, 30000, 0, 0, 1636.1, -1848.45, 13.5394, 0.564751, 0, 0, 0, 0, -30.871, -91.4408, 1003.55, 358.966, 18, 0, 0, 0, 0, 0, -479.786, -566.494, 24.1158, 455.124, -1899.05, 0.78316, 202.97, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`) VALUES + (52, 4, 'Unnamed Business', 12, 30000, 0, 0, 1703.45, 1442.91, 1145.78, 239.473, 0, 0, 0, 0, -2029.66, -119.435, 1035.17, 1.03609, 3, 0, 0, 0, 0, 0, -1936.3, 276.5, 41.0469, -1958.21, 307.691, 35.4688, 6.40909, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`) VALUES + (53, 4, 'Unnamed Business', 5, 30000, 0, 0, 1784.89, 1444.99, 1145.78, 340.115, 0, 0, 0, 0, -2029.56, -119.625, 1035.17, 357.304, 3, 0, 0, 0, 0, 0, -1704.05, 1208.2, 25.1146, 1043.86, -1923.3, 12.9832, 0.44367, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`) VALUES + (54, 4, 'Unnamed Business', 8, 30000, 0, 0, 1413.52, -1696.77, 13.5395, 59.0001, 0, 0, 0, 0, 363.489, -74.6292, 1001.51, 134.772, 10, 0, 0, 0, 0, 0, -1568.91, 674.891, 7.1875, 0, 0, 0, 0, 100053, 0, 0, 0, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`) VALUES + (55, 4, 'Unnamed Business', 7, 30000, 0, 0, 1737.46, 1443.56, 1145.78, 276.704, 0, 0, 0, 0, 1711.71, 1461.59, 1145.78, 257.869, 0, 0, 0, 0, 0, 0, 2087.73, 2077.92, 11.0579, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`) VALUES + (56, 4, 'Unnamed Business', 1, 30000, 0, 0, 661.36, -573.289, 16.3359, 272.013, 0, 0, 0, 0, -13.3403, -91.3059, 1008.03, 357.346, 18, 0, 0, 0, 0, 1, 667.314, -546.236, 16.3359, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`) VALUES + (57, 4, 'Unnamed Business', 0, 30000, 0, 0, 1047.21, -1418.63, 13.5469, 144.195, 0, 0, 0, 0, -30.9934, -91.8355, 1003.55, 358.741, 18, 0, 0, 0, 0, 0, 659.793, -1763.91, 13.5592, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`) VALUES + (58, 4, 'Unnamed Business', 3, 30000, 0, 0, 2105.35, -1806.45, 13.5547, 265.142, 0, 0, 0, 0, 460.507, -88.4769, 999.555, 84.5587, 4, 0, 0, 0, 1, 1, 593.602, -1494.91, 15.2686, 615.481, -1501.39, 14.8747, 277.476, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`) VALUES + (59, 4, 'Unnamed Business', 2, 30000, 0, 0, 1829.57, -1450.66, 13.5911, 359.855, 0, 0, 0, 0, 203.78, -50.5481, 1001.8, 9.98745, 1, 0, 0, 0, 0, 0, 1112.81, -1566.31, 13.5569, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`) VALUES + (60, 4, 'Unnamed Business', 0, 30000, 0, 0, 1744.86, 1443.03, 1145.78, 265.737, 0, 0, 0, 0, -25.7722, -188.055, 1003.55, 356.072, 17, 0, 0, 0, 0, 0, 1061.57, -1484.28, 13.5457, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`) VALUES + (61, 4, 'Unnamed Business', 3, 30000, 0, 0, 1772.23, 1440.43, 1145.69, 81.6088, 0, 0, 0, 0, 372.46, -133.296, 1001.49, 330.82, 5, 0, 0, 0, 0, 0, 2108.98, -1788.67, 13.5608, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`) VALUES + (62, 4, 'Unnamed Business', 8, 30000, 0, 0, 461.205, -1500.79, 31.0598, 279.205, 0, 0, 0, 0, -25.3976, -187.912, 1003.55, 355.95, 17, 0, 0, 0, 0, 0, 712.834, -569.736, 16.3359, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`) VALUES + (63, 4, 'Unnamed Business', 3, 30000, 0, 0, -1721.03, 1360.04, 7.18532, 88.9988, 0, 0, 0, 0, 371.728, -133.508, 1001.49, 2.19321, 5, 0, 0, 0, 0, 0, -1720.56, 1353.78, 7.17902, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`) VALUES + (64, 4, 'Unnamed Business', 5, 30000, 0, 0, 1662.57, 1788.63, 10.8203, 263.499, 0, 0, 0, 0, -221.166, 1411.45, 27.7734, 256.79, 18, 0, 0, 0, 0, 0, 1698.29, 1786.89, 10.8203, 1654.53, 1795.69, 10.8203, 81.85, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`) VALUES + (65, 4, 'Unnamed Business', 1, 30000, 0, 0, 1752.7, 1443.19, 1145.78, 272.004, 0, 0, 0, 0, -27.5021, -57.9044, 1003.55, 7.79304, 6, 0, 0, 0, 0, 0, 1394.87, 457.122, 20.1368, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`) VALUES + (66, 4, 'Unnamed Business', 8, 30000, 0, 0, 2251.11, -1666.85, 15.4766, 347.064, 0, 0, 0, 0, -31.1119, -91.6484, 1003.55, 359.657, 18, 0, 0, 0, 0, 1, 1285.09, -1272.42, 13.5366, 0, 0, 0, 0, 123051, 0, 0, 0, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`) VALUES + (67, 4, 'Unnamed Business', 10, 30000, 0, 0, 1131.71, 1518.63, 5.82031, 107.231, 0, 0, 0, 0, 1601.85, -1467.25, 13.5639, 95.3918, 0, 0, 0, 0, 0, 0, 2341.7, -1314.47, 24.0671, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`) VALUES + (68, 4, 'Unnamed Business', 4, 30000, 0, 0, 1587.5, -1862.96, 13.5305, 349.866, 0, 0, 0, 0, 2134.53, 1599.41, 1008.36, 90.8534, 1, 0, 0, 0, 0, 0, 1602.15, -2434.5, 13.5547, 1602.61, -2451.42, 13.5547, 172.886, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`) VALUES + (69, 4, 'Unnamed Business', 1, 30000, 0, 0, 1929.22, -1776.25, 13.5469, 90.3944, 0, 0, 0, 0, -26.172, -187.877, 1003.55, 355.973, 17, 0, 0, 0, 0, 0, 2654.33, 1132.2, 10.8203, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`) VALUES + (70, 4, 'Unnamed Business', 3, 30000, 0, 0, 1414.53, -1602.64, 13.5469, 175.846, 0, 0, 0, 0, 362.819, -75.1166, 1001.51, 315.914, 10, 0, 0, 0, 0, 1, 1414.03, -1599.29, 13.5469, 1646.94, 1305.67, 10.8203, 98.2638, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`) VALUES + (71, 4, 'Unnamed Business', 2, 30000, 0, 0, -1882.67, 866.226, 35.1719, 135.343, 0, 0, 0, 0, 227.262, -8.33084, 1002.21, 100.274, 5, 0, 0, 0, 0, 0, 1103.75, -1411.33, 13.6187, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`) VALUES + (72, 4, 'Unnamed Business', 5, 30000, 0, 0, -1666.21, 1203.53, 7.25, 159.664, 0, 0, 0, 0, 372.496, -133.417, 1001.49, 356.796, 5, 0, 0, 0, 0, 0, 1381.51, 266.698, 19.5669, -1664.23, 1213, 7.25464, 1.79089, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`) VALUES + (73, 4, 'Unnamed Business', 8, 30000, 0, 0, 1952.4, -2021.57, 13.5469, 90.9127, 0, 0, 0, 0, -30.8758, -91.0564, 1003.55, 357.893, 18, 0, 0, 0, 0, 0, 1672.83, -1583.28, 13.5469, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`) VALUES + (74, 4, 'Unnamed Business', 3, 30000, 0, 0, 928.545, -1353.07, 13.3438, 106.28, 0, 0, 0, 0, 372.501, -132.618, 1001.49, 0.750952, 5, 0, 0, 0, 0, 0, 2428.59, -1940.92, 13.5469, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`) VALUES + (75, 4, 'Unnamed Business', 4, 30000, 0, 0, 1665.3, 1452.63, 1152.58, 275.782, 0, 0, 0, 0, 316.063, -143.426, 999.602, 1.00112, 7, 0, 0, 0, 0, 1, 2227.59, -1697.79, 13.7829, 0, 0, 0, 0, 10, 0, 0, 0, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`) VALUES + (76, 4, 'Unnamed Business', 12, 30000, 0, 0, 1766.45, 1443.67, 1145.78, 272.004, 0, 0, 0, 0, 2916.15, -2275.72, 7.25419, 92.2792, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 6, 0, 0, 0, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`) VALUES + (77, 4, 'Unnamed Business', 12, 30000, 0, 0, 2229.9, -1721.26, 13.5613, 149.746, 0, 0, 0, 0, 2916.03, -2276.33, 7.25419, 84.8808, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 7, 0, 0, 0, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`) VALUES + (78, 4, 'Unnamed Business', 4, 30000, 0, 0, 1649.6, 1467.74, 1151.97, 3.67434, 0, 0, 0, 0, 315.902, -143.025, 999.602, 5.53311, 7, 0, 0, 0, 0, 0, 1013.87, -372.41, 73.5505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`) VALUES + (79, 4, 'Unnamed Business', 3, 30000, 0, 0, 1038.17, -1340.73, 13.745, 177.513, 0, 0, 0, 0, 376.894, -193.302, 1000.63, 357.573, 17, 0, 0, 0, 0, 0, 1028.2, -1341.19, 13.7266, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`) VALUES + (80, 4, 'Unnamed Business', 3, 30000, 0, 0, 2397.67, -1899.06, 13.5469, 359.769, 0, 0, 0, 0, 364.899, -11.4455, 1001.85, 357.847, 9, 0, 0, 0, 0, 0, 2378.92, -1903.45, 13.3828, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`) VALUES + (81, 4, 'Unnamed Business', 3, 30000, 0, 0, 1774.54, 1440.21, 1145.69, 326.854, 0, 0, 0, 0, 364.92, -11.5076, 1001.85, 1.92061, 9, 0, 0, 0, 0, 0, 2412.69, -1490.4, 24, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`) VALUES + (82, 4, 'Unnamed Business', 3, 30000, 0, 0, 1445.11, -1353.1, 13.5469, 76.8374, 0, 0, 0, 0, 364.786, -11.5863, 1001.85, 359.156, 9, 0, 0, 0, 0, 0, -1810.85, 616.781, 35.1719, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`) VALUES + (83, 4, 'Unnamed Business', 3, 30000, 0, 0, 810.492, -1616.33, 13.5469, 274.543, 0, 0, 0, 0, 364.817, -11.7036, 1001.85, 356.202, 9, 0, 0, 0, 0, 0, -2664.66, 260.562, 4.63281, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`) VALUES + (84, 4, 'Unnamed Business', 2, 30000, 0, 0, 1102.44, -1458.3, 15.7969, 265.057, 0, 0, 0, 0, 227.152, -8.34062, 1002.21, 82.5599, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`) VALUES + (85, 4, 'Unnamed Business', 2, 30000, 0, 0, 1445.12, -1419.06, 13.5411, 65.0882, 0, 0, 0, 0, 227.551, -7.98705, 1002.21, 77.3083, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`) VALUES + (86, 4, 'Unnamed Business', 3, 30000, 0, 0, 2237.88, -1663.56, 15.4766, 344.453, 0, 0, 0, 0, 363.168, -74.7778, 1001.51, 307.153, 10, 0, 0, 0, 0, 0, 785.164, -1632.8, 13.3828, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`) VALUES + (88, 4, 'Unnamed Business', 3, 30000, 0, 0, 1087.72, -295.958, 74.7685, 358.173, 0, 0, 0, 0, 363.226, -75.0796, 1001.51, 311.442, 10, 0, 0, 0, 0, 0, -2794.59, 775.22, 50.4725, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`) VALUES + (89, 4, 'Unnamed Business', 3, 30000, 0, 0, -1912.4, 827.947, 35.2282, 137.415, 0, 0, 0, 0, 362.862, -75.157, 1001.51, 317.474, 10, 0, 0, 0, 0, 0, -2148.97, -2449.25, 30.6328, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`) VALUES + (90, 4, 'Unnamed Business', 3, 30000, 0, 0, 1769.38, -1397.58, 15.7578, 177.249, 0, 0, 0, 0, 460.243, -88.68, 999.555, 92.1094, 4, 0, 0, 0, 0, 0, 711.452, -493.504, 16.3359, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`) VALUES + (91, 4, 'Unnamed Business', 10, 30000, 0, 0, 2421.44, -1219.25, 25.5616, 6.1916, 0, 0, 0, 0, -2158.43, 642.822, 1052.38, 29.1845, 1, 0, 0, 0, 0, 0, 1968.24, -1284.42, 23.9844, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`) VALUES + (92, 4, 'Unnamed Business', 2, 30000, 0, 0, 1405.22, -1881.5, 13.5469, 264.017, 0, 0, 0, 0, 207.556, -111.244, 1005.13, 352.685, 15, 0, 0, 0, 0, 0, 2230.46, -1674.3, 14.8285, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`) VALUES + (93, 4, 'Unnamed Business', 3, 30000, 0, 0, 1200.42, -918.503, 43.1127, 273.646, 0, 0, 0, 0, 372.061, -133.522, 1001.49, 359.863, 5, 0, 0, 0, 0, 0, 1839.22, -1452.28, 13.564, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`) VALUES + (94, 4, 'Unnamed Business', 10, 30000, 0, 0, 1836.65, -1682.52, 13.3391, 95.7087, 0, 0, 0, 0, 1204.98, -13.8471, 1000.92, 7.8813, 2, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`) VALUES + (95, 4, 'Unnamed Business', 8, 30000, 0, 0, 1775.47, 1437.65, 1145.69, 357.587, 0, 0, 0, 0, -25.6475, -188.232, 1003.55, 12.6659, 17, 0, 0, 0, 0, 1, 2006.4, -1760.42, 13.5391, 1034.92, -1935.32, 13.0244, 266.609, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`) VALUES + (96, 4, 'Unnamed Business', 3, 30000, 0, 0, 2332.08, 75.0052, 26.621, 87.2637, 0, 0, 0, 0, 460.545, -88.3984, 999.555, 93.5276, 4, 0, 0, 0, 0, 0, -294.906, 2687.78, 62.6665, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`) VALUES + (97, 4, 'Unnamed Business', 1, 30000, 0, 0, 1574.85, -1637.35, 13.5615, 11.6774, 0, 0, 0, 0, -25.5966, -187.034, 1003.55, 357.071, 17, 0, 0, 0, 0, 0, 1541.46, -1634.66, 13.5469, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`) VALUES + (98, 4, 'Unnamed Business', 3, 30000, 0, 0, 1098.59, -1473.58, 15.7969, 69.6117, 0, 0, 0, 0, 460.244, -88.4067, 999.555, 87.9699, 4, 0, 0, 0, 1, 0, -1741.37, -569.154, 16.4844, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`) VALUES + (99, 4, 'Unnamed Business', 1, 30000, 0, 0, 1445.11, -1426.78, 13.543, 89.005, 0, 0, 0, 0, -27.4883, -57.4702, 1003.55, 0.398602, 6, 0, 0, 0, 0, 0, 1428.99, -1427.96, 13.5547, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`) VALUES + (100, 4, 'Unnamed Business', 1, 30000, 0, 0, 2157.89, -1733.42, 13.5445, 356.464, 0, 0, 0, 0, -27.4883, -57.4702, 1003.55, 0.398602, 6, 0, 0, 0, 0, 0, 1551.73, -1474.28, 13.5481, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`) VALUES + (101, 4, 'Unnamed Business', 0, 30000, 0, 0, 1759.93, 1446.82, 1145.78, 84.942, 0, 0, 0, 0, 5.84083, -31.4701, 1003.55, 0.31898, 10, 0, 0, 0, 0, 0, 637.356, 1678.13, 6.99219, -2395.1, 2222.04, 4.98437, 85.6145, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`) VALUES + (102, 4, 'Unnamed Business', 3, 30000, 0, 0, 671.125, -519.446, 16.3359, 210.161, 0, 0, 0, 0, 460.219, -89.0891, 999.555, 92.4067, 4, 0, 0, 0, 0, 0, 674.514, -514.152, 16.3359, 1626.54, -1137.52, 23.9062, 184.156, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`) VALUES + (103, 4, 'Unnamed Business', 1, 30000, 0, 0, 1757.29, 1446.53, 1145.78, 84.942, 0, 0, 0, 0, 6.22508, -31.3632, 1003.55, 355.899, 10, 0, 0, 0, 0, 0, 2181.8, 2485.08, 10.8203, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`) VALUES + (104, 4, 'Unnamed Business', 8, 30000, 0, 0, 1315.55, -897.924, 39.5781, 355.767, 0, 0, 0, 0, -25.6988, -188.146, 1003.55, 2.25264, 17, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`) VALUES + (105, 4, 'Unnamed Business', 1, 30000, 0, 0, 1753.5, 1446.45, 1145.78, 84.942, 0, 0, 0, 0, -25.8995, -188.249, 1003.55, 359.321, 17, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`) VALUES + (106, 4, 'Unnamed Business', 8, 30000, 0, 0, 1752.19, 1446.37, 1145.78, 93.7154, 0, 0, 0, 0, -31.1422, -92.0064, 1003.55, 350.907, 18, 0, 0, 0, 0, 0, 2007.48, -1759.44, 13.5391, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`) VALUES + (107, 4, 'Unnamed Business', 3, 30000, 0, 0, 2521.18, -1411.62, 28.5312, 80.3432, 0, 0, 0, 0, -228.827, 1400.92, 27.7656, 269.626, 18, 0, 0, 0, 0, 0, -865.274, 1541.22, 22.6826, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`) VALUES + (108, 4, 'Unnamed Business', 8, 30000, 0, 0, 1634.58, -1583.53, 13.6536, 10.9946, 0, 0, 0, 0, 5.90418, -31.5585, 1003.55, 0.568551, 10, 0, 0, 0, 0, 0, -744.555, 1583.71, 26.9609, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`) VALUES + (109, 4, 'Unnamed Business', 1, 30000, 0, 0, 1748.68, 1446.17, 1145.78, 93.0887, 0, 0, 0, 0, 6.21169, -31.3557, 1003.55, 3.26752, 10, 0, 0, 0, 0, 0, -1476.6, 1879.51, 32.6328, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`) VALUES + (110, 4, 'Unnamed Business', 2, 30000, 0, 0, -91.0981, -1592.47, 3.00431, 294.395, 0, 0, 0, 0, 226.882, -8.1384, 1002.21, 269.642, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`) VALUES + (111, 4, 'Unnamed Business', 8, 30000, 0, 0, 1352.52, -1758.82, 13.5078, 180.542, 0, 0, 0, 0, -31.1119, -91.6484, 1003.55, 359.657, 18, 0, 0, 0, 0, 0, 2254.93, -1666.28, 15.469, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`) VALUES + (112, 4, 'Unnamed Business', 3, 30000, 0, 0, 1158.28, -1473.41, 15.7969, 286.459, 0, 0, 0, 0, 364.786, -11.5863, 1001.85, 359.156, 9, 0, 0, 0, 0, 0, 0, 0, 0, 2263.74, 34.2681, 26.4844, 50.0339, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`) VALUES + (113, 4, 'Unnamed Business', 1, 30000, 0, 0, 1743.82, 1445.89, 1145.78, 90.2687, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`) VALUES + (114, 4, 'Unnamed Business', 1, 30000, 0, 0, 1742.45, 1445.89, 1145.78, 90.2687, 0, 0, 0, 0, -25.6442, -188.041, 1003.55, 351.193, 17, 0, 0, 0, 1, 1, 2130.87, 892.924, 10.8203, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`) VALUES + (115, 4, 'Unnamed Business', 3, 30000, 0, 0, 1650.13, 1466.72, 1151.97, 167.935, 0, 0, 0, 0, -794.957, 490.111, 1376.2, 179.811, 1, 0, 0, 0, 1, 1, 0, 0, 0, 1327.28, 1397.33, 10.7512, 93.0638, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`) VALUES + (116, 4, 'Unnamed Business', 8, 30000, 0, 0, 1487.01, -1881.28, 13.5469, 190.48, 0, 0, 0, 0, -25.6959, -187.781, 1003.55, 354.083, 17, 0, 0, 0, 0, 0, 0, 0, 0, 1231.73, -1380.5, 13.3179, 182.887, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`) VALUES + (117, 4, 'Unnamed Business', 10, 30000, 0, 0, 1736.52, 1445.86, 1145.78, 90.2687, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`) VALUES + (119, 4, 'Unnamed Business', 2, 30000, 0, 0, 712.172, -498.921, 16.3359, 267.048, 0, 0, 0, 0, 203.747, -50.5602, 1001.8, 348.861, 1, 0, 0, 0, 0, 0, 714.368, -505.379, 16.3359, 1229.06, -1378.47, 13.339, 256.786, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`) VALUES + (120, 4, 'Unnamed Business', 8, 30000, 0, 0, 1721.42, 1424.01, 10.6406, 320.626, 0, 0, 0, 0, 6.13156, -31.3422, 1003.55, 178.952, 10, 0, 0, 0, 0, 0, 1014.04, -1563.83, 13.616, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`) VALUES + (122, 4, 'Unnamed Business', 1, 30000, 0, 0, 1765.16, 1436.69, 1145.69, 93.1964, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`) VALUES + (123, 4, 'Unnamed Business', 4, 30000, 0, 0, 1836.51, -1443.03, 13.5962, 100.976, 0, 0, 0, 0, 284.991, -86.1033, 1001.52, 350.153, 4, 0, 0, 0, 0, 1, 1837.35, -1438.43, 13.563, 0, 0, 0, 0, 1234521, 0, 0, 0, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`) VALUES + (124, 4, 'Unnamed Business', 8, 30000, 0, 0, 1648.6, -1562.17, 13.5398, 98.856, 0, 0, 0, 0, -26.0882, -188.231, 1003.55, 0.687847, 17, 0, 0, 0, 0, 0, 1028.47, -1585.7, 13.5469, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`) VALUES + (125, 4, 'Unnamed Business', 8, 30000, 0, 0, 1565.93, -1171.4, 24.0951, 194.504, 0, 0, 0, 0, -30.7929, -92.0083, 1003.55, 180.866, 18, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`) VALUES + (128, 4, 'Unnamed Business', 0, 30000, 0, 0, 1733.91, 1448.76, 1145.78, 273.547, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`) VALUES + (129, 4, 'Unnamed Business', 0, 30000, 0, 0, 1735.4, 1448.85, 1145.78, 273.547, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`) VALUES + (145, 4, 'Unnamed Business', 4, 30000, 0, 0, 1655.19, 1451.97, 1152.5, 277.616, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`) VALUES + (157, 4, 'Unnamed Business', 5, 30000, 0, 0, 548.165, -1293.86, 17.2482, 168.94, 0, 0, 0, 0, 1226.48, -813.56, 1084.01, 353.256, 5, 0, 0, 0, 0, 0, 1811.5, -1659.69, 13.5465, 567.705, -1291.27, 17.2422, 70.9165, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`) VALUES + (192, 4, 'Unnamed Business', 3, 30000, 0, 0, -222.752, -1747.06, 1.15469, 331.273, 0, 0, 0, 0, 363.584, -75.38, 1001.51, 313.29, 10, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`) VALUES + (200, 4, 'Unnamed Business', 8, 30000, 0, 0, 1748.23, -1460.31, 13.5288, 182.135, 0, 0, 0, 0, -27.4627, -57.8572, 1003.55, 0.812528, 6, 0, 0, 0, 0, 0, 1014.1, -1563.82, 13.6156, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`) VALUES + (201, 2, 'Easy Credit Autos', 0, 30000, 1, 1, -1013.1, -861.897, 13.0852, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`) VALUES + (203, 1, 'Saint Marks Bistro', 0, 30000, 0, 0, 1318.98, -452.77, 54.53, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`) VALUES + (204, 1, 'Easy Credit Autos', 0, 30000, 0, 0, 1218.65, -123.143, 15.0563, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`) VALUES + (205, 1, 'Strip Club', 0, 30000, 0, 0, 923.229, -470.662, 14.9622, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`) VALUES + (206, 1, 'Strip Club', 0, 30000, 0, 0, 900.493, -416.833, 14.9656, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`) VALUES + (207, 1, 'Sex Shop', 0, 30000, 0, 0, 927.043, -379.195, 15.2535, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`) VALUES + (208, 1, 'Bar', 0, 30000, 0, 0, 899.091, -285.723, 5.14579, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`) VALUES + (209, 1, 'Bar', 0, 30000, 0, 0, 845.42, -287.97, 4.93362, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`) VALUES + (210, 1, 'Diner', 0, 30000, 0, 0, 1036.65, -653.015, 15.0624, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`) VALUES + (211, 1, 'Bank', 0, 30000, 0, 0, 1036.1, -700.057, 14.9727, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`) VALUES + (212, 1, 'Chinese Restaurant', 0, 30000, 0, 0, 909.534, -670.404, 14.9727, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`) VALUES + (213, 1, 'Laundry', 0, 30000, 0, 0, 845.278, -663.754, 14.9727, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`) VALUES + (214, 1, 'Chinese Restaurant', 0, 30000, 0, 0, 913.891, -805.828, 15.0702, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`) VALUES + (215, 1, 'Bank', 0, 30000, 0, 0, 1065.18, -281.016, 8.69193, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`) VALUES + (216, 1, 'Clothing Store', 0, 30000, 0, 0, 1117.18, -687.398, 14.9727, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`) VALUES + (217, 2, 'Hotel', 0, 30000, 0, 0, -772.41, 548.739, 11.1007, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`) VALUES + (218, 2, 'Drugstore', 0, 30000, 0, 0, -832.099, 741.923, 11.2885, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`) VALUES + (219, 2, 'Pizza Stack', 0, 30000, 0, 0, -903.159, 798.366, 11.4487, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`) VALUES + (220, 2, 'Taco Shop', 0, 30000, 0, 0, -753.173, 1343.16, 11.767, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`) VALUES + (221, 2, 'Cafe', 0, 30000, 0, 0, -774.478, 1304.82, 11.6359, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`) VALUES + (222, 2, 'Drugstore', 0, 30000, 0, 0, 50.2897, 1007.29, 10.9547, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`) VALUES + (228, 4, 'Jefferson Dealership', 0, 30000, 0, 0, 2131.8, -1151.02, 24.0932, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`) VALUES + (229, 4, 'Bike Dealership', 0, 30000, 0, 0, 1008.98, -1295.71, 13.5469, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`) VALUES + (230, 4, 'Los Santos Police Department', 0, 0, 0, 0, 1554.77, -1675.65, 16.1953, 0, 0, 0, 1247, 30, 247.113, 62.929, 1003.64, 0, 6, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`) VALUES + (231, 2, 'Unnamed Business', 0, 0, 0, 0, -833.546, -908.768, 12.1285, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`) VALUES + (232, 1, 'Italian Restaurant', 0, 0, 0, 0, 1135.42, -457.31, 20.1816, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`) VALUES + (233, 1, 'Clothes Store', 0, 0, 0, 0, 1065.42, -345.061, 14.9727, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`) VALUES + (234, 1, 'Gun Store', 0, 0, 0, 0, 1065.1, -395.103, 14.9727, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`) VALUES + (235, 1, 'Porn Shop', 0, 0, 0, 0, 989.054, -441.97, 15.1239, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`) VALUES + (236, 1, 'Mechanic Shop', 0, 0, 0, 0, 1190.71, -869.329, 15.1745, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`) VALUES + (237, 1, 'Offices', 0, 0, 0, 0, 1212.4, -904.725, 15.1072, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`) VALUES + (238, 1, 'Offices', 0, 0, 0, 0, 1244.71, -862.862, 14.9727, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`) VALUES + (239, 1, 'Warehouse', 0, 0, 0, 0, 1276.44, -928.518, 14.9727, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`) VALUES + (240, 1, 'Warehouse', 0, 0, 0, 0, 1261.95, -943.02, 14.9727, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`) VALUES + (241, 1, 'Warehouse', 0, 0, 0, 0, 1253.32, -950.495, 14.977, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`) VALUES + (242, 1, 'Warehouse', 0, 0, 0, 0, 1231.16, -964.599, 15.0685, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`) VALUES + (243, 1, 'Warehouse', 0, 0, 0, 0, 1183.85, -961.455, 15.1072, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`) VALUES + (244, 1, 'Warehouse', 0, 0, 0, 0, 1188.25, -957.061, 15.1072, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`) VALUES + (245, 1, 'Warehouse', 0, 0, 0, 0, 1171.64, -963.649, 14.9727, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`) VALUES + (246, 1, 'Warehouse', 0, 0, 0, 0, 1162.62, -952.354, 15.0611, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`) VALUES + (247, 1, 'Warehouse', 0, 0, 0, 0, 1219.81, -973.645, 14.9849, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`) VALUES + (248, 1, 'Docks Warehouse', 0, 0, 0, 0, 1435.66, -805.82, 11.8262, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`) VALUES + (249, 1, 'Docks Warehouse', 0, 0, 0, 0, 1445.71, -806.209, 11.8262, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`) VALUES + (250, 1, 'Docks Warehouse', 0, 0, 0, 0, 1455.57, -805.722, 11.8262, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`) VALUES + (251, 1, 'Docks Warehouse', 0, 0, 0, 0, 1465.74, -805.721, 11.8262, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`) VALUES + (252, 1, 'Docks Warehouse', 0, 0, 0, 0, 1475.63, -805.721, 11.8262, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`) VALUES + (253, 1, 'Docks Warehouse', 0, 0, 0, 0, 1485.73, -805.721, 11.8262, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`) VALUES + (254, 1, 'Docks Warehouse', 0, 0, 0, 0, 1495.69, -805.721, 11.8262, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`) VALUES + (255, 1, 'Docks Warehouse', 0, 0, 0, 0, 1467.39, -688.639, 11.8261, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`) VALUES + (256, 1, 'Docks Warehouse', 0, 0, 0, 0, 1495.89, -684.898, 12.1434, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`) VALUES + (257, 1, 'Docks Warehouse', 0, 0, 0, 0, 1488.55, -650.17, 11.8261, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`) VALUES + (258, 1, 'Docks Warehouse', 0, 0, 0, 0, 1465.85, -650.167, 11.8261, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`) VALUES + (259, 1, 'Docks Warehouse', 0, 0, 0, 0, 1510.97, -650.166, 11.8261, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`) VALUES + (260, 1, 'Docks Warehouse', 0, 0, 0, 0, 1533.95, -650.17, 11.8261, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`) VALUES + (261, 1, 'Docks Warehouse', 0, 0, 0, 0, 1556.7, -650.167, 11.8261, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`) VALUES + (262, 1, 'Docks Warehouse', 0, 0, 0, 0, 1579.22, -650.172, 11.8261, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`) VALUES + (263, 1, 'Warehouse', 0, 0, 0, 0, 1305.18, -810.01, 15.0258, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`) VALUES + (264, 1, 'Supermarket', 0, 0, 0, 0, 1272.41, -608.83, 12.4573, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`) VALUES + (265, 1, 'Sweeney General Hospital', 0, 0, 0, 0, 1149.18, -585.299, 15.0173, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`) VALUES + (266, 1, 'Portland Police Station', 0, 0, 0, 0, 1148.46, -675, 14.9809, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`) VALUES + (267, 1, 'Clothes Store', 0, 0, 0, 0, 1104.57, -638.42, 14.9727, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`) VALUES + (268, 1, 'City Hall', 0, 0, 0, 0, 98.2127, -962.972, 29.1858, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`) VALUES + (269, 1, 'Courthouse', 0, 0, 0, 0, 97.4022, -1429.97, 31.6682, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`) VALUES + (270, 1, 'Francis International Airport', 0, 0, 0, 0, -769.82, -600.323, 11.3261, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`) VALUES + (271, 1, 'Shoreside Vale Police Station', 0, 0, 0, 0, -1255.33, -23.0647, 59.0359, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`) VALUES + (272, 1, 'Hope Medical College', 0, 0, 0, 0, -1246.78, -150.687, 59.0671, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`) VALUES + (273, 1, 'Shoreside Vale Fire Station', 0, 0, 0, 0, -1214.27, -13.7945, 53.2652, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`) VALUES + (274, 1, 'Warehouse', 0, 0, 0, 0, -1235.35, 125.251, 68.5685, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`) VALUES + (275, 1, 'Warehouse', 0, 0, 0, 0, -1137.91, 25.5051, 58.8176, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`) VALUES + (276, 1, 'Warehouse', 0, 0, 0, 0, -1114.45, 53.0893, 58.6725, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`) VALUES + (277, 1, 'Warehouse', 0, 0, 0, 0, -1090.84, 59.4074, 58.5898, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`) VALUES + (278, 1, 'Warehouse', 0, 0, 0, 0, -1020.35, -78.0101, 38.8868, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`) VALUES + (279, 1, 'Warehouse', 0, 0, 0, 0, -844.123, -160.472, 33.8577, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`) VALUES + (280, 1, 'Warehouse', 0, 0, 0, 0, -844.13, -176.191, 33.8553, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`) VALUES + (281, 1, 'Warehouse', 0, 0, 0, 0, -844.125, -184.379, 33.8559, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`) VALUES + (282, 1, 'Warehouse', 0, 0, 0, 0, -844.126, -192.238, 33.8565, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`) VALUES + (283, 1, 'Warehouse', 0, 0, 0, 0, -844.131, -200.027, 33.8571, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`) VALUES + (284, 1, 'Warehouse', 0, 0, 0, 0, -844.125, -207.769, 33.8577, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`) VALUES + (285, 1, 'Staunton Island Police Station', 0, 0, 0, 0, 340.404, -1118.42, 25.9809, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`) VALUES + (286, 1, 'Carson General Hospital', 0, 0, 0, 0, 149.876, 63.3876, 16.2136, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`) VALUES + (287, 1, 'Liberty City Stadium', 0, 0, 0, 0, -18.7666, -219.304, 29.821, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`) VALUES + (288, 1, 'Staunton Island Fire Station', 0, 0, 0, 0, -76.4618, -435.701, 16.181, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`) VALUES + (289, 1, 'Church', 0, 0, 0, 0, -75.0275, -1078.03, 26.188, 0, 0, 0, 0, 0, -72.5906, -1079.24, 26.205, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +/*!40000 ALTER TABLE `biz_main` ENABLE KEYS */; + +-- Dumping structure for table db24053.bug_main +CREATE TABLE IF NOT EXISTS `bug_main` ( + `bug_id` int(11) NOT NULL AUTO_INCREMENT, + `bug_server` tinyint(2) NOT NULL DEFAULT '0', + `bug_who_added` int(11) NOT NULL DEFAULT '0', + `bug_when_added` int(32) NOT NULL DEFAULT '0', + `bug_script_ver` varchar(16) NOT NULL DEFAULT '0.1', + `bug_pos_x` float NOT NULL DEFAULT '0', + `bug_pos_y` float NOT NULL DEFAULT '0', + `bug_pos_z` float NOT NULL DEFAULT '0', + `bug_rot_z` float NOT NULL DEFAULT '0', + `bug_message` varchar(128) NOT NULL DEFAULT '( No Message )', + `bug_svr_start` int(32) NOT NULL DEFAULT '0', + `bug_session` int(11) NOT NULL DEFAULT '0', + `bug_state` int(11) NOT NULL DEFAULT '0', + `bug_who_state` int(11) NOT NULL DEFAULT '0', + `bug_when_state` int(11) NOT NULL DEFAULT '0', + PRIMARY KEY (`bug_id`) +) ENGINE=InnoDB AUTO_INCREMENT=8 DEFAULT CHARSET=latin1 COMMENT='User Submitted Bugs'; + +-- Dumping data for table db24053.bug_main: ~4 rows (approximately) +/*!40000 ALTER TABLE `bug_main` DISABLE KEYS */; +INSERT INTO `bug_main` (`bug_id`, `bug_server`, `bug_who_added`, `bug_when_added`, `bug_script_ver`, `bug_pos_x`, `bug_pos_y`, `bug_pos_z`, `bug_rot_z`, `bug_message`, `bug_svr_start`, `bug_session`, `bug_state`, `bug_who_state`, `bug_when_state`) VALUES + (4, 4, 2, 1609121880, '1.0', 0, 0, 0, 0, '"normal house at ls" marker overlaps with "Unnamed Business" marker in Verdant Bluffs.', 2147483647, 0, 0, 0, 0); +INSERT INTO `bug_main` (`bug_id`, `bug_server`, `bug_who_added`, `bug_when_added`, `bug_script_ver`, `bug_pos_x`, `bug_pos_y`, `bug_pos_z`, `bug_rot_z`, `bug_message`, `bug_svr_start`, `bug_session`, `bug_state`, `bug_who_state`, `bug_when_state`) VALUES + (5, 2, 1, 1609210983, '1.0', 0, 0, 0, 0, 'save businesses first', 2147483647, 0, 0, 0, 0); +INSERT INTO `bug_main` (`bug_id`, `bug_server`, `bug_who_added`, `bug_when_added`, `bug_script_ver`, `bug_pos_x`, `bug_pos_y`, `bug_pos_z`, `bug_rot_z`, `bug_message`, `bug_svr_start`, `bug_session`, `bug_state`, `bug_who_state`, `bug_when_state`) VALUES + (6, 4, 1, 1609213757, '1.0', 0, 0, 0, 0, 'Fix the get client from params', 2147483647, 0, 0, 0, 0); +INSERT INTO `bug_main` (`bug_id`, `bug_server`, `bug_who_added`, `bug_when_added`, `bug_script_ver`, `bug_pos_x`, `bug_pos_y`, `bug_pos_z`, `bug_rot_z`, `bug_message`, `bug_svr_start`, `bug_session`, `bug_state`, `bug_who_state`, `bug_when_state`) VALUES + (7, 4, 1, 1609213868, '1.0', 0, 0, 0, 0, 'Fix job uniform not working (net event?)', 2147483647, 0, 0, 0, 0); +/*!40000 ALTER TABLE `bug_main` ENABLE KEYS */; + +-- Dumping structure for table db24053.clan_main +CREATE TABLE IF NOT EXISTS `clan_main` ( + `clan_id` int(11) NOT NULL AUTO_INCREMENT, + `clan_server` int(11) NOT NULL DEFAULT '0', + `clan_name` varchar(64) NOT NULL DEFAULT '', + `clan_tag` varchar(16) NOT NULL DEFAULT '', + `clan_owner` int(11) NOT NULL DEFAULT '0', + `clan_created` int(32) NOT NULL DEFAULT '0', + `clan_deleted` tinyint(1) NOT NULL DEFAULT '0', + `clan_who_deleted` int(32) NOT NULL DEFAULT '0', + `clan_when_deleted` int(32) NOT NULL DEFAULT '0', + PRIMARY KEY (`clan_id`) +) ENGINE=InnoDB DEFAULT CHARSET=latin1 COMMENT='Clans'; + +-- Dumping data for table db24053.clan_main: ~0 rows (approximately) +/*!40000 ALTER TABLE `clan_main` DISABLE KEYS */; +/*!40000 ALTER TABLE `clan_main` ENABLE KEYS */; + +-- Dumping structure for table db24053.clan_members +CREATE TABLE IF NOT EXISTS `clan_members` ( + `clan_member_id` int(11) NOT NULL AUTO_INCREMENT, + `clan_rank_server` tinyint(2) NOT NULL DEFAULT '0', + `clan_member_clan` int(11) NOT NULL DEFAULT '0', + `clan_member_acct` int(11) NOT NULL DEFAULT '0', + `clan_member_custom_title` varchar(64) NOT NULL DEFAULT '', + `clan_member_custom_tag` varchar(16) NOT NULL DEFAULT '', + `clan_member_flags` int(32) NOT NULL DEFAULT '0', + `clan_member_rank` int(11) NOT NULL DEFAULT '0', + `clan_member_removed` tinyint(1) NOT NULL DEFAULT '1', + `clan_member_who_removed` int(11) NOT NULL DEFAULT '0', + `clan_member_who_added` int(11) NOT NULL DEFAULT '0', + PRIMARY KEY (`clan_member_id`) +) ENGINE=InnoDB DEFAULT CHARSET=latin1 COMMENT='Clans - Members'; + +-- Dumping data for table db24053.clan_members: ~0 rows (approximately) +/*!40000 ALTER TABLE `clan_members` DISABLE KEYS */; +/*!40000 ALTER TABLE `clan_members` ENABLE KEYS */; + +-- Dumping structure for table db24053.clan_ranks +CREATE TABLE IF NOT EXISTS `clan_ranks` ( + `clan_rank_id` int(11) NOT NULL AUTO_INCREMENT, + `clan_rank_clan` int(11) NOT NULL DEFAULT '0', + `clan_rank_name` varchar(64) NOT NULL DEFAULT '', + `clan_rank_custom_tag` varchar(16) NOT NULL DEFAULT '', + `clan_rank_flags` int(32) NOT NULL DEFAULT '0', + `clan_rank_after_rank_id` int(11) NOT NULL DEFAULT '0', + PRIMARY KEY (`clan_rank_id`) +) ENGINE=InnoDB DEFAULT CHARSET=latin1 COMMENT='Clans - Ranks'; + +-- Dumping data for table db24053.clan_ranks: ~0 rows (approximately) +/*!40000 ALTER TABLE `clan_ranks` DISABLE KEYS */; +/*!40000 ALTER TABLE `clan_ranks` ENABLE KEYS */; + +-- Dumping structure for table db24053.error_main +CREATE TABLE IF NOT EXISTS `error_main` ( + `error_id` int(11) NOT NULL AUTO_INCREMENT, + `error_server` tinyint(2) NOT NULL DEFAULT '0', + `error_when_added` int(32) NOT NULL, + `error_script_ver` varchar(16) NOT NULL DEFAULT '0.0', + `error_module` int(11) NOT NULL DEFAULT '0', + `error_file` text NOT NULL, + `error_line` int(11) NOT NULL DEFAULT '0', + `error_locals` text NOT NULL, + `error_func` varchar(128) NOT NULL DEFAULT 'Unknown', + PRIMARY KEY (`error_id`) +) ENGINE=InnoDB DEFAULT CHARSET=latin1 COMMENT='Error Reports'; + +-- Dumping data for table db24053.error_main: ~0 rows (approximately) +/*!40000 ALTER TABLE `error_main` DISABLE KEYS */; +/*!40000 ALTER TABLE `error_main` ENABLE KEYS */; + +-- Dumping structure for table db24053.house_main +CREATE TABLE IF NOT EXISTS `house_main` ( + `house_id` smallint(6) NOT NULL AUTO_INCREMENT, + `house_server` tinyint(1) NOT NULL DEFAULT '0', + `house_description` varchar(64) CHARACTER SET utf8 COLLATE utf8_unicode_ci NOT NULL DEFAULT '', + `house_owner_type` int(11) NOT NULL, + `house_owner_id` int(11) NOT NULL, + `house_locked` tinyint(1) NOT NULL DEFAULT '0', + `house_buy_price` int(11) NOT NULL, + `house_rent_price` int(11) NOT NULL, + `house_entrance_pos_x` float NOT NULL DEFAULT '0', + `house_entrance_pos_y` float NOT NULL DEFAULT '0', + `house_entrance_pos_z` float NOT NULL DEFAULT '0', + `house_entrance_rot_z` float NOT NULL DEFAULT '0', + `house_entrance_int` smallint(6) NOT NULL DEFAULT '0', + `house_entrance_vw` int(11) NOT NULL DEFAULT '0', + `house_entrance_pickup` int(11) NOT NULL, + `house_entrance_blip` int(11) NOT NULL, + `house_exit_pos_x` float NOT NULL DEFAULT '0', + `house_exit_pos_y` float NOT NULL DEFAULT '0', + `house_exit_pos_z` float NOT NULL DEFAULT '0', + `house_exit_rot_z` float NOT NULL, + `house_exit_int` int(11) NOT NULL DEFAULT '0', + `house_exit_vw` int(11) NOT NULL, + `house_exit_pickup` int(11) NOT NULL, + `house_exit_blip` int(11) NOT NULL, + PRIMARY KEY (`house_id`) USING BTREE +) ENGINE=InnoDB AUTO_INCREMENT=2094 DEFAULT CHARSET=latin1 COMMENT='Houses'; + +-- Dumping data for table db24053.house_main: ~2,090 rows (approximately) +/*!40000 ALTER TABLE `house_main` DISABLE KEYS */; +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (1, 4, 'Madd Doggs House', 0, 0, 0, 5250000, 0, 1298.55, -798.182, 84.138, 0, 0, 0, 0, 0, 1298.81, -796.658, 1084.01, 0, 5, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (2, 4, 'Small Cottage', 0, 0, 0, 25000, 0, -418.648, -1759.54, 6.21, 0, 0, 0, 0, 0, 244.41, 305.032, 999.148, 0, 1, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (3, 4, 'Mexican Style House', 0, 0, 0, 350000, 0, 657.218, -1652.65, 15.399, 0, 0, 0, 0, 0, 2365.27, -1135.59, 1050.88, 0, 8, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (4, 4, 'Mexican Style House', 0, 0, 0, 350000, 0, 693.76, -1645.79, 4.09, 0, 0, 0, 0, 0, 2365.27, -1135.59, 1050.88, 0, 8, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (5, 4, 'Mexican Style House', 0, 0, 0, 350000, 0, 693.57, -1705.87, 3.809, 0, 0, 0, 0, 0, 2365.27, -1135.59, 1050.88, 0, 8, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (6, 4, 'Mexican Style House', 0, 0, 0, 350000, 0, 766.9, -1606.18, 13.8, 0, 0, 0, 0, 0, 2365.27, -1135.59, 1050.88, 0, 8, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (7, 4, 'Mexican Style House', 0, 0, 0, 350000, 0, 768.07, -1655.99, 5.598, 0, 0, 0, 0, 0, 2365.27, -1135.59, 1050.88, 0, 8, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (8, 4, 'Mexican Style House', 0, 0, 0, 350000, 0, 769.218, -1696.74, 5.15, 0, 0, 0, 0, 0, 2365.27, -1135.59, 1050.88, 0, 8, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (9, 4, 'Mexican Style House', 0, 0, 0, 350000, 0, 769.2, -1745.85, 13.069, 0, 0, 0, 0, 0, 2365.27, -1135.59, 1050.88, 0, 8, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (10, 4, 'Mexican Style House', 0, 0, 0, 350000, 0, 653.58, -1714, 14.76, 0, 0, 0, 0, 0, 2365.27, -1135.59, 1050.88, 0, 8, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (11, 4, 'Mexican Style House', 0, 0, 0, 350000, 0, 1906.04, -1112.94, 26.659, 0, 0, 0, 0, 0, 2365.27, -1135.59, 1050.88, 0, 8, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (12, 4, 'Mexican Style House', 0, 0, 0, 350000, 0, 1939.23, -1114.51, 27.45, 0, 0, 0, 0, 0, 2365.27, -1135.59, 1050.88, 0, 8, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (13, 4, 'Mexican Style House', 0, 0, 0, 350000, 0, 1999.97, -1114.05, 27.12, 0, 0, 0, 0, 0, 2365.27, -1135.59, 1050.88, 0, 8, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (14, 4, 'Mexican Style House', 0, 0, 0, 350000, 0, 2022.92, -1120.26, 26.42, 0, 0, 0, 0, 0, 2365.27, -1135.59, 1050.88, 0, 8, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (15, 4, 'Mexican Style House', 0, 0, 0, 350000, 0, 2095.33, -1145.13, 26.59, 0, 0, 0, 0, 0, 2365.27, -1135.59, 1050.88, 0, 8, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (16, 4, 'Mexican Style House', 0, 0, 0, 350000, 0, 2092.24, -1166.36, 26.579, 0, 0, 0, 0, 0, 2365.27, -1135.59, 1050.88, 0, 8, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (17, 4, 'Mexican Style House', 0, 0, 0, 350000, 0, 793.989, -1707.45, 14.029, 0, 0, 0, 0, 0, 2365.27, -1135.59, 1050.88, 0, 8, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (18, 4, 'Simple House', 0, 0, 0, 65000, 0, 1886.26, -1113.66, 26.27, 0, 0, 0, 0, 0, 260.769, 1237.26, 1084.25, 0, 9, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (19, 4, 'Simple House', 0, 0, 0, 65000, 100, 1921.35, -1115.18, 27.079, 0, 0, 0, 0, 0, 260.769, 1237.26, 1084.25, 0, 9, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (20, 4, 'Simple House', 0, 0, 0, 65000, 400, 1955.4, -1115.35, 27.829, 0, 0, 0, 0, 0, 260.769, 1237.26, 1084.25, 0, 9, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (21, 4, 'Simple House', 0, 0, 0, 65000, 0, 2045.5, -1116.63, 26.36, 0, 0, 0, 0, 0, 260.769, 1237.26, 1084.25, 0, 9, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (22, 4, 'Simple House', 0, 0, 0, 65000, 650, 2093.99, -1122.78, 27.68, 0, 0, 0, 0, 0, 260.769, 1237.26, 1084.25, 0, 9, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (23, 4, 'Simple House', 0, 0, 0, 65000, 0, 2091.67, -1184.45, 27.048, 0, 0, 0, 0, 0, 260.769, 1237.26, 1084.25, 0, 9, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (24, 4, 'Simple House', 0, 0, 0, 65000, 0, 769.049, -1726.35, 13.43, 0, 0, 0, 0, 0, 260.769, 1237.26, 1084.25, 0, 9, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (25, 4, 'Simple House', 0, 0, 0, 65000, 0, 794.89, -1691.99, 14.46, 0, 0, 0, 0, 0, 260.769, 1237.26, 1084.25, 0, 9, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (26, 4, 'Simple House', 0, 0, 0, 65000, 0, 2495.41, -1690.94, 14.76, 0, 0, 0, 0, 0, 2495.97, -1692.08, 1014.74, 0, 3, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (28, 4, 'Simple House', 0, 0, 0, 800000, 0, 2126.68, -1320.68, 26.62, 0, 0, 0, 0, 0, 234.162, 1064.23, 1084.21, 0, 6, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (29, 4, '2 Bedroom House', 0, 0, 0, 100000, 0, 2091.05, -1278.14, 26.17, 0, 0, 0, 0, 0, 2196.53, -1204.18, 1049.02, 0, 6, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (30, 4, '2 Bedroom House', 0, 0, 0, 100000, 0, 2191.64, -1275.82, 25.149, 0, 0, 0, 0, 0, 2196.53, -1204.18, 1049.02, 0, 6, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (31, 4, '2 Bedroom House', 0, 0, 0, 100000, 5, 2229.66, -1241.52, 25.649, 0, 0, 0, 0, 0, 2196.53, -1204.18, 1049.02, 0, 6, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (32, 4, 'Big Living Style', 0, 0, 0, 80000, 0, 2100.94, -1321.8, 25.95, 0, 0, 0, 0, 0, 2269.92, -1210.37, 1047.56, 0, 10, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (33, 4, 'Big Living Style', 0, 0, 0, 80000, 0, 2132.32, -1280.12, 25.888, 0, 0, 0, 0, 0, 2269.92, -1210.37, 1047.56, 0, 10, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (34, 4, 'Big Living Style', 0, 0, 0, 80000, 0, 2250.2, -1280.32, 25.468, 0, 0, 0, 0, 0, 2269.92, -1210.37, 1047.56, 0, 10, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (35, 4, 'Big Living Style', 0, 0, 0, 80000, 1, 2249.92, -1238.89, 25.888, 0, 0, 0, 0, 0, 2269.92, -1210.37, 1047.56, 0, 10, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (36, 4, 'Big Living Style', 0, 0, 0, 80000, 0, 2153.82, -1243.53, 25.36, 0, 0, 0, 0, 0, 2269.92, -1210.37, 1047.56, 0, 10, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (37, 4, 'Big Living Style', 0, 0, 0, 80000, 0, 2110.99, -1244.32, 25.85, 0, 0, 0, 0, 0, 2269.92, -1210.37, 1047.56, 0, 10, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (38, 4, 'Small House', 0, 0, 0, 45000, 5000, 2148.55, -1319.82, 25.739, 0, 0, 0, 0, 0, 2282.9, -1139.99, 1050.89, 0, 11, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (39, 4, 'Small House', 0, 0, 0, 45000, 0, 2150.21, -1285.45, 24.19, 0, 0, 0, 0, 0, 2282.9, -1139.99, 1050.89, 0, 11, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (40, 4, 'Small House', 0, 0, 0, 45000, 0, 2230.1, -1280.56, 25.36, 0, 0, 0, 0, 0, 2282.9, -1139.99, 1050.89, 0, 11, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (41, 4, 'Small House', 0, 0, 0, 45000, 0, 2209.74, -1239.99, 24.138, 0, 0, 0, 0, 0, 2282.9, -1139.99, 1050.89, 0, 11, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (42, 4, 'Minor Manor', 0, 0, 0, 50000, 0, 2133.39, -1232.84, 24.42, 0, 0, 0, 0, 0, 2333.12, -1077.13, 1049.02, 0, 6, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (43, 4, 'Minor Manor', 0, 0, 0, 800000, 0, 2148.73, -1484.85, 26.62, 0, 0, 0, 0, 0, 234.162, 1064.23, 1084.21, 0, 6, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (44, 4, 'Simple House', 0, 0, 0, 65000, 0, 2023.31, -1053.15, 25.59, 0, 0, 0, 0, 0, 260.769, 1237.26, 1084.25, 0, 9, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (45, 4, 'Simple House', 0, 0, 0, 65000, 0, 2036.12, -1059.42, 25.649, 0, 0, 0, 0, 0, 260.769, 1237.26, 1084.25, 0, 9, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (46, 4, 'Simple House', 0, 0, 0, 65000, 0, 2050.9, -1065.83, 25.78, 0, 0, 0, 0, 0, 260.769, 1237.26, 1084.25, 0, 9, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (47, 4, 'Small House', 0, 0, 0, 45000, 0, 2150.76, -1400.63, 25.79, 0, 0, 0, 0, 0, 2282.9, -1139.99, 1050.89, 0, 11, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (48, 4, 'Small House', 0, 0, 0, 45000, 0, 2151.7, -1446.33, 25.77, 0, 0, 0, 0, 0, 2282.9, -1139.99, 1050.89, 0, 11, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (49, 4, 'Small House', 0, 0, 0, 45000, 0, 2190.69, -1487.68, 25.77, 0, 0, 0, 0, 0, 2282.9, -1139.99, 1050.89, 0, 11, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (50, 4, 'Small House', 0, 0, 0, 45000, 100, 2196.48, -1404.19, 25.61, 0, 0, 0, 0, 0, 2282.9, -1139.99, 1050.89, 0, 11, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (51, 4, 'Small House', 0, 0, 0, 45000, 200, 2147.69, -1366.65, 25.638, 0, 0, 0, 0, 0, 2282.9, -1139.99, 1050.89, 0, 11, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (52, 4, '2 Bedroom House', 0, 0, 0, 100000, 200, 2188.83, -1419.29, 26.149, 0, 0, 0, 0, 0, 2196.53, -1204.18, 1049.02, 0, 6, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (53, 4, 'Big Living Style', 0, 0, 0, 80000, 1500, 2150.8, -1419.01, 25.92, 0, 0, 0, 0, 0, 2269.92, -1210.37, 1047.56, 0, 10, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (54, 4, 'Big Living Style', 0, 0, 0, 80000, 0, 2190.55, -1470.42, 25.909, 0, 0, 0, 0, 0, 2269.92, -1210.37, 1047.56, 0, 10, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (55, 4, 'Cheap Stuff', 0, 0, 0, 35000, 0, 2149.5, -1433.73, 25.94, 0, 0, 0, 0, 0, 327.91, 1477.79, 1084.43, 0, 15, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (56, 4, 'Cheap Stuff', 0, 0, 0, 25000, 0, 2373.97, -1138.92, 29.048, 0, 0, 0, 0, 0, -68.847, 1351.31, 1080.21, 0, 6, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (57, 4, 'Cheap Stuff', 0, 0, 0, 35000, 0, 2488.07, -1135.61, 39.43, 0, 0, 0, 0, 0, 327.91, 1477.79, 1084.43, 0, 15, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (58, 4, '2 Bedroom House', 0, 0, 0, 100000, 0, 2394.96, -1133.67, 30.708, 0, 0, 0, 0, 0, 2196.53, -1204.18, 1049.02, 0, 6, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (59, 4, 'Hallway House', 0, 0, 0, 70000, 0, 2191.74, -1239.03, 24.149, 0, 0, 0, 0, 0, 260.989, 1284.29, 1080.25, 0, 4, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (60, 4, 'Hallway House', 0, 0, 0, 70000, 0, 2090.73, -1234.89, 25.68, 0, 0, 0, 0, 0, 260.989, 1284.29, 1080.25, 0, 4, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (61, 4, 'Hallway House', 0, 0, 0, 70000, 100, 2207.91, -1281.05, 24.79, 0, 0, 0, 0, 0, 260.989, 1284.29, 1080.25, 0, 4, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (62, 4, 'Hallway House', 0, 0, 0, 70000, 0, 2202.75, -1363.93, 25.86, 0, 0, 0, 0, 0, 260.989, 1284.29, 1080.25, 0, 4, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (63, 4, 'Hallway House', 0, 0, 0, 70000, 0, 2129.66, -1361.94, 25.798, 0, 0, 0, 0, 0, 260.989, 1284.29, 1080.25, 0, 4, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (64, 4, 'Hallway House', 0, 0, 0, 70000, 0, 2146.49, -1470.47, 25.708, 0, 0, 0, 0, 0, 260.989, 1284.29, 1080.25, 0, 4, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (65, 4, 'Hallway House', 0, 0, 0, 70000, 100, 2194.53, -1442.93, 25.739, 0, 0, 0, 0, 0, 260.989, 1284.29, 1080.25, 0, 4, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (66, 4, 'Hallway House', 0, 0, 0, 70000, 0, 2230.44, -1396.88, 24.239, 0, 0, 0, 0, 0, 260.989, 1284.29, 1080.25, 0, 4, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (67, 4, 'Hallway House', 0, 0, 0, 70000, 0, 2243.47, -1396.96, 24.239, 0, 0, 0, 0, 0, 260.989, 1284.29, 1080.25, 0, 4, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (68, 4, 'Hallway House', 0, 0, 0, 70000, 0, 2256.46, -1396.92, 24.239, 0, 0, 0, 0, 0, 260.989, 1284.29, 1080.25, 0, 4, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (69, 4, 'Hallway House', 0, 0, 0, 70000, 0, 2263.89, -1469.58, 24.04, 0, 0, 0, 0, 0, 260.989, 1284.29, 1080.25, 0, 4, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (70, 4, 'Hallway House', 0, 0, 0, 70000, 0, 2247.69, -1469.54, 24.138, 0, 0, 0, 0, 0, 260.989, 1284.29, 1080.25, 0, 4, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (71, 4, 'Hallway House', 0, 0, 0, 70000, 100, 2232.56, -1469.54, 24.25, 0, 0, 0, 0, 0, 260.989, 1284.29, 1080.25, 0, 4, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (72, 4, 'Hallway House', 0, 0, 0, 70000, 0, 2510.35, -1132.66, 41.29, 0, 0, 0, 0, 0, 260.989, 1284.29, 1080.25, 0, 4, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (73, 4, 'Small House', 0, 0, 0, 45000, 0, 2185.15, -1364, 25.819, 0, 0, 0, 0, 0, 2282.9, -1139.99, 1050.89, 0, 11, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (74, 4, 'Light Living', 0, 0, 0, 48000, 0, 2061.06, -1075.35, 25.68, 0, 0, 0, 0, 0, 2218.35, -1076.26, 1050.48, 0, 1, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (75, 4, 'House', 0, 0, 0, 10500, 500, 1959.58, -1070.07, 24.79, 0, 0, 0, 0, 0, 243.979, 304.98, 999.14, 0, 1, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (76, 4, 'House', 0, 0, 0, 10500, 0, 1954.38, -1074.93, 24.79, 0, 0, 0, 0, 0, 243.979, 304.98, 999.14, 0, 1, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (77, 4, 'House', 0, 0, 0, 10500, 0, 1934.04, -1071.51, 24.409, 0, 0, 0, 0, 0, 243.979, 304.98, 999.14, 0, 1, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (78, 4, 'House', 0, 0, 0, 10500, 0, 1939.27, -1066.39, 24.409, 0, 0, 0, 0, 0, 243.979, 304.98, 999.14, 0, 1, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (79, 4, 'House', 0, 0, 0, 10500, 0, 1916.88, -1064.77, 24.12, 0, 0, 0, 0, 0, 243.979, 304.98, 999.14, 0, 1, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (80, 4, 'House', 0, 0, 0, 10500, 0, 1912.61, -1070.55, 24.229, 0, 0, 0, 0, 0, 243.979, 304.98, 999.14, 0, 1, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (81, 4, 'House', 0, 0, 0, 10500, 500, 1896.04, -1064.84, 23.93, 0, 0, 0, 0, 0, 243.979, 304.98, 999.14, 0, 1, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (82, 4, 'House', 0, 0, 0, 10500, 0, 1891.77, -1070.53, 23.93, 0, 0, 0, 0, 0, 243.979, 304.98, 999.14, 0, 1, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (83, 4, 'Light Living', 0, 0, 0, 48000, 5000, 2077.3, -1056.98, 31.34, 0, 0, 0, 0, 0, 2218.35, -1076.26, 1050.48, 0, 1, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (84, 4, 'House', 0, 0, 0, 80000, 0, 2157.15, -1072.39, 40.49, 0, 0, 0, 0, 0, 2237.51, -1081.64, 1049.02, 0, 2, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (85, 4, 'House', 0, 0, 0, 80000, 1000, 2188.76, -1081.51, 43.83, 0, 0, 0, 0, 0, 2237.51, -1081.64, 1049.02, 0, 2, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (86, 4, 'House', 0, 0, 0, 80000, 0, 2207.5, -1100.43, 31.548, 0, 0, 0, 0, 0, 2237.51, -1081.64, 1049.02, 0, 2, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (87, 4, 'House', 0, 0, 0, 1000, 0, 2213.22, -1000.31, 68.23, 0, 0, 0, 0, 0, 140.229, 1366, 1083.85, 0, 5, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (88, 4, 'Little Apartment', 0, 0, 0, 50000, 0, 1283.54, -897.848, 42.868, 0, 0, 0, 0, 0, 328.493, 1480.59, 1084.45, 0, 15, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (89, 4, 'Little Apartment', 0, 0, 0, 50000, 0, 1291.02, -896.89, 42.88, 0, 0, 0, 0, 0, 328.493, 1480.59, 1084.45, 0, 15, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (90, 4, 'Little Apartment', 0, 0, 0, 50000, 0, 1291.02, -896.859, 46.618, 0, 0, 0, 0, 0, 328.493, 1480.59, 1084.45, 0, 15, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (91, 4, 'Little Apartment', 0, 0, 0, 50000, 40, 1283.53, -897.82, 46.618, 0, 0, 0, 0, 0, 328.493, 1480.59, 1084.45, 0, 15, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (92, 4, 'Little Apartment', 0, 0, 0, 50000, 0, 1291.82, -903.07, 46.63, 0, 0, 0, 0, 0, 328.493, 1480.59, 1084.45, 0, 15, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (93, 4, 'Little Apartment', 0, 0, 0, 50000, 100, 1284.36, -903.979, 46.63, 0, 0, 0, 0, 0, 328.493, 1480.59, 1084.45, 0, 15, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (94, 4, 'Little Apartment', 0, 0, 0, 50000, 0, 1284.34, -904.03, 42.88, 0, 0, 0, 0, 0, 328.493, 1480.59, 1084.45, 0, 15, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (95, 4, 'Little Apartment', 0, 0, 0, 50000, 0, 1291.83, -903.03, 42.88, 0, 0, 0, 0, 0, 328.493, 1480.59, 1084.45, 0, 15, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (96, 4, 'Little Apartment', 0, 0, 0, 50000, 0, 1288.34, -873.89, 43.06, 0, 0, 0, 0, 0, 328.493, 1480.59, 1084.45, 0, 15, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (97, 4, 'Little Apartment', 0, 0, 0, 50000, 0, 1280.86, -874.848, 42.93, 0, 0, 0, 0, 0, 328.493, 1480.59, 1084.45, 0, 15, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (98, 4, 'Little Apartment', 0, 0, 0, 50000, 0, 1287.53, -867.679, 43.138, 0, 0, 0, 0, 0, 328.493, 1480.59, 1084.45, 0, 15, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (99, 4, 'Little Apartment', 0, 0, 0, 50000, 0, 1280.08, -868.619, 42.916, 0, 0, 0, 0, 0, 328.493, 1480.59, 1084.45, 0, 15, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (100, 4, 'Little Apartment', 0, 0, 0, 50000, 5000, 1287.53, -867.739, 46.83, 0, 0, 0, 0, 0, 328.493, 1480.59, 1084.45, 0, 15, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (101, 4, 'Little Apartment', 0, 0, 0, 50000, 250, 1280.04, -868.609, 46.83, 0, 0, 0, 0, 0, 328.493, 1480.59, 1084.45, 0, 15, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (102, 4, 'Little Apartment', 0, 0, 0, 50000, 0, 1288.33, -873.82, 46.84, 0, 0, 0, 0, 0, 328.493, 1480.59, 1084.45, 0, 15, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (103, 4, 'Little Apartment', 0, 0, 0, 50000, 0, 1280.86, -874.859, 46.84, 0, 0, 0, 0, 0, 328.493, 1480.59, 1084.45, 0, 15, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (104, 4, 'Little Apartment', 0, 0, 0, 50000, 0, 1249.61, -877.299, 42.88, 0, 0, 0, 0, 0, 328.493, 1480.59, 1084.45, 0, 15, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (105, 4, 'Little Apartment', 0, 0, 0, 50000, 0, 1242.11, -878.229, 42.868, 0, 0, 0, 0, 0, 328.493, 1480.59, 1084.45, 0, 15, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (106, 4, 'Little Apartment', 0, 0, 0, 50000, 0, 1248.8, -871.14, 42.88, 0, 0, 0, 0, 0, 328.493, 1480.59, 1084.45, 0, 15, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (107, 4, 'Little Apartment', 0, 0, 0, 50000, 0, 1241.31, -872.09, 42.88, 0, 0, 0, 0, 0, 328.493, 1480.59, 1084.45, 0, 15, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (108, 4, 'Little Apartment', 0, 0, 0, 50000, 0, 1248.8, -871.15, 46.63, 0, 0, 0, 0, 0, 328.493, 1480.59, 1084.45, 0, 15, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (109, 4, 'Little Apartment', 0, 0, 0, 50000, 0, 1241.3, -872.059, 46.63, 0, 0, 0, 0, 0, 328.493, 1480.59, 1084.45, 0, 15, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (110, 4, 'Little Apartment', 0, 0, 0, 50000, 0, 1249.61, -877.28, 46.638, 0, 0, 0, 0, 0, 328.493, 1480.59, 1084.45, 0, 15, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (111, 4, 'Little Apartment', 0, 0, 0, 50000, 0, 1242.12, -878.218, 46.638, 0, 0, 0, 0, 0, 328.493, 1480.59, 1084.45, 0, 15, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (112, 4, 'Little Apartment', 0, 0, 0, 50000, 0, 1252.88, -901.869, 42.88, 0, 0, 0, 0, 0, 328.493, 1480.59, 1084.45, 0, 15, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (113, 4, 'Little Apartment', 0, 0, 0, 50000, 0, 1245.4, -902.83, 42.88, 0, 0, 0, 0, 0, 328.493, 1480.59, 1084.45, 0, 15, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (114, 4, 'Little Apartment', 0, 0, 0, 50000, 0, 1253.7, -908.059, 42.88, 0, 0, 0, 0, 0, 328.493, 1480.59, 1084.45, 0, 15, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (115, 4, 'Little Apartment', 0, 0, 0, 50000, 0, 1246.24, -909.03, 42.88, 0, 0, 0, 0, 0, 328.493, 1480.59, 1084.45, 0, 15, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (116, 4, 'Little Apartment', 0, 0, 0, 50000, 0, 1246.21, -908.979, 46.597, 0, 0, 0, 0, 0, 328.493, 1480.59, 1084.45, 0, 15, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (117, 4, 'Little Apartment', 0, 0, 0, 50000, 0, 1253.71, -908.098, 46.597, 0, 0, 0, 0, 0, 328.493, 1480.59, 1084.45, 0, 15, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (118, 4, 'Little Apartment', 0, 0, 0, 50000, 0, 1245.4, -902.799, 46.59, 0, 0, 0, 0, 0, 328.493, 1480.59, 1084.45, 0, 15, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (119, 4, 'Little Apartment', 0, 0, 0, 50000, 0, 1252.89, -901.88, 46.59, 0, 0, 0, 0, 0, 328.493, 1480.59, 1084.45, 0, 15, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (120, 4, 'Major Manor', 0, 0, 0, 50000, 0, 1111.5, -976.299, 42.756, 0, 0, 0, 0, 0, 2333.12, -1077.13, 1049.02, 0, 6, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (121, 4, 'Major Manor', 0, 0, 0, 3000000, 0, 1496.99, -687.89, 95.555, 0, 0, 0, 0, 0, 225.699, 1021.44, 1084.01, 0, 7, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (122, 4, 'Major Manor', 0, 0, 0, 3000000, 0, 980.468, -677.26, 121.97, 0, 0, 0, 0, 0, 225.699, 1021.44, 1084.01, 0, 7, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (123, 4, 'Major Manor', 0, 0, 0, 3000000, 0, 251.429, -1220.21, 76.097, 0, 0, 0, 0, 0, 225.699, 1021.44, 1084.01, 0, 7, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (124, 4, 'Fancy Mansion', 0, 0, 0, 1800000, 0, 253.179, -1270.01, 74.416, 0, 0, 0, 0, 0, 140.229, 1366, 1083.85, 0, 5, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (125, 4, 'Major Manor', 0, 0, 0, 1800000, 0, 300.25, -1154.46, 81.388, 0, 0, 0, 0, 0, 140.229, 1366, 1083.85, 0, 5, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (126, 4, 'Major Manor', 0, 0, 0, 1800000, 0, 189.63, -1308.16, 70.236, 0, 0, 0, 0, 0, 140.229, 1366, 1083.85, 0, 5, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (127, 4, 'Major Manor', 0, 0, 0, 3000000, 0, 1122.7, -2036.98, 69.888, 0, 0, 0, 0, 0, 1298.8, -796.9, 1084.01, 0, 5, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (128, 4, 'Major Manor', 0, 0, 0, 800000, 5000, 1981.07, -1682.85, 17.048, 0, 0, 0, 0, 0, 234.162, 1064.23, 1084.21, 0, 6, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (129, 4, 'Minor Manor', 0, 0, 0, 800000, 0, 1980.37, -1718.91, 17.03, 0, 0, 0, 0, 0, 234.162, 1064.23, 1084.21, 0, 6, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (130, 4, 'Idlewood House', 0, 0, 0, 100000, 0, 2015.34, -1732.57, 14.229, 0, 0, 0, 0, 0, 2196.53, -1204.18, 1049.02, 0, 6, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (131, 4, '2 Bedroom House', 0, 0, 0, 100000, 0, 2017.97, -1703.38, 14.229, 0, 0, 0, 0, 0, 2196.53, -1204.18, 1049.02, 0, 6, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (132, 4, 'Small House', 0, 0, 0, 45000, 0, 2067.42, -1731.62, 13.869, 0, 0, 0, 0, 0, 2282.9, -1139.99, 1050.89, 0, 11, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (133, 4, 'Small House', 0, 0, 0, 45000, 0, 2068.06, -1628.89, 13.869, 0, 0, 0, 0, 0, 2282.9, -1139.99, 1050.89, 0, 11, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (134, 4, 'Small House', 0, 0, 0, 45000, 0, 2016.21, -1641.67, 13.779, 0, 0, 0, 0, 0, 2282.9, -1139.99, 1050.89, 0, 11, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (135, 4, 'Cheap Stuff', 0, 0, 0, 35000, 5000, 2015.82, -1716.99, 13.97, 0, 0, 0, 0, 0, 327.91, 1477.79, 1084.43, 0, 15, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (136, 4, 'Cheap Stuff', 0, 0, 0, 35000, 0, 2066.97, -1656.47, 14.069, 0, 0, 0, 0, 0, 327.91, 1477.79, 1084.43, 0, 15, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (137, 4, 'Cheap Stuff', 0, 0, 0, 35000, 0, 2191.58, -1455.88, 25.79, 0, 0, 0, 0, 0, 327.91, 1477.79, 1084.43, 0, 15, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (138, 4, 'Hallway House', 0, 0, 0, 70000, 0, 2067.74, -1643.74, 13.8, 0, 0, 0, 0, 0, 260.989, 1284.29, 1080.25, 0, 4, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (139, 4, 'Hallway House', 0, 0, 0, 70000, 0, 2066.42, -1717.06, 13.8, 0, 0, 0, 0, 0, 260.989, 1284.29, 1080.25, 0, 4, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (140, 4, 'Hallway House', 0, 0, 0, 70000, 0, 2013.31, -1656.37, 13.8, 0, 0, 0, 0, 0, 260.989, 1284.29, 1080.25, 0, 4, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (141, 4, 'Hallway House', 0, 0, 0, 70000, 0, 2017.86, -1629.93, 13.71, 0, 0, 0, 0, 0, 260.989, 1284.29, 1080.25, 0, 4, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (142, 4, 'Low Light Living', 0, 0, 0, 70000, 1, 2065.24, -1703.52, 14.14, 0, 0, 0, 0, 0, -42.58, 1405.59, 1084.42, 0, 8, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (143, 4, 'Fancy Apartment', 0, 0, 0, 20000, 1500, 1969.35, -1705.42, 15.96, 0, 0, 0, 0, 0, 2218.04, -1076.24, 1050.48, 0, 1, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (144, 4, 'Fancy Apartment', 0, 0, 0, 20000, 2000, 1973.28, -1705.26, 15.96, 0, 0, 0, 0, 0, 2218.04, -1076.24, 1050.48, 0, 1, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (145, 4, 'Fancy Apartment', 0, 0, 0, 20000, 100, 1969.4, -1654.77, 15.96, 0, 0, 0, 0, 0, 2218.04, -1076.24, 1050.48, 0, 1, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (146, 4, 'Fancy Apartment', 0, 0, 0, 20000, 0, 1973.36, -1654.67, 15.96, 0, 0, 0, 0, 0, 2218.04, -1076.24, 1050.48, 0, 1, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (147, 4, 'Light Apartment', 0, 0, 0, 20000, 0, 1967.48, -1633.76, 15.96, 0, 0, 0, 0, 0, 2233.68, -1115.06, 1050.88, 0, 5, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (148, 4, 'Light Apartment', 0, 0, 0, 20000, 0, 1972.28, -1633.71, 15.96, 0, 0, 0, 0, 0, 2233.68, -1115.06, 1050.88, 0, 5, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (149, 4, 'Light Apartment', 0, 0, 0, 20000, 50, 1976.04, -1634.06, 16.208, 0, 0, 0, 0, 0, 2233.68, -1115.06, 1050.88, 0, 5, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (150, 4, 'Light Apartment', 0, 0, 0, 20000, 1, 1967.56, -1633.71, 18.559, 0, 0, 0, 0, 0, 2233.68, -1115.06, 1050.88, 0, 5, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (151, 4, 'Light Apartment', 0, 0, 0, 20000, 0, 1972.32, -1633.71, 18.559, 0, 0, 0, 0, 0, 2233.68, -1115.06, 1050.88, 0, 5, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (152, 4, 'Light Apartment', 0, 0, 0, 20000, 50, 1976.13, -1634.05, 18.559, 0, 0, 0, 0, 0, 2233.68, -1115.06, 1050.88, 0, 5, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (153, 4, 'Light Apartment', 0, 0, 0, 20000, 0, 1969.98, -1671.4, 15.96, 0, 0, 0, 0, 0, 2233.68, -1115.06, 1050.88, 0, 5, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (154, 4, 'Light Apartment', 0, 0, 0, 20000, 100, 1974.85, -1671.26, 15.96, 0, 0, 0, 0, 0, 2233.68, -1115.06, 1050.88, 0, 5, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (155, 4, 'Light Apartment', 0, 0, 0, 20000, 5, 1978.75, -1671.54, 16.18, 0, 0, 0, 0, 0, 2233.68, -1115.06, 1050.88, 0, 5, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (156, 4, 'Light Apartment', 0, 0, 0, 20000, 0, 1970.06, -1671.19, 18.54, 0, 0, 0, 0, 0, 2233.68, -1115.06, 1050.88, 0, 5, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (157, 4, 'Light Apartment', 0, 0, 0, 20000, 0, 1974.86, -1671.2, 18.54, 0, 0, 0, 0, 0, 2233.68, -1115.06, 1050.88, 0, 5, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (158, 4, 'Light Apartment', 0, 0, 0, 20000, 0, 1978.74, -1671.51, 18.54, 0, 0, 0, 0, 0, 2233.68, -1115.06, 1050.88, 0, 5, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (159, 4, 'House Ghetto LS Small', 0, 0, 0, 10000, 0, 2082.44, -1085.14, 25.687, 0, 0, 0, 0, 0, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (160, 4, 'House Ghetto LS Small', 0, 0, 0, 10000, 10, 2075.29, -1081.9, 25.68, 0, 0, 0, 0, 0, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (161, 4, 'Apartment LS Small', 0, 0, 0, 20000, 500, 2140.68, -1082.55, 25.034, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (162, 4, 'Apartment LS Small', 0, 0, 0, 20000, 1000, 2145.24, -1084.66, 25.034, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (163, 4, 'Ghetto Project Apartment LS Small', 0, 0, 0, 2000, 1, 2334.6, -1203.99, 27.975, 0, 0, 0, 0, 0, 243.72, 304.97, 999.14, 0, 1, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (164, 4, 'Ghetto Project Apartment LS Small', 0, 0, 0, 2000, 0, 2324.33, -1218.84, 27.975, 0, 0, 0, 0, 0, 243.72, 304.97, 999.14, 0, 1, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (165, 4, 'Ghetto Project Apartment LS Small', 0, 0, 0, 2000, 0, 2334.65, -1234.66, 27.975, 0, 0, 0, 0, 0, 243.72, 304.97, 999.14, 0, 1, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (166, 4, 'Ghetto Project Apartment LS Small', 0, 0, 0, 2000, 0, 2324.47, -1249.51, 27.975, 0, 0, 0, 0, 0, 243.72, 304.97, 999.14, 0, 1, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (167, 4, 'Ghetto Project Apartment LS Small', 0, 0, 0, 2000, 0, 2334.7, -1266.12, 27.968, 0, 0, 0, 0, 0, 243.72, 304.97, 999.14, 0, 1, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (168, 4, 'Ghetto Project Apartment LS Small', 0, 0, 0, 2000, 0, 2324.44, -1280.97, 27.982, 0, 0, 0, 0, 0, 243.72, 304.97, 999.14, 0, 1, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (169, 4, 'House Ghetto LS Small', 0, 0, 0, 10000, 0, 2427.38, -1135.77, 34.708, 0, 0, 0, 0, 0, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (170, 4, 'House Ghetto LS Small', 0, 0, 0, 10000, 0, 2467.56, -1200.41, 36.811, 0, 0, 0, 0, 0, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (171, 4, 'House Ghetto LS Small', 0, 0, 0, 10000, 0, 2492.17, -1239.01, 37.902, 0, 0, 0, 0, 0, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (172, 4, 'House Ghetto LS Small', 0, 0, 0, 10000, 0, 2494.1, -1224.25, 37.902, 0, 0, 0, 0, 0, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (173, 4, 'House Ghetto LS Small', 0, 0, 0, 10000, 0, 2472.9, -1238.12, 32.569, 0, 0, 0, 0, 0, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (174, 4, 'House Ghetto LS Small', 0, 0, 0, 10000, 0, 2474.9, -1223.36, 32.569, 0, 0, 0, 0, 0, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (175, 4, 'House Ghetto LS Small', 0, 0, 0, 10000, 5000, 2469.18, -1278.36, 30.364, 0, 0, 0, 0, 0, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (176, 4, 'House Ghetto LS Small', 0, 0, 0, 10000, 0, 2470.37, -1295.52, 30.232, 0, 0, 0, 0, 0, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (177, 4, 'House Ghetto LS Small', 0, 0, 0, 10000, 5, 2434.8, -1289.29, 25.347, 0, 0, 0, 0, 0, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (178, 4, 'Medium House Ghetto LS', 0, 0, 0, 12000, 0, 2433.94, -1303.35, 25.322, 0, 0, 0, 0, 0, 328.13, 1477.9, 1084.43, 0, 15, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (179, 4, 'Medium House Ghetto LS', 0, 0, 0, 12000, 0, 2433.93, -1320.68, 25.322, 0, 0, 0, 0, 0, 328.13, 1477.9, 1084.43, 0, 15, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (180, 4, 'Medium House Ghetto LS', 0, 0, 0, 12000, 0, 2439.59, -1338.72, 24.1, 0, 0, 0, 0, 0, 328.13, 1477.9, 1084.43, 0, 15, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (181, 4, 'Medium House Ghetto LS', 0, 0, 0, 12000, 0, 2439.59, -1357.14, 24.1, 0, 0, 0, 0, 0, 328.13, 1477.9, 1084.43, 0, 15, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (182, 4, 'Normal Size House In SF', 0, 0, 0, 85000, 0, -2789.59, -181.41, 10.062, 0, 0, 0, 0, 0, 2196.84, -1204.23, 1049.02, 0, 6, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (183, 4, 'Medium House Ghetto LS', 0, 0, 0, 12000, 500, 2421.23, -1277.2, 24.756, 0, 0, 0, 0, 0, 328.13, 1477.9, 1084.43, 0, 15, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (184, 4, 'Medium House Ghetto LS', 0, 0, 0, 12000, 0, 2420.02, -1287.25, 25.347, 0, 0, 0, 0, 0, 328.13, 1477.9, 1084.43, 0, 15, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (185, 4, 'Medium House Ghetto LS', 0, 0, 0, 12000, 0, 2419.23, -1301.95, 25.572, 0, 0, 0, 0, 0, 328.13, 1477.9, 1084.43, 0, 15, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (186, 4, 'Medium House Ghetto LS', 0, 0, 0, 12000, 0, 2419.23, -1319.22, 25.572, 0, 0, 0, 0, 0, 328.13, 1477.9, 1084.43, 0, 15, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (187, 4, 'Medium House Ghetto LS', 0, 0, 0, 12000, 0, 2424.89, -1336.86, 24.322, 0, 0, 0, 0, 0, 328.13, 1477.9, 1084.43, 0, 15, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (188, 4, 'Medium House Ghetto LS', 0, 0, 0, 12000, 0, 2424.89, -1355.15, 24.322, 0, 0, 0, 0, 0, 328.13, 1477.9, 1084.43, 0, 15, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (189, 4, 'Apartment 2nd Floor In SF', 0, 0, 0, 80000, 0, -2786.77, -175.214, 10.062, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (190, 4, 'Ghetto Project Apartment LS Small', 0, 0, 0, 2000, 2000, 2487.35, -1398.81, 29.312, 0, 0, 0, 0, 0, 243.72, 304.97, 999.14, 0, 1, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (191, 4, 'Ghetto Project Apartment LS Small', 0, 0, 0, 2000, 0, 2487.3, -1410.34, 29.312, 0, 0, 0, 0, 0, 243.72, 304.97, 999.14, 0, 1, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (192, 4, 'Ghetto Project Apartment LS Small', 0, 0, 0, 2000, 500, 2492.25, -1398.81, 29.312, 0, 0, 0, 0, 0, 243.72, 304.97, 999.14, 0, 1, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (193, 4, 'Ghetto Project Apartment LS Small', 0, 0, 0, 2000, 500, 2495.38, -1398.81, 29.312, 0, 0, 0, 0, 0, 243.72, 304.97, 999.14, 0, 1, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (194, 4, 'Appartment 1st Floor In SF', 0, 0, 0, 80000, 0, -2790.4, -168.274, 7.201, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (195, 4, 'Ghetto Project Apartment LS Small', 0, 0, 0, 2000, 0, 2495.29, -1410.34, 29.312, 0, 0, 0, 0, 0, 243.72, 304.97, 999.14, 0, 1, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (196, 4, 'Ghetto Project Apartment LS Small', 0, 0, 0, 2000, 0, 2492.18, -1410.34, 29.312, 0, 0, 0, 0, 0, 243.72, 304.97, 999.14, 0, 1, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (197, 4, 'Ghetto Project Apartment LS Small', 0, 0, 0, 2000, 0, 2476.27, -1410.34, 29.312, 0, 0, 0, 0, 0, 243.72, 304.97, 999.14, 0, 1, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (198, 4, 'Ghetto Project Apartment LS Small', 0, 0, 0, 2000, 500, 2473.14, -1410.34, 29.312, 0, 0, 0, 0, 0, 243.72, 304.97, 999.14, 0, 1, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (199, 4, 'Ghetto Project Apartment LS Small', 0, 0, 0, 2000, 1000, 2468.25, -1410.34, 29.312, 0, 0, 0, 0, 0, 243.72, 304.97, 999.14, 0, 1, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (200, 4, 'Normal Size Pink House In SF', 0, 0, 0, 85000, 0, -2791.99, -160.475, 10.053, 0, 0, 0, 0, 0, 2196.84, -1204.23, 1049.02, 0, 6, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (201, 4, 'Ghetto Project Apartment LS Small', 0, 0, 0, 2000, 0, 2476.4, -1398.81, 29.312, 0, 0, 0, 0, 0, 243.72, 304.97, 999.14, 0, 1, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (202, 4, 'Ghetto Project Apartment LS Small', 0, 0, 0, 2000, 500, 2476.25, -1391.71, 29.312, 0, 0, 0, 0, 0, 243.72, 304.97, 999.14, 0, 1, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (203, 4, 'Ghetto Project Apartment LS Small', 0, 0, 0, 2000, 200, 2473.12, -1391.71, 29.312, 0, 0, 0, 0, 0, 243.72, 304.97, 999.14, 0, 1, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (204, 4, 'Ghetto Project Apartment LS Small', 0, 0, 0, 2000, 0, 2468.3, -1391.71, 29.312, 0, 0, 0, 0, 0, 243.72, 304.97, 999.14, 0, 1, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (205, 4, 'Ghetto Project Apartment LS Small', 0, 0, 0, 2000, 200, 2468.3, -1383.37, 29.312, 0, 0, 0, 0, 0, 243.72, 304.97, 999.14, 0, 1, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (206, 4, 'Ghetto Project Apartment LS Small', 0, 0, 0, 2000, 0, 2473.17, -1383.37, 29.312, 0, 0, 0, 0, 0, 243.72, 304.97, 999.14, 0, 1, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (207, 4, 'Ghetto Project Apartment LS Small', 0, 0, 0, 2000, 1, 2476.42, -1383.37, 29.312, 0, 0, 0, 0, 0, 243.72, 304.97, 999.14, 0, 1, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (208, 4, 'Normal Size Very Light Green House In SF', 0, 0, 0, 55000, 3000, -2792.89, -153.151, 7.596, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (209, 4, 'Ghetto Project Apartment LS Small', 0, 0, 0, 2000, 200, 2487.38, -1383.38, 29.312, 0, 0, 0, 0, 0, 243.72, 304.97, 999.14, 0, 1, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (210, 4, 'Ghetto Project Apartment LS Small', 0, 0, 0, 2000, 0, 2492.22, -1383.37, 29.312, 0, 0, 0, 0, 0, 243.72, 304.97, 999.14, 0, 1, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (211, 4, 'Ghetto Project Apartment LS Small', 0, 0, 0, 2000, 5000, 2495.4, -1383.37, 29.312, 0, 0, 0, 0, 0, 243.72, 304.97, 999.14, 0, 1, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (212, 4, 'Ghetto Project Apartment LS Small', 0, 0, 0, 2000, 0, 2487.29, -1391.71, 29.312, 0, 0, 0, 0, 0, 243.72, 304.97, 999.14, 0, 1, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (213, 4, 'Ghetto Project Apartment LS Small', 0, 0, 0, 2000, 250, 2492.12, -1391.71, 29.312, 0, 0, 0, 0, 0, 243.72, 304.97, 999.14, 0, 1, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (214, 4, 'Normal Size Blue House In SF', 0, 0, 0, 85000, 0, -2791.86, -145.983, 7.859, 0, 0, 0, 0, 0, 2196.84, -1204.23, 1049.02, 0, 6, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (215, 4, 'Ghetto Project Apartment LS Small', 0, 0, 0, 2000, 0, 2495.35, -1391.71, 29.312, 0, 0, 0, 0, 0, 243.72, 304.97, 999.14, 0, 1, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (216, 4, 'Ghetto Project Apartment LS Small', 0, 0, 0, 2000, 0, 2495.41, -1417.44, 29.312, 0, 0, 0, 0, 0, 243.72, 304.97, 999.14, 0, 1, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (217, 4, 'Normal Size House In SF', 0, 0, 0, 85000, 0, -2791.99, -134.462, 10.053, 0, 0, 0, 0, 0, 2196.84, -1204.23, 1049.02, 0, 6, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (218, 4, 'Ghetto Project Apartment LS Small', 0, 0, 0, 2000, 0, 2495.3, -1424.58, 29.016, 0, 0, 0, 0, 0, 243.72, 304.97, 999.14, 0, 1, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (219, 4, 'Ghetto Project Apartment LS Small', 0, 0, 0, 2000, 500, 2492.09, -1424.58, 29.016, 0, 0, 0, 0, 0, 243.72, 304.97, 999.14, 0, 1, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (220, 4, 'Ghetto Project Apartment LS Small', 0, 0, 0, 2000, 0, 2492.27, -1417.44, 29.312, 0, 0, 0, 0, 0, 243.72, 304.97, 999.14, 0, 1, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (221, 4, 'Ghetto Project Apartment LS Small', 0, 0, 0, 2000, 200, 2487.35, -1424.58, 29.016, 0, 0, 0, 0, 0, 243.72, 304.97, 999.14, 0, 1, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (222, 4, 'Ghetto Project Apartment LS Small', 0, 0, 0, 2000, 200, 2487.34, -1417.44, 29.312, 0, 0, 0, 0, 0, 243.72, 304.97, 999.14, 0, 1, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (223, 4, 'Ghetto Project Apartment LS Small', 0, 0, 0, 2000, 50, 2476.25, -1424.58, 29.312, 0, 0, 0, 0, 0, 243.72, 304.97, 999.14, 0, 1, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (224, 4, 'Ghetto Project Apartment LS Small', 0, 0, 0, 2000, 0, 2476.39, -1417.44, 29.312, 0, 0, 0, 0, 0, 243.72, 304.97, 999.14, 0, 1, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (225, 4, 'Ghetto Project Apartment LS Small', 0, 0, 0, 2000, 0, 2473.12, -1417.44, 29.312, 0, 0, 0, 0, 0, 243.72, 304.97, 999.14, 0, 1, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (226, 4, 'Ghetto Project Apartment LS Small', 0, 0, 0, 2000, 0, 2473.09, -1424.57, 29.312, 0, 0, 0, 0, 0, 243.72, 304.97, 999.14, 0, 1, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (227, 4, 'Ghetto Project Apartment LS Small', 0, 0, 0, 2000, 5000, 2468.3, -1424.58, 29.312, 0, 0, 0, 0, 0, 243.72, 304.97, 999.14, 0, 1, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (228, 4, 'Ghetto Project Apartment LS Small', 0, 0, 0, 2000, 200, 2468.34, -1417.45, 29.312, 0, 0, 0, 0, 0, 243.72, 304.97, 999.14, 0, 1, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (229, 4, 'Ghetto Project Apartment LS Small', 0, 0, 0, 2000, 500, 2495.35, -1431.68, 29.016, 0, 0, 0, 0, 0, 243.72, 304.97, 999.14, 0, 1, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (230, 4, 'Ghetto Project Apartment LS Small', 0, 0, 0, 2000, 0, 2492.26, -1431.68, 29.016, 0, 0, 0, 0, 0, 243.72, 304.97, 999.14, 0, 1, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (231, 4, 'Ghetto Project Apartment LS Small', 0, 0, 0, 2000, 100, 2487.3, -1431.68, 29.016, 0, 0, 0, 0, 0, 243.72, 304.97, 999.14, 0, 1, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (232, 4, 'Ghetto Project Apartment LS Small', 0, 0, 0, 2000, 200, 2476.45, -1431.68, 29.312, 0, 0, 0, 0, 0, 243.72, 304.97, 999.14, 0, 1, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (233, 4, 'Normal Size Light Green House In SF', 0, 0, 0, 55000, 500, -2793.14, -126.986, 7.184, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (234, 4, 'Ghetto Project Apartment LS Small', 0, 0, 0, 2000, 999, 2473.24, -1431.68, 29.312, 0, 0, 0, 0, 0, 243.72, 304.97, 999.14, 0, 1, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (235, 4, 'Ghetto Project Apartment LS Small', 0, 0, 0, 2000, 5000, 2468.35, -1431.68, 29.312, 0, 0, 0, 0, 0, 243.72, 304.97, 999.14, 0, 1, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (236, 4, 'Ghetto Project Apartment LS Small', 0, 0, 0, 2000, 20, 2473.14, -1398.81, 29.312, 0, 0, 0, 0, 0, 243.72, 304.97, 999.14, 0, 1, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (237, 4, 'Ghetto Project Apartment LS Small', 0, 0, 0, 2000, 0, 2468.39, -1398.81, 29.312, 0, 0, 0, 0, 0, 243.72, 304.97, 999.14, 0, 1, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (238, 4, 'Ghetto Project Apartment LS Small', 0, 0, 0, 2000, 0, 2468.32, -1376.27, 29.312, 0, 0, 0, 0, 0, 243.72, 304.97, 999.14, 0, 1, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (239, 4, 'Ghetto Project Apartment LS Small', 0, 0, 0, 2000, 0, 2473.15, -1376.27, 29.312, 0, 0, 0, 0, 0, 243.72, 304.97, 999.14, 0, 1, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (240, 4, 'Ghetto Project Apartment LS Small', 0, 0, 0, 2000, 200, 2476.3, -1376.27, 29.312, 0, 0, 0, 0, 0, 243.72, 304.97, 999.14, 0, 1, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (241, 4, 'Appartment 2nd Floor In SF', 0, 0, 0, 80000, 0, -2786.77, -118.259, 10.062, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (242, 4, 'Ghetto Project Apartment LS Small', 0, 0, 0, 2000, 0, 2473.17, -1366.2, 29.312, 0, 0, 0, 0, 0, 243.72, 304.97, 999.14, 0, 1, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (243, 4, 'Ghetto Project Apartment LS Small', 0, 0, 0, 2000, 5000, 2468.38, -1366.2, 29.312, 0, 0, 0, 0, 0, 243.72, 304.97, 999.14, 0, 1, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (244, 4, 'Ghetto Project Apartment LS Small', 0, 0, 0, 2000, 0, 2476.37, -1366.2, 29.312, 0, 0, 0, 0, 0, 243.72, 304.97, 999.14, 0, 1, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (245, 4, 'Ghetto Project Apartment LS Small', 0, 0, 0, 2000, 0, 2487.39, -1366.2, 29.312, 0, 0, 0, 0, 0, 243.72, 304.97, 999.14, 0, 1, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (246, 4, 'Appartment 1st Floor In SF', 0, 0, 0, 80000, 0, -2790.34, -111.142, 7.201, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (247, 4, 'Ghetto Project Apartment LS Small', 0, 0, 0, 2000, 200, 2487.3, -1376.27, 29.312, 0, 0, 0, 0, 0, 243.72, 304.97, 999.14, 0, 1, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (248, 4, 'Ghetto Project Apartment LS Small', 0, 0, 0, 2000, 200, 2492.3, -1366.2, 29.312, 0, 0, 0, 0, 0, 243.72, 304.97, 999.14, 0, 1, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (249, 4, 'Ghetto Project Apartment LS Small', 0, 0, 0, 2000, 1, 2492.08, -1376.27, 29.312, 0, 0, 0, 0, 0, 243.72, 304.97, 999.14, 0, 1, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (250, 4, 'Ghetto Project Apartment LS Small', 0, 0, 0, 2000, 0, 2495.31, -1376.27, 29.312, 0, 0, 0, 0, 0, 243.72, 304.97, 999.14, 0, 1, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (251, 4, 'Ghetto Project Apartment LS Small', 0, 0, 0, 2000, 200, 2495.47, -1366.21, 29.312, 0, 0, 0, 0, 0, 243.72, 304.97, 999.14, 0, 1, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (252, 4, 'Normal Size Green/Brick House In SF', 0, 0, 0, 120000, 0, -2791.85, -107.452, 7.859, 0, 0, 0, 0, 0, 2196.84, -1204.23, 1049.02, 0, 6, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (253, 4, 'Normal Size Pink House In SF', 0, 0, 0, 85000, 0, -2791.99, -94.976, 10.053, 0, 0, 0, 0, 0, 2196.84, -1204.23, 1049.02, 0, 6, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (254, 4, 'Appartment 2nd Floor In SF', 0, 0, 0, 80000, 0, -2786.77, -89.706, 10.062, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (255, 4, 'Appartment 1st Floor In SF', 0, 0, 0, 80000, 0, -2790.42, -82.527, 7.195, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (256, 4, 'Ghetto Project Apartment LS Small', 0, 0, 0, 2000, 0, 2495.33, -1359.1, 29.312, 0, 0, 0, 0, 0, 243.72, 304.97, 999.14, 0, 1, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (257, 4, 'Ghetto Project Apartment LS Small', 0, 0, 0, 2000, 0, 2492.1, -1359.1, 29.312, 0, 0, 0, 0, 0, 243.72, 304.97, 999.14, 0, 1, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (258, 4, 'Ghetto Project Apartment LS Small', 0, 0, 0, 2000, 0, 2487.26, -1359.1, 29.312, 0, 0, 0, 0, 0, 243.72, 304.97, 999.14, 0, 1, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (259, 4, 'Ghetto Project Apartment LS Small', 0, 0, 0, 2000, 0, 2476.28, -1359.1, 29.312, 0, 0, 0, 0, 0, 243.72, 304.97, 999.14, 0, 1, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (260, 4, 'Ghetto Project Apartment LS Small', 0, 0, 0, 2000, 0, 2473.07, -1359.1, 29.312, 0, 0, 0, 0, 0, 243.72, 304.97, 999.14, 0, 1, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (261, 4, 'Ghetto Project Apartment LS Small', 0, 0, 0, 2000, 0, 2468.24, -1359.1, 29.312, 0, 0, 0, 0, 0, 243.72, 304.97, 999.14, 0, 1, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (262, 4, 'Normal Size House In SF', 0, 0, 0, 85000, 0, -2789.24, -52.58, 10.062, 0, 0, 0, 0, 0, 2196.84, -1204.23, 1049.02, 0, 6, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (263, 4, 'Normal Size Pink House In SF', 0, 0, 0, 85000, 0, -2791.91, -41.819, 10.053, 0, 0, 0, 0, 0, 2196.84, -1204.23, 1049.02, 0, 6, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (264, 4, 'House Ghetto LS Small', 0, 0, 0, 10000, 150, 2483.95, -1280.35, 30.468, 0, 0, 0, 0, 0, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (265, 4, 'House Ghetto LS Small', 0, 0, 0, 10000, 0, 2482.75, -1293.35, 30.232, 0, 0, 0, 0, 0, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (266, 4, 'Normal Size Blue House In SF', 0, 0, 0, 85000, 0, -2791.83, -35.903, 7.859, 0, 0, 0, 0, 0, 2196.84, -1204.23, 1049.02, 0, 6, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (267, 4, 'House Ghetto LS Small', 0, 0, 0, 10000, 0, 2529.65, -1243.31, 43.971, 0, 0, 0, 0, 0, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (268, 4, 'House Ghetto LS Small', 0, 0, 0, 10000, 0, 2531.05, -1228.61, 43.721, 0, 0, 0, 0, 0, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (269, 4, 'Normal Size Blue House In SF', 0, 0, 0, 85000, 0, -2791.84, -24.284, 10.053, 0, 0, 0, 0, 0, 2196.84, -1204.23, 1049.02, 0, 6, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (270, 4, 'House Ghetto LS Small', 0, 0, 0, 10000, 600, 2551.05, -1233.79, 49.331, 0, 0, 0, 0, 0, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (271, 4, 'Normal Size Green/Brick House In SF', 0, 0, 0, 120000, 0, -2791.59, -17.635, 7.859, 0, 0, 0, 0, 0, 2196.84, -1204.23, 1049.02, 0, 6, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (272, 4, 'House Ghetto LS Small', 0, 0, 0, 10000, 0, 2514.62, -1240.45, 39.34, 0, 0, 0, 0, 0, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (273, 4, 'House Ghetto LS Small', 0, 0, 0, 10000, 0, 2516.52, -1225.75, 39.09, 0, 0, 0, 0, 0, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (274, 4, 'Appartment 2nd Floor In SF', 0, 0, 0, 80000, 0, -2786.76, 0.266, 10.062, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (275, 4, 'Appartment 1st Floor In SF', 0, 0, 0, 80000, 0, -2790.48, 7.368, 7.195, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (276, 4, 'Light Pink/Brick House In SF', 0, 0, 0, 120000, 0, -2793.14, 11.194, 7.431, 0, 0, 0, 0, 0, 2196.84, -1204.23, 1049.02, 0, 6, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (277, 4, 'Medium House Ghetto LS', 0, 0, 0, 12000, 0, 2550.3, -1209.05, 54.54, 0, 0, 0, 0, 0, 328.13, 1477.9, 1084.43, 0, 15, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (278, 4, 'Green Normal Size House In SF', 0, 0, 0, 120000, 0, -2793.15, 21.315, 7.184, 0, 0, 0, 0, 0, 2196.84, -1204.23, 1049.02, 0, 6, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (279, 4, 'Medium House Ghetto LS', 0, 0, 0, 12000, 0, 2550.19, -1197.53, 60.84, 0, 0, 0, 0, 0, 328.13, 1477.9, 1084.43, 0, 15, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (280, 4, 'Medium House Ghetto LS', 0, 0, 0, 12000, 5000, 2520.65, -1209.48, 50.291, 0, 0, 0, 0, 0, 328.13, 1477.9, 1084.43, 0, 15, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (281, 4, 'Medium House Ghetto LS', 0, 0, 0, 12000, 0, 2520.61, -1198, 56.597, 0, 0, 0, 0, 0, 328.13, 1477.9, 1084.43, 0, 15, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (282, 4, 'Appartment 2nd Floor In SF', 0, 0, 0, 80000, 0, -2787, 62.868, 10.062, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (283, 4, 'Appartment 1st Floor In SF', 0, 0, 0, 80000, 0, -2790.53, 69.661, 7.201, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (284, 4, 'Normal Size Pink House In SF', 0, 0, 0, 85000, 0, -2791.79, 77.584, 10.053, 0, 0, 0, 0, 0, 2196.84, -1204.23, 1049.02, 0, 6, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (285, 4, 'House Ghetto LS Small', 0, 0, 0, 10000, 500, 2601.05, -1200.15, 59.5, 0, 0, 0, 0, 0, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (286, 4, 'House Ghetto LS Small', 0, 0, 0, 10000, 0, 2601.05, -1203.08, 58.727, 0, 0, 0, 0, 0, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (287, 4, 'House Ghetto LS Small', 0, 0, 0, 10000, 0, 2601.05, -1207.58, 57.791, 0, 0, 0, 0, 0, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (288, 4, 'Normal Size Very Light Green House In SF', 0, 0, 0, 55000, 0, -2792.85, 84.944, 7.622, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (289, 4, 'House Ghetto LS Small', 0, 0, 0, 10000, 500, 2594.5, -1207.54, 57.651, 0, 0, 0, 0, 0, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (290, 4, 'House Ghetto LS Small', 0, 0, 0, 10000, 500, 2594.5, -1203, 58.576, 0, 0, 0, 0, 0, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (291, 4, 'House Ghetto LS Small', 0, 0, 0, 10000, 500, 2594.5, -1200.09, 59.354, 0, 0, 0, 0, 0, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (292, 4, 'Normal Size Blue House In SF', 0, 0, 0, 85000, 5000, -2791.59, 92.177, 7.859, 0, 0, 0, 0, 0, 2196.84, -1204.23, 1049.02, 0, 6, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (293, 4, 'House Ghetto LS Small', 0, 0, 0, 10000, 500, 2601.05, -1211.81, 56.659, 0, 0, 0, 0, 0, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (294, 4, 'House Ghetto LS Small', 0, 0, 0, 10000, 500, 2594.5, -1211.8, 56.513, 0, 0, 0, 0, 0, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (295, 4, 'House Ghetto LS Small', 0, 0, 0, 10000, 0, 2601.05, -1216.41, 55.269, 0, 0, 0, 0, 0, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (296, 4, 'House Ghetto LS Small', 0, 0, 0, 10000, 500, 2594.5, -1216.38, 55.111, 0, 0, 0, 0, 0, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (297, 4, 'Normal Size House In SF', 0, 0, 0, 85000, 0, -2791.82, 103.598, 10.053, 0, 0, 0, 0, 0, 2196.84, -1204.23, 1049.02, 0, 6, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (298, 4, 'House Ghetto LS Small', 0, 0, 0, 10000, 120, 2601.05, -1220.59, 53.916, 0, 0, 0, 0, 0, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (299, 4, 'House Ghetto LS Small', 0, 0, 0, 10000, 449, 2594.5, -1220.49, 53.763, 0, 0, 0, 0, 0, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (300, 4, 'House Ghetto LS Small', 0, 0, 0, 10000, 500, 2601.05, -1224.74, 52.625, 0, 0, 0, 0, 0, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (301, 4, 'House Ghetto LS Small', 0, 0, 0, 10000, 500, 2594.5, -1224.71, 52.477, 0, 0, 0, 0, 0, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (302, 4, 'House Ghetto LS Small', 0, 0, 0, 10000, 500, 2601.05, -1229.29, 51.34, 0, 0, 0, 0, 0, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (303, 4, 'Normal Size Light Green House In SF', 0, 0, 0, 55000, 0, -2793.14, 110.986, 7.184, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (304, 4, 'House Ghetto LS Small', 0, 0, 0, 10000, 5000, 2594.5, -1229.26, 51.187, 0, 0, 0, 0, 0, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (305, 4, 'House Ghetto LS Small', 0, 0, 0, 10000, 0, 2601.05, -1233.56, 50.111, 0, 0, 0, 0, 0, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (306, 4, 'House Ghetto LS Small', 0, 0, 0, 10000, 5000, 2594.5, -1233.55, 49.962, 0, 0, 0, 0, 0, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (307, 4, 'House Ghetto LS Small', 0, 0, 0, 10000, 10, 2601.05, -1238.12, 48.715, 0, 0, 0, 0, 0, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (308, 4, 'House Ghetto LS Small', 0, 0, 0, 10000, 0, 2594.5, -1238.05, 48.562, 0, 0, 0, 0, 0, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (309, 4, 'Appartment 2nd Floor In SF', 0, 0, 0, 80000, 0, -2786.98, 119.901, 10.062, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (310, 4, 'House Ghetto LS Small', 0, 0, 0, 10000, 500, 2608.15, -1200.07, 60.991, 0, 0, 0, 0, 0, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (311, 4, 'House Ghetto LS Small', 0, 0, 0, 10000, 500, 2615.11, -1200.1, 60.777, 0, 0, 0, 0, 0, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (312, 4, 'Appartment 1st Floor In SF', 0, 0, 0, 80000, 0, -2790.59, 126.902, 7.201, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (313, 4, 'House Ghetto LS Small', 0, 0, 0, 10000, 500, 2608.15, -1203, 60.215, 0, 0, 0, 0, 0, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (314, 4, 'House Ghetto LS Small', 0, 0, 0, 10000, 500, 2615.11, -1203.1, 60, 0, 0, 0, 0, 0, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (315, 4, 'House Ghetto LS Small', 0, 0, 0, 10000, 90, 2608.15, -1207.57, 59.283, 0, 0, 0, 0, 0, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (316, 4, 'House Ghetto LS Small', 0, 0, 0, 10000, 500, 2615.11, -1207.64, 59.069, 0, 0, 0, 0, 0, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (317, 4, 'House Ghetto LS Small', 0, 0, 0, 10000, 500, 2608.15, -1211.73, 58.147, 0, 0, 0, 0, 0, 222.93, 1287.08, 1082.14, 0, 1, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (318, 4, 'House Ghetto LS Small', 0, 0, 0, 10000, 500, 2615.11, -1211.84, 57.937, 0, 0, 0, 0, 0, 222.93, 1287.08, 1082.14, 0, 1, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (319, 4, 'House Ghetto LS Small', 0, 0, 0, 10000, 1000, 2608.15, -1216.28, 56.761, 0, 0, 0, 0, 0, 222.93, 1287.08, 1082.14, 0, 1, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (320, 4, 'House Ghetto LS Small', 0, 0, 0, 10000, 100, 2615.11, -1216.3, 56.539, 0, 0, 0, 0, 0, 222.93, 1287.08, 1082.14, 0, 1, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (321, 4, 'House Ghetto LS Small', 0, 0, 0, 10000, 1000, 2608.15, -1220.51, 55.409, 0, 0, 0, 0, 0, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (322, 4, 'House Ghetto LS Small', 0, 0, 0, 10000, 500, 2615.11, -1220.58, 55.187, 0, 0, 0, 0, 0, 222.93, 1287.08, 1082.14, 0, 1, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (323, 4, 'House Ghetto LS Small', 0, 0, 0, 10000, 500, 2608.15, -1224.64, 54.117, 0, 0, 0, 0, 0, 222.93, 1287.08, 1082.14, 0, 1, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (324, 4, 'Normal Size Green/Brick House In SF', 0, 0, 0, 120000, 0, -2791.68, 130.617, 7.859, 0, 0, 0, 0, 0, 2196.84, -1204.23, 1049.02, 0, 6, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (325, 4, 'House Ghetto LS Small', 0, 0, 0, 10000, 500, 2615.11, -1224.75, 53.896, 0, 0, 0, 0, 0, 222.93, 1287.08, 1082.14, 0, 1, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (326, 4, 'House Ghetto LS Small', 0, 0, 0, 10000, 500, 2608.15, -1229.19, 52.832, 0, 0, 0, 0, 0, 222.93, 1287.08, 1082.14, 0, 1, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (327, 4, 'House Ghetto LS Small', 0, 0, 0, 10000, 500, 2615.11, -1229.28, 52.609, 0, 0, 0, 0, 0, 222.93, 1287.08, 1082.14, 0, 1, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (328, 4, 'House Ghetto LS Small', 0, 0, 0, 10000, 5000, 2608.15, -1233.42, 51.602, 0, 0, 0, 0, 0, 222.93, 1287.08, 1082.14, 0, 1, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (329, 4, 'House Ghetto LS Small', 0, 0, 0, 10000, 500, 2615.11, -1233.57, 51.381, 0, 0, 0, 0, 0, 222.93, 1287.08, 1082.14, 0, 1, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (330, 4, 'House', 0, 0, 0, 10000, 0, 2608.15, -1238.01, 50.205, 0, 0, 0, 0, 0, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (331, 4, 'House Ghetto LS Small', 0, 0, 0, 10000, 0, 2615.11, -1238.09, 49.984, 0, 0, 0, 0, 0, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (332, 4, 'Normal Size Pink House In SF', 0, 0, 0, 85000, 0, -2791.81, 143.255, 10.053, 0, 0, 0, 0, 0, 2196.84, -1204.23, 1049.02, 0, 6, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (333, 4, 'House Ghetto LS Small', 0, 0, 0, 10000, 0, 2587.4, -1238.14, 48.562, 0, 0, 0, 0, 0, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (334, 4, 'House Ghetto LS Small', 0, 0, 0, 10000, 0, 2587.4, -1233.59, 49.962, 0, 0, 0, 0, 0, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (335, 4, 'House Ghetto LS Small', 0, 0, 0, 10000, 500, 2587.4, -1229.28, 51.187, 0, 0, 0, 0, 0, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (336, 4, 'House Ghetto LS Small', 0, 0, 0, 10000, 0, 2587.4, -1224.72, 52.477, 0, 0, 0, 0, 0, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (337, 4, 'House Ghetto LS Small', 0, 0, 0, 10000, 500, 2587.39, -1220.59, 53.763, 0, 0, 0, 0, 0, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (338, 4, 'House Ghetto LS Small', 0, 0, 0, 10000, 500, 2587.4, -1216.4, 55.111, 0, 0, 0, 0, 0, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (339, 4, 'House Ghetto LS Small', 0, 0, 0, 10000, 1, 2587.4, -1211.86, 56.513, 0, 0, 0, 0, 0, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (340, 4, 'House Ghetto LS Small', 0, 0, 0, 10000, 400, 2587.4, -1207.67, 57.651, 0, 0, 0, 0, 0, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (341, 4, 'House Ghetto LS Small', 0, 0, 0, 10000, 500, 2587.4, -1203.17, 58.576, 0, 0, 0, 0, 0, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (342, 4, 'House Ghetto LS Small', 0, 0, 0, 10000, 500, 2587.4, -1200.11, 59.354, 0, 0, 0, 0, 0, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (343, 4, 'Normal Size House In SF', 0, 0, 0, 85000, 0, -2789.34, 183.695, 10.062, 0, 0, 0, 0, 0, 2196.84, -1204.23, 1049.02, 0, 6, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (344, 4, 'House Ghetto LS Small', 0, 0, 0, 10000, 0, 2622.21, -1237.97, 51.268, 0, 0, 0, 0, 0, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (345, 4, 'House Ghetto LS Small', 0, 0, 0, 10000, 0, 2622.21, -1233.49, 52.665, 0, 0, 0, 0, 0, 222.93, 1287.08, 1082.14, 0, 1, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (346, 4, 'House Ghetto LS Small', 0, 0, 0, 10000, 1, 2622.21, -1229.17, 53.894, 0, 0, 0, 0, 0, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (347, 4, 'House Ghetto LS Small', 0, 0, 0, 10000, 0, 2622.21, -1224.62, 55.18, 0, 0, 0, 0, 0, 222.93, 1287.08, 1082.14, 0, 1, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (348, 4, 'House Ghetto LS Small', 0, 0, 0, 10000, 0, 2622.21, -1220.51, 56.472, 0, 0, 0, 0, 0, 222.93, 1287.08, 1082.14, 0, 1, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (349, 4, 'House Ghetto LS Small', 0, 0, 0, 10000, 0, 2622.22, -1216.29, 57.823, 0, 0, 0, 0, 0, 222.93, 1287.08, 1082.14, 0, 1, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (350, 4, 'House Ghetto LS Small', 0, 0, 0, 10000, 0, 2622.21, -1211.76, 59.209, 0, 0, 0, 0, 0, 222.93, 1287.08, 1082.14, 0, 1, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (351, 4, 'Normal Size Pink House In SF', 0, 0, 0, 85000, 0, -2791.81, 194.57, 10.053, 0, 0, 0, 0, 0, 2196.84, -1204.23, 1049.02, 0, 6, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (352, 4, 'House Ghetto LS Small', 0, 0, 0, 10000, 0, 2622.22, -1207.58, 60.346, 0, 0, 0, 0, 0, 222.93, 1287.08, 1082.14, 0, 1, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (353, 4, 'House Ghetto LS Small', 0, 0, 0, 10000, 0, 2622.22, -1203.05, 61.278, 0, 0, 0, 0, 0, 222.93, 1287.08, 1082.14, 0, 1, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (354, 4, 'House Ghetto LS Small', 0, 0, 0, 10000, 0, 2622.22, -1199.95, 62.054, 0, 0, 0, 0, 0, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (355, 4, 'Normal Size Blue House In SF', 0, 0, 0, 85000, 0, -2791.65, 200.578, 7.859, 0, 0, 0, 0, 0, 2196.84, -1204.23, 1049.02, 0, 6, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (356, 4, 'Normal Size Blue House In SF', 0, 0, 0, 85000, 0, -2791.81, 212, 10.053, 0, 0, 0, 0, 0, 2196.84, -1204.23, 1049.02, 0, 6, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (357, 4, 'Normal Size Green/Brick House In SF', 0, 0, 0, 120000, 0, -2791.6, 218.567, 7.859, 0, 0, 0, 0, 0, 2196.84, -1204.23, 1049.02, 0, 6, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (358, 4, 'House Ghetto LS Small', 0, 0, 0, 10000, 0, 2663.18, -1238.14, 55.673, 0, 0, 0, 0, 0, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (359, 4, 'House Ghetto LS Small', 0, 0, 0, 10000, 0, 2663.18, -1233.56, 57.069, 0, 0, 0, 0, 0, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (360, 4, 'House Ghetto LS Small', 0, 0, 0, 10000, 10, 2663.18, -1229.27, 58.298, 0, 0, 0, 0, 0, 222.93, 1287.08, 1082.14, 0, 1, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (361, 4, 'House Ghetto LS Small', 0, 0, 0, 10000, 0, 2663.18, -1224.83, 59.584, 0, 0, 0, 0, 0, 222.93, 1287.08, 1082.14, 0, 1, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (362, 4, 'House Ghetto LS Small', 0, 0, 0, 10000, 0, 2663.18, -1220.59, 60.874, 0, 0, 0, 0, 0, 222.93, 1287.08, 1082.14, 0, 1, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (363, 4, 'House Ghetto LS Small', 0, 0, 0, 10000, 0, 2663.18, -1216.33, 62.222, 0, 0, 0, 0, 0, 222.93, 1287.08, 1082.14, 0, 1, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (364, 4, 'House Ghetto LS Small', 0, 0, 0, 10000, 0, 2663.18, -1211.8, 63.623, 0, 0, 0, 0, 0, 222.93, 1287.08, 1082.14, 0, 1, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (365, 4, 'House Ghetto LS Small', 0, 0, 0, 10000, 0, 2663.18, -1207.64, 64.76, 0, 0, 0, 0, 0, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (366, 4, 'House Ghetto LS Small', 0, 0, 0, 10000, 0, 2663.18, -1203.19, 65.682, 0, 0, 0, 0, 0, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (367, 4, 'House Ghetto LS Small', 0, 0, 0, 10000, 1000, 2663.18, -1200.14, 66.467, 0, 0, 0, 0, 0, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (368, 4, 'House Ghetto LS Small', 0, 0, 0, 10000, 0, 2670.28, -1200.04, 66.496, 0, 0, 0, 0, 0, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (369, 4, 'House Ghetto LS Small', 0, 0, 0, 10000, 0, 2670.28, -1203.03, 65.727, 0, 0, 0, 0, 0, 222.93, 1287.08, 1082.14, 0, 1, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (370, 4, 'House Ghetto LS Small', 0, 0, 0, 10000, 0, 2670.28, -1207.56, 64.804, 0, 0, 0, 0, 0, 222.93, 1287.08, 1082.14, 0, 1, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (371, 4, 'House Ghetto LS Small', 0, 0, 0, 10000, 0, 2670.28, -1211.74, 63.666, 0, 0, 0, 0, 0, 222.93, 1287.08, 1082.14, 0, 1, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (372, 4, 'House Ghetto LS Small', 0, 0, 0, 10000, 0, 2670.28, -1216.36, 62.262, 0, 0, 0, 0, 0, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (373, 4, 'House Ghetto LS Small', 0, 0, 0, 10000, 100, 2670.28, -1220.46, 60.923, 0, 0, 0, 0, 0, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (374, 4, 'House Ghetto LS Small', 0, 0, 0, 10000, 0, 2670.28, -1224.74, 59.629, 0, 0, 0, 0, 0, 222.93, 1287.08, 1082.14, 0, 1, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (375, 4, 'House Ghetto LS Small', 0, 0, 0, 10000, 0, 2670.28, -1229.17, 58.36, 0, 0, 0, 0, 0, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (376, 4, 'House Ghetto LS Small', 0, 0, 0, 10000, 0, 2670.28, -1233.48, 57.123, 0, 0, 0, 0, 0, 222.93, 1287.08, 1082.14, 0, 1, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (377, 4, 'House Ghetto LS Small', 0, 0, 0, 10000, 0, 2670.28, -1238.05, 55.728, 0, 0, 0, 0, 0, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (378, 4, 'House Ghetto LS Small', 0, 0, 0, 10000, 5000, 2683.44, -1238.05, 56.019, 0, 0, 0, 0, 0, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (379, 4, 'House Ghetto LS Small', 0, 0, 0, 10000, 0, 2683.44, -1233.54, 57.416, 0, 0, 0, 0, 0, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (380, 4, 'House Ghetto LS Small', 0, 0, 0, 10000, 0, 2683.44, -1229.32, 58.645, 0, 0, 0, 0, 0, 222.93, 1287.08, 1082.14, 0, 1, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (381, 4, 'House Ghetto LS Small', 0, 0, 0, 10000, 0, 2683.44, -1224.74, 59.93, 0, 0, 0, 0, 0, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (382, 4, 'House Ghetto LS Small', 0, 0, 0, 10000, 0, 2683.44, -1220.6, 61.222, 0, 0, 0, 0, 0, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (383, 4, 'House Ghetto LS Small', 0, 0, 0, 10000, 0, 2683.44, -1216.35, 62.574, 0, 0, 0, 0, 0, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (384, 4, 'House Ghetto LS Small', 0, 0, 0, 10000, 0, 2683.44, -1211.88, 63.963, 0, 0, 0, 0, 0, 222.93, 1287.08, 1082.14, 0, 1, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (385, 4, 'House Ghetto LS Small', 0, 0, 0, 10000, 0, 2683.44, -1207.64, 65.097, 0, 0, 0, 0, 0, 222.93, 1287.08, 1082.14, 0, 1, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (386, 4, 'House Ghetto LS Small', 0, 0, 0, 10000, 500, 2683.44, -1203.14, 66.029, 0, 0, 0, 0, 0, 222.93, 1287.08, 1082.14, 0, 1, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (387, 4, 'House Ghetto LS Small', 0, 0, 0, 10000, 0, 2683.44, -1200.19, 66.805, 0, 0, 0, 0, 0, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (388, 4, 'House Ghetto LS Small', 0, 0, 0, 10000, 0, 2690.54, -1200.05, 68.293, 0, 0, 0, 0, 0, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (389, 4, 'House Ghetto LS Small', 0, 0, 0, 10000, 0, 2700.21, -1200.19, 68.97, 0, 0, 0, 0, 0, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (390, 4, 'House Ghetto LS Small', 0, 0, 0, 10000, 0, 2690.54, -1202.95, 67.522, 0, 0, 0, 0, 0, 222.93, 1287.08, 1082.14, 0, 1, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (391, 4, 'House Ghetto LS Small', 0, 0, 0, 10000, 0, 2700.21, -1203.11, 68.194, 0, 0, 0, 0, 0, 222.93, 1287.08, 1082.14, 0, 1, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (392, 4, 'House Ghetto LS Small', 0, 0, 0, 10000, 0, 2690.54, -1207.56, 66.585, 0, 0, 0, 0, 0, 222.93, 1287.08, 1082.14, 0, 1, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (393, 4, 'House Ghetto LS Small', 0, 0, 0, 10000, 0, 2700.2, -1207.66, 67.261, 0, 0, 0, 0, 0, 222.93, 1287.08, 1082.14, 0, 1, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (394, 4, 'House Ghetto LS Small', 0, 0, 0, 10000, 0, 2700.2, -1211.84, 66.125, 0, 0, 0, 0, 0, 222.93, 1287.08, 1082.14, 0, 1, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (395, 4, 'House Ghetto LS Small', 0, 0, 0, 10000, 5000, 2690.54, -1211.79, 65.454, 0, 0, 0, 0, 0, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (396, 4, 'House Ghetto LS Small', 0, 0, 0, 10000, 0, 2700.2, -1216.36, 64.736, 0, 0, 0, 0, 0, 222.93, 1287.08, 1082.14, 0, 1, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (397, 4, 'House Ghetto LS Small', 0, 0, 0, 10000, 0, 2690.54, -1216.25, 64.065, 0, 0, 0, 0, 0, 222.93, 1287.08, 1082.14, 0, 1, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (398, 4, 'House Ghetto LS Small', 0, 0, 0, 10000, 0, 2700.21, -1220.59, 63.388, 0, 0, 0, 0, 0, 222.93, 1287.08, 1082.14, 0, 1, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (399, 4, 'Appartment 1st Floor In SF', 0, 0, 0, 80000, 0, -2724.67, -191.322, 4.335, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (400, 4, 'House Ghetto LS Small', 0, 0, 0, 10000, 0, 2690.54, -1220.48, 62.715, 0, 0, 0, 0, 0, 222.93, 1287.08, 1082.14, 0, 1, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (401, 4, 'House Ghetto LS Small', 0, 0, 0, 10000, 0, 2700.2, -1224.74, 62.095, 0, 0, 0, 0, 0, 222.93, 1287.08, 1082.14, 0, 1, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (402, 4, 'House Ghetto LS Small', 0, 0, 0, 10000, 0, 2690.55, -1224.79, 61.423, 0, 0, 0, 0, 0, 222.93, 1287.08, 1082.14, 0, 1, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (403, 4, 'House Ghetto LS Small', 0, 0, 0, 10000, 500, 2700.21, -1229.31, 60.81, 0, 0, 0, 0, 0, 222.93, 1287.08, 1082.14, 0, 1, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (404, 4, 'House Ghetto LS Small', 0, 0, 0, 10000, 0, 2690.54, -1229.15, 60.136, 0, 0, 0, 0, 0, 222.93, 1287.08, 1082.14, 0, 1, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (405, 4, 'Appartment In SF 2nd Floor', 0, 0, 0, 80000, 0, -2728.16, -184.179, 7.203, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (406, 4, 'House Ghetto LS Small', 0, 0, 0, 10000, 5000, 2700.21, -1233.57, 59.581, 0, 0, 0, 0, 0, 222.93, 1287.08, 1082.14, 0, 1, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (407, 4, 'House Ghetto LS Small', 0, 0, 0, 10000, 0, 2690.54, -1233.41, 58.907, 0, 0, 0, 0, 0, 222.93, 1287.08, 1082.14, 0, 1, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (408, 4, 'House Ghetto LS Small', 0, 0, 0, 10000, 0, 2700.2, -1238.05, 58.18, 0, 0, 0, 0, 0, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (409, 4, 'House Ghetto LS Small', 0, 0, 0, 10000, 1, 2690.54, -1238.06, 57.506, 0, 0, 0, 0, 0, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (410, 4, 'Normal Size Pink House In SF', 0, 0, 0, 85000, 0, -2723.15, -179.074, 7.203, 0, 0, 0, 0, 0, 2196.84, -1204.23, 1049.02, 0, 6, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (411, 4, 'House Ghetto LS Small', 0, 0, 0, 10000, 1, 2707.3, -1237.91, 59.673, 0, 0, 0, 0, 0, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (412, 4, 'House Ghetto LS Small', 0, 0, 0, 10000, 500, 2707.31, -1233.54, 61.069, 0, 0, 0, 0, 0, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (413, 4, 'House Ghetto LS Small', 0, 0, 0, 10000, 0, 2707.3, -1229.25, 62.298, 0, 0, 0, 0, 0, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (414, 4, 'House Ghetto LS Small', 0, 0, 0, 10000, 0, 2707.31, -1224.67, 63.583, 0, 0, 0, 0, 0, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (415, 4, 'House Ghetto LS Small', 0, 0, 0, 10000, 500, 2707.3, -1220.59, 64.877, 0, 0, 0, 0, 0, 222.93, 1287.08, 1082.14, 0, 1, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (416, 4, 'House Ghetto LS Small', 0, 0, 0, 10000, 5000, 2707.3, -1216.32, 66.225, 0, 0, 0, 0, 0, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (417, 4, 'House Ghetto LS Small', 0, 0, 0, 10000, 1000, 2707.3, -1211.75, 67.614, 0, 0, 0, 0, 0, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (418, 4, 'Normal Size Green/Brick House In SF', 0, 0, 0, 120000, 0, -2723.32, -166.457, 5, 0, 0, 0, 0, 0, 2196.84, -1204.23, 1049.02, 0, 6, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (419, 4, 'House Ghetto LS Small', 0, 0, 0, 10000, 0, 2707.31, -1207.58, 68.75, 0, 0, 0, 0, 0, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (420, 4, 'House Ghetto LS Small', 0, 0, 0, 10000, 0, 2707.31, -1203.04, 69.681, 0, 0, 0, 0, 0, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (421, 4, 'House Ghetto LS Small', 0, 0, 0, 10000, 0, 2707.31, -1200.06, 70.458, 0, 0, 0, 0, 0, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (422, 4, 'Appartment 1st Floor In SF', 0, 0, 0, 80000, 0, -2724.67, -162.744, 4.342, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (423, 4, 'Appartment 2nd Floor In SF', 0, 0, 0, 80000, 0, -2728.16, -155.699, 7.203, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (424, 4, 'Normal Size Green House In SF', 0, 0, 0, 85000, 0, -2721.77, -146.755, 4.335, 0, 0, 0, 0, 0, 2196.84, -1204.23, 1049.02, 0, 6, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (425, 4, 'Normal Size House In SF', 0, 0, 0, 85000, 0, -2723.03, -139.395, 7.203, 0, 0, 0, 0, 0, 2196.84, -1204.23, 1049.02, 0, 6, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (426, 4, 'Normal Size Blue House In SF', 0, 0, 0, 85000, 0, -2723.33, -127.869, 5, 0, 0, 0, 0, 0, 2196.84, -1204.23, 1049.02, 0, 6, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (427, 4, 'Apartment LS Medium', 0, 0, 0, 25000, 0, 2781.94, -1358.42, 26.37, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (428, 4, 'Normal Size Very Light Green House In SF', 0, 0, 0, 55000, 0, -2722.05, -120.75, 4.76, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (429, 4, 'Apartment LS Medium', 0, 0, 0, 25000, 0, 2781.94, -1333.42, 32.395, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (430, 4, 'Apartment LS Medium', 0, 0, 0, 25000, 0, 2782.15, -1306.33, 38.886, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (431, 4, 'Apartment LS Medium', 0, 0, 0, 25000, 0, 2782.15, -1281.21, 44.368, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (432, 4, 'Apartment LS Medium', 0, 0, 0, 25000, 0, 2809.53, -1324.86, 33.868, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (433, 4, 'Apartment LS Medium', 0, 0, 0, 25000, 0, 2809.53, -1302.93, 38.928, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (434, 4, 'Apartment LS Medium', 0, 0, 0, 25000, 1, 2809.53, -1281.04, 43.9, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (435, 4, 'Normal Size Pink House In SF', 0, 0, 0, 85000, 0, -2723.02, -113.389, 7.203, 0, 0, 0, 0, 0, 2196.84, -1204.23, 1049.02, 0, 6, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (436, 4, 'Apartment LS Medium', 0, 0, 0, 25000, 0, 2807.98, -1353.99, 27.218, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (437, 4, 'Apartment LS Medium', 0, 0, 0, 25000, 0, 2807.98, -1369.6, 23.582, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (438, 4, 'Appartment 1st Floor In SF', 0, 0, 0, 80000, 0, -2724.65, -105.619, 4.342, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (439, 4, 'Appartment 2nd Floor In SF', 0, 0, 0, 80000, 0, -2728.17, -98.413, 7.203, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (440, 4, 'Ls House Near Beach Medium', 0, 0, 0, 30000, 0, 2846.99, -1309.7, 14.704, 0, 0, 0, 0, 0, 261.058, 1284.29, 1080.25, 0, 4, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (441, 4, 'Normal Size House In SF', 0, 0, 0, 85000, 0, -2725.75, -92.375, 7.203, 0, 0, 0, 0, 0, 2196.84, -1204.23, 1049.02, 0, 6, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (442, 4, 'Appartment 1st Floor In SF', 0, 0, 0, 80000, 0, -2724.7, -58.02, 4.342, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (443, 4, 'Appartment 2nd Floor In SF', 0, 0, 0, 80000, 0, -2728.19, -51.062, 7.203, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (444, 4, 'Apartment Near the beach LS big', 0, 0, 0, 25000, 0, 2851.85, -1365.97, 14.17, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (445, 4, 'Normal Size Very Light Green House In SF', 0, 0, 0, 55000, 0, -2722.11, -44.712, 4.769, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (446, 4, 'Normal Size House In SF', 0, 0, 0, 85000, 0, -2725.64, -36.597, 7.195, 0, 0, 0, 0, 0, 2196.84, -1204.23, 1049.02, 0, 6, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (447, 4, 'Normal Size Pink/Brick House In SF', 0, 0, 0, 55000, 0, -2721.8, -23.27, 4.57, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (448, 4, 'LS Apartment Near Beach Medium', 0, 0, 0, 40000, 0, 2808.05, -1190.89, 25.34, 0, 0, 0, 0, 0, 225.755, 1240, 1082.15, 0, 2, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (449, 4, 'LS Apartment Near Beach Medium', 0, 0, 0, 40000, 0, 2808.01, -1175.92, 25.381, 0, 0, 0, 0, 0, 225.755, 1240, 1082.15, 0, 2, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (450, 4, 'Normal Size Pink House In SF', 0, 0, 0, 85000, 0, -2723.17, -17.311, 7.203, 0, 0, 0, 0, 0, 2196.84, -1204.23, 1049.02, 0, 6, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (451, 4, 'Normal Size House In SF', 0, 0, 0, 85000, 0, -2723.05, 4.473, 7.203, 0, 0, 0, 0, 0, 2196.84, -1204.23, 1049.02, 0, 6, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (452, 4, 'Normal Size Very Light Green House In SF', 0, 0, 0, 55000, 0, -2722.1, 14.479, 4.768, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (453, 4, 'LS Apartment Near Beach Medium', 0, 0, 0, 40000, 0, 2842.19, -1334.78, 14.741, 0, 0, 0, 0, 0, 225.755, 1240, 1082.15, 0, 2, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (454, 4, 'Normal Size Pink House In SF', 0, 0, 0, 85000, 0, -2723.12, 21.927, 7.203, 0, 0, 0, 0, 0, 2196.84, -1204.23, 1049.02, 0, 6, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (455, 4, 'Normal Size House In SF', 0, 0, 0, 85000, 0, -2686.82, -188.194, 7.203, 0, 0, 0, 0, 0, 2196.84, -1204.23, 1049.02, 0, 6, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (456, 4, 'Appartment 2nd Floor In SF', 0, 0, 0, 80000, 0, -2684.41, -182.154, 7.203, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (457, 4, 'Appartment 1st Floor In SF', 0, 0, 0, 80000, 0, -2687.89, -175.078, 4.342, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (458, 4, 'Normal Size Pink House In SF', 0, 0, 0, 85000, 0, -2689.4, -167.302, 7.203, 0, 0, 0, 0, 0, 2196.84, -1204.23, 1049.02, 0, 6, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (459, 4, 'Normal Size Light Green House In SF', 0, 0, 0, 55000, 0, -2690.5, -159.764, 4.764, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (460, 4, 'Apartment Near the beach LS big', 0, 0, 0, 25000, 0, 2755.71, -1400.45, 39.375, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (461, 4, 'Normal Size Blue House In SF', 0, 0, 0, 85000, 0, -2689.24, -152.916, 5, 0, 0, 0, 0, 0, 2196.84, -1204.23, 1049.02, 0, 6, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (462, 4, 'Normal Size House In SF', 0, 0, 0, 85000, 0, -2689.38, -141.274, 7.203, 0, 0, 0, 0, 0, 2196.84, -1204.23, 1049.02, 0, 6, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (463, 4, 'Apartment Near the beach LS big', 0, 0, 0, 25000, 0, 2756.29, -1302.54, 53.09, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (464, 4, 'Apartment Near the beach LS big', 0, 0, 0, 25000, 0, 2755.85, -1276.47, 56.59, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (465, 4, 'Normal Size Green House In SF', 0, 0, 0, 85000, 0, -2690.79, -134.054, 4.335, 0, 0, 0, 0, 0, 2196.84, -1204.23, 1049.02, 0, 6, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (466, 4, 'Appartment 2nd Floor In SF', 0, 0, 0, 80000, 0, -2684.42, -125.068, 7.203, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (467, 4, 'Appartment 1st Floor In SF', 0, 0, 0, 80000, 0, -2687.9, -118.16, 4.342, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (468, 4, 'LS Apartment Near Beach Medium', 0, 0, 0, 40000, 1000, 2776.06, -1245.37, 49.576, 0, 0, 0, 0, 0, 225.755, 1240, 1082.15, 0, 2, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (469, 4, 'LS Apartment Near Beach Medium', 0, 0, 0, 40000, 500, 2797.81, -1245.37, 47.381, 0, 0, 0, 0, 0, 225.755, 1240, 1082.15, 0, 2, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (470, 4, 'Normal Size Green/Brick House In SF', 0, 0, 0, 120000, 0, -2689.25, -114.135, 5, 0, 0, 0, 0, 0, 2196.84, -1204.23, 1049.02, 0, 6, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (471, 4, 'Normal Size Pink House In SF', 0, 0, 0, 85000, 0, -2689.35, -101.62, 7.203, 0, 0, 0, 0, 0, 2196.84, -1204.23, 1049.02, 0, 6, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (472, 4, 'Appartment 2nd Floor In SF', 0, 0, 0, 80000, 0, -2684.55, -96.443, 7.203, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (473, 4, 'Appartment 1st Floor In SF', 0, 0, 0, 80000, 0, -2688.06, -89.444, 4.335, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (474, 4, 'LS Apartment Near Beach Medium', 0, 0, 0, 40000, 0, 2750.39, -1238.8, 61.52, 0, 0, 0, 0, 0, 225.755, 1240, 1082.15, 0, 2, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (475, 4, 'LS Apartment Near Beach Medium', 0, 0, 0, 40000, 0, 2750.39, -1222.23, 64.597, 0, 0, 0, 0, 0, 225.755, 1240, 1082.15, 0, 2, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (476, 4, 'LS Apartment Near Beach Medium', 0, 0, 0, 40000, 0, 2750.39, -1205.76, 67.484, 0, 0, 0, 0, 0, 225.755, 1240, 1082.15, 0, 2, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (477, 4, 'Apartment Near the beach LS big', 0, 0, 0, 25000, 0, 2756.27, -1182.81, 69.402, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (478, 4, 'Normal Size Pink House In SF', 0, 0, 0, 85000, 0, -2689.38, 57.087, 7.203, 0, 0, 0, 0, 0, 2196.84, -1204.23, 1049.02, 0, 6, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (479, 4, 'Normal Size Light Green House In SF', 0, 0, 0, 55000, 1, -2690.49, 64.591, 4.762, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (480, 4, 'Normal Size House In SF', 0, 0, 0, 85000, 0, -2689.49, 74.558, 7.203, 0, 0, 0, 0, 0, 2196.84, -1204.23, 1049.02, 0, 6, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (481, 4, 'Ghetto Project Apartment LS Small', 0, 0, 0, 2000, 0, 2628.09, -1067.86, 69.708, 0, 0, 0, 0, 0, 243.72, 304.97, 999.14, 0, 1, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (482, 4, 'Ghetto Project Apartment LS Small', 0, 0, 0, 2000, 0, 2627.64, -1085.13, 69.708, 0, 0, 0, 0, 0, 243.72, 304.97, 999.14, 0, 1, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (483, 4, 'Normal Size Pink House In SF', 0, 0, 0, 85000, 0, -2689.33, 96.305, 7.203, 0, 0, 0, 0, 0, 2196.84, -1204.23, 1049.02, 0, 6, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (484, 4, 'Ghetto Project Apartment LS Small', 0, 0, 0, 2000, 0, 2625.93, -1098.64, 69.361, 0, 0, 0, 0, 0, 243.72, 304.97, 999.14, 0, 1, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (485, 4, 'Ghetto Project Apartment LS Small', 0, 0, 0, 2000, 0, 2625.94, -1112.61, 67.995, 0, 0, 0, 0, 0, 243.72, 304.97, 999.14, 0, 1, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (486, 4, 'Normal Size Pink/Brick House In SF', 0, 0, 0, 55000, 1500, -2690.78, 102.291, 4.566, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (487, 4, 'Ghetto Project Apartment LS Small', 0, 0, 0, 2000, 0, 2611.24, -1111.19, 68.245, 0, 0, 0, 0, 0, 243.72, 304.97, 999.14, 0, 1, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (488, 4, 'Ghetto Project Apartment LS Small', 0, 0, 0, 2000, 0, 2611.23, -1097.24, 69.6, 0, 0, 0, 0, 0, 243.72, 304.97, 999.14, 0, 1, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (489, 4, 'Ghetto Project Apartment LS Small', 0, 0, 0, 2000, 0, 2612.94, -1083.18, 69.958, 0, 0, 0, 0, 0, 243.72, 304.97, 999.14, 0, 1, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (490, 4, 'Normal Size House In SF', 0, 0, 0, 85000, 0, -2687.1, 115.56, 7.195, 0, 0, 0, 0, 0, 2196.84, -1204.23, 1049.02, 0, 6, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (491, 4, 'Ghetto Project Apartment LS Small', 0, 0, 0, 2000, 0, 2613.39, -1065.9, 69.958, 0, 0, 0, 0, 0, 243.72, 304.97, 999.14, 0, 1, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (492, 4, 'Ghetto Project Apartment LS Small', 0, 0, 0, 2000, 0, 2618.94, -1118.48, 67.995, 0, 0, 0, 0, 0, 243.72, 304.97, 999.14, 0, 1, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (493, 4, 'Normal Size Very Light Green House In SF', 0, 0, 0, 55000, 0, -2690.51, 123.597, 4.751, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (494, 4, 'Appartment 2nd Floor In SF', 0, 0, 0, 80000, 0, -2684.4, 129.992, 7.203, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (495, 4, 'Appartment 1st Floor In SF', 0, 0, 0, 80000, 0, -2687.88, 137.029, 4.342, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (496, 4, 'House Ghetto LS Small', 0, 0, 0, 10000, 0, 2572.3, -1091.85, 67.222, 0, 0, 0, 0, 0, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (497, 4, 'House Ghetto LS Small', 0, 0, 0, 10000, 0, 2519.02, -1112.99, 56.59, 0, 0, 0, 0, 0, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (498, 4, 'House Ghetto LS Small', 0, 0, 0, 10000, 0, 2576.68, -1070.67, 69.832, 0, 0, 0, 0, 0, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (499, 4, 'House Ghetto LS Small', 0, 0, 0, 10000, 0, 2579.61, -1033.2, 69.579, 0, 0, 0, 0, 0, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (500, 4, 'House Ghetto LS Small', 0, 0, 0, 10000, 0, 2562.11, -1034.28, 69.869, 0, 0, 0, 0, 0, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (501, 4, 'Normal Size House In SF', 0, 0, 0, 85000, 5000, -2692.95, 189.447, 7.203, 0, 0, 0, 0, 0, 2196.84, -1204.23, 1049.02, 0, 6, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (502, 4, 'House Ghetto LS Small', 0, 0, 0, 10000, 0, 2549.2, -1032.15, 69.578, 0, 0, 0, 0, 0, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (503, 4, '3 Story Condo In SF', 0, 0, 0, 120000, 0, -2358.3, 820.033, 38.535, 0, 0, 0, 0, 0, 2196.84, -1204.23, 1049.02, 0, 6, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (504, 4, '3 Story Condo In SF', 0, 0, 0, 120000, 0, -2340.18, 819.85, 41.972, 0, 0, 0, 0, 0, 2196.84, -1204.23, 1049.02, 0, 6, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (505, 4, '3 Story Condo In SF', 0, 0, 0, 120000, 0, -2321.9, 820, 45.34, 0, 0, 0, 0, 0, 2196.84, -1204.23, 1049.02, 0, 6, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (506, 4, '3 Story Condo In SF', 0, 0, 0, 120000, 0, -2303.4, 819.973, 48.696, 0, 0, 0, 0, 0, 2196.84, -1204.23, 1049.02, 0, 6, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (507, 4, '3 Story Condo In SF', 0, 0, 0, 120000, 0, -2282.42, 873.144, 66.917, 0, 0, 0, 0, 0, 2196.84, -1204.23, 1049.02, 0, 6, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (508, 4, '3 Story Condo In SF', 0, 0, 0, 120000, 0, -2285.08, 849.128, 65.641, 0, 0, 0, 0, 0, 2196.84, -1204.23, 1049.02, 0, 6, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (509, 4, '3 Story Condo In SF', 0, 0, 0, 120000, 0, -2285.3, 828.923, 57.17, 0, 0, 0, 0, 0, 2196.84, -1204.23, 1049.02, 0, 6, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (510, 4, '3 Story Condo In SF', 0, 0, 0, 120000, 0, -2294.99, 969.981, 65.335, 0, 0, 0, 0, 0, 2196.84, -1204.23, 1049.02, 0, 6, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (511, 4, '3 Story Condo In SF', 0, 0, 0, 120000, 0, -2307.55, 944.257, 61.608, 0, 0, 0, 0, 0, 2196.84, -1204.23, 1049.02, 0, 6, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (512, 4, '3 Story Condo In SF', 0, 0, 0, 120000, 0, -2325.89, 944.261, 55.32, 0, 0, 0, 0, 0, 2196.84, -1204.23, 1049.02, 0, 6, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (513, 4, '5 Story Condo In SF', 0, 0, 0, 500000, 0, -2238.8, 943.844, 66.652, 0, 0, 0, 0, 0, 226.3, 1114.37, 1080.99, 0, 5, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (514, 4, '5 Story Condo In SF', 0, 0, 0, 500000, 0, -2238.89, 962.11, 66.652, 0, 0, 0, 0, 0, 226.3, 1114.37, 1080.99, 0, 5, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (515, 4, '5 Story Condo In SF', 0, 0, 0, 500000, 0, -2238.82, 980.749, 71.515, 0, 0, 0, 0, 0, 226.3, 1114.37, 1080.99, 0, 5, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (516, 4, '4 Story Condo In SF', 0, 0, 0, 400000, 0, -2238.79, 998.812, 78.985, 0, 0, 0, 0, 0, 234.22, 1063.89, 358.5, 0, 6, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (517, 4, '5 Story Condo In SF', 0, 0, 0, 500000, 0, -2229.28, 934.381, 66.648, 0, 0, 0, 0, 0, 226.3, 1114.37, 1080.99, 0, 5, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (518, 4, '5 Story Condo In SF', 0, 0, 0, 500000, 0, -2210.94, 934.376, 68.97, 0, 0, 0, 0, 0, 226.3, 1114.37, 1080.99, 0, 5, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (519, 4, '4 Story Condo In SF', 0, 0, 0, 400000, 0, -2192.54, 934.385, 75.019, 0, 0, 0, 0, 0, 234.22, 1063.89, 358.5, 0, 6, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (520, 4, '3 Story Condo In SF', 0, 0, 0, 120000, 0, -2174.13, 934.362, 80, 0, 0, 0, 0, 0, 2196.84, -1204.23, 1049.02, 0, 6, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (521, 4, '3 Story Condo In SF', 0, 0, 0, 120000, 0, -2160.15, 947.014, 80, 0, 0, 0, 0, 0, 2196.84, -1204.23, 1049.02, 0, 6, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (522, 4, '3 Story Condo In SF', 0, 0, 0, 120000, 0, -2160.14, 965.316, 80, 0, 0, 0, 0, 0, 2196.84, -1204.23, 1049.02, 0, 6, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (523, 4, '3 Story Condo In SF', 0, 0, 0, 120000, 0, -2160.15, 983.754, 80, 0, 0, 0, 0, 0, 2196.84, -1204.23, 1049.02, 0, 6, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (524, 4, '3 Story Condo In SF', 0, 0, 0, 120000, 0, -2160.11, 1002.05, 80, 0, 0, 0, 0, 0, 2196.84, -1204.23, 1049.02, 0, 6, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (525, 4, 'House Ghetto LS Small', 0, 0, 0, 10000, 0, 2440.48, -1057.34, 54.736, 0, 0, 0, 0, 0, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (526, 4, '5 Story Condo In SF', 0, 0, 0, 500000, 0, -2233.82, 888.805, 66.652, 0, 0, 0, 0, 0, 226.3, 1114.37, 1080.99, 0, 5, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (527, 4, '3 Story Condo In SF', 0, 0, 0, 120000, 0, -2233.83, 870.579, 66.64, 0, 0, 0, 0, 0, 2196.84, -1204.23, 1049.02, 0, 6, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (528, 4, '3 Story Condo In SF', 0, 0, 0, 120000, 0, -2233.27, 848.861, 61.89, 0, 0, 0, 0, 0, 2196.84, -1204.23, 1049.02, 0, 6, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (529, 4, '3 Story Condo In SF', 0, 0, 0, 120000, 0, -2233.27, 830.702, 54.304, 0, 0, 0, 0, 0, 2196.84, -1204.23, 1049.02, 0, 6, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (530, 4, '4 Story Condo In SF', 0, 0, 0, 400000, 0, -2223.85, 821.132, 49.438, 0, 0, 0, 0, 0, 234.22, 1063.89, 358.5, 0, 6, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (531, 4, '3 Story Condo In SF', 0, 0, 0, 120000, 0, -2205.37, 821.131, 50.486, 0, 0, 0, 0, 0, 2196.84, -1204.23, 1049.02, 0, 6, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (532, 4, '3 Story Condo In SF', 0, 0, 0, 120000, 0, -2187.07, 821.128, 57.552, 0, 0, 0, 0, 0, 2196.84, -1204.23, 1049.02, 0, 6, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (533, 4, '3 Story Condo In SF', 0, 0, 0, 120000, 0, -2168.71, 821.129, 64.973, 0, 0, 0, 0, 0, 2196.84, -1204.23, 1049.02, 0, 6, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (534, 4, 'Huge house at Vinewood LS', 0, 0, 0, 450000, 1000, 646.057, -1117.35, 44.207, 0, 0, 0, 0, 0, 491.058, 1400.39, 1080.26, 0, 2, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (535, 4, '3 Story Condo In SF', 0, 0, 0, 120000, 0, -2159.21, 830.735, 69.523, 0, 0, 0, 0, 0, 2196.84, -1204.23, 1049.02, 0, 6, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (536, 4, 'Huge house at Vinewood LS', 0, 0, 0, 450000, 550, 398.165, -1271.36, 50.019, 0, 0, 0, 0, 0, 491.058, 1400.39, 1080.26, 0, 2, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (537, 4, '3 Story Condo In SF', 0, 0, 0, 120000, 0, -2159.22, 866.532, 75.353, 0, 0, 0, 0, 0, 2196.84, -1204.23, 1049.02, 0, 6, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (538, 4, '3 Story Condo In SF', 0, 0, 0, 120000, 0, -2158.67, 889.113, 80.007, 0, 0, 0, 0, 0, 2196.84, -1204.23, 1049.02, 0, 6, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (539, 4, '3 Story Condo In SF', 0, 0, 0, 120000, 0, -2174.37, 902.73, 80.007, 0, 0, 0, 0, 0, 2196.84, -1204.23, 1049.02, 0, 6, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (540, 4, 'Mansion', 0, 0, 0, 450000, 0, 298.842, -1338.5, 53.441, 0, 0, 0, 0, 0, 491.058, 1400.39, 1080.26, 0, 2, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (541, 4, '4 Story Condo In SF', 0, 0, 0, 400000, 0, -2192.49, 902.684, 75.037, 0, 0, 0, 0, 0, 234.22, 1063.89, 358.5, 0, 6, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (542, 4, 'Mansion', 0, 0, 0, 450000, 0, 254.376, -1367.12, 53.109, 0, 0, 0, 0, 0, 491.058, 1400.39, 1080.26, 0, 2, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (543, 4, '5 Story Condo In SF', 0, 0, 0, 500000, 0, -2211.06, 902.684, 68.93, 0, 0, 0, 0, 0, 226.3, 1114.37, 1080.99, 0, 5, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (544, 4, '5 Story Condo In SF', 0, 0, 0, 500000, 0, -2224.88, 902.673, 66.648, 0, 0, 0, 0, 0, 226.3, 1114.37, 1080.99, 0, 5, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (545, 4, '4 Story Condo In SF', 0, 0, 0, 400000, 0, -2282.4, 979.395, 70.891, 0, 0, 0, 0, 0, 234.22, 1063.89, 358.5, 0, 6, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (546, 4, '4 Story Condo In SF', 0, 0, 0, 400000, 0, -2282.14, 999.631, 79.304, 0, 0, 0, 0, 0, 234.22, 1063.89, 358.5, 0, 6, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (547, 4, '3 Story Condo In SF', 0, 0, 0, 120000, 0, -2282.39, 1023.13, 84.11, 0, 0, 0, 0, 0, 2196.84, -1204.23, 1049.02, 0, 6, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (548, 4, '3 Story Condo In SF', 0, 0, 0, 120000, 0, -2282.42, 1046.67, 84.12, 0, 0, 0, 0, 0, 2196.84, -1204.23, 1049.02, 0, 6, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (549, 4, '3 Story Condo In SF', 0, 0, 0, 120000, 0, -2282.4, 1070.26, 81.701, 0, 0, 0, 0, 0, 2196.84, -1204.23, 1049.02, 0, 6, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (550, 4, '3 Story Condo In SF', 0, 0, 0, 120000, 0, -2282.42, 1088.93, 80.405, 0, 0, 0, 0, 0, 2196.84, -1204.23, 1049.02, 0, 6, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (551, 4, '5 Story Condo In SF', 0, 0, 0, 500000, 0, -2280.84, 1112.55, 76.984, 0, 0, 0, 0, 0, 226.3, 1114.37, 1080.99, 0, 5, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (552, 4, '5 Story Condo In SF', 0, 0, 0, 500000, 0, -2280.83, 1130.83, 69.226, 0, 0, 0, 0, 0, 226.3, 1114.37, 1080.99, 0, 5, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (553, 4, 'Huge house at Vinewood', 0, 0, 0, 600000, 0, 219.259, -1249.79, 78.333, 0, 0, 0, 0, 0, 226.3, 1114.37, 1080.99, 0, 5, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (554, 4, '5 Story Condo In SF', 0, 0, 0, 500000, 0, -2280.83, 1149.17, 61.609, 0, 0, 0, 0, 0, 226.3, 1114.37, 1080.99, 0, 5, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (555, 4, 'Very Small House In SF', 0, 0, 0, 25000, 0, -2358.98, 1118.09, 55.726, 0, 0, 0, 0, 0, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (556, 4, 'Small Very Nice House In SF', 0, 0, 0, 55000, 0, -2369.4, 1122.32, 55.733, 0, 0, 0, 0, 0, 295.21, 1472.26, 1080.25, 0, 15, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (557, 4, 'LS Apartment Near Beach Medium', 0, 0, 0, 40000, 0, 662.432, -1466.81, 14.85, 0, 0, 0, 0, 0, 225.755, 1240, 1082.15, 0, 2, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (558, 4, 'LS Apartment Near Beach Medium', 0, 0, 0, 40000, 500, 657.388, -1481.28, 14.85, 0, 0, 0, 0, 0, 225.755, 1240, 1082.15, 0, 2, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (559, 4, 'LS Apartment Near Beach Medium', 0, 0, 0, 40000, 499, 662.434, -1487.5, 14.85, 0, 0, 0, 0, 0, 225.755, 1240, 1082.15, 0, 2, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (560, 4, 'LS Apartment Near Beach Medium', 0, 0, 0, 40000, 0, 648.854, -1489.52, 14.84, 0, 0, 0, 0, 0, 225.755, 1240, 1082.15, 0, 2, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (561, 4, 'LS Apartment Near Beach Medium', 0, 0, 0, 40000, 5000, 648.856, -1442.35, 14.729, 0, 0, 0, 0, 0, 225.755, 1240, 1082.15, 0, 2, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (562, 4, 'LS Apartment Near Beach Medium', 0, 0, 0, 40000, 500, 657.348, -1434.11, 14.85, 0, 0, 0, 0, 0, 225.755, 1240, 1082.15, 0, 2, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (563, 4, 'LS Apartment Near Beach Medium', 0, 0, 0, 40000, 0, 662.432, -1440.42, 14.85, 0, 0, 0, 0, 0, 225.755, 1240, 1082.15, 0, 2, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (564, 4, 'LS Apartment Near Beach Medium', 0, 0, 0, 40000, 0, 685.53, -1421.91, 14.774, 0, 0, 0, 0, 0, 225.755, 1240, 1082.15, 0, 2, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (565, 4, 'LS Apartment Near Beach Medium', 0, 0, 0, 40000, 0, 739.085, -1418.51, 13.522, 0, 0, 0, 0, 0, 225.755, 1240, 1082.15, 0, 2, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (566, 4, 'LS Apartment Near Beach Medium', 0, 0, 0, 40000, 0, 738.976, -1428.77, 13.897, 0, 0, 0, 0, 0, 225.755, 1240, 1082.15, 0, 2, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (567, 4, 'LS Apartment Near Beach Medium', 0, 0, 0, 40000, 0, 725.603, -1440.45, 13.531, 0, 0, 0, 0, 0, 225.755, 1240, 1082.15, 0, 2, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (568, 4, 'LS Apartment Near Beach Medium', 0, 0, 0, 40000, 500, 662.434, -1514.03, 14.85, 0, 0, 0, 0, 0, 225.755, 1240, 1082.15, 0, 2, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (569, 4, 'LS Apartment Near Beach Medium', 0, 0, 0, 40000, 0, 657.434, -1528.46, 14.85, 0, 0, 0, 0, 0, 225.755, 1240, 1082.15, 0, 2, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (570, 4, 'LS Apartment Near Beach Medium', 0, 0, 0, 40000, 3000, 662.431, -1534.8, 14.85, 0, 0, 0, 0, 0, 225.755, 1240, 1082.15, 0, 2, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (571, 4, 'LS Apartment Near Beach Medium', 0, 0, 0, 40000, 0, 648.854, -1536.7, 14.932, 0, 0, 0, 0, 0, 225.755, 1240, 1082.15, 0, 2, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (572, 4, 'LS Apartment Near Beach Medium', 0, 0, 0, 40000, 0, 653.242, -1619.92, 15, 0, 0, 0, 0, 0, 225.755, 1240, 1082.15, 0, 2, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (573, 4, 'LS Apartment Near Beach Medium', 0, 0, 0, 40000, 0, 692.861, -1602.77, 15.045, 0, 0, 0, 0, 0, 225.755, 1240, 1082.15, 0, 2, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (574, 4, 'LS Apartment Near Beach Medium', 0, 0, 0, 40000, 0, 697.28, -1627, 3.749, 0, 0, 0, 0, 0, 225.755, 1240, 1082.15, 0, 2, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (575, 4, 'LS Apartment Near Beach Medium', 0, 0, 0, 40000, 0, 813.69, -1456.63, 14.222, 0, 0, 0, 0, 0, 225.755, 1240, 1082.15, 0, 2, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (576, 4, 'Small House In SF', 0, 0, 0, 30000, 0, -2383.75, 1128.1, 55.726, 0, 0, 0, 0, 0, 261.058, 1284.29, 1080.25, 0, 4, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (577, 4, 'Apartment Near the beach LS big', 0, 0, 0, 25000, 100, 822.382, -1505.51, 14.397, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (578, 4, 'Small Nice House In SF', 0, 0, 0, 60000, 0, -2396.81, 1132.76, 55.733, 0, 0, 0, 0, 0, 22.93, 1403.32, 1084.43, 0, 5, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (579, 4, 'Apartment Near the beach LS big', 0, 0, 0, 25000, 0, 849.591, -1519.96, 14.347, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (580, 4, 'Small House In SF', 0, 0, 0, 30000, 0, -2407.02, 1135.82, 55.726, 0, 0, 0, 0, 0, 261.06, 1284.29, 1080.25, 0, 4, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (581, 4, 'LS Apartment Near Beach Medium', 0, 0, 0, 40000, 5000, 771.116, -1510.72, 13.545, 0, 0, 0, 0, 0, 225.755, 1240, 1082.15, 0, 2, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (582, 4, 'LS Apartment Near Beach Medium', 0, 0, 0, 40000, 0, 761.065, -1564.08, 13.928, 0, 0, 0, 0, 0, 225.755, 1240, 1082.15, 0, 2, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (583, 4, 'LS Apartment Near Beach Medium', 0, 0, 0, 25000, 0, 841.335, -1471.36, 14.314, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (584, 4, 'Apartment Near the beach LS big', 0, 0, 0, 25000, 0, 782.789, -1464.49, 13.545, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (585, 4, 'Apartment Near the beach LS big', 0, 0, 0, 25000, 0, 824.5, -1424.2, 14.498, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (586, 4, 'Apartment Near the beach LS big', 0, 0, 0, 25000, 0, 852.195, -1423.27, 14.135, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (587, 4, 'Small House In SF', 0, 0, 0, 30000, 0, -2413.67, 1137.49, 55.726, 0, 0, 0, 0, 0, 261.06, 1284.29, 1080.25, 0, 4, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (588, 4, 'Apartment Near the beach LS big', 0, 0, 0, 25000, 0, 880.117, -1424.82, 14.484, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (589, 4, 'Small Very Nice House In SF', 0, 0, 0, 55000, 0, -2424.02, 1139.41, 55.726, 0, 0, 0, 0, 0, 295.21, 1472.26, 1080.25, 0, 15, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (590, 4, 'Apartment Near the beach LS big', 0, 0, 0, 25000, 0, 900.215, -1447.41, 14.369, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (591, 4, 'Apartment Near the beach LS big', 0, 0, 0, 25000, 0, 898.276, -1445.64, 14.364, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (592, 4, 'Small House In SF', 0, 0, 0, 30000, 0, -2438.17, 1141, 55.726, 0, 0, 0, 0, 0, 261.06, 1284.29, 1080.25, 0, 4, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (593, 4, 'Apartment Near the beach LS big', 0, 0, 0, 25000, 4999, 900.197, -1471.03, 14.343, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (594, 4, 'Apartment Near the beach LS big', 0, 0, 0, 25000, 5000, 898.364, -1472.83, 14.34, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (595, 4, 'Apartment Near the beach LS big', 0, 0, 0, 25000, 0, 852.513, -1436.23, 15.043, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (596, 4, 'Small Very Nice House In SF', 0, 0, 0, 55000, 0, -2451.11, 1141.75, 55.733, 0, 0, 0, 0, 0, 295.21, 1472.26, 1080.25, 0, 15, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (597, 4, 'Apartment Near the beach LS big', 0, 0, 0, 25000, 0, 784.395, -1436.11, 13.545, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (598, 4, 'Small House In SF', 0, 0, 0, 30000, 0, -2461.57, 1141.9, 55.726, 0, 0, 0, 0, 0, 261.06, 1284.29, 1080.25, 0, 4, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (599, 4, 'Apartment Near the beach LS big', 0, 0, 0, 25000, 1, 987.497, -1624.49, 14.928, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (600, 4, 'Small House In SF', 0, 0, 0, 30000, 0, -2468.52, 1141.91, 55.733, 0, 0, 0, 0, 0, 261.06, 1284.29, 1080.25, 0, 4, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (601, 4, 'Small Nice House In SF', 0, 0, 0, 60000, 0, -2478.92, 1141.96, 55.726, 0, 0, 0, 0, 0, 22.93, 1403.32, 1084.43, 0, 5, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (602, 4, 'Apartment Near the beach LS big', 0, 0, 0, 25000, 1, 987.52, -1704.34, 14.928, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (603, 4, 'Small House In SF', 0, 0, 0, 30000, 0, -2493.18, 1141.98, 55.726, 0, 0, 0, 0, 0, 261.06, 1284.29, 1080.25, 0, 4, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (604, 4, 'Small Nice House In SF', 0, 0, 0, 60000, 0, -2506.44, 1142.08, 55.726, 0, 0, 0, 0, 0, 22.93, 1403.32, 1084.43, 0, 5, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (605, 4, 'Small House In SF', 0, 0, 0, 30000, 0, -2517, 1142.41, 55.726, 0, 0, 0, 0, 0, 261.06, 1284.29, 1080.25, 0, 4, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (606, 4, 'Small House In SF', 0, 0, 0, 30000, 0, -2523.88, 1142.67, 55.726, 0, 0, 0, 0, 0, 261.06, 1284.29, 1080.25, 0, 4, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (607, 4, 'Small Nice House In SF', 0, 0, 0, 60000, 0, -2534.53, 1143.77, 55.726, 0, 0, 0, 0, 0, 22.93, 1403.32, 1084.43, 0, 5, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (608, 4, 'Small House In SF', 0, 0, 0, 30000, 0, -2549.06, 1145.72, 55.726, 0, 0, 0, 0, 0, 261.058, 1284.29, 1080.25, 0, 4, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (609, 4, 'Small Nice House In SF', 0, 0, 0, 60000, 0, -2563.2, 1149.12, 55.726, 0, 0, 0, 0, 0, 22.93, 1403.32, 1084.43, 0, 5, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (610, 4, 'LS Apartment Near Beach Medium', 0, 0, 0, 40000, 0, 675.143, -1430.51, 14.85, 0, 0, 0, 0, 0, 225.755, 1240, 1082.15, 0, 2, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (611, 4, 'LS Apartment Near Beach Medium', 0, 0, 0, 40000, 1, 683.403, -1435.48, 14.85, 0, 0, 0, 0, 0, 225.755, 1240, 1082.15, 0, 2, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (612, 4, 'LS Apartment Near Beach Medium', 0, 0, 0, 40000, 0, 725.687, -1451.04, 17.694, 0, 0, 0, 0, 0, 225.755, 1240, 1082.15, 0, 2, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (613, 4, 'LS Apartment Near Beach Medium', 0, 0, 0, 40000, 0, 877.973, -1514.64, 14.347, 0, 0, 0, 0, 0, 225.755, 1240, 1082.15, 0, 2, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (614, 4, 'LS Apartment Near Beach Medium', 0, 0, 0, 40000, 300, 876.205, -1512.7, 14.347, 0, 0, 0, 0, 0, 225.755, 1240, 1082.15, 0, 2, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (615, 4, 'LS Apartment Near Beach Medium', 0, 0, 0, 40000, 500, 901.705, -1514.66, 14.362, 0, 0, 0, 0, 0, 225.755, 1240, 1082.15, 0, 2, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (616, 4, 'LS Apartment Near Beach Medium', 0, 0, 0, 40000, 0, 903.4, -1512.85, 14.362, 0, 0, 0, 0, 0, 225.755, 1240, 1082.15, 0, 2, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (617, 4, 'LS Apartment Near Beach Medium', 0, 0, 0, 40000, 2000, 797.236, -1729.38, 13.545, 0, 0, 0, 0, 0, 225.755, 1240, 1082.15, 0, 2, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (618, 4, 'Medium Size House In SF', 0, 0, 0, 120000, 0, -2711.23, 967.585, 54.458, 0, 0, 0, 0, 0, 447, 1397.09, 1084.3, 0, 2, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (619, 4, 'Medium Size House In SF', 0, 0, 0, 120000, 0, -2656.6, 985.815, 64.986, 0, 0, 0, 0, 0, 447, 1397.09, 1084.3, 0, 2, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (620, 4, 'Small Nice House In SF', 0, 0, 0, 60000, 0, -2584.18, 992.255, 78.273, 0, 0, 0, 0, 0, 22.93, 1403.32, 1084.43, 0, 5, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (621, 4, 'LS Apartment Near Beach Medium', 0, 0, 0, 40000, 0, 791.385, -1753.22, 13.46, 0, 0, 0, 0, 0, 225.755, 1240, 1082.15, 0, 2, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (622, 4, 'Small House In SF', 0, 0, 0, 30000, 0, -2573.6, 992.257, 78.273, 0, 0, 0, 0, 0, 261.058, 1284.29, 1080.25, 0, 4, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (623, 4, 'LS Apartment Near Beach Medium', 0, 0, 0, 40000, 0, 893.638, -1635.7, 14.928, 0, 0, 0, 0, 0, 225.755, 1240, 1082.15, 0, 2, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (624, 4, 'Small House In SF', 0, 0, 0, 30000, 0, -2564.32, 992.255, 78.273, 0, 0, 0, 0, 0, 261.059, 1284.29, 1080.25, 0, 4, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (625, 4, 'LS Apartment Near Beach Medium', 0, 0, 0, 40000, 0, 846.723, -1717.4, 14.928, 0, 0, 0, 0, 0, 225.755, 1240, 1082.15, 0, 2, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (626, 4, 'Small Nice House In SF', 0, 0, 0, 60000, 0, -2553.66, 992.255, 78.273, 0, 0, 0, 0, 0, 22.93, 1403.32, 1084.43, 0, 5, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (627, 4, 'LS Apartment Near Beach Medium', 0, 0, 0, 40000, 0, 865.216, -1633.84, 14.928, 0, 0, 0, 0, 0, 225.755, 1240, 1082.15, 0, 2, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (628, 4, 'Appartment 2nd Floor In SF', 0, 0, 0, 80000, 0, -2543.56, 922.376, 67.093, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (629, 4, 'Appartment 1st Floor In SF', 0, 0, 0, 80000, 0, -2545.33, 920.34, 64.976, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (630, 4, 'Small Nice House In SF', 0, 0, 0, 60000, 0, -2551.82, 920.377, 64.984, 0, 0, 0, 0, 0, 22.93, 1403.32, 1084.43, 0, 5, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (631, 4, 'Small House In SF', 0, 0, 0, 30000, 0, -2562.42, 920.372, 64.984, 0, 0, 0, 0, 0, 261.058, 1284.29, 1080.25, 0, 4, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (632, 4, 'Small House In SF', 0, 0, 0, 30000, 0, -2569.98, 920.364, 64.984, 0, 0, 0, 0, 0, 261.059, 1284.29, 1080.25, 0, 4, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (633, 4, 'Small Nice House In SF', 0, 0, 0, 60000, 0, -2580.92, 920.376, 64.984, 0, 0, 0, 0, 0, 22.93, 1403.32, 1084.43, 0, 5, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (634, 4, 'Medium house at LV', 0, 0, 0, 150000, 0, 1364.51, 1896.76, 11.468, 0, 0, 0, 0, 0, 447, 1397.09, 1084.3, 0, 2, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (635, 4, 'Medium house at LV', 0, 0, 0, 150000, 5, 1363.96, 1931.62, 11.468, 0, 0, 0, 0, 0, 447, 1397.09, 1084.3, 0, 2, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (636, 4, '3 Floor House In SF', 0, 0, 0, 600000, 0, -2641.24, 935.718, 71.953, 0, 0, 0, 0, 0, 226.3, 1114.37, 1080.99, 0, 5, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (637, 4, 'Medium house at LV', 0, 0, 0, 150000, 0, 1412.63, 1951.25, 11.453, 0, 0, 0, 0, 0, 447, 1397.09, 1084.3, 0, 2, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (638, 4, 'Medium house at LV', 0, 0, 0, 150000, 0, 1439.76, 1951.25, 11.46, 0, 0, 0, 0, 0, 447, 1397.09, 1084.3, 0, 2, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (639, 4, 'Medium house at LV', 0, 0, 0, 150000, 0, 1462.3, 1949.81, 11.468, 0, 0, 0, 0, 0, 447, 1397.09, 1084.3, 0, 2, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (640, 4, 'Medium house at LV', 0, 0, 0, 150000, 0, 1464.5, 1919.98, 11.46, 0, 0, 0, 0, 0, 447, 1397.09, 1084.3, 0, 2, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (641, 4, 'Medium house at LV', 0, 0, 0, 150000, 0, 1464.49, 1895.12, 11.46, 0, 0, 0, 0, 0, 447, 1397.09, 1084.3, 0, 2, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (642, 4, 'Medium house at LV', 0, 0, 0, 150000, 0, 1409.36, 1920.01, 11.468, 0, 0, 0, 0, 0, 447, 1397.09, 1084.3, 0, 2, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (643, 4, 'Medium house at LV', 0, 0, 0, 150000, 0, 1365.41, 1974.17, 11.46, 0, 0, 0, 0, 0, 447, 1397.09, 1084.3, 0, 2, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (644, 4, 'Medium house at LV', 0, 0, 0, 150000, 0, 1364.39, 2003.71, 11.46, 0, 0, 0, 0, 0, 447, 1397.09, 1084.3, 0, 2, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (645, 4, 'Large House In SF', 0, 0, 0, 470000, 2500, -2661.96, 876.338, 79.773, 0, 0, 0, 0, 0, 234.22, 1063.89, 1084.21, 0, 6, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (646, 4, 'small project lv', 0, 0, 0, 30000, 0, 1422.26, 2026.93, 14.739, 0, 0, 0, 0, 0, 266.5, 304.99, 999.14, 0, 2, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (647, 4, 'Small Nice House In SF', 0, 0, 0, 60000, 0, -2583.77, 896.254, 64.984, 0, 0, 0, 0, 0, 22.93, 1403.32, 1084.43, 0, 5, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (648, 4, 'small project lv', 0, 0, 0, 30000, 0, 1414.7, 2026.87, 10.82, 0, 0, 0, 0, 0, 266.5, 304.99, 999.14, 0, 2, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (649, 4, 'small project lv', 0, 0, 0, 30000, 0, 1422.25, 2026.95, 10.82, 0, 0, 0, 0, 0, 266.5, 304.99, 999.14, 0, 2, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (650, 4, 'small project lv', 0, 0, 0, 30000, 0, 1414.7, 2033.17, 10.82, 0, 0, 0, 0, 0, 266.5, 304.99, 999.14, 0, 2, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (651, 4, 'small project lv', 0, 0, 0, 30000, 0, 1422.25, 2033.18, 10.82, 0, 0, 0, 0, 0, 266.5, 304.99, 999.14, 0, 2, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (652, 4, 'small project lv', 0, 0, 0, 30000, 0, 1414.7, 2033.13, 14.739, 0, 0, 0, 0, 0, 266.5, 304.99, 999.14, 0, 2, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (653, 4, 'small project lv', 0, 0, 0, 30000, 0, 1422.25, 2033.18, 14.739, 0, 0, 0, 0, 0, 266.5, 304.99, 999.14, 0, 2, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (654, 4, 'small project lv', 0, 0, 0, 30000, 0, 1414.7, 2026.97, 14.739, 0, 0, 0, 0, 0, 266.5, 304.99, 999.14, 0, 2, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (655, 4, 'small project lv', 0, 0, 0, 30000, 0, 1453.72, 2026.92, 10.819, 0, 0, 0, 0, 0, 266.5, 304.989, 999.14, 0, 2, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (656, 4, 'small project lv', 0, 0, 0, 30000, 0, 1461.28, 2026.95, 10.819, 0, 0, 0, 0, 0, 266.5, 304.989, 999.14, 0, 2, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (657, 4, 'small project lv', 0, 0, 0, 30000, 0, 1453.72, 2033.22, 10.82, 0, 0, 0, 0, 0, 266.5, 304.99, 999.14, 0, 2, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (658, 4, 'small project lv', 0, 0, 0, 30000, 0, 1461.28, 2033.19, 10.82, 0, 0, 0, 0, 0, 266.5, 304.99, 999.14, 0, 2, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (659, 4, 'small project lv', 0, 0, 0, 30000, 0, 1453.72, 2033.21, 14.739, 0, 0, 0, 0, 0, 266.5, 304.99, 999.14, 0, 2, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (660, 4, 'small project lv', 0, 0, 0, 30000, 0, 1461.28, 2033.11, 14.739, 0, 0, 0, 0, 0, 266.5, 304.99, 999.14, 0, 2, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (661, 4, 'small project lv', 0, 0, 0, 30000, 0, 1453.72, 2026.95, 14.739, 0, 0, 0, 0, 0, 266.5, 304.99, 999.14, 0, 2, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (662, 4, 'small project lv', 0, 0, 0, 30000, 0, 1461.28, 2026.91, 14.739, 0, 0, 0, 0, 0, 266.5, 304.99, 999.14, 0, 2, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (663, 4, 'Small House In SF', 0, 0, 0, 30000, 0, -2573.13, 896.265, 64.984, 0, 0, 0, 0, 0, 261.06, 1284.29, 1080.25, 0, 4, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (664, 4, 'small project lv', 0, 0, 0, 30000, 0, 1414.53, 2003.91, 10.82, 0, 0, 0, 0, 0, 266.5, 304.99, 999.14, 0, 2, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (665, 4, 'small project lv', 0, 0, 0, 30000, 0, 1414.48, 1996.36, 10.819, 0, 0, 0, 0, 0, 266.5, 304.989, 999.14, 0, 2, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (666, 4, 'Small House In SF', 0, 0, 0, 30000, 0, -2566.5, 896.647, 64.984, 0, 0, 0, 0, 0, 261.06, 1284.29, 1080.25, 0, 4, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (667, 4, 'small project lv', 0, 0, 0, 30000, 0, 1408.26, 2003.91, 10.82, 0, 0, 0, 0, 0, 266.5, 304.99, 999.14, 0, 2, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (668, 4, 'small project lv', 0, 0, 0, 30000, 0, 1408.18, 1996.36, 10.82, 0, 0, 0, 0, 0, 266.5, 304.99, 999.14, 0, 2, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (669, 4, 'small project lv', 0, 0, 0, 30000, 0, 1408.31, 1996.36, 14.739, 0, 0, 0, 0, 0, 266.5, 304.99, 999.14, 0, 2, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (670, 4, 'small project lv', 0, 0, 0, 30000, 0, 1408.35, 2003.91, 14.739, 0, 0, 0, 0, 0, 266.5, 304.99, 999.14, 0, 2, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (671, 4, 'small project lv', 0, 0, 0, 30000, 0, 1414.51, 1996.36, 14.739, 0, 0, 0, 0, 0, 266.5, 304.989, 999.14, 0, 2, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (672, 4, 'small project lv', 0, 0, 0, 30000, 0, 1414.52, 2003.91, 14.739, 0, 0, 0, 0, 0, 266.5, 304.989, 999.14, 0, 2, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (673, 4, 'Small Nice House In SF', 0, 0, 0, 60000, 0, -2556.02, 896.643, 64.984, 0, 0, 0, 0, 0, 22.93, 1403.32, 1084.43, 0, 5, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (674, 4, 'small project lv', 0, 0, 0, 30000, 0, 1495.69, 2026.97, 10.82, 0, 0, 0, 0, 0, 266.5, 304.99, 999.14, 0, 2, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (675, 4, 'small project lv', 0, 0, 0, 30000, 0, 1503.24, 2027.01, 10.82, 0, 0, 0, 0, 0, 266.5, 304.99, 999.14, 0, 2, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (676, 4, 'small project lv', 0, 0, 0, 30000, 0, 1495.69, 2033.25, 10.82, 0, 0, 0, 0, 0, 266.5, 304.99, 999.14, 0, 2, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (677, 4, 'small project lv', 0, 0, 0, 30000, 0, 1503.24, 2033.15, 10.82, 0, 0, 0, 0, 0, 266.5, 304.99, 999.14, 0, 2, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (678, 4, 'small project lv', 0, 0, 0, 30000, 0, 1495.69, 2033.16, 14.739, 0, 0, 0, 0, 0, 266.5, 304.99, 999.14, 0, 2, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (679, 4, 'small project lv', 0, 0, 0, 30000, 0, 1503.25, 2033.2, 14.739, 0, 0, 0, 0, 0, 266.5, 304.99, 999.14, 0, 2, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (680, 4, 'small project lv', 0, 0, 0, 30000, 0, 1495.69, 2027.01, 14.739, 0, 0, 0, 0, 0, 266.5, 304.99, 999.14, 0, 2, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (681, 4, 'small project lv', 0, 0, 0, 30000, 0, 1503.24, 2026.85, 14.739, 0, 0, 0, 0, 0, 266.5, 304.989, 999.14, 0, 2, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (682, 4, 'small project lv', 0, 0, 0, 30000, 0, 1534.72, 2026.98, 10.82, 0, 0, 0, 0, 0, 266.5, 304.99, 999.14, 0, 2, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (683, 4, 'small project lv', 0, 0, 0, 30000, 0, 1542.26, 2026.88, 10.82, 0, 0, 0, 0, 0, 266.5, 304.99, 999.14, 0, 2, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (684, 4, 'small project lv', 0, 0, 0, 30000, 0, 1534.72, 2033.18, 10.82, 0, 0, 0, 0, 0, 266.5, 304.99, 999.14, 0, 2, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (685, 4, 'small project lv', 0, 0, 0, 30000, 0, 1542.27, 2033.22, 10.82, 0, 0, 0, 0, 0, 266.5, 304.99, 999.14, 0, 2, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (686, 4, 'Small House In SF', 0, 0, 0, 30000, 0, -2541.55, 896.643, 64.984, 0, 0, 0, 0, 0, 261.06, 1284.29, 1080.25, 0, 4, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (687, 4, 'small project lv', 0, 0, 0, 30000, 0, 1534.72, 2033.23, 14.739, 0, 0, 0, 0, 0, 266.5, 304.99, 999.14, 0, 2, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (688, 4, 'small project lv', 0, 0, 0, 30000, 0, 1542.27, 2033.12, 14.739, 0, 0, 0, 0, 0, 266.5, 304.99, 999.14, 0, 2, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (689, 4, 'small project lv', 0, 0, 0, 30000, 0, 1534.71, 2027, 14.739, 0, 0, 0, 0, 0, 266.5, 304.99, 999.14, 0, 2, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (690, 4, 'small project lv', 0, 0, 0, 30000, 0, 1542.27, 2026.88, 14.739, 0, 0, 0, 0, 0, 266.5, 304.99, 999.14, 0, 2, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (691, 4, 'small project lv', 0, 0, 0, 30000, 0, 1542.45, 2003.91, 10.819, 0, 0, 0, 0, 0, 266.5, 304.989, 999.14, 0, 2, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (692, 4, 'small project lv', 0, 0, 0, 30000, 0, 1542.49, 1996.36, 10.82, 0, 0, 0, 0, 0, 266.5, 304.99, 999.14, 0, 2, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (693, 4, 'small project lv', 0, 0, 0, 30000, 0, 1548.75, 2003.91, 10.82, 0, 0, 0, 0, 0, 266.5, 304.99, 999.14, 0, 2, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (694, 4, 'small project lv', 0, 0, 0, 30000, 0, 1548.68, 1996.35, 10.82, 0, 0, 0, 0, 0, 266.5, 304.99, 999.14, 0, 2, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (695, 4, 'small project lv', 0, 0, 0, 30000, 0, 1548.7, 2003.91, 14.739, 0, 0, 0, 0, 0, 266.5, 304.99, 999.14, 0, 2, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (696, 4, 'small project lv', 0, 0, 0, 30000, 0, 1548.64, 1996.35, 14.739, 0, 0, 0, 0, 0, 266.5, 304.99, 999.14, 0, 2, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (697, 4, 'small project lv', 0, 0, 0, 30000, 0, 1542.55, 2003.89, 14.739, 0, 0, 0, 0, 0, 266.5, 304.99, 999.14, 0, 2, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (698, 4, 'small project lv', 0, 0, 0, 30000, 0, 1542.41, 1996.35, 14.739, 0, 0, 0, 0, 0, 266.5, 304.99, 999.14, 0, 2, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (699, 4, 'Medium house at LV', 0, 0, 0, 150000, 0, 1595.5, 2038.34, 11.468, 0, 0, 0, 0, 0, 447, 1397.09, 1084.3, 0, 2, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (700, 4, '3 Story Condo In SF', 0, 0, 0, 120000, 0, -2502.88, 921.367, 65.239, 0, 0, 0, 0, 0, 2196.84, -1204.23, 1049.02, 0, 6, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (701, 4, 'Medium house at LV', 0, 0, 0, 150000, 0, 1641.79, 2044.95, 11.319, 0, 0, 0, 0, 0, 447, 1397.09, 1084.3, 0, 2, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (702, 4, 'Medium house at LV', 0, 0, 0, 150000, 0, 1594.96, 2071.07, 11.319, 0, 0, 0, 0, 0, 447, 1397.09, 1084.3, 0, 2, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (703, 4, '3 Story Condo In SF', 0, 0, 0, 120000, 0, -2471.77, 921.424, 63.165, 0, 0, 0, 0, 0, 2196.84, -1204.23, 1049.02, 0, 6, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (704, 4, 'Medium house at LV', 0, 0, 0, 150000, 0, 1596.41, 2093.74, 11.312, 0, 0, 0, 0, 0, 447, 1397.09, 1084.3, 0, 2, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (705, 4, 'Medium house at LV', 0, 0, 0, 150000, 0, 1640.35, 2075.67, 11.312, 0, 0, 0, 0, 0, 447, 1397.09, 1084.3, 0, 2, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (706, 4, 'Medium house at LV', 0, 0, 0, 150000, 0, 1640.35, 2102.86, 11.312, 0, 0, 0, 0, 0, 447, 1397.09, 1084.3, 0, 2, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (707, 4, '3 Story Condo In SF', 0, 0, 0, 120000, 0, -2449.79, 921.4, 58.143, 0, 0, 0, 0, 0, 2196.84, -1204.23, 1049.02, 0, 6, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (708, 4, 'Medium house at LV', 0, 0, 0, 150000, 0, 1645.45, 2127.38, 11.203, 0, 0, 0, 0, 0, 447, 1397.09, 1084.3, 0, 2, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (709, 4, 'Medium house at LV', 0, 0, 0, 150000, 0, 1641.26, 2149.74, 11.312, 0, 0, 0, 0, 0, 447, 1397.09, 1084.3, 0, 2, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (710, 4, '3 Story Condo In SF', 0, 0, 0, 120000, 0, -2431.38, 921.408, 50.578, 0, 0, 0, 0, 0, 2196.84, -1204.23, 1049.02, 0, 6, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (711, 4, '5 Story Condo In SF', 0, 0, 0, 500000, 0, -2413.09, 921.431, 45.468, 0, 0, 0, 0, 0, 226.3, 1114.37, 1080.99, 0, 5, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (712, 4, 'Medium house at LV', 0, 0, 0, 150000, 0, 1595.5, 2123.37, 11.46, 0, 0, 0, 0, 0, 447, 1397.09, 1084.3, 0, 2, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (713, 4, 'Medium house at LV', 0, 0, 0, 150000, 0, 1596.41, 2147.43, 11.46, 0, 0, 0, 0, 0, 447, 1397.09, 1084.3, 0, 2, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (714, 4, '5 Story Condo In SF', 0, 0, 0, 500000, 0, -2412.98, 895.232, 45.466, 0, 0, 0, 0, 0, 226.3, 1114.37, 1080.99, 0, 5, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (715, 4, 'Medium house at LV', 0, 0, 0, 150000, 0, 1684.51, 2123.46, 11.46, 0, 0, 0, 0, 0, 447, 1397.09, 1084.3, 0, 2, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (716, 4, '3 Story Condo In SF', 0, 0, 0, 120000, 0, -2431.45, 895.249, 50.544, 0, 0, 0, 0, 0, 2196.84, -1204.23, 1049.02, 0, 6, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (717, 4, 'Medium house at LV', 0, 0, 0, 150000, 0, 1685.42, 2093.88, 11.46, 0, 0, 0, 0, 0, 447, 1397.09, 1084.3, 0, 2, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (718, 4, '3 Story Condo In SF', 0, 0, 0, 120000, 0, -2449.8, 895.235, 58.146, 0, 0, 0, 0, 0, 2196.84, -1204.23, 1049.02, 0, 6, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (719, 4, 'Medium house at LV', 0, 0, 0, 150000, 0, 1680.26, 2069.24, 11.359, 0, 0, 0, 0, 0, 447, 1397.09, 1084.3, 0, 2, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (720, 4, 'Medium house at LV', 0, 0, 0, 150000, 0, 1684.51, 2046.69, 11.468, 0, 0, 0, 0, 0, 447, 1397.09, 1084.3, 0, 2, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (721, 4, '3 Story Condo In SF', 0, 0, 0, 120000, 0, -2471.93, 895.263, 63.168, 0, 0, 0, 0, 0, 2196.84, -1204.23, 1049.02, 0, 6, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (722, 4, '3 Story Condo In SF', 0, 0, 0, 120000, 0, -2503.02, 895.258, 65.255, 0, 0, 0, 0, 0, 2196.84, -1204.23, 1049.02, 0, 6, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (723, 4, '3 Story Condo In SF', 0, 0, 0, 120000, 0, -2585.97, 794.179, 49.423, 0, 0, 0, 0, 0, 2196.84, -1204.23, 1049.02, 0, 6, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (724, 4, '3 Story Condo In SF', 0, 0, 0, 120000, 0, -2569.11, 794.171, 49.423, 0, 0, 0, 0, 0, 2196.84, -1204.23, 1049.02, 0, 6, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (725, 4, '3 Story Condo In SF', 0, 0, 0, 120000, 0, -2550.83, 794.174, 49.423, 0, 0, 0, 0, 0, 2196.84, -1204.23, 1049.02, 0, 6, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (726, 4, 'Nice looking house at lv', 0, 0, 0, 300000, 0, 2056.5, 2665.19, 10.82, 0, 0, 0, 0, 0, 234.22, 1063.89, 1084.21, 0, 6, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (727, 4, 'Nice looking house at lv', 0, 0, 0, 300000, 0, 2037.04, 2664.5, 10.819, 0, 0, 0, 0, 0, 234.22, 1063.89, 1084.21, 0, 6, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (728, 4, 'Nice looking house at lv', 0, 0, 0, 300000, 0, 2018.03, 2664.67, 11.298, 0, 0, 0, 0, 0, 234.22, 1063.89, 1084.21, 0, 6, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (729, 4, 'Small Nice House In SF', 0, 0, 0, 60000, 0, -2548.68, 819.788, 49.984, 0, 0, 0, 0, 0, 22.93, 1403.32, 1084.43, 0, 5, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (730, 4, 'Nice looking house at lv', 0, 0, 0, 300000, 0, 1989.24, 2665.19, 10.82, 0, 0, 0, 0, 0, 234.22, 1063.89, 1084.21, 0, 6, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (731, 4, 'Small House In SF', 0, 0, 0, 30000, 0, -2559.22, 819.795, 49.984, 0, 0, 0, 0, 0, 261.06, 1284.29, 1080.25, 0, 4, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (732, 4, 'Nice looking house at lv', 0, 0, 0, 300000, 0, 1969.62, 2664.5, 10.82, 0, 0, 0, 0, 0, 234.22, 1063.89, 1084.21, 0, 6, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (733, 4, 'Nice looking house at lv', 0, 0, 0, 300000, 0, 1950.53, 2664.67, 11.298, 0, 0, 0, 0, 0, 234.22, 1063.89, 1084.21, 0, 6, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (734, 4, 'Nice looking house at lv', 0, 0, 0, 300000, 0, 1921.7, 2665.19, 10.819, 0, 0, 0, 0, 0, 234.22, 1063.89, 1084.21, 0, 6, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (735, 4, 'Small House In SF', 0, 0, 0, 30000, 0, -2565.91, 819.796, 49.991, 0, 0, 0, 0, 0, 261.058, 1284.29, 1080.25, 0, 4, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (736, 4, 'Small Nice House In SF', 0, 0, 0, 60000, 0, -2576.42, 819.789, 49.984, 0, 0, 0, 0, 0, 22.93, 1403.32, 1084.43, 0, 5, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (737, 4, 'Small House In SF', 0, 0, 0, 30000, 0, -2590.88, 819.796, 49.991, 0, 0, 0, 0, 0, 261.058, 1284.29, 1080.25, 0, 4, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (738, 4, 'Nice looking house at lv', 0, 0, 0, 300000, 5000, 1929.85, 2774.3, 10.819, 0, 0, 0, 0, 0, 234.22, 1063.89, 1084.21, 0, 6, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (739, 4, 'Small House In SF', 0, 0, 0, 30000, 0, -2642.14, 820.317, 49.991, 0, 0, 0, 0, 0, 261.06, 1284.29, 1080.25, 0, 4, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (740, 4, 'Nice looking house at lv', 0, 0, 0, 300000, 0, 1931.29, 2721.26, 10.82, 0, 0, 0, 0, 0, 234.22, 1063.89, 1084.21, 0, 6, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (741, 4, 'Small Nice House In SF', 0, 0, 0, 60000, 0, -2652.47, 820.319, 49.984, 0, 0, 0, 0, 0, 22.93, 1403.32, 1084.43, 0, 5, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (742, 4, 'Nice looking house at lv', 0, 0, 0, 300000, 0, 1950.69, 2721.95, 10.819, 0, 0, 0, 0, 0, 234.22, 1063.89, 1084.21, 0, 6, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (743, 4, 'Small House In SF', 0, 0, 0, 30000, 0, -2666.91, 820.318, 49.984, 0, 0, 0, 0, 0, 261.06, 1284.29, 1080.25, 0, 4, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (744, 4, 'Nice looking house at lv', 0, 0, 0, 300000, 0, 1967.32, 2766.54, 10.826, 0, 0, 0, 0, 0, 234.22, 1063.89, 1084.21, 0, 6, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (745, 4, 'Small House In SF', 0, 0, 0, 30000, 5000, -2645.52, 803.083, 49.976, 0, 0, 0, 0, 0, 261.058, 1284.29, 1080.25, 0, 4, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (746, 4, 'Nice looking house at lv', 0, 0, 0, 300000, 0, 1992.54, 2764.64, 10.819, 0, 0, 0, 0, 0, 234.22, 1063.89, 1084.21, 0, 6, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (747, 4, 'Small Nice House In SF', 0, 0, 0, 60000, 0, -2659.84, 803.092, 49.976, 0, 0, 0, 0, 0, 22.93, 1403.32, 1084.43, 0, 5, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (748, 4, 'Nice looking house at lv', 0, 0, 0, 300000, 0, 1969.78, 2721.78, 11.298, 0, 0, 0, 0, 0, 234.22, 1063.89, 1084.21, 0, 6, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (749, 4, 'Nice looking house at lv', 0, 0, 0, 300000, 0, 1998.72, 2721.26, 10.82, 0, 0, 0, 0, 0, 234.22, 1063.89, 1084.21, 0, 6, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (750, 4, 'Small House In SF', 0, 0, 0, 30000, 0, -2670.57, 803.083, 49.976, 0, 0, 0, 0, 0, 261.06, 1284.29, 1080.25, 0, 4, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (751, 4, 'Nice looking house at lv', 0, 0, 0, 300000, 0, 2018.15, 2721.95, 10.819, 0, 0, 0, 0, 0, 234.22, 1063.89, 1084.21, 0, 6, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (752, 4, 'Small House In SF', 0, 0, 0, 30000, 1000, -2677.16, 803.085, 49.976, 0, 0, 0, 0, 0, 261.059, 1284.29, 1080.25, 0, 4, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (753, 4, 'Nice looking house at lv', 0, 0, 0, 300000, 0, 2018.49, 2766.54, 10.826, 0, 0, 0, 0, 0, 234.22, 1063.89, 1084.21, 0, 6, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (754, 4, 'Nice looking house at lv', 0, 0, 0, 300000, 0, 2039.63, 2766.55, 10.826, 0, 0, 0, 0, 0, 234.22, 1063.89, 1084.21, 0, 6, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (755, 4, 'Small Nice House In SF', 0, 0, 0, 60000, 0, -2687.88, 803.088, 49.976, 0, 0, 0, 0, 0, 22.93, 1403.32, 1084.43, 0, 5, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (756, 4, 'Small Nice House In SF', 0, 0, 0, 60000, 0, -2698.92, 803.101, 49.97, 0, 0, 0, 0, 0, 22.93, 1403.32, 1084.43, 0, 5, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (757, 4, 'Nice looking house at lv', 0, 0, 0, 300000, 0, 2049.62, 2764.29, 10.819, 0, 0, 0, 0, 0, 234.22, 1063.89, 1084.21, 0, 6, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (758, 4, 'Nice looking house at lv', 0, 0, 0, 300000, 0, 2066.01, 2721.26, 10.82, 0, 0, 0, 0, 0, 234.22, 1063.89, 1084.21, 0, 6, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (759, 4, 'Small House In SF', 0, 0, 0, 30000, 0, -2709.85, 803.085, 49.976, 0, 0, 0, 0, 0, 261.058, 1284.29, 1080.25, 0, 4, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (760, 4, '4 Story Condo In SF', 0, 0, 0, 400000, 0, -2685.1, 820.491, 49.984, 0, 0, 0, 0, 0, 234.22, 1063.89, 358.5, 0, 6, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (761, 4, '4 Story Condo In SF', 0, 0, 0, 400000, 0, -2700.38, 820.835, 49.984, 0, 0, 0, 0, 0, 234.22, 1063.89, 358.5, 0, 6, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (762, 4, 'Small Nice House In SF', 0, 0, 0, 60000, 0, -2726.68, 822.977, 53.727, 0, 0, 0, 0, 0, 22.93, 1403.32, 1084.43, 0, 5, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (763, 4, 'Small House In SF', 0, 0, 0, 30000, 0, -2737.25, 822.987, 53.729, 0, 0, 0, 0, 0, 261.06, 1284.29, 1080.25, 0, 4, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (764, 4, '4 Story Condo In SF', 0, 0, 0, 400000, 0, -2409.05, 819.96, 35.179, 0, 0, 0, 0, 0, 234.22, 1063.89, 358.5, 0, 6, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (765, 4, '3 Story Condo In SF', 0, 0, 0, 120000, 0, -2487.47, 821.302, 38.384, 0, 0, 0, 0, 0, 2196.84, -1204.23, 1049.02, 0, 6, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (766, 4, 'huge 2 floor nice looking house at LV', 0, 0, 0, 500000, 0, 1451.36, 2565.43, 10.826, 0, 0, 0, 0, 0, 226.3, 1114.37, 1080.99, 0, 5, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (767, 4, '3 Story Condo In SF', 0, 0, 0, 120000, 0, -2504.61, 821.306, 45.987, 0, 0, 0, 0, 0, 2196.84, -1204.23, 1049.02, 0, 6, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (768, 4, 'huge 2 floor nice looking house at LV', 0, 0, 0, 500000, 0, 1441.72, 2567.69, 10.82, 0, 0, 0, 0, 0, 226.3, 1114.37, 1080.99, 0, 5, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (769, 4, 'huge 2 floor nice looking house at LV', 0, 0, 0, 500000, 0, 1417.87, 2567.48, 10.819, 0, 0, 0, 0, 0, 226.3, 1114.37, 1080.99, 0, 5, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (770, 4, 'huge 2 floor nice looking house at LV', 0, 0, 0, 500000, 0, 1359.74, 2565.43, 10.826, 0, 0, 0, 0, 0, 226.3, 1114.37, 1080.99, 0, 5, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (771, 4, 'Nice looking house at lv', 0, 0, 0, 300000, 0, 1344.72, 2610.19, 11.298, 0, 0, 0, 0, 0, 234.22, 1063.89, 1084.21, 0, 6, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (772, 4, 'Normal Size House In SF', 0, 0, 0, 85000, 0, -2731.47, 723.691, 41.273, 0, 0, 0, 0, 0, 2196.84, -1204.23, 1049.02, 0, 6, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (773, 4, 'huge 2 floor nice looking house at LV', 0, 0, 0, 500000, 0, 1349.6, 2567.69, 10.819, 0, 0, 0, 0, 0, 226.3, 1114.37, 1080.99, 0, 5, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (774, 4, 'Nice looking house at lv', 0, 0, 0, 300000, 0, 1313.84, 2610.19, 11.298, 0, 0, 0, 0, 0, 234.22, 1063.89, 1084.21, 0, 6, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (775, 4, 'huge 2 floor nice looking house at LV', 0, 0, 0, 500000, 0, 1325.61, 2567.34, 10.819, 0, 0, 0, 0, 0, 226.3, 1114.37, 1080.99, 0, 5, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (776, 4, 'Small Nice House In SF', 0, 0, 0, 60000, 0, -2723.45, 722.819, 41.265, 0, 0, 0, 0, 0, 22.93, 1403.32, 1084.43, 0, 5, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (777, 4, 'Small House In SF', 0, 0, 0, 30000, 0, -2710.89, 722.817, 39.718, 0, 0, 0, 0, 0, 261.06, 1284.29, 1080.25, 0, 4, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (778, 4, 'Nice looking house at lv', 0, 0, 0, 300000, 0, 1284.86, 2610.72, 10.819, 0, 0, 0, 0, 0, 234.22, 1063.89, 1084.21, 0, 6, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (779, 4, 'Small House In SF', 0, 0, 0, 30000, 0, -2706.75, 722.849, 37.539, 0, 0, 0, 0, 0, 261.06, 1284.29, 1080.25, 0, 4, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (780, 4, 'Small Nice House In SF', 0, 0, 0, 500000, 0, 1271.88, 2564.57, 10.819, 0, 0, 0, 0, 0, 226.3, 1114.37, 1080.99, 0, 5, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (781, 4, 'Small Nice House In SF', 0, 0, 0, 500000, 0, 1269.62, 2554.43, 10.826, 0, 0, 0, 0, 0, 226.3, 1114.37, 1080.99, 0, 5, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (782, 4, 'Normal Size House In SF', 0, 0, 0, 85000, 0, -2686.04, 722.855, 32.225, 0, 0, 0, 0, 0, 2196.84, -1204.23, 1049.02, 0, 6, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (783, 4, 'Small Nice House In SF', 0, 0, 0, 500000, 0, 1273.95, 2522.51, 10.819, 0, 0, 0, 0, 0, 226.3, 1114.37, 1080.99, 0, 5, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (784, 4, 'Small Nice House In SF', 0, 0, 0, 500000, 0, 1316.47, 2524.65, 10.819, 0, 0, 0, 0, 0, 226.3, 1114.37, 1080.99, 0, 5, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (785, 4, 'Small Nice House In SF', 0, 0, 0, 60000, 0, -2678.14, 722.25, 28.596, 0, 0, 0, 0, 0, 22.93, 1403.32, 1084.43, 0, 5, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (786, 4, 'Small House In SF', 0, 0, 0, 30000, 0, -2665.49, 722.244, 27.962, 0, 0, 0, 0, 0, 261.06, 1284.29, 1080.25, 0, 4, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (787, 4, 'Small House In SF', 0, 0, 0, 30000, 0, -2661.59, 722.225, 27.962, 0, 0, 0, 0, 0, 261.06, 1284.29, 1080.25, 0, 4, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (788, 4, 'huge 2 floor nice looking house at LV', 0, 0, 0, 500000, 0, 1503.24, 2567.69, 10.819, 0, 0, 0, 0, 0, 226.3, 1114.37, 1080.99, 0, 5, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (789, 4, 'Apartment 1st Floor In SF', 0, 0, 0, 80000, 0, -2642.08, 728.034, 27.96, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (790, 4, 'Nice looking house at lv', 0, 0, 0, 300000, 0, 1515.71, 2610.19, 11.298, 0, 0, 0, 0, 0, 234.22, 1063.89, 1084.21, 0, 6, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (791, 4, 'Appartment 2nd Floor In SF', 0, 0, 0, 80000, 0, -2640.3, 730.541, 30.075, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (792, 4, 'huge 2 floor nice looking house at LV', 0, 0, 0, 500000, 0, 1513.38, 2565.43, 10.826, 0, 0, 0, 0, 0, 226.3, 1114.37, 1080.99, 0, 5, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (793, 4, 'huge 2 floor nice looking house at LV', 0, 0, 0, 500000, 0, 1551.49, 2567.34, 10.819, 0, 0, 0, 0, 0, 226.3, 1114.37, 1080.99, 0, 5, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (794, 4, 'Nice looking house at lv', 0, 0, 0, 300000, 0, 1554.45, 2610.72, 10.82, 0, 0, 0, 0, 0, 234.22, 1063.89, 1084.21, 0, 6, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (795, 4, 'huge 2 floor nice looking house at LV', 0, 0, 0, 500000, 3500, 1564.61, 2565.43, 10.826, 0, 0, 0, 0, 0, 226.3, 1114.37, 1080.99, 0, 5, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (796, 4, 'huge 2 floor nice looking house at LV', 0, 0, 0, 500000, 0, 1596.39, 2567.69, 10.82, 0, 0, 0, 0, 0, 226.3, 1114.37, 1080.99, 0, 5, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (797, 4, 'Nice looking house at lv', 0, 0, 0, 300000, 0, 1600.59, 2610.03, 10.82, 0, 0, 0, 0, 0, 234.22, 1063.89, 1084.21, 0, 6, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (798, 4, '3 Story Condo In SF', 0, 0, 0, 120000, 0, -2581.51, 719.018, 27.944, 0, 0, 0, 0, 0, 2196.84, -1204.23, 1049.02, 0, 6, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (799, 4, 'Nice looking house at lv', 0, 0, 0, 300000, 0, 1618.8, 2610.03, 10.819, 0, 0, 0, 0, 0, 234.22, 1063.89, 1084.21, 0, 6, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (800, 4, 'Nice looking house at lv', 0, 0, 0, 300000, 0, 1638.13, 2610.72, 10.82, 0, 0, 0, 0, 0, 234.22, 1063.89, 1084.21, 0, 6, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (801, 4, 'huge 2 floor nice looking house at LV', 0, 0, 0, 500000, 0, 1623.47, 2567.34, 10.819, 0, 0, 0, 0, 0, 226.3, 1114.37, 1080.99, 0, 5, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (802, 4, '3 Story Condo In SF', 0, 0, 0, 120000, 0, -2553.97, 719.023, 27.945, 0, 0, 0, 0, 0, 2196.84, -1204.23, 1049.02, 0, 6, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (803, 4, 'Nice looking house at lv', 0, 0, 0, 300000, 0, 1646.59, 2569.58, 10.819, 0, 0, 0, 0, 0, 234.22, 1063.89, 1084.21, 0, 6, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (804, 4, 'Nice looking house at lv', 0, 0, 0, 300000, 0, 1665.56, 2569.42, 11.298, 0, 0, 0, 0, 0, 234.22, 1063.89, 1084.21, 0, 6, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (805, 4, 'Nice looking house at lv', 0, 0, 0, 300000, 0, 1666.95, 2610.19, 11.298, 0, 0, 0, 0, 0, 234.22, 1063.89, 1084.21, 0, 6, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (806, 4, '3 Story Condo In SF', 0, 0, 0, 120000, 0, -2541.27, 733.097, 28.057, 0, 0, 0, 0, 0, 2196.84, -1204.23, 1049.02, 0, 6, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (807, 4, '3 Story Condo In SF', 0, 0, 0, 120000, 0, -2541.24, 750.917, 33.704, 0, 0, 0, 0, 0, 2196.84, -1204.23, 1049.02, 0, 6, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (808, 4, 'huge 2 floor nice looking house at LV', 0, 0, 0, 500000, 0, 1678.4, 2690.76, 10.819, 0, 0, 0, 0, 0, 226.3, 1114.37, 1080.99, 0, 5, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (809, 4, '3 Story Condo In SF', 0, 0, 0, 120000, 0, -2541.24, 768.138, 40.022, 0, 0, 0, 0, 0, 2196.84, -1204.23, 1049.02, 0, 6, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (810, 4, 'huge 2 floor nice looking house at LV', 0, 0, 0, 500000, 0, 1703.71, 2688.86, 10.826, 0, 0, 0, 0, 0, 226.3, 1114.37, 1080.99, 0, 5, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (811, 4, '3 Story Condo In SF', 0, 0, 0, 120000, 0, -2541.24, 785.26, 46.232, 0, 0, 0, 0, 0, 2196.84, -1204.23, 1049.02, 0, 6, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (812, 4, 'huge 2 floor nice looking house at LV', 0, 0, 0, 500000, 0, 1735.65, 2691.11, 10.82, 0, 0, 0, 0, 0, 226.3, 1114.37, 1080.99, 0, 5, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (813, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 1754.52, 2736.02, 14.272, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (814, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 1752.26, 2744.57, 14.273, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (815, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 1751.45, 2747.35, 14.273, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (816, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 1749.2, 2755.91, 14.273, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (817, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 1748.42, 2758.69, 14.273, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (818, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 1745.39, 2770.03, 14.273, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (819, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 1746.17, 2767.25, 14.273, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (820, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 1743.04, 2778.56, 14.273, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (821, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 1746.04, 2767.21, 11.343, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (822, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 1745.41, 2770.03, 11.343, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (823, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 1748.48, 2758.71, 11.343, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (824, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 1749.19, 2755.9, 11.343, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (825, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 1751.46, 2747.35, 11.343, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (826, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 1752.22, 2744.56, 11.343, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (827, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 1780.81, 2744.57, 11.343, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (828, 4, '6 Story Condo In SF', 0, 0, 0, 450000, 0, -2513.52, 830.841, 49.997, 0, 0, 0, 0, 0, 226.3, 1114.37, 1080.99, 0, 5, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (829, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 1781.51, 2747.37, 11.343, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (830, 4, 'lv project apartment small', 0, 0, 0, 40000, 500, 1778.54, 2736.01, 14.273, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (831, 4, '6 Story Condo In SF', 0, 0, 0, 450000, 0, -2513.5, 849.084, 52.695, 0, 0, 0, 0, 0, 226.3, 1114.37, 1080.99, 0, 5, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (832, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 1781.55, 2747.36, 14.273, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (833, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 1780.82, 2744.56, 14.273, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (834, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 1784.62, 2758.69, 14.273, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (835, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 1783.78, 2755.92, 14.273, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (836, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 1787.64, 2770.04, 14.273, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (837, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 1786.83, 2767.26, 14.273, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (838, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 1789.83, 2778.61, 14.273, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (839, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 1787.57, 2770.06, 11.343, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (840, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 1786.89, 2767.25, 11.343, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (841, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 1784.6, 2758.7, 11.343, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (842, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 1783.84, 2755.91, 11.343, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (843, 4, '6 Story Condo In SF', 0, 0, 0, 450000, 0, -2513.53, 867.493, 57.742, 0, 0, 0, 0, 0, 226.3, 1114.37, 1080.99, 0, 5, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (844, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 1789.89, 2778.6, 11.35, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (845, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 1800.78, 2775.68, 11.343, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (846, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 1797.69, 2764.35, 14.273, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (847, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 1798.47, 2767.14, 14.273, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (848, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 1794.71, 2753, 14.273, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (849, 4, '6 Story Condo In SF', 0, 0, 0, 450000, 0, -2513.51, 885.731, 62.777, 0, 0, 0, 0, 0, 226.3, 1114.37, 1080.99, 0, 5, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (850, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 1795.38, 2755.81, 14.273, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (851, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 1791.66, 2741.66, 14.273, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (852, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 1792.42, 2744.45, 14.273, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (853, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 1789.49, 2733.08, 14.273, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (854, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 1792.54, 2744.42, 11.343, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (855, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 1791.73, 2741.64, 11.343, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (856, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 1795.42, 2755.8, 11.343, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (857, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 1794.75, 2752.99, 11.343, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (858, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 1798.54, 2767.12, 11.343, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (859, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 1797.78, 2764.33, 11.343, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (860, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 1800.77, 2775.68, 14.273, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (861, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 1736.36, 2803.59, 11.343, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (862, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 1737.11, 2800.79, 11.343, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (863, 4, 'Appartment 1st Floor In SF', 0, 0, 0, 80000, 0, -2538.73, 830.008, 49.984, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (864, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 1739.42, 2792.25, 14.273, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (865, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 1737.08, 2800.78, 14.273, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (866, 4, 'Appartment 2nd Floor In SF', 0, 0, 0, 80000, 0, -2540.51, 831.946, 52.093, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (867, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 1736.35, 2803.58, 14.273, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (868, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 1734.17, 2812.16, 11.343, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (869, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 1733.35, 2814.93, 11.343, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (870, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 1734.05, 2812.13, 14.273, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (871, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 1733.39, 2814.94, 14.273, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (872, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 1730.34, 2826.28, 14.273, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (873, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 1731, 2823.47, 14.273, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (874, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 1728.09, 2834.84, 14.273, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (875, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 1730.45, 2826.31, 11.343, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (876, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 1731.09, 2823.49, 11.343, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (877, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 1727.94, 2834.8, 11.343, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (878, 4, 'Small House In SF', 0, 0, 0, 30000, 0, -2539.71, 845.176, 50.6, 0, 0, 0, 0, 0, 261.06, 1284.29, 1080.25, 0, 4, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (879, 4, 'Small House In SF', 0, 0, 0, 30000, 0, -2540.67, 855.141, 53.179, 0, 0, 0, 0, 0, 261.06, 1284.29, 1080.25, 0, 4, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (880, 4, 'Small House In SF', 0, 0, 0, 30000, 0, -2540, 874.764, 58.921, 0, 0, 0, 0, 0, 261.06, 1284.29, 1080.25, 0, 4, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (881, 4, 'Normal Size House In SF', 0, 0, 0, 85000, 0, -2540.18, 883.141, 63.25, 0, 0, 0, 0, 0, 2196.84, -1204.23, 1049.02, 0, 6, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (882, 4, 'Small Nice House In SF', 0, 0, 0, 60000, 0, -2537.09, 929.446, 65.016, 0, 0, 0, 0, 0, 22.93, 1403.32, 1084.43, 0, 5, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (883, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 1717.18, 2831.92, 11.35, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (884, 4, 'Small House In SF', 0, 0, 0, 30000, 0, -2542.47, 942.63, 64, 0, 0, 0, 0, 0, 261.058, 1284.29, 1080.25, 0, 4, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (885, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 1717.01, 2831.87, 14.273, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (886, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 1720.19, 2820.57, 14.273, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (887, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 1719.41, 2823.35, 14.273, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (888, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 1723.14, 2809.21, 14.273, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (889, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 1722.45, 2812.01, 14.273, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (890, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 500, 2514.28, -1691.66, 14.045, 0, 0, 0, 0, 0, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (891, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 5000, 2523.27, -1679.38, 15.496, 0, 0, 0, 0, 0, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (892, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 5000, 2524.71, -1658.59, 15.824, 0, 0, 0, 0, 0, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (893, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 1, 2513.72, -1650.24, 14.354, 0, 0, 0, 0, 0, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (894, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 0, 2498.47, -1642.25, 14.112, 0, 0, 0, 0, 0, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (895, 4, 'Ghetto Home LS Medium', 0, 0, 0, 40000, 0, 2486.46, -1644.53, 14.076, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (896, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 0, 2469.45, -1646.35, 13.779, 0, 0, 0, 0, 0, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (897, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 0, 2451.91, -1641.41, 14.064, 0, 0, 0, 0, 0, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (898, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 0, 2413.86, -1646.79, 14.01, 0, 0, 0, 0, 0, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (899, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 1000, 2409.04, -1674.94, 14.375, 0, 0, 0, 0, 0, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (900, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 0, 2393.13, -1646.04, 13.904, 0, 0, 0, 0, 0, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (901, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 1, 2384.7, -1675.83, 15.244, 0, 0, 0, 0, 0, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (902, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 0, 2362.8, -1643.14, 14.35, 0, 0, 0, 0, 0, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (903, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 0, 2368.29, -1675.34, 14.168, 0, 0, 0, 0, 0, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (904, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 0, 2326.89, -1681.94, 14.928, 0, 0, 0, 0, 0, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (905, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 20, 2385.39, -1711.66, 14.241, 0, 0, 0, 0, 0, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (906, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 0, 2326.75, -1716.7, 14.237, 0, 0, 0, 0, 0, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (907, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 0, 2308.89, -1714.34, 14.979, 0, 0, 0, 0, 0, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (908, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 0, 2244.54, -1637.64, 16.236, 0, 0, 0, 0, 0, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (909, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 100, 2257.11, -1643.94, 15.807, 0, 0, 0, 0, 0, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (910, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 0, 2282.29, -1641.21, 15.887, 0, 0, 0, 0, 0, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (911, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 0, 2307, -1679.19, 14.331, 0, 0, 0, 0, 0, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (912, 4, 'normal house at ls', 0, 0, 0, 150000, 0, 1928.69, -1915.91, 15.255, 0, 0, 0, 0, 0, 447, 1397.09, 1084.3, 0, 2, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (913, 4, 'normal house at ls', 0, 0, 0, 150000, 0, 1938.54, -1911.32, 15.255, 0, 0, 0, 0, 0, 447, 1397.09, 1084.3, 0, 2, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (914, 4, 'normal house at ls', 0, 0, 0, 150000, 0, 1913.47, -1911.9, 15.255, 0, 0, 0, 0, 0, 447, 1397.09, 1084.3, 0, 2, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (915, 4, 'normal house at ls', 0, 0, 0, 150000, 0, 1891.92, -1914.4, 15.255, 0, 0, 0, 0, 0, 447, 1397.09, 1084.3, 0, 2, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (916, 4, 'normal house at ls', 0, 0, 0, 150000, 0, 1872.21, -1911.79, 15.255, 0, 0, 0, 0, 0, 447, 1397.09, 1084.3, 0, 2, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (917, 4, 'normal house at ls', 0, 0, 0, 150000, 0, 1854.06, -1914.26, 15.255, 0, 0, 0, 0, 0, 447, 1397.09, 1084.3, 0, 2, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (918, 4, 'LS Project', 0, 0, 0, 4000, 0, 1848.15, -1593.75, 19.124, 0, 0, 0, 0, 0, 244.41, 305.032, 999.148, 0, 1, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (919, 4, 'LS Project', 0, 0, 0, 4000, 0, 1848.15, -1593.6, 23.881, 0, 0, 0, 0, 0, 244.41, 305.032, 999.148, 0, 1, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (920, 4, 'LS Project', 0, 0, 0, 4000, 0, 1986.75, -1604.9, 13.531, 0, 0, 0, 0, 0, 244.41, 305.032, 999.148, 0, 1, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (921, 4, 'LS Project', 0, 0, 0, 4000, 0, 1972.98, -1559.83, 13.637, 0, 0, 0, 0, 0, 244.41, 305.032, 999.148, 0, 1, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (922, 4, 'LS Project', 0, 0, 0, 4000, 0, 1958.67, -1560.35, 13.593, 0, 0, 0, 0, 0, 244.41, 305.032, 999.148, 0, 1, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (923, 4, 'Ghetto Home LS Medium', 0, 0, 0, 40000, 0, 2139.09, -1697.51, 15.085, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (924, 4, 'Ghetto Home LS Medium', 0, 0, 0, 40000, 0, 2155.62, -1698.51, 15.085, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (925, 4, 'Ghetto Home LS Medium', 0, 0, 0, 30000, 0, 2157.15, -1709.21, 15.085, 0, 0, 0, 0, 0, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (926, 4, 'Ghetto Home LS Medium', 0, 0, 0, 30000, 0, 2140.57, -1708.3, 15.085, 0, 0, 0, 0, 0, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (927, 4, 'Ghetto Home LS Medium', 0, 0, 0, 40000, 0, 2151.71, -1717.83, 15.085, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (928, 4, 'Ghetto Home LS Medium', 0, 0, 0, 40000, 0, 2168.08, -1718.82, 15.166, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (929, 4, 'Ghetto Home LS Medium', 0, 0, 0, 30000, 1, 2151.41, -1672.26, 15.085, 0, 0, 0, 0, 0, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (930, 4, 'Ghetto Home LS Medium', 0, 0, 0, 40000, 5000, 2143.65, -1662.86, 15.085, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (932, 4, 'Ghetto Home LS Medium', 0, 0, 0, 60000, 0, 2163.74, -1661.21, 15.085, 0, 0, 0, 0, 0, 22.93, 1403.32, 1084.43, 0, 5, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (933, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 1793.6, 2792.25, 11.35, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (934, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 1796.65, 2803.58, 11.343, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (935, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 1795.83, 2800.81, 11.343, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (936, 4, 'Small House In SF', 0, 0, 0, 30000, 0, -2510.96, 967.654, 73.532, 0, 0, 0, 0, 0, 261.06, 1284.29, 1080.25, 0, 4, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (937, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 1799.57, 2814.95, 11.343, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (938, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 1798.92, 2812.14, 11.343, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (939, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 1802.77, 2826.25, 11.343, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (940, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 1801.9, 2823.49, 11.343, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (941, 4, 'Small House In SF', 0, 0, 0, 30000, 0, -2510.91, 951.258, 65.614, 0, 0, 0, 0, 0, 261.06, 1284.29, 1080.25, 0, 4, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (942, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 1804.86, 2834.85, 11.35, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (943, 4, 'Small House In SF', 0, 0, 0, 30000, 0, -2510.93, 942.703, 65.289, 0, 0, 0, 0, 0, 261.059, 1284.29, 1080.25, 0, 4, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (944, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 1804.96, 2834.82, 14.272, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (945, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 1802.59, 2826.3, 14.273, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (946, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 1802.05, 2823.45, 14.273, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (947, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 1798.8, 2812.17, 14.273, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (948, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 1799.65, 2814.93, 14.273, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (949, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 1795.85, 2800.8, 14.273, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (950, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 1796.69, 2803.57, 14.273, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (951, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 1793.61, 2792.24, 14.273, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (952, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 1815.83, 2831.92, 11.343, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (953, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 1813.61, 2823.34, 11.343, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (954, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 1812.9, 2820.54, 11.343, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (955, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 1815.91, 2831.89, 14.273, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (956, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 1812.82, 2820.57, 14.273, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (957, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 1813.61, 2823.35, 14.273, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (958, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 1809.83, 2809.21, 14.273, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (959, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 1810.53, 2812.02, 14.273, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (960, 4, 'Small House In SF', 0, 0, 0, 30000, 0, -2596.65, 986.268, 78.273, 0, 0, 0, 0, 0, 261.058, 1284.29, 1080.25, 0, 4, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (961, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 1806.77, 2797.88, 14.273, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (962, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 1807.6, 2800.65, 14.273, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (963, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 1804.57, 2789.3, 14.273, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (964, 4, 'Small Nice House In SF', 0, 0, 0, 60000, 0, -2597.34, 979.735, 78.273, 0, 0, 0, 0, 0, 22.93, 1403.32, 1084.43, 0, 5, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (965, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 1806.71, 2797.89, 11.343, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (966, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 1807.36, 2800.71, 11.343, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (967, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 1810.61, 2812, 11.343, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (968, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 1809.62, 2809.27, 11.343, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (969, 4, 'Small House In SF', 0, 0, 0, 30000, 0, -2597.33, 968.947, 78.283, 0, 0, 0, 0, 0, 261.059, 1284.29, 1080.25, 0, 4, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (970, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 1832.49, 2742.93, 11.343, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (971, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 1830.47, 2740.87, 11.343, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (972, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 1840.84, 2751.18, 11.343, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (973, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 1838.67, 2749.27, 11.35, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (974, 4, 'Normal Size House In SF', 0, 0, 0, 85000, 0, -2591.17, 960.758, 78.453, 0, 0, 0, 0, 0, 2196.84, -1204.23, 1049.02, 0, 6, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (975, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 1847.08, 2757.45, 11.343, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (976, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 1849.23, 2759.39, 11.343, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (977, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 1855.38, 2765.76, 14.265, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (978, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 1849.09, 2759.53, 14.273, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (979, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 1847.1, 2757.43, 14.273, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (980, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 1838.73, 2749.2, 14.273, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (981, 4, 'Small House In SF', 0, 0, 0, 30000, 0, -2591.19, 944.325, 70.429, 0, 0, 0, 0, 0, 261.06, 1284.29, 1080.25, 0, 4, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (982, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 1840.84, 2751.19, 14.273, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (983, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 1830.4, 2740.94, 14.273, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (984, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 1832.55, 2742.88, 14.273, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (985, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 1824.22, 2734.61, 14.273, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (986, 4, 'Small House In SF', 0, 0, 0, 30000, 0, -2591.19, 935.902, 68.929, 0, 0, 0, 0, 0, 261.06, 1284.29, 1080.25, 0, 4, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (987, 4, 'Small House In SF', 0, 0, 0, 30000, 0, -2591.19, 927.88, 65.015, 0, 0, 0, 0, 0, 261.06, 1284.29, 1080.25, 0, 4, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (988, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 1855.32, 2765.81, 11.35, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (989, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 1865.45, 2775.7, 11.343, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (990, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 1873.69, 2784.06, 11.343, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (991, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 1871.57, 2782.08, 11.343, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (992, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 1881.95, 2792.39, 11.343, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (993, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 1879.89, 2790.37, 11.343, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (994, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 1890.23, 2800.7, 11.343, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (995, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 1888.22, 2798.63, 11.343, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (996, 4, 'Normal Size House In SF', 0, 0, 0, 85000, 0, -2593.26, 883.218, 63.25, 0, 0, 0, 0, 0, 2196.84, -1204.23, 1049.02, 0, 6, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (997, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 1896.51, 2806.95, 14.265, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (998, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 1888.25, 2798.6, 14.273, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (999, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 1890.32, 2800.62, 14.273, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (1000, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 1879.96, 2790.31, 14.273, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (1001, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 1882.05, 2792.29, 14.273, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (1002, 4, 'Small House In SF', 0, 0, 0, 30000, 0, -2593.42, 874.771, 58.921, 0, 0, 0, 0, 0, 261.06, 1284.29, 1080.25, 0, 4, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (1003, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 1871.62, 2782.03, 14.273, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (1004, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 1873.72, 2784.03, 14.273, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (1005, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 1865.34, 2775.81, 14.273, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (1006, 4, 'Normal Size House In SF', 0, 0, 0, 85000, 0, -2620.21, 883.012, 63.25, 0, 0, 0, 0, 0, 2196.84, -1204.23, 1049.02, 0, 6, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (1007, 4, 'Small House In SF', 0, 0, 0, 30000, 0, -2620.02, 874.734, 58.921, 0, 0, 0, 0, 0, 261.058, 1284.29, 1080.25, 0, 4, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (1008, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 1896.56, 2806.91, 11.35, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (1009, 4, 'Small House In SF', 0, 0, 0, 30000, 0, -2592.74, 854.975, 53.594, 0, 0, 0, 0, 0, 261.06, 1284.29, 1080.25, 0, 4, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (1010, 4, 'Small House In SF', 0, 0, 0, 30000, 0, -2620.7, 855.147, 53.568, 0, 0, 0, 0, 0, 261.06, 1284.29, 1080.25, 0, 4, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (1011, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 1740.86, 2863.24, 11.335, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (1012, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 1738.45, 2861.53, 11.335, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (1013, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 1751.45, 2868.71, 11.335, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (1014, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 1748.67, 2867.7, 11.335, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (1015, 4, 'Small House In SF', 0, 0, 0, 30000, 0, -2593.7, 845.077, 50.593, 0, 0, 0, 0, 0, 261.06, 1284.29, 1080.25, 0, 4, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (1016, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 1763.1, 2871.36, 11.335, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (1017, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 1760.16, 2870.95, 11.335, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (1018, 4, 'Small House In SF', 0, 0, 0, 30000, 0, -2619.74, 845.313, 50.598, 0, 0, 0, 0, 0, 261.06, 1284.29, 1080.25, 0, 4, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (1019, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 1775, 2870.83, 11.335, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (1020, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 1772.1, 2871.36, 11.335, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (1021, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 1786.52, 2867.69, 11.335, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (1022, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 1783.74, 2868.71, 11.335, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (1023, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 1796.8, 2861.61, 11.335, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (1024, 4, 'Appartment 2nd Floor In SF', 0, 0, 0, 80000, 0, -2592.75, 832.837, 52.093, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (1025, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 1794.42, 2863.38, 11.335, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (1026, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 1731.81, 2855.49, 14.265, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (1027, 4, 'Appartment 1st Floor In SF', 0, 0, 0, 80000, 0, -2594.69, 830.981, 49.984, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (1028, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 1740.84, 2863.27, 14.257, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (1029, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 1738.33, 2861.68, 14.265, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (1030, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 1751.44, 2868.75, 14.265, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (1031, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 1748.65, 2867.74, 14.265, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (1032, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 1763.12, 2871.13, 14.265, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (1033, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 1760.17, 2870.92, 14.265, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (1034, 4, 'Appartment 2nd Floor In SF', 0, 0, 0, 80000, 0, -2620.37, 832.857, 52.093, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (1035, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 1775.01, 2870.88, 14.265, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (1036, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 1772.09, 2871.32, 14.265, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (1037, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 1786.45, 2867.55, 14.265, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (1038, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 1783.76, 2868.77, 14.265, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (1039, 4, 'Appartment 1st Floor In SF', 0, 0, 0, 80000, 0, -2618.75, 830.996, 49.984, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (1040, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 1796.79, 2861.59, 14.265, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (1041, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 1794.38, 2863.32, 14.265, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (1042, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 1803.38, 2855.49, 14.265, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (1043, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 1789.43, 2733.1, 11.343, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (1044, 4, 'Small House In SF', 0, 0, 0, 30000, 0, -2621.68, 802.98, 49.984, 0, 0, 0, 0, 0, 261.06, 1284.29, 1080.25, 0, 4, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (1045, 4, 'Small Nice House In SF', 0, 0, 0, 60000, 0, -2621.67, 790.744, 48.581, 0, 0, 0, 0, 0, 22.93, 1403.32, 1084.43, 0, 5, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (1046, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 1803.48, 2855.57, 11.335, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (1047, 4, 'Small House In SF', 0, 0, 0, 30000, 0, -2622.51, 782.552, 44.859, 0, 0, 0, 0, 0, 261.06, 1284.29, 1080.25, 0, 4, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (1048, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 1824.3, 2734.53, 11.343, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (1049, 4, 'Small House In SF', 0, 0, 0, 30000, 0, -2622.49, 766.352, 36.835, 0, 0, 0, 0, 0, 261.06, 1284.29, 1080.25, 0, 4, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (1050, 4, 'Small House In SF', 0, 0, 0, 30000, 0, -2622.51, 758.038, 35.328, 0, 0, 0, 0, 0, 261.06, 1284.29, 1080.25, 0, 4, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (1051, 4, 'Small House In SF', 0, 0, 0, 30000, 0, -2622.52, 749.841, 31.421, 0, 0, 0, 0, 0, 261.06, 1284.29, 1080.25, 0, 4, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (1052, 4, 'Nice looking house at lv', 0, 0, 0, 300000, 0, 1663.17, 2754.14, 10.82, 0, 0, 0, 0, 0, 234.22, 1063.89, 1084.21, 0, 6, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (1053, 4, 'huge 2 floor nice looking house at LV', 0, 0, 0, 500000, 0, 1652.51, 2708.85, 10.826, 0, 0, 0, 0, 0, 226.3, 1114.37, 1080.99, 0, 5, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (1054, 4, 'Appartment 2nd Floor In SF', 0, 0, 0, 80000, 0, -2627.54, 735.333, 30.585, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (1055, 4, 'Nice looking house at lv', 0, 0, 0, 300000, 0, 1643.83, 2753.45, 10.82, 0, 0, 0, 0, 0, 234.22, 1063.89, 1084.21, 0, 6, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (1056, 4, 'huge 2 floor nice looking house at LV', 0, 0, 0, 500000, 0, 1627.15, 2710.76, 10.819, 0, 0, 0, 0, 0, 226.3, 1114.37, 1080.99, 0, 5, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (1057, 4, 'Appartment 1st Floor In SF', 0, 0, 0, 80000, 0, -2625.47, 733.211, 28.011, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (1058, 4, 'huge 2 floor nice looking house at LV', 0, 0, 0, 500000, 0, 1626.81, 2754.14, 10.82, 0, 0, 0, 0, 0, 226.3, 1114.37, 1080.99, 0, 5, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (1059, 4, 'Nice looking house at lv', 0, 0, 0, 300000, 0, 1608.72, 2754.14, 10.82, 0, 0, 0, 0, 0, 234.22, 1063.89, 1084.21, 0, 6, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (1060, 4, 'huge 2 floor nice looking house at LV', 0, 0, 0, 500000, 0, 1601.25, 2708.85, 10.826, 0, 0, 0, 0, 0, 226.3, 1114.37, 1080.99, 0, 5, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (1061, 4, 'huge 2 floor nice looking house at LV', 0, 0, 0, 500000, 0, 1599.56, 2757.6, 10.826, 0, 0, 0, 0, 0, 226.3, 1114.37, 1080.99, 0, 5, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (1062, 4, 'huge 2 floor nice looking house at LV', 0, 0, 0, 500000, 0, 1580.26, 2708.85, 10.826, 0, 0, 0, 0, 0, 226.3, 1114.37, 1080.99, 0, 5, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (1063, 4, '3 Story Condo In SF', 0, 0, 0, 120000, 0, -2594.19, 733.114, 28.138, 0, 0, 0, 0, 0, 2196.84, -1204.23, 1049.02, 0, 6, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (1064, 4, 'huge 2 floor nice looking house at LV', 0, 0, 0, 500000, 0, 1570.28, 2711.11, 10.819, 0, 0, 0, 0, 0, 226.3, 1114.37, 1080.99, 0, 5, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (1065, 4, '3 Story Condo In SF', 0, 0, 0, 120000, 0, -2594.21, 750.871, 33.702, 0, 0, 0, 0, 0, 2196.84, -1204.23, 1049.02, 0, 6, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (1066, 4, 'Nice looking house at lv', 0, 0, 0, 300000, 0, 1565.47, 2757.04, 10.819, 0, 0, 0, 0, 0, 234.22, 1063.89, 1084.21, 0, 6, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (1067, 4, '3 Story Condo In SF', 0, 0, 0, 120000, 0, -2594.2, 768.05, 40.018, 0, 0, 0, 0, 0, 2196.84, -1204.23, 1049.02, 0, 6, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (1068, 4, 'Nice looking house at lv', 0, 0, 0, 300000, 0, 1564.78, 2776.51, 10.819, 0, 0, 0, 0, 0, 234.22, 1063.89, 1084.21, 0, 6, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (1069, 4, '3 Story Condo In SF', 0, 0, 0, 120000, 0, -2594.19, 785.256, 46.236, 0, 0, 0, 0, 0, 2196.84, -1204.23, 1049.02, 0, 6, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (1070, 4, 'Nice looking house at lv', 0, 0, 0, 300000, 0, 1565.47, 2793.43, 10.819, 0, 0, 0, 0, 0, 234.22, 1063.89, 1084.21, 0, 6, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (1071, 4, 'huge 2 floor nice looking house at LV', 0, 0, 0, 500000, 0, 1550.64, 2846.08, 10.826, 0, 0, 0, 0, 0, 226.3, 1114.37, 1080.99, 0, 5, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (1072, 4, 'huge 2 floor nice looking house at LV', 0, 0, 0, 500000, 0, 1575.89, 2844.17, 10.819, 0, 0, 0, 0, 0, 226.3, 1114.37, 1080.99, 0, 5, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (1073, 4, 'huge 2 floor nice looking house at LV', 0, 0, 0, 500000, 0, 1601.78, 2846.08, 10.826, 0, 0, 0, 0, 0, 226.3, 1114.37, 1080.99, 0, 5, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (1074, 4, 'huge 2 floor nice looking house at LV', 0, 0, 0, 500000, 0, 1618.36, 2800.79, 10.82, 0, 0, 0, 0, 0, 226.3, 1114.37, 1080.99, 0, 5, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (1075, 4, 'huge 2 floor nice looking house at LV', 0, 0, 0, 500000, 0, 1622.73, 2846.07, 10.826, 0, 0, 0, 0, 0, 226.3, 1114.37, 1080.99, 0, 5, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (1076, 4, 'huge 2 floor nice looking house at LV', 0, 0, 0, 500000, 0, 1637.79, 2801.48, 10.82, 0, 0, 0, 0, 0, 226.3, 1114.37, 1080.99, 0, 5, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (1077, 4, 'huge 2 floor nice looking house at LV', 0, 0, 0, 500000, 0, 1632.76, 2843.65, 10.82, 0, 0, 0, 0, 0, 226.3, 1114.37, 1080.99, 0, 5, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (1078, 4, 'Nice looking house at lv', 0, 0, 0, 300000, 0, 1654.7, 2800.79, 10.82, 0, 0, 0, 0, 0, 234.22, 1063.89, 1084.21, 0, 6, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (1079, 4, '3 Story Condo In SF', 0, 0, 0, 120000, 0, -2240.52, 753.484, 49.376, 0, 0, 0, 0, 0, 2196.84, -1204.23, 1049.02, 0, 6, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (1080, 4, 'huge 2 floor nice looking house at LV', 0, 0, 0, 500000, 0, 1664.77, 2846.08, 10.826, 0, 0, 0, 0, 0, 226.3, 1114.37, 1080.99, 0, 5, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (1081, 4, 'Nice looking house at lv', 0, 0, 0, 300000, 0, 1672.95, 2800.79, 10.819, 0, 0, 0, 0, 0, 234.22, 1063.89, 1084.21, 0, 6, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (1082, 4, '3 Story Condo In SF', 0, 0, 0, 120000, 0, -2240.53, 786.156, 49.377, 0, 0, 0, 0, 0, 2196.84, -1204.23, 1049.02, 0, 6, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (1083, 4, '3 Story Condo In SF', 0, 0, 0, 120000, 0, -2223.7, 795.716, 49.434, 0, 0, 0, 0, 0, 2196.84, -1204.23, 1049.02, 0, 6, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (1084, 4, 'Nice looking house at lv', 0, 0, 0, 300000, 0, 1555.97, 2658.52, 10.82, 0, 0, 0, 0, 0, 234.22, 1063.89, 1084.21, 0, 6, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (1085, 4, '3 Story Condo In SF', 0, 0, 0, 120000, 0, -2205.42, 795.726, 50.481, 0, 0, 0, 0, 0, 2196.84, -1204.23, 1049.02, 0, 6, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (1086, 4, 'Nice looking house at lv', 0, 0, 0, 300000, 0, 1573, 2657.83, 10.82, 0, 0, 0, 0, 0, 234.22, 1063.89, 1084.21, 0, 6, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (1087, 4, 'Nice looking house at lv', 0, 0, 0, 300000, 0, 1607.61, 2679.27, 10.819, 0, 0, 0, 0, 0, 234.22, 1063.89, 1084.21, 0, 6, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (1088, 4, '3 Story Condo In SF', 0, 0, 0, 120000, 0, -2187.03, 795.701, 57.556, 0, 0, 0, 0, 0, 2196.84, -1204.23, 1049.02, 0, 6, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (1089, 4, 'huge 2 floor nice looking house at LV', 0, 0, 0, 500000, 0, 1611.76, 2648.22, 10.826, 0, 0, 0, 0, 0, 226.3, 1114.37, 1080.99, 0, 5, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (1090, 4, '3 Story Condo In SF', 0, 0, 0, 120000, 0, -2168.82, 795.759, 64.971, 0, 0, 0, 0, 0, 2196.84, -1204.23, 1049.02, 0, 6, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (1091, 4, '3 Story Condo In SF', 0, 0, 0, 120000, 0, -2159.21, 786.088, 69.515, 0, 0, 0, 0, 0, 2196.84, -1204.23, 1049.02, 0, 6, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (1092, 4, '3 Story Condo In SF', 0, 0, 0, 120000, 0, -2159.18, 770.001, 69.515, 0, 0, 0, 0, 0, 2196.84, -1204.23, 1049.02, 0, 6, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (1093, 4, 'Nice looking house at lv', 0, 0, 0, 300000, 0, 1265.47, 2610.03, 10.819, 0, 0, 0, 0, 0, 234.22, 1063.89, 1084.21, 0, 6, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (1094, 4, '3 Story Condo In SF', 0, 0, 0, 120000, 0, -2159.23, 753.492, 69.514, 0, 0, 0, 0, 0, 2196.84, -1204.23, 1049.02, 0, 6, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (1095, 4, 'huge 2 floor nice looking house at LV', 0, 0, 0, 500000, 0, 1225.27, 2584.94, 10.819, 0, 0, 0, 0, 0, 226.3, 1114.37, 1080.99, 0, 5, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (1096, 4, 'huge 2 floor nice looking house at LV', 0, 0, 0, 500000, 0, 1223.02, 2616.85, 10.826, 0, 0, 0, 0, 0, 226.3, 1114.37, 1080.99, 0, 5, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (1097, 4, '3 Story Condo In SF', 0, 0, 0, 120000, 0, -2168.52, 744.007, 64.976, 0, 0, 0, 0, 0, 2196.84, -1204.23, 1049.02, 0, 6, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (1098, 4, '3 Story Condo In SF', 0, 0, 0, 120000, 0, -2186.9, 744.005, 57.555, 0, 0, 0, 0, 0, 2196.84, -1204.23, 1049.02, 0, 6, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (1099, 4, '3 Story Condo In SF', 0, 0, 0, 120000, 0, -2205.46, 744.001, 50.482, 0, 0, 0, 0, 0, 2196.84, -1204.23, 1049.02, 0, 6, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (1100, 4, 'lv project apartment small', 0, 0, 0, 40000, 1, 1731.8, 2855.49, 11.335, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (1101, 4, '3 Story Condo In SF', 0, 0, 0, 120000, 0, -2223.71, 743.986, 49.433, 0, 0, 0, 0, 0, 2196.84, -1204.23, 1049.02, 0, 6, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (1102, 4, '6 Story Condo In SF', 0, 0, 0, 450000, 0, -2238.31, 1154.14, 59.692, 0, 0, 0, 0, 0, 226.3, 1114.37, 1080.99, 0, 5, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (1103, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 2651.65, 1978.84, 10.82, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (1104, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 2649.77, 1978.84, 10.82, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (1105, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 2642.47, 1978.84, 10.82, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (1106, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 2640.47, 1978.84, 10.819, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (1107, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 2633.06, 1978.84, 10.819, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (1108, 4, '5 Story Condo In SF', 0, 0, 0, 500000, 0, -2238.36, 1135.89, 67.256, 0, 0, 0, 0, 0, 226.3, 1114.37, 1080.99, 0, 5, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (1109, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 2631.15, 1978.84, 10.819, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (1110, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 2623.89, 1978.84, 10.819, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (1111, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 2623.87, 1978.84, 14.116, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (1112, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 2631.33, 1978.84, 14.116, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (1113, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 2633.24, 1978.84, 14.116, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (1114, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 2640.46, 1978.84, 14.116, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (1115, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 2642.55, 1978.84, 14.116, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (1116, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 2649.89, 1978.84, 14.116, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (1117, 4, '3 Story Condo In SF', 0, 0, 0, 120000, 0, -2238.36, 1117.54, 74.816, 0, 0, 0, 0, 0, 2196.84, -1204.23, 1049.02, 0, 6, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (1118, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 2651.66, 1978.84, 14.116, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (1119, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 2659.23, 1978.84, 14.116, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (1120, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 2656.5, 1968.82, 14.116, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (1121, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 2654.39, 1968.82, 14.116, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (1122, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 2647.14, 1968.82, 14.116, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (1123, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 2645.16, 1968.82, 14.116, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (1124, 4, '3 Story Condo In SF', 0, 0, 0, 120000, 0, -2239.76, 1070.74, 81.024, 0, 0, 0, 0, 0, 2196.84, -1204.23, 1049.02, 0, 6, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (1125, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 2637.68, 1968.82, 14.116, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (1126, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 2635.83, 1968.82, 14.116, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (1127, 4, '3 Story Condo In SF', 0, 0, 0, 120000, 0, -2239.75, 1054.09, 82.845, 0, 0, 0, 0, 0, 2196.84, -1204.23, 1049.02, 0, 6, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (1128, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 2628.55, 1968.82, 14.116, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (1129, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 2626.6, 1968.82, 14.116, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (1130, 4, '3 Story Condo In SF', 0, 0, 0, 120000, 0, -2239.75, 1037.69, 83.849, 0, 0, 0, 0, 0, 2196.84, -1204.23, 1049.02, 0, 6, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (1131, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 2645.48, 2019.21, 10.816, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (1132, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 2643.76, 2019.21, 10.815, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (1133, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 2636.22, 2019.21, 10.819, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (1134, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 2634.43, 2019.21, 10.819, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (1135, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 2626.93, 2019.21, 10.819, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (1136, 4, '3 Story Condo In SF', 0, 0, 0, 120000, 0, -2230.58, 1028, 83.843, 0, 0, 0, 0, 0, 2196.84, -1204.23, 1049.02, 0, 6, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (1137, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 2625.15, 2019.21, 10.819, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (1138, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 2617.69, 2019.21, 14.116, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (1139, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 2625.16, 2019.21, 14.116, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (1140, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 2627.05, 2019.21, 14.116, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (1141, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 2634.48, 2019.21, 14.116, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (1142, 4, '3 Story Condo In SF', 0, 0, 0, 120000, 0, -2169.63, 1028.01, 80.007, 0, 0, 0, 0, 0, 2196.84, -1204.23, 1049.02, 0, 6, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (1143, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 2636.22, 2019.21, 14.116, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (1144, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 2643.66, 2019.21, 14.116, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (1145, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 2645.58, 2019.21, 14.116, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (1146, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 2653.25, 2019.21, 14.116, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (1147, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 2650.33, 2029.23, 14.116, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (1148, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 2648.34, 2029.23, 14.116, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (1149, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 2640.71, 2029.23, 14.116, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (1150, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 2638.92, 2029.23, 14.116, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (1151, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 2631.54, 2029.23, 14.116, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (1152, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 2629.68, 2029.23, 14.116, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (1153, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 2622.22, 2029.23, 14.116, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (1154, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 2620.37, 2029.23, 14.116, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (1155, 4, '3 Story Condo In SF', 0, 0, 0, 120000, 0, -2160.15, 1030.61, 80.007, 0, 0, 0, 0, 0, 2196.84, -1204.23, 1049.02, 0, 6, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (1156, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 2652.92, 2019.21, 10.818, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (1157, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 2617.54, 2019.21, 10.812, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (1158, 4, '3 Story Condo In SF', 0, 0, 0, 120000, 0, -2160.15, 1048.61, 80.007, 0, 0, 0, 0, 0, 2196.84, -1204.23, 1049.02, 0, 6, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (1159, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 2620.54, 2029.23, 10.82, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (1160, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 2622.34, 2029.23, 10.82, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (1161, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 2629.8, 2029.23, 10.82, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (1162, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 2631.65, 2029.23, 10.82, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (1163, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 2639.07, 2029.23, 10.82, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (1164, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 2641.14, 2029.23, 10.82, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (1165, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 2648.34, 2029.23, 10.82, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (1166, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 2650.35, 2029.23, 10.812, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (1167, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 2623.65, 2039.4, 10.82, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (1168, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 2623.65, 2046.99, 10.812, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (1169, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 2623.65, 2048.81, 10.812, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (1170, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 2623.65, 2056.16, 10.812, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (1171, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 2623.65, 2058.1, 10.812, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (1172, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 2623.65, 2065.44, 10.82, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (1173, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 2623.65, 2067.4, 10.82, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (1174, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 2623.65, 2074.85, 10.812, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (1175, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 2623.65, 2074.93, 14.116, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (1176, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 2623.65, 2067.53, 14.116, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (1177, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 2623.65, 2065.52, 14.116, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (1178, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 2623.65, 2058.19, 14.116, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (1179, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 2623.65, 2056.03, 14.116, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (1180, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 2623.65, 2048.66, 14.116, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (1181, 4, 'Medium house at LV', 0, 0, 0, 150000, 0, 2206.32, 691.25, 11.46, 0, 0, 0, 0, 0, 447, 1397.09, 1084.3, 0, 2, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (1182, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 2623.65, 2046.85, 14.116, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (1183, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 2623.65, 2039.52, 14.116, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (1184, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 2613.64, 2042.23, 14.116, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (1185, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 2613.64, 2044.19, 14.116, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (1186, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 2613.64, 2051.56, 14.116, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (1187, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 2613.64, 2053.43, 14.116, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (1188, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 2613.64, 2060.92, 14.116, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (1189, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 2613.64, 2062.75, 14.116, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (1190, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 2613.64, 2070.18, 14.116, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (1191, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 2613.64, 2072.07, 14.116, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (1192, 4, '3 Story Condo In SF', 0, 0, 0, 120000, 0, -2160.15, 1066.91, 80.007, 0, 0, 0, 0, 0, 2196.84, -1204.23, 1049.02, 0, 6, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (1193, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 2626.63, 1968.82, 10.82, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (1194, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 2628.41, 1968.82, 10.82, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (1195, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 2635.94, 1968.82, 10.82, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (1196, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 2637.82, 1968.82, 10.82, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (1197, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 2645.3, 1968.82, 10.82, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (1198, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 2647.13, 1968.82, 10.82, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (1199, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 2654.56, 1968.82, 10.82, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (1200, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 2656.5, 1968.82, 10.82, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (1201, 4, '3 Story Condo In SF', 0, 0, 0, 120000, 0, -2158.36, 1117.61, 74.486, 0, 0, 0, 0, 0, 2196.84, -1204.23, 1049.02, 0, 6, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (1202, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 2659.19, 1978.84, 10.819, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (1203, 4, '5 Story Condo In SF', 0, 0, 0, 500000, 0, -2158.36, 1148.65, 61.849, 0, 0, 0, 0, 0, 226.3, 1114.37, 1080.99, 0, 5, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (1204, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 2613.64, 2071.98, 10.819, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (1205, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 2613.64, 2070.12, 10.819, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (1206, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 2613.64, 2062.79, 10.812, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (1207, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 2613.63, 2060.82, 10.812, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (1208, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 2613.64, 2053.51, 10.812, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (1209, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 2613.64, 2051.58, 10.819, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (1210, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 2613.64, 2044.13, 10.819, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (1211, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 2613.64, 2042.09, 10.819, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (1212, 4, '6 Story Condo In SF', 0, 0, 0, 450000, 0, -2172.59, 1163.75, 55.726, 0, 0, 0, 0, 0, 226.3, 1114.37, 1080.99, 0, 5, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (1213, 4, '6 Story Condo In SF', 0, 0, 0, 450000, 0, -2189.18, 1163.76, 55.726, 0, 0, 0, 0, 0, 226.3, 1114.37, 1080.99, 0, 5, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (1214, 4, '6 Story Condo In SF', 0, 0, 0, 450000, 0, -2205.8, 1163.76, 55.726, 0, 0, 0, 0, 0, 226.3, 1114.37, 1080.99, 0, 5, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (1215, 4, '6 Story Condo In SF', 0, 0, 0, 450000, 0, -2222.19, 1163.75, 55.726, 0, 0, 0, 0, 0, 226.3, 1114.37, 1080.99, 0, 5, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (1216, 4, '3 Story Condo In SF', 0, 0, 0, 120000, 0, -2102.54, 1159.83, 53.265, 0, 0, 0, 0, 0, 2196.84, -1204.23, 1049.02, 0, 6, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (1217, 4, '3 Story Condo In SF', 0, 0, 0, 120000, 0, -2084.2, 1159.83, 49.953, 0, 0, 0, 0, 0, 2196.84, -1204.23, 1049.02, 0, 6, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (1218, 4, '3 Story Condo In SF', 0, 0, 0, 120000, 0, -2065.95, 1159.84, 46.648, 0, 0, 0, 0, 0, 2196.84, -1204.23, 1049.02, 0, 6, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (1219, 4, 'Nice looking house at lv', 0, 0, 0, 300000, 0, 2013.25, 730.357, 11.453, 0, 0, 0, 0, 0, 234.22, 1063.89, 1084.21, 0, 6, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (1220, 4, 'Medium house at LV', 0, 0, 0, 150000, 0, 2014.13, 775.195, 11.46, 0, 0, 0, 0, 0, 447, 1397.09, 1084.3, 0, 2, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (1221, 4, 'Medium house at LV', 0, 0, 0, 150000, 950, 2042.44, 731.265, 11.46, 0, 0, 0, 0, 0, 447, 1397.09, 1084.3, 0, 2, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (1222, 4, 'Medium house at LV', 0, 0, 0, 150000, 0, 2043.24, 776.096, 11.453, 0, 0, 0, 0, 0, 447, 1397.09, 1084.3, 0, 2, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (1223, 4, '5 Story Condo In SF', 0, 0, 0, 500000, 0, -1761.05, 1174.03, 25.125, 0, 0, 0, 0, 0, 226.3, 1114.37, 1080.99, 0, 5, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (1224, 4, 'Medium house at LV', 0, 0, 0, 150000, 0, 2065.13, 729.822, 11.468, 0, 0, 0, 0, 0, 447, 1397.09, 1084.3, 0, 2, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (1225, 4, '6 Story Condo In SF', 0, 0, 0, 450000, 0, -1742.62, 1174.05, 25.125, 0, 0, 0, 0, 0, 226.3, 1114.37, 1080.99, 0, 5, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (1226, 4, 'Medium house at LV', 0, 0, 0, 150000, 0, 2071.62, 776.637, 11.46, 0, 0, 0, 0, 0, 447, 1397.09, 1084.3, 0, 2, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (1227, 4, 'Medium house at LV', 0, 0, 0, 150000, 1500, 2093.41, 730.359, 11.453, 0, 0, 0, 0, 0, 447, 1397.09, 1084.3, 0, 2, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (1228, 4, 'Medium house at LV', 0, 0, 0, 150000, 0, 2094, 775.195, 11.453, 0, 0, 0, 0, 0, 447, 1397.09, 1084.3, 0, 2, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (1229, 4, '5 Story Condo In SF', 0, 0, 0, 500000, 0, -1728.32, 1158.79, 30.451, 0, 0, 0, 0, 0, 226.3, 1114.37, 1080.99, 0, 5, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (1230, 4, 'Medium house at LV', 0, 0, 0, 150000, 500, 2122.3, 731.264, 11.46, 0, 0, 0, 0, 0, 447, 1397.09, 1084.3, 0, 2, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (1231, 4, 'Medium house at LV', 0, 0, 0, 150000, 0, 2123.41, 776.099, 11.444, 0, 0, 0, 0, 0, 447, 1397.09, 1084.3, 0, 2, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (1232, 4, '5 Story Condo In SF', 0, 0, 0, 500000, 0, -1728.31, 1138.95, 38.568, 0, 0, 0, 0, 0, 226.3, 1114.37, 1080.99, 0, 5, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (1233, 4, 'Medium house at LV', 0, 0, 0, 150000, 0, 2169.36, 772.38, 11.46, 0, 0, 0, 0, 0, 447, 1397.09, 1084.3, 0, 2, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (1234, 4, 'Medium house at LV', 0, 0, 0, 150000, 0, 2177.18, 690.351, 11.46, 0, 0, 0, 0, 0, 447, 1397.09, 1084.3, 0, 2, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (1235, 4, 'Medium house at LV', 0, 0, 0, 150000, 5000, 2228.68, 689.807, 11.46, 0, 0, 0, 0, 0, 447, 1397.09, 1084.3, 0, 2, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (1236, 4, 'Medium house at LV', 0, 0, 0, 150000, 0, 2206, 736.635, 11.468, 0, 0, 0, 0, 0, 447, 1397.09, 1084.3, 0, 2, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (1237, 4, 'Medium house at LV', 0, 0, 0, 150000, 0, 2177.61, 736.101, 11.46, 0, 0, 0, 0, 0, 447, 1397.09, 1084.3, 0, 2, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (1238, 4, 'Medium house at LV', 0, 0, 0, 150000, 0, 2228.25, 735.2, 11.46, 0, 0, 0, 0, 0, 447, 1397.09, 1084.3, 0, 2, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (1239, 4, '4 Story Condo In SF', 0, 0, 0, 400000, 0, -1929.89, 1190.53, 45.445, 0, 0, 0, 0, 0, 234.22, 1063.89, 358.5, 0, 6, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (1240, 4, 'Medium house at LV', 0, 0, 0, 150000, 0, 2256.98, 690.343, 11.453, 0, 0, 0, 0, 0, 447, 1397.09, 1084.3, 0, 2, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (1241, 4, '4 Story Condo In SF', 0, 0, 0, 400000, 0, -1915.56, 1190.54, 45.452, 0, 0, 0, 0, 0, 234.22, 1063.89, 358.5, 0, 6, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (1242, 4, 'Medium house at LV', 0, 0, 0, 150000, 0, 2257.52, 736.108, 11.46, 0, 0, 0, 0, 0, 447, 1397.09, 1084.3, 0, 2, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (1243, 4, '4 Story Condo In SF', 0, 0, 0, 400000, 0, -1872.07, 1146.71, 45.445, 0, 0, 0, 0, 0, 234.22, 1063.89, 358.5, 0, 6, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (1244, 4, 'Medium house at LV', 0, 0, 0, 150000, 0, 2317.15, 690.35, 11.46, 0, 0, 0, 0, 0, 447, 1397.09, 1084.3, 0, 2, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (1245, 4, '4 Story Condo In SF', 0, 0, 0, 400000, 0, -1872.08, 1125.38, 45.445, 0, 0, 0, 0, 0, 234.22, 1063.89, 358.5, 0, 6, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (1246, 4, 'Medium house at LV', 0, 0, 0, 150000, 0, 2346.6, 736.635, 11.468, 0, 0, 0, 0, 0, 447, 1397.09, 1084.3, 0, 2, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (1247, 4, 'Medium house at LV', 0, 0, 0, 150000, 0, 2346.35, 691.255, 11.46, 0, 0, 0, 0, 0, 447, 1397.09, 1084.3, 0, 2, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (1248, 4, 'Medium house at LV', 0, 0, 0, 150000, 0, 2369.11, 735.196, 11.46, 0, 0, 0, 0, 0, 447, 1397.09, 1084.3, 0, 2, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (1249, 4, '5 Story Condo In SF', 0, 0, 0, 500000, 0, -1901.41, 1203.19, 42.377, 0, 0, 0, 0, 0, 226.3, 1114.37, 1080.99, 0, 5, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (1250, 4, 'Medium house at LV', 0, 0, 0, 150000, 0, 2368.45, 689.799, 11.46, 0, 0, 0, 0, 0, 447, 1397.09, 1084.3, 0, 2, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (1251, 4, 'Medium house at LV', 0, 0, 0, 150000, 0, 2398.36, 736.103, 11.46, 0, 0, 0, 0, 0, 447, 1397.09, 1084.3, 0, 2, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (1252, 4, 'Medium house at LV', 0, 0, 0, 150000, 0, 2396.96, 690.342, 11.453, 0, 0, 0, 0, 0, 447, 1397.09, 1084.3, 0, 2, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (1253, 4, 'Medium house at LV', 0, 0, 0, 150000, 0, 2450.27, 742.539, 11.46, 0, 0, 0, 0, 0, 447, 1397.09, 1084.3, 0, 2, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (1254, 4, '5 Story Condo In SF', 0, 0, 0, 500000, 0, -1852.62, 1162.22, 40.942, 0, 0, 0, 0, 0, 226.3, 1114.37, 1080.99, 0, 5, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (1255, 4, 'Medium house at LV', 0, 0, 0, 150000, 0, 2450.81, 714.308, 11.468, 0, 0, 0, 0, 0, 447, 1397.09, 1084.3, 0, 2, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (1256, 4, 'Medium house at LV', 0, 0, 0, 150000, 1, 2449.23, 689.736, 11.46, 0, 0, 0, 0, 0, 447, 1397.09, 1084.3, 0, 2, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (1257, 4, 'Medium house at LV', 0, 0, 0, 150000, 0, 2450.27, 662.638, 11.46, 0, 0, 0, 0, 0, 447, 1397.09, 1084.3, 0, 2, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (1258, 4, 'Medium house at LV', 0, 0, 0, 150000, 0, 2397.68, 656.109, 11.46, 0, 0, 0, 0, 0, 447, 1397.09, 1084.3, 0, 2, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (1259, 4, 'Medium house at LV', 0, 0, 0, 150000, 0, 2368.38, 655.211, 11.46, 0, 0, 0, 0, 0, 447, 1397.09, 1084.3, 0, 2, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (1260, 4, 'Medium house at LV', 0, 0, 0, 150000, 0, 2346.09, 656.638, 11.46, 0, 0, 0, 0, 0, 447, 1397.09, 1084.3, 0, 2, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (1261, 4, 'Medium house at LV', 0, 0, 0, 150000, 100, 2317.81, 656.103, 11.453, 0, 0, 0, 0, 0, 447, 1397.09, 1084.3, 0, 2, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (1262, 4, '4 Story Condo In SF', 0, 0, 0, 400000, 0, -1831.8, 1165.88, 33.682, 0, 0, 0, 0, 0, 234.22, 1063.89, 358.5, 0, 6, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (1263, 4, 'Medium house at LV', 0, 0, 0, 150000, 0, 2258.11, 655.978, 11.453, 0, 0, 0, 0, 0, 447, 1397.09, 1084.3, 0, 2, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (1264, 4, 'Medium house at LV', 0, 0, 0, 150000, 0, 2229.04, 655.184, 11.46, 0, 0, 0, 0, 0, 447, 1397.09, 1084.3, 0, 2, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (1265, 4, 'Medium house at LV', 0, 0, 0, 150000, 0, 2206.41, 656.63, 11.468, 0, 0, 0, 0, 0, 447, 1397.09, 1084.3, 0, 2, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (1266, 4, 'Medium house at LV', 0, 0, 0, 150000, 0, 2178.16, 655.993, 11.46, 0, 0, 0, 0, 0, 447, 1397.09, 1084.3, 0, 2, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (1267, 4, '6 Story Condo In SF', 0, 0, 0, 450000, 0, -1732.27, 1115.52, 45.445, 0, 0, 0, 0, 0, 226.3, 1114.37, 1080.99, 0, 5, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (1268, 4, 'Medium house at LV', 0, 0, 0, 150000, 0, 2123.27, 651.313, 11.46, 0, 0, 0, 0, 0, 447, 1397.09, 1084.3, 0, 2, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (1269, 4, 'Medium house at LV', 0, 0, 0, 150000, 0, 2120.44, 696.091, 11.453, 0, 0, 0, 0, 0, 447, 1397.09, 1084.3, 0, 2, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (1270, 4, '6 Story Condo In SF', 0, 0, 0, 450000, 0, -1776.18, 1115.52, 45.445, 0, 0, 0, 0, 0, 226.3, 1114.37, 1080.99, 0, 5, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (1271, 4, 'Medium house at LV', 0, 0, 0, 150000, 0, 2091.24, 695.188, 11.46, 0, 0, 0, 0, 0, 447, 1397.09, 1084.3, 0, 2, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (1272, 4, 'Medium house at LV', 0, 0, 0, 150000, 0, 2094.12, 650.404, 11.46, 0, 0, 0, 0, 0, 447, 1397.09, 1084.3, 0, 2, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (1273, 4, '4 Story Condo In SF', 0, 0, 0, 400000, 0, -1780.11, 1138.79, 38.585, 0, 0, 0, 0, 0, 234.22, 1063.89, 358.5, 0, 6, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (1274, 4, 'Medium house at LV', 0, 0, 0, 150000, 0, 2068.96, 696.629, 11.468, 0, 0, 0, 0, 0, 447, 1397.09, 1084.3, 0, 2, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (1275, 4, '4 Story Condo In SF', 0, 0, 0, 400000, 0, -1780.12, 1158.76, 30.448, 0, 0, 0, 0, 0, 234.22, 1063.89, 358.5, 0, 6, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (1276, 4, 'Medium house at LV', 0, 0, 0, 150000, 0, 2065.82, 649.861, 11.468, 0, 0, 0, 0, 0, 447, 1397.09, 1084.3, 0, 2, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (1277, 4, 'Medium house at LV', 0, 0, 0, 150000, 0, 2040.71, 696.086, 11.453, 0, 0, 0, 0, 0, 447, 1397.09, 1084.3, 0, 2, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (1278, 4, 'Medium house at LV', 0, 0, 0, 150000, 150, 2043.26, 651.311, 11.46, 0, 0, 0, 0, 0, 447, 1397.09, 1084.3, 0, 2, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (1279, 4, 'Medium house at LV', 0, 0, 0, 150000, 400, 2011.61, 695.187, 11.46, 0, 0, 0, 0, 0, 447, 1397.09, 1084.3, 0, 2, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (1280, 4, 'Medium house at LV', 0, 0, 0, 150000, 150, 2013.96, 650.404, 11.46, 0, 0, 0, 0, 0, 447, 1397.09, 1084.3, 0, 2, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (1281, 4, '4 Story Condo In SF', 0, 0, 0, 400000, 0, -1820.68, 1117.26, 46.445, 0, 0, 0, 0, 0, 234.22, 1063.89, 358.5, 0, 6, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (1282, 4, '4 Story Condo In SF', 0, 0, 0, 400000, 0, -1842.59, 1115.52, 45.445, 0, 0, 0, 0, 0, 234.22, 1063.89, 358.5, 0, 6, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (1283, 4, '4 Story Condo In SF', 0, 0, 0, 400000, 0, -1860.83, 1115.51, 45.445, 0, 0, 0, 0, 0, 234.22, 1063.89, 358.5, 0, 6, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (1284, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 2571.53, 719.404, 14.739, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (1285, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 2579.08, 719.478, 14.739, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (1286, 4, '4 Story Condo In SF', 0, 0, 0, 400000, 0, -2024.5, 1275.93, 7.187, 0, 0, 0, 0, 0, 234.22, 1063.89, 358.5, 0, 6, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (1287, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 2571.53, 713.242, 14.739, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (1288, 4, '4 Story Condo In SF', 0, 0, 0, 400000, 0, -2029, 1275.91, 7.187, 0, 0, 0, 0, 0, 234.22, 1063.89, 358.5, 0, 6, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (1289, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 2579.08, 713.231, 14.739, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (1290, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 2579.08, 719.545, 10.82, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (1291, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 2571.7, 719.518, 10.82, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (1292, 4, '3 Story Condo In SF', 0, 0, 0, 120000, 0, -2043.83, 1261.38, 9.204, 0, 0, 0, 0, 0, 2196.84, -1204.23, 1049.02, 0, 6, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (1293, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 2621.06, 719.538, 10.82, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (1294, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 2613.51, 719.58, 10.82, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (1295, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 2613.51, 719.468, 14.739, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (1296, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 2621.06, 719.403, 14.739, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (1297, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 2613.5, 713.375, 14.739, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (1298, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 2621.06, 713.229, 14.739, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (1299, 4, '3 Story Condo In SF', 0, 0, 0, 120000, 0, -2383.11, 1336.27, 12.805, 0, 0, 0, 0, 0, 2196.84, -1204.23, 1049.02, 0, 6, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (1300, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 2540.06, 719.542, 10.82, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (1301, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 2532.51, 719.578, 10.82, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (1302, 4, '3 Story Condo In SF', 0, 0, 0, 120000, 0, -2351.14, 1336.15, 12.786, 0, 0, 0, 0, 0, 2196.84, -1204.23, 1049.02, 0, 6, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (1303, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 2532.5, 719.581, 14.739, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (1304, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 2540.06, 719.528, 14.739, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (1305, 4, 'lv project apartment small', 0, 0, 0, 40000, 1, 2532.51, 713.226, 14.739, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (1306, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 2540.06, 713.196, 14.739, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (1307, 4, '3 Story Condo In SF', 0, 0, 0, 120000, 0, -2351.15, 1318.02, 16.224, 0, 0, 0, 0, 0, 2196.84, -1204.23, 1049.02, 0, 6, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (1308, 4, '3 Story Condo In SF', 0, 0, 0, 120000, 0, -2351.16, 1299.56, 19.584, 0, 0, 0, 0, 0, 2196.84, -1204.23, 1049.02, 0, 6, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (1309, 4, '3 Story Condo In SF', 0, 0, 0, 120000, 0, -2351.14, 1281.29, 22.944, 0, 0, 0, 0, 0, 2196.84, -1204.23, 1049.02, 0, 6, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (1310, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 2660.08, 719.421, 10.819, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (1311, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 2652.53, 719.485, 10.82, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (1312, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 2652.53, 719.519, 14.739, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (1313, 4, '3 Story Condo In SF', 0, 0, 0, 120000, 0, -2351.15, 1262.93, 26.317, 0, 0, 0, 0, 0, 2196.84, -1204.23, 1049.02, 0, 6, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (1314, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 2660.08, 719.576, 14.739, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (1315, 4, '3 Story Condo In SF', 0, 0, 0, 120000, 0, -2351.15, 1244.69, 29.679, 0, 0, 0, 0, 0, 2196.84, -1204.23, 1049.02, 0, 6, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (1316, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 2652.53, 713.158, 10.82, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (1317, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 2660.08, 713.316, 10.82, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (1318, 4, '3 Story Condo In SF', 0, 0, 0, 120000, 0, -2351.15, 1226.37, 33.03, 0, 0, 0, 0, 0, 2196.84, -1204.23, 1049.02, 0, 6, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (1319, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 2652.53, 713.269, 14.739, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (1320, 4, '3 Story Condo In SF', 0, 0, 0, 120000, 0, -2383.13, 1226.35, 33.042, 0, 0, 0, 0, 0, 2196.84, -1204.23, 1049.02, 0, 6, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (1321, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 2660.08, 713.333, 14.739, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (1322, 4, '3 Story Condo In SF', 0, 0, 0, 120000, 0, -2383.09, 1244.63, 29.686, 0, 0, 0, 0, 0, 2196.84, -1204.23, 1049.02, 0, 6, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (1323, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 2613.51, 713.393, 10.82, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (1324, 4, '3 Story Condo In SF', 0, 0, 0, 120000, 0, -2383.14, 1262.96, 26.329, 0, 0, 0, 0, 0, 2196.84, -1204.23, 1049.02, 0, 6, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (1325, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 2621.06, 713.221, 10.82, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (1326, 4, '3 Story Condo In SF', 0, 0, 0, 120000, 0, -2383.12, 1281.31, 22.963, 0, 0, 0, 0, 0, 2196.84, -1204.23, 1049.02, 0, 6, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (1327, 4, '3 Story Condo In SF', 0, 0, 0, 120000, 0, -2383.14, 1299.71, 19.599, 0, 0, 0, 0, 0, 2196.84, -1204.23, 1049.02, 0, 6, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (1328, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 2579.08, 713.21, 10.82, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (1329, 4, '3 Story Condo In SF', 0, 0, 0, 120000, 0, -2383.12, 1317.95, 16.238, 0, 0, 0, 0, 0, 2196.84, -1204.23, 1049.02, 0, 6, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (1330, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 2571.53, 713.25, 10.82, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (1331, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 2540.06, 713.254, 10.82, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (1332, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 2532.51, 713.365, 10.82, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (1333, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 2526.21, 750.095, 10.82, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (1334, 4, 'Normal Size House In SF', 0, 0, 0, 85000, 0, -2433.08, 1338.17, 8.507, 0, 0, 0, 0, 0, 2196.84, -1204.23, 1049.02, 0, 6, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (1335, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 2526.13, 742.542, 10.82, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (1336, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 2525.97, 742.541, 14.739, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (1337, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 2526.04, 750.094, 14.739, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (1338, 4, 'Small House In SF', 0, 0, 0, 30000, 0, -2433.76, 1318.71, 13.867, 0, 0, 0, 0, 0, 261.06, 1284.29, 1080.25, 0, 4, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (1339, 4, 'Small House In SF', 0, 0, 0, 30000, 0, -2434.02, 1311.06, 15.418, 0, 0, 0, 0, 0, 261.058, 1284.29, 1080.25, 0, 4, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (1340, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 2532.3, 742.541, 10.819, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (1341, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 2532.36, 750.094, 10.819, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (1342, 4, 'Small House In SF', 0, 0, 0, 30000, 0, -2433.07, 1301.14, 18.382, 0, 0, 0, 0, 0, 261.06, 1284.29, 1080.25, 0, 4, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (1343, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 2532.43, 750.091, 14.739, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (1344, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 2532.36, 742.543, 14.739, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (1345, 4, 'Small House In SF', 0, 0, 0, 30000, 0, -2433.77, 1281.61, 23.742, 0, 0, 0, 0, 0, 261.06, 1284.29, 1080.25, 0, 4, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (1346, 4, 'Small House In SF', 0, 0, 0, 30000, 0, -2434, 1274.07, 25.313, 0, 0, 0, 0, 0, 261.06, 1284.29, 1080.25, 0, 4, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (1347, 4, 'Normal Size House In SF', 0, 0, 0, 85000, 0, -2433.06, 1264.12, 28.257, 0, 0, 0, 0, 0, 2196.84, -1204.23, 1049.02, 0, 6, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (1348, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 2660.31, 750.098, 10.819, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (1349, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 2660.28, 742.544, 10.82, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (1350, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 2666.5, 750.095, 10.82, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (1351, 4, 'Small House In SF', 0, 0, 0, 30000, 0, -2433.72, 1244.43, 33.617, 0, 0, 0, 0, 0, 261.058, 1284.29, 1080.25, 0, 4, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (1352, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 2666.5, 742.545, 10.82, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (1353, 4, 'Small House In SF', 0, 0, 0, 30000, 0, -2477.24, 1244.31, 33.609, 0, 0, 0, 0, 0, 261.06, 1284.29, 1080.25, 0, 4, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (1354, 4, 'Normal Size House In SF', 0, 0, 0, 85000, 0, -2477.93, 1264.22, 28.25, 0, 0, 0, 0, 0, 2196.84, -1204.23, 1049.02, 0, 6, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (1355, 4, 'Small House In SF', 0, 0, 0, 30000, 0, -2476.93, 1274.28, 25.314, 0, 0, 0, 0, 0, 261.06, 1284.29, 1080.25, 0, 4, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (1356, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 2660.21, 742.546, 14.739, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (1357, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 2660.38, 750.098, 14.739, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (1358, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 2666.43, 742.544, 14.739, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (1359, 4, 'Small House In SF', 0, 0, 0, 30000, 0, -2477.19, 1281.51, 23.726, 0, 0, 0, 0, 0, 261.06, 1284.29, 1080.25, 0, 4, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (1360, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 2666.53, 750.098, 14.739, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (1361, 4, 'Normal Size House In SF', 0, 0, 0, 85000, 0, -2477.88, 1301.24, 18.375, 0, 0, 0, 0, 0, 2196.84, -1204.23, 1049.02, 0, 6, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (1362, 4, 'Small House In SF', 0, 0, 0, 30000, 0, -2476.93, 1311.23, 15.411, 0, 0, 0, 0, 0, 261.059, 1284.29, 1080.25, 0, 4, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (1363, 4, 'Small House In SF', 0, 0, 0, 30000, 0, -2477.2, 1318.62, 13.851, 0, 0, 0, 0, 0, 261.06, 1284.29, 1080.25, 0, 4, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (1364, 4, 'Normal Size House In SF', 0, 0, 0, 85000, 0, -2477.87, 1338.25, 8.503, 0, 0, 0, 0, 0, 2196.84, -1204.23, 1049.02, 0, 6, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (1365, 4, 'Medium house at LV', 0, 0, 0, 150000, 5000, 1845.44, 661.125, 11.46, 0, 0, 0, 0, 0, 447, 1397.09, 1084.3, 0, 2, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (1366, 4, 'Medium house at LV', 0, 0, 0, 150000, 200, 1844.53, 690.45, 11.453, 0, 0, 0, 0, 0, 447, 1397.09, 1084.3, 0, 2, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (1367, 4, 'Medium house at LV', 0, 0, 0, 150000, 0, 1843.99, 718.83, 11.468, 0, 0, 0, 0, 0, 447, 1397.09, 1084.3, 0, 2, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (1368, 4, 'Medium house at LV', 0, 0, 0, 150000, 0, 1845.44, 741.387, 11.46, 0, 0, 0, 0, 0, 447, 1397.09, 1084.3, 0, 2, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (1369, 4, '3 Story Condo In SF', 0, 0, 0, 120000, 0, -2126.45, 1087.64, 80.007, 0, 0, 0, 0, 0, 2196.84, -1204.23, 1049.02, 0, 6, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (1370, 4, '3 Story Condo In SF', 0, 0, 0, 120000, 0, -2126.5, 1069.28, 80.007, 0, 0, 0, 0, 0, 2196.84, -1204.23, 1049.02, 0, 6, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (1371, 4, '5 Story Condo In SF', 0, 0, 0, 500000, 0, -2126.44, 1050.91, 80.007, 0, 0, 0, 0, 0, 226.3, 1114.37, 1080.99, 0, 5, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (1372, 4, '5 Story Condo In SF', 0, 0, 0, 500000, 0, -2126.47, 1032.53, 80.007, 0, 0, 0, 0, 0, 226.3, 1114.37, 1080.99, 0, 5, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (1373, 4, '3 Story Condo In SF', 0, 0, 0, 120000, 0, -2126.44, 1014.24, 80.007, 0, 0, 0, 0, 0, 2196.84, -1204.23, 1049.02, 0, 6, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (1374, 4, '3 Story Condo In SF', 0, 0, 0, 120000, 0, -2126.47, 996.319, 80.007, 0, 0, 0, 0, 0, 2196.84, -1204.23, 1049.02, 0, 6, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (1375, 4, '3 Story Condo In SF', 0, 0, 0, 120000, 0, -2126.44, 978.493, 80.007, 0, 0, 0, 0, 0, 2196.84, -1204.23, 1049.02, 0, 6, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (1376, 4, '3 Story Condo In SF', 0, 0, 0, 120000, 0, -2129.63, 942.578, 80, 0, 0, 0, 0, 0, 2196.84, -1204.23, 1049.02, 0, 6, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (1377, 4, '2 Story Condo In SF', 0, 0, 0, 120000, 0, -2116.77, 927.828, 86.079, 0, 0, 0, 0, 0, 447, 1397.09, 1084.3, 0, 2, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (1378, 4, '3 Story Condo In SF', 0, 0, 0, 120000, 0, -2129.25, 895.038, 80, 0, 0, 0, 0, 0, 2196.84, -1204.23, 1049.02, 0, 6, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (1379, 4, '3 Story Condo In SF', 0, 0, 0, 120000, 0, -2126.4, 832.815, 69.562, 0, 0, 0, 0, 0, 2196.84, -1204.23, 1049.02, 0, 6, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (1380, 4, '3 Story Condo In SF', 0, 0, 0, 120000, 0, -2126.04, 774.131, 69.562, 0, 0, 0, 0, 0, 2196.84, -1204.23, 1049.02, 0, 6, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (1381, 4, '3 Story Condo In SF', 0, 0, 0, 120000, 0, -2126.08, 755.699, 69.562, 0, 0, 0, 0, 0, 2196.84, -1204.23, 1049.02, 0, 6, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (1382, 4, '3 Story Condo In SF', 0, 0, 0, 120000, 0, -2112.56, 746.415, 69.562, 0, 0, 0, 0, 0, 2196.84, -1204.23, 1049.02, 0, 6, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (1383, 4, '3 Story Condo In SF', 0, 0, 0, 120000, 0, -2094.2, 746.424, 69.562, 0, 0, 0, 0, 0, 2196.84, -1204.23, 1049.02, 0, 6, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (1384, 4, '3 Story Condo In SF', 0, 0, 0, 120000, 0, -2066.57, 746.057, 64.895, 0, 0, 0, 0, 0, 2196.84, -1204.23, 1049.02, 0, 6, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (1385, 4, '3 Story Condo In SF', 0, 0, 0, 120000, 0, -2048.12, 746.08, 57.042, 0, 0, 0, 0, 0, 2196.84, -1204.23, 1049.02, 0, 6, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (1386, 4, '3 Story Condo In SF', 0, 0, 0, 120000, 0, -2029.84, 746.08, 49.464, 0, 0, 0, 0, 0, 2196.84, -1204.23, 1049.02, 0, 6, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (1387, 4, '3 Story Condo In SF', 0, 0, 0, 120000, 0, -2018.55, 748.037, 45.445, 0, 0, 0, 0, 0, 2196.84, -1204.23, 1049.02, 0, 6, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (1388, 4, '3 Story Condo In SF', 0, 0, 0, 120000, 0, -2018.54, 766.224, 45.445, 0, 0, 0, 0, 0, 2196.84, -1204.23, 1049.02, 0, 6, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (1389, 4, '3 Story Condo In SF', 0, 0, 0, 120000, 0, -2018.53, 784.821, 45.445, 0, 0, 0, 0, 0, 2196.84, -1204.23, 1049.02, 0, 6, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (1390, 4, '3 Story Condo In SF', 0, 0, 0, 120000, 0, -2029.85, 796.118, 49.467, 0, 0, 0, 0, 0, 2196.84, -1204.23, 1049.02, 0, 6, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (1391, 4, '3 Story Condo In SF', 0, 0, 0, 120000, 0, -2048.22, 796.097, 57.039, 0, 0, 0, 0, 0, 2196.84, -1204.23, 1049.02, 0, 6, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (1392, 4, '3 Story Condo In SF', 0, 0, 0, 120000, 0, -2066.44, 796.124, 64.924, 0, 0, 0, 0, 0, 2196.84, -1204.23, 1049.02, 0, 6, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (1393, 4, '3 Story Condo In SF', 0, 0, 0, 120000, 0, -2094.25, 795.745, 69.562, 0, 0, 0, 0, 0, 2196.84, -1204.23, 1049.02, 0, 6, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (1394, 4, '3 Story Condo In SF', 0, 0, 0, 120000, 0, -2112.67, 795.752, 69.562, 0, 0, 0, 0, 0, 2196.84, -1204.23, 1049.02, 0, 6, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (1395, 4, '3 Story Condo In SF', 0, 0, 0, 120000, 0, -2112.63, 823.535, 69.562, 0, 0, 0, 0, 0, 2196.84, -1204.23, 1049.02, 0, 6, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (1396, 4, '3 Story Condo In SF', 0, 0, 0, 120000, 0, -2094.18, 823.546, 69.562, 0, 0, 0, 0, 0, 2196.84, -1204.23, 1049.02, 0, 6, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (1397, 4, '3 Story Condo In SF', 0, 0, 0, 120000, 0, -2066.48, 820.686, 64.923, 0, 0, 0, 0, 0, 2196.84, -1204.23, 1049.02, 0, 6, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (1398, 4, '3 Story Condo In SF', 0, 0, 0, 120000, 0, -2048.12, 820.692, 57.026, 0, 0, 0, 0, 0, 2196.84, -1204.23, 1049.02, 0, 6, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (1399, 4, '3 Story Condo In SF', 0, 0, 0, 120000, 0, -2029.81, 820.68, 49.463, 0, 0, 0, 0, 0, 2196.84, -1204.23, 1049.02, 0, 6, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (1400, 4, '3 Story Condo In SF', 0, 0, 0, 120000, 0, -2018.54, 832.175, 45.445, 0, 0, 0, 0, 0, 2196.84, -1204.23, 1049.02, 0, 6, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (1401, 4, '6 Story Condo In SF', 0, 0, 0, 450000, 0, -2018.54, 849.283, 45.448, 0, 0, 0, 0, 0, 226.3, 1114.37, 1080.99, 0, 5, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (1402, 4, '6 Story Condo In SF', 0, 0, 0, 450000, 0, -2018.53, 865.804, 45.444, 0, 0, 0, 0, 0, 226.3, 1114.37, 1080.99, 0, 5, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (1403, 4, '4 Story Condo In SF', 0, 0, 0, 400000, 0, -2016.35, 897.455, 45.445, 0, 0, 0, 0, 0, 234.22, 1063.89, 358.5, 0, 6, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (1404, 4, '3 Story Condo In SF', 0, 0, 0, 120000, 0, -2034.17, 901.466, 50.457, 0, 0, 0, 0, 0, 2196.84, -1204.23, 1049.02, 0, 6, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (1405, 4, 'Large Condo In SF', 0, 0, 0, 420000, 0, -2075.25, 898.651, 64.132, 0, 0, 0, 0, 0, 234.22, 1063.89, 1084.21, 0, 6, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (1406, 4, 'Large Condo In SF', 0, 0, 0, 420000, 0, -2084.75, 898.646, 64.132, 0, 0, 0, 0, 0, 234.22, 1063.89, 1084.21, 0, 6, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (1407, 4, '3 Story Condo In SF', 0, 0, 0, 120000, 0, -2099.46, 897.382, 76.708, 0, 0, 0, 0, 0, 2196.84, -1204.23, 1049.02, 0, 6, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (1408, 4, '5 Story Condo In SF', 0, 0, 0, 500000, 0, -2018.29, 970.072, 45.444, 0, 0, 0, 0, 0, 226.3, 1114.37, 1080.99, 0, 5, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (1409, 4, '3 Story Condo In SF', 0, 0, 0, 120000, 0, -2018.3, 982.705, 47.685, 0, 0, 0, 0, 0, 2196.84, -1204.23, 1049.02, 0, 6, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (1410, 4, '3 Story Condo In SF', 0, 0, 0, 120000, 0, -2018.29, 1000.03, 50.778, 0, 0, 0, 0, 0, 2196.84, -1204.23, 1049.02, 0, 6, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (1411, 4, '3 Story Condo In SF', 0, 0, 0, 120000, 0, -2018.3, 1016.93, 53.866, 0, 0, 0, 0, 0, 2196.84, -1204.23, 1049.02, 0, 6, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (1412, 4, 'Medium house at LV', 0, 0, 0, 150000, 0, 984.466, 2343.69, 11.468, 0, 0, 0, 0, 0, 447, 1397.09, 1084.3, 0, 2, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (1413, 4, 'Medium house at LV', 0, 0, 0, 150000, 0, 985.477, 2314.3, 11.46, 0, 0, 0, 0, 0, 447, 1397.09, 1084.3, 0, 2, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (1414, 4, 'Medium house at LV', 0, 0, 0, 150000, 0, 986.487, 2271.25, 11.46, 0, 0, 0, 0, 0, 447, 1397.09, 1084.3, 0, 2, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (1415, 4, 'Medium house at LV', 0, 0, 0, 150000, 1, 956.897, 2270.27, 11.468, 0, 0, 0, 0, 0, 447, 1397.09, 1084.3, 0, 2, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (1416, 4, 'Medium house at LV', 0, 0, 0, 150000, 0, 1030.81, 2028.11, 11.468, 0, 0, 0, 0, 0, 447, 1397.09, 1084.3, 0, 2, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (1417, 4, 'Medium house at LV', 0, 0, 0, 150000, 0, 1029.36, 2005.64, 11.46, 0, 0, 0, 0, 0, 447, 1397.09, 1084.3, 0, 2, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (1418, 4, 'Medium house at LV', 0, 0, 0, 150000, 0, 985.411, 2000.59, 11.46, 0, 0, 0, 0, 0, 447, 1397.09, 1084.3, 0, 2, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (1419, 4, 'Medium house at LV', 0, 0, 0, 150000, 0, 984.508, 2030.18, 11.468, 0, 0, 0, 0, 0, 447, 1397.09, 1084.3, 0, 2, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (1420, 4, 'Small House In SF', 0, 0, 0, 30000, 0, -2905.21, 1154.89, 13.663, 0, 0, 0, 0, 0, 261.058, 1284.29, 1080.25, 0, 4, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (1421, 4, 'Small House In SF', 0, 0, 0, 30000, 0, -2905.16, 1165.04, 13.663, 0, 0, 0, 0, 0, 261.058, 1284.29, 1080.25, 0, 4, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (1422, 4, 'Medium house at LV', 0, 0, 0, 150000, 0, 1030.27, 1976.01, 11.468, 0, 0, 0, 0, 0, 447, 1397.09, 1084.3, 0, 2, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (1423, 4, 'Small House In SF', 0, 0, 0, 30000, 0, -2905.25, 1171.55, 13.663, 0, 0, 0, 0, 0, 261.058, 1284.29, 1080.25, 0, 4, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (1424, 4, 'Small House In SF', 0, 0, 0, 30000, 0, -2905.09, 1178.76, 13.663, 0, 0, 0, 0, 0, 261.058, 1284.29, 1080.25, 0, 4, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (1425, 4, 'Medium house at LV', 0, 0, 0, 150000, 0, 983.971, 1978.2, 11.468, 0, 0, 0, 0, 0, 447, 1397.09, 1084.3, 0, 2, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (1426, 4, 'Medium house at LV', 0, 0, 0, 150000, 0, 984.703, 1930.83, 11.468, 0, 0, 0, 0, 0, 447, 1397.09, 1084.3, 0, 2, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (1427, 4, 'Medium house at LV', 0, 0, 0, 150000, 0, 1030.81, 1928.11, 11.468, 0, 0, 0, 0, 0, 447, 1397.09, 1084.3, 0, 2, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (1428, 4, 'Small Nice House In SF', 0, 0, 0, 60000, 0, -2904.7, 1118.82, 27.07, 0, 0, 0, 0, 0, 22.93, 1403.32, 1084.43, 0, 5, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (1429, 4, 'Medium house at LV', 0, 0, 0, 150000, 500, 1029.36, 1905.92, 11.46, 0, 0, 0, 0, 0, 447, 1397.09, 1084.3, 0, 2, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (1430, 4, 'Small House In SF', 0, 0, 0, 30000, 0, -2904.8, 1111.52, 27.069, 0, 0, 0, 0, 0, 261.058, 1284.29, 1080.25, 0, 4, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (1431, 4, 'Medium house at LV', 0, 0, 0, 150000, 0, 985.413, 1901.04, 11.46, 0, 0, 0, 0, 0, 447, 1397.09, 1084.3, 0, 2, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (1432, 4, 'Small House In SF', 0, 0, 0, 30000, 0, -2904.47, 1101.11, 27.069, 0, 0, 0, 0, 0, 261.058, 1284.29, 1080.25, 0, 4, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (1433, 4, 'Medium house at LV', 0, 0, 0, 150000, 0, 983.971, 1878.94, 11.468, 0, 0, 0, 0, 0, 447, 1397.09, 1084.3, 0, 2, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (1434, 4, 'Medium house at LV', 0, 0, 0, 150000, 0, 1030.37, 1876.35, 11.468, 0, 0, 0, 0, 0, 447, 1397.09, 1084.3, 0, 2, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (1435, 4, 'Medium house at LV', 0, 0, 0, 150000, 0, 1030.81, 1847.93, 11.468, 0, 0, 0, 0, 0, 447, 1397.09, 1084.3, 0, 2, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (1436, 4, 'LS Project', 0, 0, 0, 4000, 1500, 2158.34, -1611.31, 14.35, 0, 0, 0, 0, 0, 244.41, 305.032, 999.148, 0, 1, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (1437, 4, 'LS Project', 0, 0, 0, 4000, 1000, 2129.11, -1663.94, 15.085, 0, 0, 0, 0, 0, 244.41, 305.032, 999.148, 0, 1, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (1438, 4, 'LS Project', 0, 0, 0, 4000, 100, 2141.49, -1652.85, 15.085, 0, 0, 0, 0, 0, 244.41, 305.032, 999.148, 0, 1, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (1439, 4, '*LS Project', 0, 0, 0, 4000, 95, 2172.59, -1615.28, 14.281, 0, 0, 0, 0, 0, 244.41, 305.032, 999.148, 0, 1, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (1440, 4, 'LS Project', 0, 0, 0, 4000, 0, 2179.08, -1600.11, 14.345, 0, 0, 0, 0, 0, 244.41, 305.032, 999.148, 0, 1, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (1441, 4, 'LS Project', 0, 0, 0, 4000, 0, 2165.56, -1590.49, 14.345, 0, 0, 0, 0, 0, 244.41, 305.032, 999.148, 0, 1, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (1442, 4, 'LS Project', 0, 0, 0, 4000, 0, 2151.2, -1598.49, 14.345, 0, 0, 0, 0, 0, 244.41, 305.032, 999.148, 0, 1, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (1443, 4, 'LS Project', 0, 0, 0, 4000, 0, 2150.4, -1583.96, 14.336, 0, 0, 0, 0, 0, 244.41, 305.032, 999.148, 0, 1, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (1444, 4, 'LS Project', 0, 0, 0, 4000, 0, 2136, -1591.98, 14.35, 0, 0, 0, 0, 0, 244.41, 305.032, 999.148, 0, 1, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (1445, 4, 'LS Project', 0, 0, 0, 4000, 0, 2143.29, -1571.2, 14.192, 0, 0, 0, 0, 0, 244.41, 305.032, 999.148, 0, 1, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (1446, 4, 'LS Project', 0, 0, 0, 4000, 0, 2158.51, -1577.71, 14.281, 0, 0, 0, 0, 0, 244.41, 305.032, 999.148, 0, 1, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (1447, 4, 'LS Project', 0, 0, 0, 4000, 0, 2191.91, -1592.97, 14.35, 0, 0, 0, 0, 0, 244.41, 305.032, 999.148, 0, 1, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (1448, 4, 'LS Project', 0, 0, 0, 4000, 0, 2185.31, -1608.14, 14.359, 0, 0, 0, 0, 0, 244.41, 305.032, 999.148, 0, 1, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (1449, 4, 'LS Project', 0, 0, 0, 4000, 0, 2143.12, -1604.72, 14.35, 0, 0, 0, 0, 0, 244.41, 305.032, 999.148, 0, 1, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (1450, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 0, 2068.14, -1588.86, 13.489, 0, 0, 0, 0, 0, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (1451, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 0, 2073.36, -1583.05, 13.472, 0, 0, 0, 0, 0, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (1452, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 0, 2065.33, -1583.36, 13.479, 0, 0, 0, 0, 0, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (1453, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 0, 2076.11, -1588.67, 13.491, 0, 0, 0, 0, 0, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (1454, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 0, 2072.5, -1559.31, 13.409, 0, 0, 0, 0, 0, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (1455, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 0, 2066.81, -1554.09, 13.434, 0, 0, 0, 0, 0, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (1456, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 0, 2066.96, -1562.17, 13.428, 0, 0, 0, 0, 0, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (1457, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 0, 2072.27, -1551.3, 13.423, 0, 0, 0, 0, 0, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (1458, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 250, 1852.3, -2019.63, 13.545, 0, 0, 0, 0, 0, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (1459, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 2000, 1852.33, -2021.36, 13.545, 0, 0, 0, 0, 0, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (1460, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 0, 1857.1, -2035.08, 13.545, 0, 0, 0, 0, 0, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (1461, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 0, 1858.71, -2035.04, 13.545, 0, 0, 0, 0, 0, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (1462, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 0, 1867.87, -2028.42, 13.545, 0, 0, 0, 0, 0, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (1463, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 500, 1864.98, -2021.37, 13.545, 0, 0, 0, 0, 0, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (1464, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 0, 1864.95, -2019.64, 13.545, 0, 0, 0, 0, 0, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (1465, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 50, 1865.96, -2003.88, 13.545, 0, 0, 0, 0, 0, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (1466, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 500, 1867.77, -2003.87, 13.545, 0, 0, 0, 0, 0, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (1467, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 0, 1867.88, -2010.06, 13.545, 0, 0, 0, 0, 0, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (1468, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 0, 1888.93, -2000.94, 13.545, 0, 0, 0, 0, 0, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (1469, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 0, 1877.32, -2001.01, 13.545, 0, 0, 0, 0, 0, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (1470, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 0, 1867.75, -1998.07, 13.545, 0, 0, 0, 0, 0, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (1471, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 0, 1866.01, -1998.09, 13.545, 0, 0, 0, 0, 0, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (1472, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 200, 1867.79, -1985.4, 13.545, 0, 0, 0, 0, 0, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (1473, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 0, 1866, -1985.45, 13.545, 0, 0, 0, 0, 0, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (1474, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 0, 1852.28, -1990.19, 13.545, 0, 0, 0, 0, 0, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (1475, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 449, 1852.33, -1991.81, 13.545, 0, 0, 0, 0, 0, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (1476, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 0, 1858.96, -2001, 13.545, 0, 0, 0, 0, 0, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (1477, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 500, 1849.4, -2010.06, 13.545, 0, 0, 0, 0, 0, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (1478, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 0, 1895.53, -2019.67, 13.545, 0, 0, 0, 0, 0, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (1479, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 0, 1895.53, -2021.36, 13.545, 0, 0, 0, 0, 0, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (1480, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 0, 1898.99, -2037.96, 13.545, 0, 0, 0, 0, 0, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (1481, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 0, 1898.37, -2028.42, 13.545, 0, 0, 0, 0, 0, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (1482, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 0, 1905.98, -2035.08, 13.545, 0, 0, 0, 0, 0, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (1483, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 0, 1907.71, -2035.05, 13.545, 0, 0, 0, 0, 0, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (1484, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 0, 1913.96, -2021.43, 13.545, 0, 0, 0, 0, 0, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (1485, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 450, 1913.95, -2019.65, 13.545, 0, 0, 0, 0, 0, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (1486, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 0, 1901.33, -2019.64, 13.545, 0, 0, 0, 0, 0, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (1487, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 0, 1901.34, -2021.43, 13.545, 0, 0, 0, 0, 0, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (1488, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 0, 1916.9, -2028.42, 13.545, 0, 0, 0, 0, 0, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (1489, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 0, 1919.76, -2021.34, 13.545, 0, 0, 0, 0, 0, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (1490, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 0, 1919.76, -2019.62, 13.545, 0, 0, 0, 0, 0, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (1491, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 0, 1916.9, -2000.38, 13.545, 0, 0, 0, 0, 0, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (1492, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 0, 1916.89, -2010.06, 13.545, 0, 0, 0, 0, 0, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (1493, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 0, 1907.28, -2001.01, 13.545, 0, 0, 0, 0, 0, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (1494, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 730, 1913.95, -1993.45, 13.545, 0, 0, 0, 0, 0, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (1495, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 0, 1913.92, -1991.56, 13.545, 0, 0, 0, 0, 0, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (1496, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 0, 1907.29, -1982.51, 13.545, 0, 0, 0, 0, 0, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (1497, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 5000, 1900.31, -1979.61, 13.545, 0, 0, 0, 0, 0, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (1498, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 0, 1898.66, -1979.62, 13.545, 0, 0, 0, 0, 0, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (1499, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 0, 1916.76, -1982.03, 13.545, 0, 0, 0, 0, 0, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (1500, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 0, 1919.72, -1993.24, 13.545, 0, 0, 0, 0, 0, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (1501, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 0, 1919.72, -1991.62, 13.545, 0, 0, 0, 0, 0, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (1502, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 0, 1900.21, -1985.39, 13.545, 0, 0, 0, 0, 0, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (1503, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 145, 1898.54, -1985.42, 13.545, 0, 0, 0, 0, 0, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (1504, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 0, 1900.25, -1998.04, 13.545, 0, 0, 0, 0, 0, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (1505, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 0, 1898.49, -1998.06, 13.545, 0, 0, 0, 0, 0, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (1506, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 0, 1870.76, -2019.59, 13.545, 0, 0, 0, 0, 0, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (1507, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 0, 1870.76, -2021.39, 13.545, 0, 0, 0, 0, 0, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (1508, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 100, 1868.35, -2037.97, 13.545, 0, 0, 0, 0, 0, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (1509, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 0, 1858.79, -2040.85, 13.545, 0, 0, 0, 0, 0, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (1510, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 0, 1857.02, -2040.85, 13.545, 0, 0, 0, 0, 0, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (1511, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 0, 1906.17, -2040.85, 13.545, 0, 0, 0, 0, 0, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (1512, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 0, 1907.74, -2040.85, 13.545, 0, 0, 0, 0, 0, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (1513, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 0, 1849.99, -2037.92, 13.545, 0, 0, 0, 0, 0, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (1514, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 0, 1849.42, -2028.42, 13.545, 0, 0, 0, 0, 0, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (1515, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 0, 1846.53, -2021.35, 13.545, 0, 0, 0, 0, 0, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (1516, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 0, 1846.53, -2019.77, 13.545, 0, 0, 0, 0, 0, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (1517, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 0, 1849.45, -2001.46, 13.545, 0, 0, 0, 0, 0, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (1518, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 0, 1838.7, -1995.85, 13.545, 0, 0, 0, 0, 0, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (1519, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 0, 1838.7, -1994.18, 13.545, 0, 0, 0, 0, 0, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (1520, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 500, 1846.53, -1991.87, 13.545, 0, 0, 0, 0, 0, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (1521, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 500, 1846.53, -1990.15, 13.545, 0, 0, 0, 0, 0, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (1522, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 0, 1849.35, -1983.11, 13.545, 0, 0, 0, 0, 0, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (1523, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 0, 1858.96, -1982.62, 13.545, 0, 0, 0, 0, 0, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (1524, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 0, 1888.93, -1982.5, 13.545, 0, 0, 0, 0, 0, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (1525, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 0, 1917.35, -2037.98, 13.545, 0, 0, 0, 0, 0, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (1526, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 0, 1835.86, -2005.48, 13.545, 0, 0, 0, 0, 0, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (1527, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 0, 1835.93, -1987.13, 13.545, 0, 0, 0, 0, 0, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (1528, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 0, 1835.24, -1977.53, 13.545, 0, 0, 0, 0, 0, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (1529, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 1000, 1828.37, -1980.44, 13.545, 0, 0, 0, 0, 0, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (1530, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 0, 1826.53, -1980.51, 13.545, 0, 0, 0, 0, 0, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (1531, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 1, 1817.51, -1987.13, 13.553, 0, 0, 0, 0, 0, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (1532, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 0, 1816.89, -1977.5, 13.545, 0, 0, 0, 0, 0, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (1533, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 1, 1826.53, -1974.69, 13.545, 0, 0, 0, 0, 0, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (1534, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 1, 1828.07, -1974.69, 13.545, 0, 0, 0, 0, 0, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (1535, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 0, 1832.9, -1994.11, 13.545, 0, 0, 0, 0, 0, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (1536, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 0, 1820.28, -1995.94, 13.553, 0, 0, 0, 0, 0, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (1537, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 200, 1820.24, -1994.23, 13.553, 0, 0, 0, 0, 0, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (1538, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 0, 1817.43, -2005.49, 13.553, 0, 0, 0, 0, 0, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (1539, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 0, 1814.47, -1995.92, 13.553, 0, 0, 0, 0, 0, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (1540, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 100, 1814.48, -1994.15, 13.553, 0, 0, 0, 0, 0, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (1541, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 0, 1867.74, -1979.65, 13.545, 0, 0, 0, 0, 0, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (1542, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 1000, 1865.92, -1979.65, 13.545, 0, 0, 0, 0, 0, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (1543, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 0, 1877.32, -1982.49, 13.545, 0, 0, 0, 0, 0, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (1544, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 0, 1801.99, -2098.94, 14.02, 0, 0, 0, 0, 0, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (1545, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 0, 1804.19, -2124.9, 13.942, 0, 0, 0, 0, 0, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (1546, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 0, 1781.45, -2101.27, 14.055, 0, 0, 0, 0, 0, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (1547, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 0, 1782.09, -2126.37, 14.067, 0, 0, 0, 0, 0, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (1548, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 0, 1761.17, -2125.45, 14.055, 0, 0, 0, 0, 0, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (1549, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 0, 1762.39, -2101.98, 13.854, 0, 0, 0, 0, 0, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (1550, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 0, 1734.15, -2097.98, 14.036, 0, 0, 0, 0, 0, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (1551, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 0, 1734.62, -2130.35, 14.02, 0, 0, 0, 0, 0, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (1552, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 1000, 1715.06, -2125.45, 14.055, 0, 0, 0, 0, 0, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (1553, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 1000, 1711.67, -2101.24, 14.02, 0, 0, 0, 0, 0, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (1554, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 250, 1695.52, -2125.83, 13.81, 0, 0, 0, 0, 0, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (1555, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 0, 1684.72, -2098.16, 13.833, 0, 0, 0, 0, 0, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (1556, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 0, 1673.68, -2122.46, 14.145, 0, 0, 0, 0, 0, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (1557, 4, 'normal house at ls', 0, 0, 0, 150000, 0, 1616.15, -1897.58, 13.548, 0, 0, 0, 0, 0, 447, 1397.09, 1084.3, 0, 2, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (1558, 4, 'normal house at ls', 0, 0, 0, 150000, 0, 1610.88, -1893.88, 13.545, 0, 0, 0, 0, 0, 447, 1397.09, 1084.3, 0, 2, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (1559, 4, 'normal house at ls', 0, 0, 0, 150000, 0, 1628.69, -1903.36, 13.553, 0, 0, 0, 0, 0, 447, 1397.09, 1084.3, 0, 2, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (1560, 4, 'House Near Vinewood', 0, 0, 0, 150000, 100, 1325.95, -1067.65, 31.554, 0, 0, 0, 0, 0, 447, 1397.09, 1084.3, 0, 2, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (1561, 4, 'House Near Vinewood', 0, 0, 0, 150000, 0, 1326.26, -1090.61, 27.975, 0, 0, 0, 0, 0, 447, 1397.09, 1084.3, 0, 2, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (1562, 4, 'House Near Vinewood', 0, 0, 0, 150000, 0, 1285.27, -1090.28, 28.256, 0, 0, 0, 0, 0, 447, 1397.09, 1084.3, 0, 2, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (1563, 4, 'House Near Vinewood', 0, 0, 0, 150000, 0, 1242.26, -1099.51, 27.975, 0, 0, 0, 0, 0, 447, 1397.09, 1084.3, 0, 2, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (1564, 4, 'House Near Vinewood', 0, 0, 0, 150000, 0, 1241.94, -1076.43, 31.554, 0, 0, 0, 0, 0, 447, 1397.09, 1084.3, 0, 2, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (1565, 4, 'House Near Vinewood', 0, 0, 0, 150000, 0, 1285.26, -1067.31, 31.677, 0, 0, 0, 0, 0, 447, 1397.09, 1084.3, 0, 2, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (1566, 4, 'House near vinewood small LS', 0, 0, 0, 100000, 0, 1189.01, -1018.12, 36.234, 0, 0, 0, 0, 0, 447, 1397.09, 1084.3, 0, 2, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (1567, 4, 'House near vinewood small LS', 0, 0, 0, 100000, 5000, 1196.48, -1016.99, 36.234, 0, 0, 0, 0, 0, 447, 1397.09, 1084.3, 0, 2, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (1568, 4, 'House near vinewood small LS', 0, 0, 0, 100000, 0, 1188.19, -1011.88, 36.226, 0, 0, 0, 0, 0, 447, 1397.09, 1084.3, 0, 2, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (1569, 4, 'House near vinewood small LS', 0, 0, 0, 100000, 0, 1195.68, -1010.91, 36.226, 0, 0, 0, 0, 0, 447, 1397.09, 1084.3, 0, 2, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (1570, 4, 'House near vinewood small LS', 0, 0, 0, 100000, 100, 1188.19, -1011.89, 32.546, 0, 0, 0, 0, 0, 447, 1397.09, 1084.3, 0, 2, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (1571, 4, 'House near vinewood small LS', 0, 0, 0, 100000, 0, 1195.69, -1010.93, 32.553, 0, 0, 0, 0, 0, 447, 1397.09, 1084.3, 0, 2, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (1572, 4, 'House near vinewood small LS', 0, 0, 0, 100000, 100, 1189.01, -1018.09, 32.546, 0, 0, 0, 0, 0, 447, 1397.09, 1084.3, 0, 2, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (1573, 4, 'House near vinewood small LS', 0, 0, 0, 100000, 0, 1196.5, -1017.15, 32.546, 0, 0, 0, 0, 0, 447, 1397.09, 1084.3, 0, 2, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (1574, 4, 'House near vinewood small LS', 0, 0, 0, 100000, 500, 1234.73, -1016.13, 32.604, 0, 0, 0, 0, 0, 447, 1397.09, 1084.3, 0, 2, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (1575, 4, 'House near vinewood small LS', 0, 0, 0, 100000, 50, 1227.25, -1017.18, 32.601, 0, 0, 0, 0, 0, 447, 1397.09, 1084.3, 0, 2, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (1576, 4, 'House near vinewood small LS', 0, 0, 0, 100000, 0, 1233.93, -1010.05, 32.601, 0, 0, 0, 0, 0, 447, 1397.09, 1084.3, 0, 2, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (1577, 4, 'House near vinewood small LS', 0, 0, 0, 100000, 0, 1226.44, -1011.03, 32.601, 0, 0, 0, 0, 0, 447, 1397.09, 1084.3, 0, 2, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (1578, 4, 'House near vinewood small LS', 0, 0, 0, 100000, 1500, 1234.73, -1016.15, 36.335, 0, 0, 0, 0, 0, 447, 1397.09, 1084.3, 0, 2, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (1579, 4, 'House near vinewood small LS', 0, 0, 0, 100000, 0, 1227.25, -1017.18, 36.333, 0, 0, 0, 0, 0, 447, 1397.09, 1084.3, 0, 2, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (1580, 4, 'House near vinewood small LS', 0, 0, 0, 100000, 0, 1233.92, -1009.97, 36.328, 0, 0, 0, 0, 0, 447, 1397.09, 1084.3, 0, 2, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (1581, 4, 'House near vinewood small LS', 0, 0, 0, 100000, 0, 1226.44, -1011.01, 36.327, 0, 0, 0, 0, 0, 447, 1397.09, 1084.3, 0, 2, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (1582, 4, 'House Near Vinewood', 0, 0, 0, 150000, 1, 1127.97, -1021.17, 34.992, 0, 0, 0, 0, 0, 447, 1397.09, 1084.3, 0, 2, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (1583, 4, 'House Near Vinewood', 0, 0, 0, 150000, 0, 1118.05, -1021.17, 34.992, 0, 0, 0, 0, 0, 447, 1397.09, 1084.3, 0, 2, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (1584, 4, 'House Near Vinewood', 0, 0, 0, 150000, 500, 1051.03, -1059.3, 34.796, 0, 0, 0, 0, 0, 447, 1397.09, 1084.3, 0, 2, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (1585, 4, 'House Near Vinewood', 0, 0, 0, 150000, 0, 993.757, -1059.03, 33.699, 0, 0, 0, 0, 0, 447, 1397.09, 1084.3, 0, 2, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (1586, 4, 'Mansion', 0, 0, 0, 5250000, 0, 952.609, -909.104, 45.763, 0, 0, 0, 0, 0, 1298.81, -796.658, 1084.01, 0, 5, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (1587, 4, 'House Near Vinewood', 0, 0, 0, 150000, 100, 1411.1, -920.861, 38.421, 0, 0, 0, 0, 0, 447, 1397.09, 1084.3, 0, 2, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (1588, 4, 'House Near Vinewood', 0, 0, 0, 150000, 0, 1440.67, -926.135, 39.645, 0, 0, 0, 0, 0, 447, 1397.09, 1084.3, 0, 2, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (1589, 4, 'small house at vinewood', 0, 0, 0, 150000, 0, 1421.78, -886.229, 50.686, 0, 0, 0, 0, 0, 295.209, 1472.26, 1080.25, 0, 15, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (1590, 4, 'small house at vinewood', 0, 0, 0, 150000, 0, 1468.54, -906.181, 54.833, 0, 0, 0, 0, 0, 295.209, 1472.26, 1080.25, 0, 15, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (1591, 4, 'house at vinewood', 0, 0, 0, 250000, 0, 1535.72, -885.249, 57.657, 0, 0, 0, 0, 0, 2196.84, -1204.23, 1049.02, 0, 6, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (1592, 4, 'Small House at Vinewood', 0, 0, 0, 400000, 100, 1540.47, -851.437, 64.333, 0, 0, 0, 0, 0, 234.22, 1063.89, 1084.21, 0, 6, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (1593, 4, 'small house at vinewood', 0, 0, 0, 150000, 0, 1535.03, -800.169, 72.847, 0, 0, 0, 0, 0, 295.209, 1472.26, 1080.25, 0, 15, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (1594, 4, 'House', 0, 0, 0, 150000, 0, 1527.88, -772.64, 80.578, 0, 0, 0, 0, 0, 295.209, 1472.26, 1080.25, 0, 15, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (1595, 4, 'House At Vinewood With Swimming Pool', 0, 0, 0, 550000, 0, 1442.68, -628.83, 95.718, 0, 0, 0, 0, 0, 226.3, 1114.37, 1080.99, 0, 5, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (1596, 4, 'Fancy Mansion with swimming pool', 0, 0, 0, 550000, 1500, 1331.99, -633.546, 109.134, 0, 0, 0, 0, 0, 226.3, 1114.37, 1080.99, 0, 5, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (1597, 4, 'House at Vinewood', 0, 0, 0, 400000, 0, 1094.99, -647.906, 113.648, 0, 0, 0, 0, 0, 234.22, 1063.89, 1084.21, 0, 6, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (1598, 4, 'House At Vinewood without swimming pool', 0, 0, 0, 400000, 0, 1045.16, -642.94, 120.111, 0, 0, 0, 0, 0, 234.22, 1063.89, 1084.21, 0, 6, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (1599, 4, 'House At Vinewood With Swimming Pool', 0, 0, 0, 550000, 0, 897.927, -677.106, 116.888, 0, 0, 0, 0, 0, 226.3, 1114.37, 1080.99, 0, 5, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (1600, 4, 'small house at vinewood', 0, 0, 0, 150000, 0, 946.304, -710.692, 122.619, 0, 0, 0, 0, 0, 295.209, 1472.26, 1080.25, 0, 15, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (1601, 4, 'house at vinewood', 0, 0, 0, 250000, 0, 867.491, -717.575, 105.679, 0, 0, 0, 0, 0, 2196.84, -1204.23, 1049.02, 0, 6, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (1602, 4, 'house at vinewood', 0, 0, 0, 250000, 0, 847.994, -745.513, 94.969, 0, 0, 0, 0, 0, 2196.84, -1204.23, 1049.02, 0, 6, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (1603, 4, 'House At Vinewood without swimming pool', 0, 0, 0, 400000, 500, 891.145, -783.174, 101.313, 0, 0, 0, 0, 0, 234.22, 1063.89, 1084.21, 0, 6, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (1604, 4, 'House At Vinewood without swimming pool', 0, 0, 0, 400000, 1, 808.26, -759.379, 76.527, 0, 0, 0, 0, 0, 234.22, 1063.89, 1084.21, 0, 6, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (1605, 4, 'house at vinewood', 0, 0, 0, 250000, 0, 785.955, -828.577, 70.289, 0, 0, 0, 0, 0, 2196.84, -1204.23, 1049.02, 0, 6, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (1606, 4, 'House At Vinewood With Swimming Pool', 0, 0, 0, 550000, 0, 497.367, -1095.07, 82.359, 0, 0, 0, 0, 0, 226.3, 1114.37, 1080.99, 0, 5, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (1607, 4, 'House at Vinewood', 0, 0, 0, 550000, 0, 416.769, -1154.12, 76.68, 0, 0, 0, 0, 0, 226.3, 1114.37, 1080.99, 0, 5, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (1608, 4, 'House At Vinewood without swimming pool', 0, 0, 0, 400000, 1000, 352.325, -1198, 76.513, 0, 0, 0, 0, 0, 234.22, 1063.89, 1084.21, 0, 6, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (1609, 4, 'house at vinewood', 0, 0, 0, 250000, 0, 355.071, -1281.19, 53.701, 0, 0, 0, 0, 0, 2196.84, -1204.23, 1049.02, 0, 6, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (1610, 4, 'small house at vinewood', 0, 0, 0, 150000, 0, 228.05, -1405.49, 51.609, 0, 0, 0, 0, 0, 295.209, 1472.26, 1080.25, 0, 15, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (1611, 4, 'House At Vinewood without swimming pool', 0, 0, 0, 400000, 0, 470.756, -1163.56, 67.217, 0, 0, 0, 0, 0, 234.22, 1063.89, 1084.21, 0, 6, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (1612, 4, 'small house at vinewood', 0, 0, 0, 150000, 0, 558.763, -1161.09, 54.429, 0, 0, 0, 0, 0, 295.209, 1472.26, 1080.25, 0, 15, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (1613, 4, 'house at vinewood', 0, 0, 0, 250000, 0, 552.94, -1200.28, 44.831, 0, 0, 0, 0, 0, 2196.84, -1204.23, 1049.02, 0, 6, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (1614, 4, 'small house at vinewood', 0, 0, 0, 150000, 0, 432.028, -1253.96, 51.58, 0, 0, 0, 0, 0, 295.209, 1472.26, 1080.25, 0, 15, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (1615, 4, 'House At Vinewood With Swimming Pool', 0, 0, 0, 550000, 0, 612.169, -1085.92, 58.826, 0, 0, 0, 0, 0, 226.3, 1114.37, 1080.99, 0, 5, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (1616, 4, 'House At Vinewood without swimming pool', 0, 0, 0, 400000, 0, 559.125, -1076.41, 72.916, 0, 0, 0, 0, 0, 234.22, 1063.89, 1084.21, 0, 6, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (1617, 4, 'small house at vinewood', 0, 0, 0, 150000, 5000, 648.309, -1058.72, 52.576, 0, 0, 0, 0, 0, 295.209, 1472.26, 1080.25, 0, 15, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (1618, 4, 'small house at vinewood', 0, 0, 0, 150000, 0, 673.114, -1020.17, 55.756, 0, 0, 0, 0, 0, 295.209, 1472.26, 1080.25, 0, 15, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (1619, 4, 'House At Vinewood With Swimming Pool', 0, 0, 0, 550000, 0, 700.257, -1060.32, 49.421, 0, 0, 0, 0, 0, 226.3, 1114.37, 1080.99, 0, 5, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (1620, 4, 'House At Vinewood without swimming pool', 0, 0, 0, 400000, 0, 724.663, -999.356, 52.734, 0, 0, 0, 0, 0, 234.22, 1063.89, 1084.21, 0, 6, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (1621, 4, 'small house at vinewood', 0, 0, 0, 150000, 0, 923.903, -853.408, 93.456, 0, 0, 0, 0, 0, 295.209, 1472.26, 1080.25, 0, 15, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (1622, 4, 'small house at vinewood', 0, 0, 0, 150000, 100, 937.804, -848.742, 93.577, 0, 0, 0, 0, 0, 295.209, 1472.26, 1080.25, 0, 15, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (1623, 4, 'House At Vinewood without swimming pool', 0, 0, 0, 400000, 0, 910.388, -817.546, 103.125, 0, 0, 0, 0, 0, 234.22, 1063.89, 1084.21, 0, 6, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (1624, 4, 'House At Vinewood without swimming pool', 0, 0, 0, 400000, 0, 977.379, -771.708, 112.202, 0, 0, 0, 0, 0, 234.22, 1063.89, 1084.21, 0, 6, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (1625, 4, 'small house at vinewood', 0, 0, 0, 150000, 0, 1017.02, -763.361, 112.563, 0, 0, 0, 0, 0, 295.209, 1472.26, 1080.25, 0, 15, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (1626, 4, 'small house at vinewood', 0, 0, 0, 150000, 0, 1034.81, -813.184, 101.847, 0, 0, 0, 0, 0, 295.209, 1472.26, 1080.25, 0, 15, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (1627, 4, 'House At Vinewood without swimming Pool', 0, 0, 0, 400000, 1500, 989.736, -828.69, 95.468, 0, 0, 0, 0, 0, 234.22, 1063.89, 1084.21, 0, 6, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (1628, 4, 'UFO House at vinewood', 0, 0, 0, 1000000, 0, 1093.97, -807.13, 107.416, 0, 0, 0, 0, 0, 2196.84, -1204.23, 1049.02, 0, 6, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (1629, 4, 'House At Vinewood without swimming pool', 0, 0, 0, 400000, 0, 835.968, -894.861, 68.763, 0, 0, 0, 0, 0, 234.22, 1063.89, 1084.21, 0, 6, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (1630, 4, 'small house at vinewood', 0, 0, 0, 150000, 0, 827.822, -857.979, 70.33, 0, 0, 0, 0, 0, 295.209, 1472.26, 1080.25, 0, 15, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (1631, 4, 'House At Vinewood without swimming Pool', 0, 0, 0, 400000, 0, 1112.64, -742.109, 100.132, 0, 0, 0, 0, 0, 234.22, 1063.89, 1084.21, 0, 6, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (1632, 4, 'apartment at the beach ls', 0, 0, 0, 100000, 0, 168.136, -1768.4, 4.486, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (1633, 4, 'Beach House', 0, 0, 0, 100000, 0, 192.811, -1769.39, 4.328, 0, 0, 0, 0, 0, 261.058, 1284.29, 1080.25, 0, 4, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (1634, 4, 'house at the beach', 0, 0, 0, 100000, 0, 206.884, -1768.88, 4.368, 0, 0, 0, 0, 0, 261.058, 1284.29, 1080.25, 0, 4, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (1635, 4, 'house at the beach', 0, 0, 0, 100000, 0, 280.894, -1767.07, 4.546, 0, 0, 0, 0, 0, 261.058, 1284.29, 1080.25, 0, 4, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (1636, 4, 'house at the beach', 0, 0, 0, 100000, 500, 295.239, -1764.12, 4.868, 0, 0, 0, 0, 0, 261.058, 1284.29, 1080.25, 0, 4, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (1637, 4, 'house at the beach', 0, 0, 0, 100000, 0, 305.371, -1770.22, 4.538, 0, 0, 0, 0, 0, 261.058, 1284.29, 1080.25, 0, 4, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (1638, 4, 'Beach House with Garage', 0, 0, 0, 400000, 0, 315.877, -1769.43, 4.622, 0, 0, 0, 0, 0, 226.3, 1114.37, 1080.99, 0, 5, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (1639, 4, 'apartment at the beach ls', 0, 0, 0, 100000, 0, 902.924, -1815.45, 13.302, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (1640, 4, 'apartment at the beach ls', 0, 0, 0, 100000, 1, 905.044, -1815.69, 13.3, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (1641, 4, 'apartment at the beach ls', 0, 0, 0, 100000, 500, 908.585, -1816.07, 13.301, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (1642, 4, 'apartment at the beach ls', 0, 0, 0, 100000, 0, 910.78, -1816.31, 13.301, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (1643, 4, 'apartment at the beach ls', 0, 0, 0, 100000, 0, 914.559, -1816.73, 13.307, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (1644, 4, 'apartment at the beach ls', 0, 0, 0, 100000, 0, 916.719, -1816.97, 13.307, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (1645, 4, 'apartment at the beach ls', 0, 0, 0, 100000, 0, 920.341, -1817.37, 13.306, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (1646, 4, 'apartment at the beach ls', 0, 0, 0, 100000, 0, 922.531, -1817.62, 13.306, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (1647, 4, 'apartment at the beach ls', 0, 0, 0, 100000, 0, 926.278, -1818.04, 13.324, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (1648, 4, 'apartment at the beach ls', 0, 0, 0, 100000, 0, 928.375, -1818.28, 13.321, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (1649, 4, 'apartment at the beach ls', 0, 0, 0, 100000, 0, 931.923, -1818.69, 13.321, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (1650, 4, 'apartment at the beach ls', 0, 0, 0, 100000, 0, 934.049, -1818.93, 13.319, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (1651, 4, 'apartment at the beach ls', 0, 0, 0, 100000, 0, 961.132, -1823.96, 13.326, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (1652, 4, 'apartment at the beach ls', 0, 0, 0, 100000, 0, 963.249, -1824.51, 13.325, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (1653, 4, 'apartment at the beach ls', 0, 0, 0, 100000, 0, 966.735, -1825.36, 13.322, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (1654, 4, 'apartment at the beach ls', 0, 0, 0, 100000, 0, 968.934, -1825.9, 13.323, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (1655, 4, 'apartment at the beach ls', 0, 0, 0, 100000, 0, 972.501, -1826.77, 13.333, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (1656, 4, 'apartment at the beach ls', 0, 0, 0, 100000, 0, 974.557, -1827.28, 13.332, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (1657, 4, 'apartment at the beach ls', 0, 0, 0, 100000, 0, 978.143, -1828.16, 13.329, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (1658, 4, 'apartment at the beach ls', 0, 0, 0, 100000, 0, 980.192, -1828.67, 13.328, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (1659, 4, 'apartment at the beach ls', 0, 0, 0, 100000, 20, 983.918, -1829.58, 13.329, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (1660, 4, 'apartment at the beach ls', 0, 0, 0, 100000, 1000, 985.973, -1830.08, 13.331, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (1661, 4, 'apartment at the beach ls', 0, 0, 0, 100000, 0, 989.481, -1830.95, 13.336, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (1662, 4, 'apartment at the beach ls', 0, 0, 0, 100000, 0, 991.721, -1831.49, 13.34, 0, 0, 0, 0, 0, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (1663, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 1, 2581.51, -969.296, 81.361, 0, 0, 0, 0, 0, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (1664, 4, 'house near the beach', 0, 0, 0, 55000, 0, 655.947, -1635.87, 15.861, 0, 0, 0, 0, 0, 261.058, 1284.29, 1080.25, 0, 4, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (1665, 4, 'house near the beach', 0, 0, 0, 55000, 0, 660.406, -1599.85, 15, 0, 0, 0, 0, 0, 261.058, 1284.29, 1080.25, 0, 4, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (1666, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 0, 2388.42, -1279.65, 25.128, 0, 0, 0, 0, 0, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (1667, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 0, 2387.85, -1328.54, 25.124, 0, 0, 0, 0, 0, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (1668, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 0, 2389.73, -1346.29, 25.076, 0, 0, 0, 0, 0, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (1669, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 1, 2383.53, -1366.2, 24.489, 0, 0, 0, 0, 0, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (1670, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 5000, 2288.22, -1104.66, 38.594, 0, 0, 0, 0, 0, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (1671, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 0, 2249.32, -1060.31, 55.965, 0, 0, 0, 0, 0, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (1672, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 0, 2259.52, -1019, 59.297, 0, 0, 0, 0, 0, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (1673, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 0, 2218.78, -1031.73, 60.263, 0, 0, 0, 0, 0, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (1674, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 0, 2208.02, -1026.56, 61.347, 0, 0, 0, 0, 0, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (1675, 4, 'trailer LS', 0, 0, 0, 2000, 200, 2154.11, -979.905, 63.291, 0, 0, 0, 0, 0, 244.41, 305.032, 999.148, 0, 1, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (1676, 4, 'trailer LS', 0, 0, 0, 2000, 100, 2142.69, -978.153, 61.379, 0, 0, 0, 0, 0, 244.41, 305.032, 999.148, 0, 1, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (1677, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 0, 2139.79, -1008.43, 61.986, 0, 0, 0, 0, 0, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (1678, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 1000, 2108.87, -1000.77, 60.506, 0, 0, 0, 0, 0, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (1679, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 0, 2089.52, -996.244, 53.062, 0, 0, 0, 0, 0, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (1680, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 0, 2073.48, -965.177, 49.388, 0, 0, 0, 0, 0, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (1681, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 0, 2045.18, -965.918, 44.555, 0, 0, 0, 0, 0, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (1682, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 800, 2049.21, -987.278, 44.979, 0, 0, 0, 0, 0, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (1683, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 0, 2044.66, -991.32, 43.234, 0, 0, 0, 0, 0, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (1684, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 1, 2015.59, -977.559, 36.951, 0, 0, 0, 0, 0, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (1685, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 100, 2007.36, -984.58, 34.458, 0, 0, 0, 0, 0, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (1686, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 150, 2000.2, -991.651, 32.131, 0, 0, 0, 0, 0, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (1687, 4, 'trailer LS', 0, 0, 0, 2000, 200, 2131.94, -974.005, 59.784, 0, 0, 0, 0, 0, 244.41, 305.032, 999.148, 0, 1, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (1688, 4, 'trailer LS', 0, 0, 0, 2000, 0, 2122.04, -970.335, 58.207, 0, 0, 0, 0, 0, 244.41, 305.032, 999.148, 0, 1, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (1689, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 0, 2051.26, -954.762, 48.033, 0, 0, 0, 0, 0, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (1690, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 1, 2278.66, -1077.38, 48.24, 0, 0, 0, 0, 0, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (1691, 4, 'trailer LS', 0, 0, 0, 2000, 0, 2355.77, -1058.81, 54.076, 0, 0, 0, 0, 0, 244.41, 305.032, 999.148, 0, 1, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (1692, 4, 'trailer LS', 0, 0, 0, 2000, 0, 2348.01, -1047.59, 53.847, 0, 0, 0, 0, 0, 244.41, 305.032, 999.148, 0, 1, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (1693, 4, 'trailer LS', 0, 0, 0, 2000, 100, 2350.99, -1039.79, 54.333, 0, 0, 0, 0, 0, 244.41, 305.032, 999.148, 0, 1, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (1694, 4, 'trailer LS', 0, 0, 0, 2000, 0, 2355.53, -1038.58, 54.333, 0, 0, 0, 0, 0, 244.41, 305.032, 999.148, 0, 1, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (1695, 4, 'trailer LS', 0, 0, 0, 2000, 250, 2370.25, -1034.55, 54.409, 0, 0, 0, 0, 0, 244.41, 305.032, 999.148, 0, 1, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (1696, 4, 'trailer LS', 0, 0, 0, 2000, 5000, 2362.67, -1046.43, 54.27, 0, 0, 0, 0, 0, 244.41, 305.032, 999.148, 0, 1, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (1697, 4, 'trailer LS', 0, 0, 0, 2000, 0, 2335.19, -1046.01, 52.548, 0, 0, 0, 0, 0, 244.41, 305.032, 999.148, 0, 1, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (1698, 4, 'trailer LS', 0, 0, 0, 2000, 0, 2325.48, -1060.97, 52.465, 0, 0, 0, 0, 0, 244.41, 305.032, 999.148, 0, 1, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (1699, 4, 'trailer LS', 0, 0, 0, 2000, 0, 2330.22, -1060.9, 52.465, 0, 0, 0, 0, 0, 244.41, 305.032, 999.148, 0, 1, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (1700, 4, 'trailer LS', 0, 0, 0, 2000, 0, 2297.73, -1053.08, 49.93, 0, 0, 0, 0, 0, 244.41, 305.032, 999.148, 0, 1, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (1701, 4, 'trailer LS', 0, 0, 0, 2000, 0, 2284.19, -1046.09, 49.887, 0, 0, 0, 0, 0, 244.41, 305.032, 999.148, 0, 1, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (1702, 4, 'trailer LS', 0, 0, 0, 2000, 15, 2319.77, -1053.31, 52.458, 0, 0, 0, 0, 0, 244.41, 305.032, 999.148, 0, 1, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (1703, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 0, 2462.41, -1011.12, 60.111, 0, 0, 0, 0, 0, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (1704, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 350, 2457.77, -1054.54, 59.958, 0, 0, 0, 0, 0, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (1705, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 0, 2491.37, -1012.27, 65.398, 0, 0, 0, 0, 0, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (1706, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 0, 2479.67, -1064.01, 66.998, 0, 0, 0, 0, 0, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (1707, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 0, 2512.8, -1027.16, 70.083, 0, 0, 0, 0, 0, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (1708, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 0, 2526.09, -1060.67, 69.97, 0, 0, 0, 0, 0, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (1709, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 0, 2534.48, -1063.48, 69.565, 0, 0, 0, 0, 0, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (1710, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 0, 2526.9, -1033.52, 69.579, 0, 0, 0, 0, 0, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (1711, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 0, 2470.59, -1105.32, 44.486, 0, 0, 0, 0, 0, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (1712, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 1000, 2457.08, -1102.5, 43.867, 0, 0, 0, 0, 0, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (1713, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 0, 2438.62, -1105.78, 43.081, 0, 0, 0, 0, 0, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (1714, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 0, 2407.91, -1106.97, 40.291, 0, 0, 0, 0, 0, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (1715, 4, 'LS Project', 0, 0, 0, 4000, 0, 2751.49, -1962.88, 13.545, 0, 0, 0, 0, 0, 244.41, 305.032, 999.148, 0, 1, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (1716, 4, 'LS Project', 0, 0, 0, 4000, 0, 2787.07, -1952.57, 13.545, 0, 0, 0, 0, 0, 244.41, 305.032, 999.148, 0, 1, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (1717, 4, 'LS Project', 0, 0, 0, 4000, 0, 2751.5, -1936.56, 13.538, 0, 0, 0, 0, 0, 244.41, 305.032, 999.148, 0, 1, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (1718, 4, 'LS Project', 0, 0, 0, 4000, 0, 2787.07, -1926.17, 13.545, 0, 0, 0, 0, 0, 244.41, 305.032, 999.148, 0, 1, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (1719, 4, 'LS Project', 0, 0, 0, 4000, 0, 2736.65, -1926.18, 13.545, 0, 0, 0, 0, 0, 244.41, 305.032, 999.148, 0, 1, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (1720, 4, 'LS Project', 0, 0, 0, 4000, 0, 2736.65, -1952.58, 13.545, 0, 0, 0, 0, 0, 244.41, 305.032, 999.148, 0, 1, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (1721, 4, 'LS Project', 0, 0, 0, 4000, 0, 2801.92, -1936.32, 13.545, 0, 0, 0, 0, 0, 244.41, 305.032, 999.148, 0, 1, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (1722, 4, 'LS Project', 0, 0, 0, 4000, 0, 2801.92, -1962.9, 13.545, 0, 0, 0, 0, 0, 244.41, 305.032, 999.148, 0, 1, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (1723, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 0, 2696.39, -1990.36, 14.222, 0, 0, 0, 0, 0, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (1724, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 0, 2672.71, -1989.47, 14.324, 0, 0, 0, 0, 0, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (1725, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 0, 2695.24, -2020.55, 14.022, 0, 0, 0, 0, 0, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (1726, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 0, 2673.27, -2020.29, 14.168, 0, 0, 0, 0, 0, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (1727, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 0, 2650.7, -2021.8, 14.175, 0, 0, 0, 0, 0, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (1728, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 100, 2635.61, -2012.93, 14.144, 0, 0, 0, 0, 0, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (1729, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 1000, 2637.01, -1991.77, 14.324, 0, 0, 0, 0, 0, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (1730, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 0, 2652.78, -1989.43, 13.998, 0, 0, 0, 0, 0, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (1731, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 0, 2486.36, -2021.55, 13.998, 0, 0, 0, 0, 0, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (1732, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 0, 2483.52, -1995.34, 13.833, 0, 0, 0, 0, 0, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (1733, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 0, 2465.22, -2020.79, 14.123, 0, 0, 0, 0, 0, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (1734, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 0, 2465.1, -1995.75, 14.019, 0, 0, 0, 0, 0, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (1736, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 0, 2508.32, -1998.36, 13.902, 0, 0, 0, 0, 0, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (1737, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 4000, 2507.84, -2021.05, 14.21, 0, 0, 0, 0, 0, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (1738, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 0, 2522.75, -2019, 14.074, 0, 0, 0, 0, 0, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (1739, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 0, 2524.44, -1998.39, 14.112, 0, 0, 0, 0, 0, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (1740, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 0, 1667.53, -2106.94, 14.071, 0, 0, 0, 0, 0, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (1741, 4, 'house at the beach', 0, 0, 0, 100000, 0, 192.779, -1747.76, 4.302, 0, 0, 0, 0, 0, 261.058, 1284.29, 1080.25, 0, 4, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (1742, 4, 'small house at vinewood', 0, 0, 0, 150000, 2000, 142.5, -1470.27, 25.208, 0, 0, 0, 0, 0, 295.209, 1472.26, 1080.25, 0, 15, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (1743, 4, 'House At Vinewood without swimming pool', 0, 0, 0, 400000, 0, 161.447, -1455.95, 32.844, 0, 0, 0, 0, 0, 234.22, 1063.89, 1084.21, 0, 6, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (1744, 4, 'House Near Vinewood', 0, 0, 0, 150000, 0, 1059.16, -1105.14, 28.045, 0, 0, 0, 0, 0, 447, 1397.09, 1084.3, 0, 2, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (1745, 4, 'House Near Vinewood', 0, 0, 0, 150000, 0, 1103.41, -1092.54, 28.468, 0, 0, 0, 0, 0, 447, 1397.09, 1084.3, 0, 2, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (1746, 4, 'House Near Vinewood', 0, 0, 0, 150000, 0, 1103.4, -1069.59, 31.888, 0, 0, 0, 0, 0, 447, 1397.09, 1084.3, 0, 2, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (1747, 4, 'House Near Vinewood', 0, 0, 0, 150000, 5000, 1142.12, -1092.77, 28.187, 0, 0, 0, 0, 0, 447, 1397.09, 1084.3, 0, 2, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (1748, 4, 'House Near Vinewood', 0, 0, 0, 150000, 0, 1183.47, -1098.93, 28.256, 0, 0, 0, 0, 0, 447, 1397.09, 1084.3, 0, 2, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (1749, 4, 'House Near Vinewood', 0, 0, 0, 150000, 0, 1183.47, -1076.04, 31.677, 0, 0, 0, 0, 0, 447, 1397.09, 1084.3, 0, 2, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (1750, 4, 'House Near Vinewood', 0, 0, 0, 150000, 5000, 1141.81, -1069.99, 31.763, 0, 0, 0, 0, 0, 447, 1397.09, 1084.3, 0, 2, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (1751, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 0, 2582.89, -952.931, 81.388, 0, 0, 0, 0, 0, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (1752, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 0, 2552.05, -958.429, 82.611, 0, 0, 0, 0, 0, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (1753, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 0, 2517.86, -965.392, 82.328, 0, 0, 0, 0, 0, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (1754, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 0, 2499.51, -946.997, 82.47, 0, 0, 0, 0, 0, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (1755, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 0, 2492.1, -965.645, 82.541, 0, 0, 0, 0, 0, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (1756, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 0, 2472.35, -962.043, 80.525, 0, 0, 0, 0, 0, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (1757, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 0, 2454.18, -964.963, 80.069, 0, 0, 0, 0, 0, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (1758, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 0, 2459.37, -947.702, 80.082, 0, 0, 0, 0, 0, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (1759, 4, 'house at the beach', 0, 0, 0, 100000, 500, 992.684, -1817.65, 13.894, 0, 0, 0, 0, 0, 261.058, 1284.29, 1080.25, 0, 4, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (1760, 4, 'house at the beach', 0, 0, 0, 100000, 5000, 980.885, -1814.81, 13.887, 0, 0, 0, 0, 0, 261.058, 1284.29, 1080.25, 0, 4, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (1761, 4, 'house at the beach', 0, 0, 0, 100000, 500, 969.596, -1812.02, 13.883, 0, 0, 0, 0, 0, 261.06, 1284.29, 1080.25, 0, 4, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (1762, 4, 'house at the beach', 0, 0, 0, 100000, 0, 958.072, -1809.17, 13.88, 0, 0, 0, 0, 0, 261.058, 1284.29, 1080.25, 0, 4, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (1763, 4, 'house at the beach', 0, 0, 0, 100000, 1000, 933.647, -1805.2, 13.843, 0, 0, 0, 0, 0, 261.06, 1284.29, 1080.25, 0, 4, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (1764, 4, 'house at the beach', 0, 0, 0, 100000, 900, 921.974, -1803.89, 13.837, 0, 0, 0, 0, 0, 261.06, 1284.29, 1080.25, 0, 4, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (1765, 4, 'house at the beach', 0, 0, 0, 100000, 0, 910.267, -1802.69, 13.8, 0, 0, 0, 0, 0, 261.058, 1284.29, 1080.25, 0, 4, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (1766, 4, 'house at the beach', 0, 0, 0, 100000, 0, 883.241, -1800.39, 13.8, 0, 0, 0, 0, 0, 261.058, 1284.29, 1080.25, 0, 4, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (1767, 4, 'house at the beach', 0, 0, 0, 100000, 0, 866.656, -1798.94, 13.814, 0, 0, 0, 0, 0, 261.058, 1284.29, 1080.25, 0, 4, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (1768, 4, 'Little House at Dillimore', 0, 0, 0, 60000, 0, 795.247, -506.148, 18.01, 0, 0, 0, 0, 0, 2282.9, -1139.99, 1050.89, 0, 11, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (1769, 4, 'Little House at Dillimore', 0, 0, 0, 50000, 0, 818.257, -509.316, 18.01, 0, 0, 0, 0, 0, 261.058, 1284.29, 1080.25, 0, 4, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (1770, 4, 'House at Dillimore', 0, 0, 0, 85000, 0, 768.341, -503.48, 18.01, 0, 0, 0, 0, 0, 327.91, 1477.79, 1084.43, 0, 15, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (1771, 4, 'House at Dillimore', 0, 0, 0, 100000, 0, 743.239, -509.316, 18.01, 0, 0, 0, 0, 0, 327.91, 1477.79, 1084.43, 0, 15, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (1772, 4, 'House at Dillimore', 0, 0, 0, 100000, 150, 745.135, -556.783, 18.01, 0, 0, 0, 0, 0, 327.91, 1477.79, 1084.43, 0, 15, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (1773, 4, 'House at Dillimore', 0, 0, 0, 100000, 0, 766.591, -556.783, 18.01, 0, 0, 0, 0, 0, 327.91, 1477.79, 1084.43, 0, 15, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (1774, 4, 'Little House at Dillimore', 0, 0, 0, 70000, 0, 759.286, -592.028, 18.013, 0, 0, 0, 0, 0, 261.058, 1284.29, 1080.25, 0, 4, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (1775, 4, 'Little House at Dillimore', 0, 0, 0, 70000, 0, 745.674, -591.145, 18.01, 0, 0, 0, 0, 0, 261.058, 1284.29, 1080.25, 0, 4, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (1776, 4, 'Trailer at Blue Berry', 0, 0, 0, 20000, 0, 261.958, -269.976, 1.639, 0, 0, 0, 0, 0, 244.41, 305.032, 999.148, 0, 1, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (1777, 4, 'Trailer at Blue Berry', 0, 0, 0, 20000, 0, 264.514, -288.417, 1.72643, 0, 0, 0, 0, 0, 244.41, 305.032, 999.148, 0, 1, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (1778, 4, 'Trailer at Blue Berry', 0, 0, 0, 20000, 0, 260.596, -302.989, 1.917, 0, 0, 0, 0, 0, 244.41, 305.032, 999.148, 0, 1, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (1779, 4, 'Trailer at Blue Berry', 0, 0, 0, 20000, 0, 253.248, -289.945, 1.70299, 0, 0, 0, 0, 0, 244.41, 305.032, 999.148, 0, 1, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (1780, 4, 'Trailer at Blue Berry', 0, 0, 0, 20000, 0, 255.911, -278.502, 1.656, 0, 0, 0, 0, 0, 244.41, 305.032, 999.148, 0, 1, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (1781, 4, 'Trailer at Blue Berry', 0, 0, 0, 20000, 0, 238.921, -286.288, 1.63268, 0, 0, 0, 0, 0, 244.41, 305.032, 999.148, 0, 1, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (1782, 4, 'Trailer at Blue Berry', 0, 0, 0, 20000, 0, 235.132, -309.456, 1.7108, 0, 0, 0, 0, 0, 244.41, 305.032, 999.148, 0, 1, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (1783, 4, 'Trailer at Blue Berry', 0, 0, 0, 20000, 0, 226.549, -302.812, 1.92618, 0, 0, 0, 0, 0, 244.41, 305.032, 999.148, 0, 1, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (1784, 4, 'Trailer at Blue Berry', 0, 0, 0, 20000, 0, 264.514, -283.665, 1.72643, 0, 0, 0, 0, 0, 244.41, 305.032, 999.148, 0, 1, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (1785, 4, 'Trailer at Blue Berry', 0, 0, 0, 20000, 0, 253.533, -274.545, 1.656, 0, 0, 0, 0, 0, 244.41, 305.032, 999.148, 0, 1, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (1786, 4, 'Trailer at Blue Berry', 0, 0, 0, 20000, 0, 242.013, -298.601, 1.687, 0, 0, 0, 0, 0, 244.41, 305.032, 999.148, 0, 1, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (1787, 4, 'Apartment at Blue Berry', 0, 0, 0, 80000, 0, 178.279, -120.235, 1.54903, 0, 0, 0, 0, 0, 261.059, 1284.29, 1080.25, 0, 4, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (1788, 4, 'Apartment at Blue Berry', 0, 0, 0, 80000, 0, 189.312, -120.229, 1.54846, 0, 0, 0, 0, 0, 261.059, 1284.29, 1080.25, 0, 4, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (1789, 4, 'Apartment at Blue Berry', 0, 0, 0, 80000, 0, 166.299, -120.23, 1.55488, 0, 0, 0, 0, 0, 261.059, 1284.29, 1080.25, 0, 4, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (1790, 4, 'Apartment at Blue Berry', 0, 0, 0, 80000, 0, 201.46, -94.9737, 1.55498, 0, 0, 0, 0, 0, 261.059, 1284.29, 1080.25, 0, 4, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (1791, 4, 'Apartment at Blue Berry', 0, 0, 0, 80000, 0, 160.633, -102.568, 4.89647, 0, 0, 0, 0, 0, 261.059, 1284.29, 1080.25, 0, 4, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (1792, 4, 'Apartment at Blue Berry', 0, 0, 0, 80000, 0, 160.632, -112.595, 4.89647, 0, 0, 0, 0, 0, 261.059, 1284.29, 1080.25, 0, 4, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (1793, 4, 'Apartment at Blue Berry', 0, 0, 0, 80000, 0, 166.187, -118.234, 4.89647, 0, 0, 0, 0, 0, 261.059, 1284.29, 1080.25, 0, 4, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (1794, 4, 'Apartment at Blue Berry', 0, 0, 0, 80000, 0, 178.265, -118.235, 4.89647, 0, 0, 0, 0, 0, 261.059, 1284.29, 1080.25, 0, 4, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (1795, 4, 'Apartment at Blue Berry', 0, 0, 0, 80000, 0, 166.246, -96.9721, 4.89647, 0, 0, 0, 0, 0, 261.059, 1284.29, 1080.25, 0, 4, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (1796, 4, 'Apartment at Blue Berry', 0, 0, 0, 80000, 0, 178.373, -96.973, 4.89647, 0, 0, 0, 0, 0, 261.059, 1284.29, 1080.25, 0, 4, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (1797, 4, 'Apartment at Blue Berry', 0, 0, 0, 80000, 0, 166.389, -94.9725, 1.55484, 0, 0, 0, 0, 0, 261.059, 1284.29, 1080.25, 0, 4, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (1798, 4, 'Apartment at Blue Berry', 0, 0, 0, 80000, 0, 207.073, -112.385, 4.89647, 0, 0, 0, 0, 0, 261.059, 1284.29, 1080.25, 0, 4, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (1799, 4, 'Apartment at Blue Berry', 0, 0, 0, 80000, 0, 201.414, -96.9729, 4.89647, 0, 0, 0, 0, 0, 261.059, 1284.29, 1080.25, 0, 4, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (1800, 4, 'Apartment at Blue Berry', 0, 0, 0, 80000, 0, 189.413, -96.9718, 4.89647, 0, 0, 0, 0, 0, 261.059, 1284.29, 1080.25, 0, 4, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (1801, 4, 'Apartment at Blue Berry', 0, 0, 0, 80000, 0, 201.373, -118.234, 4.89647, 0, 0, 0, 0, 0, 261.059, 1284.29, 1080.25, 0, 4, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (1802, 4, 'Apartment at Blue Berry', 0, 0, 0, 80000, 0, 201.453, -120.234, 1.55143, 0, 0, 0, 0, 0, 261.059, 1284.29, 1080.25, 0, 4, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (1803, 4, 'Apartment at Blue Berry', 0, 0, 0, 80000, 0, 158.641, -112.616, 1.55671, 0, 0, 0, 0, 0, 261.059, 1284.29, 1080.25, 0, 4, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (1804, 4, 'Apartment at Blue Berry', 0, 0, 0, 80000, 0, 209.084, -112.603, 1.55078, 0, 0, 0, 0, 0, 261.059, 1284.29, 1080.25, 0, 4, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (1805, 4, 'House at Blue Berry', 0, 0, 0, 110000, 0, 252.884, -92.418, 3.535, 0, 0, 0, 0, 0, 2282.9, -1139.99, 1050.89, 0, 11, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (1806, 4, 'House at Blue Berry', 0, 0, 0, 110000, 500, 252.886, -121.314, 3.535, 0, 0, 0, 0, 0, 2282.9, -1139.99, 1050.89, 0, 11, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (1807, 4, 'House at Blue Berry', 0, 0, 0, 130000, 0, 267.691, -54.541, 2.776, 0, 0, 0, 0, 0, 2282.9, -1139.99, 1050.89, 0, 11, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (1808, 4, 'House at Blue Berry', 0, 0, 0, 100000, 0, 295.071, -54.545, 2.777, 0, 0, 0, 0, 0, 2282.9, -1139.99, 1050.89, 0, 11, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (1809, 4, 'House at Blue Berry', 0, 0, 0, 100000, 0, 312.721, -92.337, 3.535, 0, 0, 0, 0, 0, 2282.9, -1139.99, 1050.89, 0, 11, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (1810, 4, 'House at Blue Berry', 0, 0, 0, 100000, 0, 312.721, -121.25, 3.535, 0, 0, 0, 0, 0, 2282.9, -1139.99, 1050.89, 0, 11, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (1811, 4, 'Small House near Blue Berry', 0, 0, 0, 40000, 0, 342.625, 62.719, 3.861, 0, 0, 0, 0, 0, 260.769, 1237.26, 1084.25, 0, 9, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (1812, 4, 'Small House near Blue Berry', 0, 0, 0, 60000, 0, 317.737, 54.6055, 3.375, 0, 0, 0, 0, 0, 260.769, 1237.26, 1084.25, 0, 9, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (1813, 4, 'Small House near Blue Berry', 0, 0, 0, 60000, 0, 309.11, 44.4167, 3.08797, 0, 0, 0, 0, 0, 260.769, 1237.26, 1084.25, 0, 9, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (1814, 4, 'Small House near Blue Berry', 0, 0, 0, 60000, 0, 286.063, 41.147, 2.54844, 0, 0, 0, 0, 0, 260.769, 1237.26, 1084.25, 0, 9, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (1815, 4, 'Small House near Blue Berry', 0, 0, 0, 60000, 0, 316.561, 18.2672, 4.51562, 0, 0, 0, 0, 0, 260.769, 1237.26, 1084.25, 0, 9, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (1816, 4, 'Small House near Blue Berry', 0, 0, 0, 60000, 0, 340.197, 33.4515, 6.40556, 0, 0, 0, 0, 0, 260.769, 1237.26, 1084.25, 0, 9, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (1817, 4, 'House At Palomino Creek', 0, 0, 0, 60000, 0, 2323.84, 162.27, 28.44, 0, 0, 0, 0, 0, 2282.9, -1139.99, 1050.89, 0, 11, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (1818, 4, 'House At Palomino Creek', 0, 0, 0, 100000, 0, 2364, 187.283, 28.44, 0, 0, 0, 0, 0, 327.91, 1477.79, 1084.43, 0, 15, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (1819, 4, 'House At Palomino Creek', 0, 0, 0, 100000, 0, 2364, 166.093, 28.44, 0, 0, 0, 0, 0, 327.91, 1477.79, 1084.43, 0, 15, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (1820, 4, 'House At Palomino Creek', 0, 0, 0, 100000, 1, 2323.84, 191.22, 28.44, 0, 0, 0, 0, 0, 327.91, 1477.79, 1084.43, 0, 15, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (1821, 4, 'House At Palomino Creek', 0, 0, 0, 100000, 1000, 2323.84, 136.421, 28.44, 0, 0, 0, 0, 0, 327.91, 1477.79, 1084.43, 0, 15, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (1822, 4, 'House At Palomino Creek', 0, 0, 0, 60000, 1, 2323.84, 116.138, 28.44, 0, 0, 0, 0, 0, 261.058, 1284.29, 1080.25, 0, 4, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (1823, 4, 'House At Palomino Creek', 0, 0, 0, 60000, 0, 2364, 116.125, 28.44, 0, 0, 0, 0, 0, 261.058, 1284.29, 1080.25, 0, 4, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (1824, 4, 'House At Palomino Creek', 0, 0, 0, 60000, 0, 2373.84, 71.079, 28.44, 0, 0, 0, 0, 0, 261.058, 1284.29, 1080.25, 0, 4, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (1825, 4, 'House At Palomino Creek', 0, 0, 0, 60000, 0, 2373.84, 42.277, 28.44, 0, 0, 0, 0, 0, 261.058, 1284.29, 1080.25, 0, 4, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (1826, 4, 'House At Palomino Creek', 0, 0, 0, 60000, 0, 2373.84, 21.978, 28.44, 0, 0, 0, 0, 0, 261.058, 1284.29, 1080.25, 0, 4, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (1827, 4, 'House At Palomino Creek', 0, 0, 0, 60000, 0, 2373.84, -8.649, 28.44, 0, 0, 0, 0, 0, 261.058, 1284.29, 1080.25, 0, 4, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (1828, 4, 'House At Palomino Creek', 0, 0, 0, 60000, 0, 2367.38, -49.125, 28.152, 0, 0, 0, 0, 0, 261.058, 1284.29, 1080.25, 0, 4, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (1829, 4, 'House At Palomino Creek', 0, 0, 0, 100000, 0, 2392.29, -54.964, 28.152, 0, 0, 0, 0, 0, 327.91, 1477.79, 1084.43, 0, 15, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (1830, 4, 'House At Palomino Creek', 0, 0, 0, 100000, 0, 2415.57, -5.701, 27.683, 0, 0, 0, 0, 0, 327.91, 1477.79, 1084.43, 0, 15, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (1831, 4, 'House At Palomino Creek', 0, 0, 0, 60000, 0, 2438.78, -54.964, 28.152, 0, 0, 0, 0, 0, 260.769, 1237.26, 1084.25, 0, 9, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (1832, 4, 'House At Palomino Creek', 0, 0, 0, 60000, 0, 2442.86, -4.038, 27.683, 0, 0, 0, 0, 0, 260.769, 1237.26, 1084.25, 0, 9, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (1833, 4, 'House At Palomino Creek', 0, 0, 0, 60000, 0, 2488.38, 11.762, 28.44, 0, 0, 0, 0, 0, 260.769, 1237.26, 1084.25, 0, 9, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (1834, 4, 'House At Palomino Creek', 0, 0, 0, 60000, 0, 2484.49, -28.392, 28.441, 0, 0, 0, 0, 0, 260.769, 1237.26, 1084.25, 0, 9, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (1835, 4, 'House At Palomino Creek', 0, 0, 0, 85000, 1000, 2513.28, -28.402, 28.44, 0, 0, 0, 0, 0, 260.769, 1237.26, 1084.25, 0, 9, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (1836, 4, 'House At Palomino Creek', 0, 0, 0, 85000, 1000, 2417.01, 17.878, 27.683, 0, 0, 0, 0, 0, 260.769, 1237.26, 1084.25, 0, 9, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (1837, 4, 'House At Palomino Creek', 0, 0, 0, 150000, 0, 2549.23, 25.145, 27.673, 0, 0, 0, 0, 0, 327.91, 1477.79, 1084.43, 0, 15, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (1838, 4, 'House At Palomino Creek', 0, 0, 0, 150000, 0, 2551.22, -5.506, 27.673, 0, 0, 0, 0, 0, 327.91, 1477.79, 1084.43, 0, 15, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (1839, 4, 'House At Palomino Creek', 0, 0, 0, 110000, 0, 2551.22, 57.138, 27.673, 0, 0, 0, 0, 0, 327.91, 1477.79, 1084.43, 0, 15, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (1840, 4, 'House At Palomino Creek', 0, 0, 0, 110000, 0, 2557.01, 87.888, 27.673, 0, 0, 0, 0, 0, 327.91, 1477.79, 1084.43, 0, 15, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (1841, 4, 'House At Palomino Creek', 0, 0, 0, 110000, 5000, 2536.24, 128.985, 27.683, 0, 0, 0, 0, 0, 327.91, 1477.79, 1084.43, 0, 15, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (1842, 4, 'House At Palomino Creek', 0, 0, 0, 110000, 0, 2518.44, 128.987, 27.675, 0, 0, 0, 0, 0, 327.91, 1477.79, 1084.43, 0, 15, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (1843, 4, 'House At Palomino Creek', 0, 0, 0, 90000, 0, 2514.05, 94.389, 27.683, 0, 0, 0, 0, 0, 260.769, 1237.26, 1084.25, 0, 9, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (1844, 4, 'House At Palomino Creek', 0, 0, 0, 150000, 0, 2480.62, 126.994, 27.673, 0, 0, 0, 0, 0, 327.91, 1477.79, 1084.43, 0, 15, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (1845, 4, 'House At Palomino Creek', 0, 0, 0, 150000, 500, 2462.76, 134.778, 27.675, 0, 0, 0, 0, 0, 327.91, 1477.79, 1084.43, 0, 15, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (1846, 4, 'House At Palomino Creek', 0, 0, 0, 150000, 0, 2443.84, 92.263, 28.44, 0, 0, 0, 0, 0, 327.91, 1477.79, 1084.43, 0, 15, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (1847, 4, 'House At Palomino Creek', 0, 0, 0, 80000, 5000, 2481.22, 64.37, 27.683, 0, 0, 0, 0, 0, 260.769, 1237.26, 1084.25, 0, 9, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (1848, 4, 'House At Palomino Creek', 0, 0, 0, 70000, 0, 2479.34, 94.391, 27.683, 0, 0, 0, 0, 0, 260.769, 1237.26, 1084.25, 0, 9, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (1849, 4, 'House At Palomino Creek', 0, 0, 0, 125000, 0, 2439.56, 24.503, 27.683, 0, 0, 0, 0, 0, 327.91, 1477.79, 1084.43, 0, 15, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (1850, 4, 'House At Palomino Creek', 0, 0, 0, 90000, 1, 2448.42, -11.019, 27.683, 0, 0, 0, 0, 0, 260.769, 1237.26, 1084.25, 0, 9, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (1851, 4, 'House At Palomino Creek', 0, 0, 0, 250000, 0, 2415.44, -52.283, 28.153, 0, 0, 0, 0, 0, 261.058, 1284.29, 1080.25, 0, 4, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (1852, 4, 'House At Palomino Creek', 0, 0, 0, 60000, 0, 2398.34, 111.76, 28.44, 0, 0, 0, 0, 0, 261.058, 1284.29, 1080.25, 0, 4, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (1853, 4, 'House At Palomino Creek', 0, 0, 0, 60000, 0, 2269.5, 111.764, 28.44, 0, 0, 0, 0, 0, 261.058, 1284.29, 1080.25, 0, 4, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (1854, 4, 'House At Palomino Creek', 0, 0, 0, 60000, 0, 2249.3, 111.763, 28.44, 0, 0, 0, 0, 0, 261.058, 1284.29, 1080.25, 0, 4, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (1855, 4, 'House At Palomino Creek', 0, 0, 0, 95000, 0, 2203.84, 106.152, 28.44, 0, 0, 0, 0, 0, 260.769, 1237.26, 1084.25, 0, 9, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (1856, 4, 'House At Palomino Creek', 0, 0, 0, 120000, 0, 2203.84, 62.284, 28.44, 0, 0, 0, 0, 0, 327.91, 1477.79, 1084.43, 0, 15, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (1857, 4, 'House At Palomino Creek', 0, 0, 0, 120000, 0, 2270.49, -7.499, 28.152, 0, 0, 0, 0, 0, 327.91, 1477.79, 1084.43, 0, 15, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (1858, 4, 'House At Palomino Creek', 0, 0, 0, 190000, 0, 2245.52, -1.661, 28.152, 0, 0, 0, 0, 0, 327.91, 1477.79, 1084.43, 0, 15, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (1859, 4, 'House At Palomino Creek', 0, 0, 0, 250000, 0, 2199.95, -37.354, 28.152, 0, 0, 0, 0, 0, 327.91, 1477.79, 1084.43, 0, 15, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (1860, 4, 'House At Palomino Creek', 0, 0, 0, 220000, 0, 2197.27, -60.667, 28.152, 0, 0, 0, 0, 0, 327.91, 1477.79, 1084.43, 0, 15, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (1861, 4, 'House At Palomino Creek', 0, 0, 0, 250000, 0, 2203.1, -89.224, 28.152, 0, 0, 0, 0, 0, 327.91, 1477.79, 1084.43, 0, 15, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (1862, 4, 'House At Palomino Creek', 0, 0, 0, 220000, 0, 2245.53, -122.291, 28.153, 0, 0, 0, 0, 0, 327.91, 1477.79, 1084.43, 0, 15, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (1863, 4, 'House At Palomino Creek', 0, 0, 0, 220000, 0, 2272.45, -119.135, 28.152, 0, 0, 0, 0, 0, 327.91, 1477.79, 1084.43, 0, 15, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (1864, 4, 'House At Palomino Creek', 0, 0, 0, 110000, 0, 2293.74, -124.958, 28.152, 0, 0, 0, 0, 0, 260.769, 1237.26, 1084.25, 0, 9, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (1865, 4, 'House At Palomino Creek', 0, 0, 0, 110000, 0, 2322.25, -124.959, 28.152, 0, 0, 0, 0, 0, 260.769, 1237.26, 1084.25, 0, 9, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (1866, 4, 'House At Palomino Creek', 0, 0, 0, 110000, 0, 2285.84, 161.768, 28.44, 0, 0, 0, 0, 0, 260.769, 1237.26, 1084.25, 0, 9, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (1867, 4, 'House At Palomino Creek', 0, 0, 0, 110000, 0, 2266.49, 168.339, 28.152, 0, 0, 0, 0, 0, 260.769, 1237.26, 1084.25, 0, 9, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (1868, 4, 'House At Palomino Creek', 0, 0, 0, 110000, 0, 2236.53, 168.304, 28.152, 0, 0, 0, 0, 0, 260.769, 1237.26, 1084.25, 0, 9, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (1869, 4, 'House At Palomino Creek', 0, 0, 0, 110000, 0, 2413.54, 61.761, 28.44, 0, 0, 0, 0, 0, 260.769, 1237.26, 1084.25, 0, 9, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (1870, 4, 'House At Palomino Creek', 0, 0, 0, 120000, 0, 2443.41, 61.762, 28.44, 0, 0, 0, 0, 0, 260.769, 1237.26, 1084.25, 0, 9, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (1871, 4, 'House At Palomino Creek', 0, 0, 0, 90000, 1, 2509.5, 11.762, 28.44, 0, 0, 0, 0, 0, 260.769, 1237.26, 1084.25, 0, 9, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (1872, 4, 'House At Palomino Creek', 0, 0, 0, 125000, 0, 2511.69, 57.215, 27.683, 0, 0, 0, 0, 0, 2282.9, -1139.99, 1050.89, 0, 11, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (1873, 4, 'Trailer at Montgomery', 0, 0, 0, 40000, 0, 1283.31, 158.373, 20.791, 0, 0, 0, 0, 0, 2196.84, -1204.23, 1049.02, 0, 6, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (1874, 4, 'Trailer at Montgomery', 0, 0, 0, 40000, 0, 1295.41, 174.55, 20.909, 0, 0, 0, 0, 0, 2196.84, -1204.23, 1049.02, 0, 6, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (1875, 4, 'Trailer at Montgomery', 0, 0, 0, 40000, 5000, 1294.51, 157.647, 20.576, 0, 0, 0, 0, 0, 2196.84, -1204.23, 1049.02, 0, 6, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (1876, 4, 'Trailer at Montgomery', 0, 0, 0, 30000, 0, 1299.14, 140.344, 20.538, 0, 0, 0, 0, 0, 244.41, 305.032, 999.148, 0, 1, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (1877, 4, 'Trailer at Montgomery', 0, 0, 0, 40000, 0, 1303.61, 186.1, 20.5389, 0, 0, 0, 0, 0, 2196.84, -1204.23, 1049.02, 0, 6, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (1878, 4, 'Trailer at Montgomery', 0, 0, 0, 40000, 0, 1300.44, 193.272, 20.5233, 0, 0, 0, 0, 0, 2196.84, -1204.23, 1049.02, 0, 6, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (1879, 4, 'Trailer at Montgomery', 0, 0, 0, 40000, 0, 1315.63, 180.156, 20.554, 0, 0, 0, 0, 0, 2196.84, -1204.23, 1049.02, 0, 6, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (1880, 4, 'Trailer at Montgomery', 0, 0, 0, 40000, 0, 1311.76, 169.572, 20.631, 0, 0, 0, 0, 0, 2196.84, -1204.23, 1049.02, 0, 6, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (1881, 4, 'Trailer at Montgomery', 0, 0, 0, 40000, 0, 1307.29, 153.318, 20.4921, 0, 0, 0, 0, 0, 2196.84, -1204.23, 1049.02, 0, 6, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (1882, 4, 'House at Montgomery', 0, 0, 0, 60000, 0, 1409.27, 346.89, 19.252, 0, 0, 0, 0, 0, 2196.84, -1204.23, 1049.02, 0, 6, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (1883, 4, 'House at Montgomery', 0, 0, 0, 60000, 0, 1403.22, 333.848, 18.9062, 0, 0, 0, 0, 0, 2196.84, -1204.23, 1049.02, 0, 6, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (1884, 4, 'House at Montgomery', 0, 0, 0, 60000, 0, 1415.88, 324.624, 18.843, 0, 0, 0, 0, 0, 2196.84, -1204.23, 1049.02, 0, 6, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (1885, 4, 'House at Montgomery', 0, 0, 0, 60000, 0, 1428.64, 356.429, 18.875, 0, 0, 0, 0, 0, 2196.84, -1204.23, 1049.02, 0, 6, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (1886, 4, 'House at Montgomery', 0, 0, 0, 60000, 0, 1413.14, 363.115, 19.1991, 0, 0, 0, 0, 0, 2196.84, -1204.23, 1049.02, 0, 6, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (1887, 4, 'House at Montgomery', 0, 0, 0, 60000, 0, 1419.53, 389.472, 19.3297, 0, 0, 0, 0, 0, 2196.84, -1204.23, 1049.02, 0, 6, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (1888, 4, 'House at Montgomery', 0, 0, 0, 60000, 0, 1475.32, 372.745, 19.6562, 0, 0, 0, 0, 0, 2196.84, -1204.23, 1049.02, 0, 6, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (1889, 4, 'House at Montgomery', 0, 0, 0, 60000, 0, 1465.74, 364.197, 19.2608, 0, 0, 0, 0, 0, 2196.84, -1204.23, 1049.02, 0, 6, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (1890, 4, 'House at Montgomery', 0, 0, 0, 60000, 0, 1469.66, 351.454, 18.923, 0, 0, 0, 0, 0, 2196.84, -1204.23, 1049.02, 0, 6, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (1891, 4, 'House at Montgomery', 0, 0, 0, 60000, 0, 1451.58, 375.788, 19.4005, 0, 0, 0, 0, 0, 2196.84, -1204.23, 1049.02, 0, 6, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (1892, 4, 'House at Montgomery', 0, 0, 0, 60000, 0, 1447.45, 361.738, 18.9081, 0, 0, 0, 0, 0, 2196.84, -1204.23, 1049.02, 0, 6, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (1893, 4, 'House at Montgomery', 0, 0, 0, 60000, 0, 1461.13, 342.467, 18.951, 0, 0, 0, 0, 0, 2196.84, -1204.23, 1049.02, 0, 6, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (1894, 4, 'House at Montgomery', 0, 0, 0, 60000, 0, 1434.89, 334.767, 18.9469, 0, 0, 0, 0, 0, 2196.84, -1204.23, 1049.02, 0, 6, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (1895, 4, 'House at Montgomery', 0, 0, 0, 60000, 0, 1488.61, 360.899, 19.4108, 0, 0, 0, 0, 0, 2196.84, -1204.23, 1049.02, 0, 6, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (1896, 4, 'House near Blueberry', 0, 0, 0, 60000, 0, 723.709, 269.671, 22.4531, 0, 0, 0, 0, 0, 2196.84, -1204.23, 1049.02, 0, 6, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (1897, 4, 'House near Blueberry', 0, 0, 0, 60000, 0, 705.467, 292.096, 20.4219, 0, 0, 0, 0, 0, 2196.84, -1204.23, 1049.02, 0, 6, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (1898, 4, 'House near Blueberry', 0, 0, 0, 60000, 0, 719.073, 300.585, 20.3766, 0, 0, 0, 0, 0, 2196.84, -1204.23, 1049.02, 0, 6, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (1899, 4, 'House near Blueberry', 0, 0, 0, 60000, 0, 746.396, 305.002, 20.233, 0, 0, 0, 0, 0, 2196.84, -1204.23, 1049.02, 0, 6, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (1900, 4, 'House near Blueberry', 0, 0, 0, 60000, 0, 747.132, 278.173, 27.218, 0, 0, 0, 0, 0, 2196.84, -1204.23, 1049.02, 0, 6, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (1901, 4, 'House near Blueberry', 0, 0, 0, 60000, 0, 748.16, 257.106, 27.0859, 0, 0, 0, 0, 0, 2196.84, -1204.23, 1049.02, 0, 6, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (1902, 4, 'Trailer near Blueberry', 0, 0, 0, 15000, 1, 748.428, 350.901, 20.5858, 0, 0, 0, 0, 0, 244.41, 305.032, 999.148, 0, 1, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (1903, 4, 'Trailer near Blueberry', 0, 0, 0, 15000, 0, 808.065, 372.286, 19.451, 0, 0, 0, 0, 0, 244.41, 305.032, 999.148, 0, 1, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (1904, 4, 'Trailer near Blueberry', 0, 0, 0, 15000, 500, 783.166, 377.561, 21.2967, 0, 0, 0, 0, 0, 244.41, 305.032, 999.148, 0, 1, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (1905, 4, 'Trailer near Blueberry', 0, 0, 0, 15000, 5000, 751.723, 375.22, 23.374, 0, 0, 0, 0, 0, 244.41, 305.032, 999.148, 0, 1, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (1906, 4, 'House near Blueberry', 0, 0, 0, 60000, 0, 783.883, 352.588, 19.5938, 0, 0, 0, 0, 0, 2196.84, -1204.23, 1049.02, 0, 6, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (1907, 4, 'House near Blueberry', 0, 0, 0, 60000, 0, 805.329, 358.37, 19.7621, 0, 0, 0, 0, 0, 2196.84, -1204.23, 1049.02, 0, 6, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (1908, 4, 'House near Blueberry', 0, 0, 0, 60000, 0, 758.917, 375.023, 23.3922, 0, 0, 0, 0, 0, 2196.84, -1204.23, 1049.02, 0, 6, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (1909, 4, 'House near Blueberry', 0, 0, 0, 60000, 0, 772.919, 348.266, 20.1527, 0, 0, 0, 0, 0, 2196.84, -1204.23, 1049.02, 0, 6, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (1910, 4, 'Farm', 0, 0, 0, 75000, 0, -1061.35, -1205.56, 129.756, 0, 0, 0, 0, 0, 2317.82, -1024.75, 1050.21, 0, 9, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (1911, 4, 'Shack', 0, 0, 0, 75000, 0, 1566.6, 23.2625, 24.1641, 0, 0, 0, 0, 0, 422.572, 2536.12, 10, 0, 10, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (1912, 4, 'Ranch', 0, 0, 0, 25000, 0, 870.399, -24.9238, 63.9856, 0, 0, 0, 0, 0, 422.293, 2536.68, 10, 0, 10, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (1913, 4, 'Shack', 0, 0, 0, 1000000, 0, -1051.73, 1549.97, 33.4376, 0, 0, 0, 0, 0, 422.293, 2536.68, 10, 0, 10, 0, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (1914, 1, 'Apartments', 0, 0, 0, 0, 5000, 1108.48, -606.323, 16.5294, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, -1, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (1915, 1, 'Apartments', 0, 0, 0, 0, 5000, 1098.4, -606.325, 16.5284, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, -1, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (1916, 1, 'Apartments', 0, 0, 0, 0, 5000, 1088.51, -606.329, 16.5259, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, -1, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (1917, 1, 'Apartments', 0, 0, 0, 0, 5000, 1078.4, -606.327, 16.5272, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, -1, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (1918, 1, 'Apartments', 0, 0, 0, 0, 5000, 1068.39, -606.328, 16.5265, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, -1, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (1919, 1, 'Apartments', 0, 0, 0, 0, 5000, 1113.51, -556.319, 17.1908, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, -1, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (1920, 1, 'Apartments', 0, 0, 0, 0, 5000, 1113.51, -546.203, 18.1932, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, -1, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (1921, 1, 'Apartments', 0, 0, 0, 0, 5000, 1113.51, -536.263, 19.1813, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, -1, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (1922, 1, 'Apartments', 0, 0, 0, 0, 5000, 1108.68, -516.083, 20.7302, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, -1, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (1923, 1, 'Apartments', 0, 0, 0, 0, 5000, 1098.55, -516.085, 19.7426, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, -1, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (1924, 1, 'Apartments', 0, 0, 0, 0, 5000, 1088.67, -516.084, 18.7428, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, -1, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (1925, 1, 'Apartments', 0, 0, 0, 0, 5000, 1078.69, -516.086, 17.7431, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, -1, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (1926, 1, 'Apartments', 0, 0, 0, 0, 5000, 1068.6, -516.086, 16.7438, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, -1, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (1927, 1, 'Apartments', 0, 0, 0, 0, 5000, 1113.45, -481.082, 21.5832, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, -1, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (1928, 1, 'Apartments', 0, 0, 0, 0, 5000, 1113.45, -466.156, 21.5552, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, -1, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (1929, 1, 'Apartments', 0, 0, 0, 0, 5000, 1113.45, -461.012, 21.56, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, -1, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (1930, 1, 'Apartments', 0, 0, 0, 0, 5000, 1113.45, -446.145, 21.5648, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, -1, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (1931, 1, 'Apartments', 0, 0, 0, 0, 5000, 1113.45, -441.121, 21.5653, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, -1, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (1932, 1, 'Apartments', 0, 0, 0, 0, 5000, 1140.85, -485.212, 20.481, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, -1, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (1933, 1, 'Apartments', 0, 0, 0, 0, 5000, 1150.99, -485.209, 21.4949, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, -1, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (1934, 1, 'Apartments', 0, 0, 0, 0, 5000, 1160.85, -485.211, 22.4811, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, -1, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (1935, 1, 'Apartments', 0, 0, 0, 0, 5000, 1170.93, -485.208, 23.4892, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, -1, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (1936, 1, 'Apartments', 0, 0, 0, 0, 5000, 1181.01, -485.209, 24.4972, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, -1, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (1937, 1, 'Apartments', 0, 0, 0, 0, 5000, 1207.81, -556.038, 22.2669, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, -1, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (1938, 1, 'Apartments', 0, 0, 0, 0, 5000, 1207.81, -546.034, 23.2659, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, -1, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (1939, 1, 'Apartments', 0, 0, 0, 0, 5000, 1207.8, -536.008, 24.252, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, -1, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (1940, 1, 'Apartments', 0, 0, 0, 0, 5000, 1208.62, -515.882, 26.8362, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, -1, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (1941, 1, 'Apartments', 0, 0, 0, 0, 5000, 1218.7, -515.88, 27.835, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, -1, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (1942, 1, 'Apartments', 0, 0, 0, 0, 5000, 1228.62, -515.883, 28.8368, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, -1, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (1943, 1, 'Apartments', 0, 0, 0, 0, 5000, 1238.57, -515.88, 29.8349, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, -1, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (1944, 1, 'Apartments', 0, 0, 0, 0, 5000, 1248.61, -515.882, 30.8245, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, -1, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (1945, 1, 'Apartments', 0, 0, 0, 0, 5000, 1210.81, -485.209, 25.5162, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, -1, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (1946, 1, 'Apartments', 0, 0, 0, 0, 5000, 1220.87, -485.208, 26.5799, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, -1, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (1947, 1, 'Apartments', 0, 0, 0, 0, 5000, 1230.72, -485.208, 27.565, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, -1, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (1948, 1, 'Apartments', 0, 0, 0, 0, 5000, 1240.87, -485.21, 28.5796, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, -1, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (1949, 1, 'Apartments', 0, 0, 0, 0, 5000, 1250.85, -485.208, 29.5778, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, -1, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (1950, 1, 'Apartments', 0, 0, 0, 0, 5000, 1260.8, -484.168, 31.0618, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, -1, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (1951, 1, 'Apartments', 0, 0, 0, 0, 5000, 1270.66, -484.164, 33.0035, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, -1, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (1952, 1, 'Apartments', 0, 0, 0, 0, 5000, 1280.93, -484.164, 35.0272, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, -1, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (1953, 1, 'Apartments', 0, 0, 0, 0, 5000, 1290.9, -484.165, 36.9913, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, -1, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (1954, 1, 'Apartments', 0, 0, 0, 0, 5000, 1300.93, -484.164, 38.9659, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, -1, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (1955, 1, 'Apartments', 0, 0, 0, 0, 5000, 1388.03, -436.166, 51.4305, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, -1, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (1956, 1, 'Apartments', 0, 0, 0, 0, 5000, 1388.03, -426.169, 51.4296, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, -1, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (1957, 1, 'Apartments', 0, 0, 0, 0, 5000, 1388.03, -416.242, 51.4305, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, -1, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (1958, 1, 'Apartments', 0, 0, 0, 0, 5000, 1388.09, -408.74, 51.5821, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, -1, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (1959, 1, 'Apartments', 0, 0, 0, 0, 5000, 1388.09, -398.619, 51.5805, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, -1, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (1960, 1, 'Apartments', 0, 0, 0, 0, 5000, 1388.01, -386.138, 51.169, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, -1, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (1961, 1, 'Apartments', 0, 0, 0, 0, 5000, 1388.02, -376.265, 51.1715, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, -1, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (1962, 1, 'Apartments', 0, 0, 0, 0, 5000, 1388.02, -366.289, 51.1709, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, -1, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (1963, 1, 'Apartments', 0, 0, 0, 0, 5000, 1388.1, -358.708, 51.6067, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, -1, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (1964, 1, 'Apartments', 0, 0, 0, 0, 5000, 1388.03, -346.209, 51.1967, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, -1, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (1965, 1, 'Apartments', 0, 0, 0, 0, 5000, 1388.03, -336.227, 51.1956, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, -1, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (1966, 1, 'Apartments', 0, 0, 0, 0, 5000, 1388.03, -326.232, 51.1966, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, -1, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (1967, 1, 'Apartments', 0, 0, 0, 0, 5000, 1388.11, -318.786, 51.5492, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, -1, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (1968, 1, 'Apartments', 0, 0, 0, 0, 5000, 1388.11, -308.723, 51.5487, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, -1, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (1969, 1, 'Apartments', 0, 0, 0, 0, 5000, 1388.1, -298.721, 51.5466, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, -1, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (1970, 1, 'Apartments', 0, 0, 0, 0, 5000, 1347.55, -293.393, 48.7019, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, -1, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (1971, 1, 'Apartments', 0, 0, 0, 0, 5000, 1337.53, -293.391, 46.6443, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, -1, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (1972, 1, 'Apartments', 0, 0, 0, 0, 5000, 1327.53, -293.395, 44.5924, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, -1, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (1973, 1, 'Apartments', 0, 0, 0, 0, 5000, 1317.63, -293.395, 42.558, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, -1, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (1974, 1, 'Apartments', 0, 0, 0, 0, 5000, 1351.08, -274.155, 49.4283, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, -1, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (1975, 1, 'Apartments', 0, 0, 0, 0, 5000, 1340.99, -274.155, 47.3557, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, -1, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (1976, 1, 'Apartments', 0, 0, 0, 0, 5000, 1330.87, -274.158, 45.2767, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, -1, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (1977, 1, 'Apartments', 0, 0, 0, 0, 5000, 1320.77, -274.159, 43.2032, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, -1, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (1978, 1, 'Apartments', 0, 0, 0, 0, 5000, 1310.89, -274.159, 41.1739, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, -1, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (1979, 1, 'Apartments', 0, 0, 0, 0, 5000, 1300.94, -274.168, 39.1568, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, -1, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (1980, 1, 'Apartments', 0, 0, 0, 0, 5000, 1290.84, -274.17, 37.1369, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, -1, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (1981, 1, 'Apartments', 0, 0, 0, 0, 5000, 1280.85, -274.184, 35.139, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, -1, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (1982, 1, 'Apartments', 0, 0, 0, 0, 5000, 1270.73, -274.165, 33.1157, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, -1, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (1983, 1, 'Apartments', 0, 0, 0, 0, 5000, 1260.86, -274.192, 31.141, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, -1, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (1984, 1, 'Apartments', 0, 0, 0, 0, 5000, 1250.9, -274.196, 29.6361, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, -1, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (1985, 1, 'Apartments', 0, 0, 0, 0, 5000, 1240.84, -274.201, 28.63, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, -1, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (1986, 1, 'Apartments', 0, 0, 0, 0, 5000, 1230.75, -274.198, 27.6213, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, -1, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (1987, 1, 'Apartments', 0, 0, 0, 0, 5000, 1220.83, -274.198, 26.6294, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, -1, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (1988, 1, 'Apartments', 0, 0, 0, 0, 5000, 1210.83, -274.206, 25.5394, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, -1, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (1989, 1, 'Apartments', 0, 0, 0, 0, 5000, 1210.82, -293.447, 25.5383, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, -1, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (1990, 1, 'Apartments', 0, 0, 0, 0, 5000, 1220.79, -293.448, 26.6255, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, -1, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (1991, 1, 'Apartments', 0, 0, 0, 0, 5000, 1230.84, -293.447, 27.6297, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, -1, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (1992, 1, 'Apartments', 0, 0, 0, 0, 5000, 1240.67, -293.432, 28.6135, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, -1, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (1993, 1, 'Apartments', 0, 0, 0, 0, 5000, 1250.84, -293.452, 29.6306, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, -1, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (1994, 1, 'Apartments', 0, 0, 0, 0, 5000, 1180.91, -293.448, 24.4868, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, -1, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (1995, 1, 'Apartments', 0, 0, 0, 0, 5000, 1170.65, -293.451, 23.461, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, -1, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (1996, 1, 'Apartments', 0, 0, 0, 0, 5000, 1160.82, -293.446, 22.4775, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, -1, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (1997, 1, 'Apartments', 0, 0, 0, 0, 5000, 1150.77, -293.448, 21.4728, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, -1, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (1998, 1, 'Apartments', 0, 0, 0, 0, 5000, 1140.81, -293.448, 20.4772, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, -1, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (1999, 1, 'Apartments', 0, 0, 0, 0, 5000, 1111.69, -281.121, 21.7387, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, -1, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (2000, 1, 'Apartments', 0, 0, 0, 0, 5000, 1111.69, -291.183, 21.7387, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, -1, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (2001, 1, 'Apartments', 0, 0, 0, 0, 5000, 1111.69, -301.082, 21.7387, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, -1, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (2002, 1, 'Apartments', 0, 0, 0, 0, 5000, 1113.44, -311.088, 21.5512, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, -1, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (2003, 1, 'Apartments', 0, 0, 0, 0, 5000, 1113.44, -321.123, 21.5515, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, -1, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (2004, 1, 'Apartments', 0, 0, 0, 0, 5000, 1113.44, -331.199, 21.5509, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, -1, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (2005, 1, 'Apartments', 0, 0, 0, 0, 5000, 1113.44, -341.184, 21.5519, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, -1, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (2006, 1, 'Apartments', 0, 0, 0, 0, 5000, 1113.44, -351.114, 21.5512, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, -1, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (2007, 1, 'Apartments', 0, 0, 0, 0, 5000, 1138.68, -366.117, 21.7515, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, -1, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (2008, 1, 'Apartments', 0, 0, 0, 0, 5000, 1148.57, -366.115, 22.75, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, -1, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (2009, 1, 'Apartments', 0, 0, 0, 0, 5000, 1158.71, -366.117, 23.7512, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, -1, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (2010, 1, 'Apartments', 0, 0, 0, 0, 5000, 1168.57, -366.115, 24.7503, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, -1, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (2011, 1, 'Apartments', 0, 0, 0, 0, 5000, 1178.72, -366.115, 25.7389, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, -1, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (2012, 1, 'Apartments', 0, 0, 0, 0, 5000, 1180.97, -334.194, 24.493, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, -1, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (2013, 1, 'Apartments', 0, 0, 0, 0, 5000, 1170.78, -334.193, 23.4739, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, -1, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (2014, 1, 'Apartments', 0, 0, 0, 0, 5000, 1160.74, -334.195, 22.47, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, -1, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (2015, 1, 'Apartments', 0, 0, 0, 0, 5000, 1150.78, -334.195, 21.4735, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, -1, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (2016, 1, 'Apartments', 0, 0, 0, 0, 5000, 1140.75, -334.194, 20.4709, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, -1, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (2017, 1, 'Apartments', 0, 0, 0, 0, 5000, 1116.16, -268.955, 19.5006, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, -1, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (2018, 1, 'Apartments', 0, 0, 0, 0, 5000, 1116.16, -258.651, 18.5011, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, -1, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (2019, 1, 'Apartments', 0, 0, 0, 0, 5000, 1116.16, -248.915, 17.5567, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, -1, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (2020, 1, 'Apartments', 0, 0, 0, 0, 5000, 1116.16, -238.827, 16.5782, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, -1, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (2021, 1, 'Apartments', 0, 0, 0, 0, 5000, 1116.16, -228.771, 15.5121, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, -1, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (2022, 1, 'Apartments', 0, 0, 0, 0, 5000, 1116.16, -188.853, 14.4756, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, -1, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (2023, 1, 'Apartments', 0, 0, 0, 0, 5000, 1116.16, -178.764, 13.4667, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, -1, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (2024, 1, 'Apartments', 0, 0, 0, 0, 5000, 1116.16, -168.882, 12.4785, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, -1, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (2025, 1, 'Apartments', 0, 0, 0, 0, 5000, 1116.16, -158.823, 11.4726, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, -1, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (2026, 1, 'Apartments', 0, 0, 0, 0, 5000, 1116.17, -148.872, 10.4775, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, -1, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (2027, 1, 'Apartments', 0, 0, 0, 0, 5000, 1138.03, -146.677, 11.7129, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, -1, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (2028, 1, 'Apartments', 0, 0, 0, 0, 5000, 1138.03, -156.636, 12.7127, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, -1, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (2029, 1, 'Apartments', 0, 0, 0, 0, 5000, 1138.03, -166.694, 13.7119, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, -1, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (2030, 1, 'Apartments', 0, 0, 0, 0, 5000, 1138.02, -176.732, 14.7102, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, -1, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (2031, 1, 'Apartments', 0, 0, 0, 0, 5000, 1138.02, -186.722, 15.6998, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, -1, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (2032, 1, 'Apartments', 0, 0, 0, 0, 5000, 1068.09, -186.547, 6.56125, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, -1, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (2033, 1, 'Apartments', 0, 0, 0, 0, 5000, 1068.1, -176.405, 6.56433, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, -1, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (2034, 1, 'Apartments', 0, 0, 0, 0, 5000, 1068.1, -166.483, 6.56387, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, -1, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (2035, 1, 'Apartments', 0, 0, 0, 0, 5000, 1068.1, -156.647, 6.56371, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, -1, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (2036, 1, 'Apartments', 0, 0, 0, 0, 5000, 1068.1, -146.438, 6.56433, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, -1, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (2037, 1, 'Apartments', 0, 0, 0, 0, 5000, 1068.07, -246.554, 6.68813, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, -1, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (2038, 1, 'Apartments', 0, 0, 0, 0, 5000, 1068.07, -256.651, 7.6847, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, -1, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (2039, 1, 'Apartments', 0, 0, 0, 0, 5000, 1068.03, -296.669, 11.7202, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, -1, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (2040, 1, 'Apartments', 0, 0, 0, 0, 5000, 1068.03, -306.614, 12.7193, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, -1, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (2041, 1, 'Apartments', 0, 0, 0, 0, 5000, 1068.03, -316.62, 13.7208, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, -1, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (2042, 1, 'Apartments', 0, 0, 0, 0, 5000, 1068.02, -326.753, 14.7208, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, -1, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (2043, 1, 'Apartments', 0, 0, 0, 0, 5000, 1068.02, -336.539, 15.7111, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, -1, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (2044, 1, 'Apartments', 0, 0, 0, 0, 5000, 894.073, -464.944, 14.9728, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, -1, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (2045, 1, 'Apartments', 0, 0, 0, 0, 5000, 860.881, -463.473, 14.9727, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, -1, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (2046, 1, 'Apartments', 0, 0, 0, 0, 5000, 845.353, -400.239, 14.9727, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, -1, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (2047, 1, 'Apartments', 0, 0, 0, 0, 5000, 845.292, -368.988, 12.6035, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, -1, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (2048, 1, 'Apartments', 0, 0, 0, 0, 5000, 845.291, -350.17, 10.8561, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, -1, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (2049, 1, 'Apartments', 0, 0, 0, 0, 5000, 845.28, -325.243, 8.37018, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, -1, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (2050, 1, 'Safehouse', 0, 0, 0, 0, 0, 890.415, -308.334, 8.72087, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, -1, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (2051, 1, 'Projects', 0, 0, 0, 0, 0, 944.055, -272.571, 4.9437, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, -1, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (2052, 1, 'Apartments', 0, 0, 0, 0, 5000, 942.953, -348.473, 9.97254, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, -1, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (2053, 1, 'Apartments', 0, 0, 0, 0, 5000, 867.205, -671.818, 14.9727, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, -1, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (2054, 1, 'Apartments', 0, 0, 0, 0, 5000, 875.121, -671.3, 14.9727, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, -1, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (2055, 1, 'Apartments', 0, 0, 0, 0, 5000, 872.956, -659.174, 14.968, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, -1, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (2056, 1, 'Apartments', 0, 0, 0, 0, 5000, 882.486, -708.407, 14.9727, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, -1, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (2057, 1, 'Apartments', 0, 0, 0, 0, 5000, 854.338, -689.176, 14.9727, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, -1, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (2058, 1, 'Apartments', 0, 0, 0, 0, 5000, 854.229, -759.091, 14.9727, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, -1, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (2059, 1, 'Apartments', 0, 0, 0, 0, 5000, -119.925, -1379.99, 26.1682, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, -1, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (2060, 1, 'Apartments', 0, 0, 0, 0, 5000, -129.301, -1380, 26.1682, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, -1, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (2061, 1, 'Apartments', 0, 0, 0, 0, 5000, -134.947, -1389.72, 26.3308, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, -1, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (2062, 1, 'Apartments', 0, 0, 0, 0, 5000, -149.135, -1382.05, 26.1694, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, -1, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (2063, 1, 'Apartments', 0, 0, 0, 0, 5000, -140.612, -1385.4, 26.3589, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, -1, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (2064, 1, 'Apartments', 0, 0, 0, 0, 5000, -163.408, -1386.55, 26.3408, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, -1, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (2065, 1, 'Apartments', 0, 0, 0, 0, 5000, -153.896, -1382.77, 26.1709, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, -1, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (2066, 1, 'Apartments', 0, 0, 0, 0, 5000, -168.324, -1382.13, 26.1703, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, -1, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (2067, 1, 'Apartments', 0, 0, 0, 0, 5000, -176.507, -1384.51, 26.3589, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, -1, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (2068, 1, 'Apartments', 0, 0, 0, 0, 5000, -185.877, -1380.46, 26.1682, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, -1, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (2069, 1, 'Apartments', 0, 0, 0, 0, 5000, -157.18, -1476.82, 26.1937, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, -1, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (2070, 1, 'Apartments', 0, 0, 0, 0, 5000, -163.177, -1462.64, 26.1936, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, -1, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (2071, 1, 'Apartments', 0, 0, 0, 0, 5000, -168.42, -1449.97, 26.1936, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, -1, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (2072, 1, 'Apartments', 0, 0, 0, 0, 5000, -149.725, -1489.55, 26.1933, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, -1, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (2073, 1, 'Apartments', 0, 0, 0, 0, 5000, -124.503, -1519.6, 26.1938, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, -1, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (2074, 1, 'Apartments', 0, 0, 0, 0, 5000, -103.405, -1540.97, 26.194, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, -1, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (2075, 1, 'Apartments', 0, 0, 0, 0, 5000, -73.5532, -1564.37, 26.0181, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, -1, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (2076, 1, 'Apartments', 0, 0, 0, 0, 5000, -50.9624, -1575.5, 26.0181, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, -1, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (2077, 1, 'Apartments', 0, 0, 0, 0, 5000, -15.3561, -1587.86, 26.2131, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, -1, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (2078, 1, 'Apartments', 0, 0, 0, 0, 5000, 15.5069, -1590.52, 26.1859, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, -1, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (2079, 1, 'Apartments', 0, 0, 0, 0, 5000, 125.07, -1489.57, 26.1681, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, -1, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (2080, 1, 'Large House', 0, 0, 0, 100000, 0, -742.403, 286.638, 55.2902, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, -1, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (2081, 1, 'Large House', 0, 0, 0, 100000, 0, -677.946, 307.895, 59.851, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, -1, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (2082, 1, 'Large House', 0, 0, 0, 100000, 0, -554.83, 309.903, 70.804, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, -1, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (2083, 1, 'Large House', 0, 0, 0, 100000, 0, -491.273, 286.248, 74.1456, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, -1, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (2084, 1, 'Mansion', 0, 0, 0, 250000, 0, -380.595, 299.861, 63.9212, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, -1, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (2085, 1, 'Large House', 0, 0, 0, 100000, 0, -832.619, 294.623, 41.4776, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, -1, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (2086, 1, 'Projects', 0, 0, 0, 0, 0, -458.327, -46.1888, 3.92693, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, -1, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (2087, 1, 'Projects', 0, 0, 0, 0, 0, -501.077, -64.3643, 3.9269, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, -1, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (2088, 1, 'Projects', 0, 0, 0, 0, 0, -521.206, -65.1702, 3.9269, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, -1, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (2089, 1, 'Projects', 0, 0, 0, 0, 0, -459.481, -25.3028, 3.92691, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, -1, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (2090, 1, 'Projects', 0, 0, 0, 0, 0, -468.289, 52.1059, 3.9269, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, -1, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (2091, 1, 'Projects', 0, 0, 0, 0, 0, -488.708, 51.1985, 3.9269, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, -1, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (2092, 1, 'Projects', 0, 0, 0, 0, 0, -546.122, 31.7124, 3.92692, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, -1, 0, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`) VALUES + (2093, 1, 'Projects', 0, 0, 0, 0, 0, -545.188, 11.4865, 3.92691, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, -1, 0, 0); +/*!40000 ALTER TABLE `house_main` ENABLE KEYS */; + +-- Dumping structure for table db24053.idea_main +CREATE TABLE IF NOT EXISTS `idea_main` ( + `idea_id` int(11) NOT NULL AUTO_INCREMENT, + `idea_server` tinyint(2) NOT NULL DEFAULT '0', + `idea_who_added` int(11) NOT NULL DEFAULT '0', + `idea_when_added` int(32) NOT NULL DEFAULT '0', + `idea_script_ver` varchar(16) NOT NULL DEFAULT '0.1', + `idea_pos_x` float NOT NULL DEFAULT '0', + `idea_pos_y` float NOT NULL DEFAULT '0', + `idea_pos_z` float NOT NULL DEFAULT '0', + `idea_rot_z` float NOT NULL DEFAULT '0', + `idea_message` varchar(128) NOT NULL DEFAULT '( No Message )', + `idea_svr_start` int(32) NOT NULL DEFAULT '0', + `idea_session` int(11) NOT NULL DEFAULT '0', + PRIMARY KEY (`idea_id`) +) ENGINE=InnoDB AUTO_INCREMENT=210 DEFAULT CHARSET=latin1 COMMENT='User Submitted Ideas'; + +-- Dumping data for table db24053.idea_main: ~62 rows (approximately) +/*!40000 ALTER TABLE `idea_main` DISABLE KEYS */; +INSERT INTO `idea_main` (`idea_id`, `idea_server`, `idea_who_added`, `idea_when_added`, `idea_script_ver`, `idea_pos_x`, `idea_pos_y`, `idea_pos_z`, `idea_rot_z`, `idea_message`, `idea_svr_start`, `idea_session`) VALUES + (4, 4, 1, 1608262318, '1.0', 2258.62, 2463.1, 10.8203, -0.5, 'Exclude LVPD garage from snow', 2147483647, 0); +INSERT INTO `idea_main` (`idea_id`, `idea_server`, `idea_who_added`, `idea_when_added`, `idea_script_ver`, `idea_pos_x`, `idea_pos_y`, `idea_pos_z`, `idea_rot_z`, `idea_message`, `idea_svr_start`, `idea_session`) VALUES + (5, 4, 1, 1608262432, '1.0', 2179.19, 1766.52, 56.5364, 1.3, 'Exclude LV parking garages from snow', 2147483647, 0); +INSERT INTO `idea_main` (`idea_id`, `idea_server`, `idea_who_added`, `idea_when_added`, `idea_script_ver`, `idea_pos_x`, `idea_pos_y`, `idea_pos_z`, `idea_rot_z`, `idea_message`, `idea_svr_start`, `idea_session`) VALUES + (6, 4, 1, 1608262457, '1.0', 1858.49, 1800.93, 36.5273, 0.5, 'Exclude LV parking garage ramp from snow', 2147483647, 0); +INSERT INTO `idea_main` (`idea_id`, `idea_server`, `idea_who_added`, `idea_when_added`, `idea_script_ver`, `idea_pos_x`, `idea_pos_y`, `idea_pos_z`, `idea_rot_z`, `idea_message`, `idea_svr_start`, `idea_session`) VALUES + (7, 4, 1, 1608262813, '1.0', 1192.94, -1321.7, 13.3984, -0.2, 'Add hospital fees', 2147483647, 0); +INSERT INTO `idea_main` (`idea_id`, `idea_server`, `idea_who_added`, `idea_when_added`, `idea_script_ver`, `idea_pos_x`, `idea_pos_y`, `idea_pos_z`, `idea_rot_z`, `idea_message`, `idea_svr_start`, `idea_session`) VALUES + (10, 4, 1, 1608264374, '1.0', -1983.54, 163.581, 27.6875, 1.02, 'Admin report system', 2147483647, 0); +INSERT INTO `idea_main` (`idea_id`, `idea_server`, `idea_who_added`, `idea_when_added`, `idea_script_ver`, `idea_pos_x`, `idea_pos_y`, `idea_pos_z`, `idea_rot_z`, `idea_message`, `idea_svr_start`, `idea_session`) VALUES + (21, 1, 2, 1608871415, '1.0', 1336.09, -758.642, 14.5972, -2.84, 'Import/Export between different cities, with each city demanding different cars.', 2147483647, 0); +INSERT INTO `idea_main` (`idea_id`, `idea_server`, `idea_who_added`, `idea_when_added`, `idea_script_ver`, `idea_pos_x`, `idea_pos_y`, `idea_pos_z`, `idea_rot_z`, `idea_message`, `idea_svr_start`, `idea_session`) VALUES + (23, 1, 1, 1608871808, '1.0', -597.479, 353.699, 78.4167, -1.8, 'Remove real estate flag on house in cedar grove', 2147483647, 0); +INSERT INTO `idea_main` (`idea_id`, `idea_server`, `idea_who_added`, `idea_when_added`, `idea_script_ver`, `idea_pos_x`, `idea_pos_y`, `idea_pos_z`, `idea_rot_z`, `idea_message`, `idea_svr_start`, `idea_session`) VALUES + (128, 1, 1, 1609102480, '1.0', 1299.98, -993.433, 14.8793, 0.840862, 'Respawn single vehicle command', 2147483647, 0); +INSERT INTO `idea_main` (`idea_id`, `idea_server`, `idea_who_added`, `idea_when_added`, `idea_script_ver`, `idea_pos_x`, `idea_pos_y`, `idea_pos_z`, `idea_rot_z`, `idea_message`, `idea_svr_start`, `idea_session`) VALUES + (129, 1, 1, 1609103197, '1.0', 1057.91, -398.217, 14.6232, -0.0146413, 'Hail a cab', 2147483647, 0); +INSERT INTO `idea_main` (`idea_id`, `idea_server`, `idea_who_added`, `idea_when_added`, `idea_script_ver`, `idea_pos_x`, `idea_pos_y`, `idea_pos_z`, `idea_rot_z`, `idea_message`, `idea_svr_start`, `idea_session`) VALUES + (133, 4, 2, 1609122166, '1.0', 1859.69, -2665.98, 5.75974, 1.57027, 'Airplane services?', 2147483647, 0); +INSERT INTO `idea_main` (`idea_id`, `idea_server`, `idea_who_added`, `idea_when_added`, `idea_script_ver`, `idea_pos_x`, `idea_pos_y`, `idea_pos_z`, `idea_rot_z`, `idea_message`, `idea_svr_start`, `idea_session`) VALUES + (134, 4, 2, 1609122329, '1.0', 1805.22, -2325.19, 13.3369, -0.342691, 'Should tuning shops be usable?', 2147483647, 0); +INSERT INTO `idea_main` (`idea_id`, `idea_server`, `idea_who_added`, `idea_when_added`, `idea_script_ver`, `idea_pos_x`, `idea_pos_y`, `idea_pos_z`, `idea_rot_z`, `idea_message`, `idea_svr_start`, `idea_session`) VALUES + (135, 4, 1, 1609142767, '1.0', 1552.72, -1674.83, 16.1953, 1.76176, 'Block use of usechar cmd while not in switchchar mode', 2147483647, 0); +INSERT INTO `idea_main` (`idea_id`, `idea_server`, `idea_who_added`, `idea_when_added`, `idea_script_ver`, `idea_pos_x`, `idea_pos_y`, `idea_pos_z`, `idea_rot_z`, `idea_message`, `idea_svr_start`, `idea_session`) VALUES + (139, 2, 2, 1609211402, '1.0', -982.2, -206.222, 10.6344, -0.0137857, 'Red Bus Route', 2147483647, 0); +INSERT INTO `idea_main` (`idea_id`, `idea_server`, `idea_who_added`, `idea_when_added`, `idea_script_ver`, `idea_pos_x`, `idea_pos_y`, `idea_pos_z`, `idea_rot_z`, `idea_message`, `idea_svr_start`, `idea_session`) VALUES + (142, 2, 2, 1609211493, '1.0', -982.211, -201.214, 10.6345, -0.005049, 'Red Line Stop', 2147483647, 0); +INSERT INTO `idea_main` (`idea_id`, `idea_server`, `idea_who_added`, `idea_when_added`, `idea_script_ver`, `idea_pos_x`, `idea_pos_y`, `idea_pos_z`, `idea_rot_z`, `idea_message`, `idea_svr_start`, `idea_session`) VALUES + (145, 2, 2, 1609211523, '1.0', -930.525, 58.0277, 10.528, 0.00543213, 'Red Line Stop', 2147483647, 0); +INSERT INTO `idea_main` (`idea_id`, `idea_server`, `idea_who_added`, `idea_when_added`, `idea_script_ver`, `idea_pos_x`, `idea_pos_y`, `idea_pos_z`, `idea_rot_z`, `idea_message`, `idea_svr_start`, `idea_session`) VALUES + (150, 2, 2, 1609211635, '1.0', -997.698, 175.8, 10.704, 1.44984, 'Red Line Route', 2147483647, 0); +INSERT INTO `idea_main` (`idea_id`, `idea_server`, `idea_who_added`, `idea_when_added`, `idea_script_ver`, `idea_pos_x`, `idea_pos_y`, `idea_pos_z`, `idea_rot_z`, `idea_message`, `idea_svr_start`, `idea_session`) VALUES + (152, 2, 2, 1609211718, '1.0', -607.007, 659.024, 10.9994, -1.42316, 'Red Line Route', 2147483647, 0); +INSERT INTO `idea_main` (`idea_id`, `idea_server`, `idea_who_added`, `idea_when_added`, `idea_script_ver`, `idea_pos_x`, `idea_pos_y`, `idea_pos_z`, `idea_rot_z`, `idea_message`, `idea_svr_start`, `idea_session`) VALUES + (156, 2, 2, 1609211777, '1.0', -665.23, 843.213, 11.3572, -0.028206, 'Red Line Route', 2147483647, 0); +INSERT INTO `idea_main` (`idea_id`, `idea_server`, `idea_who_added`, `idea_when_added`, `idea_script_ver`, `idea_pos_x`, `idea_pos_y`, `idea_pos_z`, `idea_rot_z`, `idea_message`, `idea_svr_start`, `idea_session`) VALUES + (159, 2, 2, 1609211823, '1.0', -669.703, 1174.17, 10.9954, -1.53996, 'Red Line Route', 2147483647, 0); +INSERT INTO `idea_main` (`idea_id`, `idea_server`, `idea_who_added`, `idea_when_added`, `idea_script_ver`, `idea_pos_x`, `idea_pos_y`, `idea_pos_z`, `idea_rot_z`, `idea_message`, `idea_svr_start`, `idea_session`) VALUES + (162, 2, 2, 1609211879, '1.0', 19.0071, 967.446, 10.8685, 2.96466, 'Red Line Route', 2147483647, 0); +INSERT INTO `idea_main` (`idea_id`, `idea_server`, `idea_who_added`, `idea_when_added`, `idea_script_ver`, `idea_pos_x`, `idea_pos_y`, `idea_pos_z`, `idea_rot_z`, `idea_message`, `idea_svr_start`, `idea_session`) VALUES + (166, 2, 2, 1609211936, '1.0', -441.901, 1099.23, 10.9998, 1.4971, 'Red Line Route', 2147483647, 0); +INSERT INTO `idea_main` (`idea_id`, `idea_server`, `idea_who_added`, `idea_when_added`, `idea_script_ver`, `idea_pos_x`, `idea_pos_y`, `idea_pos_z`, `idea_rot_z`, `idea_message`, `idea_svr_start`, `idea_session`) VALUES + (169, 2, 2, 1609212038, '1.0', -1048.15, 1341.77, 8.76068, 3.12651, 'Red Line Route', 2147483647, 0); +INSERT INTO `idea_main` (`idea_id`, `idea_server`, `idea_who_added`, `idea_when_added`, `idea_script_ver`, `idea_pos_x`, `idea_pos_y`, `idea_pos_z`, `idea_rot_z`, `idea_message`, `idea_svr_start`, `idea_session`) VALUES + (170, 2, 2, 1609212082, '1.0', -870.697, 1049.45, 11.0081, -3.14071, 'Red Line Route', 2147483647, 0); +INSERT INTO `idea_main` (`idea_id`, `idea_server`, `idea_who_added`, `idea_when_added`, `idea_script_ver`, `idea_pos_x`, `idea_pos_y`, `idea_pos_z`, `idea_rot_z`, `idea_message`, `idea_svr_start`, `idea_session`) VALUES + (171, 2, 1, 1609212137, '1.0', -1106.57, -300.12, 11.189, -1.51925, 'Green Line Stop', 2147483647, 0); +INSERT INTO `idea_main` (`idea_id`, `idea_server`, `idea_who_added`, `idea_when_added`, `idea_script_ver`, `idea_pos_x`, `idea_pos_y`, `idea_pos_z`, `idea_rot_z`, `idea_message`, `idea_svr_start`, `idea_session`) VALUES + (172, 2, 2, 1609212151, '1.0', -683.681, 610.935, 11.0217, 3.0247, 'Red Line Route', 2147483647, 0); +INSERT INTO `idea_main` (`idea_id`, `idea_server`, `idea_who_added`, `idea_when_added`, `idea_script_ver`, `idea_pos_x`, `idea_pos_y`, `idea_pos_z`, `idea_rot_z`, `idea_message`, `idea_svr_start`, `idea_session`) VALUES + (173, 2, 1, 1609212155, '1.0', -1012.97, -372.445, 10.8688, -3.02113, 'Green Line Stop', 2147483647, 0); +INSERT INTO `idea_main` (`idea_id`, `idea_server`, `idea_who_added`, `idea_when_added`, `idea_script_ver`, `idea_pos_x`, `idea_pos_y`, `idea_pos_z`, `idea_rot_z`, `idea_message`, `idea_svr_start`, `idea_session`) VALUES + (174, 2, 1, 1609212176, '1.0', -1018.07, -573.031, 11.0513, 1.70157, 'Green Line Stop', 2147483647, 0); +INSERT INTO `idea_main` (`idea_id`, `idea_server`, `idea_who_added`, `idea_when_added`, `idea_script_ver`, `idea_pos_x`, `idea_pos_y`, `idea_pos_z`, `idea_rot_z`, `idea_message`, `idea_svr_start`, `idea_session`) VALUES + (175, 2, 1, 1609212200, '1.0', -1184.86, -647.271, 11.565, -3.04171, 'Green Line Stop', 2147483647, 0); +INSERT INTO `idea_main` (`idea_id`, `idea_server`, `idea_who_added`, `idea_when_added`, `idea_script_ver`, `idea_pos_x`, `idea_pos_y`, `idea_pos_z`, `idea_rot_z`, `idea_message`, `idea_svr_start`, `idea_session`) VALUES + (176, 2, 1, 1609212235, '1.0', -1034.59, -908.376, 14.0954, -2.37192, 'Green Line Stop', 2147483647, 0); +INSERT INTO `idea_main` (`idea_id`, `idea_server`, `idea_who_added`, `idea_when_added`, `idea_script_ver`, `idea_pos_x`, `idea_pos_y`, `idea_pos_z`, `idea_rot_z`, `idea_message`, `idea_svr_start`, `idea_session`) VALUES + (177, 2, 1, 1609212260, '1.0', -990.653, -1074.29, 14.7919, 1.55775, 'Green Line Stop', 2147483647, 0); +INSERT INTO `idea_main` (`idea_id`, `idea_server`, `idea_who_added`, `idea_when_added`, `idea_script_ver`, `idea_pos_x`, `idea_pos_y`, `idea_pos_z`, `idea_rot_z`, `idea_message`, `idea_svr_start`, `idea_session`) VALUES + (178, 2, 1, 1609212280, '1.0', -1199.02, -946.758, 14.7914, -0.00153191, 'Green Line Stop', 2147483647, 0); +INSERT INTO `idea_main` (`idea_id`, `idea_server`, `idea_who_added`, `idea_when_added`, `idea_script_ver`, `idea_pos_x`, `idea_pos_y`, `idea_pos_z`, `idea_rot_z`, `idea_message`, `idea_svr_start`, `idea_session`) VALUES + (179, 2, 1, 1609212304, '1.0', -1431.57, -780.312, 14.7926, 1.55966, 'Green Line Stop', 2147483647, 0); +INSERT INTO `idea_main` (`idea_id`, `idea_server`, `idea_who_added`, `idea_when_added`, `idea_script_ver`, `idea_pos_x`, `idea_pos_y`, `idea_pos_z`, `idea_rot_z`, `idea_message`, `idea_svr_start`, `idea_session`) VALUES + (180, 2, 1, 1609212341, '1.0', -1282.71, -785.966, 14.7917, -1.57938, 'Green Line Stop', 2147483647, 0); +INSERT INTO `idea_main` (`idea_id`, `idea_server`, `idea_who_added`, `idea_when_added`, `idea_script_ver`, `idea_pos_x`, `idea_pos_y`, `idea_pos_z`, `idea_rot_z`, `idea_message`, `idea_svr_start`, `idea_session`) VALUES + (181, 2, 1, 1609212357, '1.0', -1204.48, -939.911, 14.7917, 3.14033, 'Green Line Stop', 2147483647, 0); +INSERT INTO `idea_main` (`idea_id`, `idea_server`, `idea_who_added`, `idea_when_added`, `idea_script_ver`, `idea_pos_x`, `idea_pos_y`, `idea_pos_z`, `idea_rot_z`, `idea_message`, `idea_svr_start`, `idea_session`) VALUES + (182, 2, 1, 1609212377, '1.0', -1006.98, -1079.19, 14.7916, -1.57749, 'Green Line Stop', 2147483647, 0); +INSERT INTO `idea_main` (`idea_id`, `idea_server`, `idea_who_added`, `idea_when_added`, `idea_script_ver`, `idea_pos_x`, `idea_pos_y`, `idea_pos_z`, `idea_rot_z`, `idea_message`, `idea_svr_start`, `idea_session`) VALUES + (183, 2, 1, 1609212405, '1.0', -928.565, -1257.33, 11.9578, 2.75726, 'Green Line Stop', 2147483647, 0); +INSERT INTO `idea_main` (`idea_id`, `idea_server`, `idea_who_added`, `idea_when_added`, `idea_script_ver`, `idea_pos_x`, `idea_pos_y`, `idea_pos_z`, `idea_rot_z`, `idea_message`, `idea_svr_start`, `idea_session`) VALUES + (184, 2, 1, 1609212426, '1.0', -912.603, -1442.4, 11.8644, -1.94806, 'Green Line Stop', 2147483647, 0); +INSERT INTO `idea_main` (`idea_id`, `idea_server`, `idea_who_added`, `idea_when_added`, `idea_script_ver`, `idea_pos_x`, `idea_pos_y`, `idea_pos_z`, `idea_rot_z`, `idea_message`, `idea_svr_start`, `idea_session`) VALUES + (185, 2, 1, 1609212446, '1.0', -683.223, -1389.97, 11.0019, 0.0605809, 'Green Line Stop', 2147483647, 0); +INSERT INTO `idea_main` (`idea_id`, `idea_server`, `idea_who_added`, `idea_when_added`, `idea_script_ver`, `idea_pos_x`, `idea_pos_y`, `idea_pos_z`, `idea_rot_z`, `idea_message`, `idea_svr_start`, `idea_session`) VALUES + (186, 2, 1, 1609212466, '1.0', -799.104, -1062.2, 11.0011, 0.188361, 'Green Line Stop', 2147483647, 0); +INSERT INTO `idea_main` (`idea_id`, `idea_server`, `idea_who_added`, `idea_when_added`, `idea_script_ver`, `idea_pos_x`, `idea_pos_y`, `idea_pos_z`, `idea_rot_z`, `idea_message`, `idea_svr_start`, `idea_session`) VALUES + (187, 2, 2, 1609212473, '1.0', -1011.02, 291.984, 11.3042, 2.90937, 'Red Line Route', 2147483647, 0); +INSERT INTO `idea_main` (`idea_id`, `idea_server`, `idea_who_added`, `idea_when_added`, `idea_script_ver`, `idea_pos_x`, `idea_pos_y`, `idea_pos_z`, `idea_rot_z`, `idea_message`, `idea_svr_start`, `idea_session`) VALUES + (188, 2, 1, 1609212510, '1.0', -812.002, -672.31, 11.0046, 0.0840402, 'Green Line Stop', 2147483647, 0); +INSERT INTO `idea_main` (`idea_id`, `idea_server`, `idea_who_added`, `idea_when_added`, `idea_script_ver`, `idea_pos_x`, `idea_pos_y`, `idea_pos_z`, `idea_rot_z`, `idea_message`, `idea_svr_start`, `idea_session`) VALUES + (189, 2, 1, 1609212536, '1.0', -834.03, -477.273, 11.0118, 0.253252, 'Green Line Stop', 2147483647, 0); +INSERT INTO `idea_main` (`idea_id`, `idea_server`, `idea_who_added`, `idea_when_added`, `idea_script_ver`, `idea_pos_x`, `idea_pos_y`, `idea_pos_z`, `idea_rot_z`, `idea_message`, `idea_svr_start`, `idea_session`) VALUES + (190, 2, 1, 1609212555, '1.0', -840.406, -307.896, 11.0001, -0.0336403, 'Green Line Stop', 2147483647, 0); +INSERT INTO `idea_main` (`idea_id`, `idea_server`, `idea_who_added`, `idea_when_added`, `idea_script_ver`, `idea_pos_x`, `idea_pos_y`, `idea_pos_z`, `idea_rot_z`, `idea_message`, `idea_svr_start`, `idea_session`) VALUES + (191, 2, 1, 1609212571, '1.0', -829.729, -119.308, 11.0004, -0.479496, 'Green Line Stop', 2147483647, 0); +INSERT INTO `idea_main` (`idea_id`, `idea_server`, `idea_who_added`, `idea_when_added`, `idea_script_ver`, `idea_pos_x`, `idea_pos_y`, `idea_pos_z`, `idea_rot_z`, `idea_message`, `idea_svr_start`, `idea_session`) VALUES + (192, 2, 2, 1609212572, '1.0', -1185.89, -264.69, 11.5162, -3.04215, 'Red Line Route', 2147483647, 0); +INSERT INTO `idea_main` (`idea_id`, `idea_server`, `idea_who_added`, `idea_when_added`, `idea_script_ver`, `idea_pos_x`, `idea_pos_y`, `idea_pos_z`, `idea_rot_z`, `idea_message`, `idea_svr_start`, `idea_session`) VALUES + (193, 2, 1, 1609212591, '1.0', -903.957, 33.4505, 10.6344, 1.57116, 'Green Line Stop', 2147483647, 0); +INSERT INTO `idea_main` (`idea_id`, `idea_server`, `idea_who_added`, `idea_when_added`, `idea_script_ver`, `idea_pos_x`, `idea_pos_y`, `idea_pos_z`, `idea_rot_z`, `idea_message`, `idea_svr_start`, `idea_session`) VALUES + (194, 2, 1, 1609212613, '1.0', -1002.04, -37.9656, 10.9094, 1.57972, 'Green Line Stop', 2147483647, 0); +INSERT INTO `idea_main` (`idea_id`, `idea_server`, `idea_who_added`, `idea_when_added`, `idea_script_ver`, `idea_pos_x`, `idea_pos_y`, `idea_pos_z`, `idea_rot_z`, `idea_message`, `idea_svr_start`, `idea_session`) VALUES + (195, 2, 1, 1609212625, '1.0', -1066.83, -13.3146, 11.3389, -0.00601319, 'Green Line Stop', 2147483647, 0); +INSERT INTO `idea_main` (`idea_id`, `idea_server`, `idea_who_added`, `idea_when_added`, `idea_script_ver`, `idea_pos_x`, `idea_pos_y`, `idea_pos_z`, `idea_rot_z`, `idea_message`, `idea_svr_start`, `idea_session`) VALUES + (196, 2, 1, 1609212648, '1.0', -1067.5, 109.544, 11.3122, -0.0967074, 'Green Line Stop', 2147483647, 0); +INSERT INTO `idea_main` (`idea_id`, `idea_server`, `idea_who_added`, `idea_when_added`, `idea_script_ver`, `idea_pos_x`, `idea_pos_y`, `idea_pos_z`, `idea_rot_z`, `idea_message`, `idea_svr_start`, `idea_session`) VALUES + (197, 2, 1, 1609212672, '1.0', -1003.59, 171.078, 10.8953, -1.70057, 'Green Line Stop', 2147483647, 0); +INSERT INTO `idea_main` (`idea_id`, `idea_server`, `idea_who_added`, `idea_when_added`, `idea_script_ver`, `idea_pos_x`, `idea_pos_y`, `idea_pos_z`, `idea_rot_z`, `idea_message`, `idea_svr_start`, `idea_session`) VALUES + (198, 2, 1, 1609212698, '1.0', -748.054, 198.243, 11.2455, -1.75594, 'Green Line Stop', 2147483647, 0); +INSERT INTO `idea_main` (`idea_id`, `idea_server`, `idea_who_added`, `idea_when_added`, `idea_script_ver`, `idea_pos_x`, `idea_pos_y`, `idea_pos_z`, `idea_rot_z`, `idea_message`, `idea_svr_start`, `idea_session`) VALUES + (199, 2, 1, 1609212717, '1.0', -850, -110.625, 11.0203, 2.67104, 'Green Line Stop', 2147483647, 0); +INSERT INTO `idea_main` (`idea_id`, `idea_server`, `idea_who_added`, `idea_when_added`, `idea_script_ver`, `idea_pos_x`, `idea_pos_y`, `idea_pos_z`, `idea_rot_z`, `idea_message`, `idea_svr_start`, `idea_session`) VALUES + (200, 2, 1, 1609212735, '1.0', -898.862, -280.373, 10.6645, 1.53245, 'Green Line Stop', 2147483647, 0); +INSERT INTO `idea_main` (`idea_id`, `idea_server`, `idea_who_added`, `idea_when_added`, `idea_script_ver`, `idea_pos_x`, `idea_pos_y`, `idea_pos_z`, `idea_rot_z`, `idea_message`, `idea_svr_start`, `idea_session`) VALUES + (201, 2, 1, 1609212753, '1.0', -1082.1, -294.416, 11.2065, 1.59266, 'Green Line Stop', 2147483647, 0); +INSERT INTO `idea_main` (`idea_id`, `idea_server`, `idea_who_added`, `idea_when_added`, `idea_script_ver`, `idea_pos_x`, `idea_pos_y`, `idea_pos_z`, `idea_rot_z`, `idea_message`, `idea_svr_start`, `idea_session`) VALUES + (202, 4, 1, 1609213965, '1.0', 237.392, 75.8236, 1005.04, 0.129586, 'Add helpful info on specific events. Approaching veh or job icon, etc', 2147483647, 0); +INSERT INTO `idea_main` (`idea_id`, `idea_server`, `idea_who_added`, `idea_when_added`, `idea_script_ver`, `idea_pos_x`, `idea_pos_y`, `idea_pos_z`, `idea_rot_z`, `idea_message`, `idea_svr_start`, `idea_session`) VALUES + (203, 2, 1, 1609224894, '1.0', -377.152, -337.399, 11.2356, -3.09393, 'Remove gates at starfish island houses', 2147483647, 0); +INSERT INTO `idea_main` (`idea_id`, `idea_server`, `idea_who_added`, `idea_when_added`, `idea_script_ver`, `idea_pos_x`, `idea_pos_y`, `idea_pos_z`, `idea_rot_z`, `idea_message`, `idea_svr_start`, `idea_session`) VALUES + (204, 1, 1, 1609233851, '1.0', 125.646, -922.827, 25.8177, 1.60839, 'Fix colon being too close to msg in admin chat', 2147483647, 0); +INSERT INTO `idea_main` (`idea_id`, `idea_server`, `idea_who_added`, `idea_when_added`, `idea_script_ver`, `idea_pos_x`, `idea_pos_y`, `idea_pos_z`, `idea_rot_z`, `idea_message`, `idea_svr_start`, `idea_session`) VALUES + (205, 1, 1, 1609233955, '1.0', -149.499, -1378.3, 26.1682, 1.54235, 'Add line of sight check to labels', 2147483647, 0); +INSERT INTO `idea_main` (`idea_id`, `idea_server`, `idea_who_added`, `idea_when_added`, `idea_script_ver`, `idea_pos_x`, `idea_pos_y`, `idea_pos_z`, `idea_rot_z`, `idea_message`, `idea_svr_start`, `idea_session`) VALUES + (206, 1, 1, 1609234666, '1.0', -365.363, 244.853, 60.8601, -0.181428, 'Remove cartel mansion gates in SSV', 2147483647, 0); +INSERT INTO `idea_main` (`idea_id`, `idea_server`, `idea_who_added`, `idea_when_added`, `idea_script_ver`, `idea_pos_x`, `idea_pos_y`, `idea_pos_z`, `idea_rot_z`, `idea_message`, `idea_svr_start`, `idea_session`) VALUES + (207, 1, 1, 1609235429, '1.0', 360.992, -1134.22, 22.9809, 0.125214, 'Delete gates at LCPD staunton station', 2147483647, 0); +INSERT INTO `idea_main` (`idea_id`, `idea_server`, `idea_who_added`, `idea_when_added`, `idea_script_ver`, `idea_pos_x`, `idea_pos_y`, `idea_pos_z`, `idea_rot_z`, `idea_message`, `idea_svr_start`, `idea_session`) VALUES + (208, 1, 1, 1609235439, '1.0', 346.371, -1157.53, 22.9809, 2.41115, 'Lock all job vehicles', 2147483647, 0); +INSERT INTO `idea_main` (`idea_id`, `idea_server`, `idea_who_added`, `idea_when_added`, `idea_script_ver`, `idea_pos_x`, `idea_pos_y`, `idea_pos_z`, `idea_rot_z`, `idea_message`, `idea_svr_start`, `idea_session`) VALUES + (209, 1, 1, 1609235450, '1.0', 334.967, -1187.78, 26.1682, -2.8111, 'Always respawn job vehicles as locked', 2147483647, 0); +/*!40000 ALTER TABLE `idea_main` ENABLE KEYS */; + +-- Dumping structure for table db24053.ins_acct +CREATE TABLE IF NOT EXISTS `ins_acct` ( + `insurance_acct_id` int(11) NOT NULL AUTO_INCREMENT, + `insurance_acct_server` tinyint(2) NOT NULL DEFAULT '0', + `insurance_acct_provider` int(11) NOT NULL DEFAULT '0', + `insurance_acct_type` tinyint(2) NOT NULL DEFAULT '0', + `insurance_acct_entity` int(11) NOT NULL DEFAULT '0', + `insurance_acct_hourly_rate` int(11) NOT NULL DEFAULT '0', + `insurance_acct_active` tinyint(1) NOT NULL DEFAULT '0', + `insurance_acct_max_payout` int(11) NOT NULL DEFAULT '0', + PRIMARY KEY (`insurance_acct_id`) +) ENGINE=InnoDB DEFAULT CHARSET=latin1 COMMENT='Insurance - Accounts'; + +-- Dumping data for table db24053.ins_acct: ~0 rows (approximately) +/*!40000 ALTER TABLE `ins_acct` DISABLE KEYS */; +/*!40000 ALTER TABLE `ins_acct` ENABLE KEYS */; + +-- Dumping structure for table db24053.ins_provider +CREATE TABLE IF NOT EXISTS `ins_provider` ( + `insurance_provider_id` int(11) NOT NULL AUTO_INCREMENT, + `insurance_provider_server` tinyint(2) NOT NULL DEFAULT '0', + `insurance_provider_name` varchar(32) NOT NULL DEFAULT '0', + `insurance_provider_type_flags` int(32) NOT NULL DEFAULT '0', + `insurance_provider_active` tinyint(1) NOT NULL DEFAULT '1', + `insurance_provider_owner_type` tinyint(1) NOT NULL DEFAULT '0', + `insurance_provider_owner_id` tinyint(1) NOT NULL DEFAULT '0', + PRIMARY KEY (`insurance_provider_id`) +) ENGINE=InnoDB DEFAULT CHARSET=latin1 COMMENT='Insurance - Providers'; + +-- Dumping data for table db24053.ins_provider: ~0 rows (approximately) +/*!40000 ALTER TABLE `ins_provider` DISABLE KEYS */; +/*!40000 ALTER TABLE `ins_provider` ENABLE KEYS */; + +-- Dumping structure for table db24053.int_main +CREATE TABLE IF NOT EXISTS `int_main` ( + `int_id` int(11) NOT NULL AUTO_INCREMENT, + `int_server` int(11) NOT NULL DEFAULT '0', + `int_name` varchar(50) NOT NULL DEFAULT 'Unnamed', + `int_type` int(11) NOT NULL DEFAULT '0', + `int_entrance_pos_x` float NOT NULL DEFAULT '0', + `int_entrance_pos_y` float NOT NULL DEFAULT '0', + `int_entrance_pos_z` float NOT NULL DEFAULT '0', + `int_entrance_rot_z` float NOT NULL DEFAULT '0', + `int_entrance_int` int(11) NOT NULL DEFAULT '0', + `int_entrance_vw` int(11) NOT NULL DEFAULT '0', + `int_exit_pos_x` float NOT NULL DEFAULT '0', + `int_exit_pos_y` float NOT NULL DEFAULT '0', + `int_exit_pos_z` float NOT NULL DEFAULT '0', + `int_exit_rot_z` float NOT NULL DEFAULT '0', + `int_exit_int` int(11) NOT NULL DEFAULT '0', + `int_exit_vw` int(11) NOT NULL DEFAULT '0', + `int_locked` tinyint(4) NOT NULL DEFAULT '0', + PRIMARY KEY (`int_id`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Interiors'; + +-- Dumping data for table db24053.int_main: ~0 rows (approximately) +/*!40000 ALTER TABLE `int_main` DISABLE KEYS */; +/*!40000 ALTER TABLE `int_main` ENABLE KEYS */; + +-- Dumping structure for table db24053.job_bl +CREATE TABLE IF NOT EXISTS `job_bl` ( + `job_bl_id` int(11) NOT NULL AUTO_INCREMENT, + `job_bl_job` int(11) NOT NULL DEFAULT '0', + `job_bl_sacct` int(11) NOT NULL DEFAULT '0', + `job_bl_when_added` int(11) NOT NULL DEFAULT '0', + `job_bl_who_added` int(11) NOT NULL DEFAULT '0', + `job_bl_deleted` int(11) NOT NULL DEFAULT '0', + PRIMARY KEY (`job_bl_id`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Job - Blacklist'; + +-- Dumping data for table db24053.job_bl: ~0 rows (approximately) +/*!40000 ALTER TABLE `job_bl` DISABLE KEYS */; +/*!40000 ALTER TABLE `job_bl` ENABLE KEYS */; + +-- Dumping structure for table db24053.job_equip +CREATE TABLE IF NOT EXISTS `job_equip` ( + `job_equip_id` int(11) NOT NULL AUTO_INCREMENT, + `job_equip_job` int(11) NOT NULL DEFAULT '0', + `job_equip_minrank` int(11) NOT NULL DEFAULT '0', + `job_equip_name` varchar(50) NOT NULL DEFAULT '0', + `job_equip_enabled` int(11) NOT NULL DEFAULT '1', + PRIMARY KEY (`job_equip_id`) +) ENGINE=InnoDB AUTO_INCREMENT=21 DEFAULT CHARSET=utf8 COMMENT='Job Equipments'; + +-- Dumping data for table db24053.job_equip: ~20 rows (approximately) +/*!40000 ALTER TABLE `job_equip` DISABLE KEYS */; +INSERT INTO `job_equip` (`job_equip_id`, `job_equip_job`, `job_equip_minrank`, `job_equip_name`, `job_equip_enabled`) VALUES + (1, 1, 0, 'Patrol', 1); +INSERT INTO `job_equip` (`job_equip_id`, `job_equip_job`, `job_equip_minrank`, `job_equip_name`, `job_equip_enabled`) VALUES + (2, 2, 0, 'Patrol', 1); +INSERT INTO `job_equip` (`job_equip_id`, `job_equip_job`, `job_equip_minrank`, `job_equip_name`, `job_equip_enabled`) VALUES + (3, 3, 0, 'Patrol', 1); +INSERT INTO `job_equip` (`job_equip_id`, `job_equip_job`, `job_equip_minrank`, `job_equip_name`, `job_equip_enabled`) VALUES + (4, 4, 0, 'Patrol', 1); +INSERT INTO `job_equip` (`job_equip_id`, `job_equip_job`, `job_equip_minrank`, `job_equip_name`, `job_equip_enabled`) VALUES + (5, 1, 1, 'Detective', 1); +INSERT INTO `job_equip` (`job_equip_id`, `job_equip_job`, `job_equip_minrank`, `job_equip_name`, `job_equip_enabled`) VALUES + (6, 2, 1, 'Detective', 1); +INSERT INTO `job_equip` (`job_equip_id`, `job_equip_job`, `job_equip_minrank`, `job_equip_name`, `job_equip_enabled`) VALUES + (7, 3, 1, 'Detective', 1); +INSERT INTO `job_equip` (`job_equip_id`, `job_equip_job`, `job_equip_minrank`, `job_equip_name`, `job_equip_enabled`) VALUES + (8, 4, 1, 'Detective', 1); +INSERT INTO `job_equip` (`job_equip_id`, `job_equip_job`, `job_equip_minrank`, `job_equip_name`, `job_equip_enabled`) VALUES + (9, 1, 2, 'SWAT', 1); +INSERT INTO `job_equip` (`job_equip_id`, `job_equip_job`, `job_equip_minrank`, `job_equip_name`, `job_equip_enabled`) VALUES + (10, 2, 2, 'SWAT', 1); +INSERT INTO `job_equip` (`job_equip_id`, `job_equip_job`, `job_equip_minrank`, `job_equip_name`, `job_equip_enabled`) VALUES + (11, 3, 2, 'SWAT', 1); +INSERT INTO `job_equip` (`job_equip_id`, `job_equip_job`, `job_equip_minrank`, `job_equip_name`, `job_equip_enabled`) VALUES + (12, 4, 2, 'SWAT', 1); +INSERT INTO `job_equip` (`job_equip_id`, `job_equip_job`, `job_equip_minrank`, `job_equip_name`, `job_equip_enabled`) VALUES + (13, 1, 3, 'Supervisor', 1); +INSERT INTO `job_equip` (`job_equip_id`, `job_equip_job`, `job_equip_minrank`, `job_equip_name`, `job_equip_enabled`) VALUES + (14, 2, 3, 'Supervisor', 1); +INSERT INTO `job_equip` (`job_equip_id`, `job_equip_job`, `job_equip_minrank`, `job_equip_name`, `job_equip_enabled`) VALUES + (15, 3, 3, 'Supervisor', 1); +INSERT INTO `job_equip` (`job_equip_id`, `job_equip_job`, `job_equip_minrank`, `job_equip_name`, `job_equip_enabled`) VALUES + (16, 4, 3, 'Supervisor', 1); +INSERT INTO `job_equip` (`job_equip_id`, `job_equip_job`, `job_equip_minrank`, `job_equip_name`, `job_equip_enabled`) VALUES + (17, 9, 0, 'Firefighter', 1); +INSERT INTO `job_equip` (`job_equip_id`, `job_equip_job`, `job_equip_minrank`, `job_equip_name`, `job_equip_enabled`) VALUES + (18, 10, 0, 'Firefighter', 1); +INSERT INTO `job_equip` (`job_equip_id`, `job_equip_job`, `job_equip_minrank`, `job_equip_name`, `job_equip_enabled`) VALUES + (19, 11, 0, 'Firefighter', 1); +INSERT INTO `job_equip` (`job_equip_id`, `job_equip_job`, `job_equip_minrank`, `job_equip_name`, `job_equip_enabled`) VALUES + (20, 12, 0, 'Firefighter', 1); +/*!40000 ALTER TABLE `job_equip` ENABLE KEYS */; + +-- Dumping structure for table db24053.job_equip_wep +CREATE TABLE IF NOT EXISTS `job_equip_wep` ( + `job_equip_wep_id` int(11) NOT NULL AUTO_INCREMENT, + `job_equip_wep_equip` int(11) NOT NULL DEFAULT '0', + `job_equip_wep_wep` int(11) NOT NULL DEFAULT '0', + `job_equip_wep_ammo` int(11) NOT NULL DEFAULT '0', + `job_equip_wep_enabled` int(11) NOT NULL DEFAULT '1', + PRIMARY KEY (`job_equip_wep_id`) +) ENGINE=InnoDB AUTO_INCREMENT=53 DEFAULT CHARSET=utf8 COMMENT='Job Equipments - Weapons'; + +-- Dumping data for table db24053.job_equip_wep: ~49 rows (approximately) +/*!40000 ALTER TABLE `job_equip_wep` DISABLE KEYS */; +INSERT INTO `job_equip_wep` (`job_equip_wep_id`, `job_equip_wep_equip`, `job_equip_wep_wep`, `job_equip_wep_ammo`, `job_equip_wep_enabled`) VALUES + (1, 1, 1, 1, 1); +INSERT INTO `job_equip_wep` (`job_equip_wep_id`, `job_equip_wep_equip`, `job_equip_wep_wep`, `job_equip_wep_ammo`, `job_equip_wep_enabled`) VALUES + (2, 1, 2, 150, 1); +INSERT INTO `job_equip_wep` (`job_equip_wep_id`, `job_equip_wep_equip`, `job_equip_wep_wep`, `job_equip_wep_ammo`, `job_equip_wep_enabled`) VALUES + (3, 1, 4, 20, 1); +INSERT INTO `job_equip_wep` (`job_equip_wep_id`, `job_equip_wep_equip`, `job_equip_wep_wep`, `job_equip_wep_ammo`, `job_equip_wep_enabled`) VALUES + (4, 5, 1, 1, 1); +INSERT INTO `job_equip_wep` (`job_equip_wep_id`, `job_equip_wep_equip`, `job_equip_wep_wep`, `job_equip_wep_ammo`, `job_equip_wep_enabled`) VALUES + (5, 5, 2, 150, 1); +INSERT INTO `job_equip_wep` (`job_equip_wep_id`, `job_equip_wep_equip`, `job_equip_wep_wep`, `job_equip_wep_ammo`, `job_equip_wep_enabled`) VALUES + (6, 5, 4, 20, 1); +INSERT INTO `job_equip_wep` (`job_equip_wep_id`, `job_equip_wep_equip`, `job_equip_wep_wep`, `job_equip_wep_ammo`, `job_equip_wep_enabled`) VALUES + (7, 9, 1, 1, 1); +INSERT INTO `job_equip_wep` (`job_equip_wep_id`, `job_equip_wep_equip`, `job_equip_wep_wep`, `job_equip_wep_ammo`, `job_equip_wep_enabled`) VALUES + (8, 9, 2, 150, 1); +INSERT INTO `job_equip_wep` (`job_equip_wep_id`, `job_equip_wep_equip`, `job_equip_wep_wep`, `job_equip_wep_ammo`, `job_equip_wep_enabled`) VALUES + (9, 9, 4, 20, 1); +INSERT INTO `job_equip_wep` (`job_equip_wep_id`, `job_equip_wep_equip`, `job_equip_wep_wep`, `job_equip_wep_ammo`, `job_equip_wep_enabled`) VALUES + (10, 13, 4, 1, 1); +INSERT INTO `job_equip_wep` (`job_equip_wep_id`, `job_equip_wep_equip`, `job_equip_wep_wep`, `job_equip_wep_ammo`, `job_equip_wep_enabled`) VALUES + (11, 13, 17, 150, 1); +INSERT INTO `job_equip_wep` (`job_equip_wep_id`, `job_equip_wep_equip`, `job_equip_wep_wep`, `job_equip_wep_ammo`, `job_equip_wep_enabled`) VALUES + (12, 13, 19, 20, 1); +INSERT INTO `job_equip_wep` (`job_equip_wep_id`, `job_equip_wep_equip`, `job_equip_wep_wep`, `job_equip_wep_ammo`, `job_equip_wep_enabled`) VALUES + (16, 21, 4, 1, 1); +INSERT INTO `job_equip_wep` (`job_equip_wep_id`, `job_equip_wep_equip`, `job_equip_wep_wep`, `job_equip_wep_ammo`, `job_equip_wep_enabled`) VALUES + (17, 21, 17, 150, 1); +INSERT INTO `job_equip_wep` (`job_equip_wep_id`, `job_equip_wep_equip`, `job_equip_wep_wep`, `job_equip_wep_ammo`, `job_equip_wep_enabled`) VALUES + (18, 21, 19, 20, 1); +INSERT INTO `job_equip_wep` (`job_equip_wep_id`, `job_equip_wep_equip`, `job_equip_wep_wep`, `job_equip_wep_ammo`, `job_equip_wep_enabled`) VALUES + (19, 25, 4, 1, 1); +INSERT INTO `job_equip_wep` (`job_equip_wep_id`, `job_equip_wep_equip`, `job_equip_wep_wep`, `job_equip_wep_ammo`, `job_equip_wep_enabled`) VALUES + (20, 25, 17, 150, 1); +INSERT INTO `job_equip_wep` (`job_equip_wep_id`, `job_equip_wep_equip`, `job_equip_wep_wep`, `job_equip_wep_ammo`, `job_equip_wep_enabled`) VALUES + (21, 25, 19, 20, 1); +INSERT INTO `job_equip_wep` (`job_equip_wep_id`, `job_equip_wep_equip`, `job_equip_wep_wep`, `job_equip_wep_ammo`, `job_equip_wep_enabled`) VALUES + (22, 29, 3, 1, 1); +INSERT INTO `job_equip_wep` (`job_equip_wep_id`, `job_equip_wep_equip`, `job_equip_wep_wep`, `job_equip_wep_ammo`, `job_equip_wep_enabled`) VALUES + (23, 29, 24, 150, 1); +INSERT INTO `job_equip_wep` (`job_equip_wep_id`, `job_equip_wep_equip`, `job_equip_wep_wep`, `job_equip_wep_ammo`, `job_equip_wep_enabled`) VALUES + (24, 29, 25, 20, 1); +INSERT INTO `job_equip_wep` (`job_equip_wep_id`, `job_equip_wep_equip`, `job_equip_wep_wep`, `job_equip_wep_ammo`, `job_equip_wep_enabled`) VALUES + (25, 33, 3, 1, 1); +INSERT INTO `job_equip_wep` (`job_equip_wep_id`, `job_equip_wep_equip`, `job_equip_wep_wep`, `job_equip_wep_ammo`, `job_equip_wep_enabled`) VALUES + (26, 33, 24, 150, 1); +INSERT INTO `job_equip_wep` (`job_equip_wep_id`, `job_equip_wep_equip`, `job_equip_wep_wep`, `job_equip_wep_ammo`, `job_equip_wep_enabled`) VALUES + (27, 33, 25, 20, 1); +INSERT INTO `job_equip_wep` (`job_equip_wep_id`, `job_equip_wep_equip`, `job_equip_wep_wep`, `job_equip_wep_ammo`, `job_equip_wep_enabled`) VALUES + (28, 37, 3, 1, 1); +INSERT INTO `job_equip_wep` (`job_equip_wep_id`, `job_equip_wep_equip`, `job_equip_wep_wep`, `job_equip_wep_ammo`, `job_equip_wep_enabled`) VALUES + (29, 37, 24, 150, 1); +INSERT INTO `job_equip_wep` (`job_equip_wep_id`, `job_equip_wep_equip`, `job_equip_wep_wep`, `job_equip_wep_ammo`, `job_equip_wep_enabled`) VALUES + (30, 37, 25, 20, 1); +INSERT INTO `job_equip_wep` (`job_equip_wep_id`, `job_equip_wep_equip`, `job_equip_wep_wep`, `job_equip_wep_ammo`, `job_equip_wep_enabled`) VALUES + (31, 4, 3, 1, 1); +INSERT INTO `job_equip_wep` (`job_equip_wep_id`, `job_equip_wep_equip`, `job_equip_wep_wep`, `job_equip_wep_ammo`, `job_equip_wep_enabled`) VALUES + (32, 4, 22, 150, 1); +INSERT INTO `job_equip_wep` (`job_equip_wep_id`, `job_equip_wep_equip`, `job_equip_wep_wep`, `job_equip_wep_ammo`, `job_equip_wep_enabled`) VALUES + (33, 4, 25, 20, 1); +INSERT INTO `job_equip_wep` (`job_equip_wep_id`, `job_equip_wep_equip`, `job_equip_wep_wep`, `job_equip_wep_ammo`, `job_equip_wep_enabled`) VALUES + (34, 8, 24, 150, 1); +INSERT INTO `job_equip_wep` (`job_equip_wep_id`, `job_equip_wep_equip`, `job_equip_wep_wep`, `job_equip_wep_ammo`, `job_equip_wep_enabled`) VALUES + (35, 8, 43, 150, 1); +INSERT INTO `job_equip_wep` (`job_equip_wep_id`, `job_equip_wep_equip`, `job_equip_wep_wep`, `job_equip_wep_ammo`, `job_equip_wep_enabled`) VALUES + (36, 12, 3, 1, 1); +INSERT INTO `job_equip_wep` (`job_equip_wep_id`, `job_equip_wep_equip`, `job_equip_wep_wep`, `job_equip_wep_ammo`, `job_equip_wep_enabled`) VALUES + (37, 12, 17, 5, 1); +INSERT INTO `job_equip_wep` (`job_equip_wep_id`, `job_equip_wep_equip`, `job_equip_wep_wep`, `job_equip_wep_ammo`, `job_equip_wep_enabled`) VALUES + (38, 12, 24, 150, 1); +INSERT INTO `job_equip_wep` (`job_equip_wep_id`, `job_equip_wep_equip`, `job_equip_wep_wep`, `job_equip_wep_ammo`, `job_equip_wep_enabled`) VALUES + (39, 12, 27, 50, 1); +INSERT INTO `job_equip_wep` (`job_equip_wep_id`, `job_equip_wep_equip`, `job_equip_wep_wep`, `job_equip_wep_ammo`, `job_equip_wep_enabled`) VALUES + (40, 12, 29, 350, 1); +INSERT INTO `job_equip_wep` (`job_equip_wep_id`, `job_equip_wep_equip`, `job_equip_wep_wep`, `job_equip_wep_ammo`, `job_equip_wep_enabled`) VALUES + (41, 12, 31, 350, 1); +INSERT INTO `job_equip_wep` (`job_equip_wep_id`, `job_equip_wep_equip`, `job_equip_wep_wep`, `job_equip_wep_ammo`, `job_equip_wep_enabled`) VALUES + (42, 12, 34, 30, 1); +INSERT INTO `job_equip_wep` (`job_equip_wep_id`, `job_equip_wep_equip`, `job_equip_wep_wep`, `job_equip_wep_ammo`, `job_equip_wep_enabled`) VALUES + (43, 16, 3, 1, 1); +INSERT INTO `job_equip_wep` (`job_equip_wep_id`, `job_equip_wep_equip`, `job_equip_wep_wep`, `job_equip_wep_ammo`, `job_equip_wep_enabled`) VALUES + (44, 16, 24, 150, 1); +INSERT INTO `job_equip_wep` (`job_equip_wep_id`, `job_equip_wep_equip`, `job_equip_wep_wep`, `job_equip_wep_ammo`, `job_equip_wep_enabled`) VALUES + (45, 16, 25, 20, 1); +INSERT INTO `job_equip_wep` (`job_equip_wep_id`, `job_equip_wep_equip`, `job_equip_wep_wep`, `job_equip_wep_ammo`, `job_equip_wep_enabled`) VALUES + (46, 16, 29, 350, 1); +INSERT INTO `job_equip_wep` (`job_equip_wep_id`, `job_equip_wep_equip`, `job_equip_wep_wep`, `job_equip_wep_ammo`, `job_equip_wep_enabled`) VALUES + (47, 17, 9, 500, 1); +INSERT INTO `job_equip_wep` (`job_equip_wep_id`, `job_equip_wep_equip`, `job_equip_wep_wep`, `job_equip_wep_ammo`, `job_equip_wep_enabled`) VALUES + (48, 18, 31, 500, 1); +INSERT INTO `job_equip_wep` (`job_equip_wep_id`, `job_equip_wep_equip`, `job_equip_wep_wep`, `job_equip_wep_ammo`, `job_equip_wep_enabled`) VALUES + (49, 18, 11, 1, 1); +INSERT INTO `job_equip_wep` (`job_equip_wep_id`, `job_equip_wep_equip`, `job_equip_wep_wep`, `job_equip_wep_ammo`, `job_equip_wep_enabled`) VALUES + (50, 20, 42, 99999, 1); +INSERT INTO `job_equip_wep` (`job_equip_wep_id`, `job_equip_wep_equip`, `job_equip_wep_wep`, `job_equip_wep_ammo`, `job_equip_wep_enabled`) VALUES + (51, 20, 37, 500, 1); +INSERT INTO `job_equip_wep` (`job_equip_wep_id`, `job_equip_wep_equip`, `job_equip_wep_wep`, `job_equip_wep_ammo`, `job_equip_wep_enabled`) VALUES + (52, 20, 9, 1, 1); +/*!40000 ALTER TABLE `job_equip_wep` ENABLE KEYS */; + +-- Dumping structure for table db24053.job_loc +CREATE TABLE IF NOT EXISTS `job_loc` ( + `job_loc_id` int(11) NOT NULL AUTO_INCREMENT, + `job_loc_job` int(11) NOT NULL DEFAULT '0', + `job_loc_pos_x` float NOT NULL DEFAULT '0', + `job_loc_pos_y` float NOT NULL DEFAULT '0', + `job_loc_pos_z` float NOT NULL DEFAULT '0', + `job_loc_enabled` float NOT NULL DEFAULT '0', + `job_loc_uniform` int(11) NOT NULL DEFAULT '0', + `job_loc_int` int(11) NOT NULL DEFAULT '0', + `job_loc_vw` int(11) NOT NULL DEFAULT '0', + PRIMARY KEY (`job_loc_id`) +) ENGINE=InnoDB AUTO_INCREMENT=53 DEFAULT CHARSET=utf8 COMMENT='Job - Locations'; + +-- Dumping data for table db24053.job_loc: ~50 rows (approximately) +/*!40000 ALTER TABLE `job_loc` DISABLE KEYS */; +INSERT INTO `job_loc` (`job_loc_id`, `job_loc_job`, `job_loc_pos_x`, `job_loc_pos_y`, `job_loc_pos_z`, `job_loc_enabled`, `job_loc_uniform`, `job_loc_int`, `job_loc_vw`) VALUES + (1, 1, 1143.87, -675.18, 14.97, 1, 1, 0, 0); +INSERT INTO `job_loc` (`job_loc_id`, `job_loc_job`, `job_loc_pos_x`, `job_loc_pos_y`, `job_loc_pos_z`, `job_loc_enabled`, `job_loc_uniform`, `job_loc_int`, `job_loc_vw`) VALUES + (2, 1, 340.25, -1123.37, 25.98, 1, 1, 0, 0); +INSERT INTO `job_loc` (`job_loc_id`, `job_loc_job`, `job_loc_pos_x`, `job_loc_pos_y`, `job_loc_pos_z`, `job_loc_enabled`, `job_loc_uniform`, `job_loc_int`, `job_loc_vw`) VALUES + (3, 5, -1253, -138.18, 58.75, 1, 0, 0, 0); +INSERT INTO `job_loc` (`job_loc_id`, `job_loc_job`, `job_loc_pos_x`, `job_loc_pos_y`, `job_loc_pos_z`, `job_loc_enabled`, `job_loc_uniform`, `job_loc_int`, `job_loc_vw`) VALUES + (4, 2, 399.77, -468.9, 11.73, 1, 3, 0, 0); +INSERT INTO `job_loc` (`job_loc_id`, `job_loc_job`, `job_loc_pos_x`, `job_loc_pos_y`, `job_loc_pos_z`, `job_loc_enabled`, `job_loc_uniform`, `job_loc_int`, `job_loc_vw`) VALUES + (5, 2, 508.96, 512.07, 12.1, 1, 3, 0, 0); +INSERT INTO `job_loc` (`job_loc_id`, `job_loc_job`, `job_loc_pos_x`, `job_loc_pos_y`, `job_loc_pos_z`, `job_loc_enabled`, `job_loc_uniform`, `job_loc_int`, `job_loc_vw`) VALUES + (6, 2, -657.43, 762.31, 11.59, 1, 3, 0, 0); +INSERT INTO `job_loc` (`job_loc_id`, `job_loc_job`, `job_loc_pos_x`, `job_loc_pos_y`, `job_loc_pos_z`, `job_loc_enabled`, `job_loc_uniform`, `job_loc_int`, `job_loc_vw`) VALUES + (7, 6, -885.08, -470.44, 13.11, 1, 0, 0, 0); +INSERT INTO `job_loc` (`job_loc_id`, `job_loc_job`, `job_loc_pos_x`, `job_loc_pos_y`, `job_loc_pos_z`, `job_loc_enabled`, `job_loc_uniform`, `job_loc_int`, `job_loc_vw`) VALUES + (8, 4, 254.38, 77.72, 1003.64, 1, 0, 6, 2); +INSERT INTO `job_loc` (`job_loc_id`, `job_loc_job`, `job_loc_pos_x`, `job_loc_pos_y`, `job_loc_pos_z`, `job_loc_enabled`, `job_loc_uniform`, `job_loc_int`, `job_loc_vw`) VALUES + (11, 5, 1144.25, -596.87, 14.97, 1, 0, 0, 0); +INSERT INTO `job_loc` (`job_loc_id`, `job_loc_job`, `job_loc_pos_x`, `job_loc_pos_y`, `job_loc_pos_z`, `job_loc_enabled`, `job_loc_uniform`, `job_loc_int`, `job_loc_vw`) VALUES + (12, 1, -1259.5, -44.5, 58.89, 1, 1, 0, 0); +INSERT INTO `job_loc` (`job_loc_id`, `job_loc_job`, `job_loc_pos_x`, `job_loc_pos_y`, `job_loc_pos_z`, `job_loc_enabled`, `job_loc_uniform`, `job_loc_int`, `job_loc_vw`) VALUES + (13, 5, 183.5, -17.75, 16.21, 1, 0, 0, 0); +INSERT INTO `job_loc` (`job_loc_id`, `job_loc_job`, `job_loc_pos_x`, `job_loc_pos_y`, `job_loc_pos_z`, `job_loc_enabled`, `job_loc_uniform`, `job_loc_int`, `job_loc_vw`) VALUES + (14, 9, 1103.7, -52.45, 7.49, 1, 0, 0, 0); +INSERT INTO `job_loc` (`job_loc_id`, `job_loc_job`, `job_loc_pos_x`, `job_loc_pos_y`, `job_loc_pos_z`, `job_loc_enabled`, `job_loc_uniform`, `job_loc_int`, `job_loc_vw`) VALUES + (15, 9, -78.48, -436.8, 16.17, 1, 0, 0, 0); +INSERT INTO `job_loc` (`job_loc_id`, `job_loc_job`, `job_loc_pos_x`, `job_loc_pos_y`, `job_loc_pos_z`, `job_loc_enabled`, `job_loc_uniform`, `job_loc_int`, `job_loc_vw`) VALUES + (16, 9, -1202.1, -14.67, 53.2, 1, 0, 0, 0); +INSERT INTO `job_loc` (`job_loc_id`, `job_loc_job`, `job_loc_pos_x`, `job_loc_pos_y`, `job_loc_pos_z`, `job_loc_enabled`, `job_loc_uniform`, `job_loc_int`, `job_loc_vw`) VALUES + (17, 13, 1229.2, -740.1, 15.17, 1, 0, 0, 0); +INSERT INTO `job_loc` (`job_loc_id`, `job_loc_job`, `job_loc_pos_x`, `job_loc_pos_y`, `job_loc_pos_z`, `job_loc_enabled`, `job_loc_uniform`, `job_loc_int`, `job_loc_vw`) VALUES + (18, 17, -57.1661, -334.266, 16.9324, 1, 0, 0, 0); +INSERT INTO `job_loc` (`job_loc_id`, `job_loc_job`, `job_loc_pos_x`, `job_loc_pos_y`, `job_loc_pos_z`, `job_loc_enabled`, `job_loc_uniform`, `job_loc_int`, `job_loc_vw`) VALUES + (19, 17, 0, 0, 0, 1, 0, 0, 0); +INSERT INTO `job_loc` (`job_loc_id`, `job_loc_job`, `job_loc_pos_x`, `job_loc_pos_y`, `job_loc_pos_z`, `job_loc_enabled`, `job_loc_uniform`, `job_loc_int`, `job_loc_vw`) VALUES + (20, 17, 1310.2, -1016.3, 14.88, 1, 0, 0, 0); +INSERT INTO `job_loc` (`job_loc_id`, `job_loc_job`, `job_loc_pos_x`, `job_loc_pos_y`, `job_loc_pos_z`, `job_loc_enabled`, `job_loc_uniform`, `job_loc_int`, `job_loc_vw`) VALUES + (21, 21, -66.8, -932.2, 16.47, 1, 0, 0, 0); +INSERT INTO `job_loc` (`job_loc_id`, `job_loc_job`, `job_loc_pos_x`, `job_loc_pos_y`, `job_loc_pos_z`, `job_loc_enabled`, `job_loc_uniform`, `job_loc_int`, `job_loc_vw`) VALUES + (22, 21, 1121.8, 27.8, 1.99, 1, 0, 0, 0); +INSERT INTO `job_loc` (`job_loc_id`, `job_loc_job`, `job_loc_pos_x`, `job_loc_pos_y`, `job_loc_pos_z`, `job_loc_enabled`, `job_loc_uniform`, `job_loc_int`, `job_loc_vw`) VALUES + (23, 3, 894.99, -357.39, 18.185, 1, 0, 0, 0); +INSERT INTO `job_loc` (`job_loc_id`, `job_loc_job`, `job_loc_pos_x`, `job_loc_pos_y`, `job_loc_pos_z`, `job_loc_enabled`, `job_loc_uniform`, `job_loc_int`, `job_loc_vw`) VALUES + (24, 3, 435.4, 1592.29, 17.353, 1, 0, 0, 0); +INSERT INTO `job_loc` (`job_loc_id`, `job_loc_job`, `job_loc_pos_x`, `job_loc_pos_y`, `job_loc_pos_z`, `job_loc_enabled`, `job_loc_uniform`, `job_loc_int`, `job_loc_vw`) VALUES + (25, 3, 974.93, 1870.45, 23.073, 1, 0, 0, 0); +INSERT INTO `job_loc` (`job_loc_id`, `job_loc_job`, `job_loc_pos_x`, `job_loc_pos_y`, `job_loc_pos_z`, `job_loc_enabled`, `job_loc_uniform`, `job_loc_int`, `job_loc_vw`) VALUES + (26, 3, 1233.25, -89.13, 28.034, 1, 0, 0, 0); +INSERT INTO `job_loc` (`job_loc_id`, `job_loc_job`, `job_loc_pos_x`, `job_loc_pos_y`, `job_loc_pos_z`, `job_loc_enabled`, `job_loc_uniform`, `job_loc_int`, `job_loc_vw`) VALUES + (27, 3, 50.12, 679.88, 15.316, 1, 0, 0, 0); +INSERT INTO `job_loc` (`job_loc_id`, `job_loc_job`, `job_loc_pos_x`, `job_loc_pos_y`, `job_loc_pos_z`, `job_loc_enabled`, `job_loc_uniform`, `job_loc_int`, `job_loc_vw`) VALUES + (28, 3, 85.21, 1189.82, 14.755, 1, 0, 0, 0); +INSERT INTO `job_loc` (`job_loc_id`, `job_loc_job`, `job_loc_pos_x`, `job_loc_pos_y`, `job_loc_pos_z`, `job_loc_enabled`, `job_loc_uniform`, `job_loc_int`, `job_loc_vw`) VALUES + (29, 3, 2170.87, 448.87, 6.085, 1, 0, 0, 0); +INSERT INTO `job_loc` (`job_loc_id`, `job_loc_job`, `job_loc_pos_x`, `job_loc_pos_y`, `job_loc_pos_z`, `job_loc_enabled`, `job_loc_uniform`, `job_loc_int`, `job_loc_vw`) VALUES + (30, 3, 213.12, -211.7, 10.752, 1, 0, 0, 0); +INSERT INTO `job_loc` (`job_loc_id`, `job_loc_job`, `job_loc_pos_x`, `job_loc_pos_y`, `job_loc_pos_z`, `job_loc_enabled`, `job_loc_uniform`, `job_loc_int`, `job_loc_vw`) VALUES + (31, 3, -1714.95, 276.31, 22.134, 1, 0, 0, 0); +INSERT INTO `job_loc` (`job_loc_id`, `job_loc_job`, `job_loc_pos_x`, `job_loc_pos_y`, `job_loc_pos_z`, `job_loc_enabled`, `job_loc_uniform`, `job_loc_int`, `job_loc_vw`) VALUES + (32, 3, -1220.73, -231.53, 3.024, 1, 0, 0, 0); +INSERT INTO `job_loc` (`job_loc_id`, `job_loc_job`, `job_loc_pos_x`, `job_loc_pos_y`, `job_loc_pos_z`, `job_loc_enabled`, `job_loc_uniform`, `job_loc_int`, `job_loc_vw`) VALUES + (33, 3, -927.66, 1263.63, 24.587, 1, 0, 0, 0); +INSERT INTO `job_loc` (`job_loc_id`, `job_loc_job`, `job_loc_pos_x`, `job_loc_pos_y`, `job_loc_pos_z`, `job_loc_enabled`, `job_loc_uniform`, `job_loc_int`, `job_loc_vw`) VALUES + (34, 6, -826.06, 1144.41, 12.41, 1, 0, 0, 0); +INSERT INTO `job_loc` (`job_loc_id`, `job_loc_job`, `job_loc_pos_x`, `job_loc_pos_y`, `job_loc_pos_z`, `job_loc_enabled`, `job_loc_uniform`, `job_loc_int`, `job_loc_vw`) VALUES + (35, 2, -872.06, -683.19, 11.23, 1, 3, 0, 0); +INSERT INTO `job_loc` (`job_loc_id`, `job_loc_job`, `job_loc_pos_x`, `job_loc_pos_y`, `job_loc_pos_z`, `job_loc_enabled`, `job_loc_uniform`, `job_loc_int`, `job_loc_vw`) VALUES + (36, 10, -698.22, 942.38, 11.08, 1, 0, 0, 0); +INSERT INTO `job_loc` (`job_loc_id`, `job_loc_job`, `job_loc_pos_x`, `job_loc_pos_y`, `job_loc_pos_z`, `job_loc_enabled`, `job_loc_uniform`, `job_loc_int`, `job_loc_vw`) VALUES + (37, 18, -1146.06, -285.65, 11.2, 1, 0, 0, 0); +INSERT INTO `job_loc` (`job_loc_id`, `job_loc_job`, `job_loc_pos_x`, `job_loc_pos_y`, `job_loc_pos_z`, `job_loc_enabled`, `job_loc_uniform`, `job_loc_int`, `job_loc_vw`) VALUES + (38, 14, -994.88, 185.1, 12.43, 1, 0, 0, 0); +INSERT INTO `job_loc` (`job_loc_id`, `job_loc_job`, `job_loc_pos_x`, `job_loc_pos_y`, `job_loc_pos_z`, `job_loc_enabled`, `job_loc_uniform`, `job_loc_int`, `job_loc_vw`) VALUES + (39, 6, 493.14, 709.31, 11.8, 1, 0, 0, 0); +INSERT INTO `job_loc` (`job_loc_id`, `job_loc_job`, `job_loc_pos_x`, `job_loc_pos_y`, `job_loc_pos_z`, `job_loc_enabled`, `job_loc_uniform`, `job_loc_int`, `job_loc_vw`) VALUES + (40, 22, -1264.42, 6.05, 11.45, 1, 0, 0, 0); +INSERT INTO `job_loc` (`job_loc_id`, `job_loc_job`, `job_loc_pos_x`, `job_loc_pos_y`, `job_loc_pos_z`, `job_loc_enabled`, `job_loc_uniform`, `job_loc_int`, `job_loc_vw`) VALUES + (41, 8, 1172.96, -1323.42, 15.4, 1, 0, 0, 0); +INSERT INTO `job_loc` (`job_loc_id`, `job_loc_job`, `job_loc_pos_x`, `job_loc_pos_y`, `job_loc_pos_z`, `job_loc_enabled`, `job_loc_uniform`, `job_loc_int`, `job_loc_vw`) VALUES + (42, 8, 2034.04, -1405.07, 17.24, 1, 0, 0, 0); +INSERT INTO `job_loc` (`job_loc_id`, `job_loc_job`, `job_loc_pos_x`, `job_loc_pos_y`, `job_loc_pos_z`, `job_loc_enabled`, `job_loc_uniform`, `job_loc_int`, `job_loc_vw`) VALUES + (43, 24, 2309.22, -2088.32, 13.55, 1, 0, 0, 0); +INSERT INTO `job_loc` (`job_loc_id`, `job_loc_job`, `job_loc_pos_x`, `job_loc_pos_y`, `job_loc_pos_z`, `job_loc_enabled`, `job_loc_uniform`, `job_loc_int`, `job_loc_vw`) VALUES + (44, 20, 1765.89, -1885.48, 13.55, 1, 0, 0, 0); +INSERT INTO `job_loc` (`job_loc_id`, `job_loc_job`, `job_loc_pos_x`, `job_loc_pos_y`, `job_loc_pos_z`, `job_loc_enabled`, `job_loc_uniform`, `job_loc_int`, `job_loc_vw`) VALUES + (45, 16, 1808.64, -1938.58, 13.55, 1, 0, 0, 0); +INSERT INTO `job_loc` (`job_loc_id`, `job_loc_job`, `job_loc_pos_x`, `job_loc_pos_y`, `job_loc_pos_z`, `job_loc_enabled`, `job_loc_uniform`, `job_loc_int`, `job_loc_vw`) VALUES + (46, 12, 1133.7, -1312.92, 13.58, 1, 0, 0, 0); +INSERT INTO `job_loc` (`job_loc_id`, `job_loc_job`, `job_loc_pos_x`, `job_loc_pos_y`, `job_loc_pos_z`, `job_loc_enabled`, `job_loc_uniform`, `job_loc_int`, `job_loc_vw`) VALUES + (47, 4, 2290.49, 2430.09, 10.82, 1, 0, 0, 0); +INSERT INTO `job_loc` (`job_loc_id`, `job_loc_job`, `job_loc_pos_x`, `job_loc_pos_y`, `job_loc_pos_z`, `job_loc_enabled`, `job_loc_uniform`, `job_loc_int`, `job_loc_vw`) VALUES + (48, 12, 1744.95, 2082.8, 10.82, 1, 0, 0, 0); +INSERT INTO `job_loc` (`job_loc_id`, `job_loc_job`, `job_loc_pos_x`, `job_loc_pos_y`, `job_loc_pos_z`, `job_loc_enabled`, `job_loc_uniform`, `job_loc_int`, `job_loc_vw`) VALUES + (49, 4, -1605.38, 711.5, 13.87, 1, 0, 0, 0); +INSERT INTO `job_loc` (`job_loc_id`, `job_loc_job`, `job_loc_pos_x`, `job_loc_pos_y`, `job_loc_pos_z`, `job_loc_enabled`, `job_loc_uniform`, `job_loc_int`, `job_loc_vw`) VALUES + (50, 8, -2655.15, 638.72, 14.45, 1, 0, 0, 0); +INSERT INTO `job_loc` (`job_loc_id`, `job_loc_job`, `job_loc_pos_x`, `job_loc_pos_y`, `job_loc_pos_z`, `job_loc_enabled`, `job_loc_uniform`, `job_loc_int`, `job_loc_vw`) VALUES + (51, 12, -2026.34, 67.17, 28.69, 1, 0, 0, 0); +INSERT INTO `job_loc` (`job_loc_id`, `job_loc_job`, `job_loc_pos_x`, `job_loc_pos_y`, `job_loc_pos_z`, `job_loc_enabled`, `job_loc_uniform`, `job_loc_int`, `job_loc_vw`) VALUES + (52, 17, -1130.99, -177.76, 43.72, 1, 0, 0, 0); +/*!40000 ALTER TABLE `job_loc` ENABLE KEYS */; + +-- Dumping structure for table db24053.job_main +CREATE TABLE IF NOT EXISTS `job_main` ( + `job_id` int(11) NOT NULL AUTO_INCREMENT, + `job_server` int(11) NOT NULL DEFAULT '0', + `job_enabled` int(11) NOT NULL DEFAULT '1', + `job_name` varchar(50) NOT NULL DEFAULT 'Unnamed', + `job_pickup` int(11) NOT NULL DEFAULT '0', + `job_type` int(11) NOT NULL DEFAULT '0', + `job_blip` int(11) NOT NULL DEFAULT '0', + `job_colour_r` int(11) NOT NULL DEFAULT '255', + `job_colour_g` int(11) NOT NULL DEFAULT '255', + `job_colour_b` int(11) NOT NULL DEFAULT '255', + `job_whitelist` int(11) NOT NULL DEFAULT '0', + PRIMARY KEY (`job_id`) +) ENGINE=InnoDB AUTO_INCREMENT=25 DEFAULT CHARSET=utf8 COMMENT='Jobs'; + +-- Dumping data for table db24053.job_main: ~24 rows (approximately) +/*!40000 ALTER TABLE `job_main` DISABLE KEYS */; +INSERT INTO `job_main` (`job_id`, `job_server`, `job_enabled`, `job_name`, `job_pickup`, `job_type`, `job_blip`, `job_colour_r`, `job_colour_g`, `job_colour_b`, `job_whitelist`) VALUES + (1, 1, 1, 'Police', 1383, 1, 0, 70, 130, 180, 0); +INSERT INTO `job_main` (`job_id`, `job_server`, `job_enabled`, `job_name`, `job_pickup`, `job_type`, `job_blip`, `job_colour_r`, `job_colour_g`, `job_colour_b`, `job_whitelist`) VALUES + (2, 2, 1, 'Police', 375, 1, 0, 70, 130, 180, 0); +INSERT INTO `job_main` (`job_id`, `job_server`, `job_enabled`, `job_name`, `job_pickup`, `job_type`, `job_blip`, `job_colour_r`, `job_colour_g`, `job_colour_b`, `job_whitelist`) VALUES + (3, 3, 1, 'Police', 0, 1, 0, 70, 130, 180, 0); +INSERT INTO `job_main` (`job_id`, `job_server`, `job_enabled`, `job_name`, `job_pickup`, `job_type`, `job_blip`, `job_colour_r`, `job_colour_g`, `job_colour_b`, `job_whitelist`) VALUES + (4, 4, 1, 'Police', 1247, 1, 30, 70, 130, 180, 0); +INSERT INTO `job_main` (`job_id`, `job_server`, `job_enabled`, `job_name`, `job_pickup`, `job_type`, `job_blip`, `job_colour_r`, `job_colour_g`, `job_colour_b`, `job_whitelist`) VALUES + (5, 1, 1, 'Paramedic', 1362, 2, 0, 219, 112, 147, 0); +INSERT INTO `job_main` (`job_id`, `job_server`, `job_enabled`, `job_name`, `job_pickup`, `job_type`, `job_blip`, `job_colour_r`, `job_colour_g`, `job_colour_b`, `job_whitelist`) VALUES + (6, 2, 1, 'Paramedic', 366, 2, 0, 219, 112, 147, 0); +INSERT INTO `job_main` (`job_id`, `job_server`, `job_enabled`, `job_name`, `job_pickup`, `job_type`, `job_blip`, `job_colour_r`, `job_colour_g`, `job_colour_b`, `job_whitelist`) VALUES + (7, 3, 1, 'Paramedic', 0, 2, 0, 219, 112, 147, 0); +INSERT INTO `job_main` (`job_id`, `job_server`, `job_enabled`, `job_name`, `job_pickup`, `job_type`, `job_blip`, `job_colour_r`, `job_colour_g`, `job_colour_b`, `job_whitelist`) VALUES + (8, 4, 1, 'Paramedic', 1240, 2, 22, 219, 112, 147, 0); +INSERT INTO `job_main` (`job_id`, `job_server`, `job_enabled`, `job_name`, `job_pickup`, `job_type`, `job_blip`, `job_colour_r`, `job_colour_g`, `job_colour_b`, `job_whitelist`) VALUES + (9, 1, 1, 'Firefighter', 1364, 3, 0, 205, 92, 92, 0); +INSERT INTO `job_main` (`job_id`, `job_server`, `job_enabled`, `job_name`, `job_pickup`, `job_type`, `job_blip`, `job_colour_r`, `job_colour_g`, `job_colour_b`, `job_whitelist`) VALUES + (10, 2, 1, 'Firefighter', 365, 3, 0, 205, 92, 92, 0); +INSERT INTO `job_main` (`job_id`, `job_server`, `job_enabled`, `job_name`, `job_pickup`, `job_type`, `job_blip`, `job_colour_r`, `job_colour_g`, `job_colour_b`, `job_whitelist`) VALUES + (11, 3, 1, 'Firefighter', 0, 3, 0, 205, 92, 92, 0); +INSERT INTO `job_main` (`job_id`, `job_server`, `job_enabled`, `job_name`, `job_pickup`, `job_type`, `job_blip`, `job_colour_r`, `job_colour_g`, `job_colour_b`, `job_whitelist`) VALUES + (12, 4, 1, 'Firefighter', 1318, 3, 20, 205, 92, 92, 0); +INSERT INTO `job_main` (`job_id`, `job_server`, `job_enabled`, `job_name`, `job_pickup`, `job_type`, `job_blip`, `job_colour_r`, `job_colour_g`, `job_colour_b`, `job_whitelist`) VALUES + (13, 1, 1, 'Taxi Driver', 1361, 5, 0, 240, 230, 140, 0); +INSERT INTO `job_main` (`job_id`, `job_server`, `job_enabled`, `job_name`, `job_pickup`, `job_type`, `job_blip`, `job_colour_r`, `job_colour_g`, `job_colour_b`, `job_whitelist`) VALUES + (14, 2, 1, 'Taxi Driver', 365, 5, 0, 240, 230, 140, 0); +INSERT INTO `job_main` (`job_id`, `job_server`, `job_enabled`, `job_name`, `job_pickup`, `job_type`, `job_blip`, `job_colour_r`, `job_colour_g`, `job_colour_b`, `job_whitelist`) VALUES + (15, 3, 1, 'Taxi Driver', 0, 5, 0, 240, 230, 140, 0); +INSERT INTO `job_main` (`job_id`, `job_server`, `job_enabled`, `job_name`, `job_pickup`, `job_type`, `job_blip`, `job_colour_r`, `job_colour_g`, `job_colour_b`, `job_whitelist`) VALUES + (16, 4, 1, 'Taxi Driver', 1318, 5, 0, 240, 230, 140, 0); +INSERT INTO `job_main` (`job_id`, `job_server`, `job_enabled`, `job_name`, `job_pickup`, `job_type`, `job_blip`, `job_colour_r`, `job_colour_g`, `job_colour_b`, `job_whitelist`) VALUES + (17, 1, 1, 'Bus Driver', 1361, 4, 0, 50, 205, 50, 0); +INSERT INTO `job_main` (`job_id`, `job_server`, `job_enabled`, `job_name`, `job_pickup`, `job_type`, `job_blip`, `job_colour_r`, `job_colour_g`, `job_colour_b`, `job_whitelist`) VALUES + (18, 2, 1, 'Bus Driver', 365, 4, 0, 50, 205, 50, 0); +INSERT INTO `job_main` (`job_id`, `job_server`, `job_enabled`, `job_name`, `job_pickup`, `job_type`, `job_blip`, `job_colour_r`, `job_colour_g`, `job_colour_b`, `job_whitelist`) VALUES + (19, 3, 1, 'Bus Driver', 0, 4, 0, 50, 205, 50, 0); +INSERT INTO `job_main` (`job_id`, `job_server`, `job_enabled`, `job_name`, `job_pickup`, `job_type`, `job_blip`, `job_colour_r`, `job_colour_g`, `job_colour_b`, `job_whitelist`) VALUES + (20, 4, 1, 'Bus Driver', 1318, 4, 0, 50, 205, 50, 0); +INSERT INTO `job_main` (`job_id`, `job_server`, `job_enabled`, `job_name`, `job_pickup`, `job_type`, `job_blip`, `job_colour_r`, `job_colour_g`, `job_colour_b`, `job_whitelist`) VALUES + (21, 1, 1, 'Trash Collector', 1351, 6, 0, 150, 150, 150, 0); +INSERT INTO `job_main` (`job_id`, `job_server`, `job_enabled`, `job_name`, `job_pickup`, `job_type`, `job_blip`, `job_colour_r`, `job_colour_g`, `job_colour_b`, `job_whitelist`) VALUES + (22, 2, 1, 'Trash Collector', 365, 6, 0, 150, 150, 150, 0); +INSERT INTO `job_main` (`job_id`, `job_server`, `job_enabled`, `job_name`, `job_pickup`, `job_type`, `job_blip`, `job_colour_r`, `job_colour_g`, `job_colour_b`, `job_whitelist`) VALUES + (23, 3, 1, 'Trash Collector', 0, 6, 0, 150, 150, 150, 0); +INSERT INTO `job_main` (`job_id`, `job_server`, `job_enabled`, `job_name`, `job_pickup`, `job_type`, `job_blip`, `job_colour_r`, `job_colour_g`, `job_colour_b`, `job_whitelist`) VALUES + (24, 4, 1, 'Trash Collector', 1318, 6, 0, 150, 150, 150, 0); +/*!40000 ALTER TABLE `job_main` ENABLE KEYS */; + +-- Dumping structure for table db24053.job_uniform +CREATE TABLE IF NOT EXISTS `job_uniform` ( + `job_uniform_id` int(11) NOT NULL AUTO_INCREMENT, + `job_uniform_job` int(11) NOT NULL DEFAULT '0', + `job_uniform_skin` int(11) NOT NULL DEFAULT '0', + `job_uniform_enabled` int(11) NOT NULL DEFAULT '0', + `job_uniform_minrank` int(11) NOT NULL DEFAULT '0', + `job_uniform_name` varchar(50) NOT NULL DEFAULT 'Unnamed', + PRIMARY KEY (`job_uniform_id`) +) ENGINE=InnoDB AUTO_INCREMENT=62 DEFAULT CHARSET=utf8 COMMENT='Jobs - Uniforms'; + +-- Dumping data for table db24053.job_uniform: ~60 rows (approximately) +/*!40000 ALTER TABLE `job_uniform` DISABLE KEYS */; +INSERT INTO `job_uniform` (`job_uniform_id`, `job_uniform_job`, `job_uniform_skin`, `job_uniform_enabled`, `job_uniform_minrank`, `job_uniform_name`) VALUES + (1, 1, 1, 1, 0, 'Police Officer 1'); +INSERT INTO `job_uniform` (`job_uniform_id`, `job_uniform_job`, `job_uniform_skin`, `job_uniform_enabled`, `job_uniform_minrank`, `job_uniform_name`) VALUES + (2, 1, 92, 1, 0, 'Police Officer 2'); +INSERT INTO `job_uniform` (`job_uniform_id`, `job_uniform_job`, `job_uniform_skin`, `job_uniform_enabled`, `job_uniform_minrank`, `job_uniform_name`) VALUES + (3, 2, 1, 1, 0, 'Police Officer 1'); +INSERT INTO `job_uniform` (`job_uniform_id`, `job_uniform_job`, `job_uniform_skin`, `job_uniform_enabled`, `job_uniform_minrank`, `job_uniform_name`) VALUES + (4, 2, 120, 1, 0, 'Officer Lance Vance'); +INSERT INTO `job_uniform` (`job_uniform_id`, `job_uniform_job`, `job_uniform_skin`, `job_uniform_enabled`, `job_uniform_minrank`, `job_uniform_name`) VALUES + (5, 2, 97, 1, 1, 'Detective 1'); +INSERT INTO `job_uniform` (`job_uniform_id`, `job_uniform_job`, `job_uniform_skin`, `job_uniform_enabled`, `job_uniform_minrank`, `job_uniform_name`) VALUES + (6, 2, 98, 1, 1, 'Detective 2'); +INSERT INTO `job_uniform` (`job_uniform_id`, `job_uniform_job`, `job_uniform_skin`, `job_uniform_enabled`, `job_uniform_minrank`, `job_uniform_name`) VALUES + (7, 2, 99, 1, 1, 'Detective 3'); +INSERT INTO `job_uniform` (`job_uniform_id`, `job_uniform_job`, `job_uniform_skin`, `job_uniform_enabled`, `job_uniform_minrank`, `job_uniform_name`) VALUES + (8, 2, 100, 1, 1, 'Detective 4'); +INSERT INTO `job_uniform` (`job_uniform_id`, `job_uniform_job`, `job_uniform_skin`, `job_uniform_enabled`, `job_uniform_minrank`, `job_uniform_name`) VALUES + (9, 2, 101, 1, 1, 'Detective 5'); +INSERT INTO `job_uniform` (`job_uniform_id`, `job_uniform_job`, `job_uniform_skin`, `job_uniform_enabled`, `job_uniform_minrank`, `job_uniform_name`) VALUES + (10, 2, 102, 1, 1, 'Detective 6'); +INSERT INTO `job_uniform` (`job_uniform_id`, `job_uniform_job`, `job_uniform_skin`, `job_uniform_enabled`, `job_uniform_minrank`, `job_uniform_name`) VALUES + (11, 4, 280, 1, 0, 'Los Santos Police Officer'); +INSERT INTO `job_uniform` (`job_uniform_id`, `job_uniform_job`, `job_uniform_skin`, `job_uniform_enabled`, `job_uniform_minrank`, `job_uniform_name`) VALUES + (12, 4, 281, 1, 0, 'San Fierro Police Officer'); +INSERT INTO `job_uniform` (`job_uniform_id`, `job_uniform_job`, `job_uniform_skin`, `job_uniform_enabled`, `job_uniform_minrank`, `job_uniform_name`) VALUES + (13, 4, 282, 1, 0, 'Las Venturas Police Officer'); +INSERT INTO `job_uniform` (`job_uniform_id`, `job_uniform_job`, `job_uniform_skin`, `job_uniform_enabled`, `job_uniform_minrank`, `job_uniform_name`) VALUES + (14, 4, 284, 1, 0, 'Motorcycle Cop'); +INSERT INTO `job_uniform` (`job_uniform_id`, `job_uniform_job`, `job_uniform_skin`, `job_uniform_enabled`, `job_uniform_minrank`, `job_uniform_name`) VALUES + (15, 4, 165, 1, 0, 'Detective 1'); +INSERT INTO `job_uniform` (`job_uniform_id`, `job_uniform_job`, `job_uniform_skin`, `job_uniform_enabled`, `job_uniform_minrank`, `job_uniform_name`) VALUES + (16, 4, 166, 1, 0, 'Detective 2'); +INSERT INTO `job_uniform` (`job_uniform_id`, `job_uniform_job`, `job_uniform_skin`, `job_uniform_enabled`, `job_uniform_minrank`, `job_uniform_name`) VALUES + (17, 4, 285, 1, 2, 'SWAT'); +INSERT INTO `job_uniform` (`job_uniform_id`, `job_uniform_job`, `job_uniform_skin`, `job_uniform_enabled`, `job_uniform_minrank`, `job_uniform_name`) VALUES + (18, 4, 283, 1, 3, 'Sheriff 1'); +INSERT INTO `job_uniform` (`job_uniform_id`, `job_uniform_job`, `job_uniform_skin`, `job_uniform_enabled`, `job_uniform_minrank`, `job_uniform_name`) VALUES + (19, 4, 288, 1, 3, 'Sheriff 2'); +INSERT INTO `job_uniform` (`job_uniform_id`, `job_uniform_job`, `job_uniform_skin`, `job_uniform_enabled`, `job_uniform_minrank`, `job_uniform_name`) VALUES + (20, 4, 265, 1, 0, 'Officer Frank Tenpenny'); +INSERT INTO `job_uniform` (`job_uniform_id`, `job_uniform_job`, `job_uniform_skin`, `job_uniform_enabled`, `job_uniform_minrank`, `job_uniform_name`) VALUES + (21, 4, 266, 1, 0, 'Officer Eddie Pulaski'); +INSERT INTO `job_uniform` (`job_uniform_id`, `job_uniform_job`, `job_uniform_skin`, `job_uniform_enabled`, `job_uniform_minrank`, `job_uniform_name`) VALUES + (22, 4, 267, 1, 0, 'Officer Jimmy Hernandez'); +INSERT INTO `job_uniform` (`job_uniform_id`, `job_uniform_job`, `job_uniform_skin`, `job_uniform_enabled`, `job_uniform_minrank`, `job_uniform_name`) VALUES + (23, 3, -183203150, 1, 0, 'Police Officer 1'); +INSERT INTO `job_uniform` (`job_uniform_id`, `job_uniform_job`, `job_uniform_skin`, `job_uniform_enabled`, `job_uniform_minrank`, `job_uniform_name`) VALUES + (24, 3, -1518937979, 1, 0, 'Police Officer 2'); +INSERT INTO `job_uniform` (`job_uniform_id`, `job_uniform_job`, `job_uniform_skin`, `job_uniform_enabled`, `job_uniform_minrank`, `job_uniform_name`) VALUES + (25, 3, -370395528, 1, 0, 'Fat Police Officer'); +INSERT INTO `job_uniform` (`job_uniform_id`, `job_uniform_job`, `job_uniform_skin`, `job_uniform_enabled`, `job_uniform_minrank`, `job_uniform_name`) VALUES + (26, 3, -999506922, 1, 1, 'Detective 1'); +INSERT INTO `job_uniform` (`job_uniform_id`, `job_uniform_job`, `job_uniform_skin`, `job_uniform_enabled`, `job_uniform_minrank`, `job_uniform_name`) VALUES + (27, 5, 5, 1, 0, 'Paramedic 1'); +INSERT INTO `job_uniform` (`job_uniform_id`, `job_uniform_job`, `job_uniform_skin`, `job_uniform_enabled`, `job_uniform_minrank`, `job_uniform_name`) VALUES + (28, 5, 72, 1, 0, 'Paramedic 2'); +INSERT INTO `job_uniform` (`job_uniform_id`, `job_uniform_job`, `job_uniform_skin`, `job_uniform_enabled`, `job_uniform_minrank`, `job_uniform_name`) VALUES + (29, 5, 73, 1, 0, 'Paramedic 3'); +INSERT INTO `job_uniform` (`job_uniform_id`, `job_uniform_job`, `job_uniform_skin`, `job_uniform_enabled`, `job_uniform_minrank`, `job_uniform_name`) VALUES + (30, 6, 5, 1, 0, 'Paramedic 1'); +INSERT INTO `job_uniform` (`job_uniform_id`, `job_uniform_job`, `job_uniform_skin`, `job_uniform_enabled`, `job_uniform_minrank`, `job_uniform_name`) VALUES + (31, 6, 5, 1, 0, 'Paramedic 1'); +INSERT INTO `job_uniform` (`job_uniform_id`, `job_uniform_job`, `job_uniform_skin`, `job_uniform_enabled`, `job_uniform_minrank`, `job_uniform_name`) VALUES + (32, 7, -1175077216, 1, 0, 'Paramedic 1'); +INSERT INTO `job_uniform` (`job_uniform_id`, `job_uniform_job`, `job_uniform_skin`, `job_uniform_enabled`, `job_uniform_minrank`, `job_uniform_name`) VALUES + (33, 8, 274, 1, 0, 'Paramedic 1'); +INSERT INTO `job_uniform` (`job_uniform_id`, `job_uniform_job`, `job_uniform_skin`, `job_uniform_enabled`, `job_uniform_minrank`, `job_uniform_name`) VALUES + (34, 8, 275, 1, 0, 'Paramedic 2'); +INSERT INTO `job_uniform` (`job_uniform_id`, `job_uniform_job`, `job_uniform_skin`, `job_uniform_enabled`, `job_uniform_minrank`, `job_uniform_name`) VALUES + (35, 8, 276, 1, 0, 'Paramedic 3'); +INSERT INTO `job_uniform` (`job_uniform_id`, `job_uniform_job`, `job_uniform_skin`, `job_uniform_enabled`, `job_uniform_minrank`, `job_uniform_name`) VALUES + (36, 11, -610224615, 1, 0, 'Firefighter'); +INSERT INTO `job_uniform` (`job_uniform_id`, `job_uniform_job`, `job_uniform_skin`, `job_uniform_enabled`, `job_uniform_minrank`, `job_uniform_name`) VALUES + (37, 11, 610888851, 1, 0, 'Fire Chief'); +INSERT INTO `job_uniform` (`job_uniform_id`, `job_uniform_job`, `job_uniform_skin`, `job_uniform_enabled`, `job_uniform_minrank`, `job_uniform_name`) VALUES + (38, 11, 277, 1, 0, 'Firefighter 1'); +INSERT INTO `job_uniform` (`job_uniform_id`, `job_uniform_job`, `job_uniform_skin`, `job_uniform_enabled`, `job_uniform_minrank`, `job_uniform_name`) VALUES + (39, 12, 278, 1, 0, 'Firefighter 2'); +INSERT INTO `job_uniform` (`job_uniform_id`, `job_uniform_job`, `job_uniform_skin`, `job_uniform_enabled`, `job_uniform_minrank`, `job_uniform_name`) VALUES + (40, 12, 279, 1, 0, 'Firefighter 3'); +INSERT INTO `job_uniform` (`job_uniform_id`, `job_uniform_job`, `job_uniform_skin`, `job_uniform_enabled`, `job_uniform_minrank`, `job_uniform_name`) VALUES + (42, 13, 8, 1, 0, 'Taxi Driver 1'); +INSERT INTO `job_uniform` (`job_uniform_id`, `job_uniform_job`, `job_uniform_skin`, `job_uniform_enabled`, `job_uniform_minrank`, `job_uniform_name`) VALUES + (43, 14, 8, 1, 0, 'Taxi Driver 1'); +INSERT INTO `job_uniform` (`job_uniform_id`, `job_uniform_job`, `job_uniform_skin`, `job_uniform_enabled`, `job_uniform_minrank`, `job_uniform_name`) VALUES + (44, 16, 7, 1, 0, 'Taxi Driver 1'); +INSERT INTO `job_uniform` (`job_uniform_id`, `job_uniform_job`, `job_uniform_skin`, `job_uniform_enabled`, `job_uniform_minrank`, `job_uniform_name`) VALUES + (45, 16, 142, 1, 0, 'Taxi Driver 2'); +INSERT INTO `job_uniform` (`job_uniform_id`, `job_uniform_job`, `job_uniform_skin`, `job_uniform_enabled`, `job_uniform_minrank`, `job_uniform_name`) VALUES + (46, 17, 8, 1, 0, 'Bus Driver 1'); +INSERT INTO `job_uniform` (`job_uniform_id`, `job_uniform_job`, `job_uniform_skin`, `job_uniform_enabled`, `job_uniform_minrank`, `job_uniform_name`) VALUES + (47, 18, 8, 1, 0, 'Bus Driver 1'); +INSERT INTO `job_uniform` (`job_uniform_id`, `job_uniform_job`, `job_uniform_skin`, `job_uniform_enabled`, `job_uniform_minrank`, `job_uniform_name`) VALUES + (48, 20, 7, 1, 0, 'Bus Driver 1'); +INSERT INTO `job_uniform` (`job_uniform_id`, `job_uniform_job`, `job_uniform_skin`, `job_uniform_enabled`, `job_uniform_minrank`, `job_uniform_name`) VALUES + (49, 20, 142, 1, 0, 'Bus Driver 2'); +INSERT INTO `job_uniform` (`job_uniform_id`, `job_uniform_job`, `job_uniform_skin`, `job_uniform_enabled`, `job_uniform_minrank`, `job_uniform_name`) VALUES + (50, 21, 53, 1, 0, 'Garbage Collector 1'); +INSERT INTO `job_uniform` (`job_uniform_id`, `job_uniform_job`, `job_uniform_skin`, `job_uniform_enabled`, `job_uniform_minrank`, `job_uniform_name`) VALUES + (51, 21, 54, 1, 0, 'Garbage Collector 2'); +INSERT INTO `job_uniform` (`job_uniform_id`, `job_uniform_job`, `job_uniform_skin`, `job_uniform_enabled`, `job_uniform_minrank`, `job_uniform_name`) VALUES + (52, 22, 53, 1, 0, 'Garbage Collector 1'); +INSERT INTO `job_uniform` (`job_uniform_id`, `job_uniform_job`, `job_uniform_skin`, `job_uniform_enabled`, `job_uniform_minrank`, `job_uniform_name`) VALUES + (53, 22, 54, 1, 0, 'Garbage Collector 2'); +INSERT INTO `job_uniform` (`job_uniform_id`, `job_uniform_job`, `job_uniform_skin`, `job_uniform_enabled`, `job_uniform_minrank`, `job_uniform_name`) VALUES + (54, 24, 16, 1, 0, 'Garbage Collector 1'); +INSERT INTO `job_uniform` (`job_uniform_id`, `job_uniform_job`, `job_uniform_skin`, `job_uniform_enabled`, `job_uniform_minrank`, `job_uniform_name`) VALUES + (55, 23, 1136499716, 1, 0, 'Garbage Collector 1'); +INSERT INTO `job_uniform` (`job_uniform_id`, `job_uniform_job`, `job_uniform_skin`, `job_uniform_enabled`, `job_uniform_minrank`, `job_uniform_name`) VALUES + (56, 19, 134077503, 1, 0, 'Bus Driver 1'); +INSERT INTO `job_uniform` (`job_uniform_id`, `job_uniform_job`, `job_uniform_skin`, `job_uniform_enabled`, `job_uniform_minrank`, `job_uniform_name`) VALUES + (57, 15, 8772846, 1, 0, 'Taxi Driver 1'); +INSERT INTO `job_uniform` (`job_uniform_id`, `job_uniform_job`, `job_uniform_skin`, `job_uniform_enabled`, `job_uniform_minrank`, `job_uniform_name`) VALUES + (58, 3, -89302119, 1, 3, 'State Trooper'); +INSERT INTO `job_uniform` (`job_uniform_id`, `job_uniform_job`, `job_uniform_skin`, `job_uniform_enabled`, `job_uniform_minrank`, `job_uniform_name`) VALUES + (59, 3, -1004762946, 1, 2, 'SWAT'); +INSERT INTO `job_uniform` (`job_uniform_id`, `job_uniform_job`, `job_uniform_skin`, `job_uniform_enabled`, `job_uniform_minrank`, `job_uniform_name`) VALUES + (60, 2, 166, 1, 0, 'Officer Tommy Vercetti'); +INSERT INTO `job_uniform` (`job_uniform_id`, `job_uniform_job`, `job_uniform_skin`, `job_uniform_enabled`, `job_uniform_minrank`, `job_uniform_name`) VALUES + (61, 9, 6, 1, 0, 'Firefighter'); +/*!40000 ALTER TABLE `job_uniform` ENABLE KEYS */; + +-- Dumping structure for table db24053.job_wl +CREATE TABLE IF NOT EXISTS `job_wl` ( + `job_wl_id` int(11) NOT NULL AUTO_INCREMENT, + `job_wl_job` int(11) NOT NULL DEFAULT '0', + `job_wl_sacct` int(11) NOT NULL DEFAULT '0', + `job_wl_who_added` int(11) NOT NULL DEFAULT '0', + `job_wl_when_added` int(11) NOT NULL DEFAULT '0', + `job_wl_enabled` int(11) NOT NULL DEFAULT '1', + PRIMARY KEY (`job_wl_id`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Jobs - Whitelist'; + +-- Dumping data for table db24053.job_wl: ~0 rows (approximately) +/*!40000 ALTER TABLE `job_wl` DISABLE KEYS */; +/*!40000 ALTER TABLE `job_wl` ENABLE KEYS */; + +-- Dumping structure for table db24053.log_admin +CREATE TABLE IF NOT EXISTS `log_admin` ( + `log_admin_id` int(11) NOT NULL AUTO_INCREMENT, + `log_admin_target` int(11) NOT NULL DEFAULT '0', + `log_admin_msg` varchar(128) NOT NULL DEFAULT '', + `log_admin_type` int(11) NOT NULL DEFAULT '0', + `log_admin_admin` int(11) NOT NULL DEFAULT '0', + `log_admin_timestamp` int(32) NOT NULL DEFAULT '0', + PRIMARY KEY (`log_admin_id`) +) ENGINE=InnoDB DEFAULT CHARSET=latin1 COMMENT='Log - Admin Actions'; + +-- Dumping data for table db24053.log_admin: ~0 rows (approximately) +/*!40000 ALTER TABLE `log_admin` DISABLE KEYS */; +/*!40000 ALTER TABLE `log_admin` ENABLE KEYS */; + +-- Dumping structure for table db24053.log_chat +CREATE TABLE IF NOT EXISTS `log_chat` ( + `log_chat_id` int(11) NOT NULL AUTO_INCREMENT, + `log_chat_server` int(11) NOT NULL DEFAULT '0', + `log_chat_sacct` int(11) NOT NULL DEFAULT '0', + `log_chat_type` int(11) NOT NULL DEFAULT '0', + `log_chat_msg` varchar(128) NOT NULL DEFAULT '', + `log_chat_timestamp` int(32) NOT NULL DEFAULT '0', + PRIMARY KEY (`log_chat_id`) +) ENGINE=InnoDB DEFAULT CHARSET=latin1 COMMENT='Log - Game Chat'; + +-- Dumping data for table db24053.log_chat: ~0 rows (approximately) +/*!40000 ALTER TABLE `log_chat` DISABLE KEYS */; +/*!40000 ALTER TABLE `log_chat` ENABLE KEYS */; + +-- Dumping structure for table db24053.log_conn +CREATE TABLE IF NOT EXISTS `log_conn` ( + `log_conn_id` int(11) NOT NULL AUTO_INCREMENT, + `log_conn_name` varchar(64) NOT NULL DEFAULT 'Unknown', + `log_conn_server` int(11) NOT NULL DEFAULT '0', + `log_conn_ip` int(11) NOT NULL DEFAULT '0', + `log_conn_when_connect` int(32) NOT NULL DEFAULT '0', + `log_conn_when_disconnect` int(32) NOT NULL DEFAULT '0', + `log_conn_gameversion` int(11) NOT NULL DEFAULT '0', + PRIMARY KEY (`log_conn_id`) +) ENGINE=InnoDB DEFAULT CHARSET=latin1 COMMENT='Log - Connections'; + +-- Dumping data for table db24053.log_conn: ~0 rows (approximately) +/*!40000 ALTER TABLE `log_conn` DISABLE KEYS */; +/*!40000 ALTER TABLE `log_conn` ENABLE KEYS */; + +-- Dumping structure for table db24053.log_death +CREATE TABLE IF NOT EXISTS `log_death` ( + `log_death_id` int(11) NOT NULL AUTO_INCREMENT, + `log_death_server` int(11) NOT NULL DEFAULT '0', + `log_death_who_died` int(11) NOT NULL DEFAULT '0', + `log_death_who_killed` int(11) NOT NULL DEFAULT '0', + `log_death_timestamp` int(32) NOT NULL DEFAULT '0', + `log_death_pedpiece` int(11) NOT NULL DEFAULT '0', + `log_death_weapon` int(11) NOT NULL DEFAULT '0', + PRIMARY KEY (`log_death_id`) +) ENGINE=InnoDB DEFAULT CHARSET=latin1 COMMENT='Log - Deaths'; + +-- Dumping data for table db24053.log_death: ~0 rows (approximately) +/*!40000 ALTER TABLE `log_death` DISABLE KEYS */; +/*!40000 ALTER TABLE `log_death` ENABLE KEYS */; + +-- Dumping structure for table db24053.log_pns +CREATE TABLE IF NOT EXISTS `log_pns` ( + `log_pns_id` int(11) NOT NULL AUTO_INCREMENT, + `log_pns_pns` int(11) DEFAULT '0', + `log_pns_when_used` int(32) DEFAULT '0', + `log_pns_conn` int(11) DEFAULT '0', + `log_pns_veh` int(11) DEFAULT '0', + `log_pns_action` float DEFAULT '0', + `log_pns_paid` int(11) DEFAULT '0', + `log_pns_detail` int(11) DEFAULT '0', + PRIMARY KEY (`log_pns_id`) +) ENGINE=InnoDB DEFAULT CHARSET=latin1 COMMENT='Log - Pay and Spray'; + +-- Dumping data for table db24053.log_pns: ~0 rows (approximately) +/*!40000 ALTER TABLE `log_pns` DISABLE KEYS */; +/*!40000 ALTER TABLE `log_pns` ENABLE KEYS */; + +-- Dumping structure for table db24053.npc_cond +CREATE TABLE IF NOT EXISTS `npc_cond` ( + `npc_cond_id` int(11) NOT NULL AUTO_INCREMENT, + `npc_cond_npc` int(11) NOT NULL DEFAULT '0', + `npc_cond_trig` int(11) NOT NULL DEFAULT '0', + `npc_cond_type` int(11) NOT NULL DEFAULT '0', + `npc_cond_data` varchar(11) NOT NULL DEFAULT '0', + `npc_cond_logic` varchar(11) NOT NULL DEFAULT '0', + `npc_cond_enabled` tinyint(1) NOT NULL DEFAULT '1', + PRIMARY KEY (`npc_cond_id`) +) ENGINE=InnoDB DEFAULT CHARSET=latin1 COMMENT='NPCs - Action Conditions'; + +-- Dumping data for table db24053.npc_cond: ~0 rows (approximately) +/*!40000 ALTER TABLE `npc_cond` DISABLE KEYS */; +/*!40000 ALTER TABLE `npc_cond` ENABLE KEYS */; + +-- Dumping structure for table db24053.npc_main +CREATE TABLE IF NOT EXISTS `npc_main` ( + `npc_id` int(11) NOT NULL AUTO_INCREMENT, + `npc_server` tinyint(2) NOT NULL DEFAULT '0', + `npc_name` varchar(128) NOT NULL DEFAULT '', + `npc_model` int(11) NOT NULL DEFAULT '0', + `npc_type_flags` int(32) NOT NULL DEFAULT '0', + `npc_ped_health` int(4) NOT NULL DEFAULT '100', + `npc_ped_armour` int(4) NOT NULL DEFAULT '0', + `npc_ped_threats` int(32) NOT NULL DEFAULT '0', + `npc_ped_heedthreats` tinyint(1) NOT NULL DEFAULT '0', + `npc_ped_stay` tinyint(1) NOT NULL DEFAULT '1', + `npc_ped_walkstyle` int(11) NOT NULL DEFAULT '0', + `npc_owner_type` int(11) DEFAULT NULL, + `npc_owner_id` int(11) DEFAULT NULL, + PRIMARY KEY (`npc_id`) +) ENGINE=InnoDB DEFAULT CHARSET=latin1 COMMENT='NPCs'; + +-- Dumping data for table db24053.npc_main: ~0 rows (approximately) +/*!40000 ALTER TABLE `npc_main` DISABLE KEYS */; +/*!40000 ALTER TABLE `npc_main` ENABLE KEYS */; + +-- Dumping structure for table db24053.npc_resp +CREATE TABLE IF NOT EXISTS `npc_resp` ( + `npc_resp_id` int(11) NOT NULL AUTO_INCREMENT, + `npc_resp_npc` int(11) NOT NULL DEFAULT '0', + `npc_resp_type` int(11) NOT NULL DEFAULT '0', + `npc_resp_trig` int(11) NOT NULL DEFAULT '0', + `npc_resp_data` varchar(11) NOT NULL DEFAULT '0', + `npc_resp_logic` varchar(11) NOT NULL DEFAULT '0', + `npc_resp_enabled` tinyint(1) NOT NULL DEFAULT '1', + PRIMARY KEY (`npc_resp_id`) +) ENGINE=InnoDB DEFAULT CHARSET=latin1 COMMENT='NPCs - Action Responses'; + +-- Dumping data for table db24053.npc_resp: ~0 rows (approximately) +/*!40000 ALTER TABLE `npc_resp` DISABLE KEYS */; +/*!40000 ALTER TABLE `npc_resp` ENABLE KEYS */; + +-- Dumping structure for table db24053.npc_trig +CREATE TABLE IF NOT EXISTS `npc_trig` ( + `npc_trig_id` int(11) NOT NULL AUTO_INCREMENT, + `npc_trig_npc` int(11) NOT NULL DEFAULT '0', + `npc_trig_type` int(11) NOT NULL DEFAULT '0', + `npc_trig_enabled` tinyint(1) NOT NULL DEFAULT '1', + PRIMARY KEY (`npc_trig_id`) +) ENGINE=InnoDB DEFAULT CHARSET=latin1 COMMENT='NPCs - Action Triggers'; + +-- Dumping data for table db24053.npc_trig: ~0 rows (approximately) +/*!40000 ALTER TABLE `npc_trig` DISABLE KEYS */; +/*!40000 ALTER TABLE `npc_trig` ENABLE KEYS */; + +-- Dumping structure for table db24053.sacct_main +CREATE TABLE IF NOT EXISTS `sacct_main` ( + `sacct_id` int(11) NOT NULL AUTO_INCREMENT, + `sacct_acct` int(11) NOT NULL DEFAULT '0', + `sacct_server` int(11) NOT NULL DEFAULT '0', + `sacct_name_first` varchar(50) NOT NULL DEFAULT '', + `sacct_name_last` varchar(50) NOT NULL DEFAULT '', + `sacct_name_middle` varchar(50) NOT NULL DEFAULT '', + `sacct_when_born` varchar(50) NOT NULL DEFAULT '', + `sacct_origin` varchar(50) NOT NULL DEFAULT '', + `sacct_job` int(11) NOT NULL DEFAULT '0', + `sacct_clan` int(11) NOT NULL DEFAULT '0', + `sacct_clan_rank` int(11) NOT NULL DEFAULT '0', + `sacct_clan_flags` int(11) NOT NULL DEFAULT '0', + `sacct_clan_title` varchar(32) NOT NULL DEFAULT '', + `sacct_last_ip` int(11) NOT NULL DEFAULT '0', + `sacct_last_uid` varchar(128) NOT NULL DEFAULT '', + `sacct_total_time` int(11) NOT NULL DEFAULT '0', + `sacct_pos_x` float NOT NULL DEFAULT '0', + `sacct_pos_y` float NOT NULL DEFAULT '0', + `sacct_pos_z` float NOT NULL DEFAULT '0', + `sacct_angle` float NOT NULL DEFAULT '0', + `sacct_cash` int(11) NOT NULL DEFAULT '0', + `sacct_bank` int(11) NOT NULL DEFAULT '0', + `sacct_skin` int(11) NOT NULL DEFAULT '0', + `sacct_health` int(11) NOT NULL DEFAULT '0', + `sacct_armour` int(11) NOT NULL DEFAULT '0', + `sacct_licenses` int(11) NOT NULL DEFAULT '0', + `sacct_last_session` int(11) NOT NULL DEFAULT '0', + `sacct_when_made` int(11) NOT NULL DEFAULT '0', + `sacct_when_lastlogin` int(11) NOT NULL DEFAULT '0', + `sacct_arrest_state` int(11) NOT NULL DEFAULT '0', + `sacct_arrest_time` int(11) NOT NULL DEFAULT '0', + `sacct_iv_head_model` int(11) NOT NULL DEFAULT '0', + `sacct_iv_head_texture` int(11) NOT NULL DEFAULT '0', + `sacct_iv_upper_model` int(11) NOT NULL DEFAULT '0', + `sacct_iv_upper_texture` int(11) NOT NULL DEFAULT '0', + `sacct_iv_lower_model` int(11) NOT NULL DEFAULT '0', + `sacct_iv_lower_texture` int(11) NOT NULL DEFAULT '0', + `sacct_iv_feet_model` int(11) NOT NULL DEFAULT '0', + `sacct_iv_feet_texture` int(11) NOT NULL DEFAULT '0', + `sacct_iv_hands_model` int(11) NOT NULL DEFAULT '0', + `sacct_iv_hands_texture` int(11) NOT NULL DEFAULT '0', + `sacct_int` int(11) NOT NULL DEFAULT '0', + `sacct_vw` int(11) NOT NULL DEFAULT '0', + `sacct_needs_setup` int(11) NOT NULL DEFAULT '0', + PRIMARY KEY (`sacct_id`) +) ENGINE=InnoDB AUTO_INCREMENT=20 DEFAULT CHARSET=latin1 COMMENT='Sub Accounts (Characters)'; + +-- Dumping data for table db24053.sacct_main: ~13 rows (approximately) +/*!40000 ALTER TABLE `sacct_main` DISABLE KEYS */; +INSERT INTO `sacct_main` (`sacct_id`, `sacct_acct`, `sacct_server`, `sacct_name_first`, `sacct_name_last`, `sacct_name_middle`, `sacct_when_born`, `sacct_origin`, `sacct_job`, `sacct_clan`, `sacct_clan_rank`, `sacct_clan_flags`, `sacct_clan_title`, `sacct_last_ip`, `sacct_last_uid`, `sacct_total_time`, `sacct_pos_x`, `sacct_pos_y`, `sacct_pos_z`, `sacct_angle`, `sacct_cash`, `sacct_bank`, `sacct_skin`, `sacct_health`, `sacct_armour`, `sacct_licenses`, `sacct_last_session`, `sacct_when_made`, `sacct_when_lastlogin`, `sacct_arrest_state`, `sacct_arrest_time`, `sacct_iv_head_model`, `sacct_iv_head_texture`, `sacct_iv_upper_model`, `sacct_iv_upper_texture`, `sacct_iv_lower_model`, `sacct_iv_lower_texture`, `sacct_iv_feet_model`, `sacct_iv_feet_texture`, `sacct_iv_hands_model`, `sacct_iv_hands_texture`, `sacct_int`, `sacct_vw`, `sacct_needs_setup`) VALUES + (1, 1, 1, 'Ryan', 'Stokes', '', '1/1/2019', 'San Andreas', 17, 0, 0, 0, '', 0, '', 0, -71.1849, -1080.06, 26.2158, 1.15446, 3500, 0, 109, 100, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `sacct_main` (`sacct_id`, `sacct_acct`, `sacct_server`, `sacct_name_first`, `sacct_name_last`, `sacct_name_middle`, `sacct_when_born`, `sacct_origin`, `sacct_job`, `sacct_clan`, `sacct_clan_rank`, `sacct_clan_flags`, `sacct_clan_title`, `sacct_last_ip`, `sacct_last_uid`, `sacct_total_time`, `sacct_pos_x`, `sacct_pos_y`, `sacct_pos_z`, `sacct_angle`, `sacct_cash`, `sacct_bank`, `sacct_skin`, `sacct_health`, `sacct_armour`, `sacct_licenses`, `sacct_last_session`, `sacct_when_made`, `sacct_when_lastlogin`, `sacct_arrest_state`, `sacct_arrest_time`, `sacct_iv_head_model`, `sacct_iv_head_texture`, `sacct_iv_upper_model`, `sacct_iv_upper_texture`, `sacct_iv_lower_model`, `sacct_iv_lower_texture`, `sacct_iv_feet_model`, `sacct_iv_feet_texture`, `sacct_iv_hands_model`, `sacct_iv_hands_texture`, `sacct_int`, `sacct_vw`, `sacct_needs_setup`) VALUES + (2, 1, 3, 'Takeshi', 'Mikio', '', '01/01/1901', 'Liberty City', 0, 0, 0, 0, '', 0, '', 0, 2333.75, 332.785, 6.08384, 3.02664, 1000, 0, -2020305438, 100, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `sacct_main` (`sacct_id`, `sacct_acct`, `sacct_server`, `sacct_name_first`, `sacct_name_last`, `sacct_name_middle`, `sacct_when_born`, `sacct_origin`, `sacct_job`, `sacct_clan`, `sacct_clan_rank`, `sacct_clan_flags`, `sacct_clan_title`, `sacct_last_ip`, `sacct_last_uid`, `sacct_total_time`, `sacct_pos_x`, `sacct_pos_y`, `sacct_pos_z`, `sacct_angle`, `sacct_cash`, `sacct_bank`, `sacct_skin`, `sacct_health`, `sacct_armour`, `sacct_licenses`, `sacct_last_session`, `sacct_when_made`, `sacct_when_lastlogin`, `sacct_arrest_state`, `sacct_arrest_time`, `sacct_iv_head_model`, `sacct_iv_head_texture`, `sacct_iv_upper_model`, `sacct_iv_upper_texture`, `sacct_iv_lower_model`, `sacct_iv_lower_texture`, `sacct_iv_feet_model`, `sacct_iv_feet_texture`, `sacct_iv_hands_model`, `sacct_iv_hands_texture`, `sacct_int`, `sacct_vw`, `sacct_needs_setup`) VALUES + (3, 1, 2, 'Ryan', 'Nashton', '', '12/7/1990', 'Los Santos', 2, 0, 0, 0, '', 0, '', 0, -787.082, -1216, 11.1038, 0.991895, 1000, 0, 181, 100, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `sacct_main` (`sacct_id`, `sacct_acct`, `sacct_server`, `sacct_name_first`, `sacct_name_last`, `sacct_name_middle`, `sacct_when_born`, `sacct_origin`, `sacct_job`, `sacct_clan`, `sacct_clan_rank`, `sacct_clan_flags`, `sacct_clan_title`, `sacct_last_ip`, `sacct_last_uid`, `sacct_total_time`, `sacct_pos_x`, `sacct_pos_y`, `sacct_pos_z`, `sacct_angle`, `sacct_cash`, `sacct_bank`, `sacct_skin`, `sacct_health`, `sacct_armour`, `sacct_licenses`, `sacct_last_session`, `sacct_when_made`, `sacct_when_lastlogin`, `sacct_arrest_state`, `sacct_arrest_time`, `sacct_iv_head_model`, `sacct_iv_head_texture`, `sacct_iv_upper_model`, `sacct_iv_upper_texture`, `sacct_iv_lower_model`, `sacct_iv_lower_texture`, `sacct_iv_feet_model`, `sacct_iv_feet_texture`, `sacct_iv_hands_model`, `sacct_iv_hands_texture`, `sacct_int`, `sacct_vw`, `sacct_needs_setup`) VALUES + (4, 1, 4, 'Tom', 'Willard', '', '01/01/1901', 'Liberty City', 4, 0, 0, 0, '', 0, '', 0, 1172.07, -1318.89, 15.3932, 1.5, 150, 0, 171, 100, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `sacct_main` (`sacct_id`, `sacct_acct`, `sacct_server`, `sacct_name_first`, `sacct_name_last`, `sacct_name_middle`, `sacct_when_born`, `sacct_origin`, `sacct_job`, `sacct_clan`, `sacct_clan_rank`, `sacct_clan_flags`, `sacct_clan_title`, `sacct_last_ip`, `sacct_last_uid`, `sacct_total_time`, `sacct_pos_x`, `sacct_pos_y`, `sacct_pos_z`, `sacct_angle`, `sacct_cash`, `sacct_bank`, `sacct_skin`, `sacct_health`, `sacct_armour`, `sacct_licenses`, `sacct_last_session`, `sacct_when_made`, `sacct_when_lastlogin`, `sacct_arrest_state`, `sacct_arrest_time`, `sacct_iv_head_model`, `sacct_iv_head_texture`, `sacct_iv_upper_model`, `sacct_iv_upper_texture`, `sacct_iv_lower_model`, `sacct_iv_lower_texture`, `sacct_iv_feet_model`, `sacct_iv_feet_texture`, `sacct_iv_hands_model`, `sacct_iv_hands_texture`, `sacct_int`, `sacct_vw`, `sacct_needs_setup`) VALUES + (5, 1, 2, 'Tony', 'Martinelli', '', '1/1/2019', 'Los Santos', 0, 0, 0, 0, '', 0, '', 0, -985.508, -888.712, 12.9634, 0.768961, 1000, 0, 0, 100, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `sacct_main` (`sacct_id`, `sacct_acct`, `sacct_server`, `sacct_name_first`, `sacct_name_last`, `sacct_name_middle`, `sacct_when_born`, `sacct_origin`, `sacct_job`, `sacct_clan`, `sacct_clan_rank`, `sacct_clan_flags`, `sacct_clan_title`, `sacct_last_ip`, `sacct_last_uid`, `sacct_total_time`, `sacct_pos_x`, `sacct_pos_y`, `sacct_pos_z`, `sacct_angle`, `sacct_cash`, `sacct_bank`, `sacct_skin`, `sacct_health`, `sacct_armour`, `sacct_licenses`, `sacct_last_session`, `sacct_when_made`, `sacct_when_lastlogin`, `sacct_arrest_state`, `sacct_arrest_time`, `sacct_iv_head_model`, `sacct_iv_head_texture`, `sacct_iv_upper_model`, `sacct_iv_upper_texture`, `sacct_iv_lower_model`, `sacct_iv_lower_texture`, `sacct_iv_feet_model`, `sacct_iv_feet_texture`, `sacct_iv_hands_model`, `sacct_iv_hands_texture`, `sacct_int`, `sacct_vw`, `sacct_needs_setup`) VALUES + (6, 1, 4, 'Paul', 'Wilson', '', '01/01/1901', 'Liberty City', 0, 0, 0, 0, '', 0, '', 0, 1632.49, -2331.96, 13.547, -0.005, 1000, 0, 26, 100, 0, 0, 0, 1608269983, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `sacct_main` (`sacct_id`, `sacct_acct`, `sacct_server`, `sacct_name_first`, `sacct_name_last`, `sacct_name_middle`, `sacct_when_born`, `sacct_origin`, `sacct_job`, `sacct_clan`, `sacct_clan_rank`, `sacct_clan_flags`, `sacct_clan_title`, `sacct_last_ip`, `sacct_last_uid`, `sacct_total_time`, `sacct_pos_x`, `sacct_pos_y`, `sacct_pos_z`, `sacct_angle`, `sacct_cash`, `sacct_bank`, `sacct_skin`, `sacct_health`, `sacct_armour`, `sacct_licenses`, `sacct_last_session`, `sacct_when_made`, `sacct_when_lastlogin`, `sacct_arrest_state`, `sacct_arrest_time`, `sacct_iv_head_model`, `sacct_iv_head_texture`, `sacct_iv_upper_model`, `sacct_iv_upper_texture`, `sacct_iv_lower_model`, `sacct_iv_lower_texture`, `sacct_iv_feet_model`, `sacct_iv_feet_texture`, `sacct_iv_hands_model`, `sacct_iv_hands_texture`, `sacct_int`, `sacct_vw`, `sacct_needs_setup`) VALUES + (11, 2, 4, 'Maxle', 'Face', '', '01/01/1901', 'Liberty City', 4, 0, 0, 0, '', 0, '', 0, 1484.96, -1633.34, 14.1484, -2.89304, 1000, 0, 26, 100, 0, 0, 0, 1608346070, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `sacct_main` (`sacct_id`, `sacct_acct`, `sacct_server`, `sacct_name_first`, `sacct_name_last`, `sacct_name_middle`, `sacct_when_born`, `sacct_origin`, `sacct_job`, `sacct_clan`, `sacct_clan_rank`, `sacct_clan_flags`, `sacct_clan_title`, `sacct_last_ip`, `sacct_last_uid`, `sacct_total_time`, `sacct_pos_x`, `sacct_pos_y`, `sacct_pos_z`, `sacct_angle`, `sacct_cash`, `sacct_bank`, `sacct_skin`, `sacct_health`, `sacct_armour`, `sacct_licenses`, `sacct_last_session`, `sacct_when_made`, `sacct_when_lastlogin`, `sacct_arrest_state`, `sacct_arrest_time`, `sacct_iv_head_model`, `sacct_iv_head_texture`, `sacct_iv_upper_model`, `sacct_iv_upper_texture`, `sacct_iv_lower_model`, `sacct_iv_lower_texture`, `sacct_iv_feet_model`, `sacct_iv_feet_texture`, `sacct_iv_hands_model`, `sacct_iv_hands_texture`, `sacct_int`, `sacct_vw`, `sacct_needs_setup`) VALUES + (12, 2, 1, 'Max', 'Axleface', '', '21/2/1976', 'Los Santos', 17, 0, 0, 0, '', 0, '', 0, -817.234, -148.18, 33.8613, -0.680817, 1000, 0, 57, 100, 0, 0, 0, 1608835004, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `sacct_main` (`sacct_id`, `sacct_acct`, `sacct_server`, `sacct_name_first`, `sacct_name_last`, `sacct_name_middle`, `sacct_when_born`, `sacct_origin`, `sacct_job`, `sacct_clan`, `sacct_clan_rank`, `sacct_clan_flags`, `sacct_clan_title`, `sacct_last_ip`, `sacct_last_uid`, `sacct_total_time`, `sacct_pos_x`, `sacct_pos_y`, `sacct_pos_z`, `sacct_angle`, `sacct_cash`, `sacct_bank`, `sacct_skin`, `sacct_health`, `sacct_armour`, `sacct_licenses`, `sacct_last_session`, `sacct_when_made`, `sacct_when_lastlogin`, `sacct_arrest_state`, `sacct_arrest_time`, `sacct_iv_head_model`, `sacct_iv_head_texture`, `sacct_iv_upper_model`, `sacct_iv_upper_texture`, `sacct_iv_lower_model`, `sacct_iv_lower_texture`, `sacct_iv_feet_model`, `sacct_iv_feet_texture`, `sacct_iv_hands_model`, `sacct_iv_hands_texture`, `sacct_int`, `sacct_vw`, `sacct_needs_setup`) VALUES + (13, 7, 1, 'Luigi', 'Santorino', '', '1/4/1987', 'Las Venturas', 17, 0, 0, 0, '', 0, '', 0, 836.584, -736.133, 14.4484, -0.00203527, 1000, 0, 119, 100, 0, 0, 0, 1609095921, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `sacct_main` (`sacct_id`, `sacct_acct`, `sacct_server`, `sacct_name_first`, `sacct_name_last`, `sacct_name_middle`, `sacct_when_born`, `sacct_origin`, `sacct_job`, `sacct_clan`, `sacct_clan_rank`, `sacct_clan_flags`, `sacct_clan_title`, `sacct_last_ip`, `sacct_last_uid`, `sacct_total_time`, `sacct_pos_x`, `sacct_pos_y`, `sacct_pos_z`, `sacct_angle`, `sacct_cash`, `sacct_bank`, `sacct_skin`, `sacct_health`, `sacct_armour`, `sacct_licenses`, `sacct_last_session`, `sacct_when_made`, `sacct_when_lastlogin`, `sacct_arrest_state`, `sacct_arrest_time`, `sacct_iv_head_model`, `sacct_iv_head_texture`, `sacct_iv_upper_model`, `sacct_iv_upper_texture`, `sacct_iv_lower_model`, `sacct_iv_lower_texture`, `sacct_iv_feet_model`, `sacct_iv_feet_texture`, `sacct_iv_hands_model`, `sacct_iv_hands_texture`, `sacct_int`, `sacct_vw`, `sacct_needs_setup`) VALUES + (14, 7, 1, 'Mickey', 'Santorino', '', '1/1/2020', 'Vice City', 17, 0, 0, 0, '', 0, '', 0, 839.948, -307.534, 6.19376, -3.10991, 1000, 0, 119, 100, 0, 0, 0, 1609096733, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `sacct_main` (`sacct_id`, `sacct_acct`, `sacct_server`, `sacct_name_first`, `sacct_name_last`, `sacct_name_middle`, `sacct_when_born`, `sacct_origin`, `sacct_job`, `sacct_clan`, `sacct_clan_rank`, `sacct_clan_flags`, `sacct_clan_title`, `sacct_last_ip`, `sacct_last_uid`, `sacct_total_time`, `sacct_pos_x`, `sacct_pos_y`, `sacct_pos_z`, `sacct_angle`, `sacct_cash`, `sacct_bank`, `sacct_skin`, `sacct_health`, `sacct_armour`, `sacct_licenses`, `sacct_last_session`, `sacct_when_made`, `sacct_when_lastlogin`, `sacct_arrest_state`, `sacct_arrest_time`, `sacct_iv_head_model`, `sacct_iv_head_texture`, `sacct_iv_upper_model`, `sacct_iv_upper_texture`, `sacct_iv_lower_model`, `sacct_iv_lower_texture`, `sacct_iv_feet_model`, `sacct_iv_feet_texture`, `sacct_iv_hands_model`, `sacct_iv_hands_texture`, `sacct_int`, `sacct_vw`, `sacct_needs_setup`) VALUES + (15, 7, 1, 'Tony', 'Santorino', '', '1/1/2018', 'Los Santos', 0, 0, 0, 0, '', 0, '', 0, 1038.59, -661.753, 14.9727, -0.0113098, 1000, 0, 119, 100, 0, 0, 0, 1609096792, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `sacct_main` (`sacct_id`, `sacct_acct`, `sacct_server`, `sacct_name_first`, `sacct_name_last`, `sacct_name_middle`, `sacct_when_born`, `sacct_origin`, `sacct_job`, `sacct_clan`, `sacct_clan_rank`, `sacct_clan_flags`, `sacct_clan_title`, `sacct_last_ip`, `sacct_last_uid`, `sacct_total_time`, `sacct_pos_x`, `sacct_pos_y`, `sacct_pos_z`, `sacct_angle`, `sacct_cash`, `sacct_bank`, `sacct_skin`, `sacct_health`, `sacct_armour`, `sacct_licenses`, `sacct_last_session`, `sacct_when_made`, `sacct_when_lastlogin`, `sacct_arrest_state`, `sacct_arrest_time`, `sacct_iv_head_model`, `sacct_iv_head_texture`, `sacct_iv_upper_model`, `sacct_iv_upper_texture`, `sacct_iv_lower_model`, `sacct_iv_lower_texture`, `sacct_iv_feet_model`, `sacct_iv_feet_texture`, `sacct_iv_hands_model`, `sacct_iv_hands_texture`, `sacct_int`, `sacct_vw`, `sacct_needs_setup`) VALUES + (18, 2, 2, 'Maaaaaaaaaax', 'face', '', '6/9/1969', 'Los Santos', 0, 0, 0, 0, '', 0, '', 0, -704.206, 180.381, 11.0712, 1.81422, 1000, 0, 96, 100, 0, 0, 0, 1609207678, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `sacct_main` (`sacct_id`, `sacct_acct`, `sacct_server`, `sacct_name_first`, `sacct_name_last`, `sacct_name_middle`, `sacct_when_born`, `sacct_origin`, `sacct_job`, `sacct_clan`, `sacct_clan_rank`, `sacct_clan_flags`, `sacct_clan_title`, `sacct_last_ip`, `sacct_last_uid`, `sacct_total_time`, `sacct_pos_x`, `sacct_pos_y`, `sacct_pos_z`, `sacct_angle`, `sacct_cash`, `sacct_bank`, `sacct_skin`, `sacct_health`, `sacct_armour`, `sacct_licenses`, `sacct_last_session`, `sacct_when_made`, `sacct_when_lastlogin`, `sacct_arrest_state`, `sacct_arrest_time`, `sacct_iv_head_model`, `sacct_iv_head_texture`, `sacct_iv_upper_model`, `sacct_iv_upper_texture`, `sacct_iv_lower_model`, `sacct_iv_lower_texture`, `sacct_iv_feet_model`, `sacct_iv_feet_texture`, `sacct_iv_hands_model`, `sacct_iv_hands_texture`, `sacct_int`, `sacct_vw`, `sacct_needs_setup`) VALUES + (19, 2, 2, 'Maximillian', 'Faceworth', '', '6/9/1969', 'Los Santos', 18, 0, 0, 0, '', 0, '', 0, -852.952, -564.247, 12.1422, 0.09868, 1000, 0, 156, 100, 0, 0, 0, 1609207734, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +/*!40000 ALTER TABLE `sacct_main` ENABLE KEYS */; + +-- Dumping structure for table db24053.sacct_pay +CREATE TABLE IF NOT EXISTS `sacct_pay` ( + `sacct_pay_id` int(11) NOT NULL AUTO_INCREMENT, + `sacct_pay_server` int(11) NOT NULL DEFAULT '0', + `sacct_pay_from_sacct_id` int(11) NOT NULL DEFAULT '0', + `sacct_pay_to_sacct_id` int(11) NOT NULL DEFAULT '0', + `sacct_pay_amount` int(11) NOT NULL DEFAULT '0', + `sacct_pay_when` int(32) NOT NULL DEFAULT '0', + `sacct_pay_pos_x` float NOT NULL DEFAULT '0', + `sacct_pay_pos_y` float NOT NULL DEFAULT '0', + `sacct_pay_pos_z` float NOT NULL DEFAULT '0', + PRIMARY KEY (`sacct_pay_id`) +) ENGINE=InnoDB DEFAULT CHARSET=latin1 COMMENT='Sub Accounts - Cash Exchanges'; + +-- Dumping data for table db24053.sacct_pay: ~0 rows (approximately) +/*!40000 ALTER TABLE `sacct_pay` DISABLE KEYS */; +/*!40000 ALTER TABLE `sacct_pay` ENABLE KEYS */; + +-- Dumping structure for table db24053.sacct_stat +CREATE TABLE IF NOT EXISTS `sacct_stat` ( + `sacct_stat_id` int(32) NOT NULL DEFAULT '0', + `sacct_stat_sacct` int(32) NOT NULL DEFAULT '0', + `sacct_stat_max_kill_streak` int(32) NOT NULL DEFAULT '0', + `sacct_stat_furthest_headshot` float NOT NULL DEFAULT '0', + `sacct_stat_packages_picked` int(32) NOT NULL DEFAULT '0', + `sacct_stat_health_picked` int(32) NOT NULL DEFAULT '0', + `sacct_stat_weapons_picked` int(32) NOT NULL DEFAULT '0', + `sacct_stat_armour_picked` int(32) NOT NULL DEFAULT '0', + `sacct_stat_distance_foot` float NOT NULL DEFAULT '0', + `sacct_stat_distance_car` float NOT NULL DEFAULT '0', + `sacct_stat_distance_boat` float NOT NULL DEFAULT '0', + `sacct_stat_distance_plane` float NOT NULL DEFAULT '0', + `sacct_stat_longest_server_time` int(32) NOT NULL DEFAULT '0', + `sacct_stat_veh_resprays` int(32) NOT NULL DEFAULT '0', + `sacct_stat_wanted_veh_resprays` int(32) NOT NULL DEFAULT '0', + `sacct_stat_spent_on_weapons` int(32) NOT NULL DEFAULT '0', + `sacct_stat_weapons_purchased` int(32) NOT NULL DEFAULT '0', + `sacct_stat_businesses_purchased` int(32) NOT NULL DEFAULT '0', + `sacct_stat_houses_purchased` int(32) NOT NULL DEFAULT '0', + `sacct_stat_times_busted` int(32) NOT NULL DEFAULT '0', + `sacct_stat_stars_obtained` int(32) NOT NULL DEFAULT '0', + `sacct_stat_stars_evaded` int(32) NOT NULL DEFAULT '0', + `sacct_stat_highest_wanted_level` int(32) NOT NULL DEFAULT '0', + PRIMARY KEY (`sacct_stat_id`) +) ENGINE=InnoDB DEFAULT CHARSET=latin1 COMMENT='Subaccounts - Stats'; + +-- Dumping data for table db24053.sacct_stat: ~0 rows (approximately) +/*!40000 ALTER TABLE `sacct_stat` DISABLE KEYS */; +/*!40000 ALTER TABLE `sacct_stat` ENABLE KEYS */; + +-- Dumping structure for table db24053.sus_main +CREATE TABLE IF NOT EXISTS `sus_main` ( + `sus_id` int(11) NOT NULL AUTO_INCREMENT, + `sus_server` tinyint(2) NOT NULL DEFAULT '0', + `sus_suspect` int(11) NOT NULL DEFAULT '0', + `sus_officer` int(11) NOT NULL DEFAULT '0', + `sus_minutes` int(11) NOT NULL DEFAULT '0', + `sus_reason` varchar(128) NOT NULL DEFAULT '', + `sus_state` int(11) NOT NULL DEFAULT '0', + PRIMARY KEY (`sus_id`) +) ENGINE=InnoDB DEFAULT CHARSET=latin1 COMMENT='Crimes'; + +-- Dumping data for table db24053.sus_main: ~0 rows (approximately) +/*!40000 ALTER TABLE `sus_main` DISABLE KEYS */; +/*!40000 ALTER TABLE `sus_main` ENABLE KEYS */; + +-- Dumping structure for table db24053.svr_main +CREATE TABLE IF NOT EXISTS `svr_main` ( + `svr_id` int(11) NOT NULL AUTO_INCREMENT, + `svr_name` varchar(50) NOT NULL DEFAULT '0', + `svr_game` int(11) NOT NULL DEFAULT '0', + `svr_port` int(11) NOT NULL DEFAULT '0', + `svr_password` varchar(50) NOT NULL DEFAULT '0', + `svr_start_time_hour` int(11) NOT NULL DEFAULT '0', + `svr_start_time_min` int(11) NOT NULL DEFAULT '0', + `svr_start_weather` int(11) NOT NULL DEFAULT '0', + `svr_start_snow_falling` int(11) NOT NULL DEFAULT '0', + `svr_start_snow_ground` float NOT NULL DEFAULT '0', + `svr_newchar_pos_x` float NOT NULL DEFAULT '0', + `svr_newchar_pos_y` float NOT NULL DEFAULT '0', + `svr_newchar_pos_z` float NOT NULL DEFAULT '0', + `svr_newchar_rot_z` float NOT NULL DEFAULT '0', + `svr_newchar_money` int(11) NOT NULL DEFAULT '0', + `svr_newchar_bank` int(11) NOT NULL DEFAULT '0', + `svr_newchar_skin` int(11) NOT NULL DEFAULT '0', + `svr_manager` int(11) NOT NULL DEFAULT '0', + `svr_connectcam_pos_x` float NOT NULL DEFAULT '0', + `svr_connectcam_pos_y` float NOT NULL DEFAULT '0', + `svr_connectcam_pos_z` float NOT NULL DEFAULT '0', + `svr_connectcam_lookat_x` float NOT NULL DEFAULT '0', + `svr_connectcam_lookat_y` float NOT NULL DEFAULT '0', + `svr_connectcam_lookat_z` float NOT NULL DEFAULT '0', + `svr_gui` tinyint(4) NOT NULL DEFAULT '1', + `svr_gui_col1_r` int(11) NOT NULL DEFAULT '200', + `svr_gui_col1_g` int(11) NOT NULL DEFAULT '200', + `svr_gui_col1_b` int(11) NOT NULL DEFAULT '200', + `svr_logo` int(11) NOT NULL DEFAULT '1', + `svr_ac_enabled` int(11) NOT NULL DEFAULT '1', + `svr_ac_check_scripts` int(11) NOT NULL DEFAULT '1', + `svr_ac_script_wl` int(11) NOT NULL DEFAULT '0', + `svr_ac_script_bl` int(11) NOT NULL DEFAULT '1', + PRIMARY KEY (`svr_id`) +) ENGINE=InnoDB AUTO_INCREMENT=5 DEFAULT CHARSET=utf8 COMMENT='Servers'; + +-- Dumping data for table db24053.svr_main: ~4 rows (approximately) +/*!40000 ALTER TABLE `svr_main` DISABLE KEYS */; +INSERT INTO `svr_main` (`svr_id`, `svr_name`, `svr_game`, `svr_port`, `svr_password`, `svr_start_time_hour`, `svr_start_time_min`, `svr_start_weather`, `svr_start_snow_falling`, `svr_start_snow_ground`, `svr_newchar_pos_x`, `svr_newchar_pos_y`, `svr_newchar_pos_z`, `svr_newchar_rot_z`, `svr_newchar_money`, `svr_newchar_bank`, `svr_newchar_skin`, `svr_manager`, `svr_connectcam_pos_x`, `svr_connectcam_pos_y`, `svr_connectcam_pos_z`, `svr_connectcam_lookat_x`, `svr_connectcam_lookat_y`, `svr_connectcam_lookat_z`, `svr_gui`, `svr_gui_col1_r`, `svr_gui_col1_g`, `svr_gui_col1_b`, `svr_logo`, `svr_ac_enabled`, `svr_ac_check_scripts`, `svr_ac_script_wl`, `svr_ac_script_bl`) VALUES + (1, 'Asshat Gaming Roleplay', 1, 30120, 'AsshatsUnite!', 0, 0, 0, 0, 0, 1038.4, -666.7, 14.97, 1, 1000, 0, 0, 1, -1176.48, -17.694, 95.992, -1175.73, -17.055, 95.847, 1, 40, 110, 185, 1, 1, 1, 1, 1); +INSERT INTO `svr_main` (`svr_id`, `svr_name`, `svr_game`, `svr_port`, `svr_password`, `svr_start_time_hour`, `svr_start_time_min`, `svr_start_weather`, `svr_start_snow_falling`, `svr_start_snow_ground`, `svr_newchar_pos_x`, `svr_newchar_pos_y`, `svr_newchar_pos_z`, `svr_newchar_rot_z`, `svr_newchar_money`, `svr_newchar_bank`, `svr_newchar_skin`, `svr_manager`, `svr_connectcam_pos_x`, `svr_connectcam_pos_y`, `svr_connectcam_pos_z`, `svr_connectcam_lookat_x`, `svr_connectcam_lookat_y`, `svr_connectcam_lookat_z`, `svr_gui`, `svr_gui_col1_r`, `svr_gui_col1_g`, `svr_gui_col1_b`, `svr_logo`, `svr_ac_enabled`, `svr_ac_check_scripts`, `svr_ac_script_wl`, `svr_ac_script_bl`) VALUES + (2, 'Asshat Gaming Roleplay', 2, 30120, 'AsshatsUnite!', 0, 0, 0, 0, 0, -708.918, 179.315, 11.0712, 2.94625, 1000, 0, 15, 1, 210.04, -1492.01, 55.071, 240.19, -1282.52, 10.902, 1, 255, 110, 199, 1, 1, 1, 1, 1); +INSERT INTO `svr_main` (`svr_id`, `svr_name`, `svr_game`, `svr_port`, `svr_password`, `svr_start_time_hour`, `svr_start_time_min`, `svr_start_weather`, `svr_start_snow_falling`, `svr_start_snow_ground`, `svr_newchar_pos_x`, `svr_newchar_pos_y`, `svr_newchar_pos_z`, `svr_newchar_rot_z`, `svr_newchar_money`, `svr_newchar_bank`, `svr_newchar_skin`, `svr_manager`, `svr_connectcam_pos_x`, `svr_connectcam_pos_y`, `svr_connectcam_pos_z`, `svr_connectcam_lookat_x`, `svr_connectcam_lookat_y`, `svr_connectcam_lookat_z`, `svr_gui`, `svr_gui_col1_r`, `svr_gui_col1_g`, `svr_gui_col1_b`, `svr_logo`, `svr_ac_enabled`, `svr_ac_check_scripts`, `svr_ac_script_wl`, `svr_ac_script_bl`) VALUES + (3, 'Asshat Gaming Roleplay', 5, 30120, 'AsshatsUnite!', 0, 0, 0, 0, 0, 2364.28, 387.27, 6.085, 2.434, 1000, 0, -2020305438, 1, 8.75, -826.53, 331.072, -63.58, 240.71, 26.373, 1, 200, 200, 200, 1, 1, 1, 1, 1); +INSERT INTO `svr_main` (`svr_id`, `svr_name`, `svr_game`, `svr_port`, `svr_password`, `svr_start_time_hour`, `svr_start_time_min`, `svr_start_weather`, `svr_start_snow_falling`, `svr_start_snow_ground`, `svr_newchar_pos_x`, `svr_newchar_pos_y`, `svr_newchar_pos_z`, `svr_newchar_rot_z`, `svr_newchar_money`, `svr_newchar_bank`, `svr_newchar_skin`, `svr_manager`, `svr_connectcam_pos_x`, `svr_connectcam_pos_y`, `svr_connectcam_pos_z`, `svr_connectcam_lookat_x`, `svr_connectcam_lookat_y`, `svr_connectcam_lookat_z`, `svr_gui`, `svr_gui_col1_r`, `svr_gui_col1_g`, `svr_gui_col1_b`, `svr_logo`, `svr_ac_enabled`, `svr_ac_check_scripts`, `svr_ac_script_wl`, `svr_ac_script_bl`) VALUES + (4, 'Asshat Gaming Roleplay', 3, 30120, 'AsshatsUnite!', 0, 0, 0, 0, 0, 1632.49, -2331.96, 13.547, -0.005, 1000, 0, 26, 1, 1292.31, -2037.57, 109.596, 1291.31, -2037.57, 109.171, 0, 200, 200, 200, 1, 1, 1, 1, 1); +/*!40000 ALTER TABLE `svr_main` ENABLE KEYS */; + +-- Dumping structure for table db24053.veh_history +CREATE TABLE IF NOT EXISTS `veh_history` ( + `veh_history_id` int(11) NOT NULL AUTO_INCREMENT, + `veh_history_veh` int(11) NOT NULL, + `veh_history_type` int(11) NOT NULL, + `veh_history_when` int(11) NOT NULL, + `veh_history_value` int(11) NOT NULL, + `veh_history_details` varchar(50) NOT NULL DEFAULT '', + PRIMARY KEY (`veh_history_id`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Vehicle - History'; + +-- Dumping data for table db24053.veh_history: ~0 rows (approximately) +/*!40000 ALTER TABLE `veh_history` DISABLE KEYS */; +/*!40000 ALTER TABLE `veh_history` ENABLE KEYS */; + +-- Dumping structure for table db24053.veh_main +CREATE TABLE IF NOT EXISTS `veh_main` ( + `veh_id` int(11) NOT NULL AUTO_INCREMENT, + `veh_server` tinyint(2) NOT NULL DEFAULT '0', + `veh_model` int(11) NOT NULL DEFAULT '0', + `veh_col1_isrgb` tinyint(1) NOT NULL DEFAULT '0', + `veh_col2_isrgb` tinyint(1) NOT NULL DEFAULT '0', + `veh_col3_isrgb` tinyint(1) NOT NULL DEFAULT '0', + `veh_col4_isrgb` tinyint(1) NOT NULL DEFAULT '0', + `veh_col1` int(3) NOT NULL DEFAULT '0', + `veh_col2` int(3) NOT NULL DEFAULT '0', + `veh_col3` int(3) NOT NULL DEFAULT '0', + `veh_col4` int(3) NOT NULL DEFAULT '0', + `veh_col1_r` int(3) NOT NULL DEFAULT '0', + `veh_col1_g` int(3) NOT NULL DEFAULT '0', + `veh_col1_b` int(3) NOT NULL DEFAULT '0', + `veh_col1_a` int(3) NOT NULL DEFAULT '0', + `veh_col2_r` int(3) NOT NULL DEFAULT '0', + `veh_col2_g` int(3) NOT NULL DEFAULT '0', + `veh_col2_b` int(3) NOT NULL DEFAULT '0', + `veh_col2_a` int(3) NOT NULL DEFAULT '0', + `veh_col3_r` int(3) NOT NULL DEFAULT '0', + `veh_col3_g` int(3) NOT NULL DEFAULT '0', + `veh_col3_b` int(3) NOT NULL DEFAULT '0', + `veh_col3_a` int(3) NOT NULL DEFAULT '0', + `veh_col4_r` int(3) NOT NULL DEFAULT '0', + `veh_col4_g` int(3) NOT NULL DEFAULT '0', + `veh_col4_b` int(3) NOT NULL DEFAULT '0', + `veh_col4_a` int(3) NOT NULL DEFAULT '0', + `veh_locked` tinyint(1) NOT NULL DEFAULT '0', + `veh_health` float NOT NULL DEFAULT '1000', + `veh_pos_x` float NOT NULL DEFAULT '0', + `veh_pos_y` float NOT NULL DEFAULT '0', + `veh_pos_z` float NOT NULL DEFAULT '0', + `veh_rot_x` float NOT NULL DEFAULT '0', + `veh_rot_y` float NOT NULL DEFAULT '0', + `veh_rot_z` float NOT NULL DEFAULT '0', + `veh_owner_id` int(11) NOT NULL DEFAULT '0', + `veh_owner_type` int(11) NOT NULL DEFAULT '0', + `veh_engine` tinyint(1) NOT NULL DEFAULT '0', + `veh_lights` tinyint(1) NOT NULL DEFAULT '0', + `veh_siren` tinyint(1) NOT NULL DEFAULT '0', + `veh_sirenlight` tinyint(1) NOT NULL DEFAULT '0', + `veh_taxilight` tinyint(1) NOT NULL DEFAULT '0', + `veh_radio` int(8) NOT NULL DEFAULT '0', + `veh_fuel` int(8) NOT NULL DEFAULT '0', + `veh_spawned` tinyint(1) NOT NULL DEFAULT '0', + `veh_ins_acct` tinyint(1) NOT NULL DEFAULT '0', + `veh_price` int(8) NOT NULL DEFAULT '0', + `veh_deleted` tinyint(1) NOT NULL DEFAULT '0', + `veh_flags` int(32) NOT NULL DEFAULT '0', + `veh_spawn_lock` tinyint(1) NOT NULL DEFAULT '0', + `veh_buy_price` int(11) NOT NULL DEFAULT '0', + `veh_rent_price` int(11) NOT NULL DEFAULT '0', + `veh_destroyed` tinyint(1) NOT NULL DEFAULT '0', + `veh_mod_enginemult` int(11) NOT NULL DEFAULT '0', + `veh_mod_wheelmult` int(11) NOT NULL DEFAULT '0', + `veh_mod_brakemult` int(11) NOT NULL DEFAULT '0', + `veh_mod_hydraulics` tinyint(1) NOT NULL DEFAULT '0', + `veh_mod_nos` tinyint(1) NOT NULL DEFAULT '0', + `veh_tire_fl` tinyint(1) NOT NULL DEFAULT '0', + `veh_tire_fr` tinyint(1) NOT NULL DEFAULT '0', + `veh_tire_rl` tinyint(1) NOT NULL DEFAULT '0', + `veh_tire_rr` tinyint(1) NOT NULL DEFAULT '0', + `veh_light_fl` tinyint(1) NOT NULL DEFAULT '0', + `veh_light_fr` tinyint(1) NOT NULL DEFAULT '0', + `veh_light_rl` tinyint(1) NOT NULL DEFAULT '0', + `veh_light_rr` tinyint(1) NOT NULL DEFAULT '0', + `Column 84` int(11) NOT NULL DEFAULT '100', + `veh_door_fl` tinyint(1) NOT NULL DEFAULT '0', + `veh_door_fr` tinyint(1) NOT NULL DEFAULT '0', + `veh_door_rl` tinyint(1) NOT NULL DEFAULT '0', + `veh_door_rr` tinyint(1) NOT NULL DEFAULT '0', + `veh_boot` tinyint(1) NOT NULL DEFAULT '0', + `veh_bonnet` tinyint(1) NOT NULL DEFAULT '0', + `veh_panel_bumper_front` tinyint(1) NOT NULL DEFAULT '0', + `veh_panel_bumper_rear` tinyint(1) NOT NULL DEFAULT '0', + `veh_panel_front_left` tinyint(1) NOT NULL DEFAULT '0', + `veh_panel_front_right` tinyint(1) NOT NULL DEFAULT '0', + `veh_panel_rear_left` tinyint(1) NOT NULL DEFAULT '0', + `veh_panel_rear_right` tinyint(1) NOT NULL DEFAULT '0', + `veh_panel_windshield` tinyint(1) NOT NULL DEFAULT '0', + `veh_dirt_level` int(11) NOT NULL DEFAULT '0', + `veh_damage_visual` int(11) NOT NULL DEFAULT '0', + `veh_damage_engine` float NOT NULL DEFAULT '0', + `veh_damage_normal` float NOT NULL DEFAULT '0', + `undefined` int(11) NOT NULL DEFAULT '0', + PRIMARY KEY (`veh_id`) +) ENGINE=InnoDB AUTO_INCREMENT=337 DEFAULT CHARSET=latin1 COMMENT='Vehicles'; + +-- Dumping data for table db24053.veh_main: ~314 rows (approximately) +/*!40000 ALTER TABLE `veh_main` DISABLE KEYS */; +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `Column 84`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `undefined`) VALUES + (1, 1, 116, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1000, 1150.19, -691.413, 14.7679, 0, 0, -0.00433205, 1, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `Column 84`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `undefined`) VALUES + (2, 1, 116, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1000, 1146.75, -691.522, 14.7632, 0, 0, 0.0311547, 1, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `Column 84`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `undefined`) VALUES + (3, 1, 116, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1000, 1150.19, -647.976, 14.7432, 0, 0, 1.58688, 1, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `Column 84`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `undefined`) VALUES + (4, 1, 116, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1000, 1150.05, -644.664, 14.7377, 0, 0, 1.63214, 1, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `Column 84`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `undefined`) VALUES + (5, 1, 116, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1000, 1150.03, -641.414, 14.7305, 0, 0, 1.58556, 1, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `Column 84`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `undefined`) VALUES + (6, 1, 116, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1000, 1137.77, -637.964, 14.7565, 0, 0, 3.12411, 1, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `Column 84`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `undefined`) VALUES + (7, 1, 116, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1000, 1141.03, -637.832, 14.7565, 0, 0, 3.13313, 1, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `Column 84`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `undefined`) VALUES + (8, 1, 117, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1000, 1167.97, -671.216, 18.9339, 0, 0, -3.12864, 1, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `Column 84`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `undefined`) VALUES + (9, 1, 117, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1000, 1167.88, -659.962, 18.9344, 0, 0, -3.13742, 1, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `Column 84`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `undefined`) VALUES + (10, 1, 107, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1000, 1156.99, -648.106, 18.8026, 0, 0, -1.54444, 1, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `Column 84`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `undefined`) VALUES + (11, 1, 107, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1000, 1156.71, -644.208, 18.8018, 0, 0, -1.56368, 1, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `Column 84`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `undefined`) VALUES + (12, 1, 106, 0, 0, 0, 0, 1, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1000, 1156.51, -546.982, 21.8099, 0, 0, 1.54116, 5, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `Column 84`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `undefined`) VALUES + (13, 1, 106, 0, 0, 0, 0, 1, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1000, 1144.34, -526.256, 21.811, 0, 0, 3.10339, 5, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `Column 84`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `undefined`) VALUES + (14, 1, 106, 0, 0, 0, 0, 1, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1000, 1149.82, -526.413, 21.8051, 0, 0, 3.12915, 5, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `Column 84`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `undefined`) VALUES + (15, 1, 97, 0, 0, 0, 0, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1000, 1107.33, -47.3277, 7.6909, 0, 0, -1.58177, 9, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `Column 84`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `undefined`) VALUES + (16, 1, 97, 0, 0, 0, 0, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1000, 1107.44, -56.9672, 7.68915, 0, 0, -1.55498, 9, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `Column 84`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `undefined`) VALUES + (17, 1, 97, 0, 0, 0, 0, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1000, 1107.07, -36.7668, 7.68907, 0, 0, -1.54614, 9, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `Column 84`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `undefined`) VALUES + (18, 1, 98, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1000, 1143.85, 24.7314, 0.193595, 0, 0, 0.030849, 21, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `Column 84`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `undefined`) VALUES + (19, 1, 98, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1000, 1127.04, 42.6658, 0.0965313, 0, 0, -1.59613, 21, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `Column 84`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `undefined`) VALUES + (20, 1, 98, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1000, 1160.02, 63.4447, 0.0918589, 0, 0, -3.06856, 21, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `Column 84`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `undefined`) VALUES + (21, 1, 116, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1000, 1139.63, -687.404, 14.7563, 0, 0, -1.5751, 1, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `Column 84`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `undefined`) VALUES + (22, 1, 127, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1000, 1281.16, -964.567, 15.006, 0, 0, -2.35689, 17, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `Column 84`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `undefined`) VALUES + (23, 1, 127, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1000, 1274.07, -971.255, 14.9847, 0, 0, -2.36657, 17, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `Column 84`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `undefined`) VALUES + (24, 1, 127, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1000, 1255.04, -993.608, 14.9642, 0, 0, -0.875785, 6, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `Column 84`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `undefined`) VALUES + (25, 1, 127, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1000, 1262.9, -1001.84, 14.966, 0, 0, -0.898034, 6, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `Column 84`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `undefined`) VALUES + (26, 1, 110, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1000, 1226.42, -725.875, 14.9189, 0, 0, -2.34667, 5, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `Column 84`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `undefined`) VALUES + (27, 1, 110, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1000, 1229.62, -722.578, 14.9188, 0, 0, -2.35245, 5, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `Column 84`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `undefined`) VALUES + (28, 1, 110, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1000, 1257.41, -752.06, 14.9186, 0, 0, 0.734189, 5, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `Column 84`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `undefined`) VALUES + (29, 1, 110, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1000, 1254.04, -755.676, 14.9186, 0, 0, 0.767078, 5, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `Column 84`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `undefined`) VALUES + (30, 1, 128, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1000, 1249.93, -736.377, 15.1166, 0, 0, 2.33642, 5, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `Column 84`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `undefined`) VALUES + (31, 1, 128, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1000, 1246.99, -733.376, 15.1162, 0, 0, 2.33641, 5, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `Column 84`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `undefined`) VALUES + (32, 1, 116, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1000, 1139.41, -683.735, 14.7565, 0, 0, -1.55153, 1, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `Column 84`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `undefined`) VALUES + (33, 1, 116, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1000, 355.017, -1135.91, 22.7644, 0, 0, -2.41669, 1, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `Column 84`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `undefined`) VALUES + (34, 1, 116, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1000, 350.109, -1135.89, 22.7647, 0, 0, -2.46912, 1, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `Column 84`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `undefined`) VALUES + (35, 1, 116, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1000, 345.608, -1135.62, 22.7649, 0, 0, -2.53825, 1, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `Column 84`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `undefined`) VALUES + (36, 1, 116, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1000, 341.261, -1135.68, 22.7642, 0, 0, -2.54692, 1, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `Column 84`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `undefined`) VALUES + (37, 1, 116, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1000, 336.717, -1135.68, 22.7706, 0, 0, -2.56974, 1, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `Column 84`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `undefined`) VALUES + (38, 1, 116, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1000, 332.574, -1135.79, 22.7643, 0, 0, -2.54837, 1, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `Column 84`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `undefined`) VALUES + (39, 1, 116, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1000, 330.361, -1143.6, 22.7644, 0, 0, -1.53463, 1, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `Column 84`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `undefined`) VALUES + (40, 1, 116, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1000, 330.33, -1147.05, 22.7647, 0, 0, -1.55975, 1, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `Column 84`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `undefined`) VALUES + (41, 1, 116, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1000, 330.239, -1150.96, 22.7647, 0, 0, -1.59091, 1, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `Column 84`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `undefined`) VALUES + (42, 1, 116, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1000, 330.082, -1154.76, 22.7643, 0, 0, -1.59227, 1, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `Column 84`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `undefined`) VALUES + (43, 1, 116, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1000, 330.062, -1158.64, 22.764, 0, 0, -1.56752, 1, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `Column 84`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `undefined`) VALUES + (44, 1, 116, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1000, 330.123, -1162.56, 22.757, 0, 0, -1.57938, 1, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `Column 84`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `undefined`) VALUES + (45, 1, 116, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1000, 349.266, -1175.87, 22.7646, 0, 0, 0.0401467, 1, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `Column 84`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `undefined`) VALUES + (46, 1, 116, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1000, 352.866, -1175.72, 22.7649, 0, 0, 0.0375325, 1, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `Column 84`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `undefined`) VALUES + (47, 1, 116, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1000, 356.565, -1175.68, 22.7649, 0, 0, 0.0262495, 1, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `Column 84`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `undefined`) VALUES + (48, 1, 116, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1000, 360.123, -1175.56, 22.765, 0, 0, 0.00383999, 1, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `Column 84`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `undefined`) VALUES + (49, 1, 116, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1000, 363.628, -1175.71, 22.7647, 0, 0, 0.0135003, 1, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `Column 84`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `undefined`) VALUES + (50, 1, 116, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1000, 344.813, -1175.93, 22.7648, 0, 0, 0.0261305, 1, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `Column 84`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `undefined`) VALUES + (51, 1, 117, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1000, 363.039, -1056.26, 26.0159, 0, 0, -3.13414, 1, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `Column 84`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `undefined`) VALUES + (52, 1, 117, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1000, 357.656, -1056.36, 26.016, 0, 0, 3.12152, 1, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `Column 84`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `undefined`) VALUES + (53, 1, 117, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1000, 352.455, -1056.27, 26.0166, 0, 0, 3.1086, 1, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `Column 84`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `undefined`) VALUES + (54, 1, 107, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1000, 346.23, -1055.48, 25.8838, 0, 0, 3.1377, 1, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `Column 84`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `undefined`) VALUES + (55, 1, 107, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1000, 342.364, -1055.36, 25.8839, 0, 0, 3.12213, 1, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `Column 84`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `undefined`) VALUES + (56, 1, 107, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1000, 338.239, -1055.29, 25.8841, 0, 0, 3.07547, 1, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `Column 84`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `undefined`) VALUES + (57, 1, 107, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1000, 333.56, -1055.31, 25.8841, 0, 0, 3.09697, 1, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `Column 84`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `undefined`) VALUES + (58, 2, 156, 0, 0, 0, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, -863.201, -666.353, 11.0311, 0, 0, -3.04091, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `Column 84`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `undefined`) VALUES + (59, 2, 156, 0, 0, 0, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, -859.264, -665.929, 11.0121, 0, 0, -3.02909, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `Column 84`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `undefined`) VALUES + (60, 2, 156, 0, 0, 0, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, -855.519, -665.594, 10.9943, 0, 0, -3.03498, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `Column 84`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `undefined`) VALUES + (61, 2, 156, 0, 0, 0, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, -851.826, -665.276, 10.9767, 0, 0, -3.02548, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `Column 84`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `undefined`) VALUES + (62, 2, 156, 0, 0, 0, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, -843.97, -679.789, 10.9396, 0, 0, 1.72875, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `Column 84`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `undefined`) VALUES + (63, 2, 156, 0, 0, 0, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, -844.578, -675.52, 10.9427, 0, 0, 1.70593, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `Column 84`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `undefined`) VALUES + (64, 2, 156, 0, 0, 0, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, -845.17, -671.403, 10.9455, 0, 0, 1.69794, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `Column 84`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `undefined`) VALUES + (65, 2, 157, 0, 0, 0, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, -873.775, -710.286, 11.1915, 0, 0, -2.06147, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `Column 84`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `undefined`) VALUES + (66, 2, 157, 0, 0, 0, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, -881.43, -705.81, 11.2087, 0, 0, -2.22486, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `Column 84`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `undefined`) VALUES + (67, 2, 236, 0, 0, 0, 0, 76, 76, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, -897.515, -698.598, 10.9724, 0, 0, -3.01881, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `Column 84`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `undefined`) VALUES + (68, 2, 236, 0, 0, 0, 0, 76, 76, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, -894.148, -698.128, 10.9701, 0, 0, -3.01433, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `Column 84`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `undefined`) VALUES + (69, 2, 236, 0, 0, 0, 0, 76, 76, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, -894.135, -719.859, 10.9428, 0, 0, -1.41224, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `Column 84`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `undefined`) VALUES + (70, 2, 236, 0, 0, 0, 0, 52, 52, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, -894.683, -715.826, 10.9485, 0, 0, -1.42683, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `Column 84`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `undefined`) VALUES + (71, 2, 156, 0, 0, 0, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, -650.832, 754.237, 11.2032, 0, 0, 1.50302, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `Column 84`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `undefined`) VALUES + (72, 2, 156, 0, 0, 0, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, -639.172, 753.413, 11.2032, 0, 0, 1.50092, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `Column 84`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `undefined`) VALUES + (73, 2, 156, 0, 0, 0, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, -621.907, 752.278, 11.2033, 0, 0, 1.49172, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `Column 84`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `undefined`) VALUES + (74, 2, 156, 0, 0, 0, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, -610.695, 751.54, 11.2031, 0, 0, 1.5242, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `Column 84`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `undefined`) VALUES + (75, 2, 157, 0, 0, 0, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, -599.312, 812.778, 11.4341, 0, 0, -1.51886, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `Column 84`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `undefined`) VALUES + (76, 2, 157, 0, 0, 0, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, -599.318, 808.625, 11.4343, 0, 0, -1.54175, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `Column 84`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `undefined`) VALUES + (77, 2, 157, 0, 0, 0, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, -599.262, 804.179, 11.4321, 0, 0, -1.55996, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `Column 84`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `undefined`) VALUES + (78, 2, 236, 0, 0, 0, 0, 52, 52, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, -601.455, 777.717, 11.3721, 0, 0, -1.56567, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `Column 84`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `undefined`) VALUES + (79, 2, 236, 0, 0, 0, 0, 3, 3, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, -601.427, 781.32, 11.372, 0, 0, -1.57976, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `Column 84`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `undefined`) VALUES + (80, 2, 236, 0, 0, 0, 0, 7, 7, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, -601.614, 785.262, 11.3678, 0, 0, -1.53095, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `Column 84`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `undefined`) VALUES + (81, 2, 227, 0, 0, 0, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, -614.282, 804.889, 29.667, 0, 0, -3.13458, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `Column 84`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `undefined`) VALUES + (82, 2, 156, 0, 0, 0, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, -665.011, 766.586, 10.8582, 0, 0, -3.12432, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `Column 84`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `undefined`) VALUES + (83, 2, 156, 0, 0, 0, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, -665.185, 777.893, 11.0314, 0, 0, 3.13051, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `Column 84`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `undefined`) VALUES + (84, 2, 156, 0, 0, 0, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, -665.29, 793.478, 11.0371, 0, 0, -3.13675, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `Column 84`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `undefined`) VALUES + (85, 2, 156, 0, 0, 0, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, -665.178, 804.984, 11.0372, 0, 0, 3.13152, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `Column 84`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `undefined`) VALUES + (86, 2, 137, 0, 0, 0, 0, 3, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, -695.476, 917.25, 11.193, 0, 0, -1.5752, 10, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `Column 84`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `undefined`) VALUES + (87, 2, 137, 0, 0, 0, 0, 3, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, -695.799, 933.069, 11.1976, 0, 0, -1.59279, 10, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `Column 84`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `undefined`) VALUES + (88, 2, 137, 0, 0, 0, 0, 3, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, -751.642, 927.235, 11.2813, 0, 0, 1.58276, 10, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `Column 84`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `undefined`) VALUES + (89, 2, 156, 0, 0, 0, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 520.53, 503.127, 10.8484, 0, 0, -0.00178437, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `Column 84`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `undefined`) VALUES + (90, 2, 156, 0, 0, 0, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 516.364, 503.18, 10.9362, 0, 0, -0.0254137, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `Column 84`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `undefined`) VALUES + (91, 2, 156, 0, 0, 0, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 498.01, 503.081, 11.193, 0, 0, 0.0146382, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `Column 84`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `undefined`) VALUES + (92, 2, 156, 0, 0, 0, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 502.233, 503.026, 11.1357, 0, 0, 0.0138817, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `Column 84`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `undefined`) VALUES + (93, 2, 156, 0, 0, 0, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 493.552, 503.077, 11.2541, 0, 0, -0.0044642, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `Column 84`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `undefined`) VALUES + (94, 2, 236, 0, 0, 0, 0, 52, 52, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 490.796, 528.832, 11.3465, 0, 0, 1.54742, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `Column 84`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `undefined`) VALUES + (95, 2, 236, 0, 0, 0, 0, 76, 76, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 490.796, 525.464, 11.3455, 0, 0, 1.57115, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `Column 84`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `undefined`) VALUES + (96, 2, 157, 0, 0, 0, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 490.527, 519.161, 11.6082, 0, 0, 3.12121, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `Column 84`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `undefined`) VALUES + (97, 2, 156, 0, 0, 0, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 372.272, -526.059, 12.1009, 0, 0, -0.731552, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `Column 84`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `undefined`) VALUES + (98, 2, 156, 0, 0, 0, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 369.489, -523.585, 12.0988, 0, 0, -0.718855, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `Column 84`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `undefined`) VALUES + (99, 2, 156, 0, 0, 0, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 366.674, -521.239, 12.0989, 0, 0, -0.712901, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `Column 84`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `undefined`) VALUES + (100, 2, 156, 0, 0, 0, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 363.691, -518.751, 12.0982, 0, 0, -0.698761, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `Column 84`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `undefined`) VALUES + (101, 2, 156, 0, 0, 0, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 361.239, -516.717, 12.0989, 0, 0, -0.705683, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `Column 84`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `undefined`) VALUES + (102, 2, 156, 0, 0, 0, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 358.335, -514.321, 12.0942, 0, 0, -0.696986, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `Column 84`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `undefined`) VALUES + (103, 2, 156, 0, 0, 0, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 355.575, -511.957, 12.0989, 0, 0, -0.701771, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `Column 84`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `undefined`) VALUES + (104, 2, 157, 0, 0, 0, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 348.887, -491.942, 12.3596, 0, 0, 2.45143, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `Column 84`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `undefined`) VALUES + (105, 2, 157, 0, 0, 0, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 351.751, -494.224, 12.3596, 0, 0, 2.44634, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `Column 84`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `undefined`) VALUES + (106, 2, 146, 0, 0, 0, 0, 1, 3, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, -119.267, -918.579, 10.6751, 0, 0, 1.83377, 6, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `Column 84`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `undefined`) VALUES + (107, 2, 146, 0, 0, 0, 0, 1, 3, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, -117.954, -924.926, 10.6753, 0, 0, 1.8211, 6, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `Column 84`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `undefined`) VALUES + (108, 2, 146, 0, 0, 0, 0, 1, 3, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, -116.5, -931.549, 10.6753, 0, 0, 1.76665, 6, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `Column 84`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `undefined`) VALUES + (129, 2, 146, 0, 0, 0, 0, 1, 3, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, -769.326, 1155.62, 12.6228, 0, 0, -3.14049, 6, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 100, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `Column 84`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `undefined`) VALUES + (130, 2, 146, 0, 0, 0, 0, 1, 3, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, -773.948, 1155.64, 12.6228, 0, 0, 3.13857, 6, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 100, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `Column 84`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `undefined`) VALUES + (131, 2, 146, 0, 0, 0, 0, 1, 3, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, -769.568, 1131.04, 12.6227, 0, 0, -0.010725, 6, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 100, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `Column 84`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `undefined`) VALUES + (132, 2, 146, 0, 0, 0, 0, 1, 3, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, -774.835, 1131.13, 12.6229, 0, 0, -0.0206099, 6, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 100, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `Column 84`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `undefined`) VALUES + (133, 2, 146, 0, 0, 0, 0, 1, 3, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 458.814, 702.22, 11.49, 0, 0, 1.51274, 6, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 100, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `Column 84`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `undefined`) VALUES + (134, 2, 146, 0, 0, 0, 0, 1, 3, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 467.202, 701.723, 11.6151, 0, 0, 1.50174, 6, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 100, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `Column 84`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `undefined`) VALUES + (135, 2, 150, 0, 0, 0, 0, 6, 73, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, -1005.69, 208.713, 11.1279, 0, 0, 3.03758, 14, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 100, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `Column 84`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `undefined`) VALUES + (136, 2, 150, 0, 0, 0, 0, 6, 75, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, -1002.12, 203.73, 11.4539, 0, 0, 3.01694, 14, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 100, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `Column 84`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `undefined`) VALUES + (137, 2, 168, 0, 0, 0, 0, 6, 76, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, -1008.54, 186.246, 11.3789, 0, 0, -0.157828, 14, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 100, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `Column 84`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `undefined`) VALUES + (138, 2, 168, 0, 0, 0, 0, 6, 76, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, -995.796, 193.143, 11.4015, 0, 0, 1.41776, 14, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 100, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `Column 84`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `undefined`) VALUES + (139, 2, 167, 0, 0, 0, 0, 56, 75, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, -1141.98, -283.386, 11.3194, 0, 0, -3.09345, 18, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 100, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `Column 84`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `undefined`) VALUES + (140, 2, 167, 0, 0, 0, 0, 13, 76, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, -1143.05, -270.229, 11.4251, 0, 0, -3.05214, 18, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 100, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `Column 84`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `undefined`) VALUES + (141, 2, 167, 0, 0, 0, 0, 13, 76, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, -1143.99, -256.669, 11.5147, 0, 0, -3.07535, 18, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 100, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `Column 84`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `undefined`) VALUES + (142, 2, 146, 0, 0, 0, 0, 1, 3, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, -873.256, -482.571, 11.3251, 0, 0, -1.5271, 6, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 100, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `Column 84`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `undefined`) VALUES + (143, 2, 146, 0, 0, 0, 0, 1, 3, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, -873.249, -478.507, 11.3193, 0, 0, -1.55587, 6, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 100, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `Column 84`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `undefined`) VALUES + (144, 2, 138, 0, 0, 0, 0, 1, 75, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, -1243.33, 23.4004, 12.013, 0, 0, 3.12587, 22, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 100, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `Column 84`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `undefined`) VALUES + (145, 2, 138, 0, 0, 0, 0, 1, 75, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, -1247.7, 23.4549, 12.0141, 0, 0, 3.1171, 22, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 100, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `Column 84`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `undefined`) VALUES + (146, 2, 138, 0, 0, 0, 0, 1, 75, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, -1251.99, 23.5308, 12.0096, 0, 0, 3.12793, 22, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 100, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `Column 84`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `undefined`) VALUES + (147, 4, 596, 0, 0, 0, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 1602.73, -1703.95, 5.62027, 0, 0, 1.59558, 4, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 100, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `Column 84`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `undefined`) VALUES + (148, 4, 596, 0, 0, 0, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 1602.74, -1700.18, 5.61885, 0, 0, 1.59013, 4, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 100, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `Column 84`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `undefined`) VALUES + (149, 4, 596, 0, 0, 0, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 1602.68, -1696.18, 5.61891, 0, 0, 1.57734, 4, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 100, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `Column 84`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `undefined`) VALUES + (150, 4, 596, 0, 0, 0, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 1602.67, -1691.93, 5.61976, 0, 0, 1.59322, 4, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 100, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `Column 84`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `undefined`) VALUES + (151, 4, 596, 0, 0, 0, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 2083.1, -1706.03, 13.104, 0, 0, 0.635562, 4, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 100, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `Column 84`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `undefined`) VALUES + (152, 4, 596, 0, 0, 0, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 1595.43, -1711.89, 5.61871, 0, 0, -0.0106168, 4, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 100, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `Column 84`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `undefined`) VALUES + (153, 4, 596, 0, 0, 0, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 1591.43, -1711.87, 5.61965, 0, 0, 0.00642908, 4, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 100, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `Column 84`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `undefined`) VALUES + (154, 4, 596, 0, 0, 0, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 1587.33, -1711.86, 5.61184, 0, 0, 0.00975822, 4, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 100, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `Column 84`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `undefined`) VALUES + (155, 4, 427, 0, 0, 0, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 1526.72, -1644.82, 6.02297, 0, 0, -3.13362, 4, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 100, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `Column 84`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `undefined`) VALUES + (156, 4, 427, 0, 0, 0, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 1530.62, -1644.78, 6.02321, 0, 0, -3.11574, 4, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 100, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `Column 84`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `undefined`) VALUES + (157, 4, 427, 0, 0, 0, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 1534.72, -1644.71, 6.03863, 0, 0, -3.13567, 4, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 100, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `Column 84`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `undefined`) VALUES + (158, 4, 599, 0, 0, 0, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 1545.99, -1651.07, 6.08226, 0, 0, 1.56824, 4, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 100, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `Column 84`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `undefined`) VALUES + (159, 4, 599, 0, 0, 0, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 1546.03, -1654.96, 6.03352, 0, 0, 1.54986, 4, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 100, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `Column 84`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `undefined`) VALUES + (160, 4, 426, 0, 0, 0, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 1545.79, -1667.84, 5.62373, 0, 0, 1.56514, 4, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 100, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `Column 84`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `undefined`) VALUES + (161, 4, 426, 0, 0, 0, 0, 10, 10, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 1545.98, -1672.1, 5.63141, 0, 0, 1.5917, 4, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 100, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `Column 84`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `undefined`) VALUES + (162, 2, 131, 0, 0, 0, 0, 5, 62, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, -979.65, -882.122, 12.8471, 0, 0, 0.706624, 201, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 100, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `Column 84`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `undefined`) VALUES + (163, 2, 175, 0, 0, 0, 0, 10, 10, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, -982.328, -884.745, 12.8644, 0, 0, 0.752705, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 100, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `Column 84`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `undefined`) VALUES + (164, 2, 134, 0, 0, 0, 0, 37, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, -984.716, -887.286, 12.7108, 0, 0, 0.798329, 201, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 750, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 100, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `Column 84`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `undefined`) VALUES + (165, 4, 523, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 1526.17, -1680.36, 5.45989, 0, 0, -0.797715, 4, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 100, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `Column 84`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `undefined`) VALUES + (166, 4, 523, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 1526.06, -1674.86, 5.46142, 0, 0, -2.37213, 4, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 100, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `Column 84`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `undefined`) VALUES + (167, 4, 523, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 1529.73, -1674.89, 5.4601, 0, 0, -2.37606, 4, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 100, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `Column 84`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `undefined`) VALUES + (168, 4, 523, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 1529.64, -1680.68, 5.46212, 0, 0, -0.793975, 4, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 100, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `Column 84`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `undefined`) VALUES + (169, 4, 416, 0, 0, 0, 0, 1, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 1178.73, -1338.94, 14.0094, 0, 0, -1.54939, 8, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 100, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `Column 84`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `undefined`) VALUES + (170, 4, 416, 0, 0, 0, 0, 1, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 1178.46, -1308.67, 13.9791, 0, 0, -1.56455, 8, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 100, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `Column 84`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `undefined`) VALUES + (171, 4, 416, 0, 0, 0, 0, 1, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 2036.82, -1425.53, 17.1413, 0, 0, -0.00217407, 8, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 100, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `Column 84`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `undefined`) VALUES + (172, 4, 416, 0, 0, 0, 0, 1, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 2024.7, -1409.68, 17.1419, 0, 0, 1.55537, 8, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 100, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `Column 84`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `undefined`) VALUES + (173, 4, 408, 0, 0, 0, 0, 26, 26, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 2338.19, -2085.52, 14.0841, 0, 0, 1.56666, 24, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 100, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `Column 84`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `undefined`) VALUES + (174, 4, 408, 0, 0, 0, 0, 26, 26, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 2338.24, -2090.4, 14.097, 0, 0, 1.57921, 24, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 100, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `Column 84`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `undefined`) VALUES + (175, 4, 408, 0, 0, 0, 0, 26, 26, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 2338.3, -2095.48, 14.0909, 0, 0, 1.57749, 24, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 100, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `Column 84`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `undefined`) VALUES + (176, 4, 431, 0, 0, 0, 0, 47, 74, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 1781.16, -1887.68, 13.493, 0, 0, -1.54371, 20, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 100, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `Column 84`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `undefined`) VALUES + (177, 4, 431, 0, 0, 0, 0, 92, 72, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 1781.08, -1892.33, 13.492, 0, 0, -1.55517, 20, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 100, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `Column 84`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `undefined`) VALUES + (178, 4, 431, 0, 0, 0, 0, 92, 72, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 1780.83, -1897.52, 13.4905, 0, 0, -1.56997, 20, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 100, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `Column 84`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `undefined`) VALUES + (179, 4, 420, 0, 0, 0, 0, 6, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 1804.27, -1932.53, 13.1664, 0, 0, -0.015131, 16, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 100, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `Column 84`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `undefined`) VALUES + (180, 4, 420, 0, 0, 0, 0, 6, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 1800.35, -1932.4, 13.166, 0, 0, -0.0127972, 16, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 100, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `Column 84`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `undefined`) VALUES + (181, 4, 420, 0, 0, 0, 0, 6, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 1796.72, -1932.55, 13.1653, 0, 0, -0.000382929, 16, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 100, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `Column 84`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `undefined`) VALUES + (182, 4, 438, 0, 0, 0, 0, 6, 76, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 1792.65, -1932.66, 13.3902, 0, 0, 0.00784995, 16, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 100, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `Column 84`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `undefined`) VALUES + (183, 4, 438, 0, 0, 0, 0, 6, 76, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 1788.85, -1932.83, 13.3847, 0, 0, 0.025678, 16, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 100, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `Column 84`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `undefined`) VALUES + (184, 4, 407, 0, 0, 0, 0, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 1147.58, -1295.9, 13.8958, 0, 0, 0.00109566, 12, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 100, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `Column 84`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `undefined`) VALUES + (185, 4, 407, 0, 0, 0, 0, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 1147.58, -1308.6, 13.9144, 0, 0, 0.00538338, 12, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 100, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `Column 84`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `undefined`) VALUES + (186, 4, 598, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 2282.26, 2442.01, 10.5652, 0, 0, -0.0100905, 4, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 100, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `Column 84`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `undefined`) VALUES + (187, 4, 598, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 2277.82, 2441.92, 10.5665, 0, 0, 0.0142917, 4, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 100, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `Column 84`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `undefined`) VALUES + (188, 4, 598, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 2273.75, 2441.84, 10.5656, 0, 0, 0.00445989, 4, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 100, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `Column 84`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `undefined`) VALUES + (189, 4, 598, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 2269.03, 2441.76, 10.565, 0, 0, 0.02489, 4, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 100, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `Column 84`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `undefined`) VALUES + (190, 4, 598, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 2277.94, 2478.61, 10.5693, 0, 0, 3.13522, 4, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 100, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `Column 84`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `undefined`) VALUES + (191, 4, 598, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 2273.44, 2478.64, 10.5671, 0, 0, 3.12822, 4, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 100, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `Column 84`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `undefined`) VALUES + (192, 4, 598, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 2269.09, 2478.64, 10.5649, 0, 0, 3.13244, 4, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 100, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `Column 84`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `undefined`) VALUES + (193, 4, 598, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 2282.15, 2478.59, 10.5668, 0, 0, -3.12538, 4, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 100, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `Column 84`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `undefined`) VALUES + (194, 4, 407, 0, 0, 0, 0, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 1751.1, 2077.36, 11.0579, 0, 0, 3.13707, 12, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 100, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `Column 84`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `undefined`) VALUES + (195, 4, 407, 0, 0, 0, 0, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 1756.99, 2077.55, 11.0555, 0, 0, -3.13337, 12, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 100, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `Column 84`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `undefined`) VALUES + (196, 4, 407, 0, 0, 0, 0, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 1763.96, 2077.97, 11.0573, 0, 0, -3.10259, 12, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 100, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `Column 84`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `undefined`) VALUES + (197, 4, 597, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, -1572.66, 742.629, -5.47258, 0, 0, 1.57093, 4, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 100, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `Column 84`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `undefined`) VALUES + (198, 4, 597, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, -1572.64, 738.657, -5.47407, 0, 0, 1.5799, 4, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 100, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `Column 84`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `undefined`) VALUES + (199, 4, 597, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, -1572.6, 734.641, -5.47307, 0, 0, 1.57367, 4, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 100, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `Column 84`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `undefined`) VALUES + (200, 4, 597, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, -1572.56, 730.619, -5.47164, 0, 0, 1.57203, 4, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 100, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `Column 84`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `undefined`) VALUES + (201, 4, 597, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, -1572.46, 726.494, -5.47229, 0, 0, 1.57229, 4, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 100, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `Column 84`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `undefined`) VALUES + (202, 4, 597, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, -1579.91, 750.258, -5.47212, 0, 0, 3.13972, 4, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 100, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `Column 84`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `undefined`) VALUES + (203, 4, 597, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, -1584.04, 750.231, -5.47137, 0, 0, -3.13672, 4, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 100, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `Column 84`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `undefined`) VALUES + (204, 4, 597, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, -1588.07, 750.247, -5.47243, 0, 0, 3.13574, 4, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 100, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `Column 84`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `undefined`) VALUES + (205, 4, 597, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, -1592.38, 750.296, -5.47143, 0, 0, 3.13692, 4, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 100, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `Column 84`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `undefined`) VALUES + (206, 4, 523, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, -1611.79, 730.701, -5.67174, 0, 0, 0.560641, 4, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 100, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `Column 84`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `undefined`) VALUES + (207, 4, 523, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, -1617.18, 730.908, -5.66764, 0, 0, -0.753548, 4, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 100, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `Column 84`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `undefined`) VALUES + (208, 4, 523, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, -1611.58, 733.413, -5.67532, 0, 0, 0.526106, 4, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 100, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `Column 84`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `undefined`) VALUES + (209, 4, 523, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, -1617.37, 733.199, -5.67666, 0, 0, -0.764526, 4, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 100, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `Column 84`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `undefined`) VALUES + (210, 4, 426, 0, 0, 0, 0, 11, 11, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, -1572.29, 705.876, -5.49726, 0, 0, 1.58725, 4, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 100, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `Column 84`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `undefined`) VALUES + (211, 4, 426, 0, 0, 0, 0, 53, 53, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, -1572.31, 710.11, -5.49697, 0, 0, 1.55664, 4, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 100, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `Column 84`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `undefined`) VALUES + (212, 4, 426, 0, 0, 0, 0, 11, 11, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, -1572.36, 714.22, -5.49761, 0, 0, 1.58512, 4, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 100, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `Column 84`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `undefined`) VALUES + (213, 4, 427, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, -1596.07, 676.545, -5.10801, 0, 0, 0.0186245, 4, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 100, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `Column 84`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `undefined`) VALUES + (214, 4, 427, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, -1600.28, 676.495, -5.10837, 0, 0, 0.0136404, 4, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 100, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `Column 84`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `undefined`) VALUES + (215, 4, 416, 0, 0, 0, 0, 1, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, -2677.4, 630.025, 14.6044, 0, 0, 1.57874, 8, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 100, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `Column 84`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `undefined`) VALUES + (216, 4, 416, 0, 0, 0, 0, 1, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, -2666.93, 629.908, 14.6044, 0, 0, 1.56592, 8, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 100, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `Column 84`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `undefined`) VALUES + (217, 4, 416, 0, 0, 0, 0, 1, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, -2686.18, 628.286, 14.6058, 0, 0, 1.9158, 8, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 100, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `Column 84`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `undefined`) VALUES + (218, 4, 407, 0, 0, 0, 0, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, -2022.76, 75.2526, 28.3631, 0, 0, -1.47777, 12, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 100, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `Column 84`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `undefined`) VALUES + (219, 4, 407, 0, 0, 0, 0, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, -2022.92, 84.3134, 28.3332, 0, 0, -1.5322, 12, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 100, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `Column 84`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `undefined`) VALUES + (220, 4, 407, 0, 0, 0, 0, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, -2022.93, 92.2289, 28.3678, 0, 0, -1.51043, 12, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 100, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `Column 84`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `undefined`) VALUES + (221, 4, 411, 0, 0, 0, 0, 12, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 564.59, -1291.1, 16.9753, 0, 0, 0.0255753, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 100, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `Column 84`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `undefined`) VALUES + (222, 4, 541, 0, 0, 0, 0, 36, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 561, -1291.44, 16.8732, 0, 0, 0.00172557, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 100, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `Column 84`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `undefined`) VALUES + (223, 4, 480, 0, 0, 0, 0, 6, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 557.632, -1291.24, 17.022, 0, 0, 0.0362236, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 100, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `Column 84`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `undefined`) VALUES + (224, 4, 477, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 554.015, -1291.05, 17.0018, 0, 0, -0.0592367, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 100, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `Column 84`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `undefined`) VALUES + (225, 2, 131, 0, 0, 0, 0, 62, 37, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, -1154.93, 5.74538, 11.2258, 0, 0, -1.56933, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 100, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `Column 84`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `undefined`) VALUES + (226, 1, 111, 0, 0, 0, 0, 57, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 1190.48, -252.694, 24.7467, 0, 0, 3.13471, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 2500, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 100, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `Column 84`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `undefined`) VALUES + (227, 1, 102, 0, 0, 0, 0, 57, 73, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 1209.59, -85.9233, 12.6336, 0, 0, -2.23509, 204, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 2500, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 100, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `Column 84`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `undefined`) VALUES + (228, 1, 129, 0, 0, 0, 0, 25, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 1209.51, -81.4913, 12.1281, 0, 0, -2.20648, 204, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 2100, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 100, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `Column 84`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `undefined`) VALUES + (229, 1, 112, 0, 0, 0, 0, 55, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 1209.65, -77.2701, 11.9, 0, 0, -2.20789, 204, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 2000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 100, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `Column 84`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `undefined`) VALUES + (230, 1, 91, 0, 0, 0, 0, 51, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 1211.41, -66.0152, 10.4973, 0, 0, -2.52612, 204, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1500, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 100, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `Column 84`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `undefined`) VALUES + (231, 1, 100, 0, 0, 0, 0, 69, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 1210.97, -73.589, 11.1925, 0, 0, -2.19468, 204, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 100, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `Column 84`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `undefined`) VALUES + (232, 1, 94, 0, 0, 0, 0, 23, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 1214.52, -63.2275, 10.152, 0, 0, -2.81749, 204, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 100, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `Column 84`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `undefined`) VALUES + (233, 1, 90, 0, 0, 0, 0, 41, 76, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 1218.85, -62.5937, 10.422, 0, 0, 3.0997, 204, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 2500, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 100, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `Column 84`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `undefined`) VALUES + (234, 1, 109, 0, 0, 0, 0, 18, 18, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 1222.63, -63.0764, 10.2099, 0, 0, 3.10392, 204, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1200, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 100, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `Column 84`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `undefined`) VALUES + (235, 1, 105, 0, 0, 0, 0, 51, 77, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 1244.93, -120.808, 14.604, 0, 0, -0.0421777, 204, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 75000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 100, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `Column 84`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `undefined`) VALUES + (236, 1, 101, 0, 0, 0, 0, 57, 74, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 1241.28, -120.641, 14.6288, 0, 0, 0.0264841, 204, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 85000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 100, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `Column 84`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `undefined`) VALUES + (237, 1, 119, 0, 0, 0, 0, 12, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 1237.61, -121, 14.5594, 0, 0, 0.00477941, 204, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 115000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 100, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `Column 84`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `undefined`) VALUES + (238, 1, 92, 0, 0, 0, 0, 53, 73, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 1233.86, -120.93, 14.6328, 0, 0, -0.0198187, 204, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 100000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 100, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `Column 84`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `undefined`) VALUES + (239, 1, 134, 0, 0, 0, 0, 72, 75, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 1247.55, -107.909, 14.7097, 0, 0, 1.50495, 204, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 25000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 100, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `Column 84`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `undefined`) VALUES + (240, 1, 137, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 1247.63, -104.151, 14.2887, 0, 0, 1.54257, 204, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 20000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 100, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `Column 84`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `undefined`) VALUES + (241, 1, 135, 0, 0, 0, 0, 11, 75, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 1247.29, -100.391, 14.0073, 0, 0, 1.52489, 204, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 22000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 100, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `Column 84`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `undefined`) VALUES + (243, 1, 139, 0, 0, 0, 0, 9, 73, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 1247.41, -96.6294, 13.9466, 0, 0, 1.55603, 204, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 25000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 100, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `Column 84`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `undefined`) VALUES + (244, 1, 138, 0, 0, 0, 0, 54, 76, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 1247.62, -92.3873, 13.426, 0, 0, 1.51434, 204, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 27000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 100, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `Column 84`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `undefined`) VALUES + (245, 1, 102, 0, 0, 0, 0, 26, 75, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, -751.01, -535.337, 8.80389, 0, 0, -1.13589, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 100, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `Column 84`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `undefined`) VALUES + (246, 1, 102, 0, 0, 0, 0, 34, 73, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, -750.797, -539.199, 8.80304, 0, 0, -1.10576, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 100, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `Column 84`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `undefined`) VALUES + (247, 1, 102, 0, 0, 0, 0, 44, 74, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, -751.052, -543.618, 8.80374, 0, 0, -1.07295, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 100, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `Column 84`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `undefined`) VALUES + (248, 1, 100, 0, 0, 0, 0, 58, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, -751.569, -552.963, 8.5998, 0, 0, -1.61007, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 100, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `Column 84`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `undefined`) VALUES + (249, 1, 100, 0, 0, 0, 0, 18, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, -751.576, -556.203, 8.59965, 0, 0, -1.59793, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 100, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `Column 84`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `undefined`) VALUES + (250, 1, 100, 0, 0, 0, 0, 58, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, -751.577, -559.737, 8.59964, 0, 0, -1.57346, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 100, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `Column 84`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `undefined`) VALUES + (251, 1, 100, 0, 0, 0, 0, 18, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, -751.575, -563.115, 8.60021, 0, 0, -1.57212, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 100, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `Column 84`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `undefined`) VALUES + (252, 1, 126, 0, 0, 0, 0, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, -1524.37, -927.334, 11.6627, 0, 0, -1.51896, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 100, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 100, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `Column 84`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `undefined`) VALUES + (253, 1, 126, 0, 0, 0, 0, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, -1524.94, -920.765, 11.6717, 0, 0, -1.51945, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 100, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 100, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `Column 84`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `undefined`) VALUES + (254, 1, 126, 0, 0, 0, 0, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, -1525.38, -914.304, 11.6674, 0, 0, -1.49781, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 100, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 100, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `Column 84`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `undefined`) VALUES + (255, 1, 142, 0, 0, 0, 0, 1, 53, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 620.768, -665.364, -0.327586, 0, 0, -0.0217677, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 100, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `Column 84`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `undefined`) VALUES + (256, 1, 143, 0, 0, 0, 0, 12, 35, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 627.834, -666.615, -0.505819, 0, 0, -0.0385386, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 35000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 100, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `Column 84`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `undefined`) VALUES + (258, 1, 146, 0, 0, 0, 0, 34, 74, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 1426.45, -803.581, 11.9599, 0, 0, 1.56821, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 35000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 100, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `Column 84`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `undefined`) VALUES + (259, 1, 104, 0, 0, 0, 0, 52, 74, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 1426.62, -795.533, 11.8912, 0, 0, 1.56813, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 30000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 100, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `Column 84`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `undefined`) VALUES + (260, 1, 93, 0, 0, 0, 0, 39, 78, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 1426.01, -786.663, 12.4028, 0, 0, 1.56679, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 40000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 100, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `Column 84`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `undefined`) VALUES + (261, 4, 547, 0, 0, 0, 0, 10, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 2136.31, -1150.2, 23.9743, 0, 0, 0.748413, 228, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 100, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `Column 84`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `undefined`) VALUES + (262, 4, 516, 0, 0, 0, 0, 122, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 2136.18, -1145.37, 24.6024, 0, 0, 0.789813, 228, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 100, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `Column 84`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `undefined`) VALUES + (263, 4, 466, 0, 0, 0, 0, 78, 76, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 2125.15, -1152.9, 23.7633, 0, 0, -0.783476, 228, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 100, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `Column 84`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `undefined`) VALUES + (264, 4, 410, 0, 0, 0, 0, 10, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 2136.76, -1141.11, 24.8917, 0, 0, 0.786093, 228, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 100, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `Column 84`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `undefined`) VALUES + (265, 4, 445, 0, 0, 0, 0, 45, 45, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 2117.76, -1155.76, 24.126, 0, 0, -0.705611, 228, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 100, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `Column 84`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `undefined`) VALUES + (266, 4, 405, 0, 0, 0, 0, 24, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 2117.4, -1151.21, 24.2249, 0, 0, -0.645516, 228, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 100, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `Column 84`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `undefined`) VALUES + (267, 4, 458, 0, 0, 0, 0, 4, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 2136.36, -1136, 25.5515, 0, 0, 0.777684, 228, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1400, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 100, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `Column 84`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `undefined`) VALUES + (268, 4, 496, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 2118.21, -1145.71, 24.3037, 0, 0, -1.09275, 228, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 100, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `Column 84`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `undefined`) VALUES + (269, 4, 418, 0, 0, 0, 0, 95, 95, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 2118.32, -1141.57, 24.9918, 0, 0, -1.07252, 228, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 100, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `Column 84`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `undefined`) VALUES + (270, 4, 529, 0, 0, 0, 0, 15, 15, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 1537.91, -1669.25, 5.5238, 0, 0, 0.00760863, 4, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 850, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 100, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `Column 84`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `undefined`) VALUES + (271, 4, 549, 0, 0, 0, 0, 79, 39, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 2136.42, -1131.45, 25.3818, 0, 0, 0.778913, 228, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 750, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 100, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `Column 84`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `undefined`) VALUES + (272, 4, 404, 0, 0, 0, 0, 83, 110, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 2119.1, -1128.71, 25.0533, 0, 0, -1.00972, 228, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1100, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 100, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `Column 84`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `undefined`) VALUES + (273, 4, 422, 0, 0, 0, 0, 113, 36, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 2118.91, -1132.57, 25.2674, 0, 0, -1.04863, 228, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 100, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `Column 84`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `undefined`) VALUES + (274, 4, 419, 0, 0, 0, 0, 47, 76, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 2119.37, -1123.81, 25.1752, 0, 0, -0.824258, 228, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1500, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 100, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `Column 84`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `undefined`) VALUES + (275, 4, 559, 0, 0, 0, 0, 13, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 543.558, -1291.16, 16.8736, 0, 0, -0.140231, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 100, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `Column 84`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `undefined`) VALUES + (276, 4, 506, 0, 0, 0, 0, 76, 76, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 539.57, -1291.52, 16.949, 0, 0, 0.0129029, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 100, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `Column 84`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `undefined`) VALUES + (277, 4, 451, 0, 0, 0, 0, 46, 46, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 529.109, -1291.35, 16.9441, 0, 0, 0.007333, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 130000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 100, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `Column 84`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `undefined`) VALUES + (278, 4, 415, 0, 0, 0, 0, 25, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 532.506, -1291.65, 17.0134, 0, 0, 0.0241039, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 100, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `Column 84`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `undefined`) VALUES + (279, 4, 429, 0, 0, 0, 0, 13, 13, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 535.97, -1291.55, 16.9238, 0, 0, -0.00909396, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 100, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `Column 84`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `undefined`) VALUES + (280, 4, 565, 0, 0, 0, 0, 42, 42, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 525.643, -1291.94, 16.8666, 0, 0, 0.0016915, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 100, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `Column 84`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `undefined`) VALUES + (281, 4, 602, 0, 0, 0, 0, 13, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 522.465, -1291.49, 17.0442, 0, 0, -0.0111869, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 60000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 100, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `Column 84`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `undefined`) VALUES + (282, 4, 589, 0, 0, 0, 0, 114, 114, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 518.795, -1291.31, 16.9074, 0, 0, 0.0178289, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 50000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 100, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `Column 84`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `undefined`) VALUES + (283, 4, 519, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 1995.15, -2367.1, 14.4654, 0, 0, 1.57039, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 750000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 100, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `Column 84`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `undefined`) VALUES + (284, 4, 511, 0, 0, 0, 0, 37, 51, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 1994.14, -2388.79, 14.9204, 0, 0, 1.59079, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 400000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 100, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `Column 84`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `undefined`) VALUES + (285, 4, 593, 0, 0, 0, 0, 2, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 1995.97, -2407.75, 14.0243, 0, 0, 1.54898, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 200000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 100, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `Column 84`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `undefined`) VALUES + (286, 4, 553, 0, 0, 0, 0, 55, 23, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 2025.74, -2418.28, 14.8912, 0, 0, 2.46133, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 500000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 100, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `Column 84`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `undefined`) VALUES + (287, 4, 487, 0, 0, 0, 0, 74, 35, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 1995.52, -2332.31, 13.7254, 0, 0, 1.58853, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 300000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 100, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `Column 84`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `undefined`) VALUES + (288, 4, 548, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 1992.24, -2316.92, 15.1977, 0, 0, 1.58742, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 100, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `Column 84`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `undefined`) VALUES + (289, 4, 469, 0, 0, 0, 0, 1, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 1995.62, -2303.97, 13.5477, 0, 0, 1.53661, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 250000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 100, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `Column 84`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `undefined`) VALUES + (290, 4, 417, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 1992.1, -2255.76, 13.6483, 0, 0, 1.54044, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 900000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 100, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `Column 84`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `undefined`) VALUES + (291, 1, 111, 0, 0, 0, 0, 34, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 1312.95, -1011.41, 14.7386, 0, 0, 2.40378, 12, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 2500, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 100, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `Column 84`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `undefined`) VALUES + (292, 1, 111, 0, 0, 0, 0, 14, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 1209.73, -90.2957, 12.9842, 0, 0, -2.2061, 204, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 2500, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 100, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `Column 84`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `undefined`) VALUES + (293, 1, 127, 0, 0, 0, 0, 44, 27, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 331.266, -1573.11, 26.0381, 0, 0, -0.879107, 17, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 100, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `Column 84`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `undefined`) VALUES + (294, 1, 127, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, -73.1733, -349.082, 16.2603, 0, 0, -0.0165034, 17, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 100, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `Column 84`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `undefined`) VALUES + (295, 1, 127, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, -73.4793, -367.01, 16.2607, 0, 0, -0.0240202, 17, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 100, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `Column 84`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `undefined`) VALUES + (296, 4, 529, 0, 0, 0, 0, 7, 7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 2118.54, -1137.2, 24.7795, 0, 0, -1.06224, 228, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 850, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 100, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `Column 84`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `undefined`) VALUES + (297, 4, 596, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 1583.14, -1711.82, 5.60978, 0, 0, -0.0255531, 4, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 100, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `Column 84`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `undefined`) VALUES + (298, 4, 596, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 1578.54, -1711.84, 5.6025, 0, 0, 0.00653891, 4, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 100, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `Column 84`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `undefined`) VALUES + (299, 4, 596, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 1574.12, -1711.96, 5.61197, 0, 0, 0.00792556, 4, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 100, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `Column 84`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `undefined`) VALUES + (300, 2, 221, 0, 0, 0, 0, 30, 72, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, -987.238, -890.147, 12.7976, 0, 0, 0.861982, 201, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 3500, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 100, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `Column 84`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `undefined`) VALUES + (301, 2, 135, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, -975.756, -878.166, 12.9318, 0, 0, 0.813128, 201, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 7000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 100, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `Column 84`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `undefined`) VALUES + (302, 2, 226, 0, 0, 0, 0, 8, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, -966.656, -864.78, 12.8917, 0, 0, 1.16068, 201, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 4000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 100, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `Column 84`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `undefined`) VALUES + (303, 2, 152, 0, 0, 0, 0, 8, 90, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, -971.067, -873.153, 13.2271, 0, 0, 0.834572, 201, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 3200, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 100, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `Column 84`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `undefined`) VALUES + (304, 2, 130, 0, 0, 0, 0, 41, 76, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, -968.206, -868.967, 13.2656, 0, 0, 1.08971, 201, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 4750, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 100, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `Column 84`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `undefined`) VALUES + (305, 2, 140, 0, 0, 0, 0, 32, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, -973.192, -875.855, 12.8791, 0, 0, 0.822114, 201, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 2400, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 100, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `Column 84`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `undefined`) VALUES + (306, 2, 164, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, -989.644, -824.774, 7.12597, 0, 0, 3.12791, 201, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 15000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 100, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `Column 84`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `undefined`) VALUES + (307, 2, 204, 0, 0, 0, 0, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, -965.592, -860.48, 12.8871, 0, 0, 1.1847, 201, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 2500, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 100, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `Column 84`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `undefined`) VALUES + (308, 2, 149, 0, 0, 0, 0, 59, 75, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, -966.155, -855.875, 12.9219, 0, 0, 1.39879, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 3500, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 100, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `Column 84`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `undefined`) VALUES + (309, 2, 205, 0, 0, 0, 0, 41, 29, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, -965.04, -852.363, 12.8994, 0, 0, 1.44163, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 6000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 100, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `Column 84`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `undefined`) VALUES + (310, 2, 197, 0, 0, 0, 0, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, -965.029, -848.421, 12.8642, 0, 0, 1.43081, 201, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 5250, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 100, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `Column 84`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `undefined`) VALUES + (311, 2, 208, 0, 0, 0, 0, 42, 42, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, -964.721, -844.608, 13.1339, 0, 0, 1.52394, 201, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 3250, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 100, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `Column 84`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `undefined`) VALUES + (312, 2, 209, 0, 0, 0, 0, 14, 32, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, -965.016, -841.054, 12.9559, 0, 0, 1.53651, 201, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 4500, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 100, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `Column 84`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `undefined`) VALUES + (313, 2, 211, 0, 0, 0, 0, 3, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, -964.673, -837.367, 12.8576, 0, 0, 1.51387, 201, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 10000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 100, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `Column 84`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `undefined`) VALUES + (314, 2, 222, 0, 0, 0, 0, 33, 78, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, -964.774, -832.762, 12.8844, 0, 0, 1.51272, 201, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 2000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 100, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `Column 84`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `undefined`) VALUES + (315, 2, 230, 0, 0, 0, 0, 48, 65, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, -964.115, -828.989, 13.2367, 0, 0, 1.55643, 201, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 3000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 100, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `Column 84`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `undefined`) VALUES + (316, 2, 219, 0, 0, 0, 0, 32, 42, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, -964.923, -824.966, 13.3115, 0, 0, 1.56249, 201, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 4750, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 100, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `Column 84`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `undefined`) VALUES + (317, 2, 179, 0, 0, 0, 0, 16, 74, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, -985.562, -824.846, 7.45749, 0, 0, -3.1114, 201, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 27500, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 100, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `Column 84`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `undefined`) VALUES + (318, 2, 174, 0, 0, 0, 0, 64, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, -993.506, -825.182, 7.22026, 0, 0, -3.13612, 201, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 25000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 100, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `Column 84`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `undefined`) VALUES + (319, 2, 142, 0, 0, 0, 0, 13, 72, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, -997.382, -825.397, 7.10469, 0, 0, 3.12664, 201, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 17500, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 100, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `Column 84`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `undefined`) VALUES + (320, 2, 193, 0, 0, 0, 0, 53, 53, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, -967.23, -823.644, 6.2945, 0, 0, 1.56423, 201, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 3500, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 100, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `Column 84`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `undefined`) VALUES + (321, 2, 166, 0, 0, 0, 0, 14, 75, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, -967.043, -825.686, 6.29443, 0, 0, 1.61558, 201, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 4000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 100, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `Column 84`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `undefined`) VALUES + (322, 2, 198, 0, 0, 0, 0, 46, 46, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, -967.063, -827.738, 6.43505, 0, 0, 1.54959, 201, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 3000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 100, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `Column 84`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `undefined`) VALUES + (323, 2, 191, 0, 0, 0, 0, 22, 22, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, -967.07, -829.886, 6.31988, 0, 0, 1.58164, 201, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 4500, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 100, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `Column 84`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `undefined`) VALUES + (324, 2, 192, 0, 0, 0, 0, 33, 37, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, -966.719, -831.972, 6.35928, 0, 0, 1.58748, 201, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 100, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `Column 84`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `undefined`) VALUES + (325, 2, 210, 0, 0, 0, 0, 6, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, -1019.12, -844.436, 12.85, 0, 0, -1.61629, 201, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 85000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 100, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `Column 84`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `undefined`) VALUES + (326, 2, 132, 0, 0, 0, 0, 35, 35, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, -1015.09, -848.702, 12.8354, 0, 0, -1.52303, 201, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 75000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 100, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `Column 84`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `undefined`) VALUES + (327, 2, 141, 0, 0, 0, 0, 11, 11, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, -1010.9, -852.751, 12.7769, 0, 0, -1.23101, 201, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 100000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 100, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `Column 84`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `undefined`) VALUES + (328, 2, 159, 0, 0, 0, 0, 36, 36, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, -1007.32, -856.729, 12.8655, 0, 0, -1.08926, 201, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 80000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 100, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `Column 84`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `undefined`) VALUES + (329, 2, 145, 0, 0, 0, 0, 36, 36, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, -1004.13, -860.21, 12.8584, 0, 0, -0.843169, 201, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 80000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 100, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `Column 84`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `undefined`) VALUES + (330, 1, 106, 0, 0, 0, 0, 1, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 212.281, -41.5702, 16.4286, 0, 0, -0.00175398, 5, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 100, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `Column 84`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `undefined`) VALUES + (331, 1, 106, 0, 0, 0, 0, 1, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 220.664, -41.2063, 16.4286, 0, 0, -0.00824242, 5, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 100, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `Column 84`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `undefined`) VALUES + (332, 1, 106, 0, 0, 0, 0, 1, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 240.307, -41.481, 16.4286, 0, 0, -0.00575317, 5, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 100, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `Column 84`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `undefined`) VALUES + (333, 1, 106, 0, 0, 0, 0, 1, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 248.963, -41.6128, 16.4285, 0, 0, -0.0129603, 5, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 100, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `Column 84`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `undefined`) VALUES + (334, 1, 127, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, -72.9919, -331.528, 16.2616, 0, 0, -0.0204993, 17, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 100, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `Column 84`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `undefined`) VALUES + (335, 1, 97, 0, 0, 0, 0, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, -83.3733, -442.729, 16.3754, 0, 0, 1.53779, 9, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 100, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `Column 84`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`, `undefined`) VALUES + (336, 1, 97, 0, 0, 0, 0, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, -83.3866, -432.508, 16.3646, 0, 0, 1.56684, 9, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 100, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +/*!40000 ALTER TABLE `veh_main` ENABLE KEYS */; + +/*!40101 SET SQL_MODE=IFNULL(@OLD_SQL_MODE, '') */; +/*!40014 SET FOREIGN_KEY_CHECKS=IF(@OLD_FOREIGN_KEY_CHECKS IS NULL, 1, @OLD_FOREIGN_KEY_CHECKS) */; +/*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */; +/*!40111 SET SQL_NOTES=@OLD_SQL_NOTES */; diff --git a/misc/backup/database/asshat-31DEC2020-1700.sql b/misc/backup/database/asshat-31DEC2020-1700.sql new file mode 100644 index 00000000..ed279711 --- /dev/null +++ b/misc/backup/database/asshat-31DEC2020-1700.sql @@ -0,0 +1,7416 @@ +-- -------------------------------------------------------- +-- Host: 158.69.238.64 +-- Server version: 5.7.20 - MySQL Community Server (GPL) +-- Server OS: Win64 +-- HeidiSQL Version: 11.1.0.6116 +-- -------------------------------------------------------- + +/*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */; +/*!40101 SET NAMES utf8 */; +/*!50503 SET NAMES utf8mb4 */; +/*!40014 SET @OLD_FOREIGN_KEY_CHECKS=@@FOREIGN_KEY_CHECKS, FOREIGN_KEY_CHECKS=0 */; +/*!40101 SET @OLD_SQL_MODE=@@SQL_MODE, SQL_MODE='NO_AUTO_VALUE_ON_ZERO' */; +/*!40111 SET @OLD_SQL_NOTES=@@SQL_NOTES, SQL_NOTES=0 */; + + +-- Dumping structure for table db24053.acct_auth +CREATE TABLE IF NOT EXISTS `acct_auth` ( + `acct_auth_id` int(11) NOT NULL AUTO_INCREMENT, + `acct_auth_acct` int(11) NOT NULL DEFAULT '0', + `acct_auth_type` int(11) NOT NULL DEFAULT '0', + `acct_auth_detail` varchar(128) NOT NULL DEFAULT '', + `acct_auth_smscarrier` int(11) NOT NULL, + `acct_auth_verified` tinyint(1) NOT NULL DEFAULT '0', + `acct_auth_when_verified` int(32) NOT NULL DEFAULT '0', + `acct_auth_verifycode` varchar(32) NOT NULL DEFAULT '', + PRIMARY KEY (`acct_auth_id`) +) ENGINE=InnoDB DEFAULT CHARSET=latin1 COMMENT='Accounts - Authentication Methods'; + +-- Dumping data for table db24053.acct_auth: ~0 rows (approximately) +/*!40000 ALTER TABLE `acct_auth` DISABLE KEYS */; +/*!40000 ALTER TABLE `acct_auth` ENABLE KEYS */; + +-- Dumping structure for table db24053.acct_bl +CREATE TABLE IF NOT EXISTS `acct_bl` ( + `acct_bl_id` int(11) NOT NULL, + `acct_bl_ip` int(24) DEFAULT NULL, + `acct_bl_uid` varchar(128) DEFAULT NULL, + `acct_bl_when_added` int(32) DEFAULT NULL, + `acct_bl_acct` int(11) DEFAULT NULL, + `acct_bl_enabled` tinyint(1) DEFAULT '1', + PRIMARY KEY (`acct_bl_id`) +) ENGINE=InnoDB DEFAULT CHARSET=latin1 COMMENT='Accounts - Access Blacklist'; + +-- Dumping data for table db24053.acct_bl: ~0 rows (approximately) +/*!40000 ALTER TABLE `acct_bl` DISABLE KEYS */; +/*!40000 ALTER TABLE `acct_bl` ENABLE KEYS */; + +-- Dumping structure for table db24053.acct_contact +CREATE TABLE IF NOT EXISTS `acct_contact` ( + `acct_contact_id` int(11) NOT NULL AUTO_INCREMENT, + `acct_contact_acct` int(11) NOT NULL DEFAULT '0', + `acct_contact_contact` int(11) NOT NULL DEFAULT '0', + `acct_contact_type` int(11) NOT NULL DEFAULT '0', + `acct_contact_when_added` int(32) NOT NULL DEFAULT '0', + `acct_contact_accepted` tinyint(1) NOT NULL DEFAULT '0', + `acct_contact_when_accepted` int(32) NOT NULL DEFAULT '0', + `acct_contact_deleted` tinyint(1) NOT NULL DEFAULT '0', + PRIMARY KEY (`acct_contact_id`) +) ENGINE=InnoDB DEFAULT CHARSET=latin1 COMMENT='Accounts - Contacts (Friends/Blocked/Etc)'; + +-- Dumping data for table db24053.acct_contact: ~0 rows (approximately) +/*!40000 ALTER TABLE `acct_contact` DISABLE KEYS */; +/*!40000 ALTER TABLE `acct_contact` ENABLE KEYS */; + +-- Dumping structure for table db24053.acct_hotkey +CREATE TABLE IF NOT EXISTS `acct_hotkey` ( + `acct_hotkey_id` int(11) NOT NULL AUTO_INCREMENT, + `acct_hotkey_key` int(11) NOT NULL DEFAULT '0', + `acct_hotkey_cmdstr` varchar(128) NOT NULL DEFAULT '', + `acct_hotkey_enabled` tinyint(1) NOT NULL DEFAULT '1', + `acct_hotkey_when_added` int(32) NOT NULL DEFAULT '0', + `acct_hotkey_acct` int(11) NOT NULL DEFAULT '0', + `acct_hotkey_down` int(11) NOT NULL DEFAULT '0', + PRIMARY KEY (`acct_hotkey_id`) +) ENGINE=InnoDB AUTO_INCREMENT=37 DEFAULT CHARSET=latin1 COMMENT='Accounts - Custom Hotkeys'; + +-- Dumping data for table db24053.acct_hotkey: ~36 rows (approximately) +/*!40000 ALTER TABLE `acct_hotkey` DISABLE KEYS */; +INSERT INTO `acct_hotkey` (`acct_hotkey_id`, `acct_hotkey_key`, `acct_hotkey_cmdstr`, `acct_hotkey_enabled`, `acct_hotkey_when_added`, `acct_hotkey_acct`, `acct_hotkey_down`) VALUES + (1, 105, 'engine', 1, 1609095426, 1, 0); +INSERT INTO `acct_hotkey` (`acct_hotkey_id`, `acct_hotkey_key`, `acct_hotkey_cmdstr`, `acct_hotkey_enabled`, `acct_hotkey_when_added`, `acct_hotkey_acct`, `acct_hotkey_down`) VALUES + (2, 107, 'lights', 1, 1609095427, 1, 0); +INSERT INTO `acct_hotkey` (`acct_hotkey_id`, `acct_hotkey_key`, `acct_hotkey_cmdstr`, `acct_hotkey_enabled`, `acct_hotkey_when_added`, `acct_hotkey_acct`, `acct_hotkey_down`) VALUES + (3, 108, 'lock', 1, 1609095427, 1, 0); +INSERT INTO `acct_hotkey` (`acct_hotkey_id`, `acct_hotkey_key`, `acct_hotkey_cmdstr`, `acct_hotkey_enabled`, `acct_hotkey_when_added`, `acct_hotkey_acct`, `acct_hotkey_down`) VALUES + (4, 102, 'enter', 1, 1609095427, 1, 0); +INSERT INTO `acct_hotkey` (`acct_hotkey_id`, `acct_hotkey_key`, `acct_hotkey_cmdstr`, `acct_hotkey_enabled`, `acct_hotkey_when_added`, `acct_hotkey_acct`, `acct_hotkey_down`) VALUES + (5, 103, 'passenger', 1, 1609095427, 1, 0); +INSERT INTO `acct_hotkey` (`acct_hotkey_id`, `acct_hotkey_key`, `acct_hotkey_cmdstr`, `acct_hotkey_enabled`, `acct_hotkey_when_added`, `acct_hotkey_acct`, `acct_hotkey_down`) VALUES + (6, 105, 'engine', 1, 1609095427, 2, 0); +INSERT INTO `acct_hotkey` (`acct_hotkey_id`, `acct_hotkey_key`, `acct_hotkey_cmdstr`, `acct_hotkey_enabled`, `acct_hotkey_when_added`, `acct_hotkey_acct`, `acct_hotkey_down`) VALUES + (7, 107, 'lights', 1, 1609095427, 2, 0); +INSERT INTO `acct_hotkey` (`acct_hotkey_id`, `acct_hotkey_key`, `acct_hotkey_cmdstr`, `acct_hotkey_enabled`, `acct_hotkey_when_added`, `acct_hotkey_acct`, `acct_hotkey_down`) VALUES + (8, 108, 'lock', 1, 1609095427, 2, 0); +INSERT INTO `acct_hotkey` (`acct_hotkey_id`, `acct_hotkey_key`, `acct_hotkey_cmdstr`, `acct_hotkey_enabled`, `acct_hotkey_when_added`, `acct_hotkey_acct`, `acct_hotkey_down`) VALUES + (9, 102, 'enter', 1, 1609095427, 2, 0); +INSERT INTO `acct_hotkey` (`acct_hotkey_id`, `acct_hotkey_key`, `acct_hotkey_cmdstr`, `acct_hotkey_enabled`, `acct_hotkey_when_added`, `acct_hotkey_acct`, `acct_hotkey_down`) VALUES + (10, 103, 'passenger', 1, 1609095427, 2, 0); +INSERT INTO `acct_hotkey` (`acct_hotkey_id`, `acct_hotkey_key`, `acct_hotkey_cmdstr`, `acct_hotkey_enabled`, `acct_hotkey_when_added`, `acct_hotkey_acct`, `acct_hotkey_down`) VALUES + (11, 105, 'engine', 1, 1609095427, 3, 0); +INSERT INTO `acct_hotkey` (`acct_hotkey_id`, `acct_hotkey_key`, `acct_hotkey_cmdstr`, `acct_hotkey_enabled`, `acct_hotkey_when_added`, `acct_hotkey_acct`, `acct_hotkey_down`) VALUES + (12, 107, 'lights', 1, 1609095427, 3, 0); +INSERT INTO `acct_hotkey` (`acct_hotkey_id`, `acct_hotkey_key`, `acct_hotkey_cmdstr`, `acct_hotkey_enabled`, `acct_hotkey_when_added`, `acct_hotkey_acct`, `acct_hotkey_down`) VALUES + (13, 108, 'lock', 1, 1609095427, 3, 0); +INSERT INTO `acct_hotkey` (`acct_hotkey_id`, `acct_hotkey_key`, `acct_hotkey_cmdstr`, `acct_hotkey_enabled`, `acct_hotkey_when_added`, `acct_hotkey_acct`, `acct_hotkey_down`) VALUES + (14, 102, 'enter', 1, 1609095427, 3, 0); +INSERT INTO `acct_hotkey` (`acct_hotkey_id`, `acct_hotkey_key`, `acct_hotkey_cmdstr`, `acct_hotkey_enabled`, `acct_hotkey_when_added`, `acct_hotkey_acct`, `acct_hotkey_down`) VALUES + (15, 103, 'passenger', 1, 1609095427, 3, 0); +INSERT INTO `acct_hotkey` (`acct_hotkey_id`, `acct_hotkey_key`, `acct_hotkey_cmdstr`, `acct_hotkey_enabled`, `acct_hotkey_when_added`, `acct_hotkey_acct`, `acct_hotkey_down`) VALUES + (16, 105, 'engine', 1, 1609095427, 4, 0); +INSERT INTO `acct_hotkey` (`acct_hotkey_id`, `acct_hotkey_key`, `acct_hotkey_cmdstr`, `acct_hotkey_enabled`, `acct_hotkey_when_added`, `acct_hotkey_acct`, `acct_hotkey_down`) VALUES + (17, 107, 'lights', 1, 1609095428, 4, 0); +INSERT INTO `acct_hotkey` (`acct_hotkey_id`, `acct_hotkey_key`, `acct_hotkey_cmdstr`, `acct_hotkey_enabled`, `acct_hotkey_when_added`, `acct_hotkey_acct`, `acct_hotkey_down`) VALUES + (18, 108, 'lock', 1, 1609095428, 4, 0); +INSERT INTO `acct_hotkey` (`acct_hotkey_id`, `acct_hotkey_key`, `acct_hotkey_cmdstr`, `acct_hotkey_enabled`, `acct_hotkey_when_added`, `acct_hotkey_acct`, `acct_hotkey_down`) VALUES + (19, 102, 'enter', 1, 1609095428, 4, 0); +INSERT INTO `acct_hotkey` (`acct_hotkey_id`, `acct_hotkey_key`, `acct_hotkey_cmdstr`, `acct_hotkey_enabled`, `acct_hotkey_when_added`, `acct_hotkey_acct`, `acct_hotkey_down`) VALUES + (20, 103, 'passenger', 1, 1609095428, 4, 0); +INSERT INTO `acct_hotkey` (`acct_hotkey_id`, `acct_hotkey_key`, `acct_hotkey_cmdstr`, `acct_hotkey_enabled`, `acct_hotkey_when_added`, `acct_hotkey_acct`, `acct_hotkey_down`) VALUES + (21, 105, 'engine', 1, 1609095428, 5, 0); +INSERT INTO `acct_hotkey` (`acct_hotkey_id`, `acct_hotkey_key`, `acct_hotkey_cmdstr`, `acct_hotkey_enabled`, `acct_hotkey_when_added`, `acct_hotkey_acct`, `acct_hotkey_down`) VALUES + (22, 107, 'lights', 1, 1609095428, 5, 0); +INSERT INTO `acct_hotkey` (`acct_hotkey_id`, `acct_hotkey_key`, `acct_hotkey_cmdstr`, `acct_hotkey_enabled`, `acct_hotkey_when_added`, `acct_hotkey_acct`, `acct_hotkey_down`) VALUES + (23, 108, 'lock', 1, 1609095428, 5, 0); +INSERT INTO `acct_hotkey` (`acct_hotkey_id`, `acct_hotkey_key`, `acct_hotkey_cmdstr`, `acct_hotkey_enabled`, `acct_hotkey_when_added`, `acct_hotkey_acct`, `acct_hotkey_down`) VALUES + (24, 102, 'enter', 1, 1609095428, 5, 0); +INSERT INTO `acct_hotkey` (`acct_hotkey_id`, `acct_hotkey_key`, `acct_hotkey_cmdstr`, `acct_hotkey_enabled`, `acct_hotkey_when_added`, `acct_hotkey_acct`, `acct_hotkey_down`) VALUES + (25, 103, 'passenger', 1, 1609095428, 5, 0); +INSERT INTO `acct_hotkey` (`acct_hotkey_id`, `acct_hotkey_key`, `acct_hotkey_cmdstr`, `acct_hotkey_enabled`, `acct_hotkey_when_added`, `acct_hotkey_acct`, `acct_hotkey_down`) VALUES + (26, 105, 'engine', 1, 1609095428, 6, 0); +INSERT INTO `acct_hotkey` (`acct_hotkey_id`, `acct_hotkey_key`, `acct_hotkey_cmdstr`, `acct_hotkey_enabled`, `acct_hotkey_when_added`, `acct_hotkey_acct`, `acct_hotkey_down`) VALUES + (27, 107, 'lights', 1, 1609095428, 6, 0); +INSERT INTO `acct_hotkey` (`acct_hotkey_id`, `acct_hotkey_key`, `acct_hotkey_cmdstr`, `acct_hotkey_enabled`, `acct_hotkey_when_added`, `acct_hotkey_acct`, `acct_hotkey_down`) VALUES + (28, 108, 'lock', 1, 1609095428, 6, 0); +INSERT INTO `acct_hotkey` (`acct_hotkey_id`, `acct_hotkey_key`, `acct_hotkey_cmdstr`, `acct_hotkey_enabled`, `acct_hotkey_when_added`, `acct_hotkey_acct`, `acct_hotkey_down`) VALUES + (29, 102, 'enter', 1, 1609095428, 6, 0); +INSERT INTO `acct_hotkey` (`acct_hotkey_id`, `acct_hotkey_key`, `acct_hotkey_cmdstr`, `acct_hotkey_enabled`, `acct_hotkey_when_added`, `acct_hotkey_acct`, `acct_hotkey_down`) VALUES + (30, 103, 'passenger', 1, 1609095428, 6, 0); +INSERT INTO `acct_hotkey` (`acct_hotkey_id`, `acct_hotkey_key`, `acct_hotkey_cmdstr`, `acct_hotkey_enabled`, `acct_hotkey_when_added`, `acct_hotkey_acct`, `acct_hotkey_down`) VALUES + (31, 105, 'engine', 1, 1609095584, 7, 0); +INSERT INTO `acct_hotkey` (`acct_hotkey_id`, `acct_hotkey_key`, `acct_hotkey_cmdstr`, `acct_hotkey_enabled`, `acct_hotkey_when_added`, `acct_hotkey_acct`, `acct_hotkey_down`) VALUES + (32, 107, 'lights', 1, 1609095584, 7, 0); +INSERT INTO `acct_hotkey` (`acct_hotkey_id`, `acct_hotkey_key`, `acct_hotkey_cmdstr`, `acct_hotkey_enabled`, `acct_hotkey_when_added`, `acct_hotkey_acct`, `acct_hotkey_down`) VALUES + (33, 108, 'lock', 1, 1609095585, 7, 0); +INSERT INTO `acct_hotkey` (`acct_hotkey_id`, `acct_hotkey_key`, `acct_hotkey_cmdstr`, `acct_hotkey_enabled`, `acct_hotkey_when_added`, `acct_hotkey_acct`, `acct_hotkey_down`) VALUES + (34, 102, 'enter', 1, 1609095585, 7, 0); +INSERT INTO `acct_hotkey` (`acct_hotkey_id`, `acct_hotkey_key`, `acct_hotkey_cmdstr`, `acct_hotkey_enabled`, `acct_hotkey_when_added`, `acct_hotkey_acct`, `acct_hotkey_down`) VALUES + (35, 103, 'passenger', 1, 1609095585, 7, 0); +INSERT INTO `acct_hotkey` (`acct_hotkey_id`, `acct_hotkey_key`, `acct_hotkey_cmdstr`, `acct_hotkey_enabled`, `acct_hotkey_when_added`, `acct_hotkey_acct`, `acct_hotkey_down`) VALUES + (36, 109, 'cursor', 1, 1609095585, 1, 0); +/*!40000 ALTER TABLE `acct_hotkey` ENABLE KEYS */; + +-- Dumping structure for table db24053.acct_main +CREATE TABLE IF NOT EXISTS `acct_main` ( + `acct_id` mediumint(9) NOT NULL DEFAULT '0', + `acct_name` varchar(32) NOT NULL DEFAULT '', + `acct_pass` varchar(512) NOT NULL DEFAULT '', + `acct_email` varchar(128) NOT NULL DEFAULT '', + `acct_settings` int(32) NOT NULL DEFAULT '0', + `acct_staff_flags` int(32) NOT NULL DEFAULT '0', + `acct_staff_title` varchar(32) NOT NULL DEFAULT '', + `acct_mod_flags` int(32) NOT NULL DEFAULT '0', + `acct_irc` varchar(64) NOT NULL DEFAULT '', + `acct_discord` int(64) NOT NULL DEFAULT '0', + `acct_ip` int(11) NOT NULL DEFAULT '0', + PRIMARY KEY (`acct_id`) +) ENGINE=InnoDB DEFAULT CHARSET=latin1 COMMENT='Accounts'; + +-- Dumping data for table db24053.acct_main: ~6 rows (approximately) +/*!40000 ALTER TABLE `acct_main` DISABLE KEYS */; +INSERT INTO `acct_main` (`acct_id`, `acct_name`, `acct_pass`, `acct_email`, `acct_settings`, `acct_staff_flags`, `acct_staff_title`, `acct_mod_flags`, `acct_irc`, `acct_discord`, `acct_ip`) VALUES + (1, 'Vortrex', '4271461D21D2A465D0FF2B7082A9136F1DACD78127C805E2B33292AAA200E5682F4B7D4AB426224222B24AA1183C4D02FEE983030996CF3963746AE1C46A375D', 'adrianbram@gmail.com', 0, -1, 'Scripter', 0, '', 0, 2130706433); +INSERT INTO `acct_main` (`acct_id`, `acct_name`, `acct_pass`, `acct_email`, `acct_settings`, `acct_staff_flags`, `acct_staff_title`, `acct_mod_flags`, `acct_irc`, `acct_discord`, `acct_ip`) VALUES + (2, 'maxaxle', '33A31BF6E32BD3BCCE1D2F2AB3B0D0768CEDAD30BC21A2EFA5F8A66BD7333A5545EFC773830E9F0B3C7AA285E3FDF60BADD1E93401AF9FC26CC25BB77238D750', '', 0, -1, 'Moderator', 0, '', 0, 1228971253); +INSERT INTO `acct_main` (`acct_id`, `acct_name`, `acct_pass`, `acct_email`, `acct_settings`, `acct_staff_flags`, `acct_staff_title`, `acct_mod_flags`, `acct_irc`, `acct_discord`, `acct_ip`) VALUES + (3, 'Vortrex2', '26B8F7687300F0BF90F79BEC5E84CCD57582DD09C345F256EBE99057595302E25C1958472172D4689D7B2DA607584AC2420D5909FEDB3E2B7A0F73A517A8AC1C', 'adrianbram@gmail.com', 0, 0, 'Scripter', 0, '', 0, 1809583893); +INSERT INTO `acct_main` (`acct_id`, `acct_name`, `acct_pass`, `acct_email`, `acct_settings`, `acct_staff_flags`, `acct_staff_title`, `acct_mod_flags`, `acct_irc`, `acct_discord`, `acct_ip`) VALUES + (4, 'Vortrex0', '87222437E0C7717BD9E5EC9E9FCE4DD258638F4B78AEC613A45F1161BC62268B077949984604076CC3F0959B55FEB1F1031C725FB2928A973CEE69CFFF1CC9DB', 'adrianbram@gmail.com', 0, 0, '', 0, '', 0, 2130706433); +INSERT INTO `acct_main` (`acct_id`, `acct_name`, `acct_pass`, `acct_email`, `acct_settings`, `acct_staff_flags`, `acct_staff_title`, `acct_mod_flags`, `acct_irc`, `acct_discord`, `acct_ip`) VALUES + (6, 'Vortrex1', 'EB77E84113C336288AA4B9AA2A8963ABF88ED15E23B51285C81FC6565FBB2F837DB5891AE63A1B7BA9B0FA5FD705FD7B335E7F83294641E3BFFB35EF36E1CC1C', 'adrianbram@gmail.com', 0, 0, '', 0, '', 0, 0); +INSERT INTO `acct_main` (`acct_id`, `acct_name`, `acct_pass`, `acct_email`, `acct_settings`, `acct_staff_flags`, `acct_staff_title`, `acct_mod_flags`, `acct_irc`, `acct_discord`, `acct_ip`) VALUES + (7, 'Vortrex3', 'D594569434FF2C84A326080F52D86DC829B376344AE8C9A9378E794DAF0B495629E1861D5ED6AD33AE9B13EC74986203599F8C8B71C58082AEE651B655A2D69A', 'adrianbram@gmail.com', 0, 0, '', 0, '', 0, 1809583893); +/*!40000 ALTER TABLE `acct_main` ENABLE KEYS */; + +-- Dumping structure for table db24053.acct_msg +CREATE TABLE IF NOT EXISTS `acct_msg` ( + `acct_msg_id` int(11) NOT NULL AUTO_INCREMENT, + `acct_msg_acct` int(11) NOT NULL DEFAULT '0', + `acct_msg_who_sent` int(11) NOT NULL DEFAULT '0', + `acct_msg_when_sent` int(32) NOT NULL DEFAULT '0', + `acct_msg_when_read` int(32) NOT NULL DEFAULT '0', + `acct_msg_deleted` tinyint(1) NOT NULL DEFAULT '0', + `acct_msg_when_deleted` int(32) NOT NULL DEFAULT '0', + `acct_msg_folder` int(11) NOT NULL DEFAULT '0', + `acct_msg_message` text NOT NULL, + PRIMARY KEY (`acct_msg_id`) +) ENGINE=InnoDB DEFAULT CHARSET=latin1 COMMENT='Accounts - Private Messages (Mail)'; + +-- Dumping data for table db24053.acct_msg: ~0 rows (approximately) +/*!40000 ALTER TABLE `acct_msg` DISABLE KEYS */; +/*!40000 ALTER TABLE `acct_msg` ENABLE KEYS */; + +-- Dumping structure for table db24053.acct_note +CREATE TABLE IF NOT EXISTS `acct_note` ( + `acct_note_id` int(11) NOT NULL AUTO_INCREMENT, + `acct_note_acct` int(11) NOT NULL DEFAULT '0', + `acct_server` int(11) NOT NULL DEFAULT '0', + `acct_note_who_added` int(11) NOT NULL DEFAULT '0', + `acct_note_when_added` int(32) NOT NULL DEFAULT '0', + `acct_note_message` varchar(255) NOT NULL DEFAULT '', + `acct_note_deleted` tinyint(1) NOT NULL DEFAULT '0', + `acct_note_who_deleted` int(11) NOT NULL DEFAULT '0', + `acct_note_when_deleted` int(32) NOT NULL DEFAULT '0', + PRIMARY KEY (`acct_note_id`) +) ENGINE=InnoDB DEFAULT CHARSET=latin1 COMMENT='Accounts - Staff Notes'; + +-- Dumping data for table db24053.acct_note: ~0 rows (approximately) +/*!40000 ALTER TABLE `acct_note` DISABLE KEYS */; +/*!40000 ALTER TABLE `acct_note` ENABLE KEYS */; + +-- Dumping structure for table db24053.acct_wl +CREATE TABLE IF NOT EXISTS `acct_wl` ( + `acct_wl_id` int(11) NOT NULL AUTO_INCREMENT, + `acct_wl_ip` int(24) NOT NULL DEFAULT '0', + `acct_wl_uid` varchar(128) NOT NULL DEFAULT '', + `acct_wl_when_added` int(32) NOT NULL DEFAULT '0', + `acct_wl_acct` int(11) NOT NULL DEFAULT '0', + `acct_wl_enabled` tinyint(1) NOT NULL DEFAULT '0', + PRIMARY KEY (`acct_wl_id`) +) ENGINE=InnoDB DEFAULT CHARSET=latin1 COMMENT='Accounts - Access Whitelist'; + +-- Dumping data for table db24053.acct_wl: ~0 rows (approximately) +/*!40000 ALTER TABLE `acct_wl` DISABLE KEYS */; +/*!40000 ALTER TABLE `acct_wl` ENABLE KEYS */; + +-- Dumping structure for table db24053.ac_script_bl +CREATE TABLE IF NOT EXISTS `ac_script_bl` ( + `ac_script_bl_id` smallint(6) NOT NULL DEFAULT '0', + `ac_script_bl_server` tinyint(1) NOT NULL DEFAULT '0', + `ac_script_bl_name` varchar(50) NOT NULL DEFAULT '', + `ac_script_bl_enabled` tinyint(1) NOT NULL DEFAULT '0', + PRIMARY KEY (`ac_script_bl_id`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Anticheat - Blacklisted Scripts'; + +-- Dumping data for table db24053.ac_script_bl: ~3 rows (approximately) +/*!40000 ALTER TABLE `ac_script_bl` DISABLE KEYS */; +INSERT INTO `ac_script_bl` (`ac_script_bl_id`, `ac_script_bl_server`, `ac_script_bl_name`, `ac_script_bl_enabled`) VALUES + (1, 4, 'load_modmanager', 1); +INSERT INTO `ac_script_bl` (`ac_script_bl_id`, `ac_script_bl_server`, `ac_script_bl_name`, `ac_script_bl_enabled`) VALUES + (2, 1, 'info', 1); +INSERT INTO `ac_script_bl` (`ac_script_bl_id`, `ac_script_bl_server`, `ac_script_bl_name`, `ac_script_bl_enabled`) VALUES + (3, 1, 'info2', 1); +/*!40000 ALTER TABLE `ac_script_bl` ENABLE KEYS */; + +-- Dumping structure for table db24053.ac_script_wl +CREATE TABLE IF NOT EXISTS `ac_script_wl` ( + `ac_script_wl_id` smallint(6) NOT NULL DEFAULT '0', + `ac_script_wl_server` tinyint(1) NOT NULL DEFAULT '0', + `ac_script_wl_name` varchar(50) NOT NULL DEFAULT '', + `ac_script_wl_enabled` tinyint(1) NOT NULL DEFAULT '1', + PRIMARY KEY (`ac_script_wl_id`) USING BTREE +) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Anticheat - Whitelisted Scripts'; + +-- Dumping data for table db24053.ac_script_wl: ~5 rows (approximately) +/*!40000 ALTER TABLE `ac_script_wl` DISABLE KEYS */; +INSERT INTO `ac_script_wl` (`ac_script_wl_id`, `ac_script_wl_server`, `ac_script_wl_name`, `ac_script_wl_enabled`) VALUES + (1, 4, 'sync', 1); +INSERT INTO `ac_script_wl` (`ac_script_wl_id`, `ac_script_wl_server`, `ac_script_wl_name`, `ac_script_wl_enabled`) VALUES + (2, 4, 'gtac', 1); +INSERT INTO `ac_script_wl` (`ac_script_wl_id`, `ac_script_wl_server`, `ac_script_wl_name`, `ac_script_wl_enabled`) VALUES + (3, 4, 'network_main', 1); +INSERT INTO `ac_script_wl` (`ac_script_wl_id`, `ac_script_wl_server`, `ac_script_wl_name`, `ac_script_wl_enabled`) VALUES + (4, 4, 'mpcellphone', 1); +INSERT INTO `ac_script_wl` (`ac_script_wl_id`, `ac_script_wl_server`, `ac_script_wl_name`, `ac_script_wl_enabled`) VALUES + (5, 4, 'speechcontrol_net', 1); +/*!40000 ALTER TABLE `ac_script_wl` ENABLE KEYS */; + +-- Dumping structure for table db24053.atm_main +CREATE TABLE IF NOT EXISTS `atm_main` ( + `atm_id` int(11) NOT NULL AUTO_INCREMENT, + `atm_server` tinyint(2) NOT NULL DEFAULT '0', + `atm_pos_x` float NOT NULL DEFAULT '0', + `atm_pos_y` float NOT NULL DEFAULT '0', + `atm_pos_z` float NOT NULL DEFAULT '0', + `atm_fee` int(11) NOT NULL DEFAULT '0', + `atm_disabled` tinyint(1) NOT NULL DEFAULT '0', + PRIMARY KEY (`atm_id`) +) ENGINE=InnoDB DEFAULT CHARSET=latin1 COMMENT='ATMs'; + +-- Dumping data for table db24053.atm_main: ~0 rows (approximately) +/*!40000 ALTER TABLE `atm_main` DISABLE KEYS */; +/*!40000 ALTER TABLE `atm_main` ENABLE KEYS */; + +-- Dumping structure for table db24053.atm_use +CREATE TABLE IF NOT EXISTS `atm_use` ( + `atm_use_id` int(11) NOT NULL AUTO_INCREMENT, + `atm_use_atm` int(11) NOT NULL DEFAULT '0', + `atm_use_bankacct` int(11) NOT NULL DEFAULT '0', + `atm_use_amount` int(11) NOT NULL DEFAULT '0', + `atm_use_when` int(32) NOT NULL DEFAULT '0', + `atm_use_balance_before` int(11) NOT NULL DEFAULT '0', + `atm_use_balance_after` int(11) NOT NULL DEFAULT '0', + `atm_use_result` int(11) NOT NULL DEFAULT '0', + PRIMARY KEY (`atm_use_id`) +) ENGINE=InnoDB DEFAULT CHARSET=latin1 COMMENT='ATMs - Usage'; + +-- Dumping data for table db24053.atm_use: ~0 rows (approximately) +/*!40000 ALTER TABLE `atm_use` DISABLE KEYS */; +/*!40000 ALTER TABLE `atm_use` ENABLE KEYS */; + +-- Dumping structure for table db24053.bank_main +CREATE TABLE IF NOT EXISTS `bank_main` ( + `bank_id` int(11) NOT NULL AUTO_INCREMENT, + `bank_server` int(11) NOT NULL DEFAULT '0', + `bank_name` varchar(128) NOT NULL DEFAULT 'Unnamed', + `bank_active` tinyint(1) NOT NULL DEFAULT '1', + `ban_try_when_tried` int(32) NOT NULL DEFAULT '0', + `ban_try_ban_id` int(11) NOT NULL DEFAULT '0', + PRIMARY KEY (`bank_id`) +) ENGINE=InnoDB DEFAULT CHARSET=latin1 COMMENT='Bans - Connection Attempts'; + +-- Dumping data for table db24053.bank_main: ~0 rows (approximately) +/*!40000 ALTER TABLE `bank_main` DISABLE KEYS */; +/*!40000 ALTER TABLE `bank_main` ENABLE KEYS */; + +-- Dumping structure for table db24053.ban_main +CREATE TABLE IF NOT EXISTS `ban_main` ( + `ban_id` int(11) NOT NULL AUTO_INCREMENT, + `ban_detail` int(11) NOT NULL DEFAULT '0', + `ban_server` tinyint(2) NOT NULL DEFAULT '0', + `ban_type` tinyint(1) NOT NULL DEFAULT '0', + `ban_ip_start` int(24) NOT NULL DEFAULT '0', + `ban_ip_end` int(24) NOT NULL DEFAULT '0', + `ban_uid` varchar(256) NOT NULL DEFAULT '', + `ban_who_added` int(11) NOT NULL DEFAULT '0', + `ban_when_added` int(32) NOT NULL DEFAULT '0', + `ban_reason` varchar(255) NOT NULL DEFAULT '', + `ban_deleted` tinyint(1) NOT NULL DEFAULT '0', + `ban_who_deleted` int(11) NOT NULL DEFAULT '0', + `ban_when_deleted` int(32) NOT NULL DEFAULT '0', + `ban_when_end` int(32) NOT NULL DEFAULT '0', + PRIMARY KEY (`ban_id`) +) ENGINE=InnoDB DEFAULT CHARSET=latin1 COMMENT='Bans'; + +-- Dumping data for table db24053.ban_main: ~0 rows (approximately) +/*!40000 ALTER TABLE `ban_main` DISABLE KEYS */; +/*!40000 ALTER TABLE `ban_main` ENABLE KEYS */; + +-- Dumping structure for table db24053.ban_try +CREATE TABLE IF NOT EXISTS `ban_try` ( + `ban_try_id` int(11) NOT NULL AUTO_INCREMENT, + `ban_try_server` tinyint(2) NOT NULL DEFAULT '0', + `ban_try_ip` int(24) NOT NULL DEFAULT '0', + `ban_try_uid` varchar(128) NOT NULL DEFAULT '', + `ban_try_when_tried` int(32) NOT NULL DEFAULT '0', + `ban_try_ban_id` int(11) NOT NULL DEFAULT '0', + PRIMARY KEY (`ban_try_id`) +) ENGINE=InnoDB DEFAULT CHARSET=latin1 COMMENT='Bans - Connection Attempts'; + +-- Dumping data for table db24053.ban_try: ~0 rows (approximately) +/*!40000 ALTER TABLE `ban_try` DISABLE KEYS */; +/*!40000 ALTER TABLE `ban_try` ENABLE KEYS */; + +-- Dumping structure for table db24053.biz_buy +CREATE TABLE IF NOT EXISTS `biz_buy` ( + `biz_buy_id` int(11) NOT NULL AUTO_INCREMENT, + `biz_buy_biz` int(11) NOT NULL DEFAULT '0', + `biz_buy_sacct` int(11) NOT NULL DEFAULT '0', + `biz_buy_amount` int(11) NOT NULL DEFAULT '0', + `biz_buy_prod` int(11) NOT NULL DEFAULT '0', + `biz_buy_tip` int(11) NOT NULL DEFAULT '0', + `biz_buy_result` tinyint(4) NOT NULL DEFAULT '0', + PRIMARY KEY (`biz_buy_id`) +) ENGINE=InnoDB DEFAULT CHARSET=latin1 COMMENT='Businesses - Purchases'; + +-- Dumping data for table db24053.biz_buy: ~0 rows (approximately) +/*!40000 ALTER TABLE `biz_buy` DISABLE KEYS */; +/*!40000 ALTER TABLE `biz_buy` ENABLE KEYS */; + +-- Dumping structure for table db24053.biz_loc +CREATE TABLE IF NOT EXISTS `biz_loc` ( + `biz_loc_id` int(11) NOT NULL AUTO_INCREMENT, + `biz_loc_server` int(11) NOT NULL DEFAULT '0', + `biz_loc_name` varchar(128) NOT NULL DEFAULT '', + `biz_loc_type` int(11) NOT NULL DEFAULT '0', + `biz_loc_biz` int(11) NOT NULL DEFAULT '0', + `biz_loc_enabled` int(11) NOT NULL DEFAULT '0', + `biz_loc_pos_x` float NOT NULL DEFAULT '0', + `biz_loc_pos_y` float NOT NULL DEFAULT '0', + `biz_loc_pos_z` float NOT NULL DEFAULT '0', + `biz_loc_rot_z` float NOT NULL DEFAULT '0', + `biz_loc_int` int(11) NOT NULL DEFAULT '0', + `biz_loc_vw` int(11) NOT NULL DEFAULT '0', + PRIMARY KEY (`biz_loc_id`) USING BTREE +) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Businesses - Locations'; + +-- Dumping data for table db24053.biz_loc: ~0 rows (approximately) +/*!40000 ALTER TABLE `biz_loc` DISABLE KEYS */; +/*!40000 ALTER TABLE `biz_loc` ENABLE KEYS */; + +-- Dumping structure for table db24053.biz_main +CREATE TABLE IF NOT EXISTS `biz_main` ( + `biz_id` int(11) NOT NULL AUTO_INCREMENT, + `biz_server` tinyint(4) NOT NULL DEFAULT '0', + `biz_name` varchar(40) NOT NULL DEFAULT 'Unnamed Business', + `biz_type` tinyint(4) NOT NULL DEFAULT '0', + `biz_buy_price` int(11) NOT NULL DEFAULT '0', + `biz_owner_type` int(11) NOT NULL DEFAULT '0', + `biz_owner_id` int(11) NOT NULL DEFAULT '0', + `biz_entrance_pos_x` float NOT NULL DEFAULT '0', + `biz_entrance_pos_y` float NOT NULL DEFAULT '0', + `biz_entrance_pos_z` float NOT NULL DEFAULT '0', + `biz_entrance_rot_z` float NOT NULL DEFAULT '0', + `biz_entrance_int` int(11) NOT NULL DEFAULT '0', + `biz_entrance_vw` int(11) NOT NULL DEFAULT '0', + `biz_entrance_pickup` int(11) NOT NULL DEFAULT '-1', + `biz_entrance_blip` int(11) NOT NULL DEFAULT '-1', + `biz_exit_pos_x` float NOT NULL DEFAULT '0', + `biz_exit_pos_y` float NOT NULL DEFAULT '0', + `biz_exit_pos_z` float NOT NULL DEFAULT '0', + `biz_exit_rot_z` float NOT NULL DEFAULT '0', + `biz_exit_int` int(11) NOT NULL DEFAULT '0', + `biz_exit_vw` int(11) NOT NULL DEFAULT '0', + `biz_exit_pickup` int(11) NOT NULL DEFAULT '-1', + `biz_exit_blip` int(11) NOT NULL DEFAULT '-1', + `biz_misc_customext` tinyint(4) NOT NULL DEFAULT '0', + `biz_misc_customint` tinyint(4) NOT NULL DEFAULT '0', + `biz_supply_pos_x` float NOT NULL DEFAULT '0', + `biz_supply_pos_y` float NOT NULL DEFAULT '0', + `biz_supply_pos_z` float NOT NULL DEFAULT '0', + `biz_buy_pos_x` float NOT NULL DEFAULT '0', + `biz_buy_pos_y` float NOT NULL DEFAULT '0', + `biz_buy_pos_z` float NOT NULL DEFAULT '0', + `biz_buy_rot_z` float NOT NULL DEFAULT '0', + `biz_misc_customvw` int(11) NOT NULL DEFAULT '0', + `biz_locked` tinyint(1) NOT NULL DEFAULT '0', + `biz_till` int(11) NOT NULL DEFAULT '0', + `biz_entrance_fee` int(11) NOT NULL DEFAULT '0', + `biz_deleted` tinyint(1) NOT NULL DEFAULT '0', + `biz_who_deleted` int(11) NOT NULL DEFAULT '0', + `biz_when_deleted` int(32) NOT NULL DEFAULT '0', + `biz_has_interior` tinyint(1) NOT NULL DEFAULT '0', + PRIMARY KEY (`biz_id`) USING BTREE +) ENGINE=InnoDB AUTO_INCREMENT=335 DEFAULT CHARSET=latin1 COMMENT='Businesses'; + +-- Dumping data for table db24053.biz_main: ~248 rows (approximately) +/*!40000 ALTER TABLE `biz_main` DISABLE KEYS */; +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES + (1, 4, 'Unnamed Business', 5, 30000, 0, 0, -90.2436, -1219.76, 2.71, 350.178, 0, 0, 0, -1, -2026.9, -104.128, 1035.17, 179.07, 3, 5001, 0, -1, 0, 0, -93.521, -1241.12, 1.92454, -104.326, -1213.02, 2.76131, 174.391, 0, 0, 0, 0, 0, 0, 0, 1); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES + (2, 4, 'Unnamed Business', 8, 30000, 0, 0, 2078.66, -1582.38, 13.4873, 337.053, 0, 0, 0, -1, -25.8433, -187.446, 1003.55, 4.72576, 17, 5002, 0, -1, 0, 0, 1795.3, -1166.21, 23.8281, 2127.1, -1134.72, 25.5488, 351.147, 0, 0, 0, 0, 0, 0, 0, 1); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES + (4, 4, 'Pawn', 4, 30000, 0, 0, 984.176, -1336.44, 13.5469, 199.037, 0, 0, 0, -1, 315.799, -143.53, 999.602, 1.01837, 7, 5004, 0, -1, 0, 1, 1872.19, -1621.2, 13.5469, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES + (5, 4, 'Unnamed Business', 1, 30000, 0, 0, 1653.2, 1470.7, 1152.43, 299.874, 0, 0, 0, -1, -25.9841, -187.986, 1003.55, 357.842, 17, 5005, 0, -1, 0, 0, 1837.36, -1434.91, 13.5625, 1704.68, -1587.22, 13.5383, 87.0352, 4, 0, 0, 0, 0, 0, 0, 1); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES + (6, 4, 'Unnamed Business', 3, 30000, 0, 0, 1333.37, -1864.21, 13.5469, 154.702, 0, 0, 0, -1, 6.6435, -31.4626, 1003.55, 191.882, 10, 5006, 0, -1, 0, 1, 1565.82, -1167.49, 24.0781, 1647.94, -2483.22, 13.5547, 87.3502, 0, 0, 0, 0, 0, 0, 0, 1); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES + (7, 4, 'Unnamed Business', 5, 30000, 0, 0, 1026.38, -1927.19, 12.7989, 154.459, 0, 0, 0, -1, 1226.77, -813.652, 1084.01, 353.088, 5, 5007, 0, -1, 0, 1, 1915.87, -1790.69, 13.3906, 1026.22, -1915.85, 12.8776, 266.223, 0, 0, 0, 0, 0, 0, 0, 1); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES + (8, 4, 'Unnamed Business', 3, 30000, 0, 0, -172.128, -1825.41, 55.408, 215.571, 0, 0, 0, -1, 1445.44, -1294.74, 13.5469, 100.653, 0, 5008, 0, -1, 1, 0, 1448.97, -1285.72, 13.5469, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES + (10, 4, 'Unnamed Business', 3, 30000, 0, 0, 1525.41, -1671.54, 6.21875, 83.7091, 0, 0, 0, -1, 372.532, -133.314, 1001.49, 359.576, 5, 5010, 0, -1, 0, 0, -2434.94, -195.644, 35.3203, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES + (11, 4, 'Unnamed Business', 8, 30000, 0, 0, 1070.49, -1873.66, 13.5469, 274.819, 0, 0, 0, -1, -31.0053, -91.6372, 1003.55, 0.680122, 18, 5011, 0, -1, 0, 0, -66.1294, -1169.59, 1.86967, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES + (12, 4, 'Unnamed Business', 4, 30000, 0, 0, 1368.98, -1279.67, 13.5469, 262.027, 0, 0, 0, -1, 315.902, -143.025, 999.602, 5.53311, 7, 5012, 0, -1, 0, 0, 1365.63, -1285.08, 13.5469, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES + (13, 4, 'Unnamed Business', 2, 30000, 0, 0, 1709.03, 1443.96, 1145.78, 281.106, 0, 0, 0, -1, -2029.62, -119.618, 1035.17, 1.0423, 3, 5013, 0, -1, 0, 0, -1579.28, 2652.63, 55.8359, -1600.75, 2645.28, 57.6595, 120.282, 0, 0, 0, 0, 0, 0, 0, 1); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES + (14, 4, 'Unnamed Business', 8, 30000, 0, 0, 1343.73, -1506.56, 13.5469, 234.154, 0, 0, 0, -1, -25.8373, -188.091, 1003.55, 355.897, 17, 5014, 0, -1, 0, 0, 2156.02, -1020.91, 62.7113, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES + (16, 4, 'Unnamed Business', 1, 30000, 0, 0, -1676.24, 432.104, 7.17969, 33.0359, 0, 0, 0, -1, -27.3621, -57.8246, 1003.55, 179.037, 6, 5016, 0, -1, 1, 0, -1661.84, 442.168, 7.17969, -1591.62, 2657.25, 55.7501, 356.386, 0, 0, 0, 0, 0, 0, 0, 1); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES + (17, 4, 'Unnamed Business', 8, 30000, 0, 0, 667.208, -1770.07, 13.6395, 164.522, 0, 0, 0, -1, -25.8373, -188.091, 1003.55, 355.897, 17, 5017, 0, -1, 0, 0, 1844.34, -1860.84, 13.3828, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES + (18, 4, 'Unnamed Business', 1, 30000, 0, 0, 1000.3, -920.204, 42.3281, 96.2681, 0, 0, 0, -1, -31.1112, -91.8577, 1003.55, 0.052338, 18, 5018, 0, -1, 0, 0, 1022.79, -916.642, 42.1797, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES + (19, 4, 'Unnamed Business', 2, 30000, 0, 0, 1456.53, -1137.56, 23.9484, 36.7288, 0, 0, 0, -1, 207.615, -111.163, 1005.13, 187.89, 15, 5019, 0, -1, 0, 0, 2015.15, -1304.98, 23.986, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES + (20, 4, 'Unnamed Business', 8, 30000, 0, 0, -1989.49, 884.844, 46.5406, 98.2134, 0, 0, 0, -1, -31.0061, -91.5664, 1003.55, 0.680122, 18, 5020, 0, -1, 1, 0, -1981.44, 905.115, 45.7979, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES + (21, 4, 'Unnamed Business', 5, 30000, 0, 0, 1628.75, -1903.4, 13.5532, 84.3039, 0, 0, 0, -1, 1494.8, 1305.13, 1093.29, 65.5664, 3, 5021, 0, -1, 0, 0, 904.141, -1333.77, 13.5469, 1636.17, -1893.07, 13.2619, 2.61639, 0, 0, 0, 0, 0, 0, 0, 1); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES + (22, 4, 'Unnamed Business', 5, 30000, 0, 0, 1606.29, -2431.95, 13.5547, 1.14757, 0, 0, 0, -1, -30.86, -91.9062, 1003.55, 354.538, 18, 5022, 0, -1, 0, 0, 1933.08, -2067.76, 13.5469, 1602.48, -2488.26, 13.5547, 267.485, 0, 0, 0, 0, 0, 0, 0, 1); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES + (23, 4, 'Unnamed Business', 0, 30000, 0, 0, 1796.35, -1721.18, 13.5411, 180, 0, 0, 0, -1, -795.014, 489.671, 1376.2, 358.859, 1, 5023, 0, -1, 1, 1, 1809.53, -1724.42, 13.5362, 1899.97, -2346.11, 13.5469, 263.56, 0, 0, 0, 0, 0, 0, 0, 1); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES + (24, 4, 'Unnamed Business', 1, 30000, 0, 0, 1654.2, 1467.87, 1152.79, 325.41, 0, 0, 0, -1, -30.9635, -91.1079, 1003.55, 4.80216, 18, 5024, 0, -1, 0, 0, 1668.04, -1583.68, 13.5469, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES + (25, 4, 'Unnamed Business', 3, 30000, 0, 0, 1877.85, -1627.79, 13.3386, 359.503, 0, 0, 0, -1, 460.448, -88.5426, 999.555, 86.9106, 4, 5025, 0, -1, 0, 0, 1794.43, -1726.55, 13.5469, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES + (26, 4, 'Unnamed Business', 2, 30000, 0, 0, 1704.21, -1578.79, 13.8883, 278.564, 0, 0, 0, -1, 227.075, -7.33794, 1002.21, 91.3542, 5, 5026, 0, -1, 0, 0, -1699.21, 954.874, 24.8906, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES + (27, 4, 'Unnamed Business', 3, 30000, 0, 0, 2419.8, -1509.08, 24, 268.67, 0, 0, 0, -1, 460.154, -88.5364, 999.555, 88.7906, 4, 5027, 0, -1, 0, 0, 2422.79, -1517.02, 24.0069, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES + (28, 4, 'Unnamed Business', 4, 30000, 0, 0, 1357.07, 308.062, 19.7473, 338.103, 0, 0, 0, -1, 315.641, -142.827, 999.602, 6.35604, 7, 5028, 0, -1, 0, 0, 1365.69, -1283.99, 13.5469, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES + (30, 4, 'Unnamed Business', 8, 30000, 0, 0, 1044.57, -1308.84, 13.5469, 99.115, 0, 0, 0, -1, -25.7453, -188.253, 1003.55, 171.504, 17, 5030, 0, -1, 0, 0, 1037.38, -1311.36, 13.5469, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES + (31, 4, 'Unnamed Business', 0, 30000, 0, 0, 2247.63, 2396.32, 10.8203, 184.236, 0, 0, 0, -1, 204.462, -168.754, 1000.52, 353.473, 14, 5031, 0, -1, 0, 0, 567.646, -1291.5, 17.2422, 561.662, -1292.28, 17.2482, 232.669, 0, 0, 0, 0, 0, 0, 0, 1); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES + (33, 4, 'Unnamed Business', 4, 30000, 0, 0, 387.179, -1817.95, 7.84098, 273.117, 0, 0, 0, -1, 315.715, -142.947, 999.602, 0.321425, 7, 5033, 0, -1, 0, 1, 2521.73, -1544.98, 24.01, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES + (34, 4, 'Unnamed Business', 8, 30000, 0, 0, 1073.21, -1384.87, 13.8698, 144.937, 0, 0, 0, -1, 363.315, -74.8249, 1001.51, 315.517, 10, 5034, 0, -1, 0, 0, 1191.5, -891.539, 43.1784, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES + (35, 4, 'Unnamed Business', 2, 30000, 0, 0, 1109.27, -301.432, 74.54, 358.887, 0, 0, 0, -1, 203.856, -50.2081, 1001.8, 352.563, 1, 5035, 0, -1, 0, 0, -2493.67, -33.0023, 25.7656, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES + (36, 4, 'Unnamed Business', 1, 30000, 0, 0, 1799.79, -1696.08, 5.24577, 3.04433, 0, 0, 0, -1, -31.4892, -91.506, 1003.55, 358.788, 18, 5036, 0, -1, 0, 0, -1948.43, 826.607, 41.5261, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES + (37, 4, 'Unnamed Business', 3, 30000, 0, 0, 1732.86, -1582.03, 14.1555, 1.36931, 0, 0, 0, -1, 460.449, -88.6508, 999.555, 84.9172, 4, 5037, 0, -1, 0, 0, 1668.86, -1554.79, 13.5469, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES + (38, 4, 'Unnamed Business', 8, 30000, 0, 0, 1673.74, -1170.88, 23.9655, 354.084, 0, 0, 0, -1, 501.926, -67.7462, 998.758, 175.187, 11, 5038, 0, -1, 0, 0, 2139.42, -1181.06, 23.9922, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES + (39, 4, 'Unnamed Business', 8, 30000, 0, 0, 1670.49, -1582.65, 13.5469, 3.42811, 0, 0, 0, -1, -30.9218, -91.5736, 1003.55, 357.108, 18, 5039, 0, -1, 0, 0, 2006.9, -1759.92, 13.5391, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES + (40, 4, 'Unnamed Business', 8, 30000, 0, 0, 1833.78, -1842.7, 13.5781, 276.736, 0, 0, 0, -1, -26.4404, -187.648, 1003.55, 1.27901, 17, 5040, 0, -1, 0, 0, 2864.77, -1428.47, 10.9952, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES + (41, 4, 'Unnamed Business', 1, 30000, 0, 0, 2261.93, 28.0644, 26.5, 339.516, 0, 0, 0, -1, -26.4846, -57.8533, 1003.55, 350.759, 6, 5041, 0, -1, 0, 0, -1328.06, 2697.52, 50.0625, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES + (42, 4, 'Unnamed Business', 8, 30000, 0, 0, 1154.69, -1458.02, 15.7969, 4.52589, 0, 0, 0, -1, -26.6782, -57.6615, 1003.55, 357.681, 6, 5042, 0, -1, 0, 0, 2349.25, -1538.52, 24.0033, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES + (43, 4, 'Unnamed Business', 8, 30000, 0, 0, 2318.99, -88.68, 26.4844, 178.446, 0, 0, 0, -1, -26.1985, -187.472, 1003.55, 13.4461, 17, 5043, 0, -1, 0, 0, -2790.9, 774.258, 50.5078, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES + (44, 4, 'Unnamed Business', 1, 30000, 0, 0, 1739.95, 1440.97, 1145.67, 85.9053, 0, 0, 0, -1, -31.0512, -91.6771, 1003.55, 0.187671, 18, 5044, 0, -1, 0, 0, -2235.17, -2563.35, 31.9219, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES + (45, 4, 'Unnamed Business', 5, 30000, 0, 0, 2045.5, -1908.06, 13.5469, 174.508, 0, 0, 0, -1, 1169.16, 1361.17, 10.9219, 217.478, 0, 5045, 0, -1, 0, 0, 1249.5, -1376.78, 13.3634, 2052.74, -1912.89, 13.252, 358.522, 0, 0, 0, 0, 0, 0, 0, 1); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES + (46, 4, 'Unnamed Business', 1, 30000, 0, 0, 1671.24, 1469.42, 1152.6, 286.719, 0, 0, 0, -1, 203.788, -50.2352, 1001.8, 1.30236, 1, 5046, 0, -1, 0, 0, 2106.4, -1213.94, 23.9665, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES + (48, 4, 'Unnamed Business', 4, 30000, 0, 0, 2333.4, 61.5421, 26.7058, 91.9637, 0, 0, 0, -1, 315.912, -143.315, 999.602, 358.938, 7, 5048, 0, -1, 0, 0, 2023.4, -1077.89, 24.6073, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES + (50, 4, 'Unnamed Business', 2, 30000, 0, 0, 2244.25, -1665.5, 15.4766, 347.07, 0, 0, 0, -1, 203.675, -49.334, 1001.8, 186.433, 1, 5050, 0, -1, 0, 0, 492.869, -1359.27, 17.1788, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES + (51, 4, 'Unnamed Business', 1, 30000, 0, 0, 1636.1, -1848.45, 13.5394, 0.564751, 0, 0, 0, -1, -30.871, -91.4408, 1003.55, 358.966, 18, 5051, 0, -1, 0, 0, -479.786, -566.494, 24.1158, 455.124, -1899.05, 0.78316, 202.97, 0, 0, 0, 0, 0, 0, 0, 1); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES + (52, 4, 'Unnamed Business', 12, 30000, 0, 0, 1703.45, 1442.91, 1145.78, 239.473, 0, 0, 0, -1, -2029.66, -119.435, 1035.17, 1.03609, 3, 5052, 0, -1, 0, 0, -1936.3, 276.5, 41.0469, -1958.21, 307.691, 35.4688, 6.40909, 0, 0, 0, 0, 0, 0, 0, 1); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES + (53, 4, 'Unnamed Business', 5, 30000, 0, 0, 1784.89, 1444.99, 1145.78, 340.115, 0, 0, 0, -1, -2029.56, -119.625, 1035.17, 357.304, 3, 5053, 0, -1, 0, 0, -1704.05, 1208.2, 25.1146, 1043.86, -1923.3, 12.9832, 0.44367, 0, 0, 0, 0, 0, 0, 0, 1); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES + (54, 4, 'Unnamed Business', 8, 30000, 0, 0, 1413.52, -1696.77, 13.5395, 59.0001, 0, 0, 0, -1, 363.489, -74.6292, 1001.51, 134.772, 10, 5054, 0, -1, 0, 0, -1568.91, 674.891, 7.1875, 0, 0, 0, 0, 100053, 0, 0, 0, 0, 0, 0, 1); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES + (55, 4, 'Unnamed Business', 7, 30000, 0, 0, 1737.46, 1443.56, 1145.78, 276.704, 0, 0, 0, -1, 1711.71, 1461.59, 1145.78, 257.869, 0, 5055, 0, -1, 0, 0, 2087.73, 2077.92, 11.0579, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES + (56, 4, 'Unnamed Business', 1, 30000, 0, 0, 661.36, -573.289, 16.3359, 272.013, 0, 0, 0, -1, -13.3403, -91.3059, 1008.03, 357.346, 18, 5056, 0, -1, 0, 1, 667.314, -546.236, 16.3359, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES + (57, 4, 'Unnamed Business', 0, 30000, 0, 0, 1047.21, -1418.63, 13.5469, 144.195, 0, 0, 0, -1, -30.9934, -91.8355, 1003.55, 358.741, 18, 5057, 0, -1, 0, 0, 659.793, -1763.91, 13.5592, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES + (58, 4, 'Unnamed Business', 3, 30000, 0, 0, 2105.35, -1806.45, 13.5547, 265.142, 0, 0, 0, -1, 460.507, -88.4769, 999.555, 84.5587, 4, 5058, 0, -1, 1, 1, 593.602, -1494.91, 15.2686, 615.481, -1501.39, 14.8747, 277.476, 0, 0, 0, 0, 0, 0, 0, 1); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES + (59, 4, 'Unnamed Business', 2, 30000, 0, 0, 1829.57, -1450.66, 13.5911, 359.855, 0, 0, 0, -1, 203.78, -50.5481, 1001.8, 9.98745, 1, 5059, 0, -1, 0, 0, 1112.81, -1566.31, 13.5569, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES + (60, 4, 'Unnamed Business', 0, 30000, 0, 0, 1744.86, 1443.03, 1145.78, 265.737, 0, 0, 0, -1, -25.7722, -188.055, 1003.55, 356.072, 17, 5060, 0, -1, 0, 0, 1061.57, -1484.28, 13.5457, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES + (61, 4, 'Unnamed Business', 3, 30000, 0, 0, 1772.23, 1440.43, 1145.69, 81.6088, 0, 0, 0, -1, 372.46, -133.296, 1001.49, 330.82, 5, 5061, 0, -1, 0, 0, 2108.98, -1788.67, 13.5608, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES + (62, 4, 'Unnamed Business', 8, 30000, 0, 0, 461.205, -1500.79, 31.0598, 279.205, 0, 0, 0, -1, -25.3976, -187.912, 1003.55, 355.95, 17, 5062, 0, -1, 0, 0, 712.834, -569.736, 16.3359, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES + (63, 4, 'Unnamed Business', 3, 30000, 0, 0, -1721.03, 1360.04, 7.18532, 88.9988, 0, 0, 0, -1, 371.728, -133.508, 1001.49, 2.19321, 5, 5063, 0, -1, 0, 0, -1720.56, 1353.78, 7.17902, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES + (64, 4, 'Unnamed Business', 5, 30000, 0, 0, 1662.57, 1788.63, 10.8203, 263.499, 0, 0, 0, -1, -221.166, 1411.45, 27.7734, 256.79, 18, 5064, 0, -1, 0, 0, 1698.29, 1786.89, 10.8203, 1654.53, 1795.69, 10.8203, 81.85, 0, 0, 0, 0, 0, 0, 0, 1); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES + (65, 4, 'Unnamed Business', 1, 30000, 0, 0, 1752.7, 1443.19, 1145.78, 272.004, 0, 0, 0, -1, -27.5021, -57.9044, 1003.55, 7.79304, 6, 5065, 0, -1, 0, 0, 1394.87, 457.122, 20.1368, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES + (66, 4, 'Unnamed Business', 8, 30000, 0, 0, 2251.11, -1666.85, 15.4766, 347.064, 0, 0, 0, -1, -31.1119, -91.6484, 1003.55, 359.657, 18, 5066, 0, -1, 0, 1, 1285.09, -1272.42, 13.5366, 0, 0, 0, 0, 123051, 0, 0, 0, 0, 0, 0, 1); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES + (67, 4, 'Unnamed Business', 10, 30000, 0, 0, 1131.71, 1518.63, 5.82031, 107.231, 0, 0, 0, -1, 1601.85, -1467.25, 13.5639, 95.3918, 0, 5067, 0, -1, 0, 0, 2341.7, -1314.47, 24.0671, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES + (68, 4, 'Unnamed Business', 4, 30000, 0, 0, 1587.5, -1862.96, 13.5305, 349.866, 0, 0, 0, -1, 2134.53, 1599.41, 1008.36, 90.8534, 1, 5068, 0, -1, 0, 0, 1602.15, -2434.5, 13.5547, 1602.61, -2451.42, 13.5547, 172.886, 0, 0, 0, 0, 0, 0, 0, 1); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES + (69, 4, 'Unnamed Business', 1, 30000, 0, 0, 1929.22, -1776.25, 13.5469, 90.3944, 0, 0, 0, -1, -26.172, -187.877, 1003.55, 355.973, 17, 5069, 0, -1, 0, 0, 2654.33, 1132.2, 10.8203, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES + (70, 4, 'Unnamed Business', 3, 30000, 0, 0, 1414.53, -1602.64, 13.5469, 175.846, 0, 0, 0, -1, 362.819, -75.1166, 1001.51, 315.914, 10, 5070, 0, -1, 0, 1, 1414.03, -1599.29, 13.5469, 1646.94, 1305.67, 10.8203, 98.2638, 0, 0, 0, 0, 0, 0, 0, 1); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES + (71, 4, 'Unnamed Business', 2, 30000, 0, 0, -1882.67, 866.226, 35.1719, 135.343, 0, 0, 0, -1, 227.262, -8.33084, 1002.21, 100.274, 5, 5071, 0, -1, 0, 0, 1103.75, -1411.33, 13.6187, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES + (72, 4, 'Unnamed Business', 5, 30000, 0, 0, -1666.21, 1203.53, 7.25, 159.664, 0, 0, 0, -1, 372.496, -133.417, 1001.49, 356.796, 5, 5072, 0, -1, 0, 0, 1381.51, 266.698, 19.5669, -1664.23, 1213, 7.25464, 1.79089, 0, 0, 0, 0, 0, 0, 0, 1); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES + (73, 4, 'Unnamed Business', 8, 30000, 0, 0, 1952.4, -2021.57, 13.5469, 90.9127, 0, 0, 0, -1, -30.8758, -91.0564, 1003.55, 357.893, 18, 5073, 0, -1, 0, 0, 1672.83, -1583.28, 13.5469, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES + (74, 4, 'Unnamed Business', 3, 30000, 0, 0, 928.545, -1353.07, 13.3438, 106.28, 0, 0, 0, -1, 372.501, -132.618, 1001.49, 0.750952, 5, 5074, 0, -1, 0, 0, 2428.59, -1940.92, 13.5469, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES + (75, 4, 'Unnamed Business', 4, 30000, 0, 0, 1665.3, 1452.63, 1152.58, 275.782, 0, 0, 0, -1, 316.063, -143.426, 999.602, 1.00112, 7, 5075, 0, -1, 0, 1, 2227.59, -1697.79, 13.7829, 0, 0, 0, 0, 10, 0, 0, 0, 0, 0, 0, 1); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES + (76, 4, 'Unnamed Business', 12, 30000, 0, 0, 1766.45, 1443.67, 1145.78, 272.004, 0, 0, 0, -1, 2916.15, -2275.72, 7.25419, 92.2792, 0, 5076, 0, -1, 0, 1, 0, 0, 0, 0, 0, 0, 0, 6, 0, 0, 0, 0, 0, 0, 1); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES + (77, 4, 'Unnamed Business', 12, 30000, 0, 0, 2229.9, -1721.26, 13.5613, 149.746, 0, 0, 0, -1, 2916.03, -2276.33, 7.25419, 84.8808, 0, 5077, 0, -1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 7, 0, 0, 0, 0, 0, 0, 1); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES + (78, 4, 'Unnamed Business', 4, 30000, 0, 0, 1649.6, 1467.74, 1151.97, 3.67434, 0, 0, 0, -1, 315.902, -143.025, 999.602, 5.53311, 7, 5078, 0, -1, 0, 0, 1013.87, -372.41, 73.5505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES + (79, 4, 'Unnamed Business', 3, 30000, 0, 0, 1038.17, -1340.73, 13.745, 177.513, 0, 0, 0, -1, 376.894, -193.302, 1000.63, 357.573, 17, 5079, 0, -1, 0, 0, 1028.2, -1341.19, 13.7266, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES + (80, 4, 'Unnamed Business', 3, 30000, 0, 0, 2397.67, -1899.06, 13.5469, 359.769, 0, 0, 0, -1, 364.899, -11.4455, 1001.85, 357.847, 9, 5080, 0, -1, 0, 0, 2378.92, -1903.45, 13.3828, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES + (81, 4, 'Unnamed Business', 3, 30000, 0, 0, 1774.54, 1440.21, 1145.69, 326.854, 0, 0, 0, -1, 364.92, -11.5076, 1001.85, 1.92061, 9, 5081, 0, -1, 0, 0, 2412.69, -1490.4, 24, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES + (82, 4, 'Unnamed Business', 3, 30000, 0, 0, 1445.11, -1353.1, 13.5469, 76.8374, 0, 0, 0, -1, 364.786, -11.5863, 1001.85, 359.156, 9, 5082, 0, -1, 0, 0, -1810.85, 616.781, 35.1719, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES + (83, 4, 'Unnamed Business', 3, 30000, 0, 0, 810.492, -1616.33, 13.5469, 274.543, 0, 0, 0, -1, 364.817, -11.7036, 1001.85, 356.202, 9, 5083, 0, -1, 0, 0, -2664.66, 260.562, 4.63281, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES + (84, 4, 'Unnamed Business', 2, 30000, 0, 0, 1102.44, -1458.3, 15.7969, 265.057, 0, 0, 0, -1, 227.152, -8.34062, 1002.21, 82.5599, 5, 5084, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES + (85, 4, 'Unnamed Business', 2, 30000, 0, 0, 1445.12, -1419.06, 13.5411, 65.0882, 0, 0, 0, -1, 227.551, -7.98705, 1002.21, 77.3083, 5, 5085, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES + (86, 4, 'Unnamed Business', 3, 30000, 0, 0, 2237.88, -1663.56, 15.4766, 344.453, 0, 0, 0, -1, 363.168, -74.7778, 1001.51, 307.153, 10, 5086, 0, -1, 0, 0, 785.164, -1632.8, 13.3828, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES + (88, 4, 'Unnamed Business', 3, 30000, 0, 0, 1087.72, -295.958, 74.7685, 358.173, 0, 0, 0, -1, 363.226, -75.0796, 1001.51, 311.442, 10, 5088, 0, -1, 0, 0, -2794.59, 775.22, 50.4725, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES + (89, 4, 'Unnamed Business', 3, 30000, 0, 0, -1912.4, 827.947, 35.2282, 137.415, 0, 0, 0, -1, 362.862, -75.157, 1001.51, 317.474, 10, 5089, 0, -1, 0, 0, -2148.97, -2449.25, 30.6328, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES + (90, 4, 'Unnamed Business', 3, 30000, 0, 0, 1769.38, -1397.58, 15.7578, 177.249, 0, 0, 0, -1, 460.243, -88.68, 999.555, 92.1094, 4, 5090, 0, -1, 0, 0, 711.452, -493.504, 16.3359, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES + (91, 4, 'Unnamed Business', 10, 30000, 0, 0, 2421.44, -1219.25, 25.5616, 6.1916, 0, 0, 0, -1, -2158.43, 642.822, 1052.38, 29.1845, 1, 5091, 0, -1, 0, 0, 1968.24, -1284.42, 23.9844, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES + (92, 4, 'Unnamed Business', 2, 30000, 0, 0, 1405.22, -1881.5, 13.5469, 264.017, 0, 0, 0, -1, 207.556, -111.244, 1005.13, 352.685, 15, 5092, 0, -1, 0, 0, 2230.46, -1674.3, 14.8285, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES + (93, 4, 'Unnamed Business', 3, 30000, 0, 0, 1200.42, -918.503, 43.1127, 273.646, 0, 0, 0, -1, 372.061, -133.522, 1001.49, 359.863, 5, 5093, 0, -1, 0, 0, 1839.22, -1452.28, 13.564, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES + (94, 4, 'Unnamed Business', 10, 30000, 0, 0, 1836.65, -1682.52, 13.3391, 95.7087, 0, 0, 0, -1, 1204.98, -13.8471, 1000.92, 7.8813, 2, 5094, 0, -1, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES + (95, 4, 'Unnamed Business', 8, 30000, 0, 0, 1775.47, 1437.65, 1145.69, 357.587, 0, 0, 0, -1, -25.6475, -188.232, 1003.55, 12.6659, 17, 5095, 0, -1, 0, 1, 2006.4, -1760.42, 13.5391, 1034.92, -1935.32, 13.0244, 266.609, 0, 0, 0, 0, 0, 0, 0, 1); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES + (96, 4, 'Unnamed Business', 3, 30000, 0, 0, 2332.08, 75.0052, 26.621, 87.2637, 0, 0, 0, -1, 460.545, -88.3984, 999.555, 93.5276, 4, 5096, 0, -1, 0, 0, -294.906, 2687.78, 62.6665, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES + (97, 4, 'Unnamed Business', 1, 30000, 0, 0, 1574.85, -1637.35, 13.5615, 11.6774, 0, 0, 0, -1, -25.5966, -187.034, 1003.55, 357.071, 17, 5097, 0, -1, 0, 0, 1541.46, -1634.66, 13.5469, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES + (98, 4, 'Unnamed Business', 3, 30000, 0, 0, 1098.59, -1473.58, 15.7969, 69.6117, 0, 0, 0, -1, 460.244, -88.4067, 999.555, 87.9699, 4, 5098, 0, -1, 1, 0, -1741.37, -569.154, 16.4844, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES + (99, 4, 'Unnamed Business', 1, 30000, 0, 0, 1445.11, -1426.78, 13.543, 89.005, 0, 0, 0, -1, -27.4883, -57.4702, 1003.55, 0.398602, 6, 5099, 0, -1, 0, 0, 1428.99, -1427.96, 13.5547, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES + (100, 4, 'Unnamed Business', 1, 30000, 0, 0, 2157.89, -1733.42, 13.5445, 356.464, 0, 0, 0, -1, -27.4883, -57.4702, 1003.55, 0.398602, 6, 5100, 0, -1, 0, 0, 1551.73, -1474.28, 13.5481, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES + (101, 4, 'Unnamed Business', 0, 30000, 0, 0, 1759.93, 1446.82, 1145.78, 84.942, 0, 0, 0, -1, 5.84083, -31.4701, 1003.55, 0.31898, 10, 5101, 0, -1, 0, 0, 637.356, 1678.13, 6.99219, -2395.1, 2222.04, 4.98437, 85.6145, 0, 0, 0, 0, 0, 0, 0, 1); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES + (102, 4, 'Unnamed Business', 3, 30000, 0, 0, 671.125, -519.446, 16.3359, 210.161, 0, 0, 0, -1, 460.219, -89.0891, 999.555, 92.4067, 4, 5102, 0, -1, 0, 0, 674.514, -514.152, 16.3359, 1626.54, -1137.52, 23.9062, 184.156, 0, 0, 0, 0, 0, 0, 0, 1); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES + (103, 4, 'Unnamed Business', 1, 30000, 0, 0, 1757.29, 1446.53, 1145.78, 84.942, 0, 0, 0, -1, 6.22508, -31.3632, 1003.55, 355.899, 10, 5103, 0, -1, 0, 0, 2181.8, 2485.08, 10.8203, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES + (104, 4, 'Unnamed Business', 8, 30000, 0, 0, 1315.55, -897.924, 39.5781, 355.767, 0, 0, 0, -1, -25.6988, -188.146, 1003.55, 2.25264, 17, 5104, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES + (105, 4, 'Unnamed Business', 1, 30000, 0, 0, 1753.5, 1446.45, 1145.78, 84.942, 0, 0, 0, -1, -25.8995, -188.249, 1003.55, 359.321, 17, 5105, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES + (106, 4, 'Unnamed Business', 8, 30000, 0, 0, 1752.19, 1446.37, 1145.78, 93.7154, 0, 0, 0, -1, -31.1422, -92.0064, 1003.55, 350.907, 18, 5106, 0, -1, 0, 0, 2007.48, -1759.44, 13.5391, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES + (107, 4, 'Unnamed Business', 3, 30000, 0, 0, 2521.18, -1411.62, 28.5312, 80.3432, 0, 0, 0, -1, -228.827, 1400.92, 27.7656, 269.626, 18, 5107, 0, -1, 0, 0, -865.274, 1541.22, 22.6826, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES + (108, 4, 'Unnamed Business', 8, 30000, 0, 0, 1634.58, -1583.53, 13.6536, 10.9946, 0, 0, 0, -1, 5.90418, -31.5585, 1003.55, 0.568551, 10, 5108, 0, -1, 0, 0, -744.555, 1583.71, 26.9609, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES + (109, 4, 'Unnamed Business', 1, 30000, 0, 0, 1748.68, 1446.17, 1145.78, 93.0887, 0, 0, 0, -1, 6.21169, -31.3557, 1003.55, 3.26752, 10, 5109, 0, -1, 0, 0, -1476.6, 1879.51, 32.6328, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES + (110, 4, 'Unnamed Business', 2, 30000, 0, 0, -91.0981, -1592.47, 3.00431, 294.395, 0, 0, 0, -1, 226.882, -8.1384, 1002.21, 269.642, 5, 5110, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES + (111, 4, 'Unnamed Business', 8, 30000, 0, 0, 1352.52, -1758.82, 13.5078, 180.542, 0, 0, 0, -1, -31.1119, -91.6484, 1003.55, 359.657, 18, 5111, 0, -1, 0, 0, 2254.93, -1666.28, 15.469, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES + (112, 4, 'Unnamed Business', 3, 30000, 0, 0, 1158.28, -1473.41, 15.7969, 286.459, 0, 0, 0, -1, 364.786, -11.5863, 1001.85, 359.156, 9, 5112, 0, -1, 0, 0, 0, 0, 0, 2263.74, 34.2681, 26.4844, 50.0339, 0, 0, 0, 0, 0, 0, 0, 1); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES + (113, 4, 'Unnamed Business', 1, 30000, 0, 0, 1743.82, 1445.89, 1145.78, 90.2687, 0, 0, 0, -1, 0, 0, 0, 0, 0, 5113, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES + (114, 4, 'Unnamed Business', 1, 30000, 0, 0, 1742.45, 1445.89, 1145.78, 90.2687, 0, 0, 0, -1, -25.6442, -188.041, 1003.55, 351.193, 17, 5114, 0, -1, 1, 1, 2130.87, 892.924, 10.8203, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES + (115, 4, 'Unnamed Business', 3, 30000, 0, 0, 1650.13, 1466.72, 1151.97, 167.935, 0, 0, 0, -1, -794.957, 490.111, 1376.2, 179.811, 1, 5115, 0, -1, 1, 1, 0, 0, 0, 1327.28, 1397.33, 10.7512, 93.0638, 0, 0, 0, 0, 0, 0, 0, 1); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES + (116, 4, 'Unnamed Business', 8, 30000, 0, 0, 1487.01, -1881.28, 13.5469, 190.48, 0, 0, 0, -1, -25.6959, -187.781, 1003.55, 354.083, 17, 5116, 0, -1, 0, 0, 0, 0, 0, 1231.73, -1380.5, 13.3179, 182.887, 0, 0, 0, 0, 0, 0, 0, 1); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES + (117, 4, 'Unnamed Business', 10, 30000, 0, 0, 1736.52, 1445.86, 1145.78, 90.2687, 0, 0, 0, -1, 0, 0, 0, 0, 0, 5117, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES + (119, 4, 'Unnamed Business', 2, 30000, 0, 0, 712.172, -498.921, 16.3359, 267.048, 0, 0, 0, -1, 203.747, -50.5602, 1001.8, 348.861, 1, 5119, 0, -1, 0, 0, 714.368, -505.379, 16.3359, 1229.06, -1378.47, 13.339, 256.786, 0, 0, 0, 0, 0, 0, 0, 1); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES + (120, 4, 'Unnamed Business', 8, 30000, 0, 0, 1721.42, 1424.01, 10.6406, 320.626, 0, 0, 0, -1, 6.13156, -31.3422, 1003.55, 178.952, 10, 5120, 0, -1, 0, 0, 1014.04, -1563.83, 13.616, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES + (122, 4, 'Unnamed Business', 1, 30000, 0, 0, 1765.16, 1436.69, 1145.69, 93.1964, 0, 0, 0, -1, 0, 0, 0, 0, 0, 5122, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES + (123, 4, 'Unnamed Business', 4, 30000, 0, 0, 1836.51, -1443.03, 13.5962, 100.976, 0, 0, 0, -1, 284.991, -86.1033, 1001.52, 350.153, 4, 5123, 0, -1, 0, 1, 1837.35, -1438.43, 13.563, 0, 0, 0, 0, 1234521, 0, 0, 0, 0, 0, 0, 1); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES + (124, 4, 'Unnamed Business', 8, 30000, 0, 0, 1648.6, -1562.17, 13.5398, 98.856, 0, 0, 0, -1, -26.0882, -188.231, 1003.55, 0.687847, 17, 5124, 0, -1, 0, 0, 1028.47, -1585.7, 13.5469, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES + (125, 4, 'Unnamed Business', 8, 30000, 0, 0, 1565.93, -1171.4, 24.0951, 194.504, 0, 0, 0, -1, -30.7929, -92.0083, 1003.55, 180.866, 18, 5125, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES + (128, 4, 'Unnamed Business', 0, 30000, 0, 0, 1733.91, 1448.76, 1145.78, 273.547, 0, 0, 0, -1, 0, 0, 0, 0, 0, 5128, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES + (129, 4, 'Unnamed Business', 0, 30000, 0, 0, 1735.4, 1448.85, 1145.78, 273.547, 0, 0, 0, -1, 0, 0, 0, 0, 0, 5129, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES + (145, 4, 'Unnamed Business', 4, 30000, 0, 0, 1655.19, 1451.97, 1152.5, 277.616, 0, 0, 0, -1, 0, 0, 0, 0, 0, 5145, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES + (157, 4, 'Unnamed Business', 5, 30000, 0, 0, 548.165, -1293.86, 17.2482, 168.94, 0, 0, 0, -1, 1226.48, -813.56, 1084.01, 353.256, 5, 5157, 0, -1, 0, 0, 1811.5, -1659.69, 13.5465, 567.705, -1291.27, 17.2422, 70.9165, 0, 0, 0, 0, 0, 0, 0, 1); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES + (192, 4, 'Unnamed Business', 3, 30000, 0, 0, -222.752, -1747.06, 1.15469, 331.273, 0, 0, 0, -1, 363.584, -75.38, 1001.51, 313.29, 10, 5192, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES + (200, 4, 'Unnamed Business', 8, 30000, 0, 0, 1748.23, -1460.31, 13.5288, 182.135, 0, 0, 0, -1, -27.4627, -57.8572, 1003.55, 0.812528, 6, 5200, 0, -1, 0, 0, 1014.1, -1563.82, 13.6156, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES + (201, 2, 'Easy Credit Autos', 0, 30000, 1, 1, -1013.1, -861.897, 13.0852, 0, 0, 0, 0, -1, 0, 0, 0, 0, 0, 5201, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES + (203, 1, 'Saint Marks Bistro', 0, 30000, 0, 0, 1318.98, -452.77, 54.53, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 5203, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES + (204, 1, 'Easy Credit Autos', 0, 30000, 0, 0, 1218.65, -123.143, 15.0563, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 5204, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES + (205, 1, 'Strip Club', 0, 30000, 0, 0, 923.229, -470.662, 14.9622, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 5205, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES + (206, 1, 'Strip Club', 0, 30000, 0, 0, 900.493, -416.833, 14.9656, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 5206, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES + (207, 1, 'Sex Shop', 0, 30000, 0, 0, 927.043, -379.195, 15.2535, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 5207, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES + (208, 1, 'Bar', 0, 30000, 0, 0, 899.091, -285.723, 5.14579, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 5208, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES + (209, 1, 'Bar', 0, 30000, 0, 0, 845.42, -287.97, 4.93362, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 5209, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES + (210, 1, 'Diner', 0, 30000, 0, 0, 1036.65, -653.015, 15.0624, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 5210, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES + (211, 1, 'Bank', 0, 30000, 0, 0, 1036.1, -700.057, 14.9727, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 5211, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES + (212, 1, 'Chinese Restaurant', 0, 30000, 0, 0, 909.534, -670.404, 14.9727, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 5212, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES + (213, 1, 'Laundry', 0, 30000, 0, 0, 845.278, -663.754, 14.9727, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 5213, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES + (214, 1, 'Chinese Restaurant', 0, 30000, 0, 0, 913.891, -805.828, 15.0702, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 5214, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES + (215, 1, 'Bank', 0, 30000, 0, 0, 1065.18, -281.016, 8.69193, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 5215, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES + (216, 1, 'Clothing Store', 0, 30000, 0, 0, 1117.18, -687.398, 14.9727, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 5216, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES + (217, 2, 'Large Hotel', 0, 30000, 0, 0, -772.41, 548.739, 11.1007, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 5217, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES + (218, 2, 'Drugstore', 0, 30000, 0, 0, -832.099, 741.923, 11.2885, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 5218, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES + (219, 2, 'Pizza Stack', 0, 30000, 0, 0, -903.159, 798.366, 11.4487, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 5219, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES + (220, 2, 'Taco Shop', 0, 30000, 0, 0, -753.173, 1343.16, 11.767, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 5220, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES + (221, 2, 'Cafe', 0, 30000, 0, 0, -774.478, 1304.82, 11.6359, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 5221, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES + (222, 2, 'Drugstore', 0, 30000, 0, 0, 50.2897, 1007.29, 10.9547, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 5222, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES + (228, 4, 'Jefferson Dealership', 0, 30000, 0, 0, 2131.8, -1151.02, 24.0932, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 5228, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES + (229, 4, 'Bike Dealership', 0, 30000, 0, 0, 1008.98, -1295.71, 13.5469, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 5229, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES + (230, 4, 'Los Santos Police Department', 0, 0, 0, 0, 1554.77, -1675.65, 16.1953, 0, 0, 0, 0, -1, 247.113, 62.929, 1003.64, 0, 6, 5230, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES + (231, 2, 'Unnamed Business', 0, 0, 0, 0, -833.546, -908.768, 12.1285, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 5231, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES + (232, 1, 'Italian Restaurant', 0, 0, 0, 0, 1135.42, -457.31, 20.1816, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 5232, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES + (233, 1, 'Clothes Store', 0, 0, 0, 0, 1065.42, -345.061, 14.9727, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 5233, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES + (234, 1, 'Gun Store', 0, 0, 0, 0, 1065.1, -395.103, 14.9727, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 5234, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES + (235, 1, 'Porn Shop', 0, 0, 0, 0, 989.054, -441.97, 15.1239, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 5235, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES + (236, 1, 'Mechanic Shop', 0, 0, 0, 0, 1190.71, -869.329, 15.1745, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 5236, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES + (237, 1, 'Offices', 0, 0, 0, 0, 1212.4, -904.725, 15.1072, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 5237, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES + (238, 1, 'Offices', 0, 0, 0, 0, 1244.71, -862.862, 14.9727, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 5238, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES + (239, 1, 'Warehouse', 0, 0, 0, 0, 1276.44, -928.518, 14.9727, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 5239, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES + (240, 1, 'Warehouse', 0, 0, 0, 0, 1261.95, -943.02, 14.9727, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 5240, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES + (241, 1, 'Warehouse', 0, 0, 0, 0, 1253.32, -950.495, 14.977, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 5241, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES + (242, 1, 'Warehouse', 0, 0, 0, 0, 1231.16, -964.599, 15.0685, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 5242, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES + (243, 1, 'Warehouse', 0, 0, 0, 0, 1183.85, -961.455, 15.1072, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 5243, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES + (244, 1, 'Warehouse', 0, 0, 0, 0, 1188.25, -957.061, 15.1072, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 5244, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES + (245, 1, 'Warehouse', 0, 0, 0, 0, 1171.64, -963.649, 14.9727, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 5245, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES + (246, 1, 'Warehouse', 0, 0, 0, 0, 1162.62, -952.354, 15.0611, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 5246, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES + (247, 1, 'Warehouse', 0, 0, 0, 0, 1219.81, -973.645, 14.9849, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 5247, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES + (248, 1, 'Docks Warehouse', 0, 0, 0, 0, 1435.66, -805.82, 11.8262, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 5248, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES + (249, 1, 'Docks Warehouse', 0, 0, 0, 0, 1445.71, -806.209, 11.8262, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 5249, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES + (250, 1, 'Docks Warehouse', 0, 0, 0, 0, 1455.57, -805.722, 11.8262, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 5250, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES + (251, 1, 'Docks Warehouse', 0, 0, 0, 0, 1465.74, -805.721, 11.8262, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 5251, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES + (252, 1, 'Docks Warehouse', 0, 0, 0, 0, 1475.63, -805.721, 11.8262, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 5252, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES + (253, 1, 'Docks Warehouse', 0, 0, 0, 0, 1485.73, -805.721, 11.8262, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 5253, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES + (254, 1, 'Docks Warehouse', 0, 0, 0, 0, 1495.69, -805.721, 11.8262, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 5254, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES + (255, 1, 'Docks Warehouse', 0, 0, 0, 0, 1467.39, -688.639, 11.8261, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 5255, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES + (256, 1, 'Docks Warehouse', 0, 0, 0, 0, 1495.89, -684.898, 12.1434, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 5256, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES + (257, 1, 'Docks Warehouse', 0, 0, 0, 0, 1488.55, -650.17, 11.8261, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 5257, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES + (258, 1, 'Docks Warehouse', 0, 0, 0, 0, 1465.85, -650.167, 11.8261, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 5258, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES + (259, 1, 'Docks Warehouse', 0, 0, 0, 0, 1510.97, -650.166, 11.8261, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 5259, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES + (260, 1, 'Docks Warehouse', 0, 0, 0, 0, 1533.95, -650.17, 11.8261, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 5260, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES + (261, 1, 'Docks Warehouse', 0, 0, 0, 0, 1556.7, -650.167, 11.8261, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 5261, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES + (262, 1, 'Docks Warehouse', 0, 0, 0, 0, 1579.22, -650.172, 11.8261, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 5262, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES + (263, 1, 'Warehouse', 0, 0, 0, 0, 1305.18, -810.01, 15.0258, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 5263, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES + (264, 1, 'Supermarket', 0, 0, 0, 0, 1272.41, -608.83, 12.4573, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 5264, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES + (265, 1, 'Sweeney General Hospital', 0, 0, 0, 0, 1149.18, -585.299, 15.0173, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 5265, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES + (266, 1, 'Portland Police Station', 0, 0, 0, 0, 1148.46, -675, 14.9809, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 5266, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES + (267, 1, 'Clothes Store', 0, 0, 0, 0, 1104.57, -638.42, 14.9727, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 5267, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES + (268, 1, 'City Hall', 0, 0, 0, 0, 98.2127, -962.972, 29.1858, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 5268, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES + (269, 1, 'Courthouse', 0, 0, 0, 0, 97.4022, -1429.97, 31.6682, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 5269, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES + (270, 1, 'Francis International Airport', 0, 0, 0, 0, -769.82, -600.323, 11.3261, 0, 0, 0, 0, -1, -770.862, -600.281, 11.3161, 0, 0, 5270, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES + (271, 1, 'Shoreside Vale Police Station', 0, 0, 0, 0, -1255.33, -23.0647, 59.0359, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 5271, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES + (272, 1, 'Hope Medical College', 0, 0, 0, 0, -1246.78, -150.687, 59.0671, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 5272, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES + (273, 1, 'Shoreside Vale Fire Station', 0, 0, 0, 0, -1214.27, -13.7945, 53.2652, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 5273, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES + (274, 1, 'Warehouse', 0, 0, 0, 0, -1235.35, 125.251, 68.5685, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 5274, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES + (275, 1, 'Warehouse', 0, 0, 0, 0, -1137.91, 25.5051, 58.8176, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 5275, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES + (276, 1, 'Warehouse', 0, 0, 0, 0, -1114.45, 53.0893, 58.6725, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 5276, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES + (277, 1, 'Warehouse', 0, 0, 0, 0, -1090.84, 59.4074, 58.5898, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 5277, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES + (278, 1, 'Warehouse', 0, 0, 0, 0, -1020.35, -78.0101, 38.8868, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 5278, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES + (279, 1, 'Warehouse', 0, 0, 0, 0, -844.123, -160.472, 33.8577, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 5279, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES + (280, 1, 'Warehouse', 0, 0, 0, 0, -844.13, -176.191, 33.8553, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 5280, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES + (281, 1, 'Warehouse', 0, 0, 0, 0, -844.125, -184.379, 33.8559, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 5281, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES + (282, 1, 'Warehouse', 0, 0, 0, 0, -844.126, -192.238, 33.8565, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 5282, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES + (283, 1, 'Warehouse', 0, 0, 0, 0, -844.131, -200.027, 33.8571, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 5283, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES + (284, 1, 'Warehouse', 0, 0, 0, 0, -844.125, -207.769, 33.8577, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 5284, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES + (285, 1, 'Staunton Island Police Station', 0, 0, 0, 0, 340.404, -1118.42, 25.9809, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 5285, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES + (286, 1, 'Carson General Hospital', 0, 0, 0, 0, 149.876, 63.3876, 16.2136, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 5286, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES + (287, 1, 'Liberty City Stadium', 0, 0, 0, 0, -18.7666, -219.304, 29.821, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 5287, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES + (288, 1, 'Staunton Island Fire Station', 0, 0, 0, 0, -76.4618, -435.701, 16.181, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 5288, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES + (289, 1, 'Church', 0, 0, 0, 0, -75.0275, -1078.03, 26.188, 0, 0, 0, 0, -1, -72.5906, -1079.24, 26.205, 0, 0, 5289, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES + (290, 1, 'Clothes Store', 0, 0, 0, 0, 1116.62, -402.531, 19.9728, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 5290, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES + (291, 2, 'Little Havana Police Station', 0, 0, 0, 0, -873.236, -684.969, 11.3377, 0, 0, 0, 0, -1, 394.74, -475.02, 12.34, 0, 12, 5291, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES + (292, 2, 'Bar', 0, 0, 0, 0, -900.148, -646.111, 11.2776, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 5292, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES + (293, 2, '24/7', 0, 0, 0, 0, -858.719, -634.62, 11.3756, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 5293, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES + (294, 2, 'Hardware Store', 0, 0, 0, 0, -966.698, -693.397, 11.4109, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 5294, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES + (295, 2, 'Bar', 0, 0, 0, 0, -995.865, -689.222, 11.7743, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 5295, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES + (296, 2, 'Bar', 0, 0, 0, 0, -1114.92, -697.184, 11.7918, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 5296, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES + (297, 2, 'Diner', 0, 0, 0, 0, -1168.71, -616.915, 11.829, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 5297, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES + (298, 2, 'Laundromat', 0, 0, 0, 0, -1195.37, -323.562, 10.9423, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 5298, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES + (299, 2, 'Warehouse', 0, 0, 0, 0, -892.17, 118.996, 9.37293, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 5299, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES + (300, 2, 'Warehouse', 0, 0, 0, 0, -920.025, 118.996, 9.37293, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 5300, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES + (301, 2, 'Warehouse', 0, 0, 0, 0, -906.033, 145.943, 9.37293, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 5301, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES + (302, 2, 'Storage', 0, 0, 0, 0, -874.2, 79.1296, 9.37293, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 5302, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES + (303, 2, 'Storage', 0, 0, 0, 0, -874.199, 90.4153, 9.37293, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 5303, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES + (304, 2, 'Storage', 0, 0, 0, 0, -874.199, 101.824, 9.37293, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 5304, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES + (305, 2, 'Cafe', 0, 0, 0, 0, -913.748, 50.6966, 10.4989, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 5305, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES + (306, 2, 'Big Hotel', 0, 0, 0, 0, -775.587, 133.019, 10.9342, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 5306, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES + (307, 2, 'Big Hotel', 0, 0, 0, 0, -752.059, 256.485, 16.3216, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 5307, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES + (308, 2, 'Big Hotel', 0, 0, 0, 0, -729.955, 365.967, 11.1007, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 5308, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES + (309, 2, 'Courthouse', 0, 0, 0, 0, -698.668, 703.529, 12.1166, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 5309, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES + (310, 2, 'Downtown Fire Station', 0, 0, 0, 0, -698.709, 806.243, 11.0846, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 5310, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES + (311, 2, 'Music Store', 0, 0, 0, 0, -872.933, 746.806, 11.0846, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 5311, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES + (312, 2, 'Clothing Store', 0, 0, 0, 0, -918.638, 885.245, 11.0593, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 5312, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES + (313, 2, 'Large Hotel', 0, 0, 0, 0, -826.862, 1038.41, 15.7483, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 5313, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES + (314, 2, 'Concert Hall', 0, 0, 0, 0, -893.967, 1054.59, 15.6737, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 5314, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES + (315, 2, 'Offices', 0, 0, 0, 0, -875.074, 1159.55, 11.1971, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 5315, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES + (316, 2, 'Derby Arena', 0, 0, 0, 0, -1108.53, 1331.05, 20.1156, 0, 0, 0, 0, -1, -1443.36, 932.982, 262.395, 0, 15, 5316, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES + (317, 2, 'Bowling Alley', 0, 0, 0, 0, -669.299, 1382.3, 12.0918, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 5317, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES + (318, 2, 'The Greasy Chopper Bar', 0, 0, 0, 0, -597.353, 651.604, 11.3788, 0, 0, 0, 0, -1, -597.312, 650.405, 11.6765, 0, 11, 5318, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES + (319, 2, 'North Point Mall', 0, 0, 0, 0, 379.66, 998.47, 18.76, 0, 0, 0, 0, -1, 379.62, 1007, 19.22, 0, 4, 5319, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES + (320, 2, 'North Point Mall', 0, 0, 0, 0, 448.95, 999.73, 18.79, 0, 0, 0, 0, -1, 448.24, 1007.2, 19.18, 0, 4, 5320, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES + (321, 2, 'North Point Mall', 0, 0, 0, 0, 352.85, 1124.52, 18.64, 0, 0, 0, 0, -1, 361.72, 1124.93, 18.93, 0, 15, 5321, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES + (322, 2, 'North Point Mall', 0, 0, 0, 0, 379.68, 1253.29, 18.85, 0, 0, 0, 0, -1, 379.79, 1246.83, 19.16, 0, 15, 5322, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES + (323, 2, 'North Point Mall', 0, 0, 0, 0, 448.17, 1253.27, 18.7, 0, 0, 0, 0, -1, 448.6, 1246.43, 19.06, 0, 15, 5323, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES + (324, 2, 'North Point Mall', 0, 0, 0, 0, 475.04, 1124.36, 17.95, 0, 0, 0, 0, -1, 468.24, 1123.66, 18.34, 0, 15, 5324, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES + (325, 2, 'Malibu Club', 0, 0, 0, 0, 489.83, -76.49, 11.48, 0, 0, 0, 0, -1, 489.83, -76.49, 11.48, 0, 17, 5325, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES + (326, 2, 'Washington Beach Police Station', 0, 0, 0, 0, 396.38, -472.96, 12.34, 0, 0, 0, 0, -1, 394.74, -475.02, 12.34, 0, 12, 5326, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES + (327, 2, 'Ocean View Hotel', 0, 0, 0, 0, 228.53, -1277.12, 12.07, 0, 0, 0, 0, -1, 228.53, -1277.12, 12.07, 0, 1, 5327, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES + (328, 2, 'Ammunation Range', 0, 0, 0, 0, -667.79, 1217.51, 11.1, 0, 0, 0, 0, -1, -667.79, 1217.51, 11.1, 0, 10, 5328, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES + (329, 2, 'Bank', 0, 0, 0, 0, -894.52, -341.16, 13.45, 0, 0, 0, 0, -1, -901.16, -341.15, 13.38, 0, 3, 5329, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES + (330, 2, 'Downtown Roof Building', 0, 0, 0, 0, -830.77, 1312.15, 11.54, 0, 0, 0, 0, -1, -811.81, 1354.21, 66.46, 0, 0, 5330, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES + (331, 2, 'Roof', 0, 0, 0, 0, 386.46, -473.03, 21.57, 0, 0, 0, 0, -1, 379.35, -493.53, 12.33, 0, 12, 5331, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES + (332, 2, 'Strip Club', 0, 0, 0, 0, 97.53, -1472.06, 10.43, 0, 0, 0, 0, -1, 95.68, -1469, 10.56, 0, 5, 5332, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1); +INSERT INTO `biz_main` (`biz_id`, `biz_server`, `biz_name`, `biz_type`, `biz_buy_price`, `biz_owner_type`, `biz_owner_id`, `biz_entrance_pos_x`, `biz_entrance_pos_y`, `biz_entrance_pos_z`, `biz_entrance_rot_z`, `biz_entrance_int`, `biz_entrance_vw`, `biz_entrance_pickup`, `biz_entrance_blip`, `biz_exit_pos_x`, `biz_exit_pos_y`, `biz_exit_pos_z`, `biz_exit_rot_z`, `biz_exit_int`, `biz_exit_vw`, `biz_exit_pickup`, `biz_exit_blip`, `biz_misc_customext`, `biz_misc_customint`, `biz_supply_pos_x`, `biz_supply_pos_y`, `biz_supply_pos_z`, `biz_buy_pos_x`, `biz_buy_pos_y`, `biz_buy_pos_z`, `biz_buy_rot_z`, `biz_misc_customvw`, `biz_locked`, `biz_till`, `biz_entrance_fee`, `biz_deleted`, `biz_who_deleted`, `biz_when_deleted`, `biz_has_interior`) VALUES + (333, 2, 'Law Office', 0, 0, 0, 0, 120.82, -827.98, 10.62, 0, 0, 0, 0, -1, 137.12, -1370.16, 13.18, 0, 6, 5333, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1); +/*!40000 ALTER TABLE `biz_main` ENABLE KEYS */; + +-- Dumping structure for table db24053.bug_main +CREATE TABLE IF NOT EXISTS `bug_main` ( + `bug_id` mediumint(9) NOT NULL DEFAULT '0', + `bug_server` tinyint(2) NOT NULL DEFAULT '0', + `bug_who_added` mediumint(9) NOT NULL DEFAULT '0', + `bug_when_added` int(32) NOT NULL DEFAULT '0', + `bug_script_ver` varchar(16) NOT NULL DEFAULT '0.1', + `bug_pos_x` float NOT NULL DEFAULT '0', + `bug_pos_y` float NOT NULL DEFAULT '0', + `bug_pos_z` float NOT NULL DEFAULT '0', + `bug_rot_z` float NOT NULL DEFAULT '0', + `bug_message` varchar(128) NOT NULL DEFAULT '( No Message )', + `bug_svr_start` int(32) NOT NULL DEFAULT '0', + `bug_session` int(11) NOT NULL DEFAULT '0', + `bug_state` tinyint(1) NOT NULL DEFAULT '0', + `bug_who_state` mediumint(9) NOT NULL DEFAULT '0', + `bug_when_state` int(11) NOT NULL DEFAULT '0', + PRIMARY KEY (`bug_id`) +) ENGINE=InnoDB DEFAULT CHARSET=latin1 COMMENT='User Submitted Bugs'; + +-- Dumping data for table db24053.bug_main: ~4 rows (approximately) +/*!40000 ALTER TABLE `bug_main` DISABLE KEYS */; +INSERT INTO `bug_main` (`bug_id`, `bug_server`, `bug_who_added`, `bug_when_added`, `bug_script_ver`, `bug_pos_x`, `bug_pos_y`, `bug_pos_z`, `bug_rot_z`, `bug_message`, `bug_svr_start`, `bug_session`, `bug_state`, `bug_who_state`, `bug_when_state`) VALUES + (4, 4, 2, 1609121880, '1.0', 0, 0, 0, 0, '"normal house at ls" marker overlaps with "Unnamed Business" marker in Verdant Bluffs.', 2147483647, 0, 0, 0, 0); +INSERT INTO `bug_main` (`bug_id`, `bug_server`, `bug_who_added`, `bug_when_added`, `bug_script_ver`, `bug_pos_x`, `bug_pos_y`, `bug_pos_z`, `bug_rot_z`, `bug_message`, `bug_svr_start`, `bug_session`, `bug_state`, `bug_who_state`, `bug_when_state`) VALUES + (5, 2, 1, 1609210983, '1.0', 0, 0, 0, 0, 'save businesses first', 2147483647, 0, 0, 0, 0); +INSERT INTO `bug_main` (`bug_id`, `bug_server`, `bug_who_added`, `bug_when_added`, `bug_script_ver`, `bug_pos_x`, `bug_pos_y`, `bug_pos_z`, `bug_rot_z`, `bug_message`, `bug_svr_start`, `bug_session`, `bug_state`, `bug_who_state`, `bug_when_state`) VALUES + (6, 4, 1, 1609213757, '1.0', 0, 0, 0, 0, 'Fix the get client from params', 2147483647, 0, 0, 0, 0); +INSERT INTO `bug_main` (`bug_id`, `bug_server`, `bug_who_added`, `bug_when_added`, `bug_script_ver`, `bug_pos_x`, `bug_pos_y`, `bug_pos_z`, `bug_rot_z`, `bug_message`, `bug_svr_start`, `bug_session`, `bug_state`, `bug_who_state`, `bug_when_state`) VALUES + (7, 4, 1, 1609213868, '1.0', 0, 0, 0, 0, 'Fix job uniform not working (net event?)', 2147483647, 0, 0, 0, 0); +/*!40000 ALTER TABLE `bug_main` ENABLE KEYS */; + +-- Dumping structure for table db24053.clan_main +CREATE TABLE IF NOT EXISTS `clan_main` ( + `clan_id` smallint(6) NOT NULL DEFAULT '0', + `clan_server` tinyint(1) NOT NULL DEFAULT '0', + `clan_name` varchar(64) NOT NULL DEFAULT '', + `clan_tag` varchar(16) NOT NULL DEFAULT '', + `clan_owner` mediumint(9) NOT NULL DEFAULT '0', + `clan_created` int(32) NOT NULL DEFAULT '0', + `clan_deleted` tinyint(1) NOT NULL DEFAULT '0', + `clan_who_deleted` mediumint(9) NOT NULL DEFAULT '0', + `clan_when_deleted` int(32) NOT NULL DEFAULT '0', + PRIMARY KEY (`clan_id`) +) ENGINE=InnoDB DEFAULT CHARSET=latin1 COMMENT='Clans'; + +-- Dumping data for table db24053.clan_main: ~0 rows (approximately) +/*!40000 ALTER TABLE `clan_main` DISABLE KEYS */; +/*!40000 ALTER TABLE `clan_main` ENABLE KEYS */; + +-- Dumping structure for table db24053.clan_members +CREATE TABLE IF NOT EXISTS `clan_members` ( + `clan_member_id` smallint(6) NOT NULL DEFAULT '0', + `clan_rank_server` tinyint(2) NOT NULL DEFAULT '0', + `clan_member_clan` smallint(6) NOT NULL DEFAULT '0', + `clan_member_acct` int(11) NOT NULL DEFAULT '0', + `clan_member_custom_title` varchar(64) NOT NULL DEFAULT '', + `clan_member_custom_tag` varchar(16) NOT NULL DEFAULT '', + `clan_member_flags` int(32) NOT NULL DEFAULT '0', + `clan_member_rank` smallint(6) NOT NULL DEFAULT '0', + `clan_member_removed` tinyint(1) NOT NULL DEFAULT '1', + `clan_member_who_removed` int(11) NOT NULL DEFAULT '0', + `clan_member_who_added` int(11) NOT NULL DEFAULT '0', + PRIMARY KEY (`clan_member_id`) +) ENGINE=InnoDB DEFAULT CHARSET=latin1 COMMENT='Clans - Members'; + +-- Dumping data for table db24053.clan_members: ~0 rows (approximately) +/*!40000 ALTER TABLE `clan_members` DISABLE KEYS */; +/*!40000 ALTER TABLE `clan_members` ENABLE KEYS */; + +-- Dumping structure for table db24053.clan_ranks +CREATE TABLE IF NOT EXISTS `clan_ranks` ( + `clan_rank_id` int(11) NOT NULL AUTO_INCREMENT, + `clan_rank_clan` int(11) NOT NULL DEFAULT '0', + `clan_rank_name` varchar(64) NOT NULL DEFAULT '', + `clan_rank_custom_tag` varchar(16) NOT NULL DEFAULT '', + `clan_rank_flags` int(32) NOT NULL DEFAULT '0', + `clan_rank_after_rank_id` int(11) NOT NULL DEFAULT '0', + PRIMARY KEY (`clan_rank_id`) +) ENGINE=InnoDB DEFAULT CHARSET=latin1 COMMENT='Clans - Ranks'; + +-- Dumping data for table db24053.clan_ranks: ~0 rows (approximately) +/*!40000 ALTER TABLE `clan_ranks` DISABLE KEYS */; +/*!40000 ALTER TABLE `clan_ranks` ENABLE KEYS */; + +-- Dumping structure for table db24053.error_main +CREATE TABLE IF NOT EXISTS `error_main` ( + `error_id` smallint(6) NOT NULL DEFAULT '0', + `error_server` tinyint(1) NOT NULL DEFAULT '0', + `error_when_added` int(32) NOT NULL, + `error_script_ver` varchar(16) NOT NULL DEFAULT '0.0', + `error_module` int(11) NOT NULL DEFAULT '0', + `error_file` text NOT NULL, + `error_line` int(11) NOT NULL DEFAULT '0', + `error_locals` text NOT NULL, + `error_func` varchar(128) NOT NULL DEFAULT 'Unknown', + PRIMARY KEY (`error_id`) +) ENGINE=InnoDB DEFAULT CHARSET=latin1 COMMENT='Error Reports'; + +-- Dumping data for table db24053.error_main: ~0 rows (approximately) +/*!40000 ALTER TABLE `error_main` DISABLE KEYS */; +/*!40000 ALTER TABLE `error_main` ENABLE KEYS */; + +-- Dumping structure for table db24053.house_main +CREATE TABLE IF NOT EXISTS `house_main` ( + `house_id` smallint(6) NOT NULL AUTO_INCREMENT, + `house_server` tinyint(1) NOT NULL DEFAULT '0', + `house_description` varchar(64) CHARACTER SET utf8 COLLATE utf8_unicode_ci NOT NULL DEFAULT '', + `house_owner_type` tinyint(1) NOT NULL DEFAULT '0', + `house_owner_id` int(11) NOT NULL, + `house_locked` tinyint(1) NOT NULL DEFAULT '0', + `house_buy_price` int(11) NOT NULL, + `house_rent_price` int(11) NOT NULL, + `house_entrance_pos_x` float NOT NULL DEFAULT '0', + `house_entrance_pos_y` float NOT NULL DEFAULT '0', + `house_entrance_pos_z` float NOT NULL DEFAULT '0', + `house_entrance_rot_z` float NOT NULL DEFAULT '0', + `house_entrance_int` smallint(6) NOT NULL DEFAULT '0', + `house_entrance_vw` int(11) NOT NULL DEFAULT '0', + `house_entrance_pickup` int(11) NOT NULL, + `house_entrance_blip` int(11) NOT NULL, + `house_exit_pos_x` float NOT NULL DEFAULT '0', + `house_exit_pos_y` float NOT NULL DEFAULT '0', + `house_exit_pos_z` float NOT NULL DEFAULT '0', + `house_exit_rot_z` float NOT NULL, + `house_exit_int` int(11) NOT NULL DEFAULT '0', + `house_exit_vw` int(11) NOT NULL, + `house_exit_pickup` int(11) NOT NULL, + `house_exit_blip` int(11) NOT NULL, + `house_has_interior` tinyint(1) NOT NULL DEFAULT '0', + PRIMARY KEY (`house_id`) USING BTREE +) ENGINE=InnoDB AUTO_INCREMENT=2234 DEFAULT CHARSET=latin1 COMMENT='Houses'; + +-- Dumping data for table db24053.house_main: ~2,230 rows (approximately) +/*!40000 ALTER TABLE `house_main` DISABLE KEYS */; +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1, 4, 'Madd Doggs House', 0, 0, 0, 5250000, 0, 1298.55, -798.182, 84.138, 0, 0, 0, 0, -1, 1298.81, -796.658, 1084.01, 0, 5, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (2, 4, 'Small Cottage', 0, 0, 0, 25000, 0, -418.648, -1759.54, 6.21, 0, 0, 0, 0, -1, 244.41, 305.032, 999.148, 0, 1, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (3, 4, 'Mexican Style House', 0, 0, 0, 350000, 0, 657.218, -1652.65, 15.399, 0, 0, 0, 0, -1, 2365.27, -1135.59, 1050.88, 0, 8, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (4, 4, 'Mexican Style House', 0, 0, 0, 350000, 0, 693.76, -1645.79, 4.09, 0, 0, 0, 0, -1, 2365.27, -1135.59, 1050.88, 0, 8, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (5, 4, 'Mexican Style House', 0, 0, 0, 350000, 0, 693.57, -1705.87, 3.809, 0, 0, 0, 0, -1, 2365.27, -1135.59, 1050.88, 0, 8, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (6, 4, 'Mexican Style House', 0, 0, 0, 350000, 0, 766.9, -1606.18, 13.8, 0, 0, 0, 0, -1, 2365.27, -1135.59, 1050.88, 0, 8, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (7, 4, 'Mexican Style House', 0, 0, 0, 350000, 0, 768.07, -1655.99, 5.598, 0, 0, 0, 0, -1, 2365.27, -1135.59, 1050.88, 0, 8, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (8, 4, 'Mexican Style House', 0, 0, 0, 350000, 0, 769.218, -1696.74, 5.15, 0, 0, 0, 0, -1, 2365.27, -1135.59, 1050.88, 0, 8, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (9, 4, 'Mexican Style House', 0, 0, 0, 350000, 0, 769.2, -1745.85, 13.069, 0, 0, 0, 0, -1, 2365.27, -1135.59, 1050.88, 0, 8, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (10, 4, 'Mexican Style House', 0, 0, 0, 350000, 0, 653.58, -1714, 14.76, 0, 0, 0, 0, -1, 2365.27, -1135.59, 1050.88, 0, 8, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (11, 4, 'Mexican Style House', 0, 0, 0, 350000, 0, 1906.04, -1112.94, 26.659, 0, 0, 0, 0, -1, 2365.27, -1135.59, 1050.88, 0, 8, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (12, 4, 'Mexican Style House', 0, 0, 0, 350000, 0, 1939.23, -1114.51, 27.45, 0, 0, 0, 0, -1, 2365.27, -1135.59, 1050.88, 0, 8, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (13, 4, 'Mexican Style House', 0, 0, 0, 350000, 0, 1999.97, -1114.05, 27.12, 0, 0, 0, 0, -1, 2365.27, -1135.59, 1050.88, 0, 8, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (14, 4, 'Mexican Style House', 0, 0, 0, 350000, 0, 2022.92, -1120.26, 26.42, 0, 0, 0, 0, -1, 2365.27, -1135.59, 1050.88, 0, 8, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (15, 4, 'Mexican Style House', 0, 0, 0, 350000, 0, 2095.33, -1145.13, 26.59, 0, 0, 0, 0, -1, 2365.27, -1135.59, 1050.88, 0, 8, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (16, 4, 'Mexican Style House', 0, 0, 0, 350000, 0, 2092.24, -1166.36, 26.579, 0, 0, 0, 0, -1, 2365.27, -1135.59, 1050.88, 0, 8, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (17, 4, 'Mexican Style House', 0, 0, 0, 350000, 0, 793.989, -1707.45, 14.029, 0, 0, 0, 0, -1, 2365.27, -1135.59, 1050.88, 0, 8, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (18, 4, 'Simple House', 0, 0, 0, 65000, 0, 1886.26, -1113.66, 26.27, 0, 0, 0, 0, -1, 260.769, 1237.26, 1084.25, 0, 9, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (19, 4, 'Simple House', 0, 0, 0, 65000, 100, 1921.35, -1115.18, 27.079, 0, 0, 0, 0, -1, 260.769, 1237.26, 1084.25, 0, 9, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (20, 4, 'Simple House', 0, 0, 0, 65000, 400, 1955.4, -1115.35, 27.829, 0, 0, 0, 0, -1, 260.769, 1237.26, 1084.25, 0, 9, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (21, 4, 'Simple House', 0, 0, 0, 65000, 0, 2045.5, -1116.63, 26.36, 0, 0, 0, 0, -1, 260.769, 1237.26, 1084.25, 0, 9, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (22, 4, 'Simple House', 0, 0, 0, 65000, 650, 2093.99, -1122.78, 27.68, 0, 0, 0, 0, -1, 260.769, 1237.26, 1084.25, 0, 9, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (23, 4, 'Simple House', 0, 0, 0, 65000, 0, 2091.67, -1184.45, 27.048, 0, 0, 0, 0, -1, 260.769, 1237.26, 1084.25, 0, 9, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (24, 4, 'Simple House', 0, 0, 0, 65000, 0, 769.049, -1726.35, 13.43, 0, 0, 0, 0, -1, 260.769, 1237.26, 1084.25, 0, 9, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (25, 4, 'Simple House', 0, 0, 0, 65000, 0, 794.89, -1691.99, 14.46, 0, 0, 0, 0, -1, 260.769, 1237.26, 1084.25, 0, 9, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (26, 4, 'Simple House', 0, 0, 0, 65000, 0, 2495.41, -1690.94, 14.76, 0, 0, 0, 0, -1, 2495.97, -1692.08, 1014.74, 0, 3, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (28, 4, 'Simple House', 0, 0, 0, 800000, 0, 2126.68, -1320.68, 26.62, 0, 0, 0, 0, -1, 234.162, 1064.23, 1084.21, 0, 6, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (29, 4, '2 Bedroom House', 0, 0, 0, 100000, 0, 2091.05, -1278.14, 26.17, 0, 0, 0, 0, -1, 2196.53, -1204.18, 1049.02, 0, 6, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (30, 4, '2 Bedroom House', 0, 0, 0, 100000, 0, 2191.64, -1275.82, 25.149, 0, 0, 0, 0, -1, 2196.53, -1204.18, 1049.02, 0, 6, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (31, 4, '2 Bedroom House', 0, 0, 0, 100000, 5, 2229.66, -1241.52, 25.649, 0, 0, 0, 0, -1, 2196.53, -1204.18, 1049.02, 0, 6, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (32, 4, 'Big Living Style', 0, 0, 0, 80000, 0, 2100.94, -1321.8, 25.95, 0, 0, 0, 0, -1, 2269.92, -1210.37, 1047.56, 0, 10, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (33, 4, 'Big Living Style', 0, 0, 0, 80000, 0, 2132.32, -1280.12, 25.888, 0, 0, 0, 0, -1, 2269.92, -1210.37, 1047.56, 0, 10, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (34, 4, 'Big Living Style', 0, 0, 0, 80000, 0, 2250.2, -1280.32, 25.468, 0, 0, 0, 0, -1, 2269.92, -1210.37, 1047.56, 0, 10, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (35, 4, 'Big Living Style', 0, 0, 0, 80000, 1, 2249.92, -1238.89, 25.888, 0, 0, 0, 0, -1, 2269.92, -1210.37, 1047.56, 0, 10, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (36, 4, 'Big Living Style', 0, 0, 0, 80000, 0, 2153.82, -1243.53, 25.36, 0, 0, 0, 0, -1, 2269.92, -1210.37, 1047.56, 0, 10, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (37, 4, 'Big Living Style', 0, 0, 0, 80000, 0, 2110.99, -1244.32, 25.85, 0, 0, 0, 0, -1, 2269.92, -1210.37, 1047.56, 0, 10, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (38, 4, 'Small House', 0, 0, 0, 45000, 5000, 2148.55, -1319.82, 25.739, 0, 0, 0, 0, -1, 2282.9, -1139.99, 1050.89, 0, 11, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (39, 4, 'Small House', 0, 0, 0, 45000, 0, 2150.21, -1285.45, 24.19, 0, 0, 0, 0, -1, 2282.9, -1139.99, 1050.89, 0, 11, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (40, 4, 'Small House', 0, 0, 0, 45000, 0, 2230.1, -1280.56, 25.36, 0, 0, 0, 0, -1, 2282.9, -1139.99, 1050.89, 0, 11, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (41, 4, 'Small House', 0, 0, 0, 45000, 0, 2209.74, -1239.99, 24.138, 0, 0, 0, 0, -1, 2282.9, -1139.99, 1050.89, 0, 11, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (42, 4, 'Minor Manor', 0, 0, 0, 50000, 0, 2133.39, -1232.84, 24.42, 0, 0, 0, 0, -1, 2333.12, -1077.13, 1049.02, 0, 6, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (43, 4, 'Minor Manor', 0, 0, 0, 800000, 0, 2148.73, -1484.85, 26.62, 0, 0, 0, 0, -1, 234.162, 1064.23, 1084.21, 0, 6, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (44, 4, 'Simple House', 0, 0, 0, 65000, 0, 2023.31, -1053.15, 25.59, 0, 0, 0, 0, -1, 260.769, 1237.26, 1084.25, 0, 9, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (45, 4, 'Simple House', 0, 0, 0, 65000, 0, 2036.12, -1059.42, 25.649, 0, 0, 0, 0, -1, 260.769, 1237.26, 1084.25, 0, 9, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (46, 4, 'Simple House', 0, 0, 0, 65000, 0, 2050.9, -1065.83, 25.78, 0, 0, 0, 0, -1, 260.769, 1237.26, 1084.25, 0, 9, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (47, 4, 'Small House', 0, 0, 0, 45000, 0, 2150.76, -1400.63, 25.79, 0, 0, 0, 0, -1, 2282.9, -1139.99, 1050.89, 0, 11, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (48, 4, 'Small House', 0, 0, 0, 45000, 0, 2151.7, -1446.33, 25.77, 0, 0, 0, 0, -1, 2282.9, -1139.99, 1050.89, 0, 11, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (49, 4, 'Small House', 0, 0, 0, 45000, 0, 2190.69, -1487.68, 25.77, 0, 0, 0, 0, -1, 2282.9, -1139.99, 1050.89, 0, 11, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (50, 4, 'Small House', 0, 0, 0, 45000, 100, 2196.48, -1404.19, 25.61, 0, 0, 0, 0, -1, 2282.9, -1139.99, 1050.89, 0, 11, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (51, 4, 'Small House', 0, 0, 0, 45000, 200, 2147.69, -1366.65, 25.638, 0, 0, 0, 0, -1, 2282.9, -1139.99, 1050.89, 0, 11, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (52, 4, '2 Bedroom House', 0, 0, 0, 100000, 200, 2188.83, -1419.29, 26.149, 0, 0, 0, 0, -1, 2196.53, -1204.18, 1049.02, 0, 6, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (53, 4, 'Big Living Style', 0, 0, 0, 80000, 1500, 2150.8, -1419.01, 25.92, 0, 0, 0, 0, -1, 2269.92, -1210.37, 1047.56, 0, 10, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (54, 4, 'Big Living Style', 0, 0, 0, 80000, 0, 2190.55, -1470.42, 25.909, 0, 0, 0, 0, -1, 2269.92, -1210.37, 1047.56, 0, 10, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (55, 4, 'Cheap Stuff', 0, 0, 0, 35000, 0, 2149.5, -1433.73, 25.94, 0, 0, 0, 0, -1, 327.91, 1477.79, 1084.43, 0, 15, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (56, 4, 'Cheap Stuff', 0, 0, 0, 25000, 0, 2373.97, -1138.92, 29.048, 0, 0, 0, 0, -1, -68.847, 1351.31, 1080.21, 0, 6, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (57, 4, 'Cheap Stuff', 0, 0, 0, 35000, 0, 2488.07, -1135.61, 39.43, 0, 0, 0, 0, -1, 327.91, 1477.79, 1084.43, 0, 15, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (58, 4, '2 Bedroom House', 0, 0, 0, 100000, 0, 2394.96, -1133.67, 30.708, 0, 0, 0, 0, -1, 2196.53, -1204.18, 1049.02, 0, 6, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (59, 4, 'Hallway House', 0, 0, 0, 70000, 0, 2191.74, -1239.03, 24.149, 0, 0, 0, 0, -1, 260.989, 1284.29, 1080.25, 0, 4, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (60, 4, 'Hallway House', 0, 0, 0, 70000, 0, 2090.73, -1234.89, 25.68, 0, 0, 0, 0, -1, 260.989, 1284.29, 1080.25, 0, 4, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (61, 4, 'Hallway House', 0, 0, 0, 70000, 100, 2207.91, -1281.05, 24.79, 0, 0, 0, 0, -1, 260.989, 1284.29, 1080.25, 0, 4, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (62, 4, 'Hallway House', 0, 0, 0, 70000, 0, 2202.75, -1363.93, 25.86, 0, 0, 0, 0, -1, 260.989, 1284.29, 1080.25, 0, 4, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (63, 4, 'Hallway House', 0, 0, 0, 70000, 0, 2129.66, -1361.94, 25.798, 0, 0, 0, 0, -1, 260.989, 1284.29, 1080.25, 0, 4, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (64, 4, 'Hallway House', 0, 0, 0, 70000, 0, 2146.49, -1470.47, 25.708, 0, 0, 0, 0, -1, 260.989, 1284.29, 1080.25, 0, 4, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (65, 4, 'Hallway House', 0, 0, 0, 70000, 100, 2194.53, -1442.93, 25.739, 0, 0, 0, 0, -1, 260.989, 1284.29, 1080.25, 0, 4, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (66, 4, 'Hallway House', 0, 0, 0, 70000, 0, 2230.44, -1396.88, 24.239, 0, 0, 0, 0, -1, 260.989, 1284.29, 1080.25, 0, 4, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (67, 4, 'Hallway House', 0, 0, 0, 70000, 0, 2243.47, -1396.96, 24.239, 0, 0, 0, 0, -1, 260.989, 1284.29, 1080.25, 0, 4, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (68, 4, 'Hallway House', 0, 0, 0, 70000, 0, 2256.46, -1396.92, 24.239, 0, 0, 0, 0, -1, 260.989, 1284.29, 1080.25, 0, 4, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (69, 4, 'Hallway House', 0, 0, 0, 70000, 0, 2263.89, -1469.58, 24.04, 0, 0, 0, 0, -1, 260.989, 1284.29, 1080.25, 0, 4, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (70, 4, 'Hallway House', 0, 0, 0, 70000, 0, 2247.69, -1469.54, 24.138, 0, 0, 0, 0, -1, 260.989, 1284.29, 1080.25, 0, 4, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (71, 4, 'Hallway House', 0, 0, 0, 70000, 100, 2232.56, -1469.54, 24.25, 0, 0, 0, 0, -1, 260.989, 1284.29, 1080.25, 0, 4, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (72, 4, 'Hallway House', 0, 0, 0, 70000, 0, 2510.35, -1132.66, 41.29, 0, 0, 0, 0, -1, 260.989, 1284.29, 1080.25, 0, 4, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (73, 4, 'Small House', 0, 0, 0, 45000, 0, 2185.15, -1364, 25.819, 0, 0, 0, 0, -1, 2282.9, -1139.99, 1050.89, 0, 11, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (74, 4, 'Light Living', 0, 0, 0, 48000, 0, 2061.06, -1075.35, 25.68, 0, 0, 0, 0, -1, 2218.35, -1076.26, 1050.48, 0, 1, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (75, 4, 'House', 0, 0, 0, 10500, 500, 1959.58, -1070.07, 24.79, 0, 0, 0, 0, -1, 243.979, 304.98, 999.14, 0, 1, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (76, 4, 'House', 0, 0, 0, 10500, 0, 1954.38, -1074.93, 24.79, 0, 0, 0, 0, -1, 243.979, 304.98, 999.14, 0, 1, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (77, 4, 'House', 0, 0, 0, 10500, 0, 1934.04, -1071.51, 24.409, 0, 0, 0, 0, -1, 243.979, 304.98, 999.14, 0, 1, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (78, 4, 'House', 0, 0, 0, 10500, 0, 1939.27, -1066.39, 24.409, 0, 0, 0, 0, -1, 243.979, 304.98, 999.14, 0, 1, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (79, 4, 'House', 0, 0, 0, 10500, 0, 1916.88, -1064.77, 24.12, 0, 0, 0, 0, -1, 243.979, 304.98, 999.14, 0, 1, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (80, 4, 'House', 0, 0, 0, 10500, 0, 1912.61, -1070.55, 24.229, 0, 0, 0, 0, -1, 243.979, 304.98, 999.14, 0, 1, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (81, 4, 'House', 0, 0, 0, 10500, 500, 1896.04, -1064.84, 23.93, 0, 0, 0, 0, -1, 243.979, 304.98, 999.14, 0, 1, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (82, 4, 'House', 0, 0, 0, 10500, 0, 1891.77, -1070.53, 23.93, 0, 0, 0, 0, -1, 243.979, 304.98, 999.14, 0, 1, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (83, 4, 'Light Living', 0, 0, 0, 48000, 5000, 2077.3, -1056.98, 31.34, 0, 0, 0, 0, -1, 2218.35, -1076.26, 1050.48, 0, 1, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (84, 4, 'House', 0, 0, 0, 80000, 0, 2157.15, -1072.39, 40.49, 0, 0, 0, 0, -1, 2237.51, -1081.64, 1049.02, 0, 2, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (85, 4, 'House', 0, 0, 0, 80000, 1000, 2188.76, -1081.51, 43.83, 0, 0, 0, 0, -1, 2237.51, -1081.64, 1049.02, 0, 2, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (86, 4, 'House', 0, 0, 0, 80000, 0, 2207.5, -1100.43, 31.548, 0, 0, 0, 0, -1, 2237.51, -1081.64, 1049.02, 0, 2, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (87, 4, 'House', 0, 0, 0, 1000, 0, 2213.22, -1000.31, 68.23, 0, 0, 0, 0, -1, 140.229, 1366, 1083.85, 0, 5, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (88, 4, 'Little Apartment', 0, 0, 0, 50000, 0, 1283.54, -897.848, 42.868, 0, 0, 0, 0, -1, 328.493, 1480.59, 1084.45, 0, 15, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (89, 4, 'Little Apartment', 0, 0, 0, 50000, 0, 1291.02, -896.89, 42.88, 0, 0, 0, 0, -1, 328.493, 1480.59, 1084.45, 0, 15, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (90, 4, 'Little Apartment', 0, 0, 0, 50000, 0, 1291.02, -896.859, 46.618, 0, 0, 0, 0, -1, 328.493, 1480.59, 1084.45, 0, 15, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (91, 4, 'Little Apartment', 0, 0, 0, 50000, 40, 1283.53, -897.82, 46.618, 0, 0, 0, 0, -1, 328.493, 1480.59, 1084.45, 0, 15, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (92, 4, 'Little Apartment', 0, 0, 0, 50000, 0, 1291.82, -903.07, 46.63, 0, 0, 0, 0, -1, 328.493, 1480.59, 1084.45, 0, 15, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (93, 4, 'Little Apartment', 0, 0, 0, 50000, 100, 1284.36, -903.979, 46.63, 0, 0, 0, 0, -1, 328.493, 1480.59, 1084.45, 0, 15, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (94, 4, 'Little Apartment', 0, 0, 0, 50000, 0, 1284.34, -904.03, 42.88, 0, 0, 0, 0, -1, 328.493, 1480.59, 1084.45, 0, 15, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (95, 4, 'Little Apartment', 0, 0, 0, 50000, 0, 1291.83, -903.03, 42.88, 0, 0, 0, 0, -1, 328.493, 1480.59, 1084.45, 0, 15, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (96, 4, 'Little Apartment', 0, 0, 0, 50000, 0, 1288.34, -873.89, 43.06, 0, 0, 0, 0, -1, 328.493, 1480.59, 1084.45, 0, 15, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (97, 4, 'Little Apartment', 0, 0, 0, 50000, 0, 1280.86, -874.848, 42.93, 0, 0, 0, 0, -1, 328.493, 1480.59, 1084.45, 0, 15, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (98, 4, 'Little Apartment', 0, 0, 0, 50000, 0, 1287.53, -867.679, 43.138, 0, 0, 0, 0, -1, 328.493, 1480.59, 1084.45, 0, 15, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (99, 4, 'Little Apartment', 0, 0, 0, 50000, 0, 1280.08, -868.619, 42.916, 0, 0, 0, 0, -1, 328.493, 1480.59, 1084.45, 0, 15, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (100, 4, 'Little Apartment', 0, 0, 0, 50000, 5000, 1287.53, -867.739, 46.83, 0, 0, 0, 0, -1, 328.493, 1480.59, 1084.45, 0, 15, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (101, 4, 'Little Apartment', 0, 0, 0, 50000, 250, 1280.04, -868.609, 46.83, 0, 0, 0, 0, -1, 328.493, 1480.59, 1084.45, 0, 15, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (102, 4, 'Little Apartment', 0, 0, 0, 50000, 0, 1288.33, -873.82, 46.84, 0, 0, 0, 0, -1, 328.493, 1480.59, 1084.45, 0, 15, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (103, 4, 'Little Apartment', 0, 0, 0, 50000, 0, 1280.86, -874.859, 46.84, 0, 0, 0, 0, -1, 328.493, 1480.59, 1084.45, 0, 15, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (104, 4, 'Little Apartment', 0, 0, 0, 50000, 0, 1249.61, -877.299, 42.88, 0, 0, 0, 0, -1, 328.493, 1480.59, 1084.45, 0, 15, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (105, 4, 'Little Apartment', 0, 0, 0, 50000, 0, 1242.11, -878.229, 42.868, 0, 0, 0, 0, -1, 328.493, 1480.59, 1084.45, 0, 15, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (106, 4, 'Little Apartment', 0, 0, 0, 50000, 0, 1248.8, -871.14, 42.88, 0, 0, 0, 0, -1, 328.493, 1480.59, 1084.45, 0, 15, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (107, 4, 'Little Apartment', 0, 0, 0, 50000, 0, 1241.31, -872.09, 42.88, 0, 0, 0, 0, -1, 328.493, 1480.59, 1084.45, 0, 15, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (108, 4, 'Little Apartment', 0, 0, 0, 50000, 0, 1248.8, -871.15, 46.63, 0, 0, 0, 0, -1, 328.493, 1480.59, 1084.45, 0, 15, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (109, 4, 'Little Apartment', 0, 0, 0, 50000, 0, 1241.3, -872.059, 46.63, 0, 0, 0, 0, -1, 328.493, 1480.59, 1084.45, 0, 15, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (110, 4, 'Little Apartment', 0, 0, 0, 50000, 0, 1249.61, -877.28, 46.638, 0, 0, 0, 0, -1, 328.493, 1480.59, 1084.45, 0, 15, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (111, 4, 'Little Apartment', 0, 0, 0, 50000, 0, 1242.12, -878.218, 46.638, 0, 0, 0, 0, -1, 328.493, 1480.59, 1084.45, 0, 15, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (112, 4, 'Little Apartment', 0, 0, 0, 50000, 0, 1252.88, -901.869, 42.88, 0, 0, 0, 0, -1, 328.493, 1480.59, 1084.45, 0, 15, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (113, 4, 'Little Apartment', 0, 0, 0, 50000, 0, 1245.4, -902.83, 42.88, 0, 0, 0, 0, -1, 328.493, 1480.59, 1084.45, 0, 15, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (114, 4, 'Little Apartment', 0, 0, 0, 50000, 0, 1253.7, -908.059, 42.88, 0, 0, 0, 0, -1, 328.493, 1480.59, 1084.45, 0, 15, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (115, 4, 'Little Apartment', 0, 0, 0, 50000, 0, 1246.24, -909.03, 42.88, 0, 0, 0, 0, -1, 328.493, 1480.59, 1084.45, 0, 15, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (116, 4, 'Little Apartment', 0, 0, 0, 50000, 0, 1246.21, -908.979, 46.597, 0, 0, 0, 0, -1, 328.493, 1480.59, 1084.45, 0, 15, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (117, 4, 'Little Apartment', 0, 0, 0, 50000, 0, 1253.71, -908.098, 46.597, 0, 0, 0, 0, -1, 328.493, 1480.59, 1084.45, 0, 15, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (118, 4, 'Little Apartment', 0, 0, 0, 50000, 0, 1245.4, -902.799, 46.59, 0, 0, 0, 0, -1, 328.493, 1480.59, 1084.45, 0, 15, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (119, 4, 'Little Apartment', 0, 0, 0, 50000, 0, 1252.89, -901.88, 46.59, 0, 0, 0, 0, -1, 328.493, 1480.59, 1084.45, 0, 15, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (120, 4, 'Major Manor', 0, 0, 0, 50000, 0, 1111.5, -976.299, 42.756, 0, 0, 0, 0, -1, 2333.12, -1077.13, 1049.02, 0, 6, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (121, 4, 'Major Manor', 0, 0, 0, 3000000, 0, 1496.99, -687.89, 95.555, 0, 0, 0, 0, -1, 225.699, 1021.44, 1084.01, 0, 7, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (122, 4, 'Major Manor', 0, 0, 0, 3000000, 0, 980.468, -677.26, 121.97, 0, 0, 0, 0, -1, 225.699, 1021.44, 1084.01, 0, 7, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (123, 4, 'Major Manor', 0, 0, 0, 3000000, 0, 251.429, -1220.21, 76.097, 0, 0, 0, 0, -1, 225.699, 1021.44, 1084.01, 0, 7, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (124, 4, 'Fancy Mansion', 0, 0, 0, 1800000, 0, 253.179, -1270.01, 74.416, 0, 0, 0, 0, -1, 140.229, 1366, 1083.85, 0, 5, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (125, 4, 'Major Manor', 0, 0, 0, 1800000, 0, 300.25, -1154.46, 81.388, 0, 0, 0, 0, -1, 140.229, 1366, 1083.85, 0, 5, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (126, 4, 'Major Manor', 0, 0, 0, 1800000, 0, 189.63, -1308.16, 70.236, 0, 0, 0, 0, -1, 140.229, 1366, 1083.85, 0, 5, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (127, 4, 'Major Manor', 0, 0, 0, 3000000, 0, 1122.7, -2036.98, 69.888, 0, 0, 0, 0, -1, 1298.8, -796.9, 1084.01, 0, 5, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (128, 4, 'Major Manor', 0, 0, 0, 800000, 5000, 1981.07, -1682.85, 17.048, 0, 0, 0, 0, -1, 234.162, 1064.23, 1084.21, 0, 6, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (129, 4, 'Minor Manor', 0, 0, 0, 800000, 0, 1980.37, -1718.91, 17.03, 0, 0, 0, 0, -1, 234.162, 1064.23, 1084.21, 0, 6, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (130, 4, 'Idlewood House', 0, 0, 0, 100000, 0, 2015.34, -1732.57, 14.229, 0, 0, 0, 0, -1, 2196.53, -1204.18, 1049.02, 0, 6, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (131, 4, '2 Bedroom House', 0, 0, 0, 100000, 0, 2017.97, -1703.38, 14.229, 0, 0, 0, 0, -1, 2196.53, -1204.18, 1049.02, 0, 6, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (132, 4, 'Small House', 0, 0, 0, 45000, 0, 2067.42, -1731.62, 13.869, 0, 0, 0, 0, -1, 2282.9, -1139.99, 1050.89, 0, 11, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (133, 4, 'Small House', 0, 0, 0, 45000, 0, 2068.06, -1628.89, 13.869, 0, 0, 0, 0, -1, 2282.9, -1139.99, 1050.89, 0, 11, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (134, 4, 'Small House', 0, 0, 0, 45000, 0, 2016.21, -1641.67, 13.779, 0, 0, 0, 0, -1, 2282.9, -1139.99, 1050.89, 0, 11, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (135, 4, 'Cheap Stuff', 0, 0, 0, 35000, 5000, 2015.82, -1716.99, 13.97, 0, 0, 0, 0, -1, 327.91, 1477.79, 1084.43, 0, 15, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (136, 4, 'Cheap Stuff', 0, 0, 0, 35000, 0, 2066.97, -1656.47, 14.069, 0, 0, 0, 0, -1, 327.91, 1477.79, 1084.43, 0, 15, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (137, 4, 'Cheap Stuff', 0, 0, 0, 35000, 0, 2191.58, -1455.88, 25.79, 0, 0, 0, 0, -1, 327.91, 1477.79, 1084.43, 0, 15, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (138, 4, 'Hallway House', 0, 0, 0, 70000, 0, 2067.74, -1643.74, 13.8, 0, 0, 0, 0, -1, 260.989, 1284.29, 1080.25, 0, 4, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (139, 4, 'Hallway House', 0, 0, 0, 70000, 0, 2066.42, -1717.06, 13.8, 0, 0, 0, 0, -1, 260.989, 1284.29, 1080.25, 0, 4, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (140, 4, 'Hallway House', 0, 0, 0, 70000, 0, 2013.31, -1656.37, 13.8, 0, 0, 0, 0, -1, 260.989, 1284.29, 1080.25, 0, 4, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (141, 4, 'Hallway House', 0, 0, 0, 70000, 0, 2017.86, -1629.93, 13.71, 0, 0, 0, 0, -1, 260.989, 1284.29, 1080.25, 0, 4, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (142, 4, 'Low Light Living', 0, 0, 0, 70000, 1, 2065.24, -1703.52, 14.14, 0, 0, 0, 0, -1, -42.58, 1405.59, 1084.42, 0, 8, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (143, 4, 'Fancy Apartment', 0, 0, 0, 20000, 1500, 1969.35, -1705.42, 15.96, 0, 0, 0, 0, -1, 2218.04, -1076.24, 1050.48, 0, 1, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (144, 4, 'Fancy Apartment', 0, 0, 0, 20000, 2000, 1973.28, -1705.26, 15.96, 0, 0, 0, 0, -1, 2218.04, -1076.24, 1050.48, 0, 1, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (145, 4, 'Fancy Apartment', 0, 0, 0, 20000, 100, 1969.4, -1654.77, 15.96, 0, 0, 0, 0, -1, 2218.04, -1076.24, 1050.48, 0, 1, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (146, 4, 'Fancy Apartment', 0, 0, 0, 20000, 0, 1973.36, -1654.67, 15.96, 0, 0, 0, 0, -1, 2218.04, -1076.24, 1050.48, 0, 1, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (147, 4, 'Light Apartment', 0, 0, 0, 20000, 0, 1967.48, -1633.76, 15.96, 0, 0, 0, 0, -1, 2233.68, -1115.06, 1050.88, 0, 5, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (148, 4, 'Light Apartment', 0, 0, 0, 20000, 0, 1972.28, -1633.71, 15.96, 0, 0, 0, 0, -1, 2233.68, -1115.06, 1050.88, 0, 5, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (149, 4, 'Light Apartment', 0, 0, 0, 20000, 50, 1976.04, -1634.06, 16.208, 0, 0, 0, 0, -1, 2233.68, -1115.06, 1050.88, 0, 5, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (150, 4, 'Light Apartment', 0, 0, 0, 20000, 1, 1967.56, -1633.71, 18.559, 0, 0, 0, 0, -1, 2233.68, -1115.06, 1050.88, 0, 5, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (151, 4, 'Light Apartment', 0, 0, 0, 20000, 0, 1972.32, -1633.71, 18.559, 0, 0, 0, 0, -1, 2233.68, -1115.06, 1050.88, 0, 5, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (152, 4, 'Light Apartment', 0, 0, 0, 20000, 50, 1976.13, -1634.05, 18.559, 0, 0, 0, 0, -1, 2233.68, -1115.06, 1050.88, 0, 5, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (153, 4, 'Light Apartment', 0, 0, 0, 20000, 0, 1969.98, -1671.4, 15.96, 0, 0, 0, 0, -1, 2233.68, -1115.06, 1050.88, 0, 5, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (154, 4, 'Light Apartment', 0, 0, 0, 20000, 100, 1974.85, -1671.26, 15.96, 0, 0, 0, 0, -1, 2233.68, -1115.06, 1050.88, 0, 5, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (155, 4, 'Light Apartment', 0, 0, 0, 20000, 5, 1978.75, -1671.54, 16.18, 0, 0, 0, 0, -1, 2233.68, -1115.06, 1050.88, 0, 5, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (156, 4, 'Light Apartment', 0, 0, 0, 20000, 0, 1970.06, -1671.19, 18.54, 0, 0, 0, 0, -1, 2233.68, -1115.06, 1050.88, 0, 5, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (157, 4, 'Light Apartment', 0, 0, 0, 20000, 0, 1974.86, -1671.2, 18.54, 0, 0, 0, 0, -1, 2233.68, -1115.06, 1050.88, 0, 5, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (158, 4, 'Light Apartment', 0, 0, 0, 20000, 0, 1978.74, -1671.51, 18.54, 0, 0, 0, 0, -1, 2233.68, -1115.06, 1050.88, 0, 5, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (159, 4, 'House Ghetto LS Small', 0, 0, 0, 10000, 0, 2082.44, -1085.14, 25.687, 0, 0, 0, 0, -1, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (160, 4, 'House Ghetto LS Small', 0, 0, 0, 10000, 10, 2075.29, -1081.9, 25.68, 0, 0, 0, 0, -1, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (161, 4, 'Apartment LS Small', 0, 0, 0, 20000, 500, 2140.68, -1082.55, 25.034, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (162, 4, 'Apartment LS Small', 0, 0, 0, 20000, 1000, 2145.24, -1084.66, 25.034, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (163, 4, 'Ghetto Project Apartment LS Small', 0, 0, 0, 2000, 1, 2334.6, -1203.99, 27.975, 0, 0, 0, 0, -1, 243.72, 304.97, 999.14, 0, 1, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (164, 4, 'Ghetto Project Apartment LS Small', 0, 0, 0, 2000, 0, 2324.33, -1218.84, 27.975, 0, 0, 0, 0, -1, 243.72, 304.97, 999.14, 0, 1, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (165, 4, 'Ghetto Project Apartment LS Small', 0, 0, 0, 2000, 0, 2334.65, -1234.66, 27.975, 0, 0, 0, 0, -1, 243.72, 304.97, 999.14, 0, 1, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (166, 4, 'Ghetto Project Apartment LS Small', 0, 0, 0, 2000, 0, 2324.47, -1249.51, 27.975, 0, 0, 0, 0, -1, 243.72, 304.97, 999.14, 0, 1, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (167, 4, 'Ghetto Project Apartment LS Small', 0, 0, 0, 2000, 0, 2334.7, -1266.12, 27.968, 0, 0, 0, 0, -1, 243.72, 304.97, 999.14, 0, 1, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (168, 4, 'Ghetto Project Apartment LS Small', 0, 0, 0, 2000, 0, 2324.44, -1280.97, 27.982, 0, 0, 0, 0, -1, 243.72, 304.97, 999.14, 0, 1, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (169, 4, 'House Ghetto LS Small', 0, 0, 0, 10000, 0, 2427.38, -1135.77, 34.708, 0, 0, 0, 0, -1, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (170, 4, 'House Ghetto LS Small', 0, 0, 0, 10000, 0, 2467.56, -1200.41, 36.811, 0, 0, 0, 0, -1, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (171, 4, 'House Ghetto LS Small', 0, 0, 0, 10000, 0, 2492.17, -1239.01, 37.902, 0, 0, 0, 0, -1, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (172, 4, 'House Ghetto LS Small', 0, 0, 0, 10000, 0, 2494.1, -1224.25, 37.902, 0, 0, 0, 0, -1, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (173, 4, 'House Ghetto LS Small', 0, 0, 0, 10000, 0, 2472.9, -1238.12, 32.569, 0, 0, 0, 0, -1, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (174, 4, 'House Ghetto LS Small', 0, 0, 0, 10000, 0, 2474.9, -1223.36, 32.569, 0, 0, 0, 0, -1, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (175, 4, 'House Ghetto LS Small', 0, 0, 0, 10000, 5000, 2469.18, -1278.36, 30.364, 0, 0, 0, 0, -1, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (176, 4, 'House Ghetto LS Small', 0, 0, 0, 10000, 0, 2470.37, -1295.52, 30.232, 0, 0, 0, 0, -1, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (177, 4, 'House Ghetto LS Small', 0, 0, 0, 10000, 5, 2434.8, -1289.29, 25.347, 0, 0, 0, 0, -1, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (178, 4, 'Medium House Ghetto LS', 0, 0, 0, 12000, 0, 2433.94, -1303.35, 25.322, 0, 0, 0, 0, -1, 328.13, 1477.9, 1084.43, 0, 15, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (179, 4, 'Medium House Ghetto LS', 0, 0, 0, 12000, 0, 2433.93, -1320.68, 25.322, 0, 0, 0, 0, -1, 328.13, 1477.9, 1084.43, 0, 15, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (180, 4, 'Medium House Ghetto LS', 0, 0, 0, 12000, 0, 2439.59, -1338.72, 24.1, 0, 0, 0, 0, -1, 328.13, 1477.9, 1084.43, 0, 15, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (181, 4, 'Medium House Ghetto LS', 0, 0, 0, 12000, 0, 2439.59, -1357.14, 24.1, 0, 0, 0, 0, -1, 328.13, 1477.9, 1084.43, 0, 15, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (182, 4, 'Normal Size House In SF', 0, 0, 0, 85000, 0, -2789.59, -181.41, 10.062, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (183, 4, 'Medium House Ghetto LS', 0, 0, 0, 12000, 500, 2421.23, -1277.2, 24.756, 0, 0, 0, 0, -1, 328.13, 1477.9, 1084.43, 0, 15, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (184, 4, 'Medium House Ghetto LS', 0, 0, 0, 12000, 0, 2420.02, -1287.25, 25.347, 0, 0, 0, 0, -1, 328.13, 1477.9, 1084.43, 0, 15, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (185, 4, 'Medium House Ghetto LS', 0, 0, 0, 12000, 0, 2419.23, -1301.95, 25.572, 0, 0, 0, 0, -1, 328.13, 1477.9, 1084.43, 0, 15, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (186, 4, 'Medium House Ghetto LS', 0, 0, 0, 12000, 0, 2419.23, -1319.22, 25.572, 0, 0, 0, 0, -1, 328.13, 1477.9, 1084.43, 0, 15, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (187, 4, 'Medium House Ghetto LS', 0, 0, 0, 12000, 0, 2424.89, -1336.86, 24.322, 0, 0, 0, 0, -1, 328.13, 1477.9, 1084.43, 0, 15, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (188, 4, 'Medium House Ghetto LS', 0, 0, 0, 12000, 0, 2424.89, -1355.15, 24.322, 0, 0, 0, 0, -1, 328.13, 1477.9, 1084.43, 0, 15, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (189, 4, 'Apartment 2nd Floor In SF', 0, 0, 0, 80000, 0, -2786.77, -175.214, 10.062, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (190, 4, 'Ghetto Project Apartment LS Small', 0, 0, 0, 2000, 2000, 2487.35, -1398.81, 29.312, 0, 0, 0, 0, -1, 243.72, 304.97, 999.14, 0, 1, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (191, 4, 'Ghetto Project Apartment LS Small', 0, 0, 0, 2000, 0, 2487.3, -1410.34, 29.312, 0, 0, 0, 0, -1, 243.72, 304.97, 999.14, 0, 1, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (192, 4, 'Ghetto Project Apartment LS Small', 0, 0, 0, 2000, 500, 2492.25, -1398.81, 29.312, 0, 0, 0, 0, -1, 243.72, 304.97, 999.14, 0, 1, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (193, 4, 'Ghetto Project Apartment LS Small', 0, 0, 0, 2000, 500, 2495.38, -1398.81, 29.312, 0, 0, 0, 0, -1, 243.72, 304.97, 999.14, 0, 1, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (194, 4, 'Appartment 1st Floor In SF', 0, 0, 0, 80000, 0, -2790.4, -168.274, 7.201, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (195, 4, 'Ghetto Project Apartment LS Small', 0, 0, 0, 2000, 0, 2495.29, -1410.34, 29.312, 0, 0, 0, 0, -1, 243.72, 304.97, 999.14, 0, 1, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (196, 4, 'Ghetto Project Apartment LS Small', 0, 0, 0, 2000, 0, 2492.18, -1410.34, 29.312, 0, 0, 0, 0, -1, 243.72, 304.97, 999.14, 0, 1, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (197, 4, 'Ghetto Project Apartment LS Small', 0, 0, 0, 2000, 0, 2476.27, -1410.34, 29.312, 0, 0, 0, 0, -1, 243.72, 304.97, 999.14, 0, 1, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (198, 4, 'Ghetto Project Apartment LS Small', 0, 0, 0, 2000, 500, 2473.14, -1410.34, 29.312, 0, 0, 0, 0, -1, 243.72, 304.97, 999.14, 0, 1, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (199, 4, 'Ghetto Project Apartment LS Small', 0, 0, 0, 2000, 1000, 2468.25, -1410.34, 29.312, 0, 0, 0, 0, -1, 243.72, 304.97, 999.14, 0, 1, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (200, 4, 'Normal Size Pink House In SF', 0, 0, 0, 85000, 0, -2791.99, -160.475, 10.053, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (201, 4, 'Ghetto Project Apartment LS Small', 0, 0, 0, 2000, 0, 2476.4, -1398.81, 29.312, 0, 0, 0, 0, -1, 243.72, 304.97, 999.14, 0, 1, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (202, 4, 'Ghetto Project Apartment LS Small', 0, 0, 0, 2000, 500, 2476.25, -1391.71, 29.312, 0, 0, 0, 0, -1, 243.72, 304.97, 999.14, 0, 1, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (203, 4, 'Ghetto Project Apartment LS Small', 0, 0, 0, 2000, 200, 2473.12, -1391.71, 29.312, 0, 0, 0, 0, -1, 243.72, 304.97, 999.14, 0, 1, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (204, 4, 'Ghetto Project Apartment LS Small', 0, 0, 0, 2000, 0, 2468.3, -1391.71, 29.312, 0, 0, 0, 0, -1, 243.72, 304.97, 999.14, 0, 1, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (205, 4, 'Ghetto Project Apartment LS Small', 0, 0, 0, 2000, 200, 2468.3, -1383.37, 29.312, 0, 0, 0, 0, -1, 243.72, 304.97, 999.14, 0, 1, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (206, 4, 'Ghetto Project Apartment LS Small', 0, 0, 0, 2000, 0, 2473.17, -1383.37, 29.312, 0, 0, 0, 0, -1, 243.72, 304.97, 999.14, 0, 1, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (207, 4, 'Ghetto Project Apartment LS Small', 0, 0, 0, 2000, 1, 2476.42, -1383.37, 29.312, 0, 0, 0, 0, -1, 243.72, 304.97, 999.14, 0, 1, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (208, 4, 'Normal Size Very Light Green House In SF', 0, 0, 0, 55000, 3000, -2792.89, -153.151, 7.596, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (209, 4, 'Ghetto Project Apartment LS Small', 0, 0, 0, 2000, 200, 2487.38, -1383.38, 29.312, 0, 0, 0, 0, -1, 243.72, 304.97, 999.14, 0, 1, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (210, 4, 'Ghetto Project Apartment LS Small', 0, 0, 0, 2000, 0, 2492.22, -1383.37, 29.312, 0, 0, 0, 0, -1, 243.72, 304.97, 999.14, 0, 1, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (211, 4, 'Ghetto Project Apartment LS Small', 0, 0, 0, 2000, 5000, 2495.4, -1383.37, 29.312, 0, 0, 0, 0, -1, 243.72, 304.97, 999.14, 0, 1, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (212, 4, 'Ghetto Project Apartment LS Small', 0, 0, 0, 2000, 0, 2487.29, -1391.71, 29.312, 0, 0, 0, 0, -1, 243.72, 304.97, 999.14, 0, 1, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (213, 4, 'Ghetto Project Apartment LS Small', 0, 0, 0, 2000, 250, 2492.12, -1391.71, 29.312, 0, 0, 0, 0, -1, 243.72, 304.97, 999.14, 0, 1, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (214, 4, 'Normal Size Blue House In SF', 0, 0, 0, 85000, 0, -2791.86, -145.983, 7.859, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (215, 4, 'Ghetto Project Apartment LS Small', 0, 0, 0, 2000, 0, 2495.35, -1391.71, 29.312, 0, 0, 0, 0, -1, 243.72, 304.97, 999.14, 0, 1, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (216, 4, 'Ghetto Project Apartment LS Small', 0, 0, 0, 2000, 0, 2495.41, -1417.44, 29.312, 0, 0, 0, 0, -1, 243.72, 304.97, 999.14, 0, 1, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (217, 4, 'Normal Size House In SF', 0, 0, 0, 85000, 0, -2791.99, -134.462, 10.053, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (218, 4, 'Ghetto Project Apartment LS Small', 0, 0, 0, 2000, 0, 2495.3, -1424.58, 29.016, 0, 0, 0, 0, -1, 243.72, 304.97, 999.14, 0, 1, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (219, 4, 'Ghetto Project Apartment LS Small', 0, 0, 0, 2000, 500, 2492.09, -1424.58, 29.016, 0, 0, 0, 0, -1, 243.72, 304.97, 999.14, 0, 1, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (220, 4, 'Ghetto Project Apartment LS Small', 0, 0, 0, 2000, 0, 2492.27, -1417.44, 29.312, 0, 0, 0, 0, -1, 243.72, 304.97, 999.14, 0, 1, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (221, 4, 'Ghetto Project Apartment LS Small', 0, 0, 0, 2000, 200, 2487.35, -1424.58, 29.016, 0, 0, 0, 0, -1, 243.72, 304.97, 999.14, 0, 1, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (222, 4, 'Ghetto Project Apartment LS Small', 0, 0, 0, 2000, 200, 2487.34, -1417.44, 29.312, 0, 0, 0, 0, -1, 243.72, 304.97, 999.14, 0, 1, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (223, 4, 'Ghetto Project Apartment LS Small', 0, 0, 0, 2000, 50, 2476.25, -1424.58, 29.312, 0, 0, 0, 0, -1, 243.72, 304.97, 999.14, 0, 1, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (224, 4, 'Ghetto Project Apartment LS Small', 0, 0, 0, 2000, 0, 2476.39, -1417.44, 29.312, 0, 0, 0, 0, -1, 243.72, 304.97, 999.14, 0, 1, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (225, 4, 'Ghetto Project Apartment LS Small', 0, 0, 0, 2000, 0, 2473.12, -1417.44, 29.312, 0, 0, 0, 0, -1, 243.72, 304.97, 999.14, 0, 1, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (226, 4, 'Ghetto Project Apartment LS Small', 0, 0, 0, 2000, 0, 2473.09, -1424.57, 29.312, 0, 0, 0, 0, -1, 243.72, 304.97, 999.14, 0, 1, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (227, 4, 'Ghetto Project Apartment LS Small', 0, 0, 0, 2000, 5000, 2468.3, -1424.58, 29.312, 0, 0, 0, 0, -1, 243.72, 304.97, 999.14, 0, 1, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (228, 4, 'Ghetto Project Apartment LS Small', 0, 0, 0, 2000, 200, 2468.34, -1417.45, 29.312, 0, 0, 0, 0, -1, 243.72, 304.97, 999.14, 0, 1, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (229, 4, 'Ghetto Project Apartment LS Small', 0, 0, 0, 2000, 500, 2495.35, -1431.68, 29.016, 0, 0, 0, 0, -1, 243.72, 304.97, 999.14, 0, 1, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (230, 4, 'Ghetto Project Apartment LS Small', 0, 0, 0, 2000, 0, 2492.26, -1431.68, 29.016, 0, 0, 0, 0, -1, 243.72, 304.97, 999.14, 0, 1, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (231, 4, 'Ghetto Project Apartment LS Small', 0, 0, 0, 2000, 100, 2487.3, -1431.68, 29.016, 0, 0, 0, 0, -1, 243.72, 304.97, 999.14, 0, 1, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (232, 4, 'Ghetto Project Apartment LS Small', 0, 0, 0, 2000, 200, 2476.45, -1431.68, 29.312, 0, 0, 0, 0, -1, 243.72, 304.97, 999.14, 0, 1, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (233, 4, 'Normal Size Light Green House In SF', 0, 0, 0, 55000, 500, -2793.14, -126.986, 7.184, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (234, 4, 'Ghetto Project Apartment LS Small', 0, 0, 0, 2000, 999, 2473.24, -1431.68, 29.312, 0, 0, 0, 0, -1, 243.72, 304.97, 999.14, 0, 1, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (235, 4, 'Ghetto Project Apartment LS Small', 0, 0, 0, 2000, 5000, 2468.35, -1431.68, 29.312, 0, 0, 0, 0, -1, 243.72, 304.97, 999.14, 0, 1, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (236, 4, 'Ghetto Project Apartment LS Small', 0, 0, 0, 2000, 20, 2473.14, -1398.81, 29.312, 0, 0, 0, 0, -1, 243.72, 304.97, 999.14, 0, 1, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (237, 4, 'Ghetto Project Apartment LS Small', 0, 0, 0, 2000, 0, 2468.39, -1398.81, 29.312, 0, 0, 0, 0, -1, 243.72, 304.97, 999.14, 0, 1, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (238, 4, 'Ghetto Project Apartment LS Small', 0, 0, 0, 2000, 0, 2468.32, -1376.27, 29.312, 0, 0, 0, 0, -1, 243.72, 304.97, 999.14, 0, 1, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (239, 4, 'Ghetto Project Apartment LS Small', 0, 0, 0, 2000, 0, 2473.15, -1376.27, 29.312, 0, 0, 0, 0, -1, 243.72, 304.97, 999.14, 0, 1, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (240, 4, 'Ghetto Project Apartment LS Small', 0, 0, 0, 2000, 200, 2476.3, -1376.27, 29.312, 0, 0, 0, 0, -1, 243.72, 304.97, 999.14, 0, 1, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (241, 4, 'Appartment 2nd Floor In SF', 0, 0, 0, 80000, 0, -2786.77, -118.259, 10.062, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (242, 4, 'Ghetto Project Apartment LS Small', 0, 0, 0, 2000, 0, 2473.17, -1366.2, 29.312, 0, 0, 0, 0, -1, 243.72, 304.97, 999.14, 0, 1, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (243, 4, 'Ghetto Project Apartment LS Small', 0, 0, 0, 2000, 5000, 2468.38, -1366.2, 29.312, 0, 0, 0, 0, -1, 243.72, 304.97, 999.14, 0, 1, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (244, 4, 'Ghetto Project Apartment LS Small', 0, 0, 0, 2000, 0, 2476.37, -1366.2, 29.312, 0, 0, 0, 0, -1, 243.72, 304.97, 999.14, 0, 1, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (245, 4, 'Ghetto Project Apartment LS Small', 0, 0, 0, 2000, 0, 2487.39, -1366.2, 29.312, 0, 0, 0, 0, -1, 243.72, 304.97, 999.14, 0, 1, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (246, 4, 'Appartment 1st Floor In SF', 0, 0, 0, 80000, 0, -2790.34, -111.142, 7.201, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (247, 4, 'Ghetto Project Apartment LS Small', 0, 0, 0, 2000, 200, 2487.3, -1376.27, 29.312, 0, 0, 0, 0, -1, 243.72, 304.97, 999.14, 0, 1, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (248, 4, 'Ghetto Project Apartment LS Small', 0, 0, 0, 2000, 200, 2492.3, -1366.2, 29.312, 0, 0, 0, 0, -1, 243.72, 304.97, 999.14, 0, 1, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (249, 4, 'Ghetto Project Apartment LS Small', 0, 0, 0, 2000, 1, 2492.08, -1376.27, 29.312, 0, 0, 0, 0, -1, 243.72, 304.97, 999.14, 0, 1, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (250, 4, 'Ghetto Project Apartment LS Small', 0, 0, 0, 2000, 0, 2495.31, -1376.27, 29.312, 0, 0, 0, 0, -1, 243.72, 304.97, 999.14, 0, 1, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (251, 4, 'Ghetto Project Apartment LS Small', 0, 0, 0, 2000, 200, 2495.47, -1366.21, 29.312, 0, 0, 0, 0, -1, 243.72, 304.97, 999.14, 0, 1, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (252, 4, 'Normal Size Green/Brick House In SF', 0, 0, 0, 120000, 0, -2791.85, -107.452, 7.859, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (253, 4, 'Normal Size Pink House In SF', 0, 0, 0, 85000, 0, -2791.99, -94.976, 10.053, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (254, 4, 'Appartment 2nd Floor In SF', 0, 0, 0, 80000, 0, -2786.77, -89.706, 10.062, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (255, 4, 'Appartment 1st Floor In SF', 0, 0, 0, 80000, 0, -2790.42, -82.527, 7.195, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (256, 4, 'Ghetto Project Apartment LS Small', 0, 0, 0, 2000, 0, 2495.33, -1359.1, 29.312, 0, 0, 0, 0, -1, 243.72, 304.97, 999.14, 0, 1, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (257, 4, 'Ghetto Project Apartment LS Small', 0, 0, 0, 2000, 0, 2492.1, -1359.1, 29.312, 0, 0, 0, 0, -1, 243.72, 304.97, 999.14, 0, 1, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (258, 4, 'Ghetto Project Apartment LS Small', 0, 0, 0, 2000, 0, 2487.26, -1359.1, 29.312, 0, 0, 0, 0, -1, 243.72, 304.97, 999.14, 0, 1, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (259, 4, 'Ghetto Project Apartment LS Small', 0, 0, 0, 2000, 0, 2476.28, -1359.1, 29.312, 0, 0, 0, 0, -1, 243.72, 304.97, 999.14, 0, 1, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (260, 4, 'Ghetto Project Apartment LS Small', 0, 0, 0, 2000, 0, 2473.07, -1359.1, 29.312, 0, 0, 0, 0, -1, 243.72, 304.97, 999.14, 0, 1, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (261, 4, 'Ghetto Project Apartment LS Small', 0, 0, 0, 2000, 0, 2468.24, -1359.1, 29.312, 0, 0, 0, 0, -1, 243.72, 304.97, 999.14, 0, 1, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (262, 4, 'Normal Size House In SF', 0, 0, 0, 85000, 0, -2789.24, -52.58, 10.062, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (263, 4, 'Normal Size Pink House In SF', 0, 0, 0, 85000, 0, -2791.91, -41.819, 10.053, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (264, 4, 'House Ghetto LS Small', 0, 0, 0, 10000, 150, 2483.95, -1280.35, 30.468, 0, 0, 0, 0, -1, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (265, 4, 'House Ghetto LS Small', 0, 0, 0, 10000, 0, 2482.75, -1293.35, 30.232, 0, 0, 0, 0, -1, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (266, 4, 'Normal Size Blue House In SF', 0, 0, 0, 85000, 0, -2791.83, -35.903, 7.859, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (267, 4, 'House Ghetto LS Small', 0, 0, 0, 10000, 0, 2529.65, -1243.31, 43.971, 0, 0, 0, 0, -1, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (268, 4, 'House Ghetto LS Small', 0, 0, 0, 10000, 0, 2531.05, -1228.61, 43.721, 0, 0, 0, 0, -1, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (269, 4, 'Normal Size Blue House In SF', 0, 0, 0, 85000, 0, -2791.84, -24.284, 10.053, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (270, 4, 'House Ghetto LS Small', 0, 0, 0, 10000, 600, 2551.05, -1233.79, 49.331, 0, 0, 0, 0, -1, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (271, 4, 'Normal Size Green/Brick House In SF', 0, 0, 0, 120000, 0, -2791.59, -17.635, 7.859, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (272, 4, 'House Ghetto LS Small', 0, 0, 0, 10000, 0, 2514.62, -1240.45, 39.34, 0, 0, 0, 0, -1, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (273, 4, 'House Ghetto LS Small', 0, 0, 0, 10000, 0, 2516.52, -1225.75, 39.09, 0, 0, 0, 0, -1, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (274, 4, 'Appartment 2nd Floor In SF', 0, 0, 0, 80000, 0, -2786.76, 0.266, 10.062, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (275, 4, 'Appartment 1st Floor In SF', 0, 0, 0, 80000, 0, -2790.48, 7.368, 7.195, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (276, 4, 'Light Pink/Brick House In SF', 0, 0, 0, 120000, 0, -2793.14, 11.194, 7.431, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (277, 4, 'Medium House Ghetto LS', 0, 0, 0, 12000, 0, 2550.3, -1209.05, 54.54, 0, 0, 0, 0, -1, 328.13, 1477.9, 1084.43, 0, 15, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (278, 4, 'Green Normal Size House In SF', 0, 0, 0, 120000, 0, -2793.15, 21.315, 7.184, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (279, 4, 'Medium House Ghetto LS', 0, 0, 0, 12000, 0, 2550.19, -1197.53, 60.84, 0, 0, 0, 0, -1, 328.13, 1477.9, 1084.43, 0, 15, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (280, 4, 'Medium House Ghetto LS', 0, 0, 0, 12000, 5000, 2520.65, -1209.48, 50.291, 0, 0, 0, 0, -1, 328.13, 1477.9, 1084.43, 0, 15, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (281, 4, 'Medium House Ghetto LS', 0, 0, 0, 12000, 0, 2520.61, -1198, 56.597, 0, 0, 0, 0, -1, 328.13, 1477.9, 1084.43, 0, 15, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (282, 4, 'Appartment 2nd Floor In SF', 0, 0, 0, 80000, 0, -2787, 62.868, 10.062, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (283, 4, 'Appartment 1st Floor In SF', 0, 0, 0, 80000, 0, -2790.53, 69.661, 7.201, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (284, 4, 'Normal Size Pink House In SF', 0, 0, 0, 85000, 0, -2791.79, 77.584, 10.053, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (285, 4, 'House Ghetto LS Small', 0, 0, 0, 10000, 500, 2601.05, -1200.15, 59.5, 0, 0, 0, 0, -1, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (286, 4, 'House Ghetto LS Small', 0, 0, 0, 10000, 0, 2601.05, -1203.08, 58.727, 0, 0, 0, 0, -1, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (287, 4, 'House Ghetto LS Small', 0, 0, 0, 10000, 0, 2601.05, -1207.58, 57.791, 0, 0, 0, 0, -1, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (288, 4, 'Normal Size Very Light Green House In SF', 0, 0, 0, 55000, 0, -2792.85, 84.944, 7.622, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (289, 4, 'House Ghetto LS Small', 0, 0, 0, 10000, 500, 2594.5, -1207.54, 57.651, 0, 0, 0, 0, -1, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (290, 4, 'House Ghetto LS Small', 0, 0, 0, 10000, 500, 2594.5, -1203, 58.576, 0, 0, 0, 0, -1, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (291, 4, 'House Ghetto LS Small', 0, 0, 0, 10000, 500, 2594.5, -1200.09, 59.354, 0, 0, 0, 0, -1, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (292, 4, 'Normal Size Blue House In SF', 0, 0, 0, 85000, 5000, -2791.59, 92.177, 7.859, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (293, 4, 'House Ghetto LS Small', 0, 0, 0, 10000, 500, 2601.05, -1211.81, 56.659, 0, 0, 0, 0, -1, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (294, 4, 'House Ghetto LS Small', 0, 0, 0, 10000, 500, 2594.5, -1211.8, 56.513, 0, 0, 0, 0, -1, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (295, 4, 'House Ghetto LS Small', 0, 0, 0, 10000, 0, 2601.05, -1216.41, 55.269, 0, 0, 0, 0, -1, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (296, 4, 'House Ghetto LS Small', 0, 0, 0, 10000, 500, 2594.5, -1216.38, 55.111, 0, 0, 0, 0, -1, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (297, 4, 'Normal Size House In SF', 0, 0, 0, 85000, 0, -2791.82, 103.598, 10.053, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (298, 4, 'House Ghetto LS Small', 0, 0, 0, 10000, 120, 2601.05, -1220.59, 53.916, 0, 0, 0, 0, -1, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (299, 4, 'House Ghetto LS Small', 0, 0, 0, 10000, 449, 2594.5, -1220.49, 53.763, 0, 0, 0, 0, -1, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (300, 4, 'House Ghetto LS Small', 0, 0, 0, 10000, 500, 2601.05, -1224.74, 52.625, 0, 0, 0, 0, -1, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (301, 4, 'House Ghetto LS Small', 0, 0, 0, 10000, 500, 2594.5, -1224.71, 52.477, 0, 0, 0, 0, -1, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (302, 4, 'House Ghetto LS Small', 0, 0, 0, 10000, 500, 2601.05, -1229.29, 51.34, 0, 0, 0, 0, -1, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (303, 4, 'Normal Size Light Green House In SF', 0, 0, 0, 55000, 0, -2793.14, 110.986, 7.184, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (304, 4, 'House Ghetto LS Small', 0, 0, 0, 10000, 5000, 2594.5, -1229.26, 51.187, 0, 0, 0, 0, -1, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (305, 4, 'House Ghetto LS Small', 0, 0, 0, 10000, 0, 2601.05, -1233.56, 50.111, 0, 0, 0, 0, -1, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (306, 4, 'House Ghetto LS Small', 0, 0, 0, 10000, 5000, 2594.5, -1233.55, 49.962, 0, 0, 0, 0, -1, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (307, 4, 'House Ghetto LS Small', 0, 0, 0, 10000, 10, 2601.05, -1238.12, 48.715, 0, 0, 0, 0, -1, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (308, 4, 'House Ghetto LS Small', 0, 0, 0, 10000, 0, 2594.5, -1238.05, 48.562, 0, 0, 0, 0, -1, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (309, 4, 'Appartment 2nd Floor In SF', 0, 0, 0, 80000, 0, -2786.98, 119.901, 10.062, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (310, 4, 'House Ghetto LS Small', 0, 0, 0, 10000, 500, 2608.15, -1200.07, 60.991, 0, 0, 0, 0, -1, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (311, 4, 'House Ghetto LS Small', 0, 0, 0, 10000, 500, 2615.11, -1200.1, 60.777, 0, 0, 0, 0, -1, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (312, 4, 'Appartment 1st Floor In SF', 0, 0, 0, 80000, 0, -2790.59, 126.902, 7.201, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (313, 4, 'House Ghetto LS Small', 0, 0, 0, 10000, 500, 2608.15, -1203, 60.215, 0, 0, 0, 0, -1, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (314, 4, 'House Ghetto LS Small', 0, 0, 0, 10000, 500, 2615.11, -1203.1, 60, 0, 0, 0, 0, -1, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (315, 4, 'House Ghetto LS Small', 0, 0, 0, 10000, 90, 2608.15, -1207.57, 59.283, 0, 0, 0, 0, -1, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (316, 4, 'House Ghetto LS Small', 0, 0, 0, 10000, 500, 2615.11, -1207.64, 59.069, 0, 0, 0, 0, -1, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (317, 4, 'House Ghetto LS Small', 0, 0, 0, 10000, 500, 2608.15, -1211.73, 58.147, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (318, 4, 'House Ghetto LS Small', 0, 0, 0, 10000, 500, 2615.11, -1211.84, 57.937, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (319, 4, 'House Ghetto LS Small', 0, 0, 0, 10000, 1000, 2608.15, -1216.28, 56.761, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (320, 4, 'House Ghetto LS Small', 0, 0, 0, 10000, 100, 2615.11, -1216.3, 56.539, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (321, 4, 'House Ghetto LS Small', 0, 0, 0, 10000, 1000, 2608.15, -1220.51, 55.409, 0, 0, 0, 0, -1, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (322, 4, 'House Ghetto LS Small', 0, 0, 0, 10000, 500, 2615.11, -1220.58, 55.187, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (323, 4, 'House Ghetto LS Small', 0, 0, 0, 10000, 500, 2608.15, -1224.64, 54.117, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (324, 4, 'Normal Size Green/Brick House In SF', 0, 0, 0, 120000, 0, -2791.68, 130.617, 7.859, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (325, 4, 'House Ghetto LS Small', 0, 0, 0, 10000, 500, 2615.11, -1224.75, 53.896, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (326, 4, 'House Ghetto LS Small', 0, 0, 0, 10000, 500, 2608.15, -1229.19, 52.832, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (327, 4, 'House Ghetto LS Small', 0, 0, 0, 10000, 500, 2615.11, -1229.28, 52.609, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (328, 4, 'House Ghetto LS Small', 0, 0, 0, 10000, 5000, 2608.15, -1233.42, 51.602, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (329, 4, 'House Ghetto LS Small', 0, 0, 0, 10000, 500, 2615.11, -1233.57, 51.381, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (330, 4, 'House', 0, 0, 0, 10000, 0, 2608.15, -1238.01, 50.205, 0, 0, 0, 0, -1, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (331, 4, 'House Ghetto LS Small', 0, 0, 0, 10000, 0, 2615.11, -1238.09, 49.984, 0, 0, 0, 0, -1, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (332, 4, 'Normal Size Pink House In SF', 0, 0, 0, 85000, 0, -2791.81, 143.255, 10.053, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (333, 4, 'House Ghetto LS Small', 0, 0, 0, 10000, 0, 2587.4, -1238.14, 48.562, 0, 0, 0, 0, -1, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (334, 4, 'House Ghetto LS Small', 0, 0, 0, 10000, 0, 2587.4, -1233.59, 49.962, 0, 0, 0, 0, -1, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (335, 4, 'House Ghetto LS Small', 0, 0, 0, 10000, 500, 2587.4, -1229.28, 51.187, 0, 0, 0, 0, -1, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (336, 4, 'House Ghetto LS Small', 0, 0, 0, 10000, 0, 2587.4, -1224.72, 52.477, 0, 0, 0, 0, -1, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (337, 4, 'House Ghetto LS Small', 0, 0, 0, 10000, 500, 2587.39, -1220.59, 53.763, 0, 0, 0, 0, -1, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (338, 4, 'House Ghetto LS Small', 0, 0, 0, 10000, 500, 2587.4, -1216.4, 55.111, 0, 0, 0, 0, -1, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (339, 4, 'House Ghetto LS Small', 0, 0, 0, 10000, 1, 2587.4, -1211.86, 56.513, 0, 0, 0, 0, -1, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (340, 4, 'House Ghetto LS Small', 0, 0, 0, 10000, 400, 2587.4, -1207.67, 57.651, 0, 0, 0, 0, -1, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (341, 4, 'House Ghetto LS Small', 0, 0, 0, 10000, 500, 2587.4, -1203.17, 58.576, 0, 0, 0, 0, -1, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (342, 4, 'House Ghetto LS Small', 0, 0, 0, 10000, 500, 2587.4, -1200.11, 59.354, 0, 0, 0, 0, -1, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (343, 4, 'Normal Size House In SF', 0, 0, 0, 85000, 0, -2789.34, 183.695, 10.062, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (344, 4, 'House Ghetto LS Small', 0, 0, 0, 10000, 0, 2622.21, -1237.97, 51.268, 0, 0, 0, 0, -1, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (345, 4, 'House Ghetto LS Small', 0, 0, 0, 10000, 0, 2622.21, -1233.49, 52.665, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (346, 4, 'House Ghetto LS Small', 0, 0, 0, 10000, 1, 2622.21, -1229.17, 53.894, 0, 0, 0, 0, -1, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (347, 4, 'House Ghetto LS Small', 0, 0, 0, 10000, 0, 2622.21, -1224.62, 55.18, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (348, 4, 'House Ghetto LS Small', 0, 0, 0, 10000, 0, 2622.21, -1220.51, 56.472, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (349, 4, 'House Ghetto LS Small', 0, 0, 0, 10000, 0, 2622.22, -1216.29, 57.823, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (350, 4, 'House Ghetto LS Small', 0, 0, 0, 10000, 0, 2622.21, -1211.76, 59.209, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (351, 4, 'Normal Size Pink House In SF', 0, 0, 0, 85000, 0, -2791.81, 194.57, 10.053, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (352, 4, 'House Ghetto LS Small', 0, 0, 0, 10000, 0, 2622.22, -1207.58, 60.346, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (353, 4, 'House Ghetto LS Small', 0, 0, 0, 10000, 0, 2622.22, -1203.05, 61.278, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (354, 4, 'House Ghetto LS Small', 0, 0, 0, 10000, 0, 2622.22, -1199.95, 62.054, 0, 0, 0, 0, -1, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (355, 4, 'Normal Size Blue House In SF', 0, 0, 0, 85000, 0, -2791.65, 200.578, 7.859, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (356, 4, 'Normal Size Blue House In SF', 0, 0, 0, 85000, 0, -2791.81, 212, 10.053, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (357, 4, 'Normal Size Green/Brick House In SF', 0, 0, 0, 120000, 0, -2791.6, 218.567, 7.859, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (358, 4, 'House Ghetto LS Small', 0, 0, 0, 10000, 0, 2663.18, -1238.14, 55.673, 0, 0, 0, 0, -1, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (359, 4, 'House Ghetto LS Small', 0, 0, 0, 10000, 0, 2663.18, -1233.56, 57.069, 0, 0, 0, 0, -1, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (360, 4, 'House Ghetto LS Small', 0, 0, 0, 10000, 10, 2663.18, -1229.27, 58.298, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (361, 4, 'House Ghetto LS Small', 0, 0, 0, 10000, 0, 2663.18, -1224.83, 59.584, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (362, 4, 'House Ghetto LS Small', 0, 0, 0, 10000, 0, 2663.18, -1220.59, 60.874, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (363, 4, 'House Ghetto LS Small', 0, 0, 0, 10000, 0, 2663.18, -1216.33, 62.222, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (364, 4, 'House Ghetto LS Small', 0, 0, 0, 10000, 0, 2663.18, -1211.8, 63.623, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (365, 4, 'House Ghetto LS Small', 0, 0, 0, 10000, 0, 2663.18, -1207.64, 64.76, 0, 0, 0, 0, -1, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (366, 4, 'House Ghetto LS Small', 0, 0, 0, 10000, 0, 2663.18, -1203.19, 65.682, 0, 0, 0, 0, -1, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (367, 4, 'House Ghetto LS Small', 0, 0, 0, 10000, 1000, 2663.18, -1200.14, 66.467, 0, 0, 0, 0, -1, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (368, 4, 'House Ghetto LS Small', 0, 0, 0, 10000, 0, 2670.28, -1200.04, 66.496, 0, 0, 0, 0, -1, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (369, 4, 'House Ghetto LS Small', 0, 0, 0, 10000, 0, 2670.28, -1203.03, 65.727, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (370, 4, 'House Ghetto LS Small', 0, 0, 0, 10000, 0, 2670.28, -1207.56, 64.804, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (371, 4, 'House Ghetto LS Small', 0, 0, 0, 10000, 0, 2670.28, -1211.74, 63.666, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (372, 4, 'House Ghetto LS Small', 0, 0, 0, 10000, 0, 2670.28, -1216.36, 62.262, 0, 0, 0, 0, -1, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (373, 4, 'House Ghetto LS Small', 0, 0, 0, 10000, 100, 2670.28, -1220.46, 60.923, 0, 0, 0, 0, -1, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (374, 4, 'House Ghetto LS Small', 0, 0, 0, 10000, 0, 2670.28, -1224.74, 59.629, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (375, 4, 'House Ghetto LS Small', 0, 0, 0, 10000, 0, 2670.28, -1229.17, 58.36, 0, 0, 0, 0, -1, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (376, 4, 'House Ghetto LS Small', 0, 0, 0, 10000, 0, 2670.28, -1233.48, 57.123, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (377, 4, 'House Ghetto LS Small', 0, 0, 0, 10000, 0, 2670.28, -1238.05, 55.728, 0, 0, 0, 0, -1, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (378, 4, 'House Ghetto LS Small', 0, 0, 0, 10000, 5000, 2683.44, -1238.05, 56.019, 0, 0, 0, 0, -1, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (379, 4, 'House Ghetto LS Small', 0, 0, 0, 10000, 0, 2683.44, -1233.54, 57.416, 0, 0, 0, 0, -1, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (380, 4, 'House Ghetto LS Small', 0, 0, 0, 10000, 0, 2683.44, -1229.32, 58.645, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (381, 4, 'House Ghetto LS Small', 0, 0, 0, 10000, 0, 2683.44, -1224.74, 59.93, 0, 0, 0, 0, -1, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (382, 4, 'House Ghetto LS Small', 0, 0, 0, 10000, 0, 2683.44, -1220.6, 61.222, 0, 0, 0, 0, -1, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (383, 4, 'House Ghetto LS Small', 0, 0, 0, 10000, 0, 2683.44, -1216.35, 62.574, 0, 0, 0, 0, -1, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (384, 4, 'House Ghetto LS Small', 0, 0, 0, 10000, 0, 2683.44, -1211.88, 63.963, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (385, 4, 'House Ghetto LS Small', 0, 0, 0, 10000, 0, 2683.44, -1207.64, 65.097, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (386, 4, 'House Ghetto LS Small', 0, 0, 0, 10000, 500, 2683.44, -1203.14, 66.029, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (387, 4, 'House Ghetto LS Small', 0, 0, 0, 10000, 0, 2683.44, -1200.19, 66.805, 0, 0, 0, 0, -1, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (388, 4, 'House Ghetto LS Small', 0, 0, 0, 10000, 0, 2690.54, -1200.05, 68.293, 0, 0, 0, 0, -1, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (389, 4, 'House Ghetto LS Small', 0, 0, 0, 10000, 0, 2700.21, -1200.19, 68.97, 0, 0, 0, 0, -1, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (390, 4, 'House Ghetto LS Small', 0, 0, 0, 10000, 0, 2690.54, -1202.95, 67.522, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (391, 4, 'House Ghetto LS Small', 0, 0, 0, 10000, 0, 2700.21, -1203.11, 68.194, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (392, 4, 'House Ghetto LS Small', 0, 0, 0, 10000, 0, 2690.54, -1207.56, 66.585, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (393, 4, 'House Ghetto LS Small', 0, 0, 0, 10000, 0, 2700.2, -1207.66, 67.261, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (394, 4, 'House Ghetto LS Small', 0, 0, 0, 10000, 0, 2700.2, -1211.84, 66.125, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (395, 4, 'House Ghetto LS Small', 0, 0, 0, 10000, 5000, 2690.54, -1211.79, 65.454, 0, 0, 0, 0, -1, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (396, 4, 'House Ghetto LS Small', 0, 0, 0, 10000, 0, 2700.2, -1216.36, 64.736, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (397, 4, 'House Ghetto LS Small', 0, 0, 0, 10000, 0, 2690.54, -1216.25, 64.065, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (398, 4, 'House Ghetto LS Small', 0, 0, 0, 10000, 0, 2700.21, -1220.59, 63.388, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (399, 4, 'Appartment 1st Floor In SF', 0, 0, 0, 80000, 0, -2724.67, -191.322, 4.335, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (400, 4, 'House Ghetto LS Small', 0, 0, 0, 10000, 0, 2690.54, -1220.48, 62.715, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (401, 4, 'House Ghetto LS Small', 0, 0, 0, 10000, 0, 2700.2, -1224.74, 62.095, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (402, 4, 'House Ghetto LS Small', 0, 0, 0, 10000, 0, 2690.55, -1224.79, 61.423, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (403, 4, 'House Ghetto LS Small', 0, 0, 0, 10000, 500, 2700.21, -1229.31, 60.81, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (404, 4, 'House Ghetto LS Small', 0, 0, 0, 10000, 0, 2690.54, -1229.15, 60.136, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (405, 4, 'Appartment In SF 2nd Floor', 0, 0, 0, 80000, 0, -2728.16, -184.179, 7.203, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (406, 4, 'House Ghetto LS Small', 0, 0, 0, 10000, 5000, 2700.21, -1233.57, 59.581, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (407, 4, 'House Ghetto LS Small', 0, 0, 0, 10000, 0, 2690.54, -1233.41, 58.907, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (408, 4, 'House Ghetto LS Small', 0, 0, 0, 10000, 0, 2700.2, -1238.05, 58.18, 0, 0, 0, 0, -1, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (409, 4, 'House Ghetto LS Small', 0, 0, 0, 10000, 1, 2690.54, -1238.06, 57.506, 0, 0, 0, 0, -1, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (410, 4, 'Normal Size Pink House In SF', 0, 0, 0, 85000, 0, -2723.15, -179.074, 7.203, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (411, 4, 'House Ghetto LS Small', 0, 0, 0, 10000, 1, 2707.3, -1237.91, 59.673, 0, 0, 0, 0, -1, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (412, 4, 'House Ghetto LS Small', 0, 0, 0, 10000, 500, 2707.31, -1233.54, 61.069, 0, 0, 0, 0, -1, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (413, 4, 'House Ghetto LS Small', 0, 0, 0, 10000, 0, 2707.3, -1229.25, 62.298, 0, 0, 0, 0, -1, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (414, 4, 'House Ghetto LS Small', 0, 0, 0, 10000, 0, 2707.31, -1224.67, 63.583, 0, 0, 0, 0, -1, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (415, 4, 'House Ghetto LS Small', 0, 0, 0, 10000, 500, 2707.3, -1220.59, 64.877, 0, 0, 0, 0, -1, 222.93, 1287.08, 1082.14, 0, 1, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (416, 4, 'House Ghetto LS Small', 0, 0, 0, 10000, 5000, 2707.3, -1216.32, 66.225, 0, 0, 0, 0, -1, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (417, 4, 'House Ghetto LS Small', 0, 0, 0, 10000, 1000, 2707.3, -1211.75, 67.614, 0, 0, 0, 0, -1, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (418, 4, 'Normal Size Green/Brick House In SF', 0, 0, 0, 120000, 0, -2723.32, -166.457, 5, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (419, 4, 'House Ghetto LS Small', 0, 0, 0, 10000, 0, 2707.31, -1207.58, 68.75, 0, 0, 0, 0, -1, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (420, 4, 'House Ghetto LS Small', 0, 0, 0, 10000, 0, 2707.31, -1203.04, 69.681, 0, 0, 0, 0, -1, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (421, 4, 'House Ghetto LS Small', 0, 0, 0, 10000, 0, 2707.31, -1200.06, 70.458, 0, 0, 0, 0, -1, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (422, 4, 'Appartment 1st Floor In SF', 0, 0, 0, 80000, 0, -2724.67, -162.744, 4.342, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (423, 4, 'Appartment 2nd Floor In SF', 0, 0, 0, 80000, 0, -2728.16, -155.699, 7.203, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (424, 4, 'Normal Size Green House In SF', 0, 0, 0, 85000, 0, -2721.77, -146.755, 4.335, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (425, 4, 'Normal Size House In SF', 0, 0, 0, 85000, 0, -2723.03, -139.395, 7.203, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (426, 4, 'Normal Size Blue House In SF', 0, 0, 0, 85000, 0, -2723.33, -127.869, 5, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (427, 4, 'Apartment LS Medium', 0, 0, 0, 25000, 0, 2781.94, -1358.42, 26.37, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (428, 4, 'Normal Size Very Light Green House In SF', 0, 0, 0, 55000, 0, -2722.05, -120.75, 4.76, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (429, 4, 'Apartment LS Medium', 0, 0, 0, 25000, 0, 2781.94, -1333.42, 32.395, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (430, 4, 'Apartment LS Medium', 0, 0, 0, 25000, 0, 2782.15, -1306.33, 38.886, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (431, 4, 'Apartment LS Medium', 0, 0, 0, 25000, 0, 2782.15, -1281.21, 44.368, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (432, 4, 'Apartment LS Medium', 0, 0, 0, 25000, 0, 2809.53, -1324.86, 33.868, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (433, 4, 'Apartment LS Medium', 0, 0, 0, 25000, 0, 2809.53, -1302.93, 38.928, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (434, 4, 'Apartment LS Medium', 0, 0, 0, 25000, 1, 2809.53, -1281.04, 43.9, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (435, 4, 'Normal Size Pink House In SF', 0, 0, 0, 85000, 0, -2723.02, -113.389, 7.203, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (436, 4, 'Apartment LS Medium', 0, 0, 0, 25000, 0, 2807.98, -1353.99, 27.218, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (437, 4, 'Apartment LS Medium', 0, 0, 0, 25000, 0, 2807.98, -1369.6, 23.582, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (438, 4, 'Appartment 1st Floor In SF', 0, 0, 0, 80000, 0, -2724.65, -105.619, 4.342, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (439, 4, 'Appartment 2nd Floor In SF', 0, 0, 0, 80000, 0, -2728.17, -98.413, 7.203, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (440, 4, 'Ls House Near Beach Medium', 0, 0, 0, 30000, 0, 2846.99, -1309.7, 14.704, 0, 0, 0, 0, -1, 261.058, 1284.29, 1080.25, 0, 4, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (441, 4, 'Normal Size House In SF', 0, 0, 0, 85000, 0, -2725.75, -92.375, 7.203, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (442, 4, 'Appartment 1st Floor In SF', 0, 0, 0, 80000, 0, -2724.7, -58.02, 4.342, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (443, 4, 'Appartment 2nd Floor In SF', 0, 0, 0, 80000, 0, -2728.19, -51.062, 7.203, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (444, 4, 'Apartment Near the beach LS big', 0, 0, 0, 25000, 0, 2851.85, -1365.97, 14.17, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (445, 4, 'Normal Size Very Light Green House In SF', 0, 0, 0, 55000, 0, -2722.11, -44.712, 4.769, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (446, 4, 'Normal Size House In SF', 0, 0, 0, 85000, 0, -2725.64, -36.597, 7.195, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (447, 4, 'Normal Size Pink/Brick House In SF', 0, 0, 0, 55000, 0, -2721.8, -23.27, 4.57, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (448, 4, 'LS Apartment Near Beach Medium', 0, 0, 0, 40000, 0, 2808.05, -1190.89, 25.34, 0, 0, 0, 0, -1, 225.755, 1240, 1082.15, 0, 2, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (449, 4, 'LS Apartment Near Beach Medium', 0, 0, 0, 40000, 0, 2808.01, -1175.92, 25.381, 0, 0, 0, 0, -1, 225.755, 1240, 1082.15, 0, 2, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (450, 4, 'Normal Size Pink House In SF', 0, 0, 0, 85000, 0, -2723.17, -17.311, 7.203, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (451, 4, 'Normal Size House In SF', 0, 0, 0, 85000, 0, -2723.05, 4.473, 7.203, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (452, 4, 'Normal Size Very Light Green House In SF', 0, 0, 0, 55000, 0, -2722.1, 14.479, 4.768, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (453, 4, 'LS Apartment Near Beach Medium', 0, 0, 0, 40000, 0, 2842.19, -1334.78, 14.741, 0, 0, 0, 0, -1, 225.755, 1240, 1082.15, 0, 2, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (454, 4, 'Normal Size Pink House In SF', 0, 0, 0, 85000, 0, -2723.12, 21.927, 7.203, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (455, 4, 'Normal Size House In SF', 0, 0, 0, 85000, 0, -2686.82, -188.194, 7.203, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (456, 4, 'Appartment 2nd Floor In SF', 0, 0, 0, 80000, 0, -2684.41, -182.154, 7.203, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (457, 4, 'Appartment 1st Floor In SF', 0, 0, 0, 80000, 0, -2687.89, -175.078, 4.342, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (458, 4, 'Normal Size Pink House In SF', 0, 0, 0, 85000, 0, -2689.4, -167.302, 7.203, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (459, 4, 'Normal Size Light Green House In SF', 0, 0, 0, 55000, 0, -2690.5, -159.764, 4.764, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (460, 4, 'Apartment Near the beach LS big', 0, 0, 0, 25000, 0, 2755.71, -1400.45, 39.375, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (461, 4, 'Normal Size Blue House In SF', 0, 0, 0, 85000, 0, -2689.24, -152.916, 5, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (462, 4, 'Normal Size House In SF', 0, 0, 0, 85000, 0, -2689.38, -141.274, 7.203, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (463, 4, 'Apartment Near the beach LS big', 0, 0, 0, 25000, 0, 2756.29, -1302.54, 53.09, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (464, 4, 'Apartment Near the beach LS big', 0, 0, 0, 25000, 0, 2755.85, -1276.47, 56.59, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (465, 4, 'Normal Size Green House In SF', 0, 0, 0, 85000, 0, -2690.79, -134.054, 4.335, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (466, 4, 'Appartment 2nd Floor In SF', 0, 0, 0, 80000, 0, -2684.42, -125.068, 7.203, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (467, 4, 'Appartment 1st Floor In SF', 0, 0, 0, 80000, 0, -2687.9, -118.16, 4.342, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (468, 4, 'LS Apartment Near Beach Medium', 0, 0, 0, 40000, 1000, 2776.06, -1245.37, 49.576, 0, 0, 0, 0, -1, 225.755, 1240, 1082.15, 0, 2, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (469, 4, 'LS Apartment Near Beach Medium', 0, 0, 0, 40000, 500, 2797.81, -1245.37, 47.381, 0, 0, 0, 0, -1, 225.755, 1240, 1082.15, 0, 2, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (470, 4, 'Normal Size Green/Brick House In SF', 0, 0, 0, 120000, 0, -2689.25, -114.135, 5, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (471, 4, 'Normal Size Pink House In SF', 0, 0, 0, 85000, 0, -2689.35, -101.62, 7.203, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (472, 4, 'Appartment 2nd Floor In SF', 0, 0, 0, 80000, 0, -2684.55, -96.443, 7.203, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (473, 4, 'Appartment 1st Floor In SF', 0, 0, 0, 80000, 0, -2688.06, -89.444, 4.335, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (474, 4, 'LS Apartment Near Beach Medium', 0, 0, 0, 40000, 0, 2750.39, -1238.8, 61.52, 0, 0, 0, 0, -1, 225.755, 1240, 1082.15, 0, 2, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (475, 4, 'LS Apartment Near Beach Medium', 0, 0, 0, 40000, 0, 2750.39, -1222.23, 64.597, 0, 0, 0, 0, -1, 225.755, 1240, 1082.15, 0, 2, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (476, 4, 'LS Apartment Near Beach Medium', 0, 0, 0, 40000, 0, 2750.39, -1205.76, 67.484, 0, 0, 0, 0, -1, 225.755, 1240, 1082.15, 0, 2, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (477, 4, 'Apartment Near the beach LS big', 0, 0, 0, 25000, 0, 2756.27, -1182.81, 69.402, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (478, 4, 'Normal Size Pink House In SF', 0, 0, 0, 85000, 0, -2689.38, 57.087, 7.203, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (479, 4, 'Normal Size Light Green House In SF', 0, 0, 0, 55000, 1, -2690.49, 64.591, 4.762, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (480, 4, 'Normal Size House In SF', 0, 0, 0, 85000, 0, -2689.49, 74.558, 7.203, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (481, 4, 'Ghetto Project Apartment LS Small', 0, 0, 0, 2000, 0, 2628.09, -1067.86, 69.708, 0, 0, 0, 0, -1, 243.72, 304.97, 999.14, 0, 1, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (482, 4, 'Ghetto Project Apartment LS Small', 0, 0, 0, 2000, 0, 2627.64, -1085.13, 69.708, 0, 0, 0, 0, -1, 243.72, 304.97, 999.14, 0, 1, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (483, 4, 'Normal Size Pink House In SF', 0, 0, 0, 85000, 0, -2689.33, 96.305, 7.203, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (484, 4, 'Ghetto Project Apartment LS Small', 0, 0, 0, 2000, 0, 2625.93, -1098.64, 69.361, 0, 0, 0, 0, -1, 243.72, 304.97, 999.14, 0, 1, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (485, 4, 'Ghetto Project Apartment LS Small', 0, 0, 0, 2000, 0, 2625.94, -1112.61, 67.995, 0, 0, 0, 0, -1, 243.72, 304.97, 999.14, 0, 1, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (486, 4, 'Normal Size Pink/Brick House In SF', 0, 0, 0, 55000, 1500, -2690.78, 102.291, 4.566, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (487, 4, 'Ghetto Project Apartment LS Small', 0, 0, 0, 2000, 0, 2611.24, -1111.19, 68.245, 0, 0, 0, 0, -1, 243.72, 304.97, 999.14, 0, 1, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (488, 4, 'Ghetto Project Apartment LS Small', 0, 0, 0, 2000, 0, 2611.23, -1097.24, 69.6, 0, 0, 0, 0, -1, 243.72, 304.97, 999.14, 0, 1, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (489, 4, 'Ghetto Project Apartment LS Small', 0, 0, 0, 2000, 0, 2612.94, -1083.18, 69.958, 0, 0, 0, 0, -1, 243.72, 304.97, 999.14, 0, 1, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (490, 4, 'Normal Size House In SF', 0, 0, 0, 85000, 0, -2687.1, 115.56, 7.195, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (491, 4, 'Ghetto Project Apartment LS Small', 0, 0, 0, 2000, 0, 2613.39, -1065.9, 69.958, 0, 0, 0, 0, -1, 243.72, 304.97, 999.14, 0, 1, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (492, 4, 'Ghetto Project Apartment LS Small', 0, 0, 0, 2000, 0, 2618.94, -1118.48, 67.995, 0, 0, 0, 0, -1, 243.72, 304.97, 999.14, 0, 1, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (493, 4, 'Normal Size Very Light Green House In SF', 0, 0, 0, 55000, 0, -2690.51, 123.597, 4.751, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (494, 4, 'Appartment 2nd Floor In SF', 0, 0, 0, 80000, 0, -2684.4, 129.992, 7.203, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (495, 4, 'Appartment 1st Floor In SF', 0, 0, 0, 80000, 0, -2687.88, 137.029, 4.342, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (496, 4, 'House Ghetto LS Small', 0, 0, 0, 10000, 0, 2572.3, -1091.85, 67.222, 0, 0, 0, 0, -1, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (497, 4, 'House Ghetto LS Small', 0, 0, 0, 10000, 0, 2519.02, -1112.99, 56.59, 0, 0, 0, 0, -1, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (498, 4, 'House Ghetto LS Small', 0, 0, 0, 10000, 0, 2576.68, -1070.67, 69.832, 0, 0, 0, 0, -1, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (499, 4, 'House Ghetto LS Small', 0, 0, 0, 10000, 0, 2579.61, -1033.2, 69.579, 0, 0, 0, 0, -1, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (500, 4, 'House Ghetto LS Small', 0, 0, 0, 10000, 0, 2562.11, -1034.28, 69.869, 0, 0, 0, 0, -1, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (501, 4, 'Normal Size House In SF', 0, 0, 0, 85000, 5000, -2692.95, 189.447, 7.203, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (502, 4, 'House Ghetto LS Small', 0, 0, 0, 10000, 0, 2549.2, -1032.15, 69.578, 0, 0, 0, 0, -1, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (503, 4, '3 Story Condo In SF', 0, 0, 0, 120000, 0, -2358.3, 820.033, 38.535, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (504, 4, '3 Story Condo In SF', 0, 0, 0, 120000, 0, -2340.18, 819.85, 41.972, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (505, 4, '3 Story Condo In SF', 0, 0, 0, 120000, 0, -2321.9, 820, 45.34, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (506, 4, '3 Story Condo In SF', 0, 0, 0, 120000, 0, -2303.4, 819.973, 48.696, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (507, 4, '3 Story Condo In SF', 0, 0, 0, 120000, 0, -2282.42, 873.144, 66.917, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (508, 4, '3 Story Condo In SF', 0, 0, 0, 120000, 0, -2285.08, 849.128, 65.641, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (509, 4, '3 Story Condo In SF', 0, 0, 0, 120000, 0, -2285.3, 828.923, 57.17, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (510, 4, '3 Story Condo In SF', 0, 0, 0, 120000, 0, -2294.99, 969.981, 65.335, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (511, 4, '3 Story Condo In SF', 0, 0, 0, 120000, 0, -2307.55, 944.257, 61.608, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (512, 4, '3 Story Condo In SF', 0, 0, 0, 120000, 0, -2325.89, 944.261, 55.32, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (513, 4, '5 Story Condo In SF', 0, 0, 0, 500000, 0, -2238.8, 943.844, 66.652, 0, 0, 0, 0, -1, 226.3, 1114.37, 1080.99, 0, 5, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (514, 4, '5 Story Condo In SF', 0, 0, 0, 500000, 0, -2238.89, 962.11, 66.652, 0, 0, 0, 0, -1, 226.3, 1114.37, 1080.99, 0, 5, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (515, 4, '5 Story Condo In SF', 0, 0, 0, 500000, 0, -2238.82, 980.749, 71.515, 0, 0, 0, 0, -1, 226.3, 1114.37, 1080.99, 0, 5, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (516, 4, '4 Story Condo In SF', 0, 0, 0, 400000, 0, -2238.79, 998.812, 78.985, 0, 0, 0, 0, -1, 234.22, 1063.89, 358.5, 0, 6, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (517, 4, '5 Story Condo In SF', 0, 0, 0, 500000, 0, -2229.28, 934.381, 66.648, 0, 0, 0, 0, -1, 226.3, 1114.37, 1080.99, 0, 5, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (518, 4, '5 Story Condo In SF', 0, 0, 0, 500000, 0, -2210.94, 934.376, 68.97, 0, 0, 0, 0, -1, 226.3, 1114.37, 1080.99, 0, 5, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (519, 4, '4 Story Condo In SF', 0, 0, 0, 400000, 0, -2192.54, 934.385, 75.019, 0, 0, 0, 0, -1, 234.22, 1063.89, 358.5, 0, 6, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (520, 4, '3 Story Condo In SF', 0, 0, 0, 120000, 0, -2174.13, 934.362, 80, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (521, 4, '3 Story Condo In SF', 0, 0, 0, 120000, 0, -2160.15, 947.014, 80, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (522, 4, '3 Story Condo In SF', 0, 0, 0, 120000, 0, -2160.14, 965.316, 80, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (523, 4, '3 Story Condo In SF', 0, 0, 0, 120000, 0, -2160.15, 983.754, 80, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (524, 4, '3 Story Condo In SF', 0, 0, 0, 120000, 0, -2160.11, 1002.05, 80, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (525, 4, 'House Ghetto LS Small', 0, 0, 0, 10000, 0, 2440.48, -1057.34, 54.736, 0, 0, 0, 0, -1, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (526, 4, '5 Story Condo In SF', 0, 0, 0, 500000, 0, -2233.82, 888.805, 66.652, 0, 0, 0, 0, -1, 226.3, 1114.37, 1080.99, 0, 5, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (527, 4, '3 Story Condo In SF', 0, 0, 0, 120000, 0, -2233.83, 870.579, 66.64, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (528, 4, '3 Story Condo In SF', 0, 0, 0, 120000, 0, -2233.27, 848.861, 61.89, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (529, 4, '3 Story Condo In SF', 0, 0, 0, 120000, 0, -2233.27, 830.702, 54.304, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (530, 4, '4 Story Condo In SF', 0, 0, 0, 400000, 0, -2223.85, 821.132, 49.438, 0, 0, 0, 0, -1, 234.22, 1063.89, 358.5, 0, 6, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (531, 4, '3 Story Condo In SF', 0, 0, 0, 120000, 0, -2205.37, 821.131, 50.486, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (532, 4, '3 Story Condo In SF', 0, 0, 0, 120000, 0, -2187.07, 821.128, 57.552, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (533, 4, '3 Story Condo In SF', 0, 0, 0, 120000, 0, -2168.71, 821.129, 64.973, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (534, 4, 'Huge house at Vinewood LS', 0, 0, 0, 450000, 1000, 646.057, -1117.35, 44.207, 0, 0, 0, 0, -1, 491.058, 1400.39, 1080.26, 0, 2, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (535, 4, '3 Story Condo In SF', 0, 0, 0, 120000, 0, -2159.21, 830.735, 69.523, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (536, 4, 'Huge house at Vinewood LS', 0, 0, 0, 450000, 550, 398.165, -1271.36, 50.019, 0, 0, 0, 0, -1, 491.058, 1400.39, 1080.26, 0, 2, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (537, 4, '3 Story Condo In SF', 0, 0, 0, 120000, 0, -2159.22, 866.532, 75.353, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (538, 4, '3 Story Condo In SF', 0, 0, 0, 120000, 0, -2158.67, 889.113, 80.007, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (539, 4, '3 Story Condo In SF', 0, 0, 0, 120000, 0, -2174.37, 902.73, 80.007, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (540, 4, 'Mansion', 0, 0, 0, 450000, 0, 298.842, -1338.5, 53.441, 0, 0, 0, 0, -1, 491.058, 1400.39, 1080.26, 0, 2, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (541, 4, '4 Story Condo In SF', 0, 0, 0, 400000, 0, -2192.49, 902.684, 75.037, 0, 0, 0, 0, -1, 234.22, 1063.89, 358.5, 0, 6, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (542, 4, 'Mansion', 0, 0, 0, 450000, 0, 254.376, -1367.12, 53.109, 0, 0, 0, 0, -1, 491.058, 1400.39, 1080.26, 0, 2, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (543, 4, '5 Story Condo In SF', 0, 0, 0, 500000, 0, -2211.06, 902.684, 68.93, 0, 0, 0, 0, -1, 226.3, 1114.37, 1080.99, 0, 5, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (544, 4, '5 Story Condo In SF', 0, 0, 0, 500000, 0, -2224.88, 902.673, 66.648, 0, 0, 0, 0, -1, 226.3, 1114.37, 1080.99, 0, 5, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (545, 4, '4 Story Condo In SF', 0, 0, 0, 400000, 0, -2282.4, 979.395, 70.891, 0, 0, 0, 0, -1, 234.22, 1063.89, 358.5, 0, 6, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (546, 4, '4 Story Condo In SF', 0, 0, 0, 400000, 0, -2282.14, 999.631, 79.304, 0, 0, 0, 0, -1, 234.22, 1063.89, 358.5, 0, 6, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (547, 4, '3 Story Condo In SF', 0, 0, 0, 120000, 0, -2282.39, 1023.13, 84.11, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (548, 4, '3 Story Condo In SF', 0, 0, 0, 120000, 0, -2282.42, 1046.67, 84.12, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (549, 4, '3 Story Condo In SF', 0, 0, 0, 120000, 0, -2282.4, 1070.26, 81.701, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (550, 4, '3 Story Condo In SF', 0, 0, 0, 120000, 0, -2282.42, 1088.93, 80.405, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (551, 4, '5 Story Condo In SF', 0, 0, 0, 500000, 0, -2280.84, 1112.55, 76.984, 0, 0, 0, 0, -1, 226.3, 1114.37, 1080.99, 0, 5, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (552, 4, '5 Story Condo In SF', 0, 0, 0, 500000, 0, -2280.83, 1130.83, 69.226, 0, 0, 0, 0, -1, 226.3, 1114.37, 1080.99, 0, 5, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (553, 4, 'Huge house at Vinewood', 0, 0, 0, 600000, 0, 219.259, -1249.79, 78.333, 0, 0, 0, 0, -1, 226.3, 1114.37, 1080.99, 0, 5, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (554, 4, '5 Story Condo In SF', 0, 0, 0, 500000, 0, -2280.83, 1149.17, 61.609, 0, 0, 0, 0, -1, 226.3, 1114.37, 1080.99, 0, 5, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (555, 4, 'Very Small House In SF', 0, 0, 0, 25000, 0, -2358.98, 1118.09, 55.726, 0, 0, 0, 0, -1, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (556, 4, 'Small Very Nice House In SF', 0, 0, 0, 55000, 0, -2369.4, 1122.32, 55.733, 0, 0, 0, 0, -1, 295.21, 1472.26, 1080.25, 0, 15, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (557, 4, 'LS Apartment Near Beach Medium', 0, 0, 0, 40000, 0, 662.432, -1466.81, 14.85, 0, 0, 0, 0, -1, 225.755, 1240, 1082.15, 0, 2, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (558, 4, 'LS Apartment Near Beach Medium', 0, 0, 0, 40000, 500, 657.388, -1481.28, 14.85, 0, 0, 0, 0, -1, 225.755, 1240, 1082.15, 0, 2, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (559, 4, 'LS Apartment Near Beach Medium', 0, 0, 0, 40000, 499, 662.434, -1487.5, 14.85, 0, 0, 0, 0, -1, 225.755, 1240, 1082.15, 0, 2, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (560, 4, 'LS Apartment Near Beach Medium', 0, 0, 0, 40000, 0, 648.854, -1489.52, 14.84, 0, 0, 0, 0, -1, 225.755, 1240, 1082.15, 0, 2, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (561, 4, 'LS Apartment Near Beach Medium', 0, 0, 0, 40000, 5000, 648.856, -1442.35, 14.729, 0, 0, 0, 0, -1, 225.755, 1240, 1082.15, 0, 2, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (562, 4, 'LS Apartment Near Beach Medium', 0, 0, 0, 40000, 500, 657.348, -1434.11, 14.85, 0, 0, 0, 0, -1, 225.755, 1240, 1082.15, 0, 2, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (563, 4, 'LS Apartment Near Beach Medium', 0, 0, 0, 40000, 0, 662.432, -1440.42, 14.85, 0, 0, 0, 0, -1, 225.755, 1240, 1082.15, 0, 2, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (564, 4, 'LS Apartment Near Beach Medium', 0, 0, 0, 40000, 0, 685.53, -1421.91, 14.774, 0, 0, 0, 0, -1, 225.755, 1240, 1082.15, 0, 2, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (565, 4, 'LS Apartment Near Beach Medium', 0, 0, 0, 40000, 0, 739.085, -1418.51, 13.522, 0, 0, 0, 0, -1, 225.755, 1240, 1082.15, 0, 2, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (566, 4, 'LS Apartment Near Beach Medium', 0, 0, 0, 40000, 0, 738.976, -1428.77, 13.897, 0, 0, 0, 0, -1, 225.755, 1240, 1082.15, 0, 2, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (567, 4, 'LS Apartment Near Beach Medium', 0, 0, 0, 40000, 0, 725.603, -1440.45, 13.531, 0, 0, 0, 0, -1, 225.755, 1240, 1082.15, 0, 2, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (568, 4, 'LS Apartment Near Beach Medium', 0, 0, 0, 40000, 500, 662.434, -1514.03, 14.85, 0, 0, 0, 0, -1, 225.755, 1240, 1082.15, 0, 2, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (569, 4, 'LS Apartment Near Beach Medium', 0, 0, 0, 40000, 0, 657.434, -1528.46, 14.85, 0, 0, 0, 0, -1, 225.755, 1240, 1082.15, 0, 2, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (570, 4, 'LS Apartment Near Beach Medium', 0, 0, 0, 40000, 3000, 662.431, -1534.8, 14.85, 0, 0, 0, 0, -1, 225.755, 1240, 1082.15, 0, 2, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (571, 4, 'LS Apartment Near Beach Medium', 0, 0, 0, 40000, 0, 648.854, -1536.7, 14.932, 0, 0, 0, 0, -1, 225.755, 1240, 1082.15, 0, 2, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (572, 4, 'LS Apartment Near Beach Medium', 0, 0, 0, 40000, 0, 653.242, -1619.92, 15, 0, 0, 0, 0, -1, 225.755, 1240, 1082.15, 0, 2, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (573, 4, 'LS Apartment Near Beach Medium', 0, 0, 0, 40000, 0, 692.861, -1602.77, 15.045, 0, 0, 0, 0, -1, 225.755, 1240, 1082.15, 0, 2, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (574, 4, 'LS Apartment Near Beach Medium', 0, 0, 0, 40000, 0, 697.28, -1627, 3.749, 0, 0, 0, 0, -1, 225.755, 1240, 1082.15, 0, 2, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (575, 4, 'LS Apartment Near Beach Medium', 0, 0, 0, 40000, 0, 813.69, -1456.63, 14.222, 0, 0, 0, 0, -1, 225.755, 1240, 1082.15, 0, 2, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (576, 4, 'Small House In SF', 0, 0, 0, 30000, 0, -2383.75, 1128.1, 55.726, 0, 0, 0, 0, -1, 261.058, 1284.29, 1080.25, 0, 4, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (577, 4, 'Apartment Near the beach LS big', 0, 0, 0, 25000, 100, 822.382, -1505.51, 14.397, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (578, 4, 'Small Nice House In SF', 0, 0, 0, 60000, 0, -2396.81, 1132.76, 55.733, 0, 0, 0, 0, -1, 22.93, 1403.32, 1084.43, 0, 5, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (579, 4, 'Apartment Near the beach LS big', 0, 0, 0, 25000, 0, 849.591, -1519.96, 14.347, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (580, 4, 'Small House In SF', 0, 0, 0, 30000, 0, -2407.02, 1135.82, 55.726, 0, 0, 0, 0, -1, 261.06, 1284.29, 1080.25, 0, 4, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (581, 4, 'LS Apartment Near Beach Medium', 0, 0, 0, 40000, 5000, 771.116, -1510.72, 13.545, 0, 0, 0, 0, -1, 225.755, 1240, 1082.15, 0, 2, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (582, 4, 'LS Apartment Near Beach Medium', 0, 0, 0, 40000, 0, 761.065, -1564.08, 13.928, 0, 0, 0, 0, -1, 225.755, 1240, 1082.15, 0, 2, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (583, 4, 'LS Apartment Near Beach Medium', 0, 0, 0, 25000, 0, 841.335, -1471.36, 14.314, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (584, 4, 'Apartment Near the beach LS big', 0, 0, 0, 25000, 0, 782.789, -1464.49, 13.545, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (585, 4, 'Apartment Near the beach LS big', 0, 0, 0, 25000, 0, 824.5, -1424.2, 14.498, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (586, 4, 'Apartment Near the beach LS big', 0, 0, 0, 25000, 0, 852.195, -1423.27, 14.135, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (587, 4, 'Small House In SF', 0, 0, 0, 30000, 0, -2413.67, 1137.49, 55.726, 0, 0, 0, 0, -1, 261.06, 1284.29, 1080.25, 0, 4, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (588, 4, 'Apartment Near the beach LS big', 0, 0, 0, 25000, 0, 880.117, -1424.82, 14.484, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (589, 4, 'Small Very Nice House In SF', 0, 0, 0, 55000, 0, -2424.02, 1139.41, 55.726, 0, 0, 0, 0, -1, 295.21, 1472.26, 1080.25, 0, 15, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (590, 4, 'Apartment Near the beach LS big', 0, 0, 0, 25000, 0, 900.215, -1447.41, 14.369, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (591, 4, 'Apartment Near the beach LS big', 0, 0, 0, 25000, 0, 898.276, -1445.64, 14.364, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (592, 4, 'Small House In SF', 0, 0, 0, 30000, 0, -2438.17, 1141, 55.726, 0, 0, 0, 0, -1, 261.06, 1284.29, 1080.25, 0, 4, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (593, 4, 'Apartment Near the beach LS big', 0, 0, 0, 25000, 4999, 900.197, -1471.03, 14.343, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (594, 4, 'Apartment Near the beach LS big', 0, 0, 0, 25000, 5000, 898.364, -1472.83, 14.34, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (595, 4, 'Apartment Near the beach LS big', 0, 0, 0, 25000, 0, 852.513, -1436.23, 15.043, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (596, 4, 'Small Very Nice House In SF', 0, 0, 0, 55000, 0, -2451.11, 1141.75, 55.733, 0, 0, 0, 0, -1, 295.21, 1472.26, 1080.25, 0, 15, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (597, 4, 'Apartment Near the beach LS big', 0, 0, 0, 25000, 0, 784.395, -1436.11, 13.545, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (598, 4, 'Small House In SF', 0, 0, 0, 30000, 0, -2461.57, 1141.9, 55.726, 0, 0, 0, 0, -1, 261.06, 1284.29, 1080.25, 0, 4, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (599, 4, 'Apartment Near the beach LS big', 0, 0, 0, 25000, 1, 987.497, -1624.49, 14.928, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (600, 4, 'Small House In SF', 0, 0, 0, 30000, 0, -2468.52, 1141.91, 55.733, 0, 0, 0, 0, -1, 261.06, 1284.29, 1080.25, 0, 4, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (601, 4, 'Small Nice House In SF', 0, 0, 0, 60000, 0, -2478.92, 1141.96, 55.726, 0, 0, 0, 0, -1, 22.93, 1403.32, 1084.43, 0, 5, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (602, 4, 'Apartment Near the beach LS big', 0, 0, 0, 25000, 1, 987.52, -1704.34, 14.928, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (603, 4, 'Small House In SF', 0, 0, 0, 30000, 0, -2493.18, 1141.98, 55.726, 0, 0, 0, 0, -1, 261.06, 1284.29, 1080.25, 0, 4, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (604, 4, 'Small Nice House In SF', 0, 0, 0, 60000, 0, -2506.44, 1142.08, 55.726, 0, 0, 0, 0, -1, 22.93, 1403.32, 1084.43, 0, 5, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (605, 4, 'Small House In SF', 0, 0, 0, 30000, 0, -2517, 1142.41, 55.726, 0, 0, 0, 0, -1, 261.06, 1284.29, 1080.25, 0, 4, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (606, 4, 'Small House In SF', 0, 0, 0, 30000, 0, -2523.88, 1142.67, 55.726, 0, 0, 0, 0, -1, 261.06, 1284.29, 1080.25, 0, 4, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (607, 4, 'Small Nice House In SF', 0, 0, 0, 60000, 0, -2534.53, 1143.77, 55.726, 0, 0, 0, 0, -1, 22.93, 1403.32, 1084.43, 0, 5, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (608, 4, 'Small House In SF', 0, 0, 0, 30000, 0, -2549.06, 1145.72, 55.726, 0, 0, 0, 0, -1, 261.058, 1284.29, 1080.25, 0, 4, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (609, 4, 'Small Nice House In SF', 0, 0, 0, 60000, 0, -2563.2, 1149.12, 55.726, 0, 0, 0, 0, -1, 22.93, 1403.32, 1084.43, 0, 5, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (610, 4, 'LS Apartment Near Beach Medium', 0, 0, 0, 40000, 0, 675.143, -1430.51, 14.85, 0, 0, 0, 0, -1, 225.755, 1240, 1082.15, 0, 2, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (611, 4, 'LS Apartment Near Beach Medium', 0, 0, 0, 40000, 1, 683.403, -1435.48, 14.85, 0, 0, 0, 0, -1, 225.755, 1240, 1082.15, 0, 2, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (612, 4, 'LS Apartment Near Beach Medium', 0, 0, 0, 40000, 0, 725.687, -1451.04, 17.694, 0, 0, 0, 0, -1, 225.755, 1240, 1082.15, 0, 2, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (613, 4, 'LS Apartment Near Beach Medium', 0, 0, 0, 40000, 0, 877.973, -1514.64, 14.347, 0, 0, 0, 0, -1, 225.755, 1240, 1082.15, 0, 2, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (614, 4, 'LS Apartment Near Beach Medium', 0, 0, 0, 40000, 300, 876.205, -1512.7, 14.347, 0, 0, 0, 0, -1, 225.755, 1240, 1082.15, 0, 2, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (615, 4, 'LS Apartment Near Beach Medium', 0, 0, 0, 40000, 500, 901.705, -1514.66, 14.362, 0, 0, 0, 0, -1, 225.755, 1240, 1082.15, 0, 2, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (616, 4, 'LS Apartment Near Beach Medium', 0, 0, 0, 40000, 0, 903.4, -1512.85, 14.362, 0, 0, 0, 0, -1, 225.755, 1240, 1082.15, 0, 2, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (617, 4, 'LS Apartment Near Beach Medium', 0, 0, 0, 40000, 2000, 797.236, -1729.38, 13.545, 0, 0, 0, 0, -1, 225.755, 1240, 1082.15, 0, 2, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (618, 4, 'Medium Size House In SF', 0, 0, 0, 120000, 0, -2711.23, 967.585, 54.458, 0, 0, 0, 0, -1, 447, 1397.09, 1084.3, 0, 2, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (619, 4, 'Medium Size House In SF', 0, 0, 0, 120000, 0, -2656.6, 985.815, 64.986, 0, 0, 0, 0, -1, 447, 1397.09, 1084.3, 0, 2, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (620, 4, 'Small Nice House In SF', 0, 0, 0, 60000, 0, -2584.18, 992.255, 78.273, 0, 0, 0, 0, -1, 22.93, 1403.32, 1084.43, 0, 5, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (621, 4, 'LS Apartment Near Beach Medium', 0, 0, 0, 40000, 0, 791.385, -1753.22, 13.46, 0, 0, 0, 0, -1, 225.755, 1240, 1082.15, 0, 2, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (622, 4, 'Small House In SF', 0, 0, 0, 30000, 0, -2573.6, 992.257, 78.273, 0, 0, 0, 0, -1, 261.058, 1284.29, 1080.25, 0, 4, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (623, 4, 'LS Apartment Near Beach Medium', 0, 0, 0, 40000, 0, 893.638, -1635.7, 14.928, 0, 0, 0, 0, -1, 225.755, 1240, 1082.15, 0, 2, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (624, 4, 'Small House In SF', 0, 0, 0, 30000, 0, -2564.32, 992.255, 78.273, 0, 0, 0, 0, -1, 261.059, 1284.29, 1080.25, 0, 4, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (625, 4, 'LS Apartment Near Beach Medium', 0, 0, 0, 40000, 0, 846.723, -1717.4, 14.928, 0, 0, 0, 0, -1, 225.755, 1240, 1082.15, 0, 2, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (626, 4, 'Small Nice House In SF', 0, 0, 0, 60000, 0, -2553.66, 992.255, 78.273, 0, 0, 0, 0, -1, 22.93, 1403.32, 1084.43, 0, 5, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (627, 4, 'LS Apartment Near Beach Medium', 0, 0, 0, 40000, 0, 865.216, -1633.84, 14.928, 0, 0, 0, 0, -1, 225.755, 1240, 1082.15, 0, 2, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (628, 4, 'Appartment 2nd Floor In SF', 0, 0, 0, 80000, 0, -2543.56, 922.376, 67.093, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (629, 4, 'Appartment 1st Floor In SF', 0, 0, 0, 80000, 0, -2545.33, 920.34, 64.976, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (630, 4, 'Small Nice House In SF', 0, 0, 0, 60000, 0, -2551.82, 920.377, 64.984, 0, 0, 0, 0, -1, 22.93, 1403.32, 1084.43, 0, 5, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (631, 4, 'Small House In SF', 0, 0, 0, 30000, 0, -2562.42, 920.372, 64.984, 0, 0, 0, 0, -1, 261.058, 1284.29, 1080.25, 0, 4, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (632, 4, 'Small House In SF', 0, 0, 0, 30000, 0, -2569.98, 920.364, 64.984, 0, 0, 0, 0, -1, 261.059, 1284.29, 1080.25, 0, 4, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (633, 4, 'Small Nice House In SF', 0, 0, 0, 60000, 0, -2580.92, 920.376, 64.984, 0, 0, 0, 0, -1, 22.93, 1403.32, 1084.43, 0, 5, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (634, 4, 'Medium house at LV', 0, 0, 0, 150000, 0, 1364.51, 1896.76, 11.468, 0, 0, 0, 0, -1, 447, 1397.09, 1084.3, 0, 2, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (635, 4, 'Medium house at LV', 0, 0, 0, 150000, 5, 1363.96, 1931.62, 11.468, 0, 0, 0, 0, -1, 447, 1397.09, 1084.3, 0, 2, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (636, 4, '3 Floor House In SF', 0, 0, 0, 600000, 0, -2641.24, 935.718, 71.953, 0, 0, 0, 0, -1, 226.3, 1114.37, 1080.99, 0, 5, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (637, 4, 'Medium house at LV', 0, 0, 0, 150000, 0, 1412.63, 1951.25, 11.453, 0, 0, 0, 0, -1, 447, 1397.09, 1084.3, 0, 2, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (638, 4, 'Medium house at LV', 0, 0, 0, 150000, 0, 1439.76, 1951.25, 11.46, 0, 0, 0, 0, -1, 447, 1397.09, 1084.3, 0, 2, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (639, 4, 'Medium house at LV', 0, 0, 0, 150000, 0, 1462.3, 1949.81, 11.468, 0, 0, 0, 0, -1, 447, 1397.09, 1084.3, 0, 2, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (640, 4, 'Medium house at LV', 0, 0, 0, 150000, 0, 1464.5, 1919.98, 11.46, 0, 0, 0, 0, -1, 447, 1397.09, 1084.3, 0, 2, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (641, 4, 'Medium house at LV', 0, 0, 0, 150000, 0, 1464.49, 1895.12, 11.46, 0, 0, 0, 0, -1, 447, 1397.09, 1084.3, 0, 2, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (642, 4, 'Medium house at LV', 0, 0, 0, 150000, 0, 1409.36, 1920.01, 11.468, 0, 0, 0, 0, -1, 447, 1397.09, 1084.3, 0, 2, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (643, 4, 'Medium house at LV', 0, 0, 0, 150000, 0, 1365.41, 1974.17, 11.46, 0, 0, 0, 0, -1, 447, 1397.09, 1084.3, 0, 2, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (644, 4, 'Medium house at LV', 0, 0, 0, 150000, 0, 1364.39, 2003.71, 11.46, 0, 0, 0, 0, -1, 447, 1397.09, 1084.3, 0, 2, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (645, 4, 'Large House In SF', 0, 0, 0, 470000, 2500, -2661.96, 876.338, 79.773, 0, 0, 0, 0, -1, 234.22, 1063.89, 1084.21, 0, 6, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (646, 4, 'small project lv', 0, 0, 0, 30000, 0, 1422.26, 2026.93, 14.739, 0, 0, 0, 0, -1, 266.5, 304.99, 999.14, 0, 2, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (647, 4, 'Small Nice House In SF', 0, 0, 0, 60000, 0, -2583.77, 896.254, 64.984, 0, 0, 0, 0, -1, 22.93, 1403.32, 1084.43, 0, 5, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (648, 4, 'small project lv', 0, 0, 0, 30000, 0, 1414.7, 2026.87, 10.82, 0, 0, 0, 0, -1, 266.5, 304.99, 999.14, 0, 2, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (649, 4, 'small project lv', 0, 0, 0, 30000, 0, 1422.25, 2026.95, 10.82, 0, 0, 0, 0, -1, 266.5, 304.99, 999.14, 0, 2, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (650, 4, 'small project lv', 0, 0, 0, 30000, 0, 1414.7, 2033.17, 10.82, 0, 0, 0, 0, -1, 266.5, 304.99, 999.14, 0, 2, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (651, 4, 'small project lv', 0, 0, 0, 30000, 0, 1422.25, 2033.18, 10.82, 0, 0, 0, 0, -1, 266.5, 304.99, 999.14, 0, 2, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (652, 4, 'small project lv', 0, 0, 0, 30000, 0, 1414.7, 2033.13, 14.739, 0, 0, 0, 0, -1, 266.5, 304.99, 999.14, 0, 2, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (653, 4, 'small project lv', 0, 0, 0, 30000, 0, 1422.25, 2033.18, 14.739, 0, 0, 0, 0, -1, 266.5, 304.99, 999.14, 0, 2, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (654, 4, 'small project lv', 0, 0, 0, 30000, 0, 1414.7, 2026.97, 14.739, 0, 0, 0, 0, -1, 266.5, 304.99, 999.14, 0, 2, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (655, 4, 'small project lv', 0, 0, 0, 30000, 0, 1453.72, 2026.92, 10.819, 0, 0, 0, 0, -1, 266.5, 304.989, 999.14, 0, 2, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (656, 4, 'small project lv', 0, 0, 0, 30000, 0, 1461.28, 2026.95, 10.819, 0, 0, 0, 0, -1, 266.5, 304.989, 999.14, 0, 2, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (657, 4, 'small project lv', 0, 0, 0, 30000, 0, 1453.72, 2033.22, 10.82, 0, 0, 0, 0, -1, 266.5, 304.99, 999.14, 0, 2, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (658, 4, 'small project lv', 0, 0, 0, 30000, 0, 1461.28, 2033.19, 10.82, 0, 0, 0, 0, -1, 266.5, 304.99, 999.14, 0, 2, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (659, 4, 'small project lv', 0, 0, 0, 30000, 0, 1453.72, 2033.21, 14.739, 0, 0, 0, 0, -1, 266.5, 304.99, 999.14, 0, 2, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (660, 4, 'small project lv', 0, 0, 0, 30000, 0, 1461.28, 2033.11, 14.739, 0, 0, 0, 0, -1, 266.5, 304.99, 999.14, 0, 2, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (661, 4, 'small project lv', 0, 0, 0, 30000, 0, 1453.72, 2026.95, 14.739, 0, 0, 0, 0, -1, 266.5, 304.99, 999.14, 0, 2, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (662, 4, 'small project lv', 0, 0, 0, 30000, 0, 1461.28, 2026.91, 14.739, 0, 0, 0, 0, -1, 266.5, 304.99, 999.14, 0, 2, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (663, 4, 'Small House In SF', 0, 0, 0, 30000, 0, -2573.13, 896.265, 64.984, 0, 0, 0, 0, -1, 261.06, 1284.29, 1080.25, 0, 4, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (664, 4, 'small project lv', 0, 0, 0, 30000, 0, 1414.53, 2003.91, 10.82, 0, 0, 0, 0, -1, 266.5, 304.99, 999.14, 0, 2, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (665, 4, 'small project lv', 0, 0, 0, 30000, 0, 1414.48, 1996.36, 10.819, 0, 0, 0, 0, -1, 266.5, 304.989, 999.14, 0, 2, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (666, 4, 'Small House In SF', 0, 0, 0, 30000, 0, -2566.5, 896.647, 64.984, 0, 0, 0, 0, -1, 261.06, 1284.29, 1080.25, 0, 4, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (667, 4, 'small project lv', 0, 0, 0, 30000, 0, 1408.26, 2003.91, 10.82, 0, 0, 0, 0, -1, 266.5, 304.99, 999.14, 0, 2, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (668, 4, 'small project lv', 0, 0, 0, 30000, 0, 1408.18, 1996.36, 10.82, 0, 0, 0, 0, -1, 266.5, 304.99, 999.14, 0, 2, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (669, 4, 'small project lv', 0, 0, 0, 30000, 0, 1408.31, 1996.36, 14.739, 0, 0, 0, 0, -1, 266.5, 304.99, 999.14, 0, 2, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (670, 4, 'small project lv', 0, 0, 0, 30000, 0, 1408.35, 2003.91, 14.739, 0, 0, 0, 0, -1, 266.5, 304.99, 999.14, 0, 2, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (671, 4, 'small project lv', 0, 0, 0, 30000, 0, 1414.51, 1996.36, 14.739, 0, 0, 0, 0, -1, 266.5, 304.989, 999.14, 0, 2, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (672, 4, 'small project lv', 0, 0, 0, 30000, 0, 1414.52, 2003.91, 14.739, 0, 0, 0, 0, -1, 266.5, 304.989, 999.14, 0, 2, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (673, 4, 'Small Nice House In SF', 0, 0, 0, 60000, 0, -2556.02, 896.643, 64.984, 0, 0, 0, 0, -1, 22.93, 1403.32, 1084.43, 0, 5, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (674, 4, 'small project lv', 0, 0, 0, 30000, 0, 1495.69, 2026.97, 10.82, 0, 0, 0, 0, -1, 266.5, 304.99, 999.14, 0, 2, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (675, 4, 'small project lv', 0, 0, 0, 30000, 0, 1503.24, 2027.01, 10.82, 0, 0, 0, 0, -1, 266.5, 304.99, 999.14, 0, 2, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (676, 4, 'small project lv', 0, 0, 0, 30000, 0, 1495.69, 2033.25, 10.82, 0, 0, 0, 0, -1, 266.5, 304.99, 999.14, 0, 2, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (677, 4, 'small project lv', 0, 0, 0, 30000, 0, 1503.24, 2033.15, 10.82, 0, 0, 0, 0, -1, 266.5, 304.99, 999.14, 0, 2, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (678, 4, 'small project lv', 0, 0, 0, 30000, 0, 1495.69, 2033.16, 14.739, 0, 0, 0, 0, -1, 266.5, 304.99, 999.14, 0, 2, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (679, 4, 'small project lv', 0, 0, 0, 30000, 0, 1503.25, 2033.2, 14.739, 0, 0, 0, 0, -1, 266.5, 304.99, 999.14, 0, 2, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (680, 4, 'small project lv', 0, 0, 0, 30000, 0, 1495.69, 2027.01, 14.739, 0, 0, 0, 0, -1, 266.5, 304.99, 999.14, 0, 2, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (681, 4, 'small project lv', 0, 0, 0, 30000, 0, 1503.24, 2026.85, 14.739, 0, 0, 0, 0, -1, 266.5, 304.989, 999.14, 0, 2, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (682, 4, 'small project lv', 0, 0, 0, 30000, 0, 1534.72, 2026.98, 10.82, 0, 0, 0, 0, -1, 266.5, 304.99, 999.14, 0, 2, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (683, 4, 'small project lv', 0, 0, 0, 30000, 0, 1542.26, 2026.88, 10.82, 0, 0, 0, 0, -1, 266.5, 304.99, 999.14, 0, 2, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (684, 4, 'small project lv', 0, 0, 0, 30000, 0, 1534.72, 2033.18, 10.82, 0, 0, 0, 0, -1, 266.5, 304.99, 999.14, 0, 2, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (685, 4, 'small project lv', 0, 0, 0, 30000, 0, 1542.27, 2033.22, 10.82, 0, 0, 0, 0, -1, 266.5, 304.99, 999.14, 0, 2, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (686, 4, 'Small House In SF', 0, 0, 0, 30000, 0, -2541.55, 896.643, 64.984, 0, 0, 0, 0, -1, 261.06, 1284.29, 1080.25, 0, 4, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (687, 4, 'small project lv', 0, 0, 0, 30000, 0, 1534.72, 2033.23, 14.739, 0, 0, 0, 0, -1, 266.5, 304.99, 999.14, 0, 2, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (688, 4, 'small project lv', 0, 0, 0, 30000, 0, 1542.27, 2033.12, 14.739, 0, 0, 0, 0, -1, 266.5, 304.99, 999.14, 0, 2, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (689, 4, 'small project lv', 0, 0, 0, 30000, 0, 1534.71, 2027, 14.739, 0, 0, 0, 0, -1, 266.5, 304.99, 999.14, 0, 2, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (690, 4, 'small project lv', 0, 0, 0, 30000, 0, 1542.27, 2026.88, 14.739, 0, 0, 0, 0, -1, 266.5, 304.99, 999.14, 0, 2, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (691, 4, 'small project lv', 0, 0, 0, 30000, 0, 1542.45, 2003.91, 10.819, 0, 0, 0, 0, -1, 266.5, 304.989, 999.14, 0, 2, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (692, 4, 'small project lv', 0, 0, 0, 30000, 0, 1542.49, 1996.36, 10.82, 0, 0, 0, 0, -1, 266.5, 304.99, 999.14, 0, 2, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (693, 4, 'small project lv', 0, 0, 0, 30000, 0, 1548.75, 2003.91, 10.82, 0, 0, 0, 0, -1, 266.5, 304.99, 999.14, 0, 2, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (694, 4, 'small project lv', 0, 0, 0, 30000, 0, 1548.68, 1996.35, 10.82, 0, 0, 0, 0, -1, 266.5, 304.99, 999.14, 0, 2, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (695, 4, 'small project lv', 0, 0, 0, 30000, 0, 1548.7, 2003.91, 14.739, 0, 0, 0, 0, -1, 266.5, 304.99, 999.14, 0, 2, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (696, 4, 'small project lv', 0, 0, 0, 30000, 0, 1548.64, 1996.35, 14.739, 0, 0, 0, 0, -1, 266.5, 304.99, 999.14, 0, 2, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (697, 4, 'small project lv', 0, 0, 0, 30000, 0, 1542.55, 2003.89, 14.739, 0, 0, 0, 0, -1, 266.5, 304.99, 999.14, 0, 2, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (698, 4, 'small project lv', 0, 0, 0, 30000, 0, 1542.41, 1996.35, 14.739, 0, 0, 0, 0, -1, 266.5, 304.99, 999.14, 0, 2, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (699, 4, 'Medium house at LV', 0, 0, 0, 150000, 0, 1595.5, 2038.34, 11.468, 0, 0, 0, 0, -1, 447, 1397.09, 1084.3, 0, 2, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (700, 4, '3 Story Condo In SF', 0, 0, 0, 120000, 0, -2502.88, 921.367, 65.239, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (701, 4, 'Medium house at LV', 0, 0, 0, 150000, 0, 1641.79, 2044.95, 11.319, 0, 0, 0, 0, -1, 447, 1397.09, 1084.3, 0, 2, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (702, 4, 'Medium house at LV', 0, 0, 0, 150000, 0, 1594.96, 2071.07, 11.319, 0, 0, 0, 0, -1, 447, 1397.09, 1084.3, 0, 2, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (703, 4, '3 Story Condo In SF', 0, 0, 0, 120000, 0, -2471.77, 921.424, 63.165, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (704, 4, 'Medium house at LV', 0, 0, 0, 150000, 0, 1596.41, 2093.74, 11.312, 0, 0, 0, 0, -1, 447, 1397.09, 1084.3, 0, 2, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (705, 4, 'Medium house at LV', 0, 0, 0, 150000, 0, 1640.35, 2075.67, 11.312, 0, 0, 0, 0, -1, 447, 1397.09, 1084.3, 0, 2, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (706, 4, 'Medium house at LV', 0, 0, 0, 150000, 0, 1640.35, 2102.86, 11.312, 0, 0, 0, 0, -1, 447, 1397.09, 1084.3, 0, 2, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (707, 4, '3 Story Condo In SF', 0, 0, 0, 120000, 0, -2449.79, 921.4, 58.143, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (708, 4, 'Medium house at LV', 0, 0, 0, 150000, 0, 1645.45, 2127.38, 11.203, 0, 0, 0, 0, -1, 447, 1397.09, 1084.3, 0, 2, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (709, 4, 'Medium house at LV', 0, 0, 0, 150000, 0, 1641.26, 2149.74, 11.312, 0, 0, 0, 0, -1, 447, 1397.09, 1084.3, 0, 2, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (710, 4, '3 Story Condo In SF', 0, 0, 0, 120000, 0, -2431.38, 921.408, 50.578, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (711, 4, '5 Story Condo In SF', 0, 0, 0, 500000, 0, -2413.09, 921.431, 45.468, 0, 0, 0, 0, -1, 226.3, 1114.37, 1080.99, 0, 5, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (712, 4, 'Medium house at LV', 0, 0, 0, 150000, 0, 1595.5, 2123.37, 11.46, 0, 0, 0, 0, -1, 447, 1397.09, 1084.3, 0, 2, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (713, 4, 'Medium house at LV', 0, 0, 0, 150000, 0, 1596.41, 2147.43, 11.46, 0, 0, 0, 0, -1, 447, 1397.09, 1084.3, 0, 2, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (714, 4, '5 Story Condo In SF', 0, 0, 0, 500000, 0, -2412.98, 895.232, 45.466, 0, 0, 0, 0, -1, 226.3, 1114.37, 1080.99, 0, 5, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (715, 4, 'Medium house at LV', 0, 0, 0, 150000, 0, 1684.51, 2123.46, 11.46, 0, 0, 0, 0, -1, 447, 1397.09, 1084.3, 0, 2, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (716, 4, '3 Story Condo In SF', 0, 0, 0, 120000, 0, -2431.45, 895.249, 50.544, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (717, 4, 'Medium house at LV', 0, 0, 0, 150000, 0, 1685.42, 2093.88, 11.46, 0, 0, 0, 0, -1, 447, 1397.09, 1084.3, 0, 2, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (718, 4, '3 Story Condo In SF', 0, 0, 0, 120000, 0, -2449.8, 895.235, 58.146, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (719, 4, 'Medium house at LV', 0, 0, 0, 150000, 0, 1680.26, 2069.24, 11.359, 0, 0, 0, 0, -1, 447, 1397.09, 1084.3, 0, 2, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (720, 4, 'Medium house at LV', 0, 0, 0, 150000, 0, 1684.51, 2046.69, 11.468, 0, 0, 0, 0, -1, 447, 1397.09, 1084.3, 0, 2, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (721, 4, '3 Story Condo In SF', 0, 0, 0, 120000, 0, -2471.93, 895.263, 63.168, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (722, 4, '3 Story Condo In SF', 0, 0, 0, 120000, 0, -2503.02, 895.258, 65.255, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (723, 4, '3 Story Condo In SF', 0, 0, 0, 120000, 0, -2585.97, 794.179, 49.423, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (724, 4, '3 Story Condo In SF', 0, 0, 0, 120000, 0, -2569.11, 794.171, 49.423, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (725, 4, '3 Story Condo In SF', 0, 0, 0, 120000, 0, -2550.83, 794.174, 49.423, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (726, 4, 'Nice looking house at lv', 0, 0, 0, 300000, 0, 2056.5, 2665.19, 10.82, 0, 0, 0, 0, -1, 234.22, 1063.89, 1084.21, 0, 6, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (727, 4, 'Nice looking house at lv', 0, 0, 0, 300000, 0, 2037.04, 2664.5, 10.819, 0, 0, 0, 0, -1, 234.22, 1063.89, 1084.21, 0, 6, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (728, 4, 'Nice looking house at lv', 0, 0, 0, 300000, 0, 2018.03, 2664.67, 11.298, 0, 0, 0, 0, -1, 234.22, 1063.89, 1084.21, 0, 6, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (729, 4, 'Small Nice House In SF', 0, 0, 0, 60000, 0, -2548.68, 819.788, 49.984, 0, 0, 0, 0, -1, 22.93, 1403.32, 1084.43, 0, 5, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (730, 4, 'Nice looking house at lv', 0, 0, 0, 300000, 0, 1989.24, 2665.19, 10.82, 0, 0, 0, 0, -1, 234.22, 1063.89, 1084.21, 0, 6, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (731, 4, 'Small House In SF', 0, 0, 0, 30000, 0, -2559.22, 819.795, 49.984, 0, 0, 0, 0, -1, 261.06, 1284.29, 1080.25, 0, 4, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (732, 4, 'Nice looking house at lv', 0, 0, 0, 300000, 0, 1969.62, 2664.5, 10.82, 0, 0, 0, 0, -1, 234.22, 1063.89, 1084.21, 0, 6, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (733, 4, 'Nice looking house at lv', 0, 0, 0, 300000, 0, 1950.53, 2664.67, 11.298, 0, 0, 0, 0, -1, 234.22, 1063.89, 1084.21, 0, 6, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (734, 4, 'Nice looking house at lv', 0, 0, 0, 300000, 0, 1921.7, 2665.19, 10.819, 0, 0, 0, 0, -1, 234.22, 1063.89, 1084.21, 0, 6, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (735, 4, 'Small House In SF', 0, 0, 0, 30000, 0, -2565.91, 819.796, 49.991, 0, 0, 0, 0, -1, 261.058, 1284.29, 1080.25, 0, 4, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (736, 4, 'Small Nice House In SF', 0, 0, 0, 60000, 0, -2576.42, 819.789, 49.984, 0, 0, 0, 0, -1, 22.93, 1403.32, 1084.43, 0, 5, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (737, 4, 'Small House In SF', 0, 0, 0, 30000, 0, -2590.88, 819.796, 49.991, 0, 0, 0, 0, -1, 261.058, 1284.29, 1080.25, 0, 4, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (738, 4, 'Nice looking house at lv', 0, 0, 0, 300000, 5000, 1929.85, 2774.3, 10.819, 0, 0, 0, 0, -1, 234.22, 1063.89, 1084.21, 0, 6, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (739, 4, 'Small House In SF', 0, 0, 0, 30000, 0, -2642.14, 820.317, 49.991, 0, 0, 0, 0, -1, 261.06, 1284.29, 1080.25, 0, 4, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (740, 4, 'Nice looking house at lv', 0, 0, 0, 300000, 0, 1931.29, 2721.26, 10.82, 0, 0, 0, 0, -1, 234.22, 1063.89, 1084.21, 0, 6, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (741, 4, 'Small Nice House In SF', 0, 0, 0, 60000, 0, -2652.47, 820.319, 49.984, 0, 0, 0, 0, -1, 22.93, 1403.32, 1084.43, 0, 5, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (742, 4, 'Nice looking house at lv', 0, 0, 0, 300000, 0, 1950.69, 2721.95, 10.819, 0, 0, 0, 0, -1, 234.22, 1063.89, 1084.21, 0, 6, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (743, 4, 'Small House In SF', 0, 0, 0, 30000, 0, -2666.91, 820.318, 49.984, 0, 0, 0, 0, -1, 261.06, 1284.29, 1080.25, 0, 4, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (744, 4, 'Nice looking house at lv', 0, 0, 0, 300000, 0, 1967.32, 2766.54, 10.826, 0, 0, 0, 0, -1, 234.22, 1063.89, 1084.21, 0, 6, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (745, 4, 'Small House In SF', 0, 0, 0, 30000, 5000, -2645.52, 803.083, 49.976, 0, 0, 0, 0, -1, 261.058, 1284.29, 1080.25, 0, 4, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (746, 4, 'Nice looking house at lv', 0, 0, 0, 300000, 0, 1992.54, 2764.64, 10.819, 0, 0, 0, 0, -1, 234.22, 1063.89, 1084.21, 0, 6, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (747, 4, 'Small Nice House In SF', 0, 0, 0, 60000, 0, -2659.84, 803.092, 49.976, 0, 0, 0, 0, -1, 22.93, 1403.32, 1084.43, 0, 5, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (748, 4, 'Nice looking house at lv', 0, 0, 0, 300000, 0, 1969.78, 2721.78, 11.298, 0, 0, 0, 0, -1, 234.22, 1063.89, 1084.21, 0, 6, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (749, 4, 'Nice looking house at lv', 0, 0, 0, 300000, 0, 1998.72, 2721.26, 10.82, 0, 0, 0, 0, -1, 234.22, 1063.89, 1084.21, 0, 6, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (750, 4, 'Small House In SF', 0, 0, 0, 30000, 0, -2670.57, 803.083, 49.976, 0, 0, 0, 0, -1, 261.06, 1284.29, 1080.25, 0, 4, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (751, 4, 'Nice looking house at lv', 0, 0, 0, 300000, 0, 2018.15, 2721.95, 10.819, 0, 0, 0, 0, -1, 234.22, 1063.89, 1084.21, 0, 6, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (752, 4, 'Small House In SF', 0, 0, 0, 30000, 1000, -2677.16, 803.085, 49.976, 0, 0, 0, 0, -1, 261.059, 1284.29, 1080.25, 0, 4, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (753, 4, 'Nice looking house at lv', 0, 0, 0, 300000, 0, 2018.49, 2766.54, 10.826, 0, 0, 0, 0, -1, 234.22, 1063.89, 1084.21, 0, 6, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (754, 4, 'Nice looking house at lv', 0, 0, 0, 300000, 0, 2039.63, 2766.55, 10.826, 0, 0, 0, 0, -1, 234.22, 1063.89, 1084.21, 0, 6, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (755, 4, 'Small Nice House In SF', 0, 0, 0, 60000, 0, -2687.88, 803.088, 49.976, 0, 0, 0, 0, -1, 22.93, 1403.32, 1084.43, 0, 5, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (756, 4, 'Small Nice House In SF', 0, 0, 0, 60000, 0, -2698.92, 803.101, 49.97, 0, 0, 0, 0, -1, 22.93, 1403.32, 1084.43, 0, 5, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (757, 4, 'Nice looking house at lv', 0, 0, 0, 300000, 0, 2049.62, 2764.29, 10.819, 0, 0, 0, 0, -1, 234.22, 1063.89, 1084.21, 0, 6, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (758, 4, 'Nice looking house at lv', 0, 0, 0, 300000, 0, 2066.01, 2721.26, 10.82, 0, 0, 0, 0, -1, 234.22, 1063.89, 1084.21, 0, 6, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (759, 4, 'Small House In SF', 0, 0, 0, 30000, 0, -2709.85, 803.085, 49.976, 0, 0, 0, 0, -1, 261.058, 1284.29, 1080.25, 0, 4, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (760, 4, '4 Story Condo In SF', 0, 0, 0, 400000, 0, -2685.1, 820.491, 49.984, 0, 0, 0, 0, -1, 234.22, 1063.89, 358.5, 0, 6, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (761, 4, '4 Story Condo In SF', 0, 0, 0, 400000, 0, -2700.38, 820.835, 49.984, 0, 0, 0, 0, -1, 234.22, 1063.89, 358.5, 0, 6, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (762, 4, 'Small Nice House In SF', 0, 0, 0, 60000, 0, -2726.68, 822.977, 53.727, 0, 0, 0, 0, -1, 22.93, 1403.32, 1084.43, 0, 5, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (763, 4, 'Small House In SF', 0, 0, 0, 30000, 0, -2737.25, 822.987, 53.729, 0, 0, 0, 0, -1, 261.06, 1284.29, 1080.25, 0, 4, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (764, 4, '4 Story Condo In SF', 0, 0, 0, 400000, 0, -2409.05, 819.96, 35.179, 0, 0, 0, 0, -1, 234.22, 1063.89, 358.5, 0, 6, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (765, 4, '3 Story Condo In SF', 0, 0, 0, 120000, 0, -2487.47, 821.302, 38.384, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (766, 4, 'huge 2 floor nice looking house at LV', 0, 0, 0, 500000, 0, 1451.36, 2565.43, 10.826, 0, 0, 0, 0, -1, 226.3, 1114.37, 1080.99, 0, 5, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (767, 4, '3 Story Condo In SF', 0, 0, 0, 120000, 0, -2504.61, 821.306, 45.987, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (768, 4, 'huge 2 floor nice looking house at LV', 0, 0, 0, 500000, 0, 1441.72, 2567.69, 10.82, 0, 0, 0, 0, -1, 226.3, 1114.37, 1080.99, 0, 5, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (769, 4, 'huge 2 floor nice looking house at LV', 0, 0, 0, 500000, 0, 1417.87, 2567.48, 10.819, 0, 0, 0, 0, -1, 226.3, 1114.37, 1080.99, 0, 5, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (770, 4, 'huge 2 floor nice looking house at LV', 0, 0, 0, 500000, 0, 1359.74, 2565.43, 10.826, 0, 0, 0, 0, -1, 226.3, 1114.37, 1080.99, 0, 5, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (771, 4, 'Nice looking house at lv', 0, 0, 0, 300000, 0, 1344.72, 2610.19, 11.298, 0, 0, 0, 0, -1, 234.22, 1063.89, 1084.21, 0, 6, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (772, 4, 'Normal Size House In SF', 0, 0, 0, 85000, 0, -2731.47, 723.691, 41.273, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (773, 4, 'huge 2 floor nice looking house at LV', 0, 0, 0, 500000, 0, 1349.6, 2567.69, 10.819, 0, 0, 0, 0, -1, 226.3, 1114.37, 1080.99, 0, 5, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (774, 4, 'Nice looking house at lv', 0, 0, 0, 300000, 0, 1313.84, 2610.19, 11.298, 0, 0, 0, 0, -1, 234.22, 1063.89, 1084.21, 0, 6, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (775, 4, 'huge 2 floor nice looking house at LV', 0, 0, 0, 500000, 0, 1325.61, 2567.34, 10.819, 0, 0, 0, 0, -1, 226.3, 1114.37, 1080.99, 0, 5, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (776, 4, 'Small Nice House In SF', 0, 0, 0, 60000, 0, -2723.45, 722.819, 41.265, 0, 0, 0, 0, -1, 22.93, 1403.32, 1084.43, 0, 5, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (777, 4, 'Small House In SF', 0, 0, 0, 30000, 0, -2710.89, 722.817, 39.718, 0, 0, 0, 0, -1, 261.06, 1284.29, 1080.25, 0, 4, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (778, 4, 'Nice looking house at lv', 0, 0, 0, 300000, 0, 1284.86, 2610.72, 10.819, 0, 0, 0, 0, -1, 234.22, 1063.89, 1084.21, 0, 6, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (779, 4, 'Small House In SF', 0, 0, 0, 30000, 0, -2706.75, 722.849, 37.539, 0, 0, 0, 0, -1, 261.06, 1284.29, 1080.25, 0, 4, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (780, 4, 'Small Nice House In SF', 0, 0, 0, 500000, 0, 1271.88, 2564.57, 10.819, 0, 0, 0, 0, -1, 226.3, 1114.37, 1080.99, 0, 5, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (781, 4, 'Small Nice House In SF', 0, 0, 0, 500000, 0, 1269.62, 2554.43, 10.826, 0, 0, 0, 0, -1, 226.3, 1114.37, 1080.99, 0, 5, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (782, 4, 'Normal Size House In SF', 0, 0, 0, 85000, 0, -2686.04, 722.855, 32.225, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (783, 4, 'Small Nice House In SF', 0, 0, 0, 500000, 0, 1273.95, 2522.51, 10.819, 0, 0, 0, 0, -1, 226.3, 1114.37, 1080.99, 0, 5, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (784, 4, 'Small Nice House In SF', 0, 0, 0, 500000, 0, 1316.47, 2524.65, 10.819, 0, 0, 0, 0, -1, 226.3, 1114.37, 1080.99, 0, 5, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (785, 4, 'Small Nice House In SF', 0, 0, 0, 60000, 0, -2678.14, 722.25, 28.596, 0, 0, 0, 0, -1, 22.93, 1403.32, 1084.43, 0, 5, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (786, 4, 'Small House In SF', 0, 0, 0, 30000, 0, -2665.49, 722.244, 27.962, 0, 0, 0, 0, -1, 261.06, 1284.29, 1080.25, 0, 4, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (787, 4, 'Small House In SF', 0, 0, 0, 30000, 0, -2661.59, 722.225, 27.962, 0, 0, 0, 0, -1, 261.06, 1284.29, 1080.25, 0, 4, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (788, 4, 'huge 2 floor nice looking house at LV', 0, 0, 0, 500000, 0, 1503.24, 2567.69, 10.819, 0, 0, 0, 0, -1, 226.3, 1114.37, 1080.99, 0, 5, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (789, 4, 'Apartment 1st Floor In SF', 0, 0, 0, 80000, 0, -2642.08, 728.034, 27.96, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (790, 4, 'Nice looking house at lv', 0, 0, 0, 300000, 0, 1515.71, 2610.19, 11.298, 0, 0, 0, 0, -1, 234.22, 1063.89, 1084.21, 0, 6, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (791, 4, 'Appartment 2nd Floor In SF', 0, 0, 0, 80000, 0, -2640.3, 730.541, 30.075, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (792, 4, 'huge 2 floor nice looking house at LV', 0, 0, 0, 500000, 0, 1513.38, 2565.43, 10.826, 0, 0, 0, 0, -1, 226.3, 1114.37, 1080.99, 0, 5, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (793, 4, 'huge 2 floor nice looking house at LV', 0, 0, 0, 500000, 0, 1551.49, 2567.34, 10.819, 0, 0, 0, 0, -1, 226.3, 1114.37, 1080.99, 0, 5, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (794, 4, 'Nice looking house at lv', 0, 0, 0, 300000, 0, 1554.45, 2610.72, 10.82, 0, 0, 0, 0, -1, 234.22, 1063.89, 1084.21, 0, 6, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (795, 4, 'huge 2 floor nice looking house at LV', 0, 0, 0, 500000, 3500, 1564.61, 2565.43, 10.826, 0, 0, 0, 0, -1, 226.3, 1114.37, 1080.99, 0, 5, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (796, 4, 'huge 2 floor nice looking house at LV', 0, 0, 0, 500000, 0, 1596.39, 2567.69, 10.82, 0, 0, 0, 0, -1, 226.3, 1114.37, 1080.99, 0, 5, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (797, 4, 'Nice looking house at lv', 0, 0, 0, 300000, 0, 1600.59, 2610.03, 10.82, 0, 0, 0, 0, -1, 234.22, 1063.89, 1084.21, 0, 6, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (798, 4, '3 Story Condo In SF', 0, 0, 0, 120000, 0, -2581.51, 719.018, 27.944, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (799, 4, 'Nice looking house at lv', 0, 0, 0, 300000, 0, 1618.8, 2610.03, 10.819, 0, 0, 0, 0, -1, 234.22, 1063.89, 1084.21, 0, 6, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (800, 4, 'Nice looking house at lv', 0, 0, 0, 300000, 0, 1638.13, 2610.72, 10.82, 0, 0, 0, 0, -1, 234.22, 1063.89, 1084.21, 0, 6, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (801, 4, 'huge 2 floor nice looking house at LV', 0, 0, 0, 500000, 0, 1623.47, 2567.34, 10.819, 0, 0, 0, 0, -1, 226.3, 1114.37, 1080.99, 0, 5, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (802, 4, '3 Story Condo In SF', 0, 0, 0, 120000, 0, -2553.97, 719.023, 27.945, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (803, 4, 'Nice looking house at lv', 0, 0, 0, 300000, 0, 1646.59, 2569.58, 10.819, 0, 0, 0, 0, -1, 234.22, 1063.89, 1084.21, 0, 6, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (804, 4, 'Nice looking house at lv', 0, 0, 0, 300000, 0, 1665.56, 2569.42, 11.298, 0, 0, 0, 0, -1, 234.22, 1063.89, 1084.21, 0, 6, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (805, 4, 'Nice looking house at lv', 0, 0, 0, 300000, 0, 1666.95, 2610.19, 11.298, 0, 0, 0, 0, -1, 234.22, 1063.89, 1084.21, 0, 6, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (806, 4, '3 Story Condo In SF', 0, 0, 0, 120000, 0, -2541.27, 733.097, 28.057, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (807, 4, '3 Story Condo In SF', 0, 0, 0, 120000, 0, -2541.24, 750.917, 33.704, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (808, 4, 'huge 2 floor nice looking house at LV', 0, 0, 0, 500000, 0, 1678.4, 2690.76, 10.819, 0, 0, 0, 0, -1, 226.3, 1114.37, 1080.99, 0, 5, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (809, 4, '3 Story Condo In SF', 0, 0, 0, 120000, 0, -2541.24, 768.138, 40.022, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (810, 4, 'huge 2 floor nice looking house at LV', 0, 0, 0, 500000, 0, 1703.71, 2688.86, 10.826, 0, 0, 0, 0, -1, 226.3, 1114.37, 1080.99, 0, 5, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (811, 4, '3 Story Condo In SF', 0, 0, 0, 120000, 0, -2541.24, 785.26, 46.232, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (812, 4, 'huge 2 floor nice looking house at LV', 0, 0, 0, 500000, 0, 1735.65, 2691.11, 10.82, 0, 0, 0, 0, -1, 226.3, 1114.37, 1080.99, 0, 5, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (813, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 1754.52, 2736.02, 14.272, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (814, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 1752.26, 2744.57, 14.273, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (815, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 1751.45, 2747.35, 14.273, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (816, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 1749.2, 2755.91, 14.273, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (817, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 1748.42, 2758.69, 14.273, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (818, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 1745.39, 2770.03, 14.273, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (819, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 1746.17, 2767.25, 14.273, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (820, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 1743.04, 2778.56, 14.273, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (821, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 1746.04, 2767.21, 11.343, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (822, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 1745.41, 2770.03, 11.343, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (823, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 1748.48, 2758.71, 11.343, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (824, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 1749.19, 2755.9, 11.343, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (825, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 1751.46, 2747.35, 11.343, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (826, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 1752.22, 2744.56, 11.343, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (827, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 1780.81, 2744.57, 11.343, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (828, 4, '6 Story Condo In SF', 0, 0, 0, 450000, 0, -2513.52, 830.841, 49.997, 0, 0, 0, 0, -1, 226.3, 1114.37, 1080.99, 0, 5, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (829, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 1781.51, 2747.37, 11.343, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (830, 4, 'lv project apartment small', 0, 0, 0, 40000, 500, 1778.54, 2736.01, 14.273, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (831, 4, '6 Story Condo In SF', 0, 0, 0, 450000, 0, -2513.5, 849.084, 52.695, 0, 0, 0, 0, -1, 226.3, 1114.37, 1080.99, 0, 5, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (832, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 1781.55, 2747.36, 14.273, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (833, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 1780.82, 2744.56, 14.273, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (834, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 1784.62, 2758.69, 14.273, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (835, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 1783.78, 2755.92, 14.273, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (836, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 1787.64, 2770.04, 14.273, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (837, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 1786.83, 2767.26, 14.273, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (838, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 1789.83, 2778.61, 14.273, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (839, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 1787.57, 2770.06, 11.343, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (840, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 1786.89, 2767.25, 11.343, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (841, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 1784.6, 2758.7, 11.343, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (842, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 1783.84, 2755.91, 11.343, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (843, 4, '6 Story Condo In SF', 0, 0, 0, 450000, 0, -2513.53, 867.493, 57.742, 0, 0, 0, 0, -1, 226.3, 1114.37, 1080.99, 0, 5, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (844, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 1789.89, 2778.6, 11.35, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (845, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 1800.78, 2775.68, 11.343, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (846, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 1797.69, 2764.35, 14.273, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (847, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 1798.47, 2767.14, 14.273, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (848, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 1794.71, 2753, 14.273, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (849, 4, '6 Story Condo In SF', 0, 0, 0, 450000, 0, -2513.51, 885.731, 62.777, 0, 0, 0, 0, -1, 226.3, 1114.37, 1080.99, 0, 5, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (850, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 1795.38, 2755.81, 14.273, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (851, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 1791.66, 2741.66, 14.273, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (852, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 1792.42, 2744.45, 14.273, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (853, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 1789.49, 2733.08, 14.273, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (854, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 1792.54, 2744.42, 11.343, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (855, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 1791.73, 2741.64, 11.343, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (856, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 1795.42, 2755.8, 11.343, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (857, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 1794.75, 2752.99, 11.343, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (858, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 1798.54, 2767.12, 11.343, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (859, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 1797.78, 2764.33, 11.343, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (860, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 1800.77, 2775.68, 14.273, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (861, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 1736.36, 2803.59, 11.343, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (862, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 1737.11, 2800.79, 11.343, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (863, 4, 'Appartment 1st Floor In SF', 0, 0, 0, 80000, 0, -2538.73, 830.008, 49.984, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (864, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 1739.42, 2792.25, 14.273, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (865, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 1737.08, 2800.78, 14.273, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (866, 4, 'Appartment 2nd Floor In SF', 0, 0, 0, 80000, 0, -2540.51, 831.946, 52.093, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (867, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 1736.35, 2803.58, 14.273, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (868, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 1734.17, 2812.16, 11.343, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (869, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 1733.35, 2814.93, 11.343, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (870, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 1734.05, 2812.13, 14.273, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (871, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 1733.39, 2814.94, 14.273, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (872, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 1730.34, 2826.28, 14.273, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (873, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 1731, 2823.47, 14.273, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (874, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 1728.09, 2834.84, 14.273, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (875, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 1730.45, 2826.31, 11.343, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (876, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 1731.09, 2823.49, 11.343, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (877, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 1727.94, 2834.8, 11.343, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (878, 4, 'Small House In SF', 0, 0, 0, 30000, 0, -2539.71, 845.176, 50.6, 0, 0, 0, 0, -1, 261.06, 1284.29, 1080.25, 0, 4, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (879, 4, 'Small House In SF', 0, 0, 0, 30000, 0, -2540.67, 855.141, 53.179, 0, 0, 0, 0, -1, 261.06, 1284.29, 1080.25, 0, 4, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (880, 4, 'Small House In SF', 0, 0, 0, 30000, 0, -2540, 874.764, 58.921, 0, 0, 0, 0, -1, 261.06, 1284.29, 1080.25, 0, 4, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (881, 4, 'Normal Size House In SF', 0, 0, 0, 85000, 0, -2540.18, 883.141, 63.25, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (882, 4, 'Small Nice House In SF', 0, 0, 0, 60000, 0, -2537.09, 929.446, 65.016, 0, 0, 0, 0, -1, 22.93, 1403.32, 1084.43, 0, 5, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (883, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 1717.18, 2831.92, 11.35, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (884, 4, 'Small House In SF', 0, 0, 0, 30000, 0, -2542.47, 942.63, 64, 0, 0, 0, 0, -1, 261.058, 1284.29, 1080.25, 0, 4, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (885, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 1717.01, 2831.87, 14.273, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (886, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 1720.19, 2820.57, 14.273, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (887, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 1719.41, 2823.35, 14.273, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (888, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 1723.14, 2809.21, 14.273, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (889, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 1722.45, 2812.01, 14.273, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (890, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 500, 2514.28, -1691.66, 14.045, 0, 0, 0, 0, -1, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (891, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 5000, 2523.27, -1679.38, 15.496, 0, 0, 0, 0, -1, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (892, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 5000, 2524.71, -1658.59, 15.824, 0, 0, 0, 0, -1, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (893, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 1, 2513.72, -1650.24, 14.354, 0, 0, 0, 0, -1, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (894, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 0, 2498.47, -1642.25, 14.112, 0, 0, 0, 0, -1, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (895, 4, 'Ghetto Home LS Medium', 0, 0, 0, 40000, 0, 2486.46, -1644.53, 14.076, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (896, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 0, 2469.45, -1646.35, 13.779, 0, 0, 0, 0, -1, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (897, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 0, 2451.91, -1641.41, 14.064, 0, 0, 0, 0, -1, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (898, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 0, 2413.86, -1646.79, 14.01, 0, 0, 0, 0, -1, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (899, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 1000, 2409.04, -1674.94, 14.375, 0, 0, 0, 0, -1, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (900, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 0, 2393.13, -1646.04, 13.904, 0, 0, 0, 0, -1, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (901, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 1, 2384.7, -1675.83, 15.244, 0, 0, 0, 0, -1, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (902, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 0, 2362.8, -1643.14, 14.35, 0, 0, 0, 0, -1, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (903, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 0, 2368.29, -1675.34, 14.168, 0, 0, 0, 0, -1, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (904, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 0, 2326.89, -1681.94, 14.928, 0, 0, 0, 0, -1, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (905, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 20, 2385.39, -1711.66, 14.241, 0, 0, 0, 0, -1, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (906, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 0, 2326.75, -1716.7, 14.237, 0, 0, 0, 0, -1, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (907, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 0, 2308.89, -1714.34, 14.979, 0, 0, 0, 0, -1, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (908, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 0, 2244.54, -1637.64, 16.236, 0, 0, 0, 0, -1, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (909, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 100, 2257.11, -1643.94, 15.807, 0, 0, 0, 0, -1, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (910, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 0, 2282.29, -1641.21, 15.887, 0, 0, 0, 0, -1, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (911, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 0, 2307, -1679.19, 14.331, 0, 0, 0, 0, -1, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (912, 4, 'normal house at ls', 0, 0, 0, 150000, 0, 1928.69, -1915.91, 15.255, 0, 0, 0, 0, -1, 447, 1397.09, 1084.3, 0, 2, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (913, 4, 'normal house at ls', 0, 0, 0, 150000, 0, 1938.54, -1911.32, 15.255, 0, 0, 0, 0, -1, 447, 1397.09, 1084.3, 0, 2, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (914, 4, 'normal house at ls', 0, 0, 0, 150000, 0, 1913.47, -1911.9, 15.255, 0, 0, 0, 0, -1, 447, 1397.09, 1084.3, 0, 2, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (915, 4, 'normal house at ls', 0, 0, 0, 150000, 0, 1891.92, -1914.4, 15.255, 0, 0, 0, 0, -1, 447, 1397.09, 1084.3, 0, 2, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (916, 4, 'normal house at ls', 0, 0, 0, 150000, 0, 1872.21, -1911.79, 15.255, 0, 0, 0, 0, -1, 447, 1397.09, 1084.3, 0, 2, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (917, 4, 'normal house at ls', 0, 0, 0, 150000, 0, 1854.06, -1914.26, 15.255, 0, 0, 0, 0, -1, 447, 1397.09, 1084.3, 0, 2, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (918, 4, 'LS Project', 0, 0, 0, 4000, 0, 1848.15, -1593.75, 19.124, 0, 0, 0, 0, -1, 244.41, 305.032, 999.148, 0, 1, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (919, 4, 'LS Project', 0, 0, 0, 4000, 0, 1848.15, -1593.6, 23.881, 0, 0, 0, 0, -1, 244.41, 305.032, 999.148, 0, 1, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (920, 4, 'LS Project', 0, 0, 0, 4000, 0, 1986.75, -1604.9, 13.531, 0, 0, 0, 0, -1, 244.41, 305.032, 999.148, 0, 1, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (921, 4, 'LS Project', 0, 0, 0, 4000, 0, 1972.98, -1559.83, 13.637, 0, 0, 0, 0, -1, 244.41, 305.032, 999.148, 0, 1, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (922, 4, 'LS Project', 0, 0, 0, 4000, 0, 1958.67, -1560.35, 13.593, 0, 0, 0, 0, -1, 244.41, 305.032, 999.148, 0, 1, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (923, 4, 'Ghetto Home LS Medium', 0, 0, 0, 40000, 0, 2139.09, -1697.51, 15.085, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (924, 4, 'Ghetto Home LS Medium', 0, 0, 0, 40000, 0, 2155.62, -1698.51, 15.085, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (925, 4, 'Ghetto Home LS Medium', 0, 0, 0, 30000, 0, 2157.15, -1709.21, 15.085, 0, 0, 0, 0, -1, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (926, 4, 'Ghetto Home LS Medium', 0, 0, 0, 30000, 0, 2140.57, -1708.3, 15.085, 0, 0, 0, 0, -1, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (927, 4, 'Ghetto Home LS Medium', 0, 0, 0, 40000, 0, 2151.71, -1717.83, 15.085, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (928, 4, 'Ghetto Home LS Medium', 0, 0, 0, 40000, 0, 2168.08, -1718.82, 15.166, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (929, 4, 'Ghetto Home LS Medium', 0, 0, 0, 30000, 1, 2151.41, -1672.26, 15.085, 0, 0, 0, 0, -1, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (930, 4, 'Ghetto Home LS Medium', 0, 0, 0, 40000, 5000, 2143.65, -1662.86, 15.085, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (932, 4, 'Ghetto Home LS Medium', 0, 0, 0, 60000, 0, 2163.74, -1661.21, 15.085, 0, 0, 0, 0, -1, 22.93, 1403.32, 1084.43, 0, 5, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (933, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 1793.6, 2792.25, 11.35, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (934, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 1796.65, 2803.58, 11.343, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (935, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 1795.83, 2800.81, 11.343, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (936, 4, 'Small House In SF', 0, 0, 0, 30000, 0, -2510.96, 967.654, 73.532, 0, 0, 0, 0, -1, 261.06, 1284.29, 1080.25, 0, 4, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (937, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 1799.57, 2814.95, 11.343, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (938, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 1798.92, 2812.14, 11.343, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (939, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 1802.77, 2826.25, 11.343, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (940, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 1801.9, 2823.49, 11.343, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (941, 4, 'Small House In SF', 0, 0, 0, 30000, 0, -2510.91, 951.258, 65.614, 0, 0, 0, 0, -1, 261.06, 1284.29, 1080.25, 0, 4, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (942, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 1804.86, 2834.85, 11.35, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (943, 4, 'Small House In SF', 0, 0, 0, 30000, 0, -2510.93, 942.703, 65.289, 0, 0, 0, 0, -1, 261.059, 1284.29, 1080.25, 0, 4, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (944, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 1804.96, 2834.82, 14.272, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (945, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 1802.59, 2826.3, 14.273, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (946, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 1802.05, 2823.45, 14.273, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (947, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 1798.8, 2812.17, 14.273, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (948, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 1799.65, 2814.93, 14.273, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (949, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 1795.85, 2800.8, 14.273, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (950, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 1796.69, 2803.57, 14.273, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (951, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 1793.61, 2792.24, 14.273, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (952, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 1815.83, 2831.92, 11.343, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (953, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 1813.61, 2823.34, 11.343, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (954, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 1812.9, 2820.54, 11.343, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (955, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 1815.91, 2831.89, 14.273, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (956, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 1812.82, 2820.57, 14.273, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (957, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 1813.61, 2823.35, 14.273, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (958, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 1809.83, 2809.21, 14.273, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (959, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 1810.53, 2812.02, 14.273, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (960, 4, 'Small House In SF', 0, 0, 0, 30000, 0, -2596.65, 986.268, 78.273, 0, 0, 0, 0, -1, 261.058, 1284.29, 1080.25, 0, 4, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (961, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 1806.77, 2797.88, 14.273, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (962, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 1807.6, 2800.65, 14.273, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (963, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 1804.57, 2789.3, 14.273, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (964, 4, 'Small Nice House In SF', 0, 0, 0, 60000, 0, -2597.34, 979.735, 78.273, 0, 0, 0, 0, -1, 22.93, 1403.32, 1084.43, 0, 5, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (965, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 1806.71, 2797.89, 11.343, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (966, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 1807.36, 2800.71, 11.343, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (967, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 1810.61, 2812, 11.343, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (968, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 1809.62, 2809.27, 11.343, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (969, 4, 'Small House In SF', 0, 0, 0, 30000, 0, -2597.33, 968.947, 78.283, 0, 0, 0, 0, -1, 261.059, 1284.29, 1080.25, 0, 4, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (970, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 1832.49, 2742.93, 11.343, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (971, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 1830.47, 2740.87, 11.343, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (972, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 1840.84, 2751.18, 11.343, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (973, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 1838.67, 2749.27, 11.35, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (974, 4, 'Normal Size House In SF', 0, 0, 0, 85000, 0, -2591.17, 960.758, 78.453, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (975, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 1847.08, 2757.45, 11.343, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (976, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 1849.23, 2759.39, 11.343, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (977, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 1855.38, 2765.76, 14.265, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (978, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 1849.09, 2759.53, 14.273, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (979, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 1847.1, 2757.43, 14.273, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (980, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 1838.73, 2749.2, 14.273, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (981, 4, 'Small House In SF', 0, 0, 0, 30000, 0, -2591.19, 944.325, 70.429, 0, 0, 0, 0, -1, 261.06, 1284.29, 1080.25, 0, 4, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (982, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 1840.84, 2751.19, 14.273, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (983, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 1830.4, 2740.94, 14.273, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (984, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 1832.55, 2742.88, 14.273, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (985, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 1824.22, 2734.61, 14.273, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (986, 4, 'Small House In SF', 0, 0, 0, 30000, 0, -2591.19, 935.902, 68.929, 0, 0, 0, 0, -1, 261.06, 1284.29, 1080.25, 0, 4, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (987, 4, 'Small House In SF', 0, 0, 0, 30000, 0, -2591.19, 927.88, 65.015, 0, 0, 0, 0, -1, 261.06, 1284.29, 1080.25, 0, 4, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (988, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 1855.32, 2765.81, 11.35, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (989, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 1865.45, 2775.7, 11.343, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (990, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 1873.69, 2784.06, 11.343, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (991, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 1871.57, 2782.08, 11.343, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (992, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 1881.95, 2792.39, 11.343, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (993, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 1879.89, 2790.37, 11.343, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (994, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 1890.23, 2800.7, 11.343, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (995, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 1888.22, 2798.63, 11.343, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (996, 4, 'Normal Size House In SF', 0, 0, 0, 85000, 0, -2593.26, 883.218, 63.25, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (997, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 1896.51, 2806.95, 14.265, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (998, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 1888.25, 2798.6, 14.273, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (999, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 1890.32, 2800.62, 14.273, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1000, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 1879.96, 2790.31, 14.273, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1001, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 1882.05, 2792.29, 14.273, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1002, 4, 'Small House In SF', 0, 0, 0, 30000, 0, -2593.42, 874.771, 58.921, 0, 0, 0, 0, -1, 261.06, 1284.29, 1080.25, 0, 4, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1003, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 1871.62, 2782.03, 14.273, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1004, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 1873.72, 2784.03, 14.273, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1005, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 1865.34, 2775.81, 14.273, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1006, 4, 'Normal Size House In SF', 0, 0, 0, 85000, 0, -2620.21, 883.012, 63.25, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1007, 4, 'Small House In SF', 0, 0, 0, 30000, 0, -2620.02, 874.734, 58.921, 0, 0, 0, 0, -1, 261.058, 1284.29, 1080.25, 0, 4, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1008, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 1896.56, 2806.91, 11.35, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1009, 4, 'Small House In SF', 0, 0, 0, 30000, 0, -2592.74, 854.975, 53.594, 0, 0, 0, 0, -1, 261.06, 1284.29, 1080.25, 0, 4, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1010, 4, 'Small House In SF', 0, 0, 0, 30000, 0, -2620.7, 855.147, 53.568, 0, 0, 0, 0, -1, 261.06, 1284.29, 1080.25, 0, 4, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1011, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 1740.86, 2863.24, 11.335, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1012, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 1738.45, 2861.53, 11.335, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1013, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 1751.45, 2868.71, 11.335, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1014, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 1748.67, 2867.7, 11.335, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1015, 4, 'Small House In SF', 0, 0, 0, 30000, 0, -2593.7, 845.077, 50.593, 0, 0, 0, 0, -1, 261.06, 1284.29, 1080.25, 0, 4, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1016, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 1763.1, 2871.36, 11.335, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1017, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 1760.16, 2870.95, 11.335, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1018, 4, 'Small House In SF', 0, 0, 0, 30000, 0, -2619.74, 845.313, 50.598, 0, 0, 0, 0, -1, 261.06, 1284.29, 1080.25, 0, 4, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1019, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 1775, 2870.83, 11.335, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1020, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 1772.1, 2871.36, 11.335, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1021, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 1786.52, 2867.69, 11.335, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1022, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 1783.74, 2868.71, 11.335, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1023, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 1796.8, 2861.61, 11.335, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1024, 4, 'Appartment 2nd Floor In SF', 0, 0, 0, 80000, 0, -2592.75, 832.837, 52.093, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1025, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 1794.42, 2863.38, 11.335, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1026, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 1731.81, 2855.49, 14.265, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1027, 4, 'Appartment 1st Floor In SF', 0, 0, 0, 80000, 0, -2594.69, 830.981, 49.984, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1028, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 1740.84, 2863.27, 14.257, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1029, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 1738.33, 2861.68, 14.265, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1030, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 1751.44, 2868.75, 14.265, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1031, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 1748.65, 2867.74, 14.265, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1032, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 1763.12, 2871.13, 14.265, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1033, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 1760.17, 2870.92, 14.265, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1034, 4, 'Appartment 2nd Floor In SF', 0, 0, 0, 80000, 0, -2620.37, 832.857, 52.093, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1035, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 1775.01, 2870.88, 14.265, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1036, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 1772.09, 2871.32, 14.265, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1037, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 1786.45, 2867.55, 14.265, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1038, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 1783.76, 2868.77, 14.265, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1039, 4, 'Appartment 1st Floor In SF', 0, 0, 0, 80000, 0, -2618.75, 830.996, 49.984, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1040, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 1796.79, 2861.59, 14.265, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1041, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 1794.38, 2863.32, 14.265, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1042, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 1803.38, 2855.49, 14.265, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1043, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 1789.43, 2733.1, 11.343, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1044, 4, 'Small House In SF', 0, 0, 0, 30000, 0, -2621.68, 802.98, 49.984, 0, 0, 0, 0, -1, 261.06, 1284.29, 1080.25, 0, 4, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1045, 4, 'Small Nice House In SF', 0, 0, 0, 60000, 0, -2621.67, 790.744, 48.581, 0, 0, 0, 0, -1, 22.93, 1403.32, 1084.43, 0, 5, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1046, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 1803.48, 2855.57, 11.335, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1047, 4, 'Small House In SF', 0, 0, 0, 30000, 0, -2622.51, 782.552, 44.859, 0, 0, 0, 0, -1, 261.06, 1284.29, 1080.25, 0, 4, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1048, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 1824.3, 2734.53, 11.343, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1049, 4, 'Small House In SF', 0, 0, 0, 30000, 0, -2622.49, 766.352, 36.835, 0, 0, 0, 0, -1, 261.06, 1284.29, 1080.25, 0, 4, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1050, 4, 'Small House In SF', 0, 0, 0, 30000, 0, -2622.51, 758.038, 35.328, 0, 0, 0, 0, -1, 261.06, 1284.29, 1080.25, 0, 4, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1051, 4, 'Small House In SF', 0, 0, 0, 30000, 0, -2622.52, 749.841, 31.421, 0, 0, 0, 0, -1, 261.06, 1284.29, 1080.25, 0, 4, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1052, 4, 'Nice looking house at lv', 0, 0, 0, 300000, 0, 1663.17, 2754.14, 10.82, 0, 0, 0, 0, -1, 234.22, 1063.89, 1084.21, 0, 6, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1053, 4, 'huge 2 floor nice looking house at LV', 0, 0, 0, 500000, 0, 1652.51, 2708.85, 10.826, 0, 0, 0, 0, -1, 226.3, 1114.37, 1080.99, 0, 5, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1054, 4, 'Appartment 2nd Floor In SF', 0, 0, 0, 80000, 0, -2627.54, 735.333, 30.585, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1055, 4, 'Nice looking house at lv', 0, 0, 0, 300000, 0, 1643.83, 2753.45, 10.82, 0, 0, 0, 0, -1, 234.22, 1063.89, 1084.21, 0, 6, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1056, 4, 'huge 2 floor nice looking house at LV', 0, 0, 0, 500000, 0, 1627.15, 2710.76, 10.819, 0, 0, 0, 0, -1, 226.3, 1114.37, 1080.99, 0, 5, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1057, 4, 'Appartment 1st Floor In SF', 0, 0, 0, 80000, 0, -2625.47, 733.211, 28.011, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1058, 4, 'huge 2 floor nice looking house at LV', 0, 0, 0, 500000, 0, 1626.81, 2754.14, 10.82, 0, 0, 0, 0, -1, 226.3, 1114.37, 1080.99, 0, 5, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1059, 4, 'Nice looking house at lv', 0, 0, 0, 300000, 0, 1608.72, 2754.14, 10.82, 0, 0, 0, 0, -1, 234.22, 1063.89, 1084.21, 0, 6, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1060, 4, 'huge 2 floor nice looking house at LV', 0, 0, 0, 500000, 0, 1601.25, 2708.85, 10.826, 0, 0, 0, 0, -1, 226.3, 1114.37, 1080.99, 0, 5, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1061, 4, 'huge 2 floor nice looking house at LV', 0, 0, 0, 500000, 0, 1599.56, 2757.6, 10.826, 0, 0, 0, 0, -1, 226.3, 1114.37, 1080.99, 0, 5, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1062, 4, 'huge 2 floor nice looking house at LV', 0, 0, 0, 500000, 0, 1580.26, 2708.85, 10.826, 0, 0, 0, 0, -1, 226.3, 1114.37, 1080.99, 0, 5, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1063, 4, '3 Story Condo In SF', 0, 0, 0, 120000, 0, -2594.19, 733.114, 28.138, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1064, 4, 'huge 2 floor nice looking house at LV', 0, 0, 0, 500000, 0, 1570.28, 2711.11, 10.819, 0, 0, 0, 0, -1, 226.3, 1114.37, 1080.99, 0, 5, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1065, 4, '3 Story Condo In SF', 0, 0, 0, 120000, 0, -2594.21, 750.871, 33.702, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1066, 4, 'Nice looking house at lv', 0, 0, 0, 300000, 0, 1565.47, 2757.04, 10.819, 0, 0, 0, 0, -1, 234.22, 1063.89, 1084.21, 0, 6, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1067, 4, '3 Story Condo In SF', 0, 0, 0, 120000, 0, -2594.2, 768.05, 40.018, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1068, 4, 'Nice looking house at lv', 0, 0, 0, 300000, 0, 1564.78, 2776.51, 10.819, 0, 0, 0, 0, -1, 234.22, 1063.89, 1084.21, 0, 6, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1069, 4, '3 Story Condo In SF', 0, 0, 0, 120000, 0, -2594.19, 785.256, 46.236, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1070, 4, 'Nice looking house at lv', 0, 0, 0, 300000, 0, 1565.47, 2793.43, 10.819, 0, 0, 0, 0, -1, 234.22, 1063.89, 1084.21, 0, 6, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1071, 4, 'huge 2 floor nice looking house at LV', 0, 0, 0, 500000, 0, 1550.64, 2846.08, 10.826, 0, 0, 0, 0, -1, 226.3, 1114.37, 1080.99, 0, 5, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1072, 4, 'huge 2 floor nice looking house at LV', 0, 0, 0, 500000, 0, 1575.89, 2844.17, 10.819, 0, 0, 0, 0, -1, 226.3, 1114.37, 1080.99, 0, 5, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1073, 4, 'huge 2 floor nice looking house at LV', 0, 0, 0, 500000, 0, 1601.78, 2846.08, 10.826, 0, 0, 0, 0, -1, 226.3, 1114.37, 1080.99, 0, 5, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1074, 4, 'huge 2 floor nice looking house at LV', 0, 0, 0, 500000, 0, 1618.36, 2800.79, 10.82, 0, 0, 0, 0, -1, 226.3, 1114.37, 1080.99, 0, 5, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1075, 4, 'huge 2 floor nice looking house at LV', 0, 0, 0, 500000, 0, 1622.73, 2846.07, 10.826, 0, 0, 0, 0, -1, 226.3, 1114.37, 1080.99, 0, 5, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1076, 4, 'huge 2 floor nice looking house at LV', 0, 0, 0, 500000, 0, 1637.79, 2801.48, 10.82, 0, 0, 0, 0, -1, 226.3, 1114.37, 1080.99, 0, 5, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1077, 4, 'huge 2 floor nice looking house at LV', 0, 0, 0, 500000, 0, 1632.76, 2843.65, 10.82, 0, 0, 0, 0, -1, 226.3, 1114.37, 1080.99, 0, 5, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1078, 4, 'Nice looking house at lv', 0, 0, 0, 300000, 0, 1654.7, 2800.79, 10.82, 0, 0, 0, 0, -1, 234.22, 1063.89, 1084.21, 0, 6, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1079, 4, '3 Story Condo In SF', 0, 0, 0, 120000, 0, -2240.52, 753.484, 49.376, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1080, 4, 'huge 2 floor nice looking house at LV', 0, 0, 0, 500000, 0, 1664.77, 2846.08, 10.826, 0, 0, 0, 0, -1, 226.3, 1114.37, 1080.99, 0, 5, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1081, 4, 'Nice looking house at lv', 0, 0, 0, 300000, 0, 1672.95, 2800.79, 10.819, 0, 0, 0, 0, -1, 234.22, 1063.89, 1084.21, 0, 6, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1082, 4, '3 Story Condo In SF', 0, 0, 0, 120000, 0, -2240.53, 786.156, 49.377, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1083, 4, '3 Story Condo In SF', 0, 0, 0, 120000, 0, -2223.7, 795.716, 49.434, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1084, 4, 'Nice looking house at lv', 0, 0, 0, 300000, 0, 1555.97, 2658.52, 10.82, 0, 0, 0, 0, -1, 234.22, 1063.89, 1084.21, 0, 6, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1085, 4, '3 Story Condo In SF', 0, 0, 0, 120000, 0, -2205.42, 795.726, 50.481, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1086, 4, 'Nice looking house at lv', 0, 0, 0, 300000, 0, 1573, 2657.83, 10.82, 0, 0, 0, 0, -1, 234.22, 1063.89, 1084.21, 0, 6, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1087, 4, 'Nice looking house at lv', 0, 0, 0, 300000, 0, 1607.61, 2679.27, 10.819, 0, 0, 0, 0, -1, 234.22, 1063.89, 1084.21, 0, 6, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1088, 4, '3 Story Condo In SF', 0, 0, 0, 120000, 0, -2187.03, 795.701, 57.556, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1089, 4, 'huge 2 floor nice looking house at LV', 0, 0, 0, 500000, 0, 1611.76, 2648.22, 10.826, 0, 0, 0, 0, -1, 226.3, 1114.37, 1080.99, 0, 5, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1090, 4, '3 Story Condo In SF', 0, 0, 0, 120000, 0, -2168.82, 795.759, 64.971, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1091, 4, '3 Story Condo In SF', 0, 0, 0, 120000, 0, -2159.21, 786.088, 69.515, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1092, 4, '3 Story Condo In SF', 0, 0, 0, 120000, 0, -2159.18, 770.001, 69.515, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1093, 4, 'Nice looking house at lv', 0, 0, 0, 300000, 0, 1265.47, 2610.03, 10.819, 0, 0, 0, 0, -1, 234.22, 1063.89, 1084.21, 0, 6, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1094, 4, '3 Story Condo In SF', 0, 0, 0, 120000, 0, -2159.23, 753.492, 69.514, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1095, 4, 'huge 2 floor nice looking house at LV', 0, 0, 0, 500000, 0, 1225.27, 2584.94, 10.819, 0, 0, 0, 0, -1, 226.3, 1114.37, 1080.99, 0, 5, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1096, 4, 'huge 2 floor nice looking house at LV', 0, 0, 0, 500000, 0, 1223.02, 2616.85, 10.826, 0, 0, 0, 0, -1, 226.3, 1114.37, 1080.99, 0, 5, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1097, 4, '3 Story Condo In SF', 0, 0, 0, 120000, 0, -2168.52, 744.007, 64.976, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1098, 4, '3 Story Condo In SF', 0, 0, 0, 120000, 0, -2186.9, 744.005, 57.555, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1099, 4, '3 Story Condo In SF', 0, 0, 0, 120000, 0, -2205.46, 744.001, 50.482, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1100, 4, 'lv project apartment small', 0, 0, 0, 40000, 1, 1731.8, 2855.49, 11.335, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1101, 4, '3 Story Condo In SF', 0, 0, 0, 120000, 0, -2223.71, 743.986, 49.433, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1102, 4, '6 Story Condo In SF', 0, 0, 0, 450000, 0, -2238.31, 1154.14, 59.692, 0, 0, 0, 0, -1, 226.3, 1114.37, 1080.99, 0, 5, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1103, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 2651.65, 1978.84, 10.82, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1104, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 2649.77, 1978.84, 10.82, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1105, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 2642.47, 1978.84, 10.82, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1106, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 2640.47, 1978.84, 10.819, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1107, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 2633.06, 1978.84, 10.819, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1108, 4, '5 Story Condo In SF', 0, 0, 0, 500000, 0, -2238.36, 1135.89, 67.256, 0, 0, 0, 0, -1, 226.3, 1114.37, 1080.99, 0, 5, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1109, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 2631.15, 1978.84, 10.819, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1110, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 2623.89, 1978.84, 10.819, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1111, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 2623.87, 1978.84, 14.116, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1112, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 2631.33, 1978.84, 14.116, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1113, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 2633.24, 1978.84, 14.116, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1114, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 2640.46, 1978.84, 14.116, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1115, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 2642.55, 1978.84, 14.116, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1116, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 2649.89, 1978.84, 14.116, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1117, 4, '3 Story Condo In SF', 0, 0, 0, 120000, 0, -2238.36, 1117.54, 74.816, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1118, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 2651.66, 1978.84, 14.116, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1119, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 2659.23, 1978.84, 14.116, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1120, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 2656.5, 1968.82, 14.116, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1121, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 2654.39, 1968.82, 14.116, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1122, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 2647.14, 1968.82, 14.116, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1123, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 2645.16, 1968.82, 14.116, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1124, 4, '3 Story Condo In SF', 0, 0, 0, 120000, 0, -2239.76, 1070.74, 81.024, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1125, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 2637.68, 1968.82, 14.116, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1126, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 2635.83, 1968.82, 14.116, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1127, 4, '3 Story Condo In SF', 0, 0, 0, 120000, 0, -2239.75, 1054.09, 82.845, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1128, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 2628.55, 1968.82, 14.116, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1129, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 2626.6, 1968.82, 14.116, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1130, 4, '3 Story Condo In SF', 0, 0, 0, 120000, 0, -2239.75, 1037.69, 83.849, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1131, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 2645.48, 2019.21, 10.816, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1132, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 2643.76, 2019.21, 10.815, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1133, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 2636.22, 2019.21, 10.819, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1134, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 2634.43, 2019.21, 10.819, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1135, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 2626.93, 2019.21, 10.819, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1136, 4, '3 Story Condo In SF', 0, 0, 0, 120000, 0, -2230.58, 1028, 83.843, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1137, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 2625.15, 2019.21, 10.819, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1138, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 2617.69, 2019.21, 14.116, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1139, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 2625.16, 2019.21, 14.116, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1140, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 2627.05, 2019.21, 14.116, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1141, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 2634.48, 2019.21, 14.116, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1142, 4, '3 Story Condo In SF', 0, 0, 0, 120000, 0, -2169.63, 1028.01, 80.007, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1143, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 2636.22, 2019.21, 14.116, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1144, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 2643.66, 2019.21, 14.116, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1145, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 2645.58, 2019.21, 14.116, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1146, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 2653.25, 2019.21, 14.116, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1147, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 2650.33, 2029.23, 14.116, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1148, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 2648.34, 2029.23, 14.116, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1149, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 2640.71, 2029.23, 14.116, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1150, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 2638.92, 2029.23, 14.116, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1151, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 2631.54, 2029.23, 14.116, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1152, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 2629.68, 2029.23, 14.116, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1153, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 2622.22, 2029.23, 14.116, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1154, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 2620.37, 2029.23, 14.116, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1155, 4, '3 Story Condo In SF', 0, 0, 0, 120000, 0, -2160.15, 1030.61, 80.007, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1156, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 2652.92, 2019.21, 10.818, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1157, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 2617.54, 2019.21, 10.812, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1158, 4, '3 Story Condo In SF', 0, 0, 0, 120000, 0, -2160.15, 1048.61, 80.007, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1159, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 2620.54, 2029.23, 10.82, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1160, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 2622.34, 2029.23, 10.82, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1161, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 2629.8, 2029.23, 10.82, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1162, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 2631.65, 2029.23, 10.82, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1163, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 2639.07, 2029.23, 10.82, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1164, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 2641.14, 2029.23, 10.82, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1165, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 2648.34, 2029.23, 10.82, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1166, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 2650.35, 2029.23, 10.812, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1167, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 2623.65, 2039.4, 10.82, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1168, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 2623.65, 2046.99, 10.812, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1169, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 2623.65, 2048.81, 10.812, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1170, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 2623.65, 2056.16, 10.812, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1171, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 2623.65, 2058.1, 10.812, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1172, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 2623.65, 2065.44, 10.82, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1173, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 2623.65, 2067.4, 10.82, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1174, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 2623.65, 2074.85, 10.812, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1175, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 2623.65, 2074.93, 14.116, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1176, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 2623.65, 2067.53, 14.116, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1177, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 2623.65, 2065.52, 14.116, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1178, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 2623.65, 2058.19, 14.116, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1179, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 2623.65, 2056.03, 14.116, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1180, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 2623.65, 2048.66, 14.116, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1181, 4, 'Medium house at LV', 0, 0, 0, 150000, 0, 2206.32, 691.25, 11.46, 0, 0, 0, 0, -1, 447, 1397.09, 1084.3, 0, 2, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1182, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 2623.65, 2046.85, 14.116, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1183, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 2623.65, 2039.52, 14.116, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1184, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 2613.64, 2042.23, 14.116, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1185, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 2613.64, 2044.19, 14.116, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1186, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 2613.64, 2051.56, 14.116, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1187, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 2613.64, 2053.43, 14.116, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1188, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 2613.64, 2060.92, 14.116, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1189, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 2613.64, 2062.75, 14.116, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1190, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 2613.64, 2070.18, 14.116, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1191, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 2613.64, 2072.07, 14.116, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1192, 4, '3 Story Condo In SF', 0, 0, 0, 120000, 0, -2160.15, 1066.91, 80.007, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1193, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 2626.63, 1968.82, 10.82, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1194, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 2628.41, 1968.82, 10.82, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1195, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 2635.94, 1968.82, 10.82, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1196, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 2637.82, 1968.82, 10.82, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1197, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 2645.3, 1968.82, 10.82, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1198, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 2647.13, 1968.82, 10.82, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1199, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 2654.56, 1968.82, 10.82, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1200, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 2656.5, 1968.82, 10.82, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1201, 4, '3 Story Condo In SF', 0, 0, 0, 120000, 0, -2158.36, 1117.61, 74.486, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1202, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 2659.19, 1978.84, 10.819, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1203, 4, '5 Story Condo In SF', 0, 0, 0, 500000, 0, -2158.36, 1148.65, 61.849, 0, 0, 0, 0, -1, 226.3, 1114.37, 1080.99, 0, 5, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1204, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 2613.64, 2071.98, 10.819, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1205, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 2613.64, 2070.12, 10.819, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1206, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 2613.64, 2062.79, 10.812, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1207, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 2613.63, 2060.82, 10.812, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1208, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 2613.64, 2053.51, 10.812, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1209, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 2613.64, 2051.58, 10.819, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1210, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 2613.64, 2044.13, 10.819, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1211, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 2613.64, 2042.09, 10.819, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1212, 4, '6 Story Condo In SF', 0, 0, 0, 450000, 0, -2172.59, 1163.75, 55.726, 0, 0, 0, 0, -1, 226.3, 1114.37, 1080.99, 0, 5, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1213, 4, '6 Story Condo In SF', 0, 0, 0, 450000, 0, -2189.18, 1163.76, 55.726, 0, 0, 0, 0, -1, 226.3, 1114.37, 1080.99, 0, 5, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1214, 4, '6 Story Condo In SF', 0, 0, 0, 450000, 0, -2205.8, 1163.76, 55.726, 0, 0, 0, 0, -1, 226.3, 1114.37, 1080.99, 0, 5, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1215, 4, '6 Story Condo In SF', 0, 0, 0, 450000, 0, -2222.19, 1163.75, 55.726, 0, 0, 0, 0, -1, 226.3, 1114.37, 1080.99, 0, 5, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1216, 4, '3 Story Condo In SF', 0, 0, 0, 120000, 0, -2102.54, 1159.83, 53.265, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1217, 4, '3 Story Condo In SF', 0, 0, 0, 120000, 0, -2084.2, 1159.83, 49.953, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1218, 4, '3 Story Condo In SF', 0, 0, 0, 120000, 0, -2065.95, 1159.84, 46.648, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1219, 4, 'Nice looking house at lv', 0, 0, 0, 300000, 0, 2013.25, 730.357, 11.453, 0, 0, 0, 0, -1, 234.22, 1063.89, 1084.21, 0, 6, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1220, 4, 'Medium house at LV', 0, 0, 0, 150000, 0, 2014.13, 775.195, 11.46, 0, 0, 0, 0, -1, 447, 1397.09, 1084.3, 0, 2, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1221, 4, 'Medium house at LV', 0, 0, 0, 150000, 950, 2042.44, 731.265, 11.46, 0, 0, 0, 0, -1, 447, 1397.09, 1084.3, 0, 2, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1222, 4, 'Medium house at LV', 0, 0, 0, 150000, 0, 2043.24, 776.096, 11.453, 0, 0, 0, 0, -1, 447, 1397.09, 1084.3, 0, 2, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1223, 4, '5 Story Condo In SF', 0, 0, 0, 500000, 0, -1761.05, 1174.03, 25.125, 0, 0, 0, 0, -1, 226.3, 1114.37, 1080.99, 0, 5, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1224, 4, 'Medium house at LV', 0, 0, 0, 150000, 0, 2065.13, 729.822, 11.468, 0, 0, 0, 0, -1, 447, 1397.09, 1084.3, 0, 2, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1225, 4, '6 Story Condo In SF', 0, 0, 0, 450000, 0, -1742.62, 1174.05, 25.125, 0, 0, 0, 0, -1, 226.3, 1114.37, 1080.99, 0, 5, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1226, 4, 'Medium house at LV', 0, 0, 0, 150000, 0, 2071.62, 776.637, 11.46, 0, 0, 0, 0, -1, 447, 1397.09, 1084.3, 0, 2, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1227, 4, 'Medium house at LV', 0, 0, 0, 150000, 1500, 2093.41, 730.359, 11.453, 0, 0, 0, 0, -1, 447, 1397.09, 1084.3, 0, 2, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1228, 4, 'Medium house at LV', 0, 0, 0, 150000, 0, 2094, 775.195, 11.453, 0, 0, 0, 0, -1, 447, 1397.09, 1084.3, 0, 2, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1229, 4, '5 Story Condo In SF', 0, 0, 0, 500000, 0, -1728.32, 1158.79, 30.451, 0, 0, 0, 0, -1, 226.3, 1114.37, 1080.99, 0, 5, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1230, 4, 'Medium house at LV', 0, 0, 0, 150000, 500, 2122.3, 731.264, 11.46, 0, 0, 0, 0, -1, 447, 1397.09, 1084.3, 0, 2, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1231, 4, 'Medium house at LV', 0, 0, 0, 150000, 0, 2123.41, 776.099, 11.444, 0, 0, 0, 0, -1, 447, 1397.09, 1084.3, 0, 2, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1232, 4, '5 Story Condo In SF', 0, 0, 0, 500000, 0, -1728.31, 1138.95, 38.568, 0, 0, 0, 0, -1, 226.3, 1114.37, 1080.99, 0, 5, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1233, 4, 'Medium house at LV', 0, 0, 0, 150000, 0, 2169.36, 772.38, 11.46, 0, 0, 0, 0, -1, 447, 1397.09, 1084.3, 0, 2, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1234, 4, 'Medium house at LV', 0, 0, 0, 150000, 0, 2177.18, 690.351, 11.46, 0, 0, 0, 0, -1, 447, 1397.09, 1084.3, 0, 2, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1235, 4, 'Medium house at LV', 0, 0, 0, 150000, 5000, 2228.68, 689.807, 11.46, 0, 0, 0, 0, -1, 447, 1397.09, 1084.3, 0, 2, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1236, 4, 'Medium house at LV', 0, 0, 0, 150000, 0, 2206, 736.635, 11.468, 0, 0, 0, 0, -1, 447, 1397.09, 1084.3, 0, 2, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1237, 4, 'Medium house at LV', 0, 0, 0, 150000, 0, 2177.61, 736.101, 11.46, 0, 0, 0, 0, -1, 447, 1397.09, 1084.3, 0, 2, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1238, 4, 'Medium house at LV', 0, 0, 0, 150000, 0, 2228.25, 735.2, 11.46, 0, 0, 0, 0, -1, 447, 1397.09, 1084.3, 0, 2, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1239, 4, '4 Story Condo In SF', 0, 0, 0, 400000, 0, -1929.89, 1190.53, 45.445, 0, 0, 0, 0, -1, 234.22, 1063.89, 358.5, 0, 6, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1240, 4, 'Medium house at LV', 0, 0, 0, 150000, 0, 2256.98, 690.343, 11.453, 0, 0, 0, 0, -1, 447, 1397.09, 1084.3, 0, 2, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1241, 4, '4 Story Condo In SF', 0, 0, 0, 400000, 0, -1915.56, 1190.54, 45.452, 0, 0, 0, 0, -1, 234.22, 1063.89, 358.5, 0, 6, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1242, 4, 'Medium house at LV', 0, 0, 0, 150000, 0, 2257.52, 736.108, 11.46, 0, 0, 0, 0, -1, 447, 1397.09, 1084.3, 0, 2, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1243, 4, '4 Story Condo In SF', 0, 0, 0, 400000, 0, -1872.07, 1146.71, 45.445, 0, 0, 0, 0, -1, 234.22, 1063.89, 358.5, 0, 6, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1244, 4, 'Medium house at LV', 0, 0, 0, 150000, 0, 2317.15, 690.35, 11.46, 0, 0, 0, 0, -1, 447, 1397.09, 1084.3, 0, 2, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1245, 4, '4 Story Condo In SF', 0, 0, 0, 400000, 0, -1872.08, 1125.38, 45.445, 0, 0, 0, 0, -1, 234.22, 1063.89, 358.5, 0, 6, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1246, 4, 'Medium house at LV', 0, 0, 0, 150000, 0, 2346.6, 736.635, 11.468, 0, 0, 0, 0, -1, 447, 1397.09, 1084.3, 0, 2, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1247, 4, 'Medium house at LV', 0, 0, 0, 150000, 0, 2346.35, 691.255, 11.46, 0, 0, 0, 0, -1, 447, 1397.09, 1084.3, 0, 2, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1248, 4, 'Medium house at LV', 0, 0, 0, 150000, 0, 2369.11, 735.196, 11.46, 0, 0, 0, 0, -1, 447, 1397.09, 1084.3, 0, 2, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1249, 4, '5 Story Condo In SF', 0, 0, 0, 500000, 0, -1901.41, 1203.19, 42.377, 0, 0, 0, 0, -1, 226.3, 1114.37, 1080.99, 0, 5, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1250, 4, 'Medium house at LV', 0, 0, 0, 150000, 0, 2368.45, 689.799, 11.46, 0, 0, 0, 0, -1, 447, 1397.09, 1084.3, 0, 2, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1251, 4, 'Medium house at LV', 0, 0, 0, 150000, 0, 2398.36, 736.103, 11.46, 0, 0, 0, 0, -1, 447, 1397.09, 1084.3, 0, 2, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1252, 4, 'Medium house at LV', 0, 0, 0, 150000, 0, 2396.96, 690.342, 11.453, 0, 0, 0, 0, -1, 447, 1397.09, 1084.3, 0, 2, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1253, 4, 'Medium house at LV', 0, 0, 0, 150000, 0, 2450.27, 742.539, 11.46, 0, 0, 0, 0, -1, 447, 1397.09, 1084.3, 0, 2, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1254, 4, '5 Story Condo In SF', 0, 0, 0, 500000, 0, -1852.62, 1162.22, 40.942, 0, 0, 0, 0, -1, 226.3, 1114.37, 1080.99, 0, 5, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1255, 4, 'Medium house at LV', 0, 0, 0, 150000, 0, 2450.81, 714.308, 11.468, 0, 0, 0, 0, -1, 447, 1397.09, 1084.3, 0, 2, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1256, 4, 'Medium house at LV', 0, 0, 0, 150000, 1, 2449.23, 689.736, 11.46, 0, 0, 0, 0, -1, 447, 1397.09, 1084.3, 0, 2, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1257, 4, 'Medium house at LV', 0, 0, 0, 150000, 0, 2450.27, 662.638, 11.46, 0, 0, 0, 0, -1, 447, 1397.09, 1084.3, 0, 2, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1258, 4, 'Medium house at LV', 0, 0, 0, 150000, 0, 2397.68, 656.109, 11.46, 0, 0, 0, 0, -1, 447, 1397.09, 1084.3, 0, 2, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1259, 4, 'Medium house at LV', 0, 0, 0, 150000, 0, 2368.38, 655.211, 11.46, 0, 0, 0, 0, -1, 447, 1397.09, 1084.3, 0, 2, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1260, 4, 'Medium house at LV', 0, 0, 0, 150000, 0, 2346.09, 656.638, 11.46, 0, 0, 0, 0, -1, 447, 1397.09, 1084.3, 0, 2, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1261, 4, 'Medium house at LV', 0, 0, 0, 150000, 100, 2317.81, 656.103, 11.453, 0, 0, 0, 0, -1, 447, 1397.09, 1084.3, 0, 2, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1262, 4, '4 Story Condo In SF', 0, 0, 0, 400000, 0, -1831.8, 1165.88, 33.682, 0, 0, 0, 0, -1, 234.22, 1063.89, 358.5, 0, 6, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1263, 4, 'Medium house at LV', 0, 0, 0, 150000, 0, 2258.11, 655.978, 11.453, 0, 0, 0, 0, -1, 447, 1397.09, 1084.3, 0, 2, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1264, 4, 'Medium house at LV', 0, 0, 0, 150000, 0, 2229.04, 655.184, 11.46, 0, 0, 0, 0, -1, 447, 1397.09, 1084.3, 0, 2, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1265, 4, 'Medium house at LV', 0, 0, 0, 150000, 0, 2206.41, 656.63, 11.468, 0, 0, 0, 0, -1, 447, 1397.09, 1084.3, 0, 2, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1266, 4, 'Medium house at LV', 0, 0, 0, 150000, 0, 2178.16, 655.993, 11.46, 0, 0, 0, 0, -1, 447, 1397.09, 1084.3, 0, 2, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1267, 4, '6 Story Condo In SF', 0, 0, 0, 450000, 0, -1732.27, 1115.52, 45.445, 0, 0, 0, 0, -1, 226.3, 1114.37, 1080.99, 0, 5, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1268, 4, 'Medium house at LV', 0, 0, 0, 150000, 0, 2123.27, 651.313, 11.46, 0, 0, 0, 0, -1, 447, 1397.09, 1084.3, 0, 2, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1269, 4, 'Medium house at LV', 0, 0, 0, 150000, 0, 2120.44, 696.091, 11.453, 0, 0, 0, 0, -1, 447, 1397.09, 1084.3, 0, 2, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1270, 4, '6 Story Condo In SF', 0, 0, 0, 450000, 0, -1776.18, 1115.52, 45.445, 0, 0, 0, 0, -1, 226.3, 1114.37, 1080.99, 0, 5, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1271, 4, 'Medium house at LV', 0, 0, 0, 150000, 0, 2091.24, 695.188, 11.46, 0, 0, 0, 0, -1, 447, 1397.09, 1084.3, 0, 2, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1272, 4, 'Medium house at LV', 0, 0, 0, 150000, 0, 2094.12, 650.404, 11.46, 0, 0, 0, 0, -1, 447, 1397.09, 1084.3, 0, 2, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1273, 4, '4 Story Condo In SF', 0, 0, 0, 400000, 0, -1780.11, 1138.79, 38.585, 0, 0, 0, 0, -1, 234.22, 1063.89, 358.5, 0, 6, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1274, 4, 'Medium house at LV', 0, 0, 0, 150000, 0, 2068.96, 696.629, 11.468, 0, 0, 0, 0, -1, 447, 1397.09, 1084.3, 0, 2, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1275, 4, '4 Story Condo In SF', 0, 0, 0, 400000, 0, -1780.12, 1158.76, 30.448, 0, 0, 0, 0, -1, 234.22, 1063.89, 358.5, 0, 6, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1276, 4, 'Medium house at LV', 0, 0, 0, 150000, 0, 2065.82, 649.861, 11.468, 0, 0, 0, 0, -1, 447, 1397.09, 1084.3, 0, 2, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1277, 4, 'Medium house at LV', 0, 0, 0, 150000, 0, 2040.71, 696.086, 11.453, 0, 0, 0, 0, -1, 447, 1397.09, 1084.3, 0, 2, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1278, 4, 'Medium house at LV', 0, 0, 0, 150000, 150, 2043.26, 651.311, 11.46, 0, 0, 0, 0, -1, 447, 1397.09, 1084.3, 0, 2, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1279, 4, 'Medium house at LV', 0, 0, 0, 150000, 400, 2011.61, 695.187, 11.46, 0, 0, 0, 0, -1, 447, 1397.09, 1084.3, 0, 2, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1280, 4, 'Medium house at LV', 0, 0, 0, 150000, 150, 2013.96, 650.404, 11.46, 0, 0, 0, 0, -1, 447, 1397.09, 1084.3, 0, 2, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1281, 4, '4 Story Condo In SF', 0, 0, 0, 400000, 0, -1820.68, 1117.26, 46.445, 0, 0, 0, 0, -1, 234.22, 1063.89, 358.5, 0, 6, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1282, 4, '4 Story Condo In SF', 0, 0, 0, 400000, 0, -1842.59, 1115.52, 45.445, 0, 0, 0, 0, -1, 234.22, 1063.89, 358.5, 0, 6, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1283, 4, '4 Story Condo In SF', 0, 0, 0, 400000, 0, -1860.83, 1115.51, 45.445, 0, 0, 0, 0, -1, 234.22, 1063.89, 358.5, 0, 6, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1284, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 2571.53, 719.404, 14.739, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1285, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 2579.08, 719.478, 14.739, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1286, 4, '4 Story Condo In SF', 0, 0, 0, 400000, 0, -2024.5, 1275.93, 7.187, 0, 0, 0, 0, -1, 234.22, 1063.89, 358.5, 0, 6, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1287, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 2571.53, 713.242, 14.739, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1288, 4, '4 Story Condo In SF', 0, 0, 0, 400000, 0, -2029, 1275.91, 7.187, 0, 0, 0, 0, -1, 234.22, 1063.89, 358.5, 0, 6, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1289, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 2579.08, 713.231, 14.739, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1290, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 2579.08, 719.545, 10.82, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1291, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 2571.7, 719.518, 10.82, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1292, 4, '3 Story Condo In SF', 0, 0, 0, 120000, 0, -2043.83, 1261.38, 9.204, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1293, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 2621.06, 719.538, 10.82, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1294, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 2613.51, 719.58, 10.82, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1295, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 2613.51, 719.468, 14.739, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1296, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 2621.06, 719.403, 14.739, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1297, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 2613.5, 713.375, 14.739, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1298, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 2621.06, 713.229, 14.739, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1299, 4, '3 Story Condo In SF', 0, 0, 0, 120000, 0, -2383.11, 1336.27, 12.805, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1300, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 2540.06, 719.542, 10.82, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1301, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 2532.51, 719.578, 10.82, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1302, 4, '3 Story Condo In SF', 0, 0, 0, 120000, 0, -2351.14, 1336.15, 12.786, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1303, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 2532.5, 719.581, 14.739, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1304, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 2540.06, 719.528, 14.739, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1305, 4, 'lv project apartment small', 0, 0, 0, 40000, 1, 2532.51, 713.226, 14.739, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1306, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 2540.06, 713.196, 14.739, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1307, 4, '3 Story Condo In SF', 0, 0, 0, 120000, 0, -2351.15, 1318.02, 16.224, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1308, 4, '3 Story Condo In SF', 0, 0, 0, 120000, 0, -2351.16, 1299.56, 19.584, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1309, 4, '3 Story Condo In SF', 0, 0, 0, 120000, 0, -2351.14, 1281.29, 22.944, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1310, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 2660.08, 719.421, 10.819, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1311, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 2652.53, 719.485, 10.82, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1312, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 2652.53, 719.519, 14.739, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1313, 4, '3 Story Condo In SF', 0, 0, 0, 120000, 0, -2351.15, 1262.93, 26.317, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1314, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 2660.08, 719.576, 14.739, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1315, 4, '3 Story Condo In SF', 0, 0, 0, 120000, 0, -2351.15, 1244.69, 29.679, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1316, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 2652.53, 713.158, 10.82, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1317, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 2660.08, 713.316, 10.82, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1318, 4, '3 Story Condo In SF', 0, 0, 0, 120000, 0, -2351.15, 1226.37, 33.03, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1319, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 2652.53, 713.269, 14.739, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1320, 4, '3 Story Condo In SF', 0, 0, 0, 120000, 0, -2383.13, 1226.35, 33.042, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1321, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 2660.08, 713.333, 14.739, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1322, 4, '3 Story Condo In SF', 0, 0, 0, 120000, 0, -2383.09, 1244.63, 29.686, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1323, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 2613.51, 713.393, 10.82, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1324, 4, '3 Story Condo In SF', 0, 0, 0, 120000, 0, -2383.14, 1262.96, 26.329, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1325, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 2621.06, 713.221, 10.82, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1326, 4, '3 Story Condo In SF', 0, 0, 0, 120000, 0, -2383.12, 1281.31, 22.963, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1327, 4, '3 Story Condo In SF', 0, 0, 0, 120000, 0, -2383.14, 1299.71, 19.599, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1328, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 2579.08, 713.21, 10.82, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1329, 4, '3 Story Condo In SF', 0, 0, 0, 120000, 0, -2383.12, 1317.95, 16.238, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1330, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 2571.53, 713.25, 10.82, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1331, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 2540.06, 713.254, 10.82, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1332, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 2532.51, 713.365, 10.82, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1333, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 2526.21, 750.095, 10.82, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1334, 4, 'Normal Size House In SF', 0, 0, 0, 85000, 0, -2433.08, 1338.17, 8.507, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1335, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 2526.13, 742.542, 10.82, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1336, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 2525.97, 742.541, 14.739, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1337, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 2526.04, 750.094, 14.739, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1338, 4, 'Small House In SF', 0, 0, 0, 30000, 0, -2433.76, 1318.71, 13.867, 0, 0, 0, 0, -1, 261.06, 1284.29, 1080.25, 0, 4, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1339, 4, 'Small House In SF', 0, 0, 0, 30000, 0, -2434.02, 1311.06, 15.418, 0, 0, 0, 0, -1, 261.058, 1284.29, 1080.25, 0, 4, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1340, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 2532.3, 742.541, 10.819, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1341, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 2532.36, 750.094, 10.819, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1342, 4, 'Small House In SF', 0, 0, 0, 30000, 0, -2433.07, 1301.14, 18.382, 0, 0, 0, 0, -1, 261.06, 1284.29, 1080.25, 0, 4, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1343, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 2532.43, 750.091, 14.739, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1344, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 2532.36, 742.543, 14.739, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1345, 4, 'Small House In SF', 0, 0, 0, 30000, 0, -2433.77, 1281.61, 23.742, 0, 0, 0, 0, -1, 261.06, 1284.29, 1080.25, 0, 4, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1346, 4, 'Small House In SF', 0, 0, 0, 30000, 0, -2434, 1274.07, 25.313, 0, 0, 0, 0, -1, 261.06, 1284.29, 1080.25, 0, 4, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1347, 4, 'Normal Size House In SF', 0, 0, 0, 85000, 0, -2433.06, 1264.12, 28.257, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1348, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 2660.31, 750.098, 10.819, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1349, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 2660.28, 742.544, 10.82, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1350, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 2666.5, 750.095, 10.82, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1351, 4, 'Small House In SF', 0, 0, 0, 30000, 0, -2433.72, 1244.43, 33.617, 0, 0, 0, 0, -1, 261.058, 1284.29, 1080.25, 0, 4, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1352, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 2666.5, 742.545, 10.82, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1353, 4, 'Small House In SF', 0, 0, 0, 30000, 0, -2477.24, 1244.31, 33.609, 0, 0, 0, 0, -1, 261.06, 1284.29, 1080.25, 0, 4, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1354, 4, 'Normal Size House In SF', 0, 0, 0, 85000, 0, -2477.93, 1264.22, 28.25, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1355, 4, 'Small House In SF', 0, 0, 0, 30000, 0, -2476.93, 1274.28, 25.314, 0, 0, 0, 0, -1, 261.06, 1284.29, 1080.25, 0, 4, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1356, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 2660.21, 742.546, 14.739, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1357, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 2660.38, 750.098, 14.739, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1358, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 2666.43, 742.544, 14.739, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1359, 4, 'Small House In SF', 0, 0, 0, 30000, 0, -2477.19, 1281.51, 23.726, 0, 0, 0, 0, -1, 261.06, 1284.29, 1080.25, 0, 4, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1360, 4, 'lv project apartment small', 0, 0, 0, 40000, 0, 2666.53, 750.098, 14.739, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1361, 4, 'Normal Size House In SF', 0, 0, 0, 85000, 0, -2477.88, 1301.24, 18.375, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1362, 4, 'Small House In SF', 0, 0, 0, 30000, 0, -2476.93, 1311.23, 15.411, 0, 0, 0, 0, -1, 261.059, 1284.29, 1080.25, 0, 4, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1363, 4, 'Small House In SF', 0, 0, 0, 30000, 0, -2477.2, 1318.62, 13.851, 0, 0, 0, 0, -1, 261.06, 1284.29, 1080.25, 0, 4, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1364, 4, 'Normal Size House In SF', 0, 0, 0, 85000, 0, -2477.87, 1338.25, 8.503, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1365, 4, 'Medium house at LV', 0, 0, 0, 150000, 5000, 1845.44, 661.125, 11.46, 0, 0, 0, 0, -1, 447, 1397.09, 1084.3, 0, 2, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1366, 4, 'Medium house at LV', 0, 0, 0, 150000, 200, 1844.53, 690.45, 11.453, 0, 0, 0, 0, -1, 447, 1397.09, 1084.3, 0, 2, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1367, 4, 'Medium house at LV', 0, 0, 0, 150000, 0, 1843.99, 718.83, 11.468, 0, 0, 0, 0, -1, 447, 1397.09, 1084.3, 0, 2, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1368, 4, 'Medium house at LV', 0, 0, 0, 150000, 0, 1845.44, 741.387, 11.46, 0, 0, 0, 0, -1, 447, 1397.09, 1084.3, 0, 2, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1369, 4, '3 Story Condo In SF', 0, 0, 0, 120000, 0, -2126.45, 1087.64, 80.007, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1370, 4, '3 Story Condo In SF', 0, 0, 0, 120000, 0, -2126.5, 1069.28, 80.007, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1371, 4, '5 Story Condo In SF', 0, 0, 0, 500000, 0, -2126.44, 1050.91, 80.007, 0, 0, 0, 0, -1, 226.3, 1114.37, 1080.99, 0, 5, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1372, 4, '5 Story Condo In SF', 0, 0, 0, 500000, 0, -2126.47, 1032.53, 80.007, 0, 0, 0, 0, -1, 226.3, 1114.37, 1080.99, 0, 5, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1373, 4, '3 Story Condo In SF', 0, 0, 0, 120000, 0, -2126.44, 1014.24, 80.007, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1374, 4, '3 Story Condo In SF', 0, 0, 0, 120000, 0, -2126.47, 996.319, 80.007, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1375, 4, '3 Story Condo In SF', 0, 0, 0, 120000, 0, -2126.44, 978.493, 80.007, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1376, 4, '3 Story Condo In SF', 0, 0, 0, 120000, 0, -2129.63, 942.578, 80, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1377, 4, '2 Story Condo In SF', 0, 0, 0, 120000, 0, -2116.77, 927.828, 86.079, 0, 0, 0, 0, -1, 447, 1397.09, 1084.3, 0, 2, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1378, 4, '3 Story Condo In SF', 0, 0, 0, 120000, 0, -2129.25, 895.038, 80, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1379, 4, '3 Story Condo In SF', 0, 0, 0, 120000, 0, -2126.4, 832.815, 69.562, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1380, 4, '3 Story Condo In SF', 0, 0, 0, 120000, 0, -2126.04, 774.131, 69.562, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1381, 4, '3 Story Condo In SF', 0, 0, 0, 120000, 0, -2126.08, 755.699, 69.562, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1382, 4, '3 Story Condo In SF', 0, 0, 0, 120000, 0, -2112.56, 746.415, 69.562, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1383, 4, '3 Story Condo In SF', 0, 0, 0, 120000, 0, -2094.2, 746.424, 69.562, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1384, 4, '3 Story Condo In SF', 0, 0, 0, 120000, 0, -2066.57, 746.057, 64.895, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1385, 4, '3 Story Condo In SF', 0, 0, 0, 120000, 0, -2048.12, 746.08, 57.042, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1386, 4, '3 Story Condo In SF', 0, 0, 0, 120000, 0, -2029.84, 746.08, 49.464, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1387, 4, '3 Story Condo In SF', 0, 0, 0, 120000, 0, -2018.55, 748.037, 45.445, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1388, 4, '3 Story Condo In SF', 0, 0, 0, 120000, 0, -2018.54, 766.224, 45.445, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1389, 4, '3 Story Condo In SF', 0, 0, 0, 120000, 0, -2018.53, 784.821, 45.445, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1390, 4, '3 Story Condo In SF', 0, 0, 0, 120000, 0, -2029.85, 796.118, 49.467, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1391, 4, '3 Story Condo In SF', 0, 0, 0, 120000, 0, -2048.22, 796.097, 57.039, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1392, 4, '3 Story Condo In SF', 0, 0, 0, 120000, 0, -2066.44, 796.124, 64.924, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1393, 4, '3 Story Condo In SF', 0, 0, 0, 120000, 0, -2094.25, 795.745, 69.562, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1394, 4, '3 Story Condo In SF', 0, 0, 0, 120000, 0, -2112.67, 795.752, 69.562, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1395, 4, '3 Story Condo In SF', 0, 0, 0, 120000, 0, -2112.63, 823.535, 69.562, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1396, 4, '3 Story Condo In SF', 0, 0, 0, 120000, 0, -2094.18, 823.546, 69.562, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1397, 4, '3 Story Condo In SF', 0, 0, 0, 120000, 0, -2066.48, 820.686, 64.923, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1398, 4, '3 Story Condo In SF', 0, 0, 0, 120000, 0, -2048.12, 820.692, 57.026, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1399, 4, '3 Story Condo In SF', 0, 0, 0, 120000, 0, -2029.81, 820.68, 49.463, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1400, 4, '3 Story Condo In SF', 0, 0, 0, 120000, 0, -2018.54, 832.175, 45.445, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1401, 4, '6 Story Condo In SF', 0, 0, 0, 450000, 0, -2018.54, 849.283, 45.448, 0, 0, 0, 0, -1, 226.3, 1114.37, 1080.99, 0, 5, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1402, 4, '6 Story Condo In SF', 0, 0, 0, 450000, 0, -2018.53, 865.804, 45.444, 0, 0, 0, 0, -1, 226.3, 1114.37, 1080.99, 0, 5, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1403, 4, '4 Story Condo In SF', 0, 0, 0, 400000, 0, -2016.35, 897.455, 45.445, 0, 0, 0, 0, -1, 234.22, 1063.89, 358.5, 0, 6, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1404, 4, '3 Story Condo In SF', 0, 0, 0, 120000, 0, -2034.17, 901.466, 50.457, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1405, 4, 'Large Condo In SF', 0, 0, 0, 420000, 0, -2075.25, 898.651, 64.132, 0, 0, 0, 0, -1, 234.22, 1063.89, 1084.21, 0, 6, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1406, 4, 'Large Condo In SF', 0, 0, 0, 420000, 0, -2084.75, 898.646, 64.132, 0, 0, 0, 0, -1, 234.22, 1063.89, 1084.21, 0, 6, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1407, 4, '3 Story Condo In SF', 0, 0, 0, 120000, 0, -2099.46, 897.382, 76.708, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1408, 4, '5 Story Condo In SF', 0, 0, 0, 500000, 0, -2018.29, 970.072, 45.444, 0, 0, 0, 0, -1, 226.3, 1114.37, 1080.99, 0, 5, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1409, 4, '3 Story Condo In SF', 0, 0, 0, 120000, 0, -2018.3, 982.705, 47.685, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1410, 4, '3 Story Condo In SF', 0, 0, 0, 120000, 0, -2018.29, 1000.03, 50.778, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1411, 4, '3 Story Condo In SF', 0, 0, 0, 120000, 0, -2018.3, 1016.93, 53.866, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1412, 4, 'Medium house at LV', 0, 0, 0, 150000, 0, 984.466, 2343.69, 11.468, 0, 0, 0, 0, -1, 447, 1397.09, 1084.3, 0, 2, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1413, 4, 'Medium house at LV', 0, 0, 0, 150000, 0, 985.477, 2314.3, 11.46, 0, 0, 0, 0, -1, 447, 1397.09, 1084.3, 0, 2, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1414, 4, 'Medium house at LV', 0, 0, 0, 150000, 0, 986.487, 2271.25, 11.46, 0, 0, 0, 0, -1, 447, 1397.09, 1084.3, 0, 2, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1415, 4, 'Medium house at LV', 0, 0, 0, 150000, 1, 956.897, 2270.27, 11.468, 0, 0, 0, 0, -1, 447, 1397.09, 1084.3, 0, 2, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1416, 4, 'Medium house at LV', 0, 0, 0, 150000, 0, 1030.81, 2028.11, 11.468, 0, 0, 0, 0, -1, 447, 1397.09, 1084.3, 0, 2, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1417, 4, 'Medium house at LV', 0, 0, 0, 150000, 0, 1029.36, 2005.64, 11.46, 0, 0, 0, 0, -1, 447, 1397.09, 1084.3, 0, 2, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1418, 4, 'Medium house at LV', 0, 0, 0, 150000, 0, 985.411, 2000.59, 11.46, 0, 0, 0, 0, -1, 447, 1397.09, 1084.3, 0, 2, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1419, 4, 'Medium house at LV', 0, 0, 0, 150000, 0, 984.508, 2030.18, 11.468, 0, 0, 0, 0, -1, 447, 1397.09, 1084.3, 0, 2, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1420, 4, 'Small House In SF', 0, 0, 0, 30000, 0, -2905.21, 1154.89, 13.663, 0, 0, 0, 0, -1, 261.058, 1284.29, 1080.25, 0, 4, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1421, 4, 'Small House In SF', 0, 0, 0, 30000, 0, -2905.16, 1165.04, 13.663, 0, 0, 0, 0, -1, 261.058, 1284.29, 1080.25, 0, 4, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1422, 4, 'Medium house at LV', 0, 0, 0, 150000, 0, 1030.27, 1976.01, 11.468, 0, 0, 0, 0, -1, 447, 1397.09, 1084.3, 0, 2, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1423, 4, 'Small House In SF', 0, 0, 0, 30000, 0, -2905.25, 1171.55, 13.663, 0, 0, 0, 0, -1, 261.058, 1284.29, 1080.25, 0, 4, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1424, 4, 'Small House In SF', 0, 0, 0, 30000, 0, -2905.09, 1178.76, 13.663, 0, 0, 0, 0, -1, 261.058, 1284.29, 1080.25, 0, 4, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1425, 4, 'Medium house at LV', 0, 0, 0, 150000, 0, 983.971, 1978.2, 11.468, 0, 0, 0, 0, -1, 447, 1397.09, 1084.3, 0, 2, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1426, 4, 'Medium house at LV', 0, 0, 0, 150000, 0, 984.703, 1930.83, 11.468, 0, 0, 0, 0, -1, 447, 1397.09, 1084.3, 0, 2, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1427, 4, 'Medium house at LV', 0, 0, 0, 150000, 0, 1030.81, 1928.11, 11.468, 0, 0, 0, 0, -1, 447, 1397.09, 1084.3, 0, 2, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1428, 4, 'Small Nice House In SF', 0, 0, 0, 60000, 0, -2904.7, 1118.82, 27.07, 0, 0, 0, 0, -1, 22.93, 1403.32, 1084.43, 0, 5, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1429, 4, 'Medium house at LV', 0, 0, 0, 150000, 500, 1029.36, 1905.92, 11.46, 0, 0, 0, 0, -1, 447, 1397.09, 1084.3, 0, 2, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1430, 4, 'Small House In SF', 0, 0, 0, 30000, 0, -2904.8, 1111.52, 27.069, 0, 0, 0, 0, -1, 261.058, 1284.29, 1080.25, 0, 4, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1431, 4, 'Medium house at LV', 0, 0, 0, 150000, 0, 985.413, 1901.04, 11.46, 0, 0, 0, 0, -1, 447, 1397.09, 1084.3, 0, 2, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1432, 4, 'Small House In SF', 0, 0, 0, 30000, 0, -2904.47, 1101.11, 27.069, 0, 0, 0, 0, -1, 261.058, 1284.29, 1080.25, 0, 4, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1433, 4, 'Medium house at LV', 0, 0, 0, 150000, 0, 983.971, 1878.94, 11.468, 0, 0, 0, 0, -1, 447, 1397.09, 1084.3, 0, 2, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1434, 4, 'Medium house at LV', 0, 0, 0, 150000, 0, 1030.37, 1876.35, 11.468, 0, 0, 0, 0, -1, 447, 1397.09, 1084.3, 0, 2, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1435, 4, 'Medium house at LV', 0, 0, 0, 150000, 0, 1030.81, 1847.93, 11.468, 0, 0, 0, 0, -1, 447, 1397.09, 1084.3, 0, 2, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1436, 4, 'LS Project', 0, 0, 0, 4000, 1500, 2158.34, -1611.31, 14.35, 0, 0, 0, 0, -1, 244.41, 305.032, 999.148, 0, 1, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1437, 4, 'LS Project', 0, 0, 0, 4000, 1000, 2129.11, -1663.94, 15.085, 0, 0, 0, 0, -1, 244.41, 305.032, 999.148, 0, 1, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1438, 4, 'LS Project', 0, 0, 0, 4000, 100, 2141.49, -1652.85, 15.085, 0, 0, 0, 0, -1, 244.41, 305.032, 999.148, 0, 1, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1439, 4, '*LS Project', 0, 0, 0, 4000, 95, 2172.59, -1615.28, 14.281, 0, 0, 0, 0, -1, 244.41, 305.032, 999.148, 0, 1, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1440, 4, 'LS Project', 0, 0, 0, 4000, 0, 2179.08, -1600.11, 14.345, 0, 0, 0, 0, -1, 244.41, 305.032, 999.148, 0, 1, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1441, 4, 'LS Project', 0, 0, 0, 4000, 0, 2165.56, -1590.49, 14.345, 0, 0, 0, 0, -1, 244.41, 305.032, 999.148, 0, 1, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1442, 4, 'LS Project', 0, 0, 0, 4000, 0, 2151.2, -1598.49, 14.345, 0, 0, 0, 0, -1, 244.41, 305.032, 999.148, 0, 1, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1443, 4, 'LS Project', 0, 0, 0, 4000, 0, 2150.4, -1583.96, 14.336, 0, 0, 0, 0, -1, 244.41, 305.032, 999.148, 0, 1, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1444, 4, 'LS Project', 0, 0, 0, 4000, 0, 2136, -1591.98, 14.35, 0, 0, 0, 0, -1, 244.41, 305.032, 999.148, 0, 1, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1445, 4, 'LS Project', 0, 0, 0, 4000, 0, 2143.29, -1571.2, 14.192, 0, 0, 0, 0, -1, 244.41, 305.032, 999.148, 0, 1, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1446, 4, 'LS Project', 0, 0, 0, 4000, 0, 2158.51, -1577.71, 14.281, 0, 0, 0, 0, -1, 244.41, 305.032, 999.148, 0, 1, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1447, 4, 'LS Project', 0, 0, 0, 4000, 0, 2191.91, -1592.97, 14.35, 0, 0, 0, 0, -1, 244.41, 305.032, 999.148, 0, 1, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1448, 4, 'LS Project', 0, 0, 0, 4000, 0, 2185.31, -1608.14, 14.359, 0, 0, 0, 0, -1, 244.41, 305.032, 999.148, 0, 1, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1449, 4, 'LS Project', 0, 0, 0, 4000, 0, 2143.12, -1604.72, 14.35, 0, 0, 0, 0, -1, 244.41, 305.032, 999.148, 0, 1, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1450, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 0, 2068.14, -1588.86, 13.489, 0, 0, 0, 0, -1, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1451, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 0, 2073.36, -1583.05, 13.472, 0, 0, 0, 0, -1, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1452, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 0, 2065.33, -1583.36, 13.479, 0, 0, 0, 0, -1, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1453, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 0, 2076.11, -1588.67, 13.491, 0, 0, 0, 0, -1, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1454, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 0, 2072.5, -1559.31, 13.409, 0, 0, 0, 0, -1, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1455, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 0, 2066.81, -1554.09, 13.434, 0, 0, 0, 0, -1, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1456, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 0, 2066.96, -1562.17, 13.428, 0, 0, 0, 0, -1, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1457, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 0, 2072.27, -1551.3, 13.423, 0, 0, 0, 0, -1, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1458, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 250, 1852.3, -2019.63, 13.545, 0, 0, 0, 0, -1, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1459, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 2000, 1852.33, -2021.36, 13.545, 0, 0, 0, 0, -1, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1460, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 0, 1857.1, -2035.08, 13.545, 0, 0, 0, 0, -1, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1461, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 0, 1858.71, -2035.04, 13.545, 0, 0, 0, 0, -1, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1462, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 0, 1867.87, -2028.42, 13.545, 0, 0, 0, 0, -1, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1463, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 500, 1864.98, -2021.37, 13.545, 0, 0, 0, 0, -1, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1464, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 0, 1864.95, -2019.64, 13.545, 0, 0, 0, 0, -1, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1465, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 50, 1865.96, -2003.88, 13.545, 0, 0, 0, 0, -1, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1466, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 500, 1867.77, -2003.87, 13.545, 0, 0, 0, 0, -1, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1467, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 0, 1867.88, -2010.06, 13.545, 0, 0, 0, 0, -1, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1468, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 0, 1888.93, -2000.94, 13.545, 0, 0, 0, 0, -1, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1469, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 0, 1877.32, -2001.01, 13.545, 0, 0, 0, 0, -1, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1470, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 0, 1867.75, -1998.07, 13.545, 0, 0, 0, 0, -1, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1471, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 0, 1866.01, -1998.09, 13.545, 0, 0, 0, 0, -1, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1472, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 200, 1867.79, -1985.4, 13.545, 0, 0, 0, 0, -1, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1473, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 0, 1866, -1985.45, 13.545, 0, 0, 0, 0, -1, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1474, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 0, 1852.28, -1990.19, 13.545, 0, 0, 0, 0, -1, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1475, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 449, 1852.33, -1991.81, 13.545, 0, 0, 0, 0, -1, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1476, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 0, 1858.96, -2001, 13.545, 0, 0, 0, 0, -1, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1477, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 500, 1849.4, -2010.06, 13.545, 0, 0, 0, 0, -1, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1478, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 0, 1895.53, -2019.67, 13.545, 0, 0, 0, 0, -1, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1479, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 0, 1895.53, -2021.36, 13.545, 0, 0, 0, 0, -1, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1480, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 0, 1898.99, -2037.96, 13.545, 0, 0, 0, 0, -1, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1481, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 0, 1898.37, -2028.42, 13.545, 0, 0, 0, 0, -1, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1482, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 0, 1905.98, -2035.08, 13.545, 0, 0, 0, 0, -1, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1483, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 0, 1907.71, -2035.05, 13.545, 0, 0, 0, 0, -1, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1484, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 0, 1913.96, -2021.43, 13.545, 0, 0, 0, 0, -1, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1485, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 450, 1913.95, -2019.65, 13.545, 0, 0, 0, 0, -1, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1486, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 0, 1901.33, -2019.64, 13.545, 0, 0, 0, 0, -1, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1487, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 0, 1901.34, -2021.43, 13.545, 0, 0, 0, 0, -1, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1488, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 0, 1916.9, -2028.42, 13.545, 0, 0, 0, 0, -1, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1489, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 0, 1919.76, -2021.34, 13.545, 0, 0, 0, 0, -1, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1490, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 0, 1919.76, -2019.62, 13.545, 0, 0, 0, 0, -1, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1491, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 0, 1916.9, -2000.38, 13.545, 0, 0, 0, 0, -1, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1492, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 0, 1916.89, -2010.06, 13.545, 0, 0, 0, 0, -1, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1493, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 0, 1907.28, -2001.01, 13.545, 0, 0, 0, 0, -1, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1494, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 730, 1913.95, -1993.45, 13.545, 0, 0, 0, 0, -1, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1495, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 0, 1913.92, -1991.56, 13.545, 0, 0, 0, 0, -1, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1496, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 0, 1907.29, -1982.51, 13.545, 0, 0, 0, 0, -1, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1497, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 5000, 1900.31, -1979.61, 13.545, 0, 0, 0, 0, -1, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1498, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 0, 1898.66, -1979.62, 13.545, 0, 0, 0, 0, -1, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1499, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 0, 1916.76, -1982.03, 13.545, 0, 0, 0, 0, -1, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1500, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 0, 1919.72, -1993.24, 13.545, 0, 0, 0, 0, -1, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1501, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 0, 1919.72, -1991.62, 13.545, 0, 0, 0, 0, -1, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1502, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 0, 1900.21, -1985.39, 13.545, 0, 0, 0, 0, -1, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1503, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 145, 1898.54, -1985.42, 13.545, 0, 0, 0, 0, -1, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1504, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 0, 1900.25, -1998.04, 13.545, 0, 0, 0, 0, -1, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1505, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 0, 1898.49, -1998.06, 13.545, 0, 0, 0, 0, -1, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1506, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 0, 1870.76, -2019.59, 13.545, 0, 0, 0, 0, -1, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1507, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 0, 1870.76, -2021.39, 13.545, 0, 0, 0, 0, -1, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1508, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 100, 1868.35, -2037.97, 13.545, 0, 0, 0, 0, -1, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1509, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 0, 1858.79, -2040.85, 13.545, 0, 0, 0, 0, -1, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1510, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 0, 1857.02, -2040.85, 13.545, 0, 0, 0, 0, -1, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1511, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 0, 1906.17, -2040.85, 13.545, 0, 0, 0, 0, -1, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1512, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 0, 1907.74, -2040.85, 13.545, 0, 0, 0, 0, -1, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1513, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 0, 1849.99, -2037.92, 13.545, 0, 0, 0, 0, -1, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1514, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 0, 1849.42, -2028.42, 13.545, 0, 0, 0, 0, -1, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1515, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 0, 1846.53, -2021.35, 13.545, 0, 0, 0, 0, -1, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1516, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 0, 1846.53, -2019.77, 13.545, 0, 0, 0, 0, -1, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1517, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 0, 1849.45, -2001.46, 13.545, 0, 0, 0, 0, -1, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1518, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 0, 1838.7, -1995.85, 13.545, 0, 0, 0, 0, -1, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1519, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 0, 1838.7, -1994.18, 13.545, 0, 0, 0, 0, -1, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1520, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 500, 1846.53, -1991.87, 13.545, 0, 0, 0, 0, -1, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1521, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 500, 1846.53, -1990.15, 13.545, 0, 0, 0, 0, -1, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1522, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 0, 1849.35, -1983.11, 13.545, 0, 0, 0, 0, -1, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1523, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 0, 1858.96, -1982.62, 13.545, 0, 0, 0, 0, -1, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1524, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 0, 1888.93, -1982.5, 13.545, 0, 0, 0, 0, -1, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1525, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 0, 1917.35, -2037.98, 13.545, 0, 0, 0, 0, -1, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1526, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 0, 1835.86, -2005.48, 13.545, 0, 0, 0, 0, -1, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1527, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 0, 1835.93, -1987.13, 13.545, 0, 0, 0, 0, -1, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1528, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 0, 1835.24, -1977.53, 13.545, 0, 0, 0, 0, -1, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1529, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 1000, 1828.37, -1980.44, 13.545, 0, 0, 0, 0, -1, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1530, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 0, 1826.53, -1980.51, 13.545, 0, 0, 0, 0, -1, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1531, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 1, 1817.51, -1987.13, 13.553, 0, 0, 0, 0, -1, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1532, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 0, 1816.89, -1977.5, 13.545, 0, 0, 0, 0, -1, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1533, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 1, 1826.53, -1974.69, 13.545, 0, 0, 0, 0, -1, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1534, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 1, 1828.07, -1974.69, 13.545, 0, 0, 0, 0, -1, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1535, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 0, 1832.9, -1994.11, 13.545, 0, 0, 0, 0, -1, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1536, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 0, 1820.28, -1995.94, 13.553, 0, 0, 0, 0, -1, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1537, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 200, 1820.24, -1994.23, 13.553, 0, 0, 0, 0, -1, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1538, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 0, 1817.43, -2005.49, 13.553, 0, 0, 0, 0, -1, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1539, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 0, 1814.47, -1995.92, 13.553, 0, 0, 0, 0, -1, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1540, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 100, 1814.48, -1994.15, 13.553, 0, 0, 0, 0, -1, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1541, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 0, 1867.74, -1979.65, 13.545, 0, 0, 0, 0, -1, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1542, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 1000, 1865.92, -1979.65, 13.545, 0, 0, 0, 0, -1, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1543, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 0, 1877.32, -1982.49, 13.545, 0, 0, 0, 0, -1, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1544, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 0, 1801.99, -2098.94, 14.02, 0, 0, 0, 0, -1, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1545, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 0, 1804.19, -2124.9, 13.942, 0, 0, 0, 0, -1, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1546, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 0, 1781.45, -2101.27, 14.055, 0, 0, 0, 0, -1, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1547, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 0, 1782.09, -2126.37, 14.067, 0, 0, 0, 0, -1, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1548, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 0, 1761.17, -2125.45, 14.055, 0, 0, 0, 0, -1, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1549, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 0, 1762.39, -2101.98, 13.854, 0, 0, 0, 0, -1, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1550, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 0, 1734.15, -2097.98, 14.036, 0, 0, 0, 0, -1, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1551, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 0, 1734.62, -2130.35, 14.02, 0, 0, 0, 0, -1, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1552, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 1000, 1715.06, -2125.45, 14.055, 0, 0, 0, 0, -1, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1553, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 1000, 1711.67, -2101.24, 14.02, 0, 0, 0, 0, -1, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1554, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 250, 1695.52, -2125.83, 13.81, 0, 0, 0, 0, -1, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1555, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 0, 1684.72, -2098.16, 13.833, 0, 0, 0, 0, -1, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1556, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 0, 1673.68, -2122.46, 14.145, 0, 0, 0, 0, -1, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1557, 4, 'normal house at ls', 0, 0, 0, 150000, 0, 1616.15, -1897.58, 13.548, 0, 0, 0, 0, -1, 447, 1397.09, 1084.3, 0, 2, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1558, 4, 'normal house at ls', 0, 0, 0, 150000, 0, 1610.88, -1893.88, 13.545, 0, 0, 0, 0, -1, 447, 1397.09, 1084.3, 0, 2, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1559, 4, 'normal house at ls', 0, 0, 0, 150000, 0, 1628.69, -1903.36, 13.553, 0, 0, 0, 0, -1, 447, 1397.09, 1084.3, 0, 2, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1560, 4, 'House Near Vinewood', 0, 0, 0, 150000, 100, 1325.95, -1067.65, 31.554, 0, 0, 0, 0, -1, 447, 1397.09, 1084.3, 0, 2, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1561, 4, 'House Near Vinewood', 0, 0, 0, 150000, 0, 1326.26, -1090.61, 27.975, 0, 0, 0, 0, -1, 447, 1397.09, 1084.3, 0, 2, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1562, 4, 'House Near Vinewood', 0, 0, 0, 150000, 0, 1285.27, -1090.28, 28.256, 0, 0, 0, 0, -1, 447, 1397.09, 1084.3, 0, 2, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1563, 4, 'House Near Vinewood', 0, 0, 0, 150000, 0, 1242.26, -1099.51, 27.975, 0, 0, 0, 0, -1, 447, 1397.09, 1084.3, 0, 2, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1564, 4, 'House Near Vinewood', 0, 0, 0, 150000, 0, 1241.94, -1076.43, 31.554, 0, 0, 0, 0, -1, 447, 1397.09, 1084.3, 0, 2, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1565, 4, 'House Near Vinewood', 0, 0, 0, 150000, 0, 1285.26, -1067.31, 31.677, 0, 0, 0, 0, -1, 447, 1397.09, 1084.3, 0, 2, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1566, 4, 'House near vinewood small LS', 0, 0, 0, 100000, 0, 1189.01, -1018.12, 36.234, 0, 0, 0, 0, -1, 447, 1397.09, 1084.3, 0, 2, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1567, 4, 'House near vinewood small LS', 0, 0, 0, 100000, 5000, 1196.48, -1016.99, 36.234, 0, 0, 0, 0, -1, 447, 1397.09, 1084.3, 0, 2, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1568, 4, 'House near vinewood small LS', 0, 0, 0, 100000, 0, 1188.19, -1011.88, 36.226, 0, 0, 0, 0, -1, 447, 1397.09, 1084.3, 0, 2, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1569, 4, 'House near vinewood small LS', 0, 0, 0, 100000, 0, 1195.68, -1010.91, 36.226, 0, 0, 0, 0, -1, 447, 1397.09, 1084.3, 0, 2, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1570, 4, 'House near vinewood small LS', 0, 0, 0, 100000, 100, 1188.19, -1011.89, 32.546, 0, 0, 0, 0, -1, 447, 1397.09, 1084.3, 0, 2, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1571, 4, 'House near vinewood small LS', 0, 0, 0, 100000, 0, 1195.69, -1010.93, 32.553, 0, 0, 0, 0, -1, 447, 1397.09, 1084.3, 0, 2, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1572, 4, 'House near vinewood small LS', 0, 0, 0, 100000, 100, 1189.01, -1018.09, 32.546, 0, 0, 0, 0, -1, 447, 1397.09, 1084.3, 0, 2, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1573, 4, 'House near vinewood small LS', 0, 0, 0, 100000, 0, 1196.5, -1017.15, 32.546, 0, 0, 0, 0, -1, 447, 1397.09, 1084.3, 0, 2, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1574, 4, 'House near vinewood small LS', 0, 0, 0, 100000, 500, 1234.73, -1016.13, 32.604, 0, 0, 0, 0, -1, 447, 1397.09, 1084.3, 0, 2, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1575, 4, 'House near vinewood small LS', 0, 0, 0, 100000, 50, 1227.25, -1017.18, 32.601, 0, 0, 0, 0, -1, 447, 1397.09, 1084.3, 0, 2, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1576, 4, 'House near vinewood small LS', 0, 0, 0, 100000, 0, 1233.93, -1010.05, 32.601, 0, 0, 0, 0, -1, 447, 1397.09, 1084.3, 0, 2, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1577, 4, 'House near vinewood small LS', 0, 0, 0, 100000, 0, 1226.44, -1011.03, 32.601, 0, 0, 0, 0, -1, 447, 1397.09, 1084.3, 0, 2, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1578, 4, 'House near vinewood small LS', 0, 0, 0, 100000, 1500, 1234.73, -1016.15, 36.335, 0, 0, 0, 0, -1, 447, 1397.09, 1084.3, 0, 2, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1579, 4, 'House near vinewood small LS', 0, 0, 0, 100000, 0, 1227.25, -1017.18, 36.333, 0, 0, 0, 0, -1, 447, 1397.09, 1084.3, 0, 2, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1580, 4, 'House near vinewood small LS', 0, 0, 0, 100000, 0, 1233.92, -1009.97, 36.328, 0, 0, 0, 0, -1, 447, 1397.09, 1084.3, 0, 2, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1581, 4, 'House near vinewood small LS', 0, 0, 0, 100000, 0, 1226.44, -1011.01, 36.327, 0, 0, 0, 0, -1, 447, 1397.09, 1084.3, 0, 2, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1582, 4, 'House Near Vinewood', 0, 0, 0, 150000, 1, 1127.97, -1021.17, 34.992, 0, 0, 0, 0, -1, 447, 1397.09, 1084.3, 0, 2, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1583, 4, 'House Near Vinewood', 0, 0, 0, 150000, 0, 1118.05, -1021.17, 34.992, 0, 0, 0, 0, -1, 447, 1397.09, 1084.3, 0, 2, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1584, 4, 'House Near Vinewood', 0, 0, 0, 150000, 500, 1051.03, -1059.3, 34.796, 0, 0, 0, 0, -1, 447, 1397.09, 1084.3, 0, 2, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1585, 4, 'House Near Vinewood', 0, 0, 0, 150000, 0, 993.757, -1059.03, 33.699, 0, 0, 0, 0, -1, 447, 1397.09, 1084.3, 0, 2, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1586, 4, 'Mansion', 0, 0, 0, 5250000, 0, 952.609, -909.104, 45.763, 0, 0, 0, 0, -1, 1298.81, -796.658, 1084.01, 0, 5, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1587, 4, 'House Near Vinewood', 0, 0, 0, 150000, 100, 1411.1, -920.861, 38.421, 0, 0, 0, 0, -1, 447, 1397.09, 1084.3, 0, 2, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1588, 4, 'House Near Vinewood', 0, 0, 0, 150000, 0, 1440.67, -926.135, 39.645, 0, 0, 0, 0, -1, 447, 1397.09, 1084.3, 0, 2, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1589, 4, 'small house at vinewood', 0, 0, 0, 150000, 0, 1421.78, -886.229, 50.686, 0, 0, 0, 0, -1, 295.209, 1472.26, 1080.25, 0, 15, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1590, 4, 'small house at vinewood', 0, 0, 0, 150000, 0, 1468.54, -906.181, 54.833, 0, 0, 0, 0, -1, 295.209, 1472.26, 1080.25, 0, 15, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1591, 4, 'house at vinewood', 0, 0, 0, 250000, 0, 1535.72, -885.249, 57.657, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1592, 4, 'Small House at Vinewood', 0, 0, 0, 400000, 100, 1540.47, -851.437, 64.333, 0, 0, 0, 0, -1, 234.22, 1063.89, 1084.21, 0, 6, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1593, 4, 'small house at vinewood', 0, 0, 0, 150000, 0, 1535.03, -800.169, 72.847, 0, 0, 0, 0, -1, 295.209, 1472.26, 1080.25, 0, 15, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1594, 4, 'House', 0, 0, 0, 150000, 0, 1527.88, -772.64, 80.578, 0, 0, 0, 0, -1, 295.209, 1472.26, 1080.25, 0, 15, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1595, 4, 'House At Vinewood With Swimming Pool', 0, 0, 0, 550000, 0, 1442.68, -628.83, 95.718, 0, 0, 0, 0, -1, 226.3, 1114.37, 1080.99, 0, 5, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1596, 4, 'Fancy Mansion with swimming pool', 0, 0, 0, 550000, 1500, 1331.99, -633.546, 109.134, 0, 0, 0, 0, -1, 226.3, 1114.37, 1080.99, 0, 5, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1597, 4, 'House at Vinewood', 0, 0, 0, 400000, 0, 1094.99, -647.906, 113.648, 0, 0, 0, 0, -1, 234.22, 1063.89, 1084.21, 0, 6, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1598, 4, 'House At Vinewood without swimming pool', 0, 0, 0, 400000, 0, 1045.16, -642.94, 120.111, 0, 0, 0, 0, -1, 234.22, 1063.89, 1084.21, 0, 6, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1599, 4, 'House At Vinewood With Swimming Pool', 0, 0, 0, 550000, 0, 897.927, -677.106, 116.888, 0, 0, 0, 0, -1, 226.3, 1114.37, 1080.99, 0, 5, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1600, 4, 'small house at vinewood', 0, 0, 0, 150000, 0, 946.304, -710.692, 122.619, 0, 0, 0, 0, -1, 295.209, 1472.26, 1080.25, 0, 15, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1601, 4, 'house at vinewood', 0, 0, 0, 250000, 0, 867.491, -717.575, 105.679, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1602, 4, 'house at vinewood', 0, 0, 0, 250000, 0, 847.994, -745.513, 94.969, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1603, 4, 'House At Vinewood without swimming pool', 0, 0, 0, 400000, 500, 891.145, -783.174, 101.313, 0, 0, 0, 0, -1, 234.22, 1063.89, 1084.21, 0, 6, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1604, 4, 'House At Vinewood without swimming pool', 0, 0, 0, 400000, 1, 808.26, -759.379, 76.527, 0, 0, 0, 0, -1, 234.22, 1063.89, 1084.21, 0, 6, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1605, 4, 'house at vinewood', 0, 0, 0, 250000, 0, 785.955, -828.577, 70.289, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1606, 4, 'House At Vinewood With Swimming Pool', 0, 0, 0, 550000, 0, 497.367, -1095.07, 82.359, 0, 0, 0, 0, -1, 226.3, 1114.37, 1080.99, 0, 5, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1607, 4, 'House at Vinewood', 0, 0, 0, 550000, 0, 416.769, -1154.12, 76.68, 0, 0, 0, 0, -1, 226.3, 1114.37, 1080.99, 0, 5, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1608, 4, 'House At Vinewood without swimming pool', 0, 0, 0, 400000, 1000, 352.325, -1198, 76.513, 0, 0, 0, 0, -1, 234.22, 1063.89, 1084.21, 0, 6, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1609, 4, 'house at vinewood', 0, 0, 0, 250000, 0, 355.071, -1281.19, 53.701, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1610, 4, 'small house at vinewood', 0, 0, 0, 150000, 0, 228.05, -1405.49, 51.609, 0, 0, 0, 0, -1, 295.209, 1472.26, 1080.25, 0, 15, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1611, 4, 'House At Vinewood without swimming pool', 0, 0, 0, 400000, 0, 470.756, -1163.56, 67.217, 0, 0, 0, 0, -1, 234.22, 1063.89, 1084.21, 0, 6, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1612, 4, 'small house at vinewood', 0, 0, 0, 150000, 0, 558.763, -1161.09, 54.429, 0, 0, 0, 0, -1, 295.209, 1472.26, 1080.25, 0, 15, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1613, 4, 'house at vinewood', 0, 0, 0, 250000, 0, 552.94, -1200.28, 44.831, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1614, 4, 'small house at vinewood', 0, 0, 0, 150000, 0, 432.028, -1253.96, 51.58, 0, 0, 0, 0, -1, 295.209, 1472.26, 1080.25, 0, 15, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1615, 4, 'House At Vinewood With Swimming Pool', 0, 0, 0, 550000, 0, 612.169, -1085.92, 58.826, 0, 0, 0, 0, -1, 226.3, 1114.37, 1080.99, 0, 5, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1616, 4, 'House At Vinewood without swimming pool', 0, 0, 0, 400000, 0, 559.125, -1076.41, 72.916, 0, 0, 0, 0, -1, 234.22, 1063.89, 1084.21, 0, 6, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1617, 4, 'small house at vinewood', 0, 0, 0, 150000, 5000, 648.309, -1058.72, 52.576, 0, 0, 0, 0, -1, 295.209, 1472.26, 1080.25, 0, 15, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1618, 4, 'small house at vinewood', 0, 0, 0, 150000, 0, 673.114, -1020.17, 55.756, 0, 0, 0, 0, -1, 295.209, 1472.26, 1080.25, 0, 15, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1619, 4, 'House At Vinewood With Swimming Pool', 0, 0, 0, 550000, 0, 700.257, -1060.32, 49.421, 0, 0, 0, 0, -1, 226.3, 1114.37, 1080.99, 0, 5, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1620, 4, 'House At Vinewood without swimming pool', 0, 0, 0, 400000, 0, 724.663, -999.356, 52.734, 0, 0, 0, 0, -1, 234.22, 1063.89, 1084.21, 0, 6, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1621, 4, 'small house at vinewood', 0, 0, 0, 150000, 0, 923.903, -853.408, 93.456, 0, 0, 0, 0, -1, 295.209, 1472.26, 1080.25, 0, 15, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1622, 4, 'small house at vinewood', 0, 0, 0, 150000, 100, 937.804, -848.742, 93.577, 0, 0, 0, 0, -1, 295.209, 1472.26, 1080.25, 0, 15, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1623, 4, 'House At Vinewood without swimming pool', 0, 0, 0, 400000, 0, 910.388, -817.546, 103.125, 0, 0, 0, 0, -1, 234.22, 1063.89, 1084.21, 0, 6, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1624, 4, 'House At Vinewood without swimming pool', 0, 0, 0, 400000, 0, 977.379, -771.708, 112.202, 0, 0, 0, 0, -1, 234.22, 1063.89, 1084.21, 0, 6, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1625, 4, 'small house at vinewood', 0, 0, 0, 150000, 0, 1017.02, -763.361, 112.563, 0, 0, 0, 0, -1, 295.209, 1472.26, 1080.25, 0, 15, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1626, 4, 'small house at vinewood', 0, 0, 0, 150000, 0, 1034.81, -813.184, 101.847, 0, 0, 0, 0, -1, 295.209, 1472.26, 1080.25, 0, 15, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1627, 4, 'House At Vinewood without swimming Pool', 0, 0, 0, 400000, 1500, 989.736, -828.69, 95.468, 0, 0, 0, 0, -1, 234.22, 1063.89, 1084.21, 0, 6, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1628, 4, 'UFO House at vinewood', 0, 0, 0, 1000000, 0, 1093.97, -807.13, 107.416, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1629, 4, 'House At Vinewood without swimming pool', 0, 0, 0, 400000, 0, 835.968, -894.861, 68.763, 0, 0, 0, 0, -1, 234.22, 1063.89, 1084.21, 0, 6, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1630, 4, 'small house at vinewood', 0, 0, 0, 150000, 0, 827.822, -857.979, 70.33, 0, 0, 0, 0, -1, 295.209, 1472.26, 1080.25, 0, 15, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1631, 4, 'House At Vinewood without swimming Pool', 0, 0, 0, 400000, 0, 1112.64, -742.109, 100.132, 0, 0, 0, 0, -1, 234.22, 1063.89, 1084.21, 0, 6, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1632, 4, 'apartment at the beach ls', 0, 0, 0, 100000, 0, 168.136, -1768.4, 4.486, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1633, 4, 'Beach House', 0, 0, 0, 100000, 0, 192.811, -1769.39, 4.328, 0, 0, 0, 0, -1, 261.058, 1284.29, 1080.25, 0, 4, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1634, 4, 'house at the beach', 0, 0, 0, 100000, 0, 206.884, -1768.88, 4.368, 0, 0, 0, 0, -1, 261.058, 1284.29, 1080.25, 0, 4, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1635, 4, 'house at the beach', 0, 0, 0, 100000, 0, 280.894, -1767.07, 4.546, 0, 0, 0, 0, -1, 261.058, 1284.29, 1080.25, 0, 4, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1636, 4, 'house at the beach', 0, 0, 0, 100000, 500, 295.239, -1764.12, 4.868, 0, 0, 0, 0, -1, 261.058, 1284.29, 1080.25, 0, 4, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1637, 4, 'house at the beach', 0, 0, 0, 100000, 0, 305.371, -1770.22, 4.538, 0, 0, 0, 0, -1, 261.058, 1284.29, 1080.25, 0, 4, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1638, 4, 'Beach House with Garage', 0, 0, 0, 400000, 0, 315.877, -1769.43, 4.622, 0, 0, 0, 0, -1, 226.3, 1114.37, 1080.99, 0, 5, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1639, 4, 'apartment at the beach ls', 0, 0, 0, 100000, 0, 902.924, -1815.45, 13.302, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1640, 4, 'apartment at the beach ls', 0, 0, 0, 100000, 1, 905.044, -1815.69, 13.3, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1641, 4, 'apartment at the beach ls', 0, 0, 0, 100000, 500, 908.585, -1816.07, 13.301, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1642, 4, 'apartment at the beach ls', 0, 0, 0, 100000, 0, 910.78, -1816.31, 13.301, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1643, 4, 'apartment at the beach ls', 0, 0, 0, 100000, 0, 914.559, -1816.73, 13.307, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1644, 4, 'apartment at the beach ls', 0, 0, 0, 100000, 0, 916.719, -1816.97, 13.307, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1645, 4, 'apartment at the beach ls', 0, 0, 0, 100000, 0, 920.341, -1817.37, 13.306, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1646, 4, 'apartment at the beach ls', 0, 0, 0, 100000, 0, 922.531, -1817.62, 13.306, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1647, 4, 'apartment at the beach ls', 0, 0, 0, 100000, 0, 926.278, -1818.04, 13.324, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1648, 4, 'apartment at the beach ls', 0, 0, 0, 100000, 0, 928.375, -1818.28, 13.321, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1649, 4, 'apartment at the beach ls', 0, 0, 0, 100000, 0, 931.923, -1818.69, 13.321, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1650, 4, 'apartment at the beach ls', 0, 0, 0, 100000, 0, 934.049, -1818.93, 13.319, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1651, 4, 'apartment at the beach ls', 0, 0, 0, 100000, 0, 961.132, -1823.96, 13.326, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1652, 4, 'apartment at the beach ls', 0, 0, 0, 100000, 0, 963.249, -1824.51, 13.325, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1653, 4, 'apartment at the beach ls', 0, 0, 0, 100000, 0, 966.735, -1825.36, 13.322, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1654, 4, 'apartment at the beach ls', 0, 0, 0, 100000, 0, 968.934, -1825.9, 13.323, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1655, 4, 'apartment at the beach ls', 0, 0, 0, 100000, 0, 972.501, -1826.77, 13.333, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1656, 4, 'apartment at the beach ls', 0, 0, 0, 100000, 0, 974.557, -1827.28, 13.332, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1657, 4, 'apartment at the beach ls', 0, 0, 0, 100000, 0, 978.143, -1828.16, 13.329, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1658, 4, 'apartment at the beach ls', 0, 0, 0, 100000, 0, 980.192, -1828.67, 13.328, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1659, 4, 'apartment at the beach ls', 0, 0, 0, 100000, 20, 983.918, -1829.58, 13.329, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1660, 4, 'apartment at the beach ls', 0, 0, 0, 100000, 1000, 985.973, -1830.08, 13.331, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1661, 4, 'apartment at the beach ls', 0, 0, 0, 100000, 0, 989.481, -1830.95, 13.336, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1662, 4, 'apartment at the beach ls', 0, 0, 0, 100000, 0, 991.721, -1831.49, 13.34, 0, 0, 0, 0, -1, 2237.46, -1081.64, 1049.02, 0, 2, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1663, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 1, 2581.51, -969.296, 81.361, 0, 0, 0, 0, -1, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1664, 4, 'house near the beach', 0, 0, 0, 55000, 0, 655.947, -1635.87, 15.861, 0, 0, 0, 0, -1, 261.058, 1284.29, 1080.25, 0, 4, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1665, 4, 'house near the beach', 0, 0, 0, 55000, 0, 660.406, -1599.85, 15, 0, 0, 0, 0, -1, 261.058, 1284.29, 1080.25, 0, 4, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1666, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 0, 2388.42, -1279.65, 25.128, 0, 0, 0, 0, -1, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1667, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 0, 2387.85, -1328.54, 25.124, 0, 0, 0, 0, -1, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1668, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 0, 2389.73, -1346.29, 25.076, 0, 0, 0, 0, -1, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1669, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 1, 2383.53, -1366.2, 24.489, 0, 0, 0, 0, -1, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1670, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 5000, 2288.22, -1104.66, 38.594, 0, 0, 0, 0, -1, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1671, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 0, 2249.32, -1060.31, 55.965, 0, 0, 0, 0, -1, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1672, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 0, 2259.52, -1019, 59.297, 0, 0, 0, 0, -1, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1673, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 0, 2218.78, -1031.73, 60.263, 0, 0, 0, 0, -1, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1674, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 0, 2208.02, -1026.56, 61.347, 0, 0, 0, 0, -1, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1675, 4, 'trailer LS', 0, 0, 0, 2000, 200, 2154.11, -979.905, 63.291, 0, 0, 0, 0, -1, 244.41, 305.032, 999.148, 0, 1, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1676, 4, 'trailer LS', 0, 0, 0, 2000, 100, 2142.69, -978.153, 61.379, 0, 0, 0, 0, -1, 244.41, 305.032, 999.148, 0, 1, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1677, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 0, 2139.79, -1008.43, 61.986, 0, 0, 0, 0, -1, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1678, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 1000, 2108.87, -1000.77, 60.506, 0, 0, 0, 0, -1, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1679, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 0, 2089.52, -996.244, 53.062, 0, 0, 0, 0, -1, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1680, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 0, 2073.48, -965.177, 49.388, 0, 0, 0, 0, -1, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1681, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 0, 2045.18, -965.918, 44.555, 0, 0, 0, 0, -1, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1682, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 800, 2049.21, -987.278, 44.979, 0, 0, 0, 0, -1, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1683, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 0, 2044.66, -991.32, 43.234, 0, 0, 0, 0, -1, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1684, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 1, 2015.59, -977.559, 36.951, 0, 0, 0, 0, -1, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1685, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 100, 2007.36, -984.58, 34.458, 0, 0, 0, 0, -1, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1686, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 150, 2000.2, -991.651, 32.131, 0, 0, 0, 0, -1, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1687, 4, 'trailer LS', 0, 0, 0, 2000, 200, 2131.94, -974.005, 59.784, 0, 0, 0, 0, -1, 244.41, 305.032, 999.148, 0, 1, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1688, 4, 'trailer LS', 0, 0, 0, 2000, 0, 2122.04, -970.335, 58.207, 0, 0, 0, 0, -1, 244.41, 305.032, 999.148, 0, 1, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1689, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 0, 2051.26, -954.762, 48.033, 0, 0, 0, 0, -1, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1690, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 1, 2278.66, -1077.38, 48.24, 0, 0, 0, 0, -1, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1691, 4, 'trailer LS', 0, 0, 0, 2000, 0, 2355.77, -1058.81, 54.076, 0, 0, 0, 0, -1, 244.41, 305.032, 999.148, 0, 1, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1692, 4, 'trailer LS', 0, 0, 0, 2000, 0, 2348.01, -1047.59, 53.847, 0, 0, 0, 0, -1, 244.41, 305.032, 999.148, 0, 1, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1693, 4, 'trailer LS', 0, 0, 0, 2000, 100, 2350.99, -1039.79, 54.333, 0, 0, 0, 0, -1, 244.41, 305.032, 999.148, 0, 1, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1694, 4, 'trailer LS', 0, 0, 0, 2000, 0, 2355.53, -1038.58, 54.333, 0, 0, 0, 0, -1, 244.41, 305.032, 999.148, 0, 1, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1695, 4, 'trailer LS', 0, 0, 0, 2000, 250, 2370.25, -1034.55, 54.409, 0, 0, 0, 0, -1, 244.41, 305.032, 999.148, 0, 1, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1696, 4, 'trailer LS', 0, 0, 0, 2000, 5000, 2362.67, -1046.43, 54.27, 0, 0, 0, 0, -1, 244.41, 305.032, 999.148, 0, 1, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1697, 4, 'trailer LS', 0, 0, 0, 2000, 0, 2335.19, -1046.01, 52.548, 0, 0, 0, 0, -1, 244.41, 305.032, 999.148, 0, 1, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1698, 4, 'trailer LS', 0, 0, 0, 2000, 0, 2325.48, -1060.97, 52.465, 0, 0, 0, 0, -1, 244.41, 305.032, 999.148, 0, 1, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1699, 4, 'trailer LS', 0, 0, 0, 2000, 0, 2330.22, -1060.9, 52.465, 0, 0, 0, 0, -1, 244.41, 305.032, 999.148, 0, 1, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1700, 4, 'trailer LS', 0, 0, 0, 2000, 0, 2297.73, -1053.08, 49.93, 0, 0, 0, 0, -1, 244.41, 305.032, 999.148, 0, 1, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1701, 4, 'trailer LS', 0, 0, 0, 2000, 0, 2284.19, -1046.09, 49.887, 0, 0, 0, 0, -1, 244.41, 305.032, 999.148, 0, 1, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1702, 4, 'trailer LS', 0, 0, 0, 2000, 15, 2319.77, -1053.31, 52.458, 0, 0, 0, 0, -1, 244.41, 305.032, 999.148, 0, 1, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1703, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 0, 2462.41, -1011.12, 60.111, 0, 0, 0, 0, -1, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1704, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 350, 2457.77, -1054.54, 59.958, 0, 0, 0, 0, -1, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1705, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 0, 2491.37, -1012.27, 65.398, 0, 0, 0, 0, -1, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1706, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 0, 2479.67, -1064.01, 66.998, 0, 0, 0, 0, -1, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1707, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 0, 2512.8, -1027.16, 70.083, 0, 0, 0, 0, -1, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1708, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 0, 2526.09, -1060.67, 69.97, 0, 0, 0, 0, -1, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1709, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 0, 2534.48, -1063.48, 69.565, 0, 0, 0, 0, -1, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1710, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 0, 2526.9, -1033.52, 69.579, 0, 0, 0, 0, -1, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1711, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 0, 2470.59, -1105.32, 44.486, 0, 0, 0, 0, -1, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1712, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 1000, 2457.08, -1102.5, 43.867, 0, 0, 0, 0, -1, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1713, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 0, 2438.62, -1105.78, 43.081, 0, 0, 0, 0, -1, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1714, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 0, 2407.91, -1106.97, 40.291, 0, 0, 0, 0, -1, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1715, 4, 'LS Project', 0, 0, 0, 4000, 0, 2751.49, -1962.88, 13.545, 0, 0, 0, 0, -1, 244.41, 305.032, 999.148, 0, 1, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1716, 4, 'LS Project', 0, 0, 0, 4000, 0, 2787.07, -1952.57, 13.545, 0, 0, 0, 0, -1, 244.41, 305.032, 999.148, 0, 1, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1717, 4, 'LS Project', 0, 0, 0, 4000, 0, 2751.5, -1936.56, 13.538, 0, 0, 0, 0, -1, 244.41, 305.032, 999.148, 0, 1, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1718, 4, 'LS Project', 0, 0, 0, 4000, 0, 2787.07, -1926.17, 13.545, 0, 0, 0, 0, -1, 244.41, 305.032, 999.148, 0, 1, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1719, 4, 'LS Project', 0, 0, 0, 4000, 0, 2736.65, -1926.18, 13.545, 0, 0, 0, 0, -1, 244.41, 305.032, 999.148, 0, 1, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1720, 4, 'LS Project', 0, 0, 0, 4000, 0, 2736.65, -1952.58, 13.545, 0, 0, 0, 0, -1, 244.41, 305.032, 999.148, 0, 1, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1721, 4, 'LS Project', 0, 0, 0, 4000, 0, 2801.92, -1936.32, 13.545, 0, 0, 0, 0, -1, 244.41, 305.032, 999.148, 0, 1, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1722, 4, 'LS Project', 0, 0, 0, 4000, 0, 2801.92, -1962.9, 13.545, 0, 0, 0, 0, -1, 244.41, 305.032, 999.148, 0, 1, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1723, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 0, 2696.39, -1990.36, 14.222, 0, 0, 0, 0, -1, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1724, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 0, 2672.71, -1989.47, 14.324, 0, 0, 0, 0, -1, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1725, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 0, 2695.24, -2020.55, 14.022, 0, 0, 0, 0, -1, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1726, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 0, 2673.27, -2020.29, 14.168, 0, 0, 0, 0, -1, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1727, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 0, 2650.7, -2021.8, 14.175, 0, 0, 0, 0, -1, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1728, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 100, 2635.61, -2012.93, 14.144, 0, 0, 0, 0, -1, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1729, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 1000, 2637.01, -1991.77, 14.324, 0, 0, 0, 0, -1, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1730, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 0, 2652.78, -1989.43, 13.998, 0, 0, 0, 0, -1, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1731, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 0, 2486.36, -2021.55, 13.998, 0, 0, 0, 0, -1, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1732, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 0, 2483.52, -1995.34, 13.833, 0, 0, 0, 0, -1, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1733, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 0, 2465.22, -2020.79, 14.123, 0, 0, 0, 0, -1, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1734, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 0, 2465.1, -1995.75, 14.019, 0, 0, 0, 0, -1, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1736, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 0, 2508.32, -1998.36, 13.902, 0, 0, 0, 0, -1, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1737, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 4000, 2507.84, -2021.05, 14.21, 0, 0, 0, 0, -1, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1738, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 0, 2522.75, -2019, 14.074, 0, 0, 0, 0, -1, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1739, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 0, 2524.44, -1998.39, 14.112, 0, 0, 0, 0, -1, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1740, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 0, 1667.53, -2106.94, 14.071, 0, 0, 0, 0, -1, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1741, 4, 'house at the beach', 0, 0, 0, 100000, 0, 192.779, -1747.76, 4.302, 0, 0, 0, 0, -1, 261.058, 1284.29, 1080.25, 0, 4, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1742, 4, 'small house at vinewood', 0, 0, 0, 150000, 2000, 142.5, -1470.27, 25.208, 0, 0, 0, 0, -1, 295.209, 1472.26, 1080.25, 0, 15, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1743, 4, 'House At Vinewood without swimming pool', 0, 0, 0, 400000, 0, 161.447, -1455.95, 32.844, 0, 0, 0, 0, -1, 234.22, 1063.89, 1084.21, 0, 6, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1744, 4, 'House Near Vinewood', 0, 0, 0, 150000, 0, 1059.16, -1105.14, 28.045, 0, 0, 0, 0, -1, 447, 1397.09, 1084.3, 0, 2, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1745, 4, 'House Near Vinewood', 0, 0, 0, 150000, 0, 1103.41, -1092.54, 28.468, 0, 0, 0, 0, -1, 447, 1397.09, 1084.3, 0, 2, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1746, 4, 'House Near Vinewood', 0, 0, 0, 150000, 0, 1103.4, -1069.59, 31.888, 0, 0, 0, 0, -1, 447, 1397.09, 1084.3, 0, 2, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1747, 4, 'House Near Vinewood', 0, 0, 0, 150000, 5000, 1142.12, -1092.77, 28.187, 0, 0, 0, 0, -1, 447, 1397.09, 1084.3, 0, 2, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1748, 4, 'House Near Vinewood', 0, 0, 0, 150000, 0, 1183.47, -1098.93, 28.256, 0, 0, 0, 0, -1, 447, 1397.09, 1084.3, 0, 2, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1749, 4, 'House Near Vinewood', 0, 0, 0, 150000, 0, 1183.47, -1076.04, 31.677, 0, 0, 0, 0, -1, 447, 1397.09, 1084.3, 0, 2, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1750, 4, 'House Near Vinewood', 0, 0, 0, 150000, 5000, 1141.81, -1069.99, 31.763, 0, 0, 0, 0, -1, 447, 1397.09, 1084.3, 0, 2, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1751, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 0, 2582.89, -952.931, 81.388, 0, 0, 0, 0, -1, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1752, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 0, 2552.05, -958.429, 82.611, 0, 0, 0, 0, -1, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1753, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 0, 2517.86, -965.392, 82.328, 0, 0, 0, 0, -1, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1754, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 0, 2499.51, -946.997, 82.47, 0, 0, 0, 0, -1, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1755, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 0, 2492.1, -965.645, 82.541, 0, 0, 0, 0, -1, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1756, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 0, 2472.35, -962.043, 80.525, 0, 0, 0, 0, -1, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1757, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 0, 2454.18, -964.963, 80.069, 0, 0, 0, 0, -1, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1758, 4, 'Ghetto Home LS Small', 0, 0, 0, 10000, 0, 2459.37, -947.702, 80.082, 0, 0, 0, 0, -1, 222.929, 1287.08, 1082.14, 0, 1, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1759, 4, 'house at the beach', 0, 0, 0, 100000, 500, 992.684, -1817.65, 13.894, 0, 0, 0, 0, -1, 261.058, 1284.29, 1080.25, 0, 4, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1760, 4, 'house at the beach', 0, 0, 0, 100000, 5000, 980.885, -1814.81, 13.887, 0, 0, 0, 0, -1, 261.058, 1284.29, 1080.25, 0, 4, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1761, 4, 'house at the beach', 0, 0, 0, 100000, 500, 969.596, -1812.02, 13.883, 0, 0, 0, 0, -1, 261.06, 1284.29, 1080.25, 0, 4, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1762, 4, 'house at the beach', 0, 0, 0, 100000, 0, 958.072, -1809.17, 13.88, 0, 0, 0, 0, -1, 261.058, 1284.29, 1080.25, 0, 4, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1763, 4, 'house at the beach', 0, 0, 0, 100000, 1000, 933.647, -1805.2, 13.843, 0, 0, 0, 0, -1, 261.06, 1284.29, 1080.25, 0, 4, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1764, 4, 'house at the beach', 0, 0, 0, 100000, 900, 921.974, -1803.89, 13.837, 0, 0, 0, 0, -1, 261.06, 1284.29, 1080.25, 0, 4, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1765, 4, 'house at the beach', 0, 0, 0, 100000, 0, 910.267, -1802.69, 13.8, 0, 0, 0, 0, -1, 261.058, 1284.29, 1080.25, 0, 4, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1766, 4, 'house at the beach', 0, 0, 0, 100000, 0, 883.241, -1800.39, 13.8, 0, 0, 0, 0, -1, 261.058, 1284.29, 1080.25, 0, 4, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1767, 4, 'house at the beach', 0, 0, 0, 100000, 0, 866.656, -1798.94, 13.814, 0, 0, 0, 0, -1, 261.058, 1284.29, 1080.25, 0, 4, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1768, 4, 'Little House at Dillimore', 0, 0, 0, 60000, 0, 795.247, -506.148, 18.01, 0, 0, 0, 0, -1, 2282.9, -1139.99, 1050.89, 0, 11, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1769, 4, 'Little House at Dillimore', 0, 0, 0, 50000, 0, 818.257, -509.316, 18.01, 0, 0, 0, 0, -1, 261.058, 1284.29, 1080.25, 0, 4, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1770, 4, 'House at Dillimore', 0, 0, 0, 85000, 0, 768.341, -503.48, 18.01, 0, 0, 0, 0, -1, 327.91, 1477.79, 1084.43, 0, 15, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1771, 4, 'House at Dillimore', 0, 0, 0, 100000, 0, 743.239, -509.316, 18.01, 0, 0, 0, 0, -1, 327.91, 1477.79, 1084.43, 0, 15, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1772, 4, 'House at Dillimore', 0, 0, 0, 100000, 150, 745.135, -556.783, 18.01, 0, 0, 0, 0, -1, 327.91, 1477.79, 1084.43, 0, 15, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1773, 4, 'House at Dillimore', 0, 0, 0, 100000, 0, 766.591, -556.783, 18.01, 0, 0, 0, 0, -1, 327.91, 1477.79, 1084.43, 0, 15, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1774, 4, 'Little House at Dillimore', 0, 0, 0, 70000, 0, 759.286, -592.028, 18.013, 0, 0, 0, 0, -1, 261.058, 1284.29, 1080.25, 0, 4, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1775, 4, 'Little House at Dillimore', 0, 0, 0, 70000, 0, 745.674, -591.145, 18.01, 0, 0, 0, 0, -1, 261.058, 1284.29, 1080.25, 0, 4, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1776, 4, 'Trailer at Blue Berry', 0, 0, 0, 20000, 0, 261.958, -269.976, 1.639, 0, 0, 0, 0, -1, 244.41, 305.032, 999.148, 0, 1, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1777, 4, 'Trailer at Blue Berry', 0, 0, 0, 20000, 0, 264.514, -288.417, 1.72643, 0, 0, 0, 0, -1, 244.41, 305.032, 999.148, 0, 1, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1778, 4, 'Trailer at Blue Berry', 0, 0, 0, 20000, 0, 260.596, -302.989, 1.917, 0, 0, 0, 0, -1, 244.41, 305.032, 999.148, 0, 1, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1779, 4, 'Trailer at Blue Berry', 0, 0, 0, 20000, 0, 253.248, -289.945, 1.70299, 0, 0, 0, 0, -1, 244.41, 305.032, 999.148, 0, 1, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1780, 4, 'Trailer at Blue Berry', 0, 0, 0, 20000, 0, 255.911, -278.502, 1.656, 0, 0, 0, 0, -1, 244.41, 305.032, 999.148, 0, 1, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1781, 4, 'Trailer at Blue Berry', 0, 0, 0, 20000, 0, 238.921, -286.288, 1.63268, 0, 0, 0, 0, -1, 244.41, 305.032, 999.148, 0, 1, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1782, 4, 'Trailer at Blue Berry', 0, 0, 0, 20000, 0, 235.132, -309.456, 1.7108, 0, 0, 0, 0, -1, 244.41, 305.032, 999.148, 0, 1, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1783, 4, 'Trailer at Blue Berry', 0, 0, 0, 20000, 0, 226.549, -302.812, 1.92618, 0, 0, 0, 0, -1, 244.41, 305.032, 999.148, 0, 1, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1784, 4, 'Trailer at Blue Berry', 0, 0, 0, 20000, 0, 264.514, -283.665, 1.72643, 0, 0, 0, 0, -1, 244.41, 305.032, 999.148, 0, 1, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1785, 4, 'Trailer at Blue Berry', 0, 0, 0, 20000, 0, 253.533, -274.545, 1.656, 0, 0, 0, 0, -1, 244.41, 305.032, 999.148, 0, 1, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1786, 4, 'Trailer at Blue Berry', 0, 0, 0, 20000, 0, 242.013, -298.601, 1.687, 0, 0, 0, 0, -1, 244.41, 305.032, 999.148, 0, 1, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1787, 4, 'Apartment at Blue Berry', 0, 0, 0, 80000, 0, 178.279, -120.235, 1.54903, 0, 0, 0, 0, -1, 261.059, 1284.29, 1080.25, 0, 4, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1788, 4, 'Apartment at Blue Berry', 0, 0, 0, 80000, 0, 189.312, -120.229, 1.54846, 0, 0, 0, 0, -1, 261.059, 1284.29, 1080.25, 0, 4, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1789, 4, 'Apartment at Blue Berry', 0, 0, 0, 80000, 0, 166.299, -120.23, 1.55488, 0, 0, 0, 0, -1, 261.059, 1284.29, 1080.25, 0, 4, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1790, 4, 'Apartment at Blue Berry', 0, 0, 0, 80000, 0, 201.46, -94.9737, 1.55498, 0, 0, 0, 0, -1, 261.059, 1284.29, 1080.25, 0, 4, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1791, 4, 'Apartment at Blue Berry', 0, 0, 0, 80000, 0, 160.633, -102.568, 4.89647, 0, 0, 0, 0, -1, 261.059, 1284.29, 1080.25, 0, 4, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1792, 4, 'Apartment at Blue Berry', 0, 0, 0, 80000, 0, 160.632, -112.595, 4.89647, 0, 0, 0, 0, -1, 261.059, 1284.29, 1080.25, 0, 4, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1793, 4, 'Apartment at Blue Berry', 0, 0, 0, 80000, 0, 166.187, -118.234, 4.89647, 0, 0, 0, 0, -1, 261.059, 1284.29, 1080.25, 0, 4, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1794, 4, 'Apartment at Blue Berry', 0, 0, 0, 80000, 0, 178.265, -118.235, 4.89647, 0, 0, 0, 0, -1, 261.059, 1284.29, 1080.25, 0, 4, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1795, 4, 'Apartment at Blue Berry', 0, 0, 0, 80000, 0, 166.246, -96.9721, 4.89647, 0, 0, 0, 0, -1, 261.059, 1284.29, 1080.25, 0, 4, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1796, 4, 'Apartment at Blue Berry', 0, 0, 0, 80000, 0, 178.373, -96.973, 4.89647, 0, 0, 0, 0, -1, 261.059, 1284.29, 1080.25, 0, 4, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1797, 4, 'Apartment at Blue Berry', 0, 0, 0, 80000, 0, 166.389, -94.9725, 1.55484, 0, 0, 0, 0, -1, 261.059, 1284.29, 1080.25, 0, 4, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1798, 4, 'Apartment at Blue Berry', 0, 0, 0, 80000, 0, 207.073, -112.385, 4.89647, 0, 0, 0, 0, -1, 261.059, 1284.29, 1080.25, 0, 4, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1799, 4, 'Apartment at Blue Berry', 0, 0, 0, 80000, 0, 201.414, -96.9729, 4.89647, 0, 0, 0, 0, -1, 261.059, 1284.29, 1080.25, 0, 4, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1800, 4, 'Apartment at Blue Berry', 0, 0, 0, 80000, 0, 189.413, -96.9718, 4.89647, 0, 0, 0, 0, -1, 261.059, 1284.29, 1080.25, 0, 4, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1801, 4, 'Apartment at Blue Berry', 0, 0, 0, 80000, 0, 201.373, -118.234, 4.89647, 0, 0, 0, 0, -1, 261.059, 1284.29, 1080.25, 0, 4, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1802, 4, 'Apartment at Blue Berry', 0, 0, 0, 80000, 0, 201.453, -120.234, 1.55143, 0, 0, 0, 0, -1, 261.059, 1284.29, 1080.25, 0, 4, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1803, 4, 'Apartment at Blue Berry', 0, 0, 0, 80000, 0, 158.641, -112.616, 1.55671, 0, 0, 0, 0, -1, 261.059, 1284.29, 1080.25, 0, 4, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1804, 4, 'Apartment at Blue Berry', 0, 0, 0, 80000, 0, 209.084, -112.603, 1.55078, 0, 0, 0, 0, -1, 261.059, 1284.29, 1080.25, 0, 4, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1805, 4, 'House at Blue Berry', 0, 0, 0, 110000, 0, 252.884, -92.418, 3.535, 0, 0, 0, 0, -1, 2282.9, -1139.99, 1050.89, 0, 11, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1806, 4, 'House at Blue Berry', 0, 0, 0, 110000, 500, 252.886, -121.314, 3.535, 0, 0, 0, 0, -1, 2282.9, -1139.99, 1050.89, 0, 11, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1807, 4, 'House at Blue Berry', 0, 0, 0, 130000, 0, 267.691, -54.541, 2.776, 0, 0, 0, 0, -1, 2282.9, -1139.99, 1050.89, 0, 11, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1808, 4, 'House at Blue Berry', 0, 0, 0, 100000, 0, 295.071, -54.545, 2.777, 0, 0, 0, 0, -1, 2282.9, -1139.99, 1050.89, 0, 11, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1809, 4, 'House at Blue Berry', 0, 0, 0, 100000, 0, 312.721, -92.337, 3.535, 0, 0, 0, 0, -1, 2282.9, -1139.99, 1050.89, 0, 11, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1810, 4, 'House at Blue Berry', 0, 0, 0, 100000, 0, 312.721, -121.25, 3.535, 0, 0, 0, 0, -1, 2282.9, -1139.99, 1050.89, 0, 11, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1811, 4, 'Small House near Blue Berry', 0, 0, 0, 40000, 0, 342.625, 62.719, 3.861, 0, 0, 0, 0, -1, 260.769, 1237.26, 1084.25, 0, 9, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1812, 4, 'Small House near Blue Berry', 0, 0, 0, 60000, 0, 317.737, 54.6055, 3.375, 0, 0, 0, 0, -1, 260.769, 1237.26, 1084.25, 0, 9, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1813, 4, 'Small House near Blue Berry', 0, 0, 0, 60000, 0, 309.11, 44.4167, 3.08797, 0, 0, 0, 0, -1, 260.769, 1237.26, 1084.25, 0, 9, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1814, 4, 'Small House near Blue Berry', 0, 0, 0, 60000, 0, 286.063, 41.147, 2.54844, 0, 0, 0, 0, -1, 260.769, 1237.26, 1084.25, 0, 9, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1815, 4, 'Small House near Blue Berry', 0, 0, 0, 60000, 0, 316.561, 18.2672, 4.51562, 0, 0, 0, 0, -1, 260.769, 1237.26, 1084.25, 0, 9, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1816, 4, 'Small House near Blue Berry', 0, 0, 0, 60000, 0, 340.197, 33.4515, 6.40556, 0, 0, 0, 0, -1, 260.769, 1237.26, 1084.25, 0, 9, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1817, 4, 'House At Palomino Creek', 0, 0, 0, 60000, 0, 2323.84, 162.27, 28.44, 0, 0, 0, 0, -1, 2282.9, -1139.99, 1050.89, 0, 11, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1818, 4, 'House At Palomino Creek', 0, 0, 0, 100000, 0, 2364, 187.283, 28.44, 0, 0, 0, 0, -1, 327.91, 1477.79, 1084.43, 0, 15, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1819, 4, 'House At Palomino Creek', 0, 0, 0, 100000, 0, 2364, 166.093, 28.44, 0, 0, 0, 0, -1, 327.91, 1477.79, 1084.43, 0, 15, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1820, 4, 'House At Palomino Creek', 0, 0, 0, 100000, 1, 2323.84, 191.22, 28.44, 0, 0, 0, 0, -1, 327.91, 1477.79, 1084.43, 0, 15, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1821, 4, 'House At Palomino Creek', 0, 0, 0, 100000, 1000, 2323.84, 136.421, 28.44, 0, 0, 0, 0, -1, 327.91, 1477.79, 1084.43, 0, 15, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1822, 4, 'House At Palomino Creek', 0, 0, 0, 60000, 1, 2323.84, 116.138, 28.44, 0, 0, 0, 0, -1, 261.058, 1284.29, 1080.25, 0, 4, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1823, 4, 'House At Palomino Creek', 0, 0, 0, 60000, 0, 2364, 116.125, 28.44, 0, 0, 0, 0, -1, 261.058, 1284.29, 1080.25, 0, 4, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1824, 4, 'House At Palomino Creek', 0, 0, 0, 60000, 0, 2373.84, 71.079, 28.44, 0, 0, 0, 0, -1, 261.058, 1284.29, 1080.25, 0, 4, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1825, 4, 'House At Palomino Creek', 0, 0, 0, 60000, 0, 2373.84, 42.277, 28.44, 0, 0, 0, 0, -1, 261.058, 1284.29, 1080.25, 0, 4, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1826, 4, 'House At Palomino Creek', 0, 0, 0, 60000, 0, 2373.84, 21.978, 28.44, 0, 0, 0, 0, -1, 261.058, 1284.29, 1080.25, 0, 4, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1827, 4, 'House At Palomino Creek', 0, 0, 0, 60000, 0, 2373.84, -8.649, 28.44, 0, 0, 0, 0, -1, 261.058, 1284.29, 1080.25, 0, 4, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1828, 4, 'House At Palomino Creek', 0, 0, 0, 60000, 0, 2367.38, -49.125, 28.152, 0, 0, 0, 0, -1, 261.058, 1284.29, 1080.25, 0, 4, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1829, 4, 'House At Palomino Creek', 0, 0, 0, 100000, 0, 2392.29, -54.964, 28.152, 0, 0, 0, 0, -1, 327.91, 1477.79, 1084.43, 0, 15, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1830, 4, 'House At Palomino Creek', 0, 0, 0, 100000, 0, 2415.57, -5.701, 27.683, 0, 0, 0, 0, -1, 327.91, 1477.79, 1084.43, 0, 15, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1831, 4, 'House At Palomino Creek', 0, 0, 0, 60000, 0, 2438.78, -54.964, 28.152, 0, 0, 0, 0, -1, 260.769, 1237.26, 1084.25, 0, 9, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1832, 4, 'House At Palomino Creek', 0, 0, 0, 60000, 0, 2442.86, -4.038, 27.683, 0, 0, 0, 0, -1, 260.769, 1237.26, 1084.25, 0, 9, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1833, 4, 'House At Palomino Creek', 0, 0, 0, 60000, 0, 2488.38, 11.762, 28.44, 0, 0, 0, 0, -1, 260.769, 1237.26, 1084.25, 0, 9, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1834, 4, 'House At Palomino Creek', 0, 0, 0, 60000, 0, 2484.49, -28.392, 28.441, 0, 0, 0, 0, -1, 260.769, 1237.26, 1084.25, 0, 9, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1835, 4, 'House At Palomino Creek', 0, 0, 0, 85000, 1000, 2513.28, -28.402, 28.44, 0, 0, 0, 0, -1, 260.769, 1237.26, 1084.25, 0, 9, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1836, 4, 'House At Palomino Creek', 0, 0, 0, 85000, 1000, 2417.01, 17.878, 27.683, 0, 0, 0, 0, -1, 260.769, 1237.26, 1084.25, 0, 9, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1837, 4, 'House At Palomino Creek', 0, 0, 0, 150000, 0, 2549.23, 25.145, 27.673, 0, 0, 0, 0, -1, 327.91, 1477.79, 1084.43, 0, 15, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1838, 4, 'House At Palomino Creek', 0, 0, 0, 150000, 0, 2551.22, -5.506, 27.673, 0, 0, 0, 0, -1, 327.91, 1477.79, 1084.43, 0, 15, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1839, 4, 'House At Palomino Creek', 0, 0, 0, 110000, 0, 2551.22, 57.138, 27.673, 0, 0, 0, 0, -1, 327.91, 1477.79, 1084.43, 0, 15, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1840, 4, 'House At Palomino Creek', 0, 0, 0, 110000, 0, 2557.01, 87.888, 27.673, 0, 0, 0, 0, -1, 327.91, 1477.79, 1084.43, 0, 15, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1841, 4, 'House At Palomino Creek', 0, 0, 0, 110000, 5000, 2536.24, 128.985, 27.683, 0, 0, 0, 0, -1, 327.91, 1477.79, 1084.43, 0, 15, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1842, 4, 'House At Palomino Creek', 0, 0, 0, 110000, 0, 2518.44, 128.987, 27.675, 0, 0, 0, 0, -1, 327.91, 1477.79, 1084.43, 0, 15, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1843, 4, 'House At Palomino Creek', 0, 0, 0, 90000, 0, 2514.05, 94.389, 27.683, 0, 0, 0, 0, -1, 260.769, 1237.26, 1084.25, 0, 9, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1844, 4, 'House At Palomino Creek', 0, 0, 0, 150000, 0, 2480.62, 126.994, 27.673, 0, 0, 0, 0, -1, 327.91, 1477.79, 1084.43, 0, 15, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1845, 4, 'House At Palomino Creek', 0, 0, 0, 150000, 500, 2462.76, 134.778, 27.675, 0, 0, 0, 0, -1, 327.91, 1477.79, 1084.43, 0, 15, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1846, 4, 'House At Palomino Creek', 0, 0, 0, 150000, 0, 2443.84, 92.263, 28.44, 0, 0, 0, 0, -1, 327.91, 1477.79, 1084.43, 0, 15, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1847, 4, 'House At Palomino Creek', 0, 0, 0, 80000, 5000, 2481.22, 64.37, 27.683, 0, 0, 0, 0, -1, 260.769, 1237.26, 1084.25, 0, 9, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1848, 4, 'House At Palomino Creek', 0, 0, 0, 70000, 0, 2479.34, 94.391, 27.683, 0, 0, 0, 0, -1, 260.769, 1237.26, 1084.25, 0, 9, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1849, 4, 'House At Palomino Creek', 0, 0, 0, 125000, 0, 2439.56, 24.503, 27.683, 0, 0, 0, 0, -1, 327.91, 1477.79, 1084.43, 0, 15, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1850, 4, 'House At Palomino Creek', 0, 0, 0, 90000, 1, 2448.42, -11.019, 27.683, 0, 0, 0, 0, -1, 260.769, 1237.26, 1084.25, 0, 9, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1851, 4, 'House At Palomino Creek', 0, 0, 0, 250000, 0, 2415.44, -52.283, 28.153, 0, 0, 0, 0, -1, 261.058, 1284.29, 1080.25, 0, 4, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1852, 4, 'House At Palomino Creek', 0, 0, 0, 60000, 0, 2398.34, 111.76, 28.44, 0, 0, 0, 0, -1, 261.058, 1284.29, 1080.25, 0, 4, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1853, 4, 'House At Palomino Creek', 0, 0, 0, 60000, 0, 2269.5, 111.764, 28.44, 0, 0, 0, 0, -1, 261.058, 1284.29, 1080.25, 0, 4, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1854, 4, 'House At Palomino Creek', 0, 0, 0, 60000, 0, 2249.3, 111.763, 28.44, 0, 0, 0, 0, -1, 261.058, 1284.29, 1080.25, 0, 4, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1855, 4, 'House At Palomino Creek', 0, 0, 0, 95000, 0, 2203.84, 106.152, 28.44, 0, 0, 0, 0, -1, 260.769, 1237.26, 1084.25, 0, 9, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1856, 4, 'House At Palomino Creek', 0, 0, 0, 120000, 0, 2203.84, 62.284, 28.44, 0, 0, 0, 0, -1, 327.91, 1477.79, 1084.43, 0, 15, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1857, 4, 'House At Palomino Creek', 0, 0, 0, 120000, 0, 2270.49, -7.499, 28.152, 0, 0, 0, 0, -1, 327.91, 1477.79, 1084.43, 0, 15, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1858, 4, 'House At Palomino Creek', 0, 0, 0, 190000, 0, 2245.52, -1.661, 28.152, 0, 0, 0, 0, -1, 327.91, 1477.79, 1084.43, 0, 15, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1859, 4, 'House At Palomino Creek', 0, 0, 0, 250000, 0, 2199.95, -37.354, 28.152, 0, 0, 0, 0, -1, 327.91, 1477.79, 1084.43, 0, 15, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1860, 4, 'House At Palomino Creek', 0, 0, 0, 220000, 0, 2197.27, -60.667, 28.152, 0, 0, 0, 0, -1, 327.91, 1477.79, 1084.43, 0, 15, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1861, 4, 'House At Palomino Creek', 0, 0, 0, 250000, 0, 2203.1, -89.224, 28.152, 0, 0, 0, 0, -1, 327.91, 1477.79, 1084.43, 0, 15, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1862, 4, 'House At Palomino Creek', 0, 0, 0, 220000, 0, 2245.53, -122.291, 28.153, 0, 0, 0, 0, -1, 327.91, 1477.79, 1084.43, 0, 15, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1863, 4, 'House At Palomino Creek', 0, 0, 0, 220000, 0, 2272.45, -119.135, 28.152, 0, 0, 0, 0, -1, 327.91, 1477.79, 1084.43, 0, 15, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1864, 4, 'House At Palomino Creek', 0, 0, 0, 110000, 0, 2293.74, -124.958, 28.152, 0, 0, 0, 0, -1, 260.769, 1237.26, 1084.25, 0, 9, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1865, 4, 'House At Palomino Creek', 0, 0, 0, 110000, 0, 2322.25, -124.959, 28.152, 0, 0, 0, 0, -1, 260.769, 1237.26, 1084.25, 0, 9, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1866, 4, 'House At Palomino Creek', 0, 0, 0, 110000, 0, 2285.84, 161.768, 28.44, 0, 0, 0, 0, -1, 260.769, 1237.26, 1084.25, 0, 9, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1867, 4, 'House At Palomino Creek', 0, 0, 0, 110000, 0, 2266.49, 168.339, 28.152, 0, 0, 0, 0, -1, 260.769, 1237.26, 1084.25, 0, 9, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1868, 4, 'House At Palomino Creek', 0, 0, 0, 110000, 0, 2236.53, 168.304, 28.152, 0, 0, 0, 0, -1, 260.769, 1237.26, 1084.25, 0, 9, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1869, 4, 'House At Palomino Creek', 0, 0, 0, 110000, 0, 2413.54, 61.761, 28.44, 0, 0, 0, 0, -1, 260.769, 1237.26, 1084.25, 0, 9, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1870, 4, 'House At Palomino Creek', 0, 0, 0, 120000, 0, 2443.41, 61.762, 28.44, 0, 0, 0, 0, -1, 260.769, 1237.26, 1084.25, 0, 9, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1871, 4, 'House At Palomino Creek', 0, 0, 0, 90000, 1, 2509.5, 11.762, 28.44, 0, 0, 0, 0, -1, 260.769, 1237.26, 1084.25, 0, 9, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1872, 4, 'House At Palomino Creek', 0, 0, 0, 125000, 0, 2511.69, 57.215, 27.683, 0, 0, 0, 0, -1, 2282.9, -1139.99, 1050.89, 0, 11, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1873, 4, 'Trailer at Montgomery', 0, 0, 0, 40000, 0, 1283.31, 158.373, 20.791, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1874, 4, 'Trailer at Montgomery', 0, 0, 0, 40000, 0, 1295.41, 174.55, 20.909, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1875, 4, 'Trailer at Montgomery', 0, 0, 0, 40000, 5000, 1294.51, 157.647, 20.576, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1876, 4, 'Trailer at Montgomery', 0, 0, 0, 30000, 0, 1299.14, 140.344, 20.538, 0, 0, 0, 0, -1, 244.41, 305.032, 999.148, 0, 1, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1877, 4, 'Trailer at Montgomery', 0, 0, 0, 40000, 0, 1303.61, 186.1, 20.5389, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1878, 4, 'Trailer at Montgomery', 0, 0, 0, 40000, 0, 1300.44, 193.272, 20.5233, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1879, 4, 'Trailer at Montgomery', 0, 0, 0, 40000, 0, 1315.63, 180.156, 20.554, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1880, 4, 'Trailer at Montgomery', 0, 0, 0, 40000, 0, 1311.76, 169.572, 20.631, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1881, 4, 'Trailer at Montgomery', 0, 0, 0, 40000, 0, 1307.29, 153.318, 20.4921, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1882, 4, 'House at Montgomery', 0, 0, 0, 60000, 0, 1409.27, 346.89, 19.252, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1883, 4, 'House at Montgomery', 0, 0, 0, 60000, 0, 1403.22, 333.848, 18.9062, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1884, 4, 'House at Montgomery', 0, 0, 0, 60000, 0, 1415.88, 324.624, 18.843, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1885, 4, 'House at Montgomery', 0, 0, 0, 60000, 0, 1428.64, 356.429, 18.875, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1886, 4, 'House at Montgomery', 0, 0, 0, 60000, 0, 1413.14, 363.115, 19.1991, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1887, 4, 'House at Montgomery', 0, 0, 0, 60000, 0, 1419.53, 389.472, 19.3297, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1888, 4, 'House at Montgomery', 0, 0, 0, 60000, 0, 1475.32, 372.745, 19.6562, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1889, 4, 'House at Montgomery', 0, 0, 0, 60000, 0, 1465.74, 364.197, 19.2608, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1890, 4, 'House at Montgomery', 0, 0, 0, 60000, 0, 1469.66, 351.454, 18.923, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1891, 4, 'House at Montgomery', 0, 0, 0, 60000, 0, 1451.58, 375.788, 19.4005, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1892, 4, 'House at Montgomery', 0, 0, 0, 60000, 0, 1447.45, 361.738, 18.9081, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1893, 4, 'House at Montgomery', 0, 0, 0, 60000, 0, 1461.13, 342.467, 18.951, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1894, 4, 'House at Montgomery', 0, 0, 0, 60000, 0, 1434.89, 334.767, 18.9469, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1895, 4, 'House at Montgomery', 0, 0, 0, 60000, 0, 1488.61, 360.899, 19.4108, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1896, 4, 'House near Blueberry', 0, 0, 0, 60000, 0, 723.709, 269.671, 22.4531, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1897, 4, 'House near Blueberry', 0, 0, 0, 60000, 0, 705.467, 292.096, 20.4219, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1898, 4, 'House near Blueberry', 0, 0, 0, 60000, 0, 719.073, 300.585, 20.3766, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1899, 4, 'House near Blueberry', 0, 0, 0, 60000, 0, 746.396, 305.002, 20.233, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1900, 4, 'House near Blueberry', 0, 0, 0, 60000, 0, 747.132, 278.173, 27.218, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1901, 4, 'House near Blueberry', 0, 0, 0, 60000, 0, 748.16, 257.106, 27.0859, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1902, 4, 'Trailer near Blueberry', 0, 0, 0, 15000, 1, 748.428, 350.901, 20.5858, 0, 0, 0, 0, -1, 244.41, 305.032, 999.148, 0, 1, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1903, 4, 'Trailer near Blueberry', 0, 0, 0, 15000, 0, 808.065, 372.286, 19.451, 0, 0, 0, 0, -1, 244.41, 305.032, 999.148, 0, 1, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1904, 4, 'Trailer near Blueberry', 0, 0, 0, 15000, 500, 783.166, 377.561, 21.2967, 0, 0, 0, 0, -1, 244.41, 305.032, 999.148, 0, 1, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1905, 4, 'Trailer near Blueberry', 0, 0, 0, 15000, 5000, 751.723, 375.22, 23.374, 0, 0, 0, 0, -1, 244.41, 305.032, 999.148, 0, 1, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1906, 4, 'House near Blueberry', 0, 0, 0, 60000, 0, 783.883, 352.588, 19.5938, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1907, 4, 'House near Blueberry', 0, 0, 0, 60000, 0, 805.329, 358.37, 19.7621, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1908, 4, 'House near Blueberry', 0, 0, 0, 60000, 0, 758.917, 375.023, 23.3922, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1909, 4, 'House near Blueberry', 0, 0, 0, 60000, 0, 772.919, 348.266, 20.1527, 0, 0, 0, 0, -1, 2196.84, -1204.23, 1049.02, 0, 6, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1910, 4, 'Farm', 0, 0, 0, 75000, 0, -1061.35, -1205.56, 129.756, 0, 0, 0, 0, -1, 2317.82, -1024.75, 1050.21, 0, 9, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1911, 4, 'Shack', 0, 0, 0, 75000, 0, 1566.6, 23.2625, 24.1641, 0, 0, 0, 0, -1, 422.572, 2536.12, 10, 0, 10, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1912, 4, 'Ranch', 0, 0, 0, 25000, 0, 870.399, -24.9238, 63.9856, 0, 0, 0, 0, -1, 422.293, 2536.68, 10, 0, 10, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1913, 4, 'Shack', 0, 0, 0, 1000000, 0, -1051.73, 1549.97, 33.4376, 0, 0, 0, 0, -1, 422.293, 2536.68, 10, 0, 10, 0, 0, -1, 1); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1914, 1, 'Apartments', 0, 0, 0, 0, 5000, 1108.48, -606.323, 16.5294, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, -1, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1915, 1, 'Apartments', 0, 0, 0, 0, 5000, 1098.4, -606.325, 16.5284, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, -1, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1916, 1, 'Apartments', 0, 0, 0, 0, 5000, 1088.51, -606.329, 16.5259, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, -1, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1917, 1, 'Apartments', 0, 0, 0, 0, 5000, 1078.4, -606.327, 16.5272, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, -1, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1918, 1, 'Apartments', 0, 0, 0, 0, 5000, 1068.39, -606.328, 16.5265, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, -1, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1919, 1, 'Apartments', 0, 0, 0, 0, 5000, 1113.51, -556.319, 17.1908, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, -1, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1920, 1, 'Apartments', 0, 0, 0, 0, 5000, 1113.51, -546.203, 18.1932, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, -1, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1921, 1, 'Apartments', 0, 0, 0, 0, 5000, 1113.51, -536.263, 19.1813, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, -1, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1922, 1, 'Apartments', 0, 0, 0, 0, 5000, 1108.68, -516.083, 20.7302, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, -1, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1923, 1, 'Apartments', 0, 0, 0, 0, 5000, 1098.55, -516.085, 19.7426, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, -1, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1924, 1, 'Apartments', 0, 0, 0, 0, 5000, 1088.67, -516.084, 18.7428, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, -1, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1925, 1, 'Apartments', 0, 0, 0, 0, 5000, 1078.69, -516.086, 17.7431, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, -1, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1926, 1, 'Apartments', 0, 0, 0, 0, 5000, 1068.6, -516.086, 16.7438, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, -1, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1927, 1, 'Apartments', 0, 0, 0, 0, 5000, 1113.45, -481.082, 21.5832, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, -1, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1928, 1, 'Apartments', 0, 0, 0, 0, 5000, 1113.45, -466.156, 21.5552, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, -1, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1929, 1, 'Apartments', 0, 0, 0, 0, 5000, 1113.45, -461.012, 21.56, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, -1, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1930, 1, 'Apartments', 0, 0, 0, 0, 5000, 1113.45, -446.145, 21.5648, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, -1, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1931, 1, 'Apartments', 0, 0, 0, 0, 5000, 1113.45, -441.121, 21.5653, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, -1, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1932, 1, 'Apartments', 0, 0, 0, 0, 5000, 1140.85, -485.212, 20.481, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, -1, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1933, 1, 'Apartments', 0, 0, 0, 0, 5000, 1150.99, -485.209, 21.4949, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, -1, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1934, 1, 'Apartments', 0, 0, 0, 0, 5000, 1160.85, -485.211, 22.4811, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, -1, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1935, 1, 'Apartments', 0, 0, 0, 0, 5000, 1170.93, -485.208, 23.4892, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, -1, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1936, 1, 'Apartments', 0, 0, 0, 0, 5000, 1181.01, -485.209, 24.4972, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, -1, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1937, 1, 'Apartments', 0, 0, 0, 0, 5000, 1207.81, -556.038, 22.2669, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, -1, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1938, 1, 'Apartments', 0, 0, 0, 0, 5000, 1207.81, -546.034, 23.2659, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, -1, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1939, 1, 'Apartments', 0, 0, 0, 0, 5000, 1207.8, -536.008, 24.252, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, -1, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1940, 1, 'Apartments', 0, 0, 0, 0, 5000, 1208.62, -515.882, 26.8362, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, -1, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1941, 1, 'Apartments', 0, 0, 0, 0, 5000, 1218.7, -515.88, 27.835, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, -1, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1942, 1, 'Apartments', 0, 0, 0, 0, 5000, 1228.62, -515.883, 28.8368, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, -1, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1943, 1, 'Apartments', 0, 0, 0, 0, 5000, 1238.57, -515.88, 29.8349, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, -1, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1944, 1, 'Apartments', 0, 0, 0, 0, 5000, 1248.61, -515.882, 30.8245, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, -1, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1945, 1, 'Apartments', 0, 0, 0, 0, 5000, 1210.81, -485.209, 25.5162, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, -1, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1946, 1, 'Apartments', 0, 0, 0, 0, 5000, 1220.87, -485.208, 26.5799, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, -1, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1947, 1, 'Apartments', 0, 0, 0, 0, 5000, 1230.72, -485.208, 27.565, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, -1, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1948, 1, 'Apartments', 0, 0, 0, 0, 5000, 1240.87, -485.21, 28.5796, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, -1, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1949, 1, 'Apartments', 0, 0, 0, 0, 5000, 1250.85, -485.208, 29.5778, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, -1, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1950, 1, 'Apartments', 0, 0, 0, 0, 5000, 1260.8, -484.168, 31.0618, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, -1, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1951, 1, 'Apartments', 0, 0, 0, 0, 5000, 1270.66, -484.164, 33.0035, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, -1, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1952, 1, 'Apartments', 0, 0, 0, 0, 5000, 1280.93, -484.164, 35.0272, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, -1, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1953, 1, 'Apartments', 0, 0, 0, 0, 5000, 1290.9, -484.165, 36.9913, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, -1, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1954, 1, 'Apartments', 0, 0, 0, 0, 5000, 1300.93, -484.164, 38.9659, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, -1, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1955, 1, 'Apartments', 0, 0, 0, 0, 5000, 1388.03, -436.166, 51.4305, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, -1, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1956, 1, 'Apartments', 0, 0, 0, 0, 5000, 1388.03, -426.169, 51.4296, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, -1, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1957, 1, 'Apartments', 0, 0, 0, 0, 5000, 1388.03, -416.242, 51.4305, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, -1, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1958, 1, 'Apartments', 0, 0, 0, 0, 5000, 1388.09, -408.74, 51.5821, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, -1, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1959, 1, 'Apartments', 0, 0, 0, 0, 5000, 1388.09, -398.619, 51.5805, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, -1, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1960, 1, 'Apartments', 0, 0, 0, 0, 5000, 1388.01, -386.138, 51.169, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, -1, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1961, 1, 'Apartments', 0, 0, 0, 0, 5000, 1388.02, -376.265, 51.1715, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, -1, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1962, 1, 'Apartments', 0, 0, 0, 0, 5000, 1388.02, -366.289, 51.1709, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, -1, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1963, 1, 'Apartments', 0, 0, 0, 0, 5000, 1388.1, -358.708, 51.6067, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, -1, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1964, 1, 'Apartments', 0, 0, 0, 0, 5000, 1388.03, -346.209, 51.1967, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, -1, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1965, 1, 'Apartments', 0, 0, 0, 0, 5000, 1388.03, -336.227, 51.1956, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, -1, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1966, 1, 'Apartments', 0, 0, 0, 0, 5000, 1388.03, -326.232, 51.1966, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, -1, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1967, 1, 'Apartments', 0, 0, 0, 0, 5000, 1388.11, -318.786, 51.5492, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, -1, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1968, 1, 'Apartments', 0, 0, 0, 0, 5000, 1388.11, -308.723, 51.5487, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, -1, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1969, 1, 'Apartments', 0, 0, 0, 0, 5000, 1388.1, -298.721, 51.5466, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, -1, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1970, 1, 'Apartments', 0, 0, 0, 0, 5000, 1347.55, -293.393, 48.7019, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, -1, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1971, 1, 'Apartments', 0, 0, 0, 0, 5000, 1337.53, -293.391, 46.6443, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, -1, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1972, 1, 'Apartments', 0, 0, 0, 0, 5000, 1327.53, -293.395, 44.5924, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, -1, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1973, 1, 'Apartments', 0, 0, 0, 0, 5000, 1317.63, -293.395, 42.558, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, -1, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1974, 1, 'Apartments', 0, 0, 0, 0, 5000, 1351.08, -274.155, 49.4283, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, -1, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1975, 1, 'Apartments', 0, 0, 0, 0, 5000, 1340.99, -274.155, 47.3557, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, -1, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1976, 1, 'Apartments', 0, 0, 0, 0, 5000, 1330.87, -274.158, 45.2767, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, -1, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1977, 1, 'Apartments', 0, 0, 0, 0, 5000, 1320.77, -274.159, 43.2032, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, -1, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1978, 1, 'Apartments', 0, 0, 0, 0, 5000, 1310.89, -274.159, 41.1739, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, -1, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1979, 1, 'Apartments', 0, 0, 0, 0, 5000, 1300.94, -274.168, 39.1568, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, -1, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1980, 1, 'Apartments', 0, 0, 0, 0, 5000, 1290.84, -274.17, 37.1369, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, -1, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1981, 1, 'Apartments', 0, 0, 0, 0, 5000, 1280.85, -274.184, 35.139, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, -1, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1982, 1, 'Apartments', 0, 0, 0, 0, 5000, 1270.73, -274.165, 33.1157, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, -1, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1983, 1, 'Apartments', 0, 0, 0, 0, 5000, 1260.86, -274.192, 31.141, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, -1, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1984, 1, 'Apartments', 0, 0, 0, 0, 5000, 1250.9, -274.196, 29.6361, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, -1, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1985, 1, 'Apartments', 0, 0, 0, 0, 5000, 1240.84, -274.201, 28.63, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, -1, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1986, 1, 'Apartments', 0, 0, 0, 0, 5000, 1230.75, -274.198, 27.6213, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, -1, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1987, 1, 'Apartments', 0, 0, 0, 0, 5000, 1220.83, -274.198, 26.6294, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, -1, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1988, 1, 'Apartments', 0, 0, 0, 0, 5000, 1210.83, -274.206, 25.5394, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, -1, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1989, 1, 'Apartments', 0, 0, 0, 0, 5000, 1210.82, -293.447, 25.5383, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, -1, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1990, 1, 'Apartments', 0, 0, 0, 0, 5000, 1220.79, -293.448, 26.6255, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, -1, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1991, 1, 'Apartments', 0, 0, 0, 0, 5000, 1230.84, -293.447, 27.6297, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, -1, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1992, 1, 'Apartments', 0, 0, 0, 0, 5000, 1240.67, -293.432, 28.6135, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, -1, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1993, 1, 'Apartments', 0, 0, 0, 0, 5000, 1250.84, -293.452, 29.6306, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, -1, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1994, 1, 'Apartments', 0, 0, 0, 0, 5000, 1180.91, -293.448, 24.4868, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, -1, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1995, 1, 'Apartments', 0, 0, 0, 0, 5000, 1170.65, -293.451, 23.461, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, -1, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1996, 1, 'Apartments', 0, 0, 0, 0, 5000, 1160.82, -293.446, 22.4775, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, -1, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1997, 1, 'Apartments', 0, 0, 0, 0, 5000, 1150.77, -293.448, 21.4728, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, -1, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1998, 1, 'Apartments', 0, 0, 0, 0, 5000, 1140.81, -293.448, 20.4772, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, -1, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (1999, 1, 'Apartments', 0, 0, 0, 0, 5000, 1111.69, -281.121, 21.7387, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, -1, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (2000, 1, 'Apartments', 0, 0, 0, 0, 5000, 1111.69, -291.183, 21.7387, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, -1, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (2001, 1, 'Apartments', 0, 0, 0, 0, 5000, 1111.69, -301.082, 21.7387, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, -1, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (2002, 1, 'Apartments', 0, 0, 0, 0, 5000, 1113.44, -311.088, 21.5512, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, -1, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (2003, 1, 'Apartments', 0, 0, 0, 0, 5000, 1113.44, -321.123, 21.5515, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, -1, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (2004, 1, 'Apartments', 0, 0, 0, 0, 5000, 1113.44, -331.199, 21.5509, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, -1, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (2005, 1, 'Apartments', 0, 0, 0, 0, 5000, 1113.44, -341.184, 21.5519, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, -1, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (2006, 1, 'Apartments', 0, 0, 0, 0, 5000, 1113.44, -351.114, 21.5512, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, -1, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (2007, 1, 'Apartments', 0, 0, 0, 0, 5000, 1138.68, -366.117, 21.7515, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, -1, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (2008, 1, 'Apartments', 0, 0, 0, 0, 5000, 1148.57, -366.115, 22.75, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, -1, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (2009, 1, 'Apartments', 0, 0, 0, 0, 5000, 1158.71, -366.117, 23.7512, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, -1, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (2010, 1, 'Apartments', 0, 0, 0, 0, 5000, 1168.57, -366.115, 24.7503, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, -1, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (2011, 1, 'Apartments', 0, 0, 0, 0, 5000, 1178.72, -366.115, 25.7389, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, -1, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (2012, 1, 'Apartments', 0, 0, 0, 0, 5000, 1180.97, -334.194, 24.493, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, -1, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (2013, 1, 'Apartments', 0, 0, 0, 0, 5000, 1170.78, -334.193, 23.4739, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, -1, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (2014, 1, 'Apartments', 0, 0, 0, 0, 5000, 1160.74, -334.195, 22.47, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, -1, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (2015, 1, 'Apartments', 0, 0, 0, 0, 5000, 1150.78, -334.195, 21.4735, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, -1, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (2016, 1, 'Apartments', 0, 0, 0, 0, 5000, 1140.75, -334.194, 20.4709, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, -1, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (2017, 1, 'Apartments', 0, 0, 0, 0, 5000, 1116.16, -268.955, 19.5006, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, -1, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (2018, 1, 'Apartments', 0, 0, 0, 0, 5000, 1116.16, -258.651, 18.5011, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, -1, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (2019, 1, 'Apartments', 0, 0, 0, 0, 5000, 1116.16, -248.915, 17.5567, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, -1, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (2020, 1, 'Apartments', 0, 0, 0, 0, 5000, 1116.16, -238.827, 16.5782, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, -1, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (2021, 1, 'Apartments', 0, 0, 0, 0, 5000, 1116.16, -228.771, 15.5121, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, -1, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (2022, 1, 'Apartments', 0, 0, 0, 0, 5000, 1116.16, -188.853, 14.4756, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, -1, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (2023, 1, 'Apartments', 0, 0, 0, 0, 5000, 1116.16, -178.764, 13.4667, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, -1, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (2024, 1, 'Apartments', 0, 0, 0, 0, 5000, 1116.16, -168.882, 12.4785, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, -1, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (2025, 1, 'Apartments', 0, 0, 0, 0, 5000, 1116.16, -158.823, 11.4726, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, -1, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (2026, 1, 'Apartments', 0, 0, 0, 0, 5000, 1116.17, -148.872, 10.4775, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, -1, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (2027, 1, 'Apartments', 0, 0, 0, 0, 5000, 1138.03, -146.677, 11.7129, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, -1, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (2028, 1, 'Apartments', 0, 0, 0, 0, 5000, 1138.03, -156.636, 12.7127, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, -1, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (2029, 1, 'Apartments', 0, 0, 0, 0, 5000, 1138.03, -166.694, 13.7119, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, -1, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (2030, 1, 'Apartments', 0, 0, 0, 0, 5000, 1138.02, -176.732, 14.7102, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, -1, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (2031, 1, 'Apartments', 0, 0, 0, 0, 5000, 1138.02, -186.722, 15.6998, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, -1, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (2032, 1, 'Apartments', 0, 0, 0, 0, 5000, 1068.09, -186.547, 6.56125, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, -1, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (2033, 1, 'Apartments', 0, 0, 0, 0, 5000, 1068.1, -176.405, 6.56433, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, -1, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (2034, 1, 'Apartments', 0, 0, 0, 0, 5000, 1068.1, -166.483, 6.56387, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, -1, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (2035, 1, 'Apartments', 0, 0, 0, 0, 5000, 1068.1, -156.647, 6.56371, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, -1, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (2036, 1, 'Apartments', 0, 0, 0, 0, 5000, 1068.1, -146.438, 6.56433, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, -1, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (2037, 1, 'Apartments', 0, 0, 0, 0, 5000, 1068.07, -246.554, 6.68813, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, -1, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (2038, 1, 'Apartments', 0, 0, 0, 0, 5000, 1068.07, -256.651, 7.6847, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, -1, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (2039, 1, 'Apartments', 0, 0, 0, 0, 5000, 1068.03, -296.669, 11.7202, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, -1, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (2040, 1, 'Apartments', 0, 0, 0, 0, 5000, 1068.03, -306.614, 12.7193, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, -1, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (2041, 1, 'Apartments', 0, 0, 0, 0, 5000, 1068.03, -316.62, 13.7208, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, -1, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (2042, 1, 'Apartments', 0, 0, 0, 0, 5000, 1068.02, -326.753, 14.7208, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, -1, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (2043, 1, 'Apartments', 0, 0, 0, 0, 5000, 1068.02, -336.539, 15.7111, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, -1, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (2044, 1, 'Apartments', 0, 0, 0, 0, 5000, 894.073, -464.944, 14.9728, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, -1, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (2045, 1, 'Apartments', 0, 0, 0, 0, 5000, 860.881, -463.473, 14.9727, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, -1, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (2046, 1, 'Apartments', 0, 0, 0, 0, 5000, 845.353, -400.239, 14.9727, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, -1, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (2047, 1, 'Apartments', 0, 0, 0, 0, 5000, 845.292, -368.988, 12.6035, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, -1, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (2048, 1, 'Apartments', 0, 0, 0, 0, 5000, 845.291, -350.17, 10.8561, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, -1, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (2049, 1, 'Apartments', 0, 0, 0, 0, 5000, 845.28, -325.243, 8.37018, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, -1, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (2050, 1, 'Safehouse', 0, 0, 0, 0, 0, 890.415, -308.334, 8.72087, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, -1, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (2051, 1, 'Projects', 0, 0, 0, 0, 0, 944.055, -272.571, 4.9437, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, -1, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (2052, 1, 'Apartments', 0, 0, 0, 0, 5000, 942.953, -348.473, 9.97254, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, -1, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (2053, 1, 'Apartments', 0, 0, 0, 0, 5000, 867.205, -671.818, 14.9727, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, -1, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (2054, 1, 'Apartments', 0, 0, 0, 0, 5000, 875.121, -671.3, 14.9727, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, -1, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (2055, 1, 'Apartments', 0, 0, 0, 0, 5000, 872.956, -659.174, 14.968, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, -1, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (2056, 1, 'Apartments', 0, 0, 0, 0, 5000, 882.486, -708.407, 14.9727, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, -1, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (2057, 1, 'Apartments', 0, 0, 0, 0, 5000, 854.338, -689.176, 14.9727, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, -1, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (2058, 1, 'Apartments', 0, 0, 0, 0, 5000, 854.229, -759.091, 14.9727, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, -1, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (2059, 1, 'Apartments', 0, 0, 0, 0, 5000, -119.925, -1379.99, 26.1682, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, -1, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (2060, 1, 'Apartments', 0, 0, 0, 0, 5000, -129.301, -1380, 26.1682, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, -1, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (2061, 1, 'Apartments', 0, 0, 0, 0, 5000, -134.947, -1389.72, 26.3308, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, -1, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (2062, 1, 'Apartments', 0, 0, 0, 0, 5000, -149.135, -1382.05, 26.1694, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, -1, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (2063, 1, 'Apartments', 0, 0, 0, 0, 5000, -140.612, -1385.4, 26.3589, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, -1, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (2064, 1, 'Apartments', 0, 0, 0, 0, 5000, -163.408, -1386.55, 26.3408, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, -1, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (2065, 1, 'Apartments', 0, 0, 0, 0, 5000, -153.896, -1382.77, 26.1709, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, -1, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (2066, 1, 'Apartments', 0, 0, 0, 0, 5000, -168.324, -1382.13, 26.1703, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, -1, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (2067, 1, 'Apartments', 0, 0, 0, 0, 5000, -176.507, -1384.51, 26.3589, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, -1, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (2068, 1, 'Apartments', 0, 0, 0, 0, 5000, -185.877, -1380.46, 26.1682, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, -1, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (2069, 1, 'Apartments', 0, 0, 0, 0, 5000, -157.18, -1476.82, 26.1937, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, -1, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (2070, 1, 'Apartments', 0, 0, 0, 0, 5000, -163.177, -1462.64, 26.1936, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, -1, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (2071, 1, 'Apartments', 0, 0, 0, 0, 5000, -168.42, -1449.97, 26.1936, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, -1, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (2072, 1, 'Apartments', 0, 0, 0, 0, 5000, -149.725, -1489.55, 26.1933, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, -1, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (2073, 1, 'Apartments', 0, 0, 0, 0, 5000, -124.503, -1519.6, 26.1938, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, -1, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (2074, 1, 'Apartments', 0, 0, 0, 0, 5000, -103.405, -1540.97, 26.194, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, -1, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (2075, 1, 'Apartments', 0, 0, 0, 0, 5000, -73.5532, -1564.37, 26.0181, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, -1, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (2076, 1, 'Apartments', 0, 0, 0, 0, 5000, -50.9624, -1575.5, 26.0181, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, -1, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (2077, 1, 'Apartments', 0, 0, 0, 0, 5000, -15.3561, -1587.86, 26.2131, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, -1, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (2078, 1, 'Apartments', 0, 0, 0, 0, 5000, 15.5069, -1590.52, 26.1859, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, -1, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (2079, 1, 'Apartments', 0, 0, 0, 0, 5000, 125.07, -1489.57, 26.1681, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, -1, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (2080, 1, 'Large House', 0, 0, 0, 100000, 0, -742.403, 286.638, 55.2902, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, -1, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (2081, 1, 'Large House', 0, 0, 0, 100000, 0, -677.946, 307.895, 59.851, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, -1, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (2082, 1, 'Large House', 0, 0, 0, 100000, 0, -554.83, 309.903, 70.804, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, -1, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (2083, 1, 'Large House', 0, 0, 0, 100000, 0, -491.273, 286.248, 74.1456, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, -1, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (2084, 1, 'Mansion', 0, 0, 0, 250000, 0, -380.595, 299.861, 63.9212, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, -1, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (2085, 1, 'Large House', 0, 0, 0, 100000, 0, -832.619, 294.623, 41.4776, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, -1, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (2086, 1, 'Projects', 0, 0, 0, 0, 0, -458.327, -46.1888, 3.92693, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, -1, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (2087, 1, 'Projects', 0, 0, 0, 0, 0, -501.077, -64.3643, 3.9269, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, -1, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (2088, 1, 'Projects', 0, 0, 0, 0, 0, -521.206, -65.1702, 3.9269, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, -1, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (2089, 1, 'Projects', 0, 0, 0, 0, 0, -459.481, -25.3028, 3.92691, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, -1, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (2090, 1, 'Projects', 0, 0, 0, 0, 0, -468.289, 52.1059, 3.9269, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, -1, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (2091, 1, 'Projects', 0, 0, 0, 0, 0, -488.708, 51.1985, 3.9269, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, -1, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (2092, 1, 'Projects', 0, 0, 0, 0, 0, -546.122, 31.7124, 3.92692, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, -1, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (2093, 1, 'Projects', 0, 0, 0, 0, 0, -545.188, 11.4865, 3.92691, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, -1, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (2094, 2, 'Apartments', 0, 0, 0, 0, 0, -789.686, -1212.64, 11.104, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, -1, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (2095, 2, 'Apartments', 0, 0, 0, 0, 0, -797.146, -1213.46, 11.103, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, -1, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (2096, 2, 'Apartments', 0, 0, 0, 0, 0, -797.429, -1217.4, 11.1038, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, -1, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (2097, 2, 'Apartments', 0, 0, 0, 0, 0, -803.891, -1202.53, 11.1005, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, -1, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (2098, 2, 'Apartments', 0, 0, 0, 0, 0, -805.512, -1197.92, 11.1019, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, -1, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (2099, 2, 'Apartments', 0, 0, 0, 0, 0, -811.252, -1181.36, 11.1038, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, -1, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (2100, 2, 'Apartments', 0, 0, 0, 0, 0, -810.781, -1177.46, 11.1031, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, -1, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (2101, 2, 'Apartments', 0, 0, 0, 0, 0, -803.383, -1176.86, 11.104, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, -1, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (2102, 2, 'Apartments', 0, 0, 0, 0, 0, -801.069, -1182.84, 11.104, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, -1, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (2103, 2, 'Apartments', 0, 0, 0, 0, 0, -807.399, -1187.39, 11.1053, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, -1, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (2104, 2, 'Apartments', 0, 0, 0, 0, 0, -817.182, -1166.56, 11.1004, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, -1, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (2105, 2, 'Apartments', 0, 0, 0, 0, 0, -818.592, -1161.96, 11.102, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, -1, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (2106, 2, 'Apartments', 0, 0, 0, 0, 0, -813.844, -1147.13, 11.1041, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, -1, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (2107, 2, 'Apartments', 0, 0, 0, 0, 0, -819.993, -1151.34, 11.1052, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, -1, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (2108, 2, 'Apartments', 0, 0, 0, 0, 0, -823.635, -1145.27, 11.1065, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, -1, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (2109, 2, 'Apartments', 0, 0, 0, 0, 0, -823.285, -1141.7, 11.1065, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, -1, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (2110, 2, 'Apartments', 0, 0, 0, 0, 0, -815.787, -1141.42, 11.1041, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, -1, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (2111, 2, 'Apartments', 0, 0, 0, 0, 0, -828.824, -1131.07, 11.1084, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, -1, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (2112, 2, 'Apartments', 0, 0, 0, 0, 0, -830.02, -1126.36, 11.1075, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, -1, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (2113, 2, 'Apartments', 0, 0, 0, 0, 0, -834.289, -1109.49, 11.1072, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, -1, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (2114, 2, 'Apartments', 0, 0, 0, 0, 0, -833.38, -1106.25, 11.1076, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, -1, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (2115, 2, 'Apartments', 0, 0, 0, 0, 0, -830.996, -1115.65, 11.1053, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, -1, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (2116, 2, 'Apartments', 0, 0, 0, 0, 0, -824.422, -1111.64, 11.1046, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, -1, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (2117, 2, 'Apartments', 0, 0, 0, 0, 0, -825.859, -1106.34, 11.1051, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, -1, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (2118, 2, 'Apartments', 0, 0, 0, 0, 0, -838.458, -1095.65, 11.1085, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, -1, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (2119, 2, 'Apartments', 0, 0, 0, 0, 0, -839.434, -1090.78, 11.105, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, -1, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (2120, 2, 'Apartments', 0, 0, 0, 0, 0, -832.835, -1077.57, 11.1032, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, -1, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (2121, 2, 'Apartments', 0, 0, 0, 0, 0, -839.619, -1080.14, 11.105, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, -1, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (2122, 2, 'Apartments', 0, 0, 0, 0, 0, -842.748, -1074.18, 11.1015, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, -1, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (2123, 2, 'Apartments', 0, 0, 0, 0, 0, -841.665, -1071.16, 11.1004, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, -1, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (2124, 2, 'Apartments', 0, 0, 0, 0, 0, -834.217, -1071.72, 11.1021, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, -1, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (2125, 2, 'Apartments', 0, 0, 0, 0, 0, -846.313, -1034.93, 12.4821, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, -1, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (2126, 2, 'Apartments', 0, 0, 0, 0, 0, -847.902, -1018, 12.4821, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, -1, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (2127, 2, 'Apartments', 0, 0, 0, 0, 0, -848.655, -1001.6, 12.4821, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, -1, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (2128, 2, 'Apartments', 0, 0, 0, 0, 0, -839.554, -988.952, 11.104, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, -1, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (2129, 2, 'Apartments', 0, 0, 0, 0, 0, -839.306, -981.231, 11.1038, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, -1, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (2130, 2, 'Apartments', 0, 0, 0, 0, 0, -850.774, -968.19, 11.1034, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, -1, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (2131, 2, 'Apartments', 0, 0, 0, 0, 0, -849.294, -951.886, 11.1034, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, -1, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (2132, 2, 'Apartments', 0, 0, 0, 0, 0, -833.4, -934.169, 11.1037, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, -1, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (2133, 2, 'Apartments', 0, 0, 0, 0, 0, -834.59, -940.385, 11.1038, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, -1, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (2134, 2, 'Apartments', 0, 0, 0, 0, 0, -844.7, -769.721, 12.6569, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, -1, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (2135, 2, 'Apartments', 0, 0, 0, 0, 0, -845.787, -764.262, 12.6569, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, -1, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (2136, 2, 'Apartment', 0, 0, 0, 0, 0, -1192.55, -504.653, 10.7961, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, -1, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (2137, 2, 'Apartment', 0, 0, 0, 0, 0, -1193.41, -505.949, 13.8026, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, -1, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (2138, 2, 'Apartment', 0, 0, 0, 0, 0, -1190.01, -508.944, 10.9041, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, -1, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (2139, 2, 'Apartment', 0, 0, 0, 0, 0, -1178.3, -475.482, 10.8063, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, -1, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (2140, 2, 'Apartment', 0, 0, 0, 0, 0, -1177.23, -470.624, 10.7556, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, -1, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (2141, 2, 'Apartment', 0, 0, 0, 0, 0, -1176.77, -475.231, 13.8029, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, -1, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (2142, 2, 'Medium House', 0, 0, 0, 0, 0, -1182.65, -447.053, 11.71, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, -1, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (2143, 2, 'Medium House', 0, 0, 0, 0, 0, -1207.93, -477.021, 11.71, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, -1, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (2144, 2, 'Apartment', 0, 0, 0, 0, 0, -1215.94, -463.118, 10.7391, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, -1, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (2145, 2, 'Apartment', 0, 0, 0, 0, 0, -1214.25, -459.012, 10.7535, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, -1, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (2146, 2, 'Apartment', 0, 0, 0, 0, 0, -1215.79, -458.657, 13.8029, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, -1, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (2147, 2, 'Medium House', 0, 0, 0, 0, 0, -1214.81, -434.727, 11.71, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, -1, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (2148, 2, 'Medium House', 0, 0, 0, 0, 0, -1216.02, -414.291, 11.71, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, -1, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (2149, 2, 'Apartment', 0, 0, 0, 0, 0, -1220.18, -394.392, 10.8175, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, -1, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (2150, 2, 'Apartment', 0, 0, 0, 0, 0, -1221.87, -398.81, 10.7589, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, -1, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (2151, 2, 'Apartment', 0, 0, 0, 0, 0, -1221.73, -394.218, 13.8029, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, -1, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (2152, 2, 'Medium House', 0, 0, 0, 0, 0, -1190.03, -392.434, 10.703, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, -1, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (2153, 2, 'Apartment', 0, 0, 0, 0, 0, -1195.05, -371.744, 10.9157, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, -1, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (2154, 2, 'Apartment', 0, 0, 0, 0, 0, -1193.68, -367.104, 10.8981, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, -1, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (2155, 2, 'Apartment', 0, 0, 0, 0, 0, -1193.5, -371.722, 13.9977, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, -1, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (2156, 2, 'Medium House', 0, 0, 0, 0, 0, -1186.01, -420.006, 11.71, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, -1, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (2157, 2, 'Apartment', 0, 0, 0, 0, 0, -1164.05, -360.161, 13.8029, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, -1, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (2158, 2, 'Apartment', 0, 0, 0, 0, 0, -1164.28, -358.389, 10.8758, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, -1, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (2159, 2, 'Apartment', 0, 0, 0, 0, 0, -1159.66, -359.92, 10.8091, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, -1, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (2160, 2, 'Large House', 0, 0, 0, 0, 0, -1131.96, -356.508, 15.0355, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, -1, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (2161, 2, 'Medium House', 0, 0, 0, 0, 0, -1118.77, -424.198, 11.5151, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, -1, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (2162, 2, 'Apartment', 0, 0, 0, 0, 0, -1120.06, -394.38, 10.7139, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, -1, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (2163, 2, 'Apartment', 0, 0, 0, 0, 0, -1120.34, -389.873, 13.8029, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, -1, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (2164, 2, 'Apartment', 0, 0, 0, 0, 0, -1118.81, -389.625, 10.7365, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, -1, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (2165, 2, 'Small House', 0, 0, 0, 0, 0, -1050.45, -55.799, 11.3124, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, -1, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (2166, 2, 'Small House', 0, 0, 0, 0, 0, -1048.94, -63.3833, 11.0096, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, -1, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (2167, 2, 'Small House', 0, 0, 0, 0, 0, -1052.15, -76.7793, 10.9762, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, -1, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (2168, 2, 'Small House', 0, 0, 0, 0, 0, -1052.41, -92.2276, 11.025, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, -1, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (2169, 2, 'Small House', 0, 0, 0, 0, 0, -1038.58, -110.442, 10.9592, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, -1, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (2170, 2, 'Small House', 0, 0, 0, 0, 0, -1025.35, -109.008, 10.9626, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, -1, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (2171, 2, 'Small House', 0, 0, 0, 0, 0, -1011.3, -108.897, 10.9648, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, -1, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (2172, 2, 'Small House', 0, 0, 0, 0, 0, -969.034, -125.157, 11.5922, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, -1, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (2173, 2, 'Small House', 0, 0, 0, 0, 0, -968.423, -141.695, 10.9624, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, -1, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (2174, 2, 'Small House', 0, 0, 0, 0, 0, -968.319, -159.961, 10.9425, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, -1, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (2175, 2, 'Small House', 0, 0, 0, 0, 0, -968.981, -175.814, 11.5922, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, -1, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (2176, 2, 'Small House', 0, 0, 0, 0, 0, -968.931, -194.169, 11.5922, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, -1, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (2177, 2, 'Small House', 0, 0, 0, 0, 0, -971.47, -208.899, 11.0095, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, -1, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (2178, 2, 'Small House', 0, 0, 0, 0, 0, -970.675, -225.567, 10.9364, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, -1, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (2179, 2, 'Small House', 0, 0, 0, 0, 0, -970.984, -243.261, 10.9405, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, -1, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (2180, 2, 'Apartment', 0, 0, 0, 0, 0, -998.033, -237.504, 10.9512, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, -1, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (2181, 2, 'Apartment', 0, 0, 0, 0, 0, -999.612, -241.489, 10.8656, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, -1, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (2182, 2, 'Apartment', 0, 0, 0, 0, 0, -1000.23, -237.578, 13.5635, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, -1, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (2183, 2, 'Small House', 0, 0, 0, 0, 0, -1001.8, -220.749, 10.9307, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, -1, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (2184, 2, 'Small House', 0, 0, 0, 0, 0, -1002.15, -209.041, 11.3124, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, -1, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (2185, 2, 'Small House', 0, 0, 0, 0, 0, -1003.66, -200.929, 11.0054, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, -1, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (2186, 2, 'Small House', 0, 0, 0, 0, 0, -1000.5, -187.95, 10.9629, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, -1, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (2187, 2, 'Small House', 0, 0, 0, 0, 0, -1000.19, -171.703, 11.0095, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, -1, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (2188, 2, 'Small House', 0, 0, 0, 0, 0, -1002.35, -151.916, 11.0095, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, -1, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (2189, 2, 'Small House', 0, 0, 0, 0, 0, -968.983, -106.018, 11.592, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, -1, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (2190, 2, 'Small House', 0, 0, 0, 0, 0, -968.318, -90.1378, 10.9248, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, -1, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (2191, 2, 'Small House', 0, 0, 0, 0, 0, -998.54, -92.4276, 11.0096, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, -1, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (2192, 2, 'Small House', 0, 0, 0, 0, 0, -996.836, -77.8641, 10.7369, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, -1, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (2193, 2, 'Small House', 0, 0, 0, 0, 0, -996.705, -65.6875, 10.9344, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, -1, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (2194, 2, 'Small House', 0, 0, 0, 0, 0, -968.423, -72.0007, 10.9376, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, -1, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (2195, 2, 'Small House', 0, 0, 0, 0, 0, -969.904, -56.2967, 10.9389, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, -1, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (2196, 2, 'Apartment', 0, 0, 0, 0, 0, -997.373, -21.2493, 10.7531, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, -1, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (2197, 2, 'Apartment', 0, 0, 0, 0, 0, -995.381, -17.3917, 10.7332, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, -1, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (2198, 2, 'Apartment', 0, 0, 0, 0, 0, -997.564, -17.1247, 13.5635, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, -1, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (2199, 2, 'Small House', 0, 0, 0, 0, 0, -969.12, -39.9983, 10.9822, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, -1, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (2200, 2, 'Small House', 0, 0, 0, 0, 0, -968.81, -22.6307, 10.9107, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, -1, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (2201, 2, 'Small House', 0, 0, 0, 0, 0, -965.655, -6.90707, 11.0095, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, -1, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (2202, 2, 'Small House', 0, 0, 0, 0, 0, -967.165, 4.17259, 11.3124, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, -1, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (2203, 2, 'Ghetto Shack', 0, 0, 0, 0, 0, -979.657, 86.9908, 10.1164, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, -1, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (2204, 2, 'Ghetto Shack', 0, 0, 0, 0, 0, -985.778, 87.1752, 10.1465, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, -1, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (2205, 2, 'Ghetto Shack', 0, 0, 0, 0, 0, -993.114, 86.939, 10.1679, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, -1, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (2206, 2, 'Ghetto Shack', 0, 0, 0, 0, 0, -1006.07, 87.2455, 10.1885, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, -1, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (2207, 2, 'Ghetto Shack', 0, 0, 0, 0, 0, -993.998, 105.068, 9.32741, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, -1, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (2208, 2, 'Ghetto Shack', 0, 0, 0, 0, 0, -981.443, 105.089, 9.26985, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, -1, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (2209, 2, 'Ghetto Shack', 0, 0, 0, 0, 0, -966.15, 104.862, 9.25201, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, -1, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (2210, 2, 'Ghetto Shack', 0, 0, 0, 0, 0, -966.151, 111.282, 9.23218, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, -1, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (2211, 2, 'Ghetto Shack', 0, 0, 0, 0, 0, -966.11, 120.721, 9.23597, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, -1, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (2212, 2, 'Ghetto Shack', 0, 0, 0, 0, 0, -966.29, 127.41, 9.23936, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, -1, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (2213, 2, 'Ghetto Shack', 0, 0, 0, 0, 0, -960.852, 87.1342, 10.2523, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, -1, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (2214, 2, 'Ghetto Shack', 0, 0, 0, 0, 0, -967.219, 87.0634, 10.2189, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, -1, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (2215, 2, 'Ghetto Shack', 0, 0, 0, 0, 0, -954.898, 87.178, 10.2572, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, -1, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (2216, 2, 'Ghetto Shack', 0, 0, 0, 0, 0, -949.212, 86.3268, 10.2938, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, -1, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (2217, 2, 'Ghetto Shack', 0, 0, 0, 0, 0, -951.566, 136.682, 9.30252, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, -1, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (2218, 2, 'Ghetto Shack', 0, 0, 0, 0, 0, -962.805, 146.105, 9.39548, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, -1, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (2219, 2, 'Ghetto Shack', 0, 0, 0, 0, 0, -979.322, 143.394, 9.19588, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, -1, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (2220, 2, 'Ghetto Shack', 0, 0, 0, 0, 0, -985.231, 143.575, 9.21788, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, -1, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (2221, 2, 'Ghetto Shack', 0, 0, 0, 0, 0, -992.599, 143.342, 9.24397, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, -1, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (2222, 2, 'Ghetto Shack', 0, 0, 0, 0, 0, -998.35, 143.679, 9.26586, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, -1, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (2223, 2, 'Ghetto Shack', 0, 0, 0, 0, 0, -981.627, 131.177, 9.26542, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, -1, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (2224, 2, 'Ghetto Shack', 0, 0, 0, 0, 0, -993.957, 123.36, 9.28282, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, -1, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (2225, 2, 'Apartment', 0, 0, 0, 0, 0, -940.064, 201.212, 9.18944, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, -1, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (2226, 2, 'Apartment', 0, 0, 0, 0, 0, -948.041, 201.211, 12.5665, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, -1, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (2227, 2, 'Apartment', 0, 0, 0, 0, 0, -940.201, 201.217, 12.5683, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, -1, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (2228, 2, 'Apartment', 0, 0, 0, 0, 0, -933.921, 209.085, 9.19037, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, -1, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (2229, 2, 'Apartment', 0, 0, 0, 0, 0, -931.271, 233.337, 9.18821, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, -1, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (2230, 2, 'Apartment', 0, 0, 0, 0, 0, -931.269, 233.303, 12.5683, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, -1, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (2231, 2, 'Apartment', 0, 0, 0, 0, 0, -931.269, 247.227, 12.5506, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, -1, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (2232, 2, 'Apartment', 0, 0, 0, 0, 0, -931.271, 240.953, 12.5683, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, -1, 0, -1, 0); +INSERT INTO `house_main` (`house_id`, `house_server`, `house_description`, `house_owner_type`, `house_owner_id`, `house_locked`, `house_buy_price`, `house_rent_price`, `house_entrance_pos_x`, `house_entrance_pos_y`, `house_entrance_pos_z`, `house_entrance_rot_z`, `house_entrance_int`, `house_entrance_vw`, `house_entrance_pickup`, `house_entrance_blip`, `house_exit_pos_x`, `house_exit_pos_y`, `house_exit_pos_z`, `house_exit_rot_z`, `house_exit_int`, `house_exit_vw`, `house_exit_pickup`, `house_exit_blip`, `house_has_interior`) VALUES + (2233, 2, 'Apartment', 0, 0, 0, 0, 0, -923.371, 227.095, 9.1842, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, -1, 0, -1, 0); +/*!40000 ALTER TABLE `house_main` ENABLE KEYS */; + +-- Dumping structure for table db24053.idea_main +CREATE TABLE IF NOT EXISTS `idea_main` ( + `idea_id` smallint(6) NOT NULL DEFAULT '0', + `idea_server` tinyint(1) NOT NULL DEFAULT '0', + `idea_who_added` int(11) NOT NULL DEFAULT '0', + `idea_when_added` int(32) NOT NULL DEFAULT '0', + `idea_script_ver` varchar(16) NOT NULL DEFAULT '0.1', + `idea_pos_x` float NOT NULL DEFAULT '0', + `idea_pos_y` float NOT NULL DEFAULT '0', + `idea_pos_z` float NOT NULL DEFAULT '0', + `idea_rot_z` float NOT NULL DEFAULT '0', + `idea_message` varchar(128) NOT NULL DEFAULT '( No Message )', + `idea_svr_start` int(32) NOT NULL DEFAULT '0', + `idea_session` int(11) NOT NULL DEFAULT '0', + PRIMARY KEY (`idea_id`) +) ENGINE=InnoDB DEFAULT CHARSET=latin1 COMMENT='User Submitted Ideas'; + +-- Dumping data for table db24053.idea_main: ~67 rows (approximately) +/*!40000 ALTER TABLE `idea_main` DISABLE KEYS */; +INSERT INTO `idea_main` (`idea_id`, `idea_server`, `idea_who_added`, `idea_when_added`, `idea_script_ver`, `idea_pos_x`, `idea_pos_y`, `idea_pos_z`, `idea_rot_z`, `idea_message`, `idea_svr_start`, `idea_session`) VALUES + (4, 4, 1, 1608262318, '1.0', 2258.62, 2463.1, 10.8203, -0.5, 'Exclude LVPD garage from snow', 2147483647, 0); +INSERT INTO `idea_main` (`idea_id`, `idea_server`, `idea_who_added`, `idea_when_added`, `idea_script_ver`, `idea_pos_x`, `idea_pos_y`, `idea_pos_z`, `idea_rot_z`, `idea_message`, `idea_svr_start`, `idea_session`) VALUES + (5, 4, 1, 1608262432, '1.0', 2179.19, 1766.52, 56.5364, 1.3, 'Exclude LV parking garages from snow', 2147483647, 0); +INSERT INTO `idea_main` (`idea_id`, `idea_server`, `idea_who_added`, `idea_when_added`, `idea_script_ver`, `idea_pos_x`, `idea_pos_y`, `idea_pos_z`, `idea_rot_z`, `idea_message`, `idea_svr_start`, `idea_session`) VALUES + (6, 4, 1, 1608262457, '1.0', 1858.49, 1800.93, 36.5273, 0.5, 'Exclude LV parking garage ramp from snow', 2147483647, 0); +INSERT INTO `idea_main` (`idea_id`, `idea_server`, `idea_who_added`, `idea_when_added`, `idea_script_ver`, `idea_pos_x`, `idea_pos_y`, `idea_pos_z`, `idea_rot_z`, `idea_message`, `idea_svr_start`, `idea_session`) VALUES + (7, 4, 1, 1608262813, '1.0', 1192.94, -1321.7, 13.3984, -0.2, 'Add hospital fees', 2147483647, 0); +INSERT INTO `idea_main` (`idea_id`, `idea_server`, `idea_who_added`, `idea_when_added`, `idea_script_ver`, `idea_pos_x`, `idea_pos_y`, `idea_pos_z`, `idea_rot_z`, `idea_message`, `idea_svr_start`, `idea_session`) VALUES + (10, 4, 1, 1608264374, '1.0', -1983.54, 163.581, 27.6875, 1.02, 'Admin report system', 2147483647, 0); +INSERT INTO `idea_main` (`idea_id`, `idea_server`, `idea_who_added`, `idea_when_added`, `idea_script_ver`, `idea_pos_x`, `idea_pos_y`, `idea_pos_z`, `idea_rot_z`, `idea_message`, `idea_svr_start`, `idea_session`) VALUES + (21, 1, 2, 1608871415, '1.0', 1336.09, -758.642, 14.5972, -2.84, 'Import/Export between different cities, with each city demanding different cars.', 2147483647, 0); +INSERT INTO `idea_main` (`idea_id`, `idea_server`, `idea_who_added`, `idea_when_added`, `idea_script_ver`, `idea_pos_x`, `idea_pos_y`, `idea_pos_z`, `idea_rot_z`, `idea_message`, `idea_svr_start`, `idea_session`) VALUES + (23, 1, 1, 1608871808, '1.0', -597.479, 353.699, 78.4167, -1.8, 'Remove real estate flag on house in cedar grove', 2147483647, 0); +INSERT INTO `idea_main` (`idea_id`, `idea_server`, `idea_who_added`, `idea_when_added`, `idea_script_ver`, `idea_pos_x`, `idea_pos_y`, `idea_pos_z`, `idea_rot_z`, `idea_message`, `idea_svr_start`, `idea_session`) VALUES + (128, 1, 1, 1609102480, '1.0', 1299.98, -993.433, 14.8793, 0.840862, 'Respawn single vehicle command', 2147483647, 0); +INSERT INTO `idea_main` (`idea_id`, `idea_server`, `idea_who_added`, `idea_when_added`, `idea_script_ver`, `idea_pos_x`, `idea_pos_y`, `idea_pos_z`, `idea_rot_z`, `idea_message`, `idea_svr_start`, `idea_session`) VALUES + (129, 1, 1, 1609103197, '1.0', 1057.91, -398.217, 14.6232, -0.0146413, 'Hail a cab', 2147483647, 0); +INSERT INTO `idea_main` (`idea_id`, `idea_server`, `idea_who_added`, `idea_when_added`, `idea_script_ver`, `idea_pos_x`, `idea_pos_y`, `idea_pos_z`, `idea_rot_z`, `idea_message`, `idea_svr_start`, `idea_session`) VALUES + (133, 4, 2, 1609122166, '1.0', 1859.69, -2665.98, 5.75974, 1.57027, 'Airplane services?', 2147483647, 0); +INSERT INTO `idea_main` (`idea_id`, `idea_server`, `idea_who_added`, `idea_when_added`, `idea_script_ver`, `idea_pos_x`, `idea_pos_y`, `idea_pos_z`, `idea_rot_z`, `idea_message`, `idea_svr_start`, `idea_session`) VALUES + (134, 4, 2, 1609122329, '1.0', 1805.22, -2325.19, 13.3369, -0.342691, 'Should tuning shops be usable?', 2147483647, 0); +INSERT INTO `idea_main` (`idea_id`, `idea_server`, `idea_who_added`, `idea_when_added`, `idea_script_ver`, `idea_pos_x`, `idea_pos_y`, `idea_pos_z`, `idea_rot_z`, `idea_message`, `idea_svr_start`, `idea_session`) VALUES + (135, 4, 1, 1609142767, '1.0', 1552.72, -1674.83, 16.1953, 1.76176, 'Block use of usechar cmd while not in switchchar mode', 2147483647, 0); +INSERT INTO `idea_main` (`idea_id`, `idea_server`, `idea_who_added`, `idea_when_added`, `idea_script_ver`, `idea_pos_x`, `idea_pos_y`, `idea_pos_z`, `idea_rot_z`, `idea_message`, `idea_svr_start`, `idea_session`) VALUES + (139, 2, 2, 1609211402, '1.0', -982.2, -206.222, 10.6344, -0.0137857, 'Red Bus Route', 2147483647, 0); +INSERT INTO `idea_main` (`idea_id`, `idea_server`, `idea_who_added`, `idea_when_added`, `idea_script_ver`, `idea_pos_x`, `idea_pos_y`, `idea_pos_z`, `idea_rot_z`, `idea_message`, `idea_svr_start`, `idea_session`) VALUES + (142, 2, 2, 1609211493, '1.0', -982.211, -201.214, 10.6345, -0.005049, 'Red Line Stop', 2147483647, 0); +INSERT INTO `idea_main` (`idea_id`, `idea_server`, `idea_who_added`, `idea_when_added`, `idea_script_ver`, `idea_pos_x`, `idea_pos_y`, `idea_pos_z`, `idea_rot_z`, `idea_message`, `idea_svr_start`, `idea_session`) VALUES + (145, 2, 2, 1609211523, '1.0', -930.525, 58.0277, 10.528, 0.00543213, 'Red Line Stop', 2147483647, 0); +INSERT INTO `idea_main` (`idea_id`, `idea_server`, `idea_who_added`, `idea_when_added`, `idea_script_ver`, `idea_pos_x`, `idea_pos_y`, `idea_pos_z`, `idea_rot_z`, `idea_message`, `idea_svr_start`, `idea_session`) VALUES + (150, 2, 2, 1609211635, '1.0', -997.698, 175.8, 10.704, 1.44984, 'Red Line Route', 2147483647, 0); +INSERT INTO `idea_main` (`idea_id`, `idea_server`, `idea_who_added`, `idea_when_added`, `idea_script_ver`, `idea_pos_x`, `idea_pos_y`, `idea_pos_z`, `idea_rot_z`, `idea_message`, `idea_svr_start`, `idea_session`) VALUES + (152, 2, 2, 1609211718, '1.0', -607.007, 659.024, 10.9994, -1.42316, 'Red Line Route', 2147483647, 0); +INSERT INTO `idea_main` (`idea_id`, `idea_server`, `idea_who_added`, `idea_when_added`, `idea_script_ver`, `idea_pos_x`, `idea_pos_y`, `idea_pos_z`, `idea_rot_z`, `idea_message`, `idea_svr_start`, `idea_session`) VALUES + (156, 2, 2, 1609211777, '1.0', -665.23, 843.213, 11.3572, -0.028206, 'Red Line Route', 2147483647, 0); +INSERT INTO `idea_main` (`idea_id`, `idea_server`, `idea_who_added`, `idea_when_added`, `idea_script_ver`, `idea_pos_x`, `idea_pos_y`, `idea_pos_z`, `idea_rot_z`, `idea_message`, `idea_svr_start`, `idea_session`) VALUES + (159, 2, 2, 1609211823, '1.0', -669.703, 1174.17, 10.9954, -1.53996, 'Red Line Route', 2147483647, 0); +INSERT INTO `idea_main` (`idea_id`, `idea_server`, `idea_who_added`, `idea_when_added`, `idea_script_ver`, `idea_pos_x`, `idea_pos_y`, `idea_pos_z`, `idea_rot_z`, `idea_message`, `idea_svr_start`, `idea_session`) VALUES + (162, 2, 2, 1609211879, '1.0', 19.0071, 967.446, 10.8685, 2.96466, 'Red Line Route', 2147483647, 0); +INSERT INTO `idea_main` (`idea_id`, `idea_server`, `idea_who_added`, `idea_when_added`, `idea_script_ver`, `idea_pos_x`, `idea_pos_y`, `idea_pos_z`, `idea_rot_z`, `idea_message`, `idea_svr_start`, `idea_session`) VALUES + (166, 2, 2, 1609211936, '1.0', -441.901, 1099.23, 10.9998, 1.4971, 'Red Line Route', 2147483647, 0); +INSERT INTO `idea_main` (`idea_id`, `idea_server`, `idea_who_added`, `idea_when_added`, `idea_script_ver`, `idea_pos_x`, `idea_pos_y`, `idea_pos_z`, `idea_rot_z`, `idea_message`, `idea_svr_start`, `idea_session`) VALUES + (169, 2, 2, 1609212038, '1.0', -1048.15, 1341.77, 8.76068, 3.12651, 'Red Line Route', 2147483647, 0); +INSERT INTO `idea_main` (`idea_id`, `idea_server`, `idea_who_added`, `idea_when_added`, `idea_script_ver`, `idea_pos_x`, `idea_pos_y`, `idea_pos_z`, `idea_rot_z`, `idea_message`, `idea_svr_start`, `idea_session`) VALUES + (170, 2, 2, 1609212082, '1.0', -870.697, 1049.45, 11.0081, -3.14071, 'Red Line Route', 2147483647, 0); +INSERT INTO `idea_main` (`idea_id`, `idea_server`, `idea_who_added`, `idea_when_added`, `idea_script_ver`, `idea_pos_x`, `idea_pos_y`, `idea_pos_z`, `idea_rot_z`, `idea_message`, `idea_svr_start`, `idea_session`) VALUES + (171, 2, 1, 1609212137, '1.0', -1106.57, -300.12, 11.189, -1.51925, 'Green Line Stop', 2147483647, 0); +INSERT INTO `idea_main` (`idea_id`, `idea_server`, `idea_who_added`, `idea_when_added`, `idea_script_ver`, `idea_pos_x`, `idea_pos_y`, `idea_pos_z`, `idea_rot_z`, `idea_message`, `idea_svr_start`, `idea_session`) VALUES + (172, 2, 2, 1609212151, '1.0', -683.681, 610.935, 11.0217, 3.0247, 'Red Line Route', 2147483647, 0); +INSERT INTO `idea_main` (`idea_id`, `idea_server`, `idea_who_added`, `idea_when_added`, `idea_script_ver`, `idea_pos_x`, `idea_pos_y`, `idea_pos_z`, `idea_rot_z`, `idea_message`, `idea_svr_start`, `idea_session`) VALUES + (173, 2, 1, 1609212155, '1.0', -1012.97, -372.445, 10.8688, -3.02113, 'Green Line Stop', 2147483647, 0); +INSERT INTO `idea_main` (`idea_id`, `idea_server`, `idea_who_added`, `idea_when_added`, `idea_script_ver`, `idea_pos_x`, `idea_pos_y`, `idea_pos_z`, `idea_rot_z`, `idea_message`, `idea_svr_start`, `idea_session`) VALUES + (174, 2, 1, 1609212176, '1.0', -1018.07, -573.031, 11.0513, 1.70157, 'Green Line Stop', 2147483647, 0); +INSERT INTO `idea_main` (`idea_id`, `idea_server`, `idea_who_added`, `idea_when_added`, `idea_script_ver`, `idea_pos_x`, `idea_pos_y`, `idea_pos_z`, `idea_rot_z`, `idea_message`, `idea_svr_start`, `idea_session`) VALUES + (175, 2, 1, 1609212200, '1.0', -1184.86, -647.271, 11.565, -3.04171, 'Green Line Stop', 2147483647, 0); +INSERT INTO `idea_main` (`idea_id`, `idea_server`, `idea_who_added`, `idea_when_added`, `idea_script_ver`, `idea_pos_x`, `idea_pos_y`, `idea_pos_z`, `idea_rot_z`, `idea_message`, `idea_svr_start`, `idea_session`) VALUES + (176, 2, 1, 1609212235, '1.0', -1034.59, -908.376, 14.0954, -2.37192, 'Green Line Stop', 2147483647, 0); +INSERT INTO `idea_main` (`idea_id`, `idea_server`, `idea_who_added`, `idea_when_added`, `idea_script_ver`, `idea_pos_x`, `idea_pos_y`, `idea_pos_z`, `idea_rot_z`, `idea_message`, `idea_svr_start`, `idea_session`) VALUES + (177, 2, 1, 1609212260, '1.0', -990.653, -1074.29, 14.7919, 1.55775, 'Green Line Stop', 2147483647, 0); +INSERT INTO `idea_main` (`idea_id`, `idea_server`, `idea_who_added`, `idea_when_added`, `idea_script_ver`, `idea_pos_x`, `idea_pos_y`, `idea_pos_z`, `idea_rot_z`, `idea_message`, `idea_svr_start`, `idea_session`) VALUES + (178, 2, 1, 1609212280, '1.0', -1199.02, -946.758, 14.7914, -0.00153191, 'Green Line Stop', 2147483647, 0); +INSERT INTO `idea_main` (`idea_id`, `idea_server`, `idea_who_added`, `idea_when_added`, `idea_script_ver`, `idea_pos_x`, `idea_pos_y`, `idea_pos_z`, `idea_rot_z`, `idea_message`, `idea_svr_start`, `idea_session`) VALUES + (179, 2, 1, 1609212304, '1.0', -1431.57, -780.312, 14.7926, 1.55966, 'Green Line Stop', 2147483647, 0); +INSERT INTO `idea_main` (`idea_id`, `idea_server`, `idea_who_added`, `idea_when_added`, `idea_script_ver`, `idea_pos_x`, `idea_pos_y`, `idea_pos_z`, `idea_rot_z`, `idea_message`, `idea_svr_start`, `idea_session`) VALUES + (180, 2, 1, 1609212341, '1.0', -1282.71, -785.966, 14.7917, -1.57938, 'Green Line Stop', 2147483647, 0); +INSERT INTO `idea_main` (`idea_id`, `idea_server`, `idea_who_added`, `idea_when_added`, `idea_script_ver`, `idea_pos_x`, `idea_pos_y`, `idea_pos_z`, `idea_rot_z`, `idea_message`, `idea_svr_start`, `idea_session`) VALUES + (181, 2, 1, 1609212357, '1.0', -1204.48, -939.911, 14.7917, 3.14033, 'Green Line Stop', 2147483647, 0); +INSERT INTO `idea_main` (`idea_id`, `idea_server`, `idea_who_added`, `idea_when_added`, `idea_script_ver`, `idea_pos_x`, `idea_pos_y`, `idea_pos_z`, `idea_rot_z`, `idea_message`, `idea_svr_start`, `idea_session`) VALUES + (182, 2, 1, 1609212377, '1.0', -1006.98, -1079.19, 14.7916, -1.57749, 'Green Line Stop', 2147483647, 0); +INSERT INTO `idea_main` (`idea_id`, `idea_server`, `idea_who_added`, `idea_when_added`, `idea_script_ver`, `idea_pos_x`, `idea_pos_y`, `idea_pos_z`, `idea_rot_z`, `idea_message`, `idea_svr_start`, `idea_session`) VALUES + (183, 2, 1, 1609212405, '1.0', -928.565, -1257.33, 11.9578, 2.75726, 'Green Line Stop', 2147483647, 0); +INSERT INTO `idea_main` (`idea_id`, `idea_server`, `idea_who_added`, `idea_when_added`, `idea_script_ver`, `idea_pos_x`, `idea_pos_y`, `idea_pos_z`, `idea_rot_z`, `idea_message`, `idea_svr_start`, `idea_session`) VALUES + (184, 2, 1, 1609212426, '1.0', -912.603, -1442.4, 11.8644, -1.94806, 'Green Line Stop', 2147483647, 0); +INSERT INTO `idea_main` (`idea_id`, `idea_server`, `idea_who_added`, `idea_when_added`, `idea_script_ver`, `idea_pos_x`, `idea_pos_y`, `idea_pos_z`, `idea_rot_z`, `idea_message`, `idea_svr_start`, `idea_session`) VALUES + (185, 2, 1, 1609212446, '1.0', -683.223, -1389.97, 11.0019, 0.0605809, 'Green Line Stop', 2147483647, 0); +INSERT INTO `idea_main` (`idea_id`, `idea_server`, `idea_who_added`, `idea_when_added`, `idea_script_ver`, `idea_pos_x`, `idea_pos_y`, `idea_pos_z`, `idea_rot_z`, `idea_message`, `idea_svr_start`, `idea_session`) VALUES + (186, 2, 1, 1609212466, '1.0', -799.104, -1062.2, 11.0011, 0.188361, 'Green Line Stop', 2147483647, 0); +INSERT INTO `idea_main` (`idea_id`, `idea_server`, `idea_who_added`, `idea_when_added`, `idea_script_ver`, `idea_pos_x`, `idea_pos_y`, `idea_pos_z`, `idea_rot_z`, `idea_message`, `idea_svr_start`, `idea_session`) VALUES + (187, 2, 2, 1609212473, '1.0', -1011.02, 291.984, 11.3042, 2.90937, 'Red Line Route', 2147483647, 0); +INSERT INTO `idea_main` (`idea_id`, `idea_server`, `idea_who_added`, `idea_when_added`, `idea_script_ver`, `idea_pos_x`, `idea_pos_y`, `idea_pos_z`, `idea_rot_z`, `idea_message`, `idea_svr_start`, `idea_session`) VALUES + (188, 2, 1, 1609212510, '1.0', -812.002, -672.31, 11.0046, 0.0840402, 'Green Line Stop', 2147483647, 0); +INSERT INTO `idea_main` (`idea_id`, `idea_server`, `idea_who_added`, `idea_when_added`, `idea_script_ver`, `idea_pos_x`, `idea_pos_y`, `idea_pos_z`, `idea_rot_z`, `idea_message`, `idea_svr_start`, `idea_session`) VALUES + (189, 2, 1, 1609212536, '1.0', -834.03, -477.273, 11.0118, 0.253252, 'Green Line Stop', 2147483647, 0); +INSERT INTO `idea_main` (`idea_id`, `idea_server`, `idea_who_added`, `idea_when_added`, `idea_script_ver`, `idea_pos_x`, `idea_pos_y`, `idea_pos_z`, `idea_rot_z`, `idea_message`, `idea_svr_start`, `idea_session`) VALUES + (190, 2, 1, 1609212555, '1.0', -840.406, -307.896, 11.0001, -0.0336403, 'Green Line Stop', 2147483647, 0); +INSERT INTO `idea_main` (`idea_id`, `idea_server`, `idea_who_added`, `idea_when_added`, `idea_script_ver`, `idea_pos_x`, `idea_pos_y`, `idea_pos_z`, `idea_rot_z`, `idea_message`, `idea_svr_start`, `idea_session`) VALUES + (191, 2, 1, 1609212571, '1.0', -829.729, -119.308, 11.0004, -0.479496, 'Green Line Stop', 2147483647, 0); +INSERT INTO `idea_main` (`idea_id`, `idea_server`, `idea_who_added`, `idea_when_added`, `idea_script_ver`, `idea_pos_x`, `idea_pos_y`, `idea_pos_z`, `idea_rot_z`, `idea_message`, `idea_svr_start`, `idea_session`) VALUES + (192, 2, 2, 1609212572, '1.0', -1185.89, -264.69, 11.5162, -3.04215, 'Red Line Route', 2147483647, 0); +INSERT INTO `idea_main` (`idea_id`, `idea_server`, `idea_who_added`, `idea_when_added`, `idea_script_ver`, `idea_pos_x`, `idea_pos_y`, `idea_pos_z`, `idea_rot_z`, `idea_message`, `idea_svr_start`, `idea_session`) VALUES + (193, 2, 1, 1609212591, '1.0', -903.957, 33.4505, 10.6344, 1.57116, 'Green Line Stop', 2147483647, 0); +INSERT INTO `idea_main` (`idea_id`, `idea_server`, `idea_who_added`, `idea_when_added`, `idea_script_ver`, `idea_pos_x`, `idea_pos_y`, `idea_pos_z`, `idea_rot_z`, `idea_message`, `idea_svr_start`, `idea_session`) VALUES + (194, 2, 1, 1609212613, '1.0', -1002.04, -37.9656, 10.9094, 1.57972, 'Green Line Stop', 2147483647, 0); +INSERT INTO `idea_main` (`idea_id`, `idea_server`, `idea_who_added`, `idea_when_added`, `idea_script_ver`, `idea_pos_x`, `idea_pos_y`, `idea_pos_z`, `idea_rot_z`, `idea_message`, `idea_svr_start`, `idea_session`) VALUES + (195, 2, 1, 1609212625, '1.0', -1066.83, -13.3146, 11.3389, -0.00601319, 'Green Line Stop', 2147483647, 0); +INSERT INTO `idea_main` (`idea_id`, `idea_server`, `idea_who_added`, `idea_when_added`, `idea_script_ver`, `idea_pos_x`, `idea_pos_y`, `idea_pos_z`, `idea_rot_z`, `idea_message`, `idea_svr_start`, `idea_session`) VALUES + (196, 2, 1, 1609212648, '1.0', -1067.5, 109.544, 11.3122, -0.0967074, 'Green Line Stop', 2147483647, 0); +INSERT INTO `idea_main` (`idea_id`, `idea_server`, `idea_who_added`, `idea_when_added`, `idea_script_ver`, `idea_pos_x`, `idea_pos_y`, `idea_pos_z`, `idea_rot_z`, `idea_message`, `idea_svr_start`, `idea_session`) VALUES + (197, 2, 1, 1609212672, '1.0', -1003.59, 171.078, 10.8953, -1.70057, 'Green Line Stop', 2147483647, 0); +INSERT INTO `idea_main` (`idea_id`, `idea_server`, `idea_who_added`, `idea_when_added`, `idea_script_ver`, `idea_pos_x`, `idea_pos_y`, `idea_pos_z`, `idea_rot_z`, `idea_message`, `idea_svr_start`, `idea_session`) VALUES + (198, 2, 1, 1609212698, '1.0', -748.054, 198.243, 11.2455, -1.75594, 'Green Line Stop', 2147483647, 0); +INSERT INTO `idea_main` (`idea_id`, `idea_server`, `idea_who_added`, `idea_when_added`, `idea_script_ver`, `idea_pos_x`, `idea_pos_y`, `idea_pos_z`, `idea_rot_z`, `idea_message`, `idea_svr_start`, `idea_session`) VALUES + (199, 2, 1, 1609212717, '1.0', -850, -110.625, 11.0203, 2.67104, 'Green Line Stop', 2147483647, 0); +INSERT INTO `idea_main` (`idea_id`, `idea_server`, `idea_who_added`, `idea_when_added`, `idea_script_ver`, `idea_pos_x`, `idea_pos_y`, `idea_pos_z`, `idea_rot_z`, `idea_message`, `idea_svr_start`, `idea_session`) VALUES + (200, 2, 1, 1609212735, '1.0', -898.862, -280.373, 10.6645, 1.53245, 'Green Line Stop', 2147483647, 0); +INSERT INTO `idea_main` (`idea_id`, `idea_server`, `idea_who_added`, `idea_when_added`, `idea_script_ver`, `idea_pos_x`, `idea_pos_y`, `idea_pos_z`, `idea_rot_z`, `idea_message`, `idea_svr_start`, `idea_session`) VALUES + (201, 2, 1, 1609212753, '1.0', -1082.1, -294.416, 11.2065, 1.59266, 'Green Line Stop', 2147483647, 0); +INSERT INTO `idea_main` (`idea_id`, `idea_server`, `idea_who_added`, `idea_when_added`, `idea_script_ver`, `idea_pos_x`, `idea_pos_y`, `idea_pos_z`, `idea_rot_z`, `idea_message`, `idea_svr_start`, `idea_session`) VALUES + (202, 4, 1, 1609213965, '1.0', 237.392, 75.8236, 1005.04, 0.129586, 'Add helpful info on specific events. Approaching veh or job icon, etc', 2147483647, 0); +INSERT INTO `idea_main` (`idea_id`, `idea_server`, `idea_who_added`, `idea_when_added`, `idea_script_ver`, `idea_pos_x`, `idea_pos_y`, `idea_pos_z`, `idea_rot_z`, `idea_message`, `idea_svr_start`, `idea_session`) VALUES + (203, 2, 1, 1609224894, '1.0', -377.152, -337.399, 11.2356, -3.09393, 'Remove gates at starfish island houses', 2147483647, 0); +INSERT INTO `idea_main` (`idea_id`, `idea_server`, `idea_who_added`, `idea_when_added`, `idea_script_ver`, `idea_pos_x`, `idea_pos_y`, `idea_pos_z`, `idea_rot_z`, `idea_message`, `idea_svr_start`, `idea_session`) VALUES + (204, 1, 1, 1609233851, '1.0', 125.646, -922.827, 25.8177, 1.60839, 'Fix colon being too close to msg in admin chat', 2147483647, 0); +INSERT INTO `idea_main` (`idea_id`, `idea_server`, `idea_who_added`, `idea_when_added`, `idea_script_ver`, `idea_pos_x`, `idea_pos_y`, `idea_pos_z`, `idea_rot_z`, `idea_message`, `idea_svr_start`, `idea_session`) VALUES + (205, 1, 1, 1609233955, '1.0', -149.499, -1378.3, 26.1682, 1.54235, 'Add line of sight check to labels', 2147483647, 0); +INSERT INTO `idea_main` (`idea_id`, `idea_server`, `idea_who_added`, `idea_when_added`, `idea_script_ver`, `idea_pos_x`, `idea_pos_y`, `idea_pos_z`, `idea_rot_z`, `idea_message`, `idea_svr_start`, `idea_session`) VALUES + (206, 1, 1, 1609234666, '1.0', -365.363, 244.853, 60.8601, -0.181428, 'Remove cartel mansion gates in SSV', 2147483647, 0); +INSERT INTO `idea_main` (`idea_id`, `idea_server`, `idea_who_added`, `idea_when_added`, `idea_script_ver`, `idea_pos_x`, `idea_pos_y`, `idea_pos_z`, `idea_rot_z`, `idea_message`, `idea_svr_start`, `idea_session`) VALUES + (207, 1, 1, 1609235429, '1.0', 360.992, -1134.22, 22.9809, 0.125214, 'Delete gates at LCPD staunton station', 2147483647, 0); +INSERT INTO `idea_main` (`idea_id`, `idea_server`, `idea_who_added`, `idea_when_added`, `idea_script_ver`, `idea_pos_x`, `idea_pos_y`, `idea_pos_z`, `idea_rot_z`, `idea_message`, `idea_svr_start`, `idea_session`) VALUES + (208, 1, 1, 1609235439, '1.0', 346.371, -1157.53, 22.9809, 2.41115, 'Lock all job vehicles', 2147483647, 0); +INSERT INTO `idea_main` (`idea_id`, `idea_server`, `idea_who_added`, `idea_when_added`, `idea_script_ver`, `idea_pos_x`, `idea_pos_y`, `idea_pos_z`, `idea_rot_z`, `idea_message`, `idea_svr_start`, `idea_session`) VALUES + (209, 1, 1, 1609235450, '1.0', 334.967, -1187.78, 26.1682, -2.8111, 'Always respawn job vehicles as locked', 2147483647, 0); +INSERT INTO `idea_main` (`idea_id`, `idea_server`, `idea_who_added`, `idea_when_added`, `idea_script_ver`, `idea_pos_x`, `idea_pos_y`, `idea_pos_z`, `idea_rot_z`, `idea_message`, `idea_svr_start`, `idea_session`) VALUES + (210, 2, 1, 1609320596, '1.0', -807.673, -1186.79, 11.1053, -2.71469, 'Use pickup.isOnScreen check for label rendering', 2147483647, 0); +INSERT INTO `idea_main` (`idea_id`, `idea_server`, `idea_who_added`, `idea_when_added`, `idea_script_ver`, `idea_pos_x`, `idea_pos_y`, `idea_pos_z`, `idea_rot_z`, `idea_message`, `idea_svr_start`, `idea_session`) VALUES + (211, 2, 1, 1609320809, '1.0', -854.357, -692.373, 11.2693, 1.34311, 'Little Havana Police Job Location (VC)', 2147483647, 0); +INSERT INTO `idea_main` (`idea_id`, `idea_server`, `idea_who_added`, `idea_when_added`, `idea_script_ver`, `idea_pos_x`, `idea_pos_y`, `idea_pos_z`, `idea_rot_z`, `idea_message`, `idea_svr_start`, `idea_session`) VALUES + (212, 2, 1, 1609322731, '1.0', -757.587, 558.332, 11.0974, -1.12629, 'Add cmds for biz buy/rent price', 2147483647, 0); +INSERT INTO `idea_main` (`idea_id`, `idea_server`, `idea_who_added`, `idea_when_added`, `idea_script_ver`, `idea_pos_x`, `idea_pos_y`, `idea_pos_z`, `idea_rot_z`, `idea_message`, `idea_svr_start`, `idea_session`) VALUES + (213, 2, 1, 1609322736, '1.0', -757.587, 558.332, 11.0974, -1.12629, 'Add cmds for house buy/rent price', 2147483647, 0); +INSERT INTO `idea_main` (`idea_id`, `idea_server`, `idea_who_added`, `idea_when_added`, `idea_script_ver`, `idea_pos_x`, `idea_pos_y`, `idea_pos_z`, `idea_rot_z`, `idea_message`, `idea_svr_start`, `idea_session`) VALUES + (214, 2, 1, 1609322861, '1.0', -877.584, 772.635, 11.0846, 0.274123, '(VC) Music records, record player, 8 track tapes', 2147483647, 0); +/*!40000 ALTER TABLE `idea_main` ENABLE KEYS */; + +-- Dumping structure for table db24053.ins_acct +CREATE TABLE IF NOT EXISTS `ins_acct` ( + `ins_acct_id` int(11) NOT NULL AUTO_INCREMENT, + `ins_acct_server` tinyint(2) NOT NULL DEFAULT '0', + `ins_acct_provider` int(11) NOT NULL DEFAULT '0', + `ins_acct_type` tinyint(2) NOT NULL DEFAULT '0', + `ins_acct_plan` int(11) NOT NULL DEFAULT '0', + `ins_acct_owner_type` int(11) NOT NULL DEFAULT '0', + `ins_acct_owner_id` int(11) NOT NULL DEFAULT '0', + `ins_acct_active` tinyint(1) NOT NULL DEFAULT '0', + `ins_acct_entity_type` int(11) NOT NULL DEFAULT '0', + `ins_acct_entity_id` int(11) NOT NULL DEFAULT '0', + PRIMARY KEY (`ins_acct_id`) USING BTREE +) ENGINE=InnoDB DEFAULT CHARSET=latin1 COMMENT='Insurance - Accounts'; + +-- Dumping data for table db24053.ins_acct: ~0 rows (approximately) +/*!40000 ALTER TABLE `ins_acct` DISABLE KEYS */; +/*!40000 ALTER TABLE `ins_acct` ENABLE KEYS */; + +-- Dumping structure for table db24053.ins_acct_history +CREATE TABLE IF NOT EXISTS `ins_acct_history` ( + `ins_acct_history_id` int(11) NOT NULL AUTO_INCREMENT, + `ins_acct_history_acct` int(11) NOT NULL DEFAULT '0', + `ins_acct_history_type` int(11) NOT NULL DEFAULT '0', + `ins_acct_history_paid` int(11) NOT NULL DEFAULT '0', + `ins_acct_history_total` int(11) NOT NULL DEFAULT '0', + `ins_acct_history_deleted` tinyint(1) NOT NULL DEFAULT '0', + `ins_acct_history_comment` varchar(256) NOT NULL DEFAULT '0', + PRIMARY KEY (`ins_acct_history_id`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Insurance - Account History'; + +-- Dumping data for table db24053.ins_acct_history: ~0 rows (approximately) +/*!40000 ALTER TABLE `ins_acct_history` DISABLE KEYS */; +/*!40000 ALTER TABLE `ins_acct_history` ENABLE KEYS */; + +-- Dumping structure for table db24053.ins_plan +CREATE TABLE IF NOT EXISTS `ins_plan` ( + `ins_plan_id` int(11) NOT NULL AUTO_INCREMENT, + `ins_plan_name` varchar(64) NOT NULL DEFAULT 'Unnamed', + `ins_plan_provider` int(11) NOT NULL DEFAULT '0', + `ins_plan_entity_type` int(11) NOT NULL DEFAULT '0', + `ins_plan_enabled` int(11) NOT NULL DEFAULT '0', + `ins_plan_setup_fee` int(11) NOT NULL DEFAULT '0', + `ins_plan_max_coverage` int(11) NOT NULL DEFAULT '0', + `ins_plan_min_coverage` int(11) NOT NULL DEFAULT '0', + `ins_plan_max_payout` int(11) NOT NULL DEFAULT '0', + `ins_plan_rate` int(11) NOT NULL DEFAULT '0', + `ins_plan_rate_multiplier` int(11) NOT NULL DEFAULT '0', + `ins_plan_minscore` int(11) NOT NULL DEFAULT '0', + PRIMARY KEY (`ins_plan_id`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Insurance - Plans'; + +-- Dumping data for table db24053.ins_plan: ~0 rows (approximately) +/*!40000 ALTER TABLE `ins_plan` DISABLE KEYS */; +/*!40000 ALTER TABLE `ins_plan` ENABLE KEYS */; + +-- Dumping structure for table db24053.ins_provider +CREATE TABLE IF NOT EXISTS `ins_provider` ( + `insurance_provider_id` mediumint(9) NOT NULL DEFAULT '0', + `insurance_provider_server` tinyint(2) NOT NULL DEFAULT '0', + `insurance_provider_name` varchar(64) NOT NULL DEFAULT '0', + `insurance_provider_type_flags` int(32) NOT NULL DEFAULT '0', + `insurance_provider_active` tinyint(1) NOT NULL DEFAULT '1', + `insurance_provider_owner_type` tinyint(1) NOT NULL DEFAULT '0', + `insurance_provider_owner_id` mediumint(9) NOT NULL DEFAULT '0', + PRIMARY KEY (`insurance_provider_id`) +) ENGINE=InnoDB DEFAULT CHARSET=latin1 COMMENT='Insurance - Providers'; + +-- Dumping data for table db24053.ins_provider: ~0 rows (approximately) +/*!40000 ALTER TABLE `ins_provider` DISABLE KEYS */; +/*!40000 ALTER TABLE `ins_provider` ENABLE KEYS */; + +-- Dumping structure for table db24053.int_main +CREATE TABLE IF NOT EXISTS `int_main` ( + `int_id` smallint(6) NOT NULL DEFAULT '0', + `int_server` tinyint(1) NOT NULL DEFAULT '0', + `int_name` varchar(50) NOT NULL DEFAULT 'Unnamed', + `int_type` tinyint(2) NOT NULL DEFAULT '0', + `int_entrance_pos_x` float NOT NULL DEFAULT '0', + `int_entrance_pos_y` float NOT NULL DEFAULT '0', + `int_entrance_pos_z` float NOT NULL DEFAULT '0', + `int_entrance_rot_z` float NOT NULL DEFAULT '0', + `int_entrance_int` int(11) NOT NULL DEFAULT '0', + `int_entrance_vw` int(11) NOT NULL DEFAULT '0', + `int_exit_pos_x` float NOT NULL DEFAULT '0', + `int_exit_pos_y` float NOT NULL DEFAULT '0', + `int_exit_pos_z` float NOT NULL DEFAULT '0', + `int_exit_rot_z` float NOT NULL DEFAULT '0', + `int_exit_int` int(11) NOT NULL DEFAULT '0', + `int_exit_vw` int(11) NOT NULL DEFAULT '0', + `int_locked` tinyint(1) NOT NULL DEFAULT '0', + PRIMARY KEY (`int_id`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Interiors'; + +-- Dumping data for table db24053.int_main: ~0 rows (approximately) +/*!40000 ALTER TABLE `int_main` DISABLE KEYS */; +/*!40000 ALTER TABLE `int_main` ENABLE KEYS */; + +-- Dumping structure for table db24053.job_bl +CREATE TABLE IF NOT EXISTS `job_bl` ( + `job_bl_id` int(11) NOT NULL AUTO_INCREMENT, + `job_bl_job` int(11) NOT NULL DEFAULT '0', + `job_bl_sacct` int(11) NOT NULL DEFAULT '0', + `job_bl_when_added` int(11) NOT NULL DEFAULT '0', + `job_bl_who_added` int(11) NOT NULL DEFAULT '0', + `job_bl_deleted` int(11) NOT NULL DEFAULT '0', + PRIMARY KEY (`job_bl_id`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Job - Blacklist'; + +-- Dumping data for table db24053.job_bl: ~0 rows (approximately) +/*!40000 ALTER TABLE `job_bl` DISABLE KEYS */; +/*!40000 ALTER TABLE `job_bl` ENABLE KEYS */; + +-- Dumping structure for table db24053.job_equip +CREATE TABLE IF NOT EXISTS `job_equip` ( + `job_equip_id` smallint(6) NOT NULL DEFAULT '0', + `job_equip_job` smallint(6) NOT NULL DEFAULT '0', + `job_equip_minrank` tinyint(2) NOT NULL DEFAULT '0', + `job_equip_name` varchar(50) NOT NULL DEFAULT '0', + `job_equip_enabled` tinyint(1) NOT NULL DEFAULT '1', + PRIMARY KEY (`job_equip_id`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Job Equipments'; + +-- Dumping data for table db24053.job_equip: ~20 rows (approximately) +/*!40000 ALTER TABLE `job_equip` DISABLE KEYS */; +INSERT INTO `job_equip` (`job_equip_id`, `job_equip_job`, `job_equip_minrank`, `job_equip_name`, `job_equip_enabled`) VALUES + (1, 1, 0, 'Patrol', 1); +INSERT INTO `job_equip` (`job_equip_id`, `job_equip_job`, `job_equip_minrank`, `job_equip_name`, `job_equip_enabled`) VALUES + (2, 2, 0, 'Patrol', 1); +INSERT INTO `job_equip` (`job_equip_id`, `job_equip_job`, `job_equip_minrank`, `job_equip_name`, `job_equip_enabled`) VALUES + (3, 3, 0, 'Patrol', 1); +INSERT INTO `job_equip` (`job_equip_id`, `job_equip_job`, `job_equip_minrank`, `job_equip_name`, `job_equip_enabled`) VALUES + (4, 4, 0, 'Patrol', 1); +INSERT INTO `job_equip` (`job_equip_id`, `job_equip_job`, `job_equip_minrank`, `job_equip_name`, `job_equip_enabled`) VALUES + (5, 1, 1, 'Detective', 1); +INSERT INTO `job_equip` (`job_equip_id`, `job_equip_job`, `job_equip_minrank`, `job_equip_name`, `job_equip_enabled`) VALUES + (6, 2, 1, 'Detective', 1); +INSERT INTO `job_equip` (`job_equip_id`, `job_equip_job`, `job_equip_minrank`, `job_equip_name`, `job_equip_enabled`) VALUES + (7, 3, 1, 'Detective', 1); +INSERT INTO `job_equip` (`job_equip_id`, `job_equip_job`, `job_equip_minrank`, `job_equip_name`, `job_equip_enabled`) VALUES + (8, 4, 1, 'Detective', 1); +INSERT INTO `job_equip` (`job_equip_id`, `job_equip_job`, `job_equip_minrank`, `job_equip_name`, `job_equip_enabled`) VALUES + (9, 1, 2, 'SWAT', 1); +INSERT INTO `job_equip` (`job_equip_id`, `job_equip_job`, `job_equip_minrank`, `job_equip_name`, `job_equip_enabled`) VALUES + (10, 2, 2, 'SWAT', 1); +INSERT INTO `job_equip` (`job_equip_id`, `job_equip_job`, `job_equip_minrank`, `job_equip_name`, `job_equip_enabled`) VALUES + (11, 3, 2, 'SWAT', 1); +INSERT INTO `job_equip` (`job_equip_id`, `job_equip_job`, `job_equip_minrank`, `job_equip_name`, `job_equip_enabled`) VALUES + (12, 4, 2, 'SWAT', 1); +INSERT INTO `job_equip` (`job_equip_id`, `job_equip_job`, `job_equip_minrank`, `job_equip_name`, `job_equip_enabled`) VALUES + (13, 1, 3, 'Supervisor', 1); +INSERT INTO `job_equip` (`job_equip_id`, `job_equip_job`, `job_equip_minrank`, `job_equip_name`, `job_equip_enabled`) VALUES + (14, 2, 3, 'Supervisor', 1); +INSERT INTO `job_equip` (`job_equip_id`, `job_equip_job`, `job_equip_minrank`, `job_equip_name`, `job_equip_enabled`) VALUES + (15, 3, 3, 'Supervisor', 1); +INSERT INTO `job_equip` (`job_equip_id`, `job_equip_job`, `job_equip_minrank`, `job_equip_name`, `job_equip_enabled`) VALUES + (16, 4, 3, 'Supervisor', 1); +INSERT INTO `job_equip` (`job_equip_id`, `job_equip_job`, `job_equip_minrank`, `job_equip_name`, `job_equip_enabled`) VALUES + (17, 9, 0, 'Firefighter', 1); +INSERT INTO `job_equip` (`job_equip_id`, `job_equip_job`, `job_equip_minrank`, `job_equip_name`, `job_equip_enabled`) VALUES + (18, 10, 0, 'Firefighter', 1); +INSERT INTO `job_equip` (`job_equip_id`, `job_equip_job`, `job_equip_minrank`, `job_equip_name`, `job_equip_enabled`) VALUES + (19, 11, 0, 'Firefighter', 1); +INSERT INTO `job_equip` (`job_equip_id`, `job_equip_job`, `job_equip_minrank`, `job_equip_name`, `job_equip_enabled`) VALUES + (20, 12, 0, 'Firefighter', 1); +/*!40000 ALTER TABLE `job_equip` ENABLE KEYS */; + +-- Dumping structure for table db24053.job_equip_wep +CREATE TABLE IF NOT EXISTS `job_equip_wep` ( + `job_equip_wep_id` smallint(6) NOT NULL DEFAULT '0', + `job_equip_wep_equip` smallint(6) NOT NULL DEFAULT '0', + `job_equip_wep_wep` tinyint(2) NOT NULL DEFAULT '0', + `job_equip_wep_ammo` mediumint(9) NOT NULL DEFAULT '0', + `job_equip_wep_enabled` tinyint(1) NOT NULL DEFAULT '1', + PRIMARY KEY (`job_equip_wep_id`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Job Equipments - Weapons'; + +-- Dumping data for table db24053.job_equip_wep: ~49 rows (approximately) +/*!40000 ALTER TABLE `job_equip_wep` DISABLE KEYS */; +INSERT INTO `job_equip_wep` (`job_equip_wep_id`, `job_equip_wep_equip`, `job_equip_wep_wep`, `job_equip_wep_ammo`, `job_equip_wep_enabled`) VALUES + (1, 1, 1, 1, 1); +INSERT INTO `job_equip_wep` (`job_equip_wep_id`, `job_equip_wep_equip`, `job_equip_wep_wep`, `job_equip_wep_ammo`, `job_equip_wep_enabled`) VALUES + (2, 1, 2, 150, 1); +INSERT INTO `job_equip_wep` (`job_equip_wep_id`, `job_equip_wep_equip`, `job_equip_wep_wep`, `job_equip_wep_ammo`, `job_equip_wep_enabled`) VALUES + (3, 1, 4, 20, 1); +INSERT INTO `job_equip_wep` (`job_equip_wep_id`, `job_equip_wep_equip`, `job_equip_wep_wep`, `job_equip_wep_ammo`, `job_equip_wep_enabled`) VALUES + (4, 5, 1, 1, 1); +INSERT INTO `job_equip_wep` (`job_equip_wep_id`, `job_equip_wep_equip`, `job_equip_wep_wep`, `job_equip_wep_ammo`, `job_equip_wep_enabled`) VALUES + (5, 5, 2, 150, 1); +INSERT INTO `job_equip_wep` (`job_equip_wep_id`, `job_equip_wep_equip`, `job_equip_wep_wep`, `job_equip_wep_ammo`, `job_equip_wep_enabled`) VALUES + (6, 5, 4, 20, 1); +INSERT INTO `job_equip_wep` (`job_equip_wep_id`, `job_equip_wep_equip`, `job_equip_wep_wep`, `job_equip_wep_ammo`, `job_equip_wep_enabled`) VALUES + (7, 9, 1, 1, 1); +INSERT INTO `job_equip_wep` (`job_equip_wep_id`, `job_equip_wep_equip`, `job_equip_wep_wep`, `job_equip_wep_ammo`, `job_equip_wep_enabled`) VALUES + (8, 9, 2, 150, 1); +INSERT INTO `job_equip_wep` (`job_equip_wep_id`, `job_equip_wep_equip`, `job_equip_wep_wep`, `job_equip_wep_ammo`, `job_equip_wep_enabled`) VALUES + (9, 9, 4, 20, 1); +INSERT INTO `job_equip_wep` (`job_equip_wep_id`, `job_equip_wep_equip`, `job_equip_wep_wep`, `job_equip_wep_ammo`, `job_equip_wep_enabled`) VALUES + (10, 13, 4, 1, 1); +INSERT INTO `job_equip_wep` (`job_equip_wep_id`, `job_equip_wep_equip`, `job_equip_wep_wep`, `job_equip_wep_ammo`, `job_equip_wep_enabled`) VALUES + (11, 13, 17, 150, 1); +INSERT INTO `job_equip_wep` (`job_equip_wep_id`, `job_equip_wep_equip`, `job_equip_wep_wep`, `job_equip_wep_ammo`, `job_equip_wep_enabled`) VALUES + (12, 13, 19, 20, 1); +INSERT INTO `job_equip_wep` (`job_equip_wep_id`, `job_equip_wep_equip`, `job_equip_wep_wep`, `job_equip_wep_ammo`, `job_equip_wep_enabled`) VALUES + (16, 21, 4, 1, 1); +INSERT INTO `job_equip_wep` (`job_equip_wep_id`, `job_equip_wep_equip`, `job_equip_wep_wep`, `job_equip_wep_ammo`, `job_equip_wep_enabled`) VALUES + (17, 21, 17, 150, 1); +INSERT INTO `job_equip_wep` (`job_equip_wep_id`, `job_equip_wep_equip`, `job_equip_wep_wep`, `job_equip_wep_ammo`, `job_equip_wep_enabled`) VALUES + (18, 21, 19, 20, 1); +INSERT INTO `job_equip_wep` (`job_equip_wep_id`, `job_equip_wep_equip`, `job_equip_wep_wep`, `job_equip_wep_ammo`, `job_equip_wep_enabled`) VALUES + (19, 25, 4, 1, 1); +INSERT INTO `job_equip_wep` (`job_equip_wep_id`, `job_equip_wep_equip`, `job_equip_wep_wep`, `job_equip_wep_ammo`, `job_equip_wep_enabled`) VALUES + (20, 25, 17, 150, 1); +INSERT INTO `job_equip_wep` (`job_equip_wep_id`, `job_equip_wep_equip`, `job_equip_wep_wep`, `job_equip_wep_ammo`, `job_equip_wep_enabled`) VALUES + (21, 25, 19, 20, 1); +INSERT INTO `job_equip_wep` (`job_equip_wep_id`, `job_equip_wep_equip`, `job_equip_wep_wep`, `job_equip_wep_ammo`, `job_equip_wep_enabled`) VALUES + (22, 29, 3, 1, 1); +INSERT INTO `job_equip_wep` (`job_equip_wep_id`, `job_equip_wep_equip`, `job_equip_wep_wep`, `job_equip_wep_ammo`, `job_equip_wep_enabled`) VALUES + (23, 29, 24, 150, 1); +INSERT INTO `job_equip_wep` (`job_equip_wep_id`, `job_equip_wep_equip`, `job_equip_wep_wep`, `job_equip_wep_ammo`, `job_equip_wep_enabled`) VALUES + (24, 29, 25, 20, 1); +INSERT INTO `job_equip_wep` (`job_equip_wep_id`, `job_equip_wep_equip`, `job_equip_wep_wep`, `job_equip_wep_ammo`, `job_equip_wep_enabled`) VALUES + (25, 33, 3, 1, 1); +INSERT INTO `job_equip_wep` (`job_equip_wep_id`, `job_equip_wep_equip`, `job_equip_wep_wep`, `job_equip_wep_ammo`, `job_equip_wep_enabled`) VALUES + (26, 33, 24, 150, 1); +INSERT INTO `job_equip_wep` (`job_equip_wep_id`, `job_equip_wep_equip`, `job_equip_wep_wep`, `job_equip_wep_ammo`, `job_equip_wep_enabled`) VALUES + (27, 33, 25, 20, 1); +INSERT INTO `job_equip_wep` (`job_equip_wep_id`, `job_equip_wep_equip`, `job_equip_wep_wep`, `job_equip_wep_ammo`, `job_equip_wep_enabled`) VALUES + (28, 37, 3, 1, 1); +INSERT INTO `job_equip_wep` (`job_equip_wep_id`, `job_equip_wep_equip`, `job_equip_wep_wep`, `job_equip_wep_ammo`, `job_equip_wep_enabled`) VALUES + (29, 37, 24, 150, 1); +INSERT INTO `job_equip_wep` (`job_equip_wep_id`, `job_equip_wep_equip`, `job_equip_wep_wep`, `job_equip_wep_ammo`, `job_equip_wep_enabled`) VALUES + (30, 37, 25, 20, 1); +INSERT INTO `job_equip_wep` (`job_equip_wep_id`, `job_equip_wep_equip`, `job_equip_wep_wep`, `job_equip_wep_ammo`, `job_equip_wep_enabled`) VALUES + (31, 4, 3, 1, 1); +INSERT INTO `job_equip_wep` (`job_equip_wep_id`, `job_equip_wep_equip`, `job_equip_wep_wep`, `job_equip_wep_ammo`, `job_equip_wep_enabled`) VALUES + (32, 4, 22, 150, 1); +INSERT INTO `job_equip_wep` (`job_equip_wep_id`, `job_equip_wep_equip`, `job_equip_wep_wep`, `job_equip_wep_ammo`, `job_equip_wep_enabled`) VALUES + (33, 4, 25, 20, 1); +INSERT INTO `job_equip_wep` (`job_equip_wep_id`, `job_equip_wep_equip`, `job_equip_wep_wep`, `job_equip_wep_ammo`, `job_equip_wep_enabled`) VALUES + (34, 8, 24, 150, 1); +INSERT INTO `job_equip_wep` (`job_equip_wep_id`, `job_equip_wep_equip`, `job_equip_wep_wep`, `job_equip_wep_ammo`, `job_equip_wep_enabled`) VALUES + (35, 8, 43, 150, 1); +INSERT INTO `job_equip_wep` (`job_equip_wep_id`, `job_equip_wep_equip`, `job_equip_wep_wep`, `job_equip_wep_ammo`, `job_equip_wep_enabled`) VALUES + (36, 12, 3, 1, 1); +INSERT INTO `job_equip_wep` (`job_equip_wep_id`, `job_equip_wep_equip`, `job_equip_wep_wep`, `job_equip_wep_ammo`, `job_equip_wep_enabled`) VALUES + (37, 12, 17, 5, 1); +INSERT INTO `job_equip_wep` (`job_equip_wep_id`, `job_equip_wep_equip`, `job_equip_wep_wep`, `job_equip_wep_ammo`, `job_equip_wep_enabled`) VALUES + (38, 12, 24, 150, 1); +INSERT INTO `job_equip_wep` (`job_equip_wep_id`, `job_equip_wep_equip`, `job_equip_wep_wep`, `job_equip_wep_ammo`, `job_equip_wep_enabled`) VALUES + (39, 12, 27, 50, 1); +INSERT INTO `job_equip_wep` (`job_equip_wep_id`, `job_equip_wep_equip`, `job_equip_wep_wep`, `job_equip_wep_ammo`, `job_equip_wep_enabled`) VALUES + (40, 12, 29, 350, 1); +INSERT INTO `job_equip_wep` (`job_equip_wep_id`, `job_equip_wep_equip`, `job_equip_wep_wep`, `job_equip_wep_ammo`, `job_equip_wep_enabled`) VALUES + (41, 12, 31, 350, 1); +INSERT INTO `job_equip_wep` (`job_equip_wep_id`, `job_equip_wep_equip`, `job_equip_wep_wep`, `job_equip_wep_ammo`, `job_equip_wep_enabled`) VALUES + (42, 12, 34, 30, 1); +INSERT INTO `job_equip_wep` (`job_equip_wep_id`, `job_equip_wep_equip`, `job_equip_wep_wep`, `job_equip_wep_ammo`, `job_equip_wep_enabled`) VALUES + (43, 16, 3, 1, 1); +INSERT INTO `job_equip_wep` (`job_equip_wep_id`, `job_equip_wep_equip`, `job_equip_wep_wep`, `job_equip_wep_ammo`, `job_equip_wep_enabled`) VALUES + (44, 16, 24, 150, 1); +INSERT INTO `job_equip_wep` (`job_equip_wep_id`, `job_equip_wep_equip`, `job_equip_wep_wep`, `job_equip_wep_ammo`, `job_equip_wep_enabled`) VALUES + (45, 16, 25, 20, 1); +INSERT INTO `job_equip_wep` (`job_equip_wep_id`, `job_equip_wep_equip`, `job_equip_wep_wep`, `job_equip_wep_ammo`, `job_equip_wep_enabled`) VALUES + (46, 16, 29, 350, 1); +INSERT INTO `job_equip_wep` (`job_equip_wep_id`, `job_equip_wep_equip`, `job_equip_wep_wep`, `job_equip_wep_ammo`, `job_equip_wep_enabled`) VALUES + (47, 17, 9, 500, 1); +INSERT INTO `job_equip_wep` (`job_equip_wep_id`, `job_equip_wep_equip`, `job_equip_wep_wep`, `job_equip_wep_ammo`, `job_equip_wep_enabled`) VALUES + (48, 18, 31, 500, 1); +INSERT INTO `job_equip_wep` (`job_equip_wep_id`, `job_equip_wep_equip`, `job_equip_wep_wep`, `job_equip_wep_ammo`, `job_equip_wep_enabled`) VALUES + (49, 18, 11, 1, 1); +INSERT INTO `job_equip_wep` (`job_equip_wep_id`, `job_equip_wep_equip`, `job_equip_wep_wep`, `job_equip_wep_ammo`, `job_equip_wep_enabled`) VALUES + (50, 20, 42, 99999, 1); +INSERT INTO `job_equip_wep` (`job_equip_wep_id`, `job_equip_wep_equip`, `job_equip_wep_wep`, `job_equip_wep_ammo`, `job_equip_wep_enabled`) VALUES + (51, 20, 37, 500, 1); +INSERT INTO `job_equip_wep` (`job_equip_wep_id`, `job_equip_wep_equip`, `job_equip_wep_wep`, `job_equip_wep_ammo`, `job_equip_wep_enabled`) VALUES + (52, 20, 9, 1, 1); +/*!40000 ALTER TABLE `job_equip_wep` ENABLE KEYS */; + +-- Dumping structure for table db24053.job_loc +CREATE TABLE IF NOT EXISTS `job_loc` ( + `job_loc_id` int(11) NOT NULL AUTO_INCREMENT, + `job_loc_job` int(11) NOT NULL DEFAULT '0', + `job_loc_pos_x` float NOT NULL DEFAULT '0', + `job_loc_pos_y` float NOT NULL DEFAULT '0', + `job_loc_pos_z` float NOT NULL DEFAULT '0', + `job_loc_enabled` float NOT NULL DEFAULT '0', + `job_loc_uniform` int(11) NOT NULL DEFAULT '0', + `job_loc_int` int(11) NOT NULL DEFAULT '0', + `job_loc_vw` int(11) NOT NULL DEFAULT '0', + PRIMARY KEY (`job_loc_id`) +) ENGINE=InnoDB AUTO_INCREMENT=53 DEFAULT CHARSET=utf8 COMMENT='Job - Locations'; + +-- Dumping data for table db24053.job_loc: ~50 rows (approximately) +/*!40000 ALTER TABLE `job_loc` DISABLE KEYS */; +INSERT INTO `job_loc` (`job_loc_id`, `job_loc_job`, `job_loc_pos_x`, `job_loc_pos_y`, `job_loc_pos_z`, `job_loc_enabled`, `job_loc_uniform`, `job_loc_int`, `job_loc_vw`) VALUES + (1, 1, 1143.87, -675.18, 14.97, 1, 1, 0, 0); +INSERT INTO `job_loc` (`job_loc_id`, `job_loc_job`, `job_loc_pos_x`, `job_loc_pos_y`, `job_loc_pos_z`, `job_loc_enabled`, `job_loc_uniform`, `job_loc_int`, `job_loc_vw`) VALUES + (2, 1, 340.25, -1123.37, 25.98, 1, 1, 0, 0); +INSERT INTO `job_loc` (`job_loc_id`, `job_loc_job`, `job_loc_pos_x`, `job_loc_pos_y`, `job_loc_pos_z`, `job_loc_enabled`, `job_loc_uniform`, `job_loc_int`, `job_loc_vw`) VALUES + (3, 5, -1253, -138.18, 58.75, 1, 0, 0, 0); +INSERT INTO `job_loc` (`job_loc_id`, `job_loc_job`, `job_loc_pos_x`, `job_loc_pos_y`, `job_loc_pos_z`, `job_loc_enabled`, `job_loc_uniform`, `job_loc_int`, `job_loc_vw`) VALUES + (4, 2, 401.94, -482.55, 12.34, 1, 3, 15, 2); +INSERT INTO `job_loc` (`job_loc_id`, `job_loc_job`, `job_loc_pos_x`, `job_loc_pos_y`, `job_loc_pos_z`, `job_loc_enabled`, `job_loc_uniform`, `job_loc_int`, `job_loc_vw`) VALUES + (5, 2, 508.96, 512.07, 12.1, 1, 3, 0, 0); +INSERT INTO `job_loc` (`job_loc_id`, `job_loc_job`, `job_loc_pos_x`, `job_loc_pos_y`, `job_loc_pos_z`, `job_loc_enabled`, `job_loc_uniform`, `job_loc_int`, `job_loc_vw`) VALUES + (6, 2, -657.43, 762.31, 11.59, 1, 3, 0, 0); +INSERT INTO `job_loc` (`job_loc_id`, `job_loc_job`, `job_loc_pos_x`, `job_loc_pos_y`, `job_loc_pos_z`, `job_loc_enabled`, `job_loc_uniform`, `job_loc_int`, `job_loc_vw`) VALUES + (7, 6, -885.08, -470.44, 13.11, 1, 0, 0, 0); +INSERT INTO `job_loc` (`job_loc_id`, `job_loc_job`, `job_loc_pos_x`, `job_loc_pos_y`, `job_loc_pos_z`, `job_loc_enabled`, `job_loc_uniform`, `job_loc_int`, `job_loc_vw`) VALUES + (8, 4, 254.38, 77.72, 1003.64, 1, 0, 6, 2); +INSERT INTO `job_loc` (`job_loc_id`, `job_loc_job`, `job_loc_pos_x`, `job_loc_pos_y`, `job_loc_pos_z`, `job_loc_enabled`, `job_loc_uniform`, `job_loc_int`, `job_loc_vw`) VALUES + (11, 5, 1144.25, -596.87, 14.97, 1, 0, 0, 0); +INSERT INTO `job_loc` (`job_loc_id`, `job_loc_job`, `job_loc_pos_x`, `job_loc_pos_y`, `job_loc_pos_z`, `job_loc_enabled`, `job_loc_uniform`, `job_loc_int`, `job_loc_vw`) VALUES + (12, 1, -1259.5, -44.5, 58.89, 1, 1, 0, 0); +INSERT INTO `job_loc` (`job_loc_id`, `job_loc_job`, `job_loc_pos_x`, `job_loc_pos_y`, `job_loc_pos_z`, `job_loc_enabled`, `job_loc_uniform`, `job_loc_int`, `job_loc_vw`) VALUES + (13, 5, 183.5, -17.75, 16.21, 1, 0, 0, 0); +INSERT INTO `job_loc` (`job_loc_id`, `job_loc_job`, `job_loc_pos_x`, `job_loc_pos_y`, `job_loc_pos_z`, `job_loc_enabled`, `job_loc_uniform`, `job_loc_int`, `job_loc_vw`) VALUES + (14, 9, 1103.7, -52.45, 7.49, 1, 0, 0, 0); +INSERT INTO `job_loc` (`job_loc_id`, `job_loc_job`, `job_loc_pos_x`, `job_loc_pos_y`, `job_loc_pos_z`, `job_loc_enabled`, `job_loc_uniform`, `job_loc_int`, `job_loc_vw`) VALUES + (15, 9, -78.48, -436.8, 16.17, 1, 0, 0, 0); +INSERT INTO `job_loc` (`job_loc_id`, `job_loc_job`, `job_loc_pos_x`, `job_loc_pos_y`, `job_loc_pos_z`, `job_loc_enabled`, `job_loc_uniform`, `job_loc_int`, `job_loc_vw`) VALUES + (16, 9, -1202.1, -14.67, 53.2, 1, 0, 0, 0); +INSERT INTO `job_loc` (`job_loc_id`, `job_loc_job`, `job_loc_pos_x`, `job_loc_pos_y`, `job_loc_pos_z`, `job_loc_enabled`, `job_loc_uniform`, `job_loc_int`, `job_loc_vw`) VALUES + (17, 13, 1229.2, -740.1, 15.17, 1, 0, 0, 0); +INSERT INTO `job_loc` (`job_loc_id`, `job_loc_job`, `job_loc_pos_x`, `job_loc_pos_y`, `job_loc_pos_z`, `job_loc_enabled`, `job_loc_uniform`, `job_loc_int`, `job_loc_vw`) VALUES + (18, 17, -57.1661, -334.266, 16.9324, 1, 0, 0, 0); +INSERT INTO `job_loc` (`job_loc_id`, `job_loc_job`, `job_loc_pos_x`, `job_loc_pos_y`, `job_loc_pos_z`, `job_loc_enabled`, `job_loc_uniform`, `job_loc_int`, `job_loc_vw`) VALUES + (19, 17, 0, 0, 0, 1, 0, 0, 0); +INSERT INTO `job_loc` (`job_loc_id`, `job_loc_job`, `job_loc_pos_x`, `job_loc_pos_y`, `job_loc_pos_z`, `job_loc_enabled`, `job_loc_uniform`, `job_loc_int`, `job_loc_vw`) VALUES + (20, 17, 1310.2, -1016.3, 14.88, 1, 0, 0, 0); +INSERT INTO `job_loc` (`job_loc_id`, `job_loc_job`, `job_loc_pos_x`, `job_loc_pos_y`, `job_loc_pos_z`, `job_loc_enabled`, `job_loc_uniform`, `job_loc_int`, `job_loc_vw`) VALUES + (21, 21, -66.8, -932.2, 16.47, 1, 0, 0, 0); +INSERT INTO `job_loc` (`job_loc_id`, `job_loc_job`, `job_loc_pos_x`, `job_loc_pos_y`, `job_loc_pos_z`, `job_loc_enabled`, `job_loc_uniform`, `job_loc_int`, `job_loc_vw`) VALUES + (22, 21, 1121.8, 27.8, 1.99, 1, 0, 0, 0); +INSERT INTO `job_loc` (`job_loc_id`, `job_loc_job`, `job_loc_pos_x`, `job_loc_pos_y`, `job_loc_pos_z`, `job_loc_enabled`, `job_loc_uniform`, `job_loc_int`, `job_loc_vw`) VALUES + (23, 3, 894.99, -357.39, 18.185, 1, 0, 0, 0); +INSERT INTO `job_loc` (`job_loc_id`, `job_loc_job`, `job_loc_pos_x`, `job_loc_pos_y`, `job_loc_pos_z`, `job_loc_enabled`, `job_loc_uniform`, `job_loc_int`, `job_loc_vw`) VALUES + (24, 3, 435.4, 1592.29, 17.353, 1, 0, 0, 0); +INSERT INTO `job_loc` (`job_loc_id`, `job_loc_job`, `job_loc_pos_x`, `job_loc_pos_y`, `job_loc_pos_z`, `job_loc_enabled`, `job_loc_uniform`, `job_loc_int`, `job_loc_vw`) VALUES + (25, 3, 974.93, 1870.45, 23.073, 1, 0, 0, 0); +INSERT INTO `job_loc` (`job_loc_id`, `job_loc_job`, `job_loc_pos_x`, `job_loc_pos_y`, `job_loc_pos_z`, `job_loc_enabled`, `job_loc_uniform`, `job_loc_int`, `job_loc_vw`) VALUES + (26, 3, 1233.25, -89.13, 28.034, 1, 0, 0, 0); +INSERT INTO `job_loc` (`job_loc_id`, `job_loc_job`, `job_loc_pos_x`, `job_loc_pos_y`, `job_loc_pos_z`, `job_loc_enabled`, `job_loc_uniform`, `job_loc_int`, `job_loc_vw`) VALUES + (27, 3, 50.12, 679.88, 15.316, 1, 0, 0, 0); +INSERT INTO `job_loc` (`job_loc_id`, `job_loc_job`, `job_loc_pos_x`, `job_loc_pos_y`, `job_loc_pos_z`, `job_loc_enabled`, `job_loc_uniform`, `job_loc_int`, `job_loc_vw`) VALUES + (28, 3, 85.21, 1189.82, 14.755, 1, 0, 0, 0); +INSERT INTO `job_loc` (`job_loc_id`, `job_loc_job`, `job_loc_pos_x`, `job_loc_pos_y`, `job_loc_pos_z`, `job_loc_enabled`, `job_loc_uniform`, `job_loc_int`, `job_loc_vw`) VALUES + (29, 3, 2170.87, 448.87, 6.085, 1, 0, 0, 0); +INSERT INTO `job_loc` (`job_loc_id`, `job_loc_job`, `job_loc_pos_x`, `job_loc_pos_y`, `job_loc_pos_z`, `job_loc_enabled`, `job_loc_uniform`, `job_loc_int`, `job_loc_vw`) VALUES + (30, 3, 213.12, -211.7, 10.752, 1, 0, 0, 0); +INSERT INTO `job_loc` (`job_loc_id`, `job_loc_job`, `job_loc_pos_x`, `job_loc_pos_y`, `job_loc_pos_z`, `job_loc_enabled`, `job_loc_uniform`, `job_loc_int`, `job_loc_vw`) VALUES + (31, 3, -1714.95, 276.31, 22.134, 1, 0, 0, 0); +INSERT INTO `job_loc` (`job_loc_id`, `job_loc_job`, `job_loc_pos_x`, `job_loc_pos_y`, `job_loc_pos_z`, `job_loc_enabled`, `job_loc_uniform`, `job_loc_int`, `job_loc_vw`) VALUES + (32, 3, -1220.73, -231.53, 3.024, 1, 0, 0, 0); +INSERT INTO `job_loc` (`job_loc_id`, `job_loc_job`, `job_loc_pos_x`, `job_loc_pos_y`, `job_loc_pos_z`, `job_loc_enabled`, `job_loc_uniform`, `job_loc_int`, `job_loc_vw`) VALUES + (33, 3, -927.66, 1263.63, 24.587, 1, 0, 0, 0); +INSERT INTO `job_loc` (`job_loc_id`, `job_loc_job`, `job_loc_pos_x`, `job_loc_pos_y`, `job_loc_pos_z`, `job_loc_enabled`, `job_loc_uniform`, `job_loc_int`, `job_loc_vw`) VALUES + (34, 6, -826.06, 1144.41, 12.41, 1, 0, 0, 0); +INSERT INTO `job_loc` (`job_loc_id`, `job_loc_job`, `job_loc_pos_x`, `job_loc_pos_y`, `job_loc_pos_z`, `job_loc_enabled`, `job_loc_uniform`, `job_loc_int`, `job_loc_vw`) VALUES + (35, 2, -872.06, -683.19, 11.23, 1, 3, 0, 0); +INSERT INTO `job_loc` (`job_loc_id`, `job_loc_job`, `job_loc_pos_x`, `job_loc_pos_y`, `job_loc_pos_z`, `job_loc_enabled`, `job_loc_uniform`, `job_loc_int`, `job_loc_vw`) VALUES + (36, 10, -698.22, 942.38, 11.08, 1, 0, 0, 0); +INSERT INTO `job_loc` (`job_loc_id`, `job_loc_job`, `job_loc_pos_x`, `job_loc_pos_y`, `job_loc_pos_z`, `job_loc_enabled`, `job_loc_uniform`, `job_loc_int`, `job_loc_vw`) VALUES + (37, 18, -1146.06, -285.65, 11.2, 1, 0, 0, 0); +INSERT INTO `job_loc` (`job_loc_id`, `job_loc_job`, `job_loc_pos_x`, `job_loc_pos_y`, `job_loc_pos_z`, `job_loc_enabled`, `job_loc_uniform`, `job_loc_int`, `job_loc_vw`) VALUES + (38, 14, -994.88, 185.1, 12.43, 1, 0, 0, 0); +INSERT INTO `job_loc` (`job_loc_id`, `job_loc_job`, `job_loc_pos_x`, `job_loc_pos_y`, `job_loc_pos_z`, `job_loc_enabled`, `job_loc_uniform`, `job_loc_int`, `job_loc_vw`) VALUES + (39, 6, 493.14, 709.31, 11.8, 1, 0, 0, 0); +INSERT INTO `job_loc` (`job_loc_id`, `job_loc_job`, `job_loc_pos_x`, `job_loc_pos_y`, `job_loc_pos_z`, `job_loc_enabled`, `job_loc_uniform`, `job_loc_int`, `job_loc_vw`) VALUES + (40, 22, -1264.42, 6.05, 11.45, 1, 0, 0, 0); +INSERT INTO `job_loc` (`job_loc_id`, `job_loc_job`, `job_loc_pos_x`, `job_loc_pos_y`, `job_loc_pos_z`, `job_loc_enabled`, `job_loc_uniform`, `job_loc_int`, `job_loc_vw`) VALUES + (41, 8, 1172.96, -1323.42, 15.4, 1, 0, 0, 0); +INSERT INTO `job_loc` (`job_loc_id`, `job_loc_job`, `job_loc_pos_x`, `job_loc_pos_y`, `job_loc_pos_z`, `job_loc_enabled`, `job_loc_uniform`, `job_loc_int`, `job_loc_vw`) VALUES + (42, 8, 2034.04, -1405.07, 17.24, 1, 0, 0, 0); +INSERT INTO `job_loc` (`job_loc_id`, `job_loc_job`, `job_loc_pos_x`, `job_loc_pos_y`, `job_loc_pos_z`, `job_loc_enabled`, `job_loc_uniform`, `job_loc_int`, `job_loc_vw`) VALUES + (43, 24, 2309.22, -2088.32, 13.55, 1, 0, 0, 0); +INSERT INTO `job_loc` (`job_loc_id`, `job_loc_job`, `job_loc_pos_x`, `job_loc_pos_y`, `job_loc_pos_z`, `job_loc_enabled`, `job_loc_uniform`, `job_loc_int`, `job_loc_vw`) VALUES + (44, 20, 1765.89, -1885.48, 13.55, 1, 0, 0, 0); +INSERT INTO `job_loc` (`job_loc_id`, `job_loc_job`, `job_loc_pos_x`, `job_loc_pos_y`, `job_loc_pos_z`, `job_loc_enabled`, `job_loc_uniform`, `job_loc_int`, `job_loc_vw`) VALUES + (45, 16, 1808.64, -1938.58, 13.55, 1, 0, 0, 0); +INSERT INTO `job_loc` (`job_loc_id`, `job_loc_job`, `job_loc_pos_x`, `job_loc_pos_y`, `job_loc_pos_z`, `job_loc_enabled`, `job_loc_uniform`, `job_loc_int`, `job_loc_vw`) VALUES + (46, 12, 1133.7, -1312.92, 13.58, 1, 0, 0, 0); +INSERT INTO `job_loc` (`job_loc_id`, `job_loc_job`, `job_loc_pos_x`, `job_loc_pos_y`, `job_loc_pos_z`, `job_loc_enabled`, `job_loc_uniform`, `job_loc_int`, `job_loc_vw`) VALUES + (47, 4, 2290.49, 2430.09, 10.82, 1, 0, 0, 0); +INSERT INTO `job_loc` (`job_loc_id`, `job_loc_job`, `job_loc_pos_x`, `job_loc_pos_y`, `job_loc_pos_z`, `job_loc_enabled`, `job_loc_uniform`, `job_loc_int`, `job_loc_vw`) VALUES + (48, 12, 1744.95, 2082.8, 10.82, 1, 0, 0, 0); +INSERT INTO `job_loc` (`job_loc_id`, `job_loc_job`, `job_loc_pos_x`, `job_loc_pos_y`, `job_loc_pos_z`, `job_loc_enabled`, `job_loc_uniform`, `job_loc_int`, `job_loc_vw`) VALUES + (49, 4, -1605.38, 711.5, 13.87, 1, 0, 0, 0); +INSERT INTO `job_loc` (`job_loc_id`, `job_loc_job`, `job_loc_pos_x`, `job_loc_pos_y`, `job_loc_pos_z`, `job_loc_enabled`, `job_loc_uniform`, `job_loc_int`, `job_loc_vw`) VALUES + (50, 8, -2655.15, 638.72, 14.45, 1, 0, 0, 0); +INSERT INTO `job_loc` (`job_loc_id`, `job_loc_job`, `job_loc_pos_x`, `job_loc_pos_y`, `job_loc_pos_z`, `job_loc_enabled`, `job_loc_uniform`, `job_loc_int`, `job_loc_vw`) VALUES + (51, 12, -2026.34, 67.17, 28.69, 1, 0, 0, 0); +INSERT INTO `job_loc` (`job_loc_id`, `job_loc_job`, `job_loc_pos_x`, `job_loc_pos_y`, `job_loc_pos_z`, `job_loc_enabled`, `job_loc_uniform`, `job_loc_int`, `job_loc_vw`) VALUES + (52, 17, -1130.99, -177.76, 43.72, 1, 0, 0, 0); +/*!40000 ALTER TABLE `job_loc` ENABLE KEYS */; + +-- Dumping structure for table db24053.job_main +CREATE TABLE IF NOT EXISTS `job_main` ( + `job_id` smallint(6) NOT NULL DEFAULT '0', + `job_server` tinyint(1) NOT NULL DEFAULT '0', + `job_enabled` tinyint(1) NOT NULL DEFAULT '1', + `job_name` varchar(50) NOT NULL DEFAULT 'Unnamed', + `job_pickup` int(11) NOT NULL DEFAULT '0', + `job_type` int(11) NOT NULL DEFAULT '0', + `job_blip` int(11) NOT NULL DEFAULT '0', + `job_colour_r` int(11) NOT NULL DEFAULT '255', + `job_colour_g` int(11) NOT NULL DEFAULT '255', + `job_colour_b` int(11) NOT NULL DEFAULT '255', + `job_whitelist` tinyint(1) NOT NULL DEFAULT '0', + `job_blacklist` tinyint(1) NOT NULL DEFAULT '0', + PRIMARY KEY (`job_id`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Jobs'; + +-- Dumping data for table db24053.job_main: ~24 rows (approximately) +/*!40000 ALTER TABLE `job_main` DISABLE KEYS */; +INSERT INTO `job_main` (`job_id`, `job_server`, `job_enabled`, `job_name`, `job_pickup`, `job_type`, `job_blip`, `job_colour_r`, `job_colour_g`, `job_colour_b`, `job_whitelist`, `job_blacklist`) VALUES + (1, 1, 1, 'Police', 1383, 1, 0, 70, 130, 180, 0, 0); +INSERT INTO `job_main` (`job_id`, `job_server`, `job_enabled`, `job_name`, `job_pickup`, `job_type`, `job_blip`, `job_colour_r`, `job_colour_g`, `job_colour_b`, `job_whitelist`, `job_blacklist`) VALUES + (2, 2, 1, 'Police', 375, 1, 0, 70, 130, 180, 0, 0); +INSERT INTO `job_main` (`job_id`, `job_server`, `job_enabled`, `job_name`, `job_pickup`, `job_type`, `job_blip`, `job_colour_r`, `job_colour_g`, `job_colour_b`, `job_whitelist`, `job_blacklist`) VALUES + (3, 3, 1, 'Police', 0, 1, 0, 70, 130, 180, 0, 0); +INSERT INTO `job_main` (`job_id`, `job_server`, `job_enabled`, `job_name`, `job_pickup`, `job_type`, `job_blip`, `job_colour_r`, `job_colour_g`, `job_colour_b`, `job_whitelist`, `job_blacklist`) VALUES + (4, 4, 1, 'Police', 1247, 1, 30, 70, 130, 180, 0, 0); +INSERT INTO `job_main` (`job_id`, `job_server`, `job_enabled`, `job_name`, `job_pickup`, `job_type`, `job_blip`, `job_colour_r`, `job_colour_g`, `job_colour_b`, `job_whitelist`, `job_blacklist`) VALUES + (5, 1, 1, 'Paramedic', 1362, 2, 0, 219, 112, 147, 0, 0); +INSERT INTO `job_main` (`job_id`, `job_server`, `job_enabled`, `job_name`, `job_pickup`, `job_type`, `job_blip`, `job_colour_r`, `job_colour_g`, `job_colour_b`, `job_whitelist`, `job_blacklist`) VALUES + (6, 2, 1, 'Paramedic', 366, 2, 0, 219, 112, 147, 0, 0); +INSERT INTO `job_main` (`job_id`, `job_server`, `job_enabled`, `job_name`, `job_pickup`, `job_type`, `job_blip`, `job_colour_r`, `job_colour_g`, `job_colour_b`, `job_whitelist`, `job_blacklist`) VALUES + (7, 3, 1, 'Paramedic', 0, 2, 0, 219, 112, 147, 0, 0); +INSERT INTO `job_main` (`job_id`, `job_server`, `job_enabled`, `job_name`, `job_pickup`, `job_type`, `job_blip`, `job_colour_r`, `job_colour_g`, `job_colour_b`, `job_whitelist`, `job_blacklist`) VALUES + (8, 4, 1, 'Paramedic', 1240, 2, 22, 219, 112, 147, 0, 0); +INSERT INTO `job_main` (`job_id`, `job_server`, `job_enabled`, `job_name`, `job_pickup`, `job_type`, `job_blip`, `job_colour_r`, `job_colour_g`, `job_colour_b`, `job_whitelist`, `job_blacklist`) VALUES + (9, 1, 1, 'Firefighter', 1364, 3, 0, 205, 92, 92, 0, 0); +INSERT INTO `job_main` (`job_id`, `job_server`, `job_enabled`, `job_name`, `job_pickup`, `job_type`, `job_blip`, `job_colour_r`, `job_colour_g`, `job_colour_b`, `job_whitelist`, `job_blacklist`) VALUES + (10, 2, 1, 'Firefighter', 365, 3, 0, 205, 92, 92, 0, 0); +INSERT INTO `job_main` (`job_id`, `job_server`, `job_enabled`, `job_name`, `job_pickup`, `job_type`, `job_blip`, `job_colour_r`, `job_colour_g`, `job_colour_b`, `job_whitelist`, `job_blacklist`) VALUES + (11, 3, 1, 'Firefighter', 0, 3, 0, 205, 92, 92, 0, 0); +INSERT INTO `job_main` (`job_id`, `job_server`, `job_enabled`, `job_name`, `job_pickup`, `job_type`, `job_blip`, `job_colour_r`, `job_colour_g`, `job_colour_b`, `job_whitelist`, `job_blacklist`) VALUES + (12, 4, 1, 'Firefighter', 1318, 3, 20, 205, 92, 92, 0, 0); +INSERT INTO `job_main` (`job_id`, `job_server`, `job_enabled`, `job_name`, `job_pickup`, `job_type`, `job_blip`, `job_colour_r`, `job_colour_g`, `job_colour_b`, `job_whitelist`, `job_blacklist`) VALUES + (13, 1, 1, 'Taxi Driver', 1361, 5, 0, 240, 230, 140, 0, 0); +INSERT INTO `job_main` (`job_id`, `job_server`, `job_enabled`, `job_name`, `job_pickup`, `job_type`, `job_blip`, `job_colour_r`, `job_colour_g`, `job_colour_b`, `job_whitelist`, `job_blacklist`) VALUES + (14, 2, 1, 'Taxi Driver', 365, 5, 0, 240, 230, 140, 0, 0); +INSERT INTO `job_main` (`job_id`, `job_server`, `job_enabled`, `job_name`, `job_pickup`, `job_type`, `job_blip`, `job_colour_r`, `job_colour_g`, `job_colour_b`, `job_whitelist`, `job_blacklist`) VALUES + (15, 3, 1, 'Taxi Driver', 0, 5, 0, 240, 230, 140, 0, 0); +INSERT INTO `job_main` (`job_id`, `job_server`, `job_enabled`, `job_name`, `job_pickup`, `job_type`, `job_blip`, `job_colour_r`, `job_colour_g`, `job_colour_b`, `job_whitelist`, `job_blacklist`) VALUES + (16, 4, 1, 'Taxi Driver', 1318, 5, 0, 240, 230, 140, 0, 0); +INSERT INTO `job_main` (`job_id`, `job_server`, `job_enabled`, `job_name`, `job_pickup`, `job_type`, `job_blip`, `job_colour_r`, `job_colour_g`, `job_colour_b`, `job_whitelist`, `job_blacklist`) VALUES + (17, 1, 1, 'Bus Driver', 1361, 4, 0, 50, 205, 50, 0, 0); +INSERT INTO `job_main` (`job_id`, `job_server`, `job_enabled`, `job_name`, `job_pickup`, `job_type`, `job_blip`, `job_colour_r`, `job_colour_g`, `job_colour_b`, `job_whitelist`, `job_blacklist`) VALUES + (18, 2, 1, 'Bus Driver', 365, 4, 0, 50, 205, 50, 0, 0); +INSERT INTO `job_main` (`job_id`, `job_server`, `job_enabled`, `job_name`, `job_pickup`, `job_type`, `job_blip`, `job_colour_r`, `job_colour_g`, `job_colour_b`, `job_whitelist`, `job_blacklist`) VALUES + (19, 3, 1, 'Bus Driver', 0, 4, 0, 50, 205, 50, 0, 0); +INSERT INTO `job_main` (`job_id`, `job_server`, `job_enabled`, `job_name`, `job_pickup`, `job_type`, `job_blip`, `job_colour_r`, `job_colour_g`, `job_colour_b`, `job_whitelist`, `job_blacklist`) VALUES + (20, 4, 1, 'Bus Driver', 1318, 4, 0, 50, 205, 50, 0, 0); +INSERT INTO `job_main` (`job_id`, `job_server`, `job_enabled`, `job_name`, `job_pickup`, `job_type`, `job_blip`, `job_colour_r`, `job_colour_g`, `job_colour_b`, `job_whitelist`, `job_blacklist`) VALUES + (21, 1, 1, 'Trash Collector', 1351, 6, 0, 150, 150, 150, 0, 0); +INSERT INTO `job_main` (`job_id`, `job_server`, `job_enabled`, `job_name`, `job_pickup`, `job_type`, `job_blip`, `job_colour_r`, `job_colour_g`, `job_colour_b`, `job_whitelist`, `job_blacklist`) VALUES + (22, 2, 1, 'Trash Collector', 365, 6, 0, 150, 150, 150, 0, 0); +INSERT INTO `job_main` (`job_id`, `job_server`, `job_enabled`, `job_name`, `job_pickup`, `job_type`, `job_blip`, `job_colour_r`, `job_colour_g`, `job_colour_b`, `job_whitelist`, `job_blacklist`) VALUES + (23, 3, 1, 'Trash Collector', 0, 6, 0, 150, 150, 150, 0, 0); +INSERT INTO `job_main` (`job_id`, `job_server`, `job_enabled`, `job_name`, `job_pickup`, `job_type`, `job_blip`, `job_colour_r`, `job_colour_g`, `job_colour_b`, `job_whitelist`, `job_blacklist`) VALUES + (24, 4, 1, 'Trash Collector', 1318, 6, 0, 150, 150, 150, 0, 0); +/*!40000 ALTER TABLE `job_main` ENABLE KEYS */; + +-- Dumping structure for table db24053.job_uniform +CREATE TABLE IF NOT EXISTS `job_uniform` ( + `job_uniform_id` smallint(6) NOT NULL DEFAULT '0', + `job_uniform_job` smallint(6) NOT NULL DEFAULT '0', + `job_uniform_skin` int(11) NOT NULL DEFAULT '0', + `job_uniform_enabled` tinyint(1) NOT NULL DEFAULT '0', + `job_uniform_minrank` tinyint(2) NOT NULL DEFAULT '0', + `job_uniform_name` varchar(50) NOT NULL DEFAULT 'Unnamed', + PRIMARY KEY (`job_uniform_id`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Jobs - Uniforms'; + +-- Dumping data for table db24053.job_uniform: ~60 rows (approximately) +/*!40000 ALTER TABLE `job_uniform` DISABLE KEYS */; +INSERT INTO `job_uniform` (`job_uniform_id`, `job_uniform_job`, `job_uniform_skin`, `job_uniform_enabled`, `job_uniform_minrank`, `job_uniform_name`) VALUES + (1, 1, 1, 1, 0, 'Police Officer 1'); +INSERT INTO `job_uniform` (`job_uniform_id`, `job_uniform_job`, `job_uniform_skin`, `job_uniform_enabled`, `job_uniform_minrank`, `job_uniform_name`) VALUES + (2, 1, 92, 1, 0, 'Police Officer 2'); +INSERT INTO `job_uniform` (`job_uniform_id`, `job_uniform_job`, `job_uniform_skin`, `job_uniform_enabled`, `job_uniform_minrank`, `job_uniform_name`) VALUES + (3, 2, 1, 1, 0, 'Police Officer 1'); +INSERT INTO `job_uniform` (`job_uniform_id`, `job_uniform_job`, `job_uniform_skin`, `job_uniform_enabled`, `job_uniform_minrank`, `job_uniform_name`) VALUES + (4, 2, 120, 1, 0, 'Officer Lance Vance'); +INSERT INTO `job_uniform` (`job_uniform_id`, `job_uniform_job`, `job_uniform_skin`, `job_uniform_enabled`, `job_uniform_minrank`, `job_uniform_name`) VALUES + (5, 2, 97, 1, 1, 'Detective 1'); +INSERT INTO `job_uniform` (`job_uniform_id`, `job_uniform_job`, `job_uniform_skin`, `job_uniform_enabled`, `job_uniform_minrank`, `job_uniform_name`) VALUES + (6, 2, 98, 1, 1, 'Detective 2'); +INSERT INTO `job_uniform` (`job_uniform_id`, `job_uniform_job`, `job_uniform_skin`, `job_uniform_enabled`, `job_uniform_minrank`, `job_uniform_name`) VALUES + (7, 2, 99, 1, 1, 'Detective 3'); +INSERT INTO `job_uniform` (`job_uniform_id`, `job_uniform_job`, `job_uniform_skin`, `job_uniform_enabled`, `job_uniform_minrank`, `job_uniform_name`) VALUES + (8, 2, 100, 1, 1, 'Detective 4'); +INSERT INTO `job_uniform` (`job_uniform_id`, `job_uniform_job`, `job_uniform_skin`, `job_uniform_enabled`, `job_uniform_minrank`, `job_uniform_name`) VALUES + (9, 2, 101, 1, 1, 'Detective 5'); +INSERT INTO `job_uniform` (`job_uniform_id`, `job_uniform_job`, `job_uniform_skin`, `job_uniform_enabled`, `job_uniform_minrank`, `job_uniform_name`) VALUES + (10, 2, 102, 1, 1, 'Detective 6'); +INSERT INTO `job_uniform` (`job_uniform_id`, `job_uniform_job`, `job_uniform_skin`, `job_uniform_enabled`, `job_uniform_minrank`, `job_uniform_name`) VALUES + (11, 4, 280, 1, 0, 'Los Santos Police Officer'); +INSERT INTO `job_uniform` (`job_uniform_id`, `job_uniform_job`, `job_uniform_skin`, `job_uniform_enabled`, `job_uniform_minrank`, `job_uniform_name`) VALUES + (12, 4, 281, 1, 0, 'San Fierro Police Officer'); +INSERT INTO `job_uniform` (`job_uniform_id`, `job_uniform_job`, `job_uniform_skin`, `job_uniform_enabled`, `job_uniform_minrank`, `job_uniform_name`) VALUES + (13, 4, 282, 1, 0, 'Las Venturas Police Officer'); +INSERT INTO `job_uniform` (`job_uniform_id`, `job_uniform_job`, `job_uniform_skin`, `job_uniform_enabled`, `job_uniform_minrank`, `job_uniform_name`) VALUES + (14, 4, 284, 1, 0, 'Motorcycle Cop'); +INSERT INTO `job_uniform` (`job_uniform_id`, `job_uniform_job`, `job_uniform_skin`, `job_uniform_enabled`, `job_uniform_minrank`, `job_uniform_name`) VALUES + (15, 4, 165, 1, 0, 'Detective 1'); +INSERT INTO `job_uniform` (`job_uniform_id`, `job_uniform_job`, `job_uniform_skin`, `job_uniform_enabled`, `job_uniform_minrank`, `job_uniform_name`) VALUES + (16, 4, 166, 1, 0, 'Detective 2'); +INSERT INTO `job_uniform` (`job_uniform_id`, `job_uniform_job`, `job_uniform_skin`, `job_uniform_enabled`, `job_uniform_minrank`, `job_uniform_name`) VALUES + (17, 4, 285, 1, 2, 'SWAT'); +INSERT INTO `job_uniform` (`job_uniform_id`, `job_uniform_job`, `job_uniform_skin`, `job_uniform_enabled`, `job_uniform_minrank`, `job_uniform_name`) VALUES + (18, 4, 283, 1, 3, 'Sheriff 1'); +INSERT INTO `job_uniform` (`job_uniform_id`, `job_uniform_job`, `job_uniform_skin`, `job_uniform_enabled`, `job_uniform_minrank`, `job_uniform_name`) VALUES + (19, 4, 288, 1, 3, 'Sheriff 2'); +INSERT INTO `job_uniform` (`job_uniform_id`, `job_uniform_job`, `job_uniform_skin`, `job_uniform_enabled`, `job_uniform_minrank`, `job_uniform_name`) VALUES + (20, 4, 265, 1, 0, 'Officer Frank Tenpenny'); +INSERT INTO `job_uniform` (`job_uniform_id`, `job_uniform_job`, `job_uniform_skin`, `job_uniform_enabled`, `job_uniform_minrank`, `job_uniform_name`) VALUES + (21, 4, 266, 1, 0, 'Officer Eddie Pulaski'); +INSERT INTO `job_uniform` (`job_uniform_id`, `job_uniform_job`, `job_uniform_skin`, `job_uniform_enabled`, `job_uniform_minrank`, `job_uniform_name`) VALUES + (22, 4, 267, 1, 0, 'Officer Jimmy Hernandez'); +INSERT INTO `job_uniform` (`job_uniform_id`, `job_uniform_job`, `job_uniform_skin`, `job_uniform_enabled`, `job_uniform_minrank`, `job_uniform_name`) VALUES + (23, 3, -183203150, 1, 0, 'Police Officer 1'); +INSERT INTO `job_uniform` (`job_uniform_id`, `job_uniform_job`, `job_uniform_skin`, `job_uniform_enabled`, `job_uniform_minrank`, `job_uniform_name`) VALUES + (24, 3, -1518937979, 1, 0, 'Police Officer 2'); +INSERT INTO `job_uniform` (`job_uniform_id`, `job_uniform_job`, `job_uniform_skin`, `job_uniform_enabled`, `job_uniform_minrank`, `job_uniform_name`) VALUES + (25, 3, -370395528, 1, 0, 'Fat Police Officer'); +INSERT INTO `job_uniform` (`job_uniform_id`, `job_uniform_job`, `job_uniform_skin`, `job_uniform_enabled`, `job_uniform_minrank`, `job_uniform_name`) VALUES + (26, 3, -999506922, 1, 1, 'Detective 1'); +INSERT INTO `job_uniform` (`job_uniform_id`, `job_uniform_job`, `job_uniform_skin`, `job_uniform_enabled`, `job_uniform_minrank`, `job_uniform_name`) VALUES + (27, 5, 5, 1, 0, 'Paramedic 1'); +INSERT INTO `job_uniform` (`job_uniform_id`, `job_uniform_job`, `job_uniform_skin`, `job_uniform_enabled`, `job_uniform_minrank`, `job_uniform_name`) VALUES + (28, 5, 72, 1, 0, 'Paramedic 2'); +INSERT INTO `job_uniform` (`job_uniform_id`, `job_uniform_job`, `job_uniform_skin`, `job_uniform_enabled`, `job_uniform_minrank`, `job_uniform_name`) VALUES + (29, 5, 73, 1, 0, 'Paramedic 3'); +INSERT INTO `job_uniform` (`job_uniform_id`, `job_uniform_job`, `job_uniform_skin`, `job_uniform_enabled`, `job_uniform_minrank`, `job_uniform_name`) VALUES + (30, 6, 5, 1, 0, 'Paramedic 1'); +INSERT INTO `job_uniform` (`job_uniform_id`, `job_uniform_job`, `job_uniform_skin`, `job_uniform_enabled`, `job_uniform_minrank`, `job_uniform_name`) VALUES + (31, 6, 5, 1, 0, 'Paramedic 1'); +INSERT INTO `job_uniform` (`job_uniform_id`, `job_uniform_job`, `job_uniform_skin`, `job_uniform_enabled`, `job_uniform_minrank`, `job_uniform_name`) VALUES + (32, 7, -1175077216, 1, 0, 'Paramedic 1'); +INSERT INTO `job_uniform` (`job_uniform_id`, `job_uniform_job`, `job_uniform_skin`, `job_uniform_enabled`, `job_uniform_minrank`, `job_uniform_name`) VALUES + (33, 8, 274, 1, 0, 'Paramedic 1'); +INSERT INTO `job_uniform` (`job_uniform_id`, `job_uniform_job`, `job_uniform_skin`, `job_uniform_enabled`, `job_uniform_minrank`, `job_uniform_name`) VALUES + (34, 8, 275, 1, 0, 'Paramedic 2'); +INSERT INTO `job_uniform` (`job_uniform_id`, `job_uniform_job`, `job_uniform_skin`, `job_uniform_enabled`, `job_uniform_minrank`, `job_uniform_name`) VALUES + (35, 8, 276, 1, 0, 'Paramedic 3'); +INSERT INTO `job_uniform` (`job_uniform_id`, `job_uniform_job`, `job_uniform_skin`, `job_uniform_enabled`, `job_uniform_minrank`, `job_uniform_name`) VALUES + (36, 11, -610224615, 1, 0, 'Firefighter'); +INSERT INTO `job_uniform` (`job_uniform_id`, `job_uniform_job`, `job_uniform_skin`, `job_uniform_enabled`, `job_uniform_minrank`, `job_uniform_name`) VALUES + (37, 11, 610888851, 1, 0, 'Fire Chief'); +INSERT INTO `job_uniform` (`job_uniform_id`, `job_uniform_job`, `job_uniform_skin`, `job_uniform_enabled`, `job_uniform_minrank`, `job_uniform_name`) VALUES + (38, 11, 277, 1, 0, 'Firefighter 1'); +INSERT INTO `job_uniform` (`job_uniform_id`, `job_uniform_job`, `job_uniform_skin`, `job_uniform_enabled`, `job_uniform_minrank`, `job_uniform_name`) VALUES + (39, 12, 278, 1, 0, 'Firefighter 2'); +INSERT INTO `job_uniform` (`job_uniform_id`, `job_uniform_job`, `job_uniform_skin`, `job_uniform_enabled`, `job_uniform_minrank`, `job_uniform_name`) VALUES + (40, 12, 279, 1, 0, 'Firefighter 3'); +INSERT INTO `job_uniform` (`job_uniform_id`, `job_uniform_job`, `job_uniform_skin`, `job_uniform_enabled`, `job_uniform_minrank`, `job_uniform_name`) VALUES + (42, 13, 8, 1, 0, 'Taxi Driver 1'); +INSERT INTO `job_uniform` (`job_uniform_id`, `job_uniform_job`, `job_uniform_skin`, `job_uniform_enabled`, `job_uniform_minrank`, `job_uniform_name`) VALUES + (43, 14, 8, 1, 0, 'Taxi Driver 1'); +INSERT INTO `job_uniform` (`job_uniform_id`, `job_uniform_job`, `job_uniform_skin`, `job_uniform_enabled`, `job_uniform_minrank`, `job_uniform_name`) VALUES + (44, 16, 7, 1, 0, 'Taxi Driver 1'); +INSERT INTO `job_uniform` (`job_uniform_id`, `job_uniform_job`, `job_uniform_skin`, `job_uniform_enabled`, `job_uniform_minrank`, `job_uniform_name`) VALUES + (45, 16, 142, 1, 0, 'Taxi Driver 2'); +INSERT INTO `job_uniform` (`job_uniform_id`, `job_uniform_job`, `job_uniform_skin`, `job_uniform_enabled`, `job_uniform_minrank`, `job_uniform_name`) VALUES + (46, 17, 8, 1, 0, 'Bus Driver 1'); +INSERT INTO `job_uniform` (`job_uniform_id`, `job_uniform_job`, `job_uniform_skin`, `job_uniform_enabled`, `job_uniform_minrank`, `job_uniform_name`) VALUES + (47, 18, 8, 1, 0, 'Bus Driver 1'); +INSERT INTO `job_uniform` (`job_uniform_id`, `job_uniform_job`, `job_uniform_skin`, `job_uniform_enabled`, `job_uniform_minrank`, `job_uniform_name`) VALUES + (48, 20, 7, 1, 0, 'Bus Driver 1'); +INSERT INTO `job_uniform` (`job_uniform_id`, `job_uniform_job`, `job_uniform_skin`, `job_uniform_enabled`, `job_uniform_minrank`, `job_uniform_name`) VALUES + (49, 20, 142, 1, 0, 'Bus Driver 2'); +INSERT INTO `job_uniform` (`job_uniform_id`, `job_uniform_job`, `job_uniform_skin`, `job_uniform_enabled`, `job_uniform_minrank`, `job_uniform_name`) VALUES + (50, 21, 53, 1, 0, 'Garbage Collector 1'); +INSERT INTO `job_uniform` (`job_uniform_id`, `job_uniform_job`, `job_uniform_skin`, `job_uniform_enabled`, `job_uniform_minrank`, `job_uniform_name`) VALUES + (51, 21, 54, 1, 0, 'Garbage Collector 2'); +INSERT INTO `job_uniform` (`job_uniform_id`, `job_uniform_job`, `job_uniform_skin`, `job_uniform_enabled`, `job_uniform_minrank`, `job_uniform_name`) VALUES + (52, 22, 53, 1, 0, 'Garbage Collector 1'); +INSERT INTO `job_uniform` (`job_uniform_id`, `job_uniform_job`, `job_uniform_skin`, `job_uniform_enabled`, `job_uniform_minrank`, `job_uniform_name`) VALUES + (53, 22, 54, 1, 0, 'Garbage Collector 2'); +INSERT INTO `job_uniform` (`job_uniform_id`, `job_uniform_job`, `job_uniform_skin`, `job_uniform_enabled`, `job_uniform_minrank`, `job_uniform_name`) VALUES + (54, 24, 16, 1, 0, 'Garbage Collector 1'); +INSERT INTO `job_uniform` (`job_uniform_id`, `job_uniform_job`, `job_uniform_skin`, `job_uniform_enabled`, `job_uniform_minrank`, `job_uniform_name`) VALUES + (55, 23, 1136499716, 1, 0, 'Garbage Collector 1'); +INSERT INTO `job_uniform` (`job_uniform_id`, `job_uniform_job`, `job_uniform_skin`, `job_uniform_enabled`, `job_uniform_minrank`, `job_uniform_name`) VALUES + (56, 19, 134077503, 1, 0, 'Bus Driver 1'); +INSERT INTO `job_uniform` (`job_uniform_id`, `job_uniform_job`, `job_uniform_skin`, `job_uniform_enabled`, `job_uniform_minrank`, `job_uniform_name`) VALUES + (57, 15, 8772846, 1, 0, 'Taxi Driver 1'); +INSERT INTO `job_uniform` (`job_uniform_id`, `job_uniform_job`, `job_uniform_skin`, `job_uniform_enabled`, `job_uniform_minrank`, `job_uniform_name`) VALUES + (58, 3, -89302119, 1, 3, 'State Trooper'); +INSERT INTO `job_uniform` (`job_uniform_id`, `job_uniform_job`, `job_uniform_skin`, `job_uniform_enabled`, `job_uniform_minrank`, `job_uniform_name`) VALUES + (59, 3, -1004762946, 1, 2, 'SWAT'); +INSERT INTO `job_uniform` (`job_uniform_id`, `job_uniform_job`, `job_uniform_skin`, `job_uniform_enabled`, `job_uniform_minrank`, `job_uniform_name`) VALUES + (60, 2, 166, 1, 0, 'Officer Tommy Vercetti'); +INSERT INTO `job_uniform` (`job_uniform_id`, `job_uniform_job`, `job_uniform_skin`, `job_uniform_enabled`, `job_uniform_minrank`, `job_uniform_name`) VALUES + (61, 9, 6, 1, 0, 'Firefighter'); +/*!40000 ALTER TABLE `job_uniform` ENABLE KEYS */; + +-- Dumping structure for table db24053.job_wl +CREATE TABLE IF NOT EXISTS `job_wl` ( + `job_wl_id` int(11) NOT NULL AUTO_INCREMENT, + `job_wl_job` int(11) NOT NULL DEFAULT '0', + `job_wl_sacct` int(11) NOT NULL DEFAULT '0', + `job_wl_who_added` int(11) NOT NULL DEFAULT '0', + `job_wl_when_added` int(11) NOT NULL DEFAULT '0', + `job_wl_enabled` int(11) NOT NULL DEFAULT '1', + PRIMARY KEY (`job_wl_id`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Jobs - Whitelist'; + +-- Dumping data for table db24053.job_wl: ~0 rows (approximately) +/*!40000 ALTER TABLE `job_wl` DISABLE KEYS */; +/*!40000 ALTER TABLE `job_wl` ENABLE KEYS */; + +-- Dumping structure for table db24053.log_admin +CREATE TABLE IF NOT EXISTS `log_admin` ( + `log_admin_id` int(11) NOT NULL AUTO_INCREMENT, + `log_admin_target` int(11) NOT NULL DEFAULT '0', + `log_admin_msg` varchar(128) NOT NULL DEFAULT '', + `log_admin_type` int(11) NOT NULL DEFAULT '0', + `log_admin_admin` int(11) NOT NULL DEFAULT '0', + `log_admin_timestamp` int(32) NOT NULL DEFAULT '0', + PRIMARY KEY (`log_admin_id`) +) ENGINE=InnoDB DEFAULT CHARSET=latin1 COMMENT='Log - Admin Actions'; + +-- Dumping data for table db24053.log_admin: ~0 rows (approximately) +/*!40000 ALTER TABLE `log_admin` DISABLE KEYS */; +/*!40000 ALTER TABLE `log_admin` ENABLE KEYS */; + +-- Dumping structure for table db24053.log_chat +CREATE TABLE IF NOT EXISTS `log_chat` ( + `log_chat_id` int(11) NOT NULL AUTO_INCREMENT, + `log_chat_server` int(11) NOT NULL DEFAULT '0', + `log_chat_sacct` int(11) NOT NULL DEFAULT '0', + `log_chat_type` int(11) NOT NULL DEFAULT '0', + `log_chat_msg` varchar(128) NOT NULL DEFAULT '', + `log_chat_timestamp` int(32) NOT NULL DEFAULT '0', + PRIMARY KEY (`log_chat_id`) +) ENGINE=InnoDB DEFAULT CHARSET=latin1 COMMENT='Log - Game Chat'; + +-- Dumping data for table db24053.log_chat: ~0 rows (approximately) +/*!40000 ALTER TABLE `log_chat` DISABLE KEYS */; +/*!40000 ALTER TABLE `log_chat` ENABLE KEYS */; + +-- Dumping structure for table db24053.log_conn +CREATE TABLE IF NOT EXISTS `log_conn` ( + `log_conn_id` int(11) NOT NULL AUTO_INCREMENT, + `log_conn_name` varchar(64) NOT NULL DEFAULT 'Unknown', + `log_conn_server` int(11) NOT NULL DEFAULT '0', + `log_conn_ip` int(11) NOT NULL DEFAULT '0', + `log_conn_when_connect` int(32) NOT NULL DEFAULT '0', + `log_conn_when_disconnect` int(32) NOT NULL DEFAULT '0', + `log_conn_gameversion` int(11) NOT NULL DEFAULT '0', + PRIMARY KEY (`log_conn_id`) +) ENGINE=InnoDB DEFAULT CHARSET=latin1 COMMENT='Log - Connections'; + +-- Dumping data for table db24053.log_conn: ~0 rows (approximately) +/*!40000 ALTER TABLE `log_conn` DISABLE KEYS */; +/*!40000 ALTER TABLE `log_conn` ENABLE KEYS */; + +-- Dumping structure for table db24053.log_death +CREATE TABLE IF NOT EXISTS `log_death` ( + `log_death_id` int(11) NOT NULL AUTO_INCREMENT, + `log_death_server` int(11) NOT NULL DEFAULT '0', + `log_death_who_died` int(11) NOT NULL DEFAULT '0', + `log_death_who_killed` int(11) NOT NULL DEFAULT '0', + `log_death_timestamp` int(32) NOT NULL DEFAULT '0', + `log_death_pedpiece` int(11) NOT NULL DEFAULT '0', + `log_death_weapon` int(11) NOT NULL DEFAULT '0', + PRIMARY KEY (`log_death_id`) +) ENGINE=InnoDB DEFAULT CHARSET=latin1 COMMENT='Log - Deaths'; + +-- Dumping data for table db24053.log_death: ~0 rows (approximately) +/*!40000 ALTER TABLE `log_death` DISABLE KEYS */; +/*!40000 ALTER TABLE `log_death` ENABLE KEYS */; + +-- Dumping structure for table db24053.log_pns +CREATE TABLE IF NOT EXISTS `log_pns` ( + `log_pns_id` int(11) NOT NULL AUTO_INCREMENT, + `log_pns_pns` int(11) DEFAULT '0', + `log_pns_when_used` int(32) DEFAULT '0', + `log_pns_conn` int(11) DEFAULT '0', + `log_pns_veh` int(11) DEFAULT '0', + `log_pns_action` float DEFAULT '0', + `log_pns_paid` int(11) DEFAULT '0', + `log_pns_detail` int(11) DEFAULT '0', + PRIMARY KEY (`log_pns_id`) +) ENGINE=InnoDB DEFAULT CHARSET=latin1 COMMENT='Log - Pay and Spray'; + +-- Dumping data for table db24053.log_pns: ~0 rows (approximately) +/*!40000 ALTER TABLE `log_pns` DISABLE KEYS */; +/*!40000 ALTER TABLE `log_pns` ENABLE KEYS */; + +-- Dumping structure for table db24053.npc_cond +CREATE TABLE IF NOT EXISTS `npc_cond` ( + `npc_cond_id` int(11) NOT NULL AUTO_INCREMENT, + `npc_cond_npc` int(11) NOT NULL DEFAULT '0', + `npc_cond_trig` int(11) NOT NULL DEFAULT '0', + `npc_cond_type` int(11) NOT NULL DEFAULT '0', + `npc_cond_data` varchar(11) NOT NULL DEFAULT '0', + `npc_cond_logic` varchar(11) NOT NULL DEFAULT '0', + `npc_cond_enabled` tinyint(1) NOT NULL DEFAULT '1', + PRIMARY KEY (`npc_cond_id`) +) ENGINE=InnoDB DEFAULT CHARSET=latin1 COMMENT='NPCs - Action Conditions'; + +-- Dumping data for table db24053.npc_cond: ~0 rows (approximately) +/*!40000 ALTER TABLE `npc_cond` DISABLE KEYS */; +/*!40000 ALTER TABLE `npc_cond` ENABLE KEYS */; + +-- Dumping structure for table db24053.npc_main +CREATE TABLE IF NOT EXISTS `npc_main` ( + `npc_id` int(11) NOT NULL AUTO_INCREMENT, + `npc_server` tinyint(2) NOT NULL DEFAULT '0', + `npc_name` varchar(128) NOT NULL DEFAULT '', + `npc_model` int(11) NOT NULL DEFAULT '0', + `npc_type_flags` int(32) NOT NULL DEFAULT '0', + `npc_ped_health` int(4) NOT NULL DEFAULT '100', + `npc_ped_armour` int(4) NOT NULL DEFAULT '0', + `npc_ped_threats` int(32) NOT NULL DEFAULT '0', + `npc_ped_heedthreats` tinyint(1) NOT NULL DEFAULT '0', + `npc_ped_stay` tinyint(1) NOT NULL DEFAULT '1', + `npc_ped_walkstyle` int(11) NOT NULL DEFAULT '0', + `npc_owner_type` int(11) DEFAULT NULL, + `npc_owner_id` int(11) DEFAULT NULL, + PRIMARY KEY (`npc_id`) +) ENGINE=InnoDB DEFAULT CHARSET=latin1 COMMENT='NPCs'; + +-- Dumping data for table db24053.npc_main: ~0 rows (approximately) +/*!40000 ALTER TABLE `npc_main` DISABLE KEYS */; +/*!40000 ALTER TABLE `npc_main` ENABLE KEYS */; + +-- Dumping structure for table db24053.npc_resp +CREATE TABLE IF NOT EXISTS `npc_resp` ( + `npc_resp_id` int(11) NOT NULL AUTO_INCREMENT, + `npc_resp_npc` int(11) NOT NULL DEFAULT '0', + `npc_resp_type` int(11) NOT NULL DEFAULT '0', + `npc_resp_trig` int(11) NOT NULL DEFAULT '0', + `npc_resp_data` varchar(11) NOT NULL DEFAULT '0', + `npc_resp_logic` varchar(11) NOT NULL DEFAULT '0', + `npc_resp_enabled` tinyint(1) NOT NULL DEFAULT '1', + PRIMARY KEY (`npc_resp_id`) +) ENGINE=InnoDB DEFAULT CHARSET=latin1 COMMENT='NPCs - Action Responses'; + +-- Dumping data for table db24053.npc_resp: ~0 rows (approximately) +/*!40000 ALTER TABLE `npc_resp` DISABLE KEYS */; +/*!40000 ALTER TABLE `npc_resp` ENABLE KEYS */; + +-- Dumping structure for table db24053.npc_trig +CREATE TABLE IF NOT EXISTS `npc_trig` ( + `npc_trig_id` int(11) NOT NULL AUTO_INCREMENT, + `npc_trig_npc` int(11) NOT NULL DEFAULT '0', + `npc_trig_type` int(11) NOT NULL DEFAULT '0', + `npc_trig_enabled` tinyint(1) NOT NULL DEFAULT '1', + PRIMARY KEY (`npc_trig_id`) +) ENGINE=InnoDB DEFAULT CHARSET=latin1 COMMENT='NPCs - Action Triggers'; + +-- Dumping data for table db24053.npc_trig: ~0 rows (approximately) +/*!40000 ALTER TABLE `npc_trig` DISABLE KEYS */; +/*!40000 ALTER TABLE `npc_trig` ENABLE KEYS */; + +-- Dumping structure for table db24053.radio_main +CREATE TABLE IF NOT EXISTS `radio_main` ( + `radio_id` smallint(6) NOT NULL DEFAULT '0', + `radio_name` varchar(64) NOT NULL DEFAULT '', + `radio_url` text NOT NULL, + `radio_enabled` tinyint(4) NOT NULL DEFAULT '0' +) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Radio Stations'; + +-- Dumping data for table db24053.radio_main: ~0 rows (approximately) +/*!40000 ALTER TABLE `radio_main` DISABLE KEYS */; +/*!40000 ALTER TABLE `radio_main` ENABLE KEYS */; + +-- Dumping structure for table db24053.sacct_main +CREATE TABLE IF NOT EXISTS `sacct_main` ( + `sacct_id` int(11) NOT NULL AUTO_INCREMENT, + `sacct_acct` int(11) NOT NULL DEFAULT '0', + `sacct_server` int(11) NOT NULL DEFAULT '0', + `sacct_name_first` varchar(50) NOT NULL DEFAULT '', + `sacct_name_last` varchar(50) NOT NULL DEFAULT '', + `sacct_name_middle` varchar(50) NOT NULL DEFAULT '', + `sacct_when_born` varchar(50) NOT NULL DEFAULT '', + `sacct_origin` varchar(50) NOT NULL DEFAULT '', + `sacct_job` int(11) NOT NULL DEFAULT '0', + `sacct_clan` int(11) NOT NULL DEFAULT '0', + `sacct_clan_rank` int(11) NOT NULL DEFAULT '0', + `sacct_clan_flags` int(11) NOT NULL DEFAULT '0', + `sacct_clan_title` varchar(32) NOT NULL DEFAULT '', + `sacct_last_ip` int(11) NOT NULL DEFAULT '0', + `sacct_last_uid` varchar(128) NOT NULL DEFAULT '', + `sacct_total_time` int(11) NOT NULL DEFAULT '0', + `sacct_pos_x` float NOT NULL DEFAULT '0', + `sacct_pos_y` float NOT NULL DEFAULT '0', + `sacct_pos_z` float NOT NULL DEFAULT '0', + `sacct_angle` float NOT NULL DEFAULT '0', + `sacct_cash` int(11) NOT NULL DEFAULT '0', + `sacct_bank` int(11) NOT NULL DEFAULT '0', + `sacct_skin` int(11) NOT NULL DEFAULT '0', + `sacct_health` int(11) NOT NULL DEFAULT '0', + `sacct_armour` int(11) NOT NULL DEFAULT '0', + `sacct_licenses` int(11) NOT NULL DEFAULT '0', + `sacct_last_session` int(11) NOT NULL DEFAULT '0', + `sacct_when_made` int(11) NOT NULL DEFAULT '0', + `sacct_when_lastlogin` int(11) NOT NULL DEFAULT '0', + `sacct_arrest_state` int(11) NOT NULL DEFAULT '0', + `sacct_arrest_time` int(11) NOT NULL DEFAULT '0', + `sacct_iv_head_model` int(11) NOT NULL DEFAULT '0', + `sacct_iv_head_texture` int(11) NOT NULL DEFAULT '0', + `sacct_iv_upper_model` int(11) NOT NULL DEFAULT '0', + `sacct_iv_upper_texture` int(11) NOT NULL DEFAULT '0', + `sacct_iv_lower_model` int(11) NOT NULL DEFAULT '0', + `sacct_iv_lower_texture` int(11) NOT NULL DEFAULT '0', + `sacct_iv_feet_model` int(11) NOT NULL DEFAULT '0', + `sacct_iv_feet_texture` int(11) NOT NULL DEFAULT '0', + `sacct_iv_hands_model` int(11) NOT NULL DEFAULT '0', + `sacct_iv_hands_texture` int(11) NOT NULL DEFAULT '0', + `sacct_int` int(11) NOT NULL DEFAULT '0', + `sacct_vw` int(11) NOT NULL DEFAULT '0', + `sacct_needs_setup` int(11) NOT NULL DEFAULT '0', + PRIMARY KEY (`sacct_id`) +) ENGINE=InnoDB AUTO_INCREMENT=20 DEFAULT CHARSET=latin1 COMMENT='Sub Accounts (Characters)'; + +-- Dumping data for table db24053.sacct_main: ~13 rows (approximately) +/*!40000 ALTER TABLE `sacct_main` DISABLE KEYS */; +INSERT INTO `sacct_main` (`sacct_id`, `sacct_acct`, `sacct_server`, `sacct_name_first`, `sacct_name_last`, `sacct_name_middle`, `sacct_when_born`, `sacct_origin`, `sacct_job`, `sacct_clan`, `sacct_clan_rank`, `sacct_clan_flags`, `sacct_clan_title`, `sacct_last_ip`, `sacct_last_uid`, `sacct_total_time`, `sacct_pos_x`, `sacct_pos_y`, `sacct_pos_z`, `sacct_angle`, `sacct_cash`, `sacct_bank`, `sacct_skin`, `sacct_health`, `sacct_armour`, `sacct_licenses`, `sacct_last_session`, `sacct_when_made`, `sacct_when_lastlogin`, `sacct_arrest_state`, `sacct_arrest_time`, `sacct_iv_head_model`, `sacct_iv_head_texture`, `sacct_iv_upper_model`, `sacct_iv_upper_texture`, `sacct_iv_lower_model`, `sacct_iv_lower_texture`, `sacct_iv_feet_model`, `sacct_iv_feet_texture`, `sacct_iv_hands_model`, `sacct_iv_hands_texture`, `sacct_int`, `sacct_vw`, `sacct_needs_setup`) VALUES + (1, 1, 1, 'Ryan', 'Stokes', '', '1/1/2019', 'San Andreas', 17, 0, 0, 0, '', 0, '', 0, 331.21, -1166.53, 22.9601, -0.43299, 3500, 0, 109, 100, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `sacct_main` (`sacct_id`, `sacct_acct`, `sacct_server`, `sacct_name_first`, `sacct_name_last`, `sacct_name_middle`, `sacct_when_born`, `sacct_origin`, `sacct_job`, `sacct_clan`, `sacct_clan_rank`, `sacct_clan_flags`, `sacct_clan_title`, `sacct_last_ip`, `sacct_last_uid`, `sacct_total_time`, `sacct_pos_x`, `sacct_pos_y`, `sacct_pos_z`, `sacct_angle`, `sacct_cash`, `sacct_bank`, `sacct_skin`, `sacct_health`, `sacct_armour`, `sacct_licenses`, `sacct_last_session`, `sacct_when_made`, `sacct_when_lastlogin`, `sacct_arrest_state`, `sacct_arrest_time`, `sacct_iv_head_model`, `sacct_iv_head_texture`, `sacct_iv_upper_model`, `sacct_iv_upper_texture`, `sacct_iv_lower_model`, `sacct_iv_lower_texture`, `sacct_iv_feet_model`, `sacct_iv_feet_texture`, `sacct_iv_hands_model`, `sacct_iv_hands_texture`, `sacct_int`, `sacct_vw`, `sacct_needs_setup`) VALUES + (2, 1, 3, 'Takeshi', 'Mikio', '', '01/01/1901', 'Liberty City', 0, 0, 0, 0, '', 0, '', 0, 2333.75, 332.785, 6.08384, 3.02664, 1000, 0, -2020305438, 100, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `sacct_main` (`sacct_id`, `sacct_acct`, `sacct_server`, `sacct_name_first`, `sacct_name_last`, `sacct_name_middle`, `sacct_when_born`, `sacct_origin`, `sacct_job`, `sacct_clan`, `sacct_clan_rank`, `sacct_clan_flags`, `sacct_clan_title`, `sacct_last_ip`, `sacct_last_uid`, `sacct_total_time`, `sacct_pos_x`, `sacct_pos_y`, `sacct_pos_z`, `sacct_angle`, `sacct_cash`, `sacct_bank`, `sacct_skin`, `sacct_health`, `sacct_armour`, `sacct_licenses`, `sacct_last_session`, `sacct_when_made`, `sacct_when_lastlogin`, `sacct_arrest_state`, `sacct_arrest_time`, `sacct_iv_head_model`, `sacct_iv_head_texture`, `sacct_iv_upper_model`, `sacct_iv_upper_texture`, `sacct_iv_lower_model`, `sacct_iv_lower_texture`, `sacct_iv_feet_model`, `sacct_iv_feet_texture`, `sacct_iv_hands_model`, `sacct_iv_hands_texture`, `sacct_int`, `sacct_vw`, `sacct_needs_setup`) VALUES + (3, 1, 2, 'Ryan', 'Nashton', '', '12/7/1990', 'Los Santos', 2, 0, 0, 0, '', 0, '', 0, 394.146, -475.803, 12.3432, -0.655837, 1000, 0, 181, 100, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `sacct_main` (`sacct_id`, `sacct_acct`, `sacct_server`, `sacct_name_first`, `sacct_name_last`, `sacct_name_middle`, `sacct_when_born`, `sacct_origin`, `sacct_job`, `sacct_clan`, `sacct_clan_rank`, `sacct_clan_flags`, `sacct_clan_title`, `sacct_last_ip`, `sacct_last_uid`, `sacct_total_time`, `sacct_pos_x`, `sacct_pos_y`, `sacct_pos_z`, `sacct_angle`, `sacct_cash`, `sacct_bank`, `sacct_skin`, `sacct_health`, `sacct_armour`, `sacct_licenses`, `sacct_last_session`, `sacct_when_made`, `sacct_when_lastlogin`, `sacct_arrest_state`, `sacct_arrest_time`, `sacct_iv_head_model`, `sacct_iv_head_texture`, `sacct_iv_upper_model`, `sacct_iv_upper_texture`, `sacct_iv_lower_model`, `sacct_iv_lower_texture`, `sacct_iv_feet_model`, `sacct_iv_feet_texture`, `sacct_iv_hands_model`, `sacct_iv_hands_texture`, `sacct_int`, `sacct_vw`, `sacct_needs_setup`) VALUES + (4, 1, 4, 'Tom', 'Willard', '', '01/01/1901', 'Liberty City', 4, 0, 0, 0, '', 0, '', 0, 1172.07, -1318.89, 15.3932, 1.5, 150, 0, 171, 100, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `sacct_main` (`sacct_id`, `sacct_acct`, `sacct_server`, `sacct_name_first`, `sacct_name_last`, `sacct_name_middle`, `sacct_when_born`, `sacct_origin`, `sacct_job`, `sacct_clan`, `sacct_clan_rank`, `sacct_clan_flags`, `sacct_clan_title`, `sacct_last_ip`, `sacct_last_uid`, `sacct_total_time`, `sacct_pos_x`, `sacct_pos_y`, `sacct_pos_z`, `sacct_angle`, `sacct_cash`, `sacct_bank`, `sacct_skin`, `sacct_health`, `sacct_armour`, `sacct_licenses`, `sacct_last_session`, `sacct_when_made`, `sacct_when_lastlogin`, `sacct_arrest_state`, `sacct_arrest_time`, `sacct_iv_head_model`, `sacct_iv_head_texture`, `sacct_iv_upper_model`, `sacct_iv_upper_texture`, `sacct_iv_lower_model`, `sacct_iv_lower_texture`, `sacct_iv_feet_model`, `sacct_iv_feet_texture`, `sacct_iv_hands_model`, `sacct_iv_hands_texture`, `sacct_int`, `sacct_vw`, `sacct_needs_setup`) VALUES + (5, 1, 2, 'Tony', 'Martinelli', '', '1/1/2019', 'Los Santos', 0, 0, 0, 0, '', 0, '', 0, 120.82, -827.98, 10.6286, -1.70251, 1000, 0, 0, 100, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `sacct_main` (`sacct_id`, `sacct_acct`, `sacct_server`, `sacct_name_first`, `sacct_name_last`, `sacct_name_middle`, `sacct_when_born`, `sacct_origin`, `sacct_job`, `sacct_clan`, `sacct_clan_rank`, `sacct_clan_flags`, `sacct_clan_title`, `sacct_last_ip`, `sacct_last_uid`, `sacct_total_time`, `sacct_pos_x`, `sacct_pos_y`, `sacct_pos_z`, `sacct_angle`, `sacct_cash`, `sacct_bank`, `sacct_skin`, `sacct_health`, `sacct_armour`, `sacct_licenses`, `sacct_last_session`, `sacct_when_made`, `sacct_when_lastlogin`, `sacct_arrest_state`, `sacct_arrest_time`, `sacct_iv_head_model`, `sacct_iv_head_texture`, `sacct_iv_upper_model`, `sacct_iv_upper_texture`, `sacct_iv_lower_model`, `sacct_iv_lower_texture`, `sacct_iv_feet_model`, `sacct_iv_feet_texture`, `sacct_iv_hands_model`, `sacct_iv_hands_texture`, `sacct_int`, `sacct_vw`, `sacct_needs_setup`) VALUES + (6, 1, 4, 'Paul', 'Wilson', '', '01/01/1901', 'Liberty City', 0, 0, 0, 0, '', 0, '', 0, 1632.49, -2331.96, 13.547, -0.005, 1000, 0, 26, 100, 0, 0, 0, 1608269983, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `sacct_main` (`sacct_id`, `sacct_acct`, `sacct_server`, `sacct_name_first`, `sacct_name_last`, `sacct_name_middle`, `sacct_when_born`, `sacct_origin`, `sacct_job`, `sacct_clan`, `sacct_clan_rank`, `sacct_clan_flags`, `sacct_clan_title`, `sacct_last_ip`, `sacct_last_uid`, `sacct_total_time`, `sacct_pos_x`, `sacct_pos_y`, `sacct_pos_z`, `sacct_angle`, `sacct_cash`, `sacct_bank`, `sacct_skin`, `sacct_health`, `sacct_armour`, `sacct_licenses`, `sacct_last_session`, `sacct_when_made`, `sacct_when_lastlogin`, `sacct_arrest_state`, `sacct_arrest_time`, `sacct_iv_head_model`, `sacct_iv_head_texture`, `sacct_iv_upper_model`, `sacct_iv_upper_texture`, `sacct_iv_lower_model`, `sacct_iv_lower_texture`, `sacct_iv_feet_model`, `sacct_iv_feet_texture`, `sacct_iv_hands_model`, `sacct_iv_hands_texture`, `sacct_int`, `sacct_vw`, `sacct_needs_setup`) VALUES + (11, 2, 4, 'Maxle', 'Face', '', '01/01/1901', 'Liberty City', 4, 0, 0, 0, '', 0, '', 0, 1484.96, -1633.34, 14.1484, -2.89304, 1000, 0, 26, 100, 0, 0, 0, 1608346070, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `sacct_main` (`sacct_id`, `sacct_acct`, `sacct_server`, `sacct_name_first`, `sacct_name_last`, `sacct_name_middle`, `sacct_when_born`, `sacct_origin`, `sacct_job`, `sacct_clan`, `sacct_clan_rank`, `sacct_clan_flags`, `sacct_clan_title`, `sacct_last_ip`, `sacct_last_uid`, `sacct_total_time`, `sacct_pos_x`, `sacct_pos_y`, `sacct_pos_z`, `sacct_angle`, `sacct_cash`, `sacct_bank`, `sacct_skin`, `sacct_health`, `sacct_armour`, `sacct_licenses`, `sacct_last_session`, `sacct_when_made`, `sacct_when_lastlogin`, `sacct_arrest_state`, `sacct_arrest_time`, `sacct_iv_head_model`, `sacct_iv_head_texture`, `sacct_iv_upper_model`, `sacct_iv_upper_texture`, `sacct_iv_lower_model`, `sacct_iv_lower_texture`, `sacct_iv_feet_model`, `sacct_iv_feet_texture`, `sacct_iv_hands_model`, `sacct_iv_hands_texture`, `sacct_int`, `sacct_vw`, `sacct_needs_setup`) VALUES + (12, 2, 1, 'Max', 'Axleface', '', '21/2/1976', 'Los Santos', 17, 0, 0, 0, '', 0, '', 0, -817.234, -148.18, 33.8613, -0.680817, 1000, 0, 57, 100, 0, 0, 0, 1608835004, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `sacct_main` (`sacct_id`, `sacct_acct`, `sacct_server`, `sacct_name_first`, `sacct_name_last`, `sacct_name_middle`, `sacct_when_born`, `sacct_origin`, `sacct_job`, `sacct_clan`, `sacct_clan_rank`, `sacct_clan_flags`, `sacct_clan_title`, `sacct_last_ip`, `sacct_last_uid`, `sacct_total_time`, `sacct_pos_x`, `sacct_pos_y`, `sacct_pos_z`, `sacct_angle`, `sacct_cash`, `sacct_bank`, `sacct_skin`, `sacct_health`, `sacct_armour`, `sacct_licenses`, `sacct_last_session`, `sacct_when_made`, `sacct_when_lastlogin`, `sacct_arrest_state`, `sacct_arrest_time`, `sacct_iv_head_model`, `sacct_iv_head_texture`, `sacct_iv_upper_model`, `sacct_iv_upper_texture`, `sacct_iv_lower_model`, `sacct_iv_lower_texture`, `sacct_iv_feet_model`, `sacct_iv_feet_texture`, `sacct_iv_hands_model`, `sacct_iv_hands_texture`, `sacct_int`, `sacct_vw`, `sacct_needs_setup`) VALUES + (13, 7, 1, 'Luigi', 'Santorino', '', '1/4/1987', 'Las Venturas', 17, 0, 0, 0, '', 0, '', 0, 836.584, -736.133, 14.4484, -0.00203527, 1000, 0, 119, 100, 0, 0, 0, 1609095921, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `sacct_main` (`sacct_id`, `sacct_acct`, `sacct_server`, `sacct_name_first`, `sacct_name_last`, `sacct_name_middle`, `sacct_when_born`, `sacct_origin`, `sacct_job`, `sacct_clan`, `sacct_clan_rank`, `sacct_clan_flags`, `sacct_clan_title`, `sacct_last_ip`, `sacct_last_uid`, `sacct_total_time`, `sacct_pos_x`, `sacct_pos_y`, `sacct_pos_z`, `sacct_angle`, `sacct_cash`, `sacct_bank`, `sacct_skin`, `sacct_health`, `sacct_armour`, `sacct_licenses`, `sacct_last_session`, `sacct_when_made`, `sacct_when_lastlogin`, `sacct_arrest_state`, `sacct_arrest_time`, `sacct_iv_head_model`, `sacct_iv_head_texture`, `sacct_iv_upper_model`, `sacct_iv_upper_texture`, `sacct_iv_lower_model`, `sacct_iv_lower_texture`, `sacct_iv_feet_model`, `sacct_iv_feet_texture`, `sacct_iv_hands_model`, `sacct_iv_hands_texture`, `sacct_int`, `sacct_vw`, `sacct_needs_setup`) VALUES + (14, 7, 1, 'Mickey', 'Santorino', '', '1/1/2020', 'Vice City', 17, 0, 0, 0, '', 0, '', 0, 839.948, -307.534, 6.19376, -3.10991, 1000, 0, 119, 100, 0, 0, 0, 1609096733, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `sacct_main` (`sacct_id`, `sacct_acct`, `sacct_server`, `sacct_name_first`, `sacct_name_last`, `sacct_name_middle`, `sacct_when_born`, `sacct_origin`, `sacct_job`, `sacct_clan`, `sacct_clan_rank`, `sacct_clan_flags`, `sacct_clan_title`, `sacct_last_ip`, `sacct_last_uid`, `sacct_total_time`, `sacct_pos_x`, `sacct_pos_y`, `sacct_pos_z`, `sacct_angle`, `sacct_cash`, `sacct_bank`, `sacct_skin`, `sacct_health`, `sacct_armour`, `sacct_licenses`, `sacct_last_session`, `sacct_when_made`, `sacct_when_lastlogin`, `sacct_arrest_state`, `sacct_arrest_time`, `sacct_iv_head_model`, `sacct_iv_head_texture`, `sacct_iv_upper_model`, `sacct_iv_upper_texture`, `sacct_iv_lower_model`, `sacct_iv_lower_texture`, `sacct_iv_feet_model`, `sacct_iv_feet_texture`, `sacct_iv_hands_model`, `sacct_iv_hands_texture`, `sacct_int`, `sacct_vw`, `sacct_needs_setup`) VALUES + (15, 7, 1, 'Tony', 'Santorino', '', '1/1/2018', 'Los Santos', 0, 0, 0, 0, '', 0, '', 0, 1038.59, -661.753, 14.9727, -0.0113098, 1000, 0, 119, 100, 0, 0, 0, 1609096792, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `sacct_main` (`sacct_id`, `sacct_acct`, `sacct_server`, `sacct_name_first`, `sacct_name_last`, `sacct_name_middle`, `sacct_when_born`, `sacct_origin`, `sacct_job`, `sacct_clan`, `sacct_clan_rank`, `sacct_clan_flags`, `sacct_clan_title`, `sacct_last_ip`, `sacct_last_uid`, `sacct_total_time`, `sacct_pos_x`, `sacct_pos_y`, `sacct_pos_z`, `sacct_angle`, `sacct_cash`, `sacct_bank`, `sacct_skin`, `sacct_health`, `sacct_armour`, `sacct_licenses`, `sacct_last_session`, `sacct_when_made`, `sacct_when_lastlogin`, `sacct_arrest_state`, `sacct_arrest_time`, `sacct_iv_head_model`, `sacct_iv_head_texture`, `sacct_iv_upper_model`, `sacct_iv_upper_texture`, `sacct_iv_lower_model`, `sacct_iv_lower_texture`, `sacct_iv_feet_model`, `sacct_iv_feet_texture`, `sacct_iv_hands_model`, `sacct_iv_hands_texture`, `sacct_int`, `sacct_vw`, `sacct_needs_setup`) VALUES + (18, 2, 2, 'Maaaaaaaaaax', 'face', '', '6/9/1969', 'Los Santos', 0, 0, 0, 0, '', 0, '', 0, -704.206, 180.381, 11.0712, 1.81422, 1000, 0, 96, 100, 0, 0, 0, 1609207678, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `sacct_main` (`sacct_id`, `sacct_acct`, `sacct_server`, `sacct_name_first`, `sacct_name_last`, `sacct_name_middle`, `sacct_when_born`, `sacct_origin`, `sacct_job`, `sacct_clan`, `sacct_clan_rank`, `sacct_clan_flags`, `sacct_clan_title`, `sacct_last_ip`, `sacct_last_uid`, `sacct_total_time`, `sacct_pos_x`, `sacct_pos_y`, `sacct_pos_z`, `sacct_angle`, `sacct_cash`, `sacct_bank`, `sacct_skin`, `sacct_health`, `sacct_armour`, `sacct_licenses`, `sacct_last_session`, `sacct_when_made`, `sacct_when_lastlogin`, `sacct_arrest_state`, `sacct_arrest_time`, `sacct_iv_head_model`, `sacct_iv_head_texture`, `sacct_iv_upper_model`, `sacct_iv_upper_texture`, `sacct_iv_lower_model`, `sacct_iv_lower_texture`, `sacct_iv_feet_model`, `sacct_iv_feet_texture`, `sacct_iv_hands_model`, `sacct_iv_hands_texture`, `sacct_int`, `sacct_vw`, `sacct_needs_setup`) VALUES + (19, 2, 2, 'Maximillian', 'Faceworth', '', '6/9/1969', 'Los Santos', 18, 0, 0, 0, '', 0, '', 0, -852.952, -564.247, 12.1422, 0.09868, 1000, 0, 156, 100, 0, 0, 0, 1609207734, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +/*!40000 ALTER TABLE `sacct_main` ENABLE KEYS */; + +-- Dumping structure for table db24053.sacct_pay +CREATE TABLE IF NOT EXISTS `sacct_pay` ( + `sacct_pay_id` int(11) NOT NULL AUTO_INCREMENT, + `sacct_pay_server` int(11) NOT NULL DEFAULT '0', + `sacct_pay_from_sacct_id` int(11) NOT NULL DEFAULT '0', + `sacct_pay_to_sacct_id` int(11) NOT NULL DEFAULT '0', + `sacct_pay_amount` int(11) NOT NULL DEFAULT '0', + `sacct_pay_when` int(32) NOT NULL DEFAULT '0', + `sacct_pay_pos_x` float NOT NULL DEFAULT '0', + `sacct_pay_pos_y` float NOT NULL DEFAULT '0', + `sacct_pay_pos_z` float NOT NULL DEFAULT '0', + PRIMARY KEY (`sacct_pay_id`) +) ENGINE=InnoDB DEFAULT CHARSET=latin1 COMMENT='Sub Accounts - Cash Exchanges'; + +-- Dumping data for table db24053.sacct_pay: ~0 rows (approximately) +/*!40000 ALTER TABLE `sacct_pay` DISABLE KEYS */; +/*!40000 ALTER TABLE `sacct_pay` ENABLE KEYS */; + +-- Dumping structure for table db24053.sacct_stat +CREATE TABLE IF NOT EXISTS `sacct_stat` ( + `sacct_stat_id` int(32) NOT NULL DEFAULT '0', + `sacct_stat_sacct` int(32) NOT NULL DEFAULT '0', + `sacct_stat_max_kill_streak` int(32) NOT NULL DEFAULT '0', + `sacct_stat_furthest_headshot` float NOT NULL DEFAULT '0', + `sacct_stat_packages_picked` int(32) NOT NULL DEFAULT '0', + `sacct_stat_health_picked` int(32) NOT NULL DEFAULT '0', + `sacct_stat_weapons_picked` int(32) NOT NULL DEFAULT '0', + `sacct_stat_armour_picked` int(32) NOT NULL DEFAULT '0', + `sacct_stat_distance_foot` float NOT NULL DEFAULT '0', + `sacct_stat_distance_car` float NOT NULL DEFAULT '0', + `sacct_stat_distance_boat` float NOT NULL DEFAULT '0', + `sacct_stat_distance_plane` float NOT NULL DEFAULT '0', + `sacct_stat_longest_server_time` int(32) NOT NULL DEFAULT '0', + `sacct_stat_veh_resprays` int(32) NOT NULL DEFAULT '0', + `sacct_stat_wanted_veh_resprays` int(32) NOT NULL DEFAULT '0', + `sacct_stat_spent_on_weapons` int(32) NOT NULL DEFAULT '0', + `sacct_stat_weapons_purchased` int(32) NOT NULL DEFAULT '0', + `sacct_stat_businesses_purchased` int(32) NOT NULL DEFAULT '0', + `sacct_stat_houses_purchased` int(32) NOT NULL DEFAULT '0', + `sacct_stat_times_busted` int(32) NOT NULL DEFAULT '0', + `sacct_stat_stars_obtained` int(32) NOT NULL DEFAULT '0', + `sacct_stat_stars_evaded` int(32) NOT NULL DEFAULT '0', + `sacct_stat_highest_wanted_level` int(32) NOT NULL DEFAULT '0', + PRIMARY KEY (`sacct_stat_id`) +) ENGINE=InnoDB DEFAULT CHARSET=latin1 COMMENT='Subaccounts - Stats'; + +-- Dumping data for table db24053.sacct_stat: ~0 rows (approximately) +/*!40000 ALTER TABLE `sacct_stat` DISABLE KEYS */; +/*!40000 ALTER TABLE `sacct_stat` ENABLE KEYS */; + +-- Dumping structure for table db24053.sus_main +CREATE TABLE IF NOT EXISTS `sus_main` ( + `sus_id` int(11) NOT NULL AUTO_INCREMENT, + `sus_server` tinyint(2) NOT NULL DEFAULT '0', + `sus_suspect` int(11) NOT NULL DEFAULT '0', + `sus_officer` int(11) NOT NULL DEFAULT '0', + `sus_minutes` int(11) NOT NULL DEFAULT '0', + `sus_reason` varchar(128) NOT NULL DEFAULT '', + `sus_state` int(11) NOT NULL DEFAULT '0', + PRIMARY KEY (`sus_id`) +) ENGINE=InnoDB DEFAULT CHARSET=latin1 COMMENT='Crimes'; + +-- Dumping data for table db24053.sus_main: ~0 rows (approximately) +/*!40000 ALTER TABLE `sus_main` DISABLE KEYS */; +/*!40000 ALTER TABLE `sus_main` ENABLE KEYS */; + +-- Dumping structure for table db24053.svr_main +CREATE TABLE IF NOT EXISTS `svr_main` ( + `svr_id` tinyint(1) NOT NULL DEFAULT '0', + `svr_name` varchar(50) NOT NULL DEFAULT '0', + `svr_game` tinyint(1) NOT NULL DEFAULT '0', + `svr_port` mediumint(9) NOT NULL DEFAULT '0', + `svr_password` varchar(50) NOT NULL DEFAULT '0', + `svr_start_time_hour` tinyint(2) NOT NULL DEFAULT '0', + `svr_start_time_min` tinyint(2) NOT NULL DEFAULT '0', + `svr_start_weather` tinyint(2) NOT NULL DEFAULT '0', + `svr_start_snow_falling` tinyint(1) NOT NULL DEFAULT '0', + `svr_start_snow_ground` tinyint(1) NOT NULL DEFAULT '0', + `svr_newchar_pos_x` float NOT NULL DEFAULT '0', + `svr_newchar_pos_y` float NOT NULL DEFAULT '0', + `svr_newchar_pos_z` float NOT NULL DEFAULT '0', + `svr_newchar_rot_z` float NOT NULL DEFAULT '0', + `svr_newchar_money` mediumint(9) NOT NULL DEFAULT '0', + `svr_newchar_bank` mediumint(9) NOT NULL DEFAULT '0', + `svr_newchar_skin` int(11) NOT NULL DEFAULT '0', + `svr_manager` int(11) NOT NULL DEFAULT '0', + `svr_connectcam_pos_x` float NOT NULL DEFAULT '0', + `svr_connectcam_pos_y` float NOT NULL DEFAULT '0', + `svr_connectcam_pos_z` float NOT NULL DEFAULT '0', + `svr_connectcam_lookat_x` float NOT NULL DEFAULT '0', + `svr_connectcam_lookat_y` float NOT NULL DEFAULT '0', + `svr_connectcam_lookat_z` float NOT NULL DEFAULT '0', + `svr_gui` tinyint(1) NOT NULL DEFAULT '1', + `svr_gui_col1_r` smallint(6) NOT NULL DEFAULT '200', + `svr_gui_col1_g` smallint(6) NOT NULL DEFAULT '200', + `svr_gui_col1_b` smallint(6) NOT NULL DEFAULT '200', + `svr_logo` tinyint(1) NOT NULL DEFAULT '1', + `svr_ac_enabled` tinyint(1) NOT NULL DEFAULT '1', + `svr_ac_check_scripts` tinyint(1) NOT NULL DEFAULT '1', + `svr_ac_script_wl` tinyint(1) NOT NULL DEFAULT '0', + `svr_ac_script_bl` tinyint(1) NOT NULL DEFAULT '1', + PRIMARY KEY (`svr_id`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Servers'; + +-- Dumping data for table db24053.svr_main: ~4 rows (approximately) +/*!40000 ALTER TABLE `svr_main` DISABLE KEYS */; +INSERT INTO `svr_main` (`svr_id`, `svr_name`, `svr_game`, `svr_port`, `svr_password`, `svr_start_time_hour`, `svr_start_time_min`, `svr_start_weather`, `svr_start_snow_falling`, `svr_start_snow_ground`, `svr_newchar_pos_x`, `svr_newchar_pos_y`, `svr_newchar_pos_z`, `svr_newchar_rot_z`, `svr_newchar_money`, `svr_newchar_bank`, `svr_newchar_skin`, `svr_manager`, `svr_connectcam_pos_x`, `svr_connectcam_pos_y`, `svr_connectcam_pos_z`, `svr_connectcam_lookat_x`, `svr_connectcam_lookat_y`, `svr_connectcam_lookat_z`, `svr_gui`, `svr_gui_col1_r`, `svr_gui_col1_g`, `svr_gui_col1_b`, `svr_logo`, `svr_ac_enabled`, `svr_ac_check_scripts`, `svr_ac_script_wl`, `svr_ac_script_bl`) VALUES + (1, 'Asshat Gaming Roleplay', 1, 30120, 'AsshatsUnite!', 0, 0, 0, 0, 0, 1038.4, -666.7, 14.97, 1, 1000, 0, 0, 1, -1176.48, -17.694, 95.992, -1175.73, -17.055, 95.847, 1, 40, 110, 185, 1, 1, 1, 1, 1); +INSERT INTO `svr_main` (`svr_id`, `svr_name`, `svr_game`, `svr_port`, `svr_password`, `svr_start_time_hour`, `svr_start_time_min`, `svr_start_weather`, `svr_start_snow_falling`, `svr_start_snow_ground`, `svr_newchar_pos_x`, `svr_newchar_pos_y`, `svr_newchar_pos_z`, `svr_newchar_rot_z`, `svr_newchar_money`, `svr_newchar_bank`, `svr_newchar_skin`, `svr_manager`, `svr_connectcam_pos_x`, `svr_connectcam_pos_y`, `svr_connectcam_pos_z`, `svr_connectcam_lookat_x`, `svr_connectcam_lookat_y`, `svr_connectcam_lookat_z`, `svr_gui`, `svr_gui_col1_r`, `svr_gui_col1_g`, `svr_gui_col1_b`, `svr_logo`, `svr_ac_enabled`, `svr_ac_check_scripts`, `svr_ac_script_wl`, `svr_ac_script_bl`) VALUES + (2, 'Asshat Gaming Roleplay', 2, 30120, 'AsshatsUnite!', 0, 0, 0, 0, 0, -708.918, 179.315, 11.0712, 2.94625, 1000, 0, 15, 1, 210.04, -1492.01, 55.071, 240.19, -1282.52, 10.902, 1, 255, 110, 199, 1, 1, 1, 1, 1); +INSERT INTO `svr_main` (`svr_id`, `svr_name`, `svr_game`, `svr_port`, `svr_password`, `svr_start_time_hour`, `svr_start_time_min`, `svr_start_weather`, `svr_start_snow_falling`, `svr_start_snow_ground`, `svr_newchar_pos_x`, `svr_newchar_pos_y`, `svr_newchar_pos_z`, `svr_newchar_rot_z`, `svr_newchar_money`, `svr_newchar_bank`, `svr_newchar_skin`, `svr_manager`, `svr_connectcam_pos_x`, `svr_connectcam_pos_y`, `svr_connectcam_pos_z`, `svr_connectcam_lookat_x`, `svr_connectcam_lookat_y`, `svr_connectcam_lookat_z`, `svr_gui`, `svr_gui_col1_r`, `svr_gui_col1_g`, `svr_gui_col1_b`, `svr_logo`, `svr_ac_enabled`, `svr_ac_check_scripts`, `svr_ac_script_wl`, `svr_ac_script_bl`) VALUES + (3, 'Asshat Gaming Roleplay', 5, 30120, 'AsshatsUnite!', 0, 0, 0, 0, 0, 2364.28, 387.27, 6.085, 2.434, 1000, 0, -2020305438, 1, 8.75, -826.53, 331.072, -63.58, 240.71, 26.373, 1, 200, 200, 200, 1, 1, 1, 1, 1); +INSERT INTO `svr_main` (`svr_id`, `svr_name`, `svr_game`, `svr_port`, `svr_password`, `svr_start_time_hour`, `svr_start_time_min`, `svr_start_weather`, `svr_start_snow_falling`, `svr_start_snow_ground`, `svr_newchar_pos_x`, `svr_newchar_pos_y`, `svr_newchar_pos_z`, `svr_newchar_rot_z`, `svr_newchar_money`, `svr_newchar_bank`, `svr_newchar_skin`, `svr_manager`, `svr_connectcam_pos_x`, `svr_connectcam_pos_y`, `svr_connectcam_pos_z`, `svr_connectcam_lookat_x`, `svr_connectcam_lookat_y`, `svr_connectcam_lookat_z`, `svr_gui`, `svr_gui_col1_r`, `svr_gui_col1_g`, `svr_gui_col1_b`, `svr_logo`, `svr_ac_enabled`, `svr_ac_check_scripts`, `svr_ac_script_wl`, `svr_ac_script_bl`) VALUES + (4, 'Asshat Gaming Roleplay', 3, 30120, 'AsshatsUnite!', 0, 0, 0, 0, 0, 1632.49, -2331.96, 13.547, -0.005, 1000, 0, 26, 1, 1292.31, -2037.57, 109.596, 1291.31, -2037.57, 109.171, 0, 200, 200, 200, 1, 1, 1, 1, 1); +/*!40000 ALTER TABLE `svr_main` ENABLE KEYS */; + +-- Dumping structure for table db24053.veh_history +CREATE TABLE IF NOT EXISTS `veh_history` ( + `veh_history_id` int(11) NOT NULL AUTO_INCREMENT, + `veh_history_veh` int(11) NOT NULL, + `veh_history_type` int(11) NOT NULL, + `veh_history_when` int(11) NOT NULL, + `veh_history_value` int(11) NOT NULL, + `veh_history_details` varchar(50) NOT NULL DEFAULT '', + PRIMARY KEY (`veh_history_id`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Vehicle - History'; + +-- Dumping data for table db24053.veh_history: ~0 rows (approximately) +/*!40000 ALTER TABLE `veh_history` DISABLE KEYS */; +/*!40000 ALTER TABLE `veh_history` ENABLE KEYS */; + +-- Dumping structure for table db24053.veh_main +CREATE TABLE IF NOT EXISTS `veh_main` ( + `veh_id` int(11) NOT NULL AUTO_INCREMENT, + `veh_server` tinyint(2) NOT NULL DEFAULT '0', + `veh_model` int(11) NOT NULL DEFAULT '0', + `veh_col1_isrgb` tinyint(1) NOT NULL DEFAULT '0', + `veh_col2_isrgb` tinyint(1) NOT NULL DEFAULT '0', + `veh_col3_isrgb` tinyint(1) NOT NULL DEFAULT '0', + `veh_col4_isrgb` tinyint(1) NOT NULL DEFAULT '0', + `veh_col1` smallint(6) NOT NULL DEFAULT '0', + `veh_col2` smallint(6) NOT NULL DEFAULT '0', + `veh_col3` smallint(6) NOT NULL DEFAULT '0', + `veh_col4` smallint(6) NOT NULL DEFAULT '0', + `veh_col1_r` smallint(6) NOT NULL DEFAULT '0', + `veh_col1_g` smallint(6) NOT NULL DEFAULT '0', + `veh_col1_b` smallint(6) NOT NULL DEFAULT '0', + `veh_col1_a` smallint(6) NOT NULL DEFAULT '0', + `veh_col2_r` smallint(6) NOT NULL DEFAULT '0', + `veh_col2_g` smallint(6) NOT NULL DEFAULT '0', + `veh_col2_b` smallint(6) NOT NULL DEFAULT '0', + `veh_col2_a` smallint(6) NOT NULL DEFAULT '0', + `veh_col3_r` smallint(6) NOT NULL DEFAULT '0', + `veh_col3_g` smallint(6) NOT NULL DEFAULT '0', + `veh_col3_b` smallint(6) NOT NULL DEFAULT '0', + `veh_col3_a` smallint(6) NOT NULL DEFAULT '0', + `veh_col4_r` smallint(6) NOT NULL DEFAULT '0', + `veh_col4_g` smallint(6) NOT NULL DEFAULT '0', + `veh_col4_b` smallint(6) NOT NULL DEFAULT '0', + `veh_col4_a` smallint(6) NOT NULL DEFAULT '0', + `veh_locked` tinyint(1) NOT NULL DEFAULT '0', + `veh_health` float NOT NULL DEFAULT '1000', + `veh_pos_x` float NOT NULL DEFAULT '0', + `veh_pos_y` float NOT NULL DEFAULT '0', + `veh_pos_z` float NOT NULL DEFAULT '0', + `veh_rot_x` float NOT NULL DEFAULT '0', + `veh_rot_y` float NOT NULL DEFAULT '0', + `veh_rot_z` float NOT NULL DEFAULT '0', + `veh_owner_id` mediumint(9) NOT NULL DEFAULT '0', + `veh_owner_type` tinyint(1) NOT NULL DEFAULT '0', + `veh_engine` tinyint(1) NOT NULL DEFAULT '0', + `veh_rank` tinyint(1) NOT NULL DEFAULT '0', + `veh_lights` tinyint(1) NOT NULL DEFAULT '0', + `veh_siren` tinyint(1) NOT NULL DEFAULT '0', + `veh_sirenlight` tinyint(1) NOT NULL DEFAULT '0', + `veh_taxilight` tinyint(1) NOT NULL DEFAULT '0', + `veh_radio_custom` tinyint(1) NOT NULL DEFAULT '0', + `veh_radio_station` smallint(6) NOT NULL DEFAULT '0', + `veh_radio_volume` tinyint(4) NOT NULL DEFAULT '0', + `veh_fuel` smallint(6) NOT NULL DEFAULT '0', + `veh_spawned` tinyint(1) NOT NULL DEFAULT '0', + `veh_ins_acct` tinyint(1) NOT NULL DEFAULT '0', + `veh_price` int(8) NOT NULL DEFAULT '0', + `veh_deleted` tinyint(1) NOT NULL DEFAULT '0', + `veh_flags` int(32) NOT NULL DEFAULT '0', + `veh_spawn_lock` tinyint(1) NOT NULL DEFAULT '0', + `veh_buy_price` int(11) NOT NULL DEFAULT '0', + `veh_rent_price` int(11) NOT NULL DEFAULT '0', + `veh_destroyed` tinyint(1) NOT NULL DEFAULT '0', + `veh_mod_enginemult` int(11) NOT NULL DEFAULT '0', + `veh_mod_wheelmult` int(11) NOT NULL DEFAULT '0', + `veh_mod_brakemult` int(11) NOT NULL DEFAULT '0', + `veh_mod_hydraulics` tinyint(1) NOT NULL DEFAULT '0', + `veh_mod_nos` tinyint(1) NOT NULL DEFAULT '0', + `veh_tire_fl` tinyint(1) NOT NULL DEFAULT '0', + `veh_tire_fr` tinyint(1) NOT NULL DEFAULT '0', + `veh_tire_rl` tinyint(1) NOT NULL DEFAULT '0', + `veh_tire_rr` tinyint(1) NOT NULL DEFAULT '0', + `veh_light_fl` tinyint(1) NOT NULL DEFAULT '0', + `veh_light_fr` tinyint(1) NOT NULL DEFAULT '0', + `veh_light_rl` tinyint(1) NOT NULL DEFAULT '0', + `veh_light_rr` tinyint(1) NOT NULL DEFAULT '0', + `veh_door_fl` tinyint(1) NOT NULL DEFAULT '0', + `veh_door_fr` tinyint(1) NOT NULL DEFAULT '0', + `veh_door_rl` tinyint(1) NOT NULL DEFAULT '0', + `veh_door_rr` tinyint(1) NOT NULL DEFAULT '0', + `veh_boot` tinyint(1) NOT NULL DEFAULT '0', + `veh_bonnet` tinyint(1) NOT NULL DEFAULT '0', + `veh_panel_bumper_front` tinyint(1) NOT NULL DEFAULT '0', + `veh_panel_bumper_rear` tinyint(1) NOT NULL DEFAULT '0', + `veh_panel_front_left` tinyint(1) NOT NULL DEFAULT '0', + `veh_panel_front_right` tinyint(1) NOT NULL DEFAULT '0', + `veh_panel_rear_left` tinyint(1) NOT NULL DEFAULT '0', + `veh_panel_rear_right` tinyint(1) NOT NULL DEFAULT '0', + `veh_panel_windshield` tinyint(1) NOT NULL DEFAULT '0', + `veh_dirt_level` int(11) NOT NULL DEFAULT '0', + `veh_damage_visual` int(11) NOT NULL DEFAULT '0', + `veh_damage_engine` float NOT NULL DEFAULT '0', + `veh_damage_normal` float NOT NULL DEFAULT '0', + PRIMARY KEY (`veh_id`) +) ENGINE=InnoDB AUTO_INCREMENT=341 DEFAULT CHARSET=latin1 COMMENT='Vehicles'; + +-- Dumping data for table db24053.veh_main: ~318 rows (approximately) +/*!40000 ALTER TABLE `veh_main` DISABLE KEYS */; +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`) VALUES + (1, 1, 116, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1000, 1150.19, -691.413, 14.7679, 0, 0, -0.00433205, 1, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`) VALUES + (2, 1, 116, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1000, 1146.75, -691.522, 14.7632, 0, 0, 0.0311547, 1, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`) VALUES + (3, 1, 116, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1000, 1150.19, -647.976, 14.7432, 0, 0, 1.58688, 1, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`) VALUES + (4, 1, 116, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1000, 1150.05, -644.664, 14.7377, 0, 0, 1.63214, 1, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`) VALUES + (5, 1, 116, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1000, 1150.03, -641.414, 14.7305, 0, 0, 1.58556, 1, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`) VALUES + (6, 1, 116, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1000, 1137.77, -637.964, 14.7565, 0, 0, 3.12411, 1, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`) VALUES + (7, 1, 116, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1000, 1141.03, -637.832, 14.7565, 0, 0, 3.13313, 1, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`) VALUES + (8, 1, 117, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1000, 1167.97, -671.216, 18.9339, 0, 0, -3.12864, 1, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`) VALUES + (9, 1, 117, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1000, 1167.88, -659.962, 18.9344, 0, 0, -3.13742, 1, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`) VALUES + (10, 1, 107, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1000, 1156.99, -648.106, 18.8026, 0, 0, -1.54444, 1, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`) VALUES + (11, 1, 107, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1000, 1156.71, -644.208, 18.8018, 0, 0, -1.56368, 1, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`) VALUES + (12, 1, 106, 0, 0, 0, 0, 1, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1000, 1156.51, -546.982, 21.8099, 0, 0, 1.54116, 5, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`) VALUES + (13, 1, 106, 0, 0, 0, 0, 1, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1000, 1144.34, -526.256, 21.811, 0, 0, 3.10339, 5, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`) VALUES + (14, 1, 106, 0, 0, 0, 0, 1, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1000, 1149.82, -526.413, 21.8051, 0, 0, 3.12915, 5, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`) VALUES + (15, 1, 97, 0, 0, 0, 0, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1000, 1107.33, -47.3277, 7.6909, 0, 0, -1.58177, 9, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`) VALUES + (16, 1, 97, 0, 0, 0, 0, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1000, 1107.44, -56.9672, 7.68915, 0, 0, -1.55498, 9, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`) VALUES + (17, 1, 97, 0, 0, 0, 0, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1000, 1107.07, -36.7668, 7.68907, 0, 0, -1.54614, 9, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`) VALUES + (18, 1, 98, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1000, 1143.85, 24.7314, 0.193595, 0, 0, 0.030849, 21, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`) VALUES + (19, 1, 98, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1000, 1127.04, 42.6658, 0.0965313, 0, 0, -1.59613, 21, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`) VALUES + (20, 1, 98, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1000, 1160.02, 63.4447, 0.0918589, 0, 0, -3.06856, 21, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`) VALUES + (21, 1, 116, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1000, 1139.63, -687.404, 14.7563, 0, 0, -1.5751, 1, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`) VALUES + (22, 1, 127, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1000, 1281.16, -964.567, 15.006, 0, 0, -2.35689, 17, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`) VALUES + (23, 1, 127, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1000, 1274.07, -971.255, 14.9847, 0, 0, -2.36657, 17, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`) VALUES + (24, 1, 127, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1000, 1255.04, -993.608, 14.9642, 0, 0, -0.875785, 6, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`) VALUES + (25, 1, 127, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1000, 1262.9, -1001.84, 14.966, 0, 0, -0.898034, 6, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`) VALUES + (26, 1, 110, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1000, 1226.42, -725.875, 14.9189, 0, 0, -2.34667, 5, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`) VALUES + (27, 1, 110, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1000, 1229.62, -722.578, 14.9188, 0, 0, -2.35245, 5, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`) VALUES + (28, 1, 110, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1000, 1257.41, -752.06, 14.9186, 0, 0, 0.734189, 5, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`) VALUES + (29, 1, 110, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1000, 1254.04, -755.676, 14.9186, 0, 0, 0.767078, 5, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`) VALUES + (30, 1, 128, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1000, 1249.93, -736.377, 15.1166, 0, 0, 2.33642, 5, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`) VALUES + (31, 1, 128, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1000, 1246.99, -733.376, 15.1162, 0, 0, 2.33641, 5, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`) VALUES + (32, 1, 116, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1000, 1139.41, -683.735, 14.7565, 0, 0, -1.55153, 1, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`) VALUES + (33, 1, 116, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1000, 355.017, -1135.91, 22.7644, 0, 0, -2.41669, 1, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`) VALUES + (34, 1, 116, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1000, 350.109, -1135.89, 22.7647, 0, 0, -2.46912, 1, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`) VALUES + (35, 1, 116, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1000, 345.608, -1135.62, 22.7649, 0, 0, -2.53825, 1, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`) VALUES + (36, 1, 116, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1000, 341.261, -1135.68, 22.7642, 0, 0, -2.54692, 1, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`) VALUES + (37, 1, 116, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1000, 336.717, -1135.68, 22.7706, 0, 0, -2.56974, 1, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`) VALUES + (38, 1, 116, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1000, 332.574, -1135.79, 22.7643, 0, 0, -2.54837, 1, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`) VALUES + (39, 1, 116, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1000, 330.361, -1143.6, 22.7644, 0, 0, -1.53463, 1, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`) VALUES + (40, 1, 116, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1000, 330.33, -1147.05, 22.7647, 0, 0, -1.55975, 1, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`) VALUES + (41, 1, 116, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1000, 330.239, -1150.96, 22.7647, 0, 0, -1.59091, 1, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`) VALUES + (42, 1, 116, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1000, 330.082, -1154.76, 22.7643, 0, 0, -1.59227, 1, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`) VALUES + (43, 1, 116, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1000, 330.062, -1158.64, 22.764, 0, 0, -1.56752, 1, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`) VALUES + (44, 1, 116, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1000, 330.123, -1162.56, 22.757, 0, 0, -1.57938, 1, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`) VALUES + (45, 1, 116, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1000, 349.266, -1175.87, 22.7646, 0, 0, 0.0401467, 1, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`) VALUES + (46, 1, 116, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1000, 352.866, -1175.72, 22.7649, 0, 0, 0.0375325, 1, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`) VALUES + (47, 1, 116, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1000, 356.565, -1175.68, 22.7649, 0, 0, 0.0262495, 1, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`) VALUES + (48, 1, 116, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1000, 360.123, -1175.56, 22.765, 0, 0, 0.00383999, 1, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`) VALUES + (49, 1, 116, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1000, 363.628, -1175.71, 22.7647, 0, 0, 0.0135003, 1, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`) VALUES + (50, 1, 116, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1000, 344.813, -1175.93, 22.7648, 0, 0, 0.0261305, 1, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`) VALUES + (51, 1, 117, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1000, 363.039, -1056.26, 26.0159, 0, 0, -3.13414, 1, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`) VALUES + (52, 1, 117, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1000, 357.656, -1056.36, 26.016, 0, 0, 3.12152, 1, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`) VALUES + (53, 1, 117, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1000, 352.455, -1056.27, 26.0166, 0, 0, 3.1086, 1, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`) VALUES + (54, 1, 107, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1000, 346.23, -1055.48, 25.8838, 0, 0, 3.1377, 1, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`) VALUES + (55, 1, 107, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1000, 342.364, -1055.36, 25.8839, 0, 0, 3.12213, 1, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`) VALUES + (56, 1, 107, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1000, 338.239, -1055.29, 25.8841, 0, 0, 3.07547, 1, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`) VALUES + (57, 1, 107, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1000, 333.56, -1055.31, 25.8841, 0, 0, 3.09697, 1, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`) VALUES + (58, 2, 156, 0, 0, 0, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, -863.201, -666.353, 11.0311, 0, 0, -3.04091, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`) VALUES + (59, 2, 156, 0, 0, 0, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, -859.264, -665.929, 11.0121, 0, 0, -3.02909, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`) VALUES + (60, 2, 156, 0, 0, 0, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, -855.519, -665.594, 10.9943, 0, 0, -3.03498, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`) VALUES + (61, 2, 156, 0, 0, 0, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, -851.826, -665.276, 10.9767, 0, 0, -3.02548, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`) VALUES + (62, 2, 156, 0, 0, 0, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, -843.97, -679.789, 10.9396, 0, 0, 1.72875, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`) VALUES + (63, 2, 156, 0, 0, 0, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, -844.578, -675.52, 10.9427, 0, 0, 1.70593, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`) VALUES + (64, 2, 156, 0, 0, 0, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, -845.17, -671.403, 10.9455, 0, 0, 1.69794, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`) VALUES + (65, 2, 157, 0, 0, 0, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, -873.775, -710.286, 11.1915, 0, 0, -2.06147, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`) VALUES + (66, 2, 157, 0, 0, 0, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, -881.43, -705.81, 11.2087, 0, 0, -2.22486, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`) VALUES + (67, 2, 236, 0, 0, 0, 0, 76, 76, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, -897.515, -698.598, 10.9724, 0, 0, -3.01881, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`) VALUES + (68, 2, 236, 0, 0, 0, 0, 76, 76, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, -894.148, -698.128, 10.9701, 0, 0, -3.01433, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`) VALUES + (69, 2, 236, 0, 0, 0, 0, 76, 76, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, -894.135, -719.859, 10.9428, 0, 0, -1.41224, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`) VALUES + (70, 2, 236, 0, 0, 0, 0, 52, 52, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, -894.683, -715.826, 10.9485, 0, 0, -1.42683, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`) VALUES + (71, 2, 156, 0, 0, 0, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, -650.832, 754.237, 11.2032, 0, 0, 1.50302, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`) VALUES + (72, 2, 156, 0, 0, 0, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, -639.172, 753.413, 11.2032, 0, 0, 1.50092, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`) VALUES + (73, 2, 156, 0, 0, 0, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, -621.907, 752.278, 11.2033, 0, 0, 1.49172, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`) VALUES + (74, 2, 156, 0, 0, 0, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, -610.695, 751.54, 11.2031, 0, 0, 1.5242, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`) VALUES + (75, 2, 157, 0, 0, 0, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, -599.312, 812.778, 11.4341, 0, 0, -1.51886, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`) VALUES + (76, 2, 157, 0, 0, 0, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, -599.318, 808.625, 11.4343, 0, 0, -1.54175, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`) VALUES + (77, 2, 157, 0, 0, 0, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, -599.262, 804.179, 11.4321, 0, 0, -1.55996, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`) VALUES + (78, 2, 236, 0, 0, 0, 0, 52, 52, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, -601.455, 777.717, 11.3721, 0, 0, -1.56567, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`) VALUES + (79, 2, 236, 0, 0, 0, 0, 3, 3, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, -601.427, 781.32, 11.372, 0, 0, -1.57976, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`) VALUES + (80, 2, 236, 0, 0, 0, 0, 7, 7, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, -601.614, 785.262, 11.3678, 0, 0, -1.53095, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`) VALUES + (81, 2, 227, 0, 0, 0, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, -614.282, 804.889, 29.667, 0, 0, -3.13458, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`) VALUES + (82, 2, 156, 0, 0, 0, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, -665.011, 766.586, 10.8582, 0, 0, -3.12432, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`) VALUES + (83, 2, 156, 0, 0, 0, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, -665.185, 777.893, 11.0314, 0, 0, 3.13051, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`) VALUES + (84, 2, 156, 0, 0, 0, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, -665.29, 793.478, 11.0371, 0, 0, -3.13675, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`) VALUES + (85, 2, 156, 0, 0, 0, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, -665.178, 804.984, 11.0372, 0, 0, 3.13152, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`) VALUES + (86, 2, 137, 0, 0, 0, 0, 3, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, -695.476, 917.25, 11.193, 0, 0, -1.5752, 10, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`) VALUES + (87, 2, 137, 0, 0, 0, 0, 3, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, -695.799, 933.069, 11.1976, 0, 0, -1.59279, 10, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`) VALUES + (88, 2, 137, 0, 0, 0, 0, 3, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, -751.642, 927.235, 11.2813, 0, 0, 1.58276, 10, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`) VALUES + (89, 2, 156, 0, 0, 0, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 520.53, 503.127, 10.8484, 0, 0, -0.00178437, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`) VALUES + (90, 2, 156, 0, 0, 0, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 516.364, 503.18, 10.9362, 0, 0, -0.0254137, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`) VALUES + (91, 2, 156, 0, 0, 0, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 498.01, 503.081, 11.193, 0, 0, 0.0146382, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`) VALUES + (92, 2, 156, 0, 0, 0, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 502.233, 503.026, 11.1357, 0, 0, 0.0138817, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`) VALUES + (93, 2, 156, 0, 0, 0, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 493.552, 503.077, 11.2541, 0, 0, -0.0044642, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`) VALUES + (94, 2, 236, 0, 0, 0, 0, 52, 52, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 490.796, 528.832, 11.3465, 0, 0, 1.54742, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`) VALUES + (95, 2, 236, 0, 0, 0, 0, 76, 76, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 490.796, 525.464, 11.3455, 0, 0, 1.57115, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`) VALUES + (96, 2, 157, 0, 0, 0, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 490.527, 519.161, 11.6082, 0, 0, 3.12121, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`) VALUES + (97, 2, 156, 0, 0, 0, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 372.272, -526.059, 12.1009, 0, 0, -0.731552, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`) VALUES + (98, 2, 156, 0, 0, 0, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 369.489, -523.585, 12.0988, 0, 0, -0.718855, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`) VALUES + (99, 2, 156, 0, 0, 0, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 366.674, -521.239, 12.0989, 0, 0, -0.712901, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`) VALUES + (100, 2, 156, 0, 0, 0, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 363.691, -518.751, 12.0982, 0, 0, -0.698761, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`) VALUES + (101, 2, 156, 0, 0, 0, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 361.239, -516.717, 12.0989, 0, 0, -0.705683, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`) VALUES + (102, 2, 156, 0, 0, 0, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 358.335, -514.321, 12.0942, 0, 0, -0.696986, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`) VALUES + (103, 2, 156, 0, 0, 0, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 355.575, -511.957, 12.0989, 0, 0, -0.701771, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`) VALUES + (104, 2, 157, 0, 0, 0, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 348.887, -491.942, 12.3596, 0, 0, 2.45143, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`) VALUES + (105, 2, 157, 0, 0, 0, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 351.751, -494.224, 12.3596, 0, 0, 2.44634, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`) VALUES + (106, 2, 146, 0, 0, 0, 0, 1, 3, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, -119.267, -918.579, 10.6751, 0, 0, 1.83377, 6, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`) VALUES + (107, 2, 146, 0, 0, 0, 0, 1, 3, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, -117.954, -924.926, 10.6753, 0, 0, 1.8211, 6, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`) VALUES + (108, 2, 146, 0, 0, 0, 0, 1, 3, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, -116.5, -931.549, 10.6753, 0, 0, 1.76665, 6, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`) VALUES + (129, 2, 146, 0, 0, 0, 0, 1, 3, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, -769.326, 1155.62, 12.6228, 0, 0, -3.14049, 6, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`) VALUES + (130, 2, 146, 0, 0, 0, 0, 1, 3, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, -773.948, 1155.64, 12.6228, 0, 0, 3.13857, 6, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`) VALUES + (131, 2, 146, 0, 0, 0, 0, 1, 3, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, -769.568, 1131.04, 12.6227, 0, 0, -0.010725, 6, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`) VALUES + (132, 2, 146, 0, 0, 0, 0, 1, 3, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, -774.835, 1131.13, 12.6229, 0, 0, -0.0206099, 6, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`) VALUES + (133, 2, 146, 0, 0, 0, 0, 1, 3, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 458.814, 702.22, 11.49, 0, 0, 1.51274, 6, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`) VALUES + (134, 2, 146, 0, 0, 0, 0, 1, 3, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 467.202, 701.723, 11.6151, 0, 0, 1.50174, 6, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`) VALUES + (135, 2, 150, 0, 0, 0, 0, 6, 73, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, -1005.69, 208.713, 11.1279, 0, 0, 3.03758, 14, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`) VALUES + (136, 2, 150, 0, 0, 0, 0, 6, 75, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, -1002.12, 203.73, 11.4539, 0, 0, 3.01694, 14, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`) VALUES + (137, 2, 168, 0, 0, 0, 0, 6, 76, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, -1008.54, 186.246, 11.3789, 0, 0, -0.157828, 14, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`) VALUES + (138, 2, 168, 0, 0, 0, 0, 6, 76, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, -995.796, 193.143, 11.4015, 0, 0, 1.41776, 14, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`) VALUES + (139, 2, 167, 0, 0, 0, 0, 56, 75, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, -1141.98, -283.386, 11.3194, 0, 0, -3.09345, 18, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`) VALUES + (140, 2, 167, 0, 0, 0, 0, 13, 76, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, -1143.05, -270.229, 11.4251, 0, 0, -3.05214, 18, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`) VALUES + (141, 2, 167, 0, 0, 0, 0, 13, 76, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, -1143.99, -256.669, 11.5147, 0, 0, -3.07535, 18, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`) VALUES + (142, 2, 146, 0, 0, 0, 0, 1, 3, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, -873.256, -482.571, 11.3251, 0, 0, -1.5271, 6, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`) VALUES + (143, 2, 146, 0, 0, 0, 0, 1, 3, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, -873.249, -478.507, 11.3193, 0, 0, -1.55587, 6, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`) VALUES + (144, 2, 138, 0, 0, 0, 0, 1, 75, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, -1243.33, 23.4004, 12.013, 0, 0, 3.12587, 22, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`) VALUES + (145, 2, 138, 0, 0, 0, 0, 1, 75, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, -1247.7, 23.4549, 12.0141, 0, 0, 3.1171, 22, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`) VALUES + (146, 2, 138, 0, 0, 0, 0, 1, 75, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, -1251.99, 23.5308, 12.0096, 0, 0, 3.12793, 22, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`) VALUES + (147, 4, 596, 0, 0, 0, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 1602.73, -1703.95, 5.62027, 0, 0, 1.59558, 4, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`) VALUES + (148, 4, 596, 0, 0, 0, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 1602.74, -1700.18, 5.61885, 0, 0, 1.59013, 4, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`) VALUES + (149, 4, 596, 0, 0, 0, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 1602.68, -1696.18, 5.61891, 0, 0, 1.57734, 4, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`) VALUES + (150, 4, 596, 0, 0, 0, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 1602.67, -1691.93, 5.61976, 0, 0, 1.59322, 4, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`) VALUES + (151, 4, 596, 0, 0, 0, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 2083.1, -1706.03, 13.104, 0, 0, 0.635562, 4, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`) VALUES + (152, 4, 596, 0, 0, 0, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 1595.43, -1711.89, 5.61871, 0, 0, -0.0106168, 4, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`) VALUES + (153, 4, 596, 0, 0, 0, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 1591.43, -1711.87, 5.61965, 0, 0, 0.00642908, 4, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`) VALUES + (154, 4, 596, 0, 0, 0, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 1587.33, -1711.86, 5.61184, 0, 0, 0.00975822, 4, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`) VALUES + (155, 4, 427, 0, 0, 0, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 1526.72, -1644.82, 6.02297, 0, 0, -3.13362, 4, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`) VALUES + (156, 4, 427, 0, 0, 0, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 1530.62, -1644.78, 6.02321, 0, 0, -3.11574, 4, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`) VALUES + (157, 4, 427, 0, 0, 0, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 1534.72, -1644.71, 6.03863, 0, 0, -3.13567, 4, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`) VALUES + (158, 4, 599, 0, 0, 0, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 1545.99, -1651.07, 6.08226, 0, 0, 1.56824, 4, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`) VALUES + (159, 4, 599, 0, 0, 0, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 1546.03, -1654.96, 6.03352, 0, 0, 1.54986, 4, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`) VALUES + (160, 4, 426, 0, 0, 0, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 1545.79, -1667.84, 5.62373, 0, 0, 1.56514, 4, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`) VALUES + (161, 4, 426, 0, 0, 0, 0, 10, 10, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 1545.98, -1672.1, 5.63141, 0, 0, 1.5917, 4, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`) VALUES + (162, 2, 131, 0, 0, 0, 0, 5, 62, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, -979.65, -882.122, 12.8471, 0, 0, 0.706624, 201, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`) VALUES + (163, 2, 175, 0, 0, 0, 0, 10, 10, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, -982.328, -884.745, 12.8644, 0, 0, 0.752705, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`) VALUES + (164, 2, 134, 0, 0, 0, 0, 37, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, -984.716, -887.286, 12.7108, 0, 0, 0.798329, 201, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 750, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`) VALUES + (165, 4, 523, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 1526.17, -1680.36, 5.45989, 0, 0, -0.797715, 4, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`) VALUES + (166, 4, 523, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 1526.06, -1674.86, 5.46142, 0, 0, -2.37213, 4, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`) VALUES + (167, 4, 523, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 1529.73, -1674.89, 5.4601, 0, 0, -2.37606, 4, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`) VALUES + (168, 4, 523, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 1529.64, -1680.68, 5.46212, 0, 0, -0.793975, 4, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`) VALUES + (169, 4, 416, 0, 0, 0, 0, 1, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 1178.73, -1338.94, 14.0094, 0, 0, -1.54939, 8, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`) VALUES + (170, 4, 416, 0, 0, 0, 0, 1, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 1178.46, -1308.67, 13.9791, 0, 0, -1.56455, 8, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`) VALUES + (171, 4, 416, 0, 0, 0, 0, 1, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 2036.82, -1425.53, 17.1413, 0, 0, -0.00217407, 8, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`) VALUES + (172, 4, 416, 0, 0, 0, 0, 1, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 2024.7, -1409.68, 17.1419, 0, 0, 1.55537, 8, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`) VALUES + (173, 4, 408, 0, 0, 0, 0, 26, 26, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 2338.19, -2085.52, 14.0841, 0, 0, 1.56666, 24, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`) VALUES + (174, 4, 408, 0, 0, 0, 0, 26, 26, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 2338.24, -2090.4, 14.097, 0, 0, 1.57921, 24, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`) VALUES + (175, 4, 408, 0, 0, 0, 0, 26, 26, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 2338.3, -2095.48, 14.0909, 0, 0, 1.57749, 24, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`) VALUES + (176, 4, 431, 0, 0, 0, 0, 47, 74, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 1781.16, -1887.68, 13.493, 0, 0, -1.54371, 20, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`) VALUES + (177, 4, 431, 0, 0, 0, 0, 92, 72, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 1781.08, -1892.33, 13.492, 0, 0, -1.55517, 20, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`) VALUES + (178, 4, 431, 0, 0, 0, 0, 92, 72, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 1780.83, -1897.52, 13.4905, 0, 0, -1.56997, 20, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`) VALUES + (179, 4, 420, 0, 0, 0, 0, 6, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 1804.27, -1932.53, 13.1664, 0, 0, -0.015131, 16, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`) VALUES + (180, 4, 420, 0, 0, 0, 0, 6, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 1800.35, -1932.4, 13.166, 0, 0, -0.0127972, 16, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`) VALUES + (181, 4, 420, 0, 0, 0, 0, 6, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 1796.72, -1932.55, 13.1653, 0, 0, -0.000382929, 16, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`) VALUES + (182, 4, 438, 0, 0, 0, 0, 6, 76, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 1792.65, -1932.66, 13.3902, 0, 0, 0.00784995, 16, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`) VALUES + (183, 4, 438, 0, 0, 0, 0, 6, 76, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 1788.85, -1932.83, 13.3847, 0, 0, 0.025678, 16, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`) VALUES + (184, 4, 407, 0, 0, 0, 0, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 1147.58, -1295.9, 13.8958, 0, 0, 0.00109566, 12, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`) VALUES + (185, 4, 407, 0, 0, 0, 0, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 1147.58, -1308.6, 13.9144, 0, 0, 0.00538338, 12, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`) VALUES + (186, 4, 598, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 2282.26, 2442.01, 10.5652, 0, 0, -0.0100905, 4, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`) VALUES + (187, 4, 598, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 2277.82, 2441.92, 10.5665, 0, 0, 0.0142917, 4, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`) VALUES + (188, 4, 598, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 2273.75, 2441.84, 10.5656, 0, 0, 0.00445989, 4, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`) VALUES + (189, 4, 598, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 2269.03, 2441.76, 10.565, 0, 0, 0.02489, 4, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`) VALUES + (190, 4, 598, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 2277.94, 2478.61, 10.5693, 0, 0, 3.13522, 4, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`) VALUES + (191, 4, 598, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 2273.44, 2478.64, 10.5671, 0, 0, 3.12822, 4, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`) VALUES + (192, 4, 598, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 2269.09, 2478.64, 10.5649, 0, 0, 3.13244, 4, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`) VALUES + (193, 4, 598, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 2282.15, 2478.59, 10.5668, 0, 0, -3.12538, 4, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`) VALUES + (194, 4, 407, 0, 0, 0, 0, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 1751.1, 2077.36, 11.0579, 0, 0, 3.13707, 12, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`) VALUES + (195, 4, 407, 0, 0, 0, 0, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 1756.99, 2077.55, 11.0555, 0, 0, -3.13337, 12, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`) VALUES + (196, 4, 407, 0, 0, 0, 0, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 1763.96, 2077.97, 11.0573, 0, 0, -3.10259, 12, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`) VALUES + (197, 4, 597, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, -1572.66, 742.629, -5.47258, 0, 0, 1.57093, 4, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`) VALUES + (198, 4, 597, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, -1572.64, 738.657, -5.47407, 0, 0, 1.5799, 4, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`) VALUES + (199, 4, 597, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, -1572.6, 734.641, -5.47307, 0, 0, 1.57367, 4, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`) VALUES + (200, 4, 597, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, -1572.56, 730.619, -5.47164, 0, 0, 1.57203, 4, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`) VALUES + (201, 4, 597, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, -1572.46, 726.494, -5.47229, 0, 0, 1.57229, 4, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`) VALUES + (202, 4, 597, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, -1579.91, 750.258, -5.47212, 0, 0, 3.13972, 4, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`) VALUES + (203, 4, 597, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, -1584.04, 750.231, -5.47137, 0, 0, -3.13672, 4, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`) VALUES + (204, 4, 597, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, -1588.07, 750.247, -5.47243, 0, 0, 3.13574, 4, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`) VALUES + (205, 4, 597, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, -1592.38, 750.296, -5.47143, 0, 0, 3.13692, 4, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`) VALUES + (206, 4, 523, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, -1611.79, 730.701, -5.67174, 0, 0, 0.560641, 4, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`) VALUES + (207, 4, 523, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, -1617.18, 730.908, -5.66764, 0, 0, -0.753548, 4, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`) VALUES + (208, 4, 523, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, -1611.58, 733.413, -5.67532, 0, 0, 0.526106, 4, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`) VALUES + (209, 4, 523, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, -1617.37, 733.199, -5.67666, 0, 0, -0.764526, 4, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`) VALUES + (210, 4, 426, 0, 0, 0, 0, 11, 11, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, -1572.29, 705.876, -5.49726, 0, 0, 1.58725, 4, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`) VALUES + (211, 4, 426, 0, 0, 0, 0, 53, 53, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, -1572.31, 710.11, -5.49697, 0, 0, 1.55664, 4, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`) VALUES + (212, 4, 426, 0, 0, 0, 0, 11, 11, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, -1572.36, 714.22, -5.49761, 0, 0, 1.58512, 4, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`) VALUES + (213, 4, 427, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, -1596.07, 676.545, -5.10801, 0, 0, 0.0186245, 4, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`) VALUES + (214, 4, 427, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, -1600.28, 676.495, -5.10837, 0, 0, 0.0136404, 4, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`) VALUES + (215, 4, 416, 0, 0, 0, 0, 1, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, -2677.4, 630.025, 14.6044, 0, 0, 1.57874, 8, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`) VALUES + (216, 4, 416, 0, 0, 0, 0, 1, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, -2666.93, 629.908, 14.6044, 0, 0, 1.56592, 8, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`) VALUES + (217, 4, 416, 0, 0, 0, 0, 1, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, -2686.18, 628.286, 14.6058, 0, 0, 1.9158, 8, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`) VALUES + (218, 4, 407, 0, 0, 0, 0, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, -2022.76, 75.2526, 28.3631, 0, 0, -1.47777, 12, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`) VALUES + (219, 4, 407, 0, 0, 0, 0, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, -2022.92, 84.3134, 28.3332, 0, 0, -1.5322, 12, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`) VALUES + (220, 4, 407, 0, 0, 0, 0, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, -2022.93, 92.2289, 28.3678, 0, 0, -1.51043, 12, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`) VALUES + (221, 4, 411, 0, 0, 0, 0, 12, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 564.59, -1291.1, 16.9753, 0, 0, 0.0255753, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`) VALUES + (222, 4, 541, 0, 0, 0, 0, 36, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 561, -1291.44, 16.8732, 0, 0, 0.00172557, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`) VALUES + (223, 4, 480, 0, 0, 0, 0, 6, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 557.632, -1291.24, 17.022, 0, 0, 0.0362236, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`) VALUES + (224, 4, 477, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 554.015, -1291.05, 17.0018, 0, 0, -0.0592367, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`) VALUES + (225, 2, 131, 0, 0, 0, 0, 62, 37, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, -1154.93, 5.74538, 11.2258, 0, 0, -1.56933, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`) VALUES + (226, 1, 111, 0, 0, 0, 0, 57, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 1190.48, -252.694, 24.7467, 0, 0, 3.13471, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 2500, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`) VALUES + (227, 1, 102, 0, 0, 0, 0, 57, 73, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 1209.59, -85.9233, 12.6336, 0, 0, -2.23509, 204, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 2500, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`) VALUES + (228, 1, 129, 0, 0, 0, 0, 25, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 1209.51, -81.4913, 12.1281, 0, 0, -2.20648, 204, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 2100, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`) VALUES + (229, 1, 112, 0, 0, 0, 0, 55, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 1209.65, -77.2701, 11.9, 0, 0, -2.20789, 204, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 2000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`) VALUES + (230, 1, 91, 0, 0, 0, 0, 51, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 1211.41, -66.0152, 10.4973, 0, 0, -2.52612, 204, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1500, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`) VALUES + (231, 1, 100, 0, 0, 0, 0, 69, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 1210.97, -73.589, 11.1925, 0, 0, -2.19468, 204, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`) VALUES + (232, 1, 94, 0, 0, 0, 0, 23, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 1214.52, -63.2275, 10.152, 0, 0, -2.81749, 204, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`) VALUES + (233, 1, 90, 0, 0, 0, 0, 41, 76, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 1218.85, -62.5937, 10.422, 0, 0, 3.0997, 204, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 2500, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`) VALUES + (234, 1, 109, 0, 0, 0, 0, 18, 18, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 1222.63, -63.0764, 10.2099, 0, 0, 3.10392, 204, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1200, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`) VALUES + (235, 1, 105, 0, 0, 0, 0, 51, 77, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 1244.93, -120.808, 14.604, 0, 0, -0.0421777, 204, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 75000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`) VALUES + (236, 1, 101, 0, 0, 0, 0, 57, 74, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 1241.28, -120.641, 14.6288, 0, 0, 0.0264841, 204, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 85000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`) VALUES + (237, 1, 119, 0, 0, 0, 0, 12, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 1237.61, -121, 14.5594, 0, 0, 0.00477941, 204, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 115000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`) VALUES + (238, 1, 92, 0, 0, 0, 0, 53, 73, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 1233.86, -120.93, 14.6328, 0, 0, -0.0198187, 204, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 100000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`) VALUES + (239, 1, 134, 0, 0, 0, 0, 72, 75, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 1247.55, -107.909, 14.7097, 0, 0, 1.50495, 204, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 25000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`) VALUES + (240, 1, 137, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 1247.63, -104.151, 14.2887, 0, 0, 1.54257, 204, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 20000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`) VALUES + (241, 1, 135, 0, 0, 0, 0, 11, 75, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 1247.29, -100.391, 14.0073, 0, 0, 1.52489, 204, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 22000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`) VALUES + (243, 1, 139, 0, 0, 0, 0, 9, 73, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 1247.41, -96.6294, 13.9466, 0, 0, 1.55603, 204, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 25000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`) VALUES + (244, 1, 138, 0, 0, 0, 0, 54, 76, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 1247.62, -92.3873, 13.426, 0, 0, 1.51434, 204, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 27000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`) VALUES + (245, 1, 102, 0, 0, 0, 0, 26, 75, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, -751.01, -535.337, 8.80389, 0, 0, -1.13589, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`) VALUES + (246, 1, 102, 0, 0, 0, 0, 34, 73, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, -750.797, -539.199, 8.80304, 0, 0, -1.10576, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`) VALUES + (247, 1, 102, 0, 0, 0, 0, 44, 74, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, -751.052, -543.618, 8.80374, 0, 0, -1.07295, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`) VALUES + (248, 1, 100, 0, 0, 0, 0, 58, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, -751.566, -552.963, 8.59979, 0, 0, -1.61011, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`) VALUES + (249, 1, 100, 0, 0, 0, 0, 18, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, -751.576, -556.203, 8.59965, 0, 0, -1.59793, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`) VALUES + (250, 1, 100, 0, 0, 0, 0, 58, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, -751.577, -559.737, 8.59964, 0, 0, -1.57346, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`) VALUES + (251, 1, 100, 0, 0, 0, 0, 18, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, -751.575, -563.115, 8.60021, 0, 0, -1.57212, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`) VALUES + (252, 1, 126, 0, 0, 0, 0, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, -1524.37, -927.334, 11.6627, 0, 0, -1.51896, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 100, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`) VALUES + (253, 1, 126, 0, 0, 0, 0, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, -1524.94, -920.765, 11.6717, 0, 0, -1.51945, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 100, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`) VALUES + (254, 1, 126, 0, 0, 0, 0, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, -1525.38, -914.304, 11.6674, 0, 0, -1.49781, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 100, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`) VALUES + (255, 1, 142, 0, 0, 0, 0, 1, 53, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 620.768, -665.364, -0.327586, 0, 0, -0.0217677, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`) VALUES + (256, 1, 143, 0, 0, 0, 0, 12, 35, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 627.834, -666.615, -0.505819, 0, 0, -0.0385386, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 35000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`) VALUES + (258, 1, 146, 0, 0, 0, 0, 34, 74, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 1426.45, -803.581, 11.9599, 0, 0, 1.56821, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 35000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`) VALUES + (259, 1, 104, 0, 0, 0, 0, 52, 74, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 1426.62, -795.533, 11.8912, 0, 0, 1.56813, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 30000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`) VALUES + (260, 1, 93, 0, 0, 0, 0, 39, 78, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 1426.01, -786.663, 12.4028, 0, 0, 1.56679, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 40000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`) VALUES + (261, 4, 547, 0, 0, 0, 0, 10, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 2136.31, -1150.2, 23.9743, 0, 0, 0.748413, 228, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`) VALUES + (262, 4, 516, 0, 0, 0, 0, 122, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 2136.18, -1145.37, 24.6024, 0, 0, 0.789813, 228, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`) VALUES + (263, 4, 466, 0, 0, 0, 0, 78, 76, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 2125.15, -1152.9, 23.7633, 0, 0, -0.783476, 228, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`) VALUES + (264, 4, 410, 0, 0, 0, 0, 10, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 2136.76, -1141.11, 24.8917, 0, 0, 0.786093, 228, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`) VALUES + (265, 4, 445, 0, 0, 0, 0, 45, 45, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 2117.76, -1155.76, 24.126, 0, 0, -0.705611, 228, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`) VALUES + (266, 4, 405, 0, 0, 0, 0, 24, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 2117.4, -1151.21, 24.2249, 0, 0, -0.645516, 228, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`) VALUES + (267, 4, 458, 0, 0, 0, 0, 4, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 2136.36, -1136, 25.5515, 0, 0, 0.777684, 228, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1400, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`) VALUES + (268, 4, 496, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 2118.21, -1145.71, 24.3037, 0, 0, -1.09275, 228, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`) VALUES + (269, 4, 418, 0, 0, 0, 0, 95, 95, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 2118.32, -1141.57, 24.9918, 0, 0, -1.07252, 228, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`) VALUES + (270, 4, 529, 0, 0, 0, 0, 15, 15, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 1537.91, -1669.25, 5.5238, 0, 0, 0.00760863, 4, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 850, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`) VALUES + (271, 4, 549, 0, 0, 0, 0, 79, 39, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 2136.42, -1131.45, 25.3818, 0, 0, 0.778913, 228, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 750, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`) VALUES + (272, 4, 404, 0, 0, 0, 0, 83, 110, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 2119.1, -1128.71, 25.0533, 0, 0, -1.00972, 228, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1100, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`) VALUES + (273, 4, 422, 0, 0, 0, 0, 113, 36, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 2118.91, -1132.57, 25.2674, 0, 0, -1.04863, 228, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`) VALUES + (274, 4, 419, 0, 0, 0, 0, 47, 76, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 2119.37, -1123.81, 25.1752, 0, 0, -0.824258, 228, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1500, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`) VALUES + (275, 4, 559, 0, 0, 0, 0, 13, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 543.558, -1291.16, 16.8736, 0, 0, -0.140231, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`) VALUES + (276, 4, 506, 0, 0, 0, 0, 76, 76, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 539.57, -1291.52, 16.949, 0, 0, 0.0129029, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`) VALUES + (277, 4, 451, 0, 0, 0, 0, 46, 46, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 529.109, -1291.35, 16.9441, 0, 0, 0.007333, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 130000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`) VALUES + (278, 4, 415, 0, 0, 0, 0, 25, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 532.506, -1291.65, 17.0134, 0, 0, 0.0241039, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`) VALUES + (279, 4, 429, 0, 0, 0, 0, 13, 13, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 535.97, -1291.55, 16.9238, 0, 0, -0.00909396, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`) VALUES + (280, 4, 565, 0, 0, 0, 0, 42, 42, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 525.643, -1291.94, 16.8666, 0, 0, 0.0016915, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`) VALUES + (281, 4, 602, 0, 0, 0, 0, 13, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 522.465, -1291.49, 17.0442, 0, 0, -0.0111869, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 60000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`) VALUES + (282, 4, 589, 0, 0, 0, 0, 114, 114, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 518.795, -1291.31, 16.9074, 0, 0, 0.0178289, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 50000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`) VALUES + (283, 4, 519, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 1995.15, -2367.1, 14.4654, 0, 0, 1.57039, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 750000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`) VALUES + (284, 4, 511, 0, 0, 0, 0, 37, 51, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 1994.14, -2388.79, 14.9204, 0, 0, 1.59079, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 400000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`) VALUES + (285, 4, 593, 0, 0, 0, 0, 2, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 1995.97, -2407.75, 14.0243, 0, 0, 1.54898, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 200000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`) VALUES + (286, 4, 553, 0, 0, 0, 0, 55, 23, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 2025.74, -2418.28, 14.8912, 0, 0, 2.46133, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 500000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`) VALUES + (287, 4, 487, 0, 0, 0, 0, 74, 35, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 1995.52, -2332.31, 13.7254, 0, 0, 1.58853, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 300000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`) VALUES + (288, 4, 548, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 1992.24, -2316.92, 15.1977, 0, 0, 1.58742, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`) VALUES + (289, 4, 469, 0, 0, 0, 0, 1, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 1995.62, -2303.97, 13.5477, 0, 0, 1.53661, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 250000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`) VALUES + (290, 4, 417, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 1992.1, -2255.76, 13.6483, 0, 0, 1.54044, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 900000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`) VALUES + (291, 1, 111, 0, 0, 0, 0, 34, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 1312.95, -1011.41, 14.7386, 0, 0, 2.40378, 12, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 2500, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`) VALUES + (292, 1, 111, 0, 0, 0, 0, 14, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 1209.73, -90.2957, 12.9842, 0, 0, -2.2061, 204, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 2500, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`) VALUES + (293, 1, 127, 0, 0, 0, 0, 44, 27, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 331.266, -1573.11, 26.0381, 0, 0, -0.879107, 17, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`) VALUES + (294, 1, 127, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, -73.1733, -349.082, 16.2603, 0, 0, -0.0165034, 17, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`) VALUES + (295, 1, 127, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, -73.4793, -367.01, 16.2607, 0, 0, -0.0240202, 17, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`) VALUES + (296, 4, 529, 0, 0, 0, 0, 7, 7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 2118.54, -1137.2, 24.7795, 0, 0, -1.06224, 228, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 850, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`) VALUES + (297, 4, 596, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 1583.14, -1711.82, 5.60978, 0, 0, -0.0255531, 4, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`) VALUES + (298, 4, 596, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 1578.54, -1711.84, 5.6025, 0, 0, 0.00653891, 4, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`) VALUES + (299, 4, 596, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 1574.12, -1711.96, 5.61197, 0, 0, 0.00792556, 4, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`) VALUES + (300, 2, 221, 0, 0, 0, 0, 30, 72, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, -987.238, -890.147, 12.7976, 0, 0, 0.861982, 201, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 3500, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`) VALUES + (301, 2, 135, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, -975.756, -878.166, 12.9318, 0, 0, 0.813128, 201, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 7000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`) VALUES + (302, 2, 226, 0, 0, 0, 0, 8, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, -966.656, -864.78, 12.8917, 0, 0, 1.16068, 201, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 4000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`) VALUES + (303, 2, 152, 0, 0, 0, 0, 8, 90, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, -971.067, -873.153, 13.2271, 0, 0, 0.834572, 201, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 3200, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`) VALUES + (304, 2, 130, 0, 0, 0, 0, 41, 76, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, -968.206, -868.967, 13.2656, 0, 0, 1.08971, 201, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 4750, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`) VALUES + (305, 2, 140, 0, 0, 0, 0, 32, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, -973.192, -875.855, 12.8791, 0, 0, 0.822114, 201, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 2400, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`) VALUES + (306, 2, 164, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, -989.644, -824.774, 7.12597, 0, 0, 3.12791, 201, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 15000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`) VALUES + (307, 2, 204, 0, 0, 0, 0, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, -965.592, -860.48, 12.8871, 0, 0, 1.1847, 201, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 2500, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`) VALUES + (308, 2, 149, 0, 0, 0, 0, 59, 75, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, -966.155, -855.875, 12.9219, 0, 0, 1.39879, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 3500, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`) VALUES + (309, 2, 205, 0, 0, 0, 0, 41, 29, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, -965.04, -852.363, 12.8994, 0, 0, 1.44163, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 6000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`) VALUES + (310, 2, 197, 0, 0, 0, 0, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, -965.029, -848.421, 12.8642, 0, 0, 1.43081, 201, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 5250, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`) VALUES + (311, 2, 208, 0, 0, 0, 0, 42, 42, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, -964.721, -844.608, 13.1339, 0, 0, 1.52394, 201, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 3250, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`) VALUES + (312, 2, 209, 0, 0, 0, 0, 14, 32, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, -965.016, -841.054, 12.9559, 0, 0, 1.53651, 201, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 4500, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`) VALUES + (313, 2, 211, 0, 0, 0, 0, 3, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, -964.673, -837.367, 12.8576, 0, 0, 1.51387, 201, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 10000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`) VALUES + (314, 2, 222, 0, 0, 0, 0, 33, 78, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, -964.774, -832.762, 12.8844, 0, 0, 1.51272, 201, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 2000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`) VALUES + (315, 2, 230, 0, 0, 0, 0, 48, 65, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, -964.115, -828.989, 13.2367, 0, 0, 1.55643, 201, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 3000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`) VALUES + (316, 2, 219, 0, 0, 0, 0, 32, 42, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, -964.923, -824.966, 13.3115, 0, 0, 1.56249, 201, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 4750, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`) VALUES + (317, 2, 179, 0, 0, 0, 0, 16, 74, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, -985.562, -824.846, 7.45749, 0, 0, -3.1114, 201, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 27500, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`) VALUES + (318, 2, 174, 0, 0, 0, 0, 64, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, -993.506, -825.182, 7.22026, 0, 0, -3.13612, 201, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 25000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`) VALUES + (319, 2, 142, 0, 0, 0, 0, 13, 72, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, -997.382, -825.397, 7.10469, 0, 0, 3.12664, 201, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 17500, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`) VALUES + (320, 2, 193, 0, 0, 0, 0, 53, 53, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, -967.23, -823.644, 6.2945, 0, 0, 1.56423, 201, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 3500, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`) VALUES + (321, 2, 166, 0, 0, 0, 0, 14, 75, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, -967.043, -825.686, 6.29443, 0, 0, 1.61558, 201, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 4000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`) VALUES + (322, 2, 198, 0, 0, 0, 0, 46, 46, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, -967.063, -827.738, 6.43505, 0, 0, 1.54959, 201, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 3000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`) VALUES + (323, 2, 191, 0, 0, 0, 0, 22, 22, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, -967.07, -829.886, 6.31988, 0, 0, 1.58164, 201, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 4500, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`) VALUES + (324, 2, 192, 0, 0, 0, 0, 33, 37, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, -966.719, -831.972, 6.35928, 0, 0, 1.58748, 201, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`) VALUES + (325, 2, 210, 0, 0, 0, 0, 6, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, -1019.12, -844.436, 12.85, 0, 0, -1.61629, 201, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 85000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`) VALUES + (326, 2, 132, 0, 0, 0, 0, 35, 35, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, -1015.09, -848.702, 12.8354, 0, 0, -1.52303, 201, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 75000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`) VALUES + (327, 2, 141, 0, 0, 0, 0, 11, 11, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, -1010.9, -852.751, 12.7769, 0, 0, -1.23101, 201, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 100000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`) VALUES + (328, 2, 159, 0, 0, 0, 0, 36, 36, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, -1007.32, -856.729, 12.8655, 0, 0, -1.08926, 201, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 80000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`) VALUES + (329, 2, 145, 0, 0, 0, 0, 36, 36, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, -1004.13, -860.21, 12.8584, 0, 0, -0.843169, 201, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 80000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`) VALUES + (330, 1, 106, 0, 0, 0, 0, 1, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 212.281, -41.5702, 16.4286, 0, 0, -0.00175398, 5, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`) VALUES + (331, 1, 106, 0, 0, 0, 0, 1, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 220.664, -41.2063, 16.4286, 0, 0, -0.00824242, 5, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`) VALUES + (332, 1, 106, 0, 0, 0, 0, 1, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 240.307, -41.481, 16.4286, 0, 0, -0.00575317, 5, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`) VALUES + (333, 1, 106, 0, 0, 0, 0, 1, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 248.963, -41.6128, 16.4285, 0, 0, -0.0129603, 5, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`) VALUES + (334, 1, 127, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, -72.9919, -331.528, 16.2616, 0, 0, -0.0204993, 17, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`) VALUES + (335, 1, 97, 0, 0, 0, 0, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, -83.3733, -442.729, 16.3754, 0, 0, 1.53779, 9, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`) VALUES + (336, 1, 97, 0, 0, 0, 0, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, -83.3866, -432.508, 16.3646, 0, 0, 1.56684, 9, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`) VALUES + (337, 1, 116, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, -662.811, -422.455, 18.5614, 0, 0, -0.227887, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`) VALUES + (338, 1, 102, 0, 0, 0, 0, 44, 74, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, -739.187, -576.721, 8.54147, 0, 0, -0.412251, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`) VALUES + (339, 2, 236, 0, 0, 0, 0, 7, 7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 349.923, -507.823, 12.098, 0, 0, -0.695444, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +INSERT INTO `veh_main` (`veh_id`, `veh_server`, `veh_model`, `veh_col1_isrgb`, `veh_col2_isrgb`, `veh_col3_isrgb`, `veh_col4_isrgb`, `veh_col1`, `veh_col2`, `veh_col3`, `veh_col4`, `veh_col1_r`, `veh_col1_g`, `veh_col1_b`, `veh_col1_a`, `veh_col2_r`, `veh_col2_g`, `veh_col2_b`, `veh_col2_a`, `veh_col3_r`, `veh_col3_g`, `veh_col3_b`, `veh_col3_a`, `veh_col4_r`, `veh_col4_g`, `veh_col4_b`, `veh_col4_a`, `veh_locked`, `veh_health`, `veh_pos_x`, `veh_pos_y`, `veh_pos_z`, `veh_rot_x`, `veh_rot_y`, `veh_rot_z`, `veh_owner_id`, `veh_owner_type`, `veh_engine`, `veh_rank`, `veh_lights`, `veh_siren`, `veh_sirenlight`, `veh_taxilight`, `veh_radio_custom`, `veh_radio_station`, `veh_radio_volume`, `veh_fuel`, `veh_spawned`, `veh_ins_acct`, `veh_price`, `veh_deleted`, `veh_flags`, `veh_spawn_lock`, `veh_buy_price`, `veh_rent_price`, `veh_destroyed`, `veh_mod_enginemult`, `veh_mod_wheelmult`, `veh_mod_brakemult`, `veh_mod_hydraulics`, `veh_mod_nos`, `veh_tire_fl`, `veh_tire_fr`, `veh_tire_rl`, `veh_tire_rr`, `veh_light_fl`, `veh_light_fr`, `veh_light_rl`, `veh_light_rr`, `veh_door_fl`, `veh_door_fr`, `veh_door_rl`, `veh_door_rr`, `veh_boot`, `veh_bonnet`, `veh_panel_bumper_front`, `veh_panel_bumper_rear`, `veh_panel_front_left`, `veh_panel_front_right`, `veh_panel_rear_left`, `veh_panel_rear_right`, `veh_panel_windshield`, `veh_dirt_level`, `veh_damage_visual`, `veh_damage_engine`, `veh_damage_normal`) VALUES + (340, 2, 236, 0, 0, 0, 0, 3, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 352.536, -509.998, 12.098, 0, 0, -0.71261, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); +/*!40000 ALTER TABLE `veh_main` ENABLE KEYS */; + +/*!40101 SET SQL_MODE=IFNULL(@OLD_SQL_MODE, '') */; +/*!40014 SET FOREIGN_KEY_CHECKS=IF(@OLD_FOREIGN_KEY_CHECKS IS NULL, 1, @OLD_FOREIGN_KEY_CHECKS) */; +/*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */; +/*!40111 SET SQL_NOTES=@OLD_SQL_NOTES */;